- In commit b3facaa6bb, the copyright header was
updated to include "Citron Homebrew Project" across multiple files, regardless
of whether any contributions were made.
- This commit removes the incorrect attribution and reverts the copyright header
to its previous state.
- Copyright attribution should only be added when meaningful contributions have
been made to the file.
- This commit ensures proper compliance with copyright standards and maintains
correct attribution to the respective contributors.
- Special thanks to Tachi for pointing out the need for these corrections and
ensuring that proper attribution practices are followed.
65 lines
1.9 KiB
C++
65 lines
1.9 KiB
C++
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "common/host_memory.h"
|
|
#include "common/typed_address.h"
|
|
|
|
namespace Core {
|
|
|
|
namespace DramMemoryMap {
|
|
enum : u64 {
|
|
Base = 0x80000000ULL,
|
|
KernelReserveBase = Base + 0x60000,
|
|
SlabHeapBase = KernelReserveBase + 0x85000,
|
|
};
|
|
}; // namespace DramMemoryMap
|
|
|
|
class DeviceMemory {
|
|
public:
|
|
explicit DeviceMemory();
|
|
~DeviceMemory();
|
|
|
|
DeviceMemory& operator=(const DeviceMemory&) = delete;
|
|
DeviceMemory(const DeviceMemory&) = delete;
|
|
|
|
template <typename T>
|
|
Common::PhysicalAddress GetPhysicalAddr(const T* ptr) const {
|
|
return (reinterpret_cast<uintptr_t>(ptr) -
|
|
reinterpret_cast<uintptr_t>(buffer.BackingBasePointer())) +
|
|
DramMemoryMap::Base;
|
|
}
|
|
|
|
template <typename T>
|
|
PAddr GetRawPhysicalAddr(const T* ptr) const {
|
|
return static_cast<PAddr>(reinterpret_cast<uintptr_t>(ptr) -
|
|
reinterpret_cast<uintptr_t>(buffer.BackingBasePointer()));
|
|
}
|
|
|
|
template <typename T>
|
|
T* GetPointer(Common::PhysicalAddress addr) {
|
|
return reinterpret_cast<T*>(buffer.BackingBasePointer() +
|
|
(GetInteger(addr) - DramMemoryMap::Base));
|
|
}
|
|
|
|
template <typename T>
|
|
const T* GetPointer(Common::PhysicalAddress addr) const {
|
|
return reinterpret_cast<T*>(buffer.BackingBasePointer() +
|
|
(GetInteger(addr) - DramMemoryMap::Base));
|
|
}
|
|
|
|
template <typename T>
|
|
T* GetPointerFromRaw(PAddr addr) {
|
|
return reinterpret_cast<T*>(buffer.BackingBasePointer() + addr);
|
|
}
|
|
|
|
template <typename T>
|
|
const T* GetPointerFromRaw(PAddr addr) const {
|
|
return reinterpret_cast<T*>(buffer.BackingBasePointer() + addr);
|
|
}
|
|
|
|
Common::HostMemory buffer;
|
|
};
|
|
|
|
} // namespace Core
|