summaryrefslogtreecommitdiffstats
path: root/src/core/device_memory.h
blob: cc7bda070908d8270af52a0d0a1d61e3571ba1d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2020 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "common/assert.h"
#include "common/common_funcs.h"
#include "common/virtual_buffer.h"

namespace Core {

class System;

namespace DramMemoryMap {
constexpr u64 Base = 0x80000000ULL;
constexpr u64 Size = 0x100000000ULL;
constexpr u64 End = Base + Size;
constexpr u64 KernelReserveBase = Base + 0x60000;
constexpr u64 SlabHeapBase = KernelReserveBase + 0x85000;
constexpr u64 SlapHeapSize = 0xa21000;
constexpr u64 SlabHeapEnd = SlabHeapBase + SlapHeapSize;
}; // namespace DramMemoryMap

class DeviceMemory : NonCopyable {
public:
    explicit DeviceMemory(Core::System& system);
    ~DeviceMemory();

    template <typename T>
    constexpr PAddr GetPhysicalAddr(T* ptr) {
        return (reinterpret_cast<uintptr_t>(ptr) - reinterpret_cast<uintptr_t>(buffer.data())) +
               DramMemoryMap::Base;
    }

    constexpr u8* GetPointer(PAddr addr) {
        return buffer.data() + (addr - DramMemoryMap::Base);
    }

private:
    Common::VirtualBuffer<u8> buffer;
    Core::System& system;
};

} // namespace Core