2018-02-08 02:54:35 +00:00
|
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
|
#include <memory>
|
2018-10-30 04:03:25 +00:00
|
|
|
|
#include <optional>
|
2018-04-21 18:40:51 +00:00
|
|
|
|
#include <vector>
|
2018-04-21 16:31:30 +00:00
|
|
|
|
|
2018-02-08 02:54:35 +00:00
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
2018-02-12 04:44:12 +00:00
|
|
|
|
namespace Tegra {
|
|
|
|
|
|
|
|
|
|
/// Virtual addresses in the GPU's memory map are 64 bit.
|
|
|
|
|
using GPUVAddr = u64;
|
2018-02-08 02:54:35 +00:00
|
|
|
|
|
|
|
|
|
class MemoryManager final {
|
|
|
|
|
public:
|
2018-11-23 17:58:55 +00:00
|
|
|
|
MemoryManager();
|
2018-02-08 02:54:35 +00:00
|
|
|
|
|
2018-04-21 15:16:21 +00:00
|
|
|
|
GPUVAddr AllocateSpace(u64 size, u64 align);
|
|
|
|
|
GPUVAddr AllocateSpace(GPUVAddr gpu_addr, u64 size, u64 align);
|
|
|
|
|
GPUVAddr MapBufferEx(VAddr cpu_addr, u64 size);
|
|
|
|
|
GPUVAddr MapBufferEx(VAddr cpu_addr, GPUVAddr gpu_addr, u64 size);
|
2018-05-20 19:21:06 +00:00
|
|
|
|
GPUVAddr UnmapBuffer(GPUVAddr gpu_addr, u64 size);
|
2018-10-13 01:52:16 +00:00
|
|
|
|
GPUVAddr GetRegionEnd(GPUVAddr region_start) const;
|
2018-10-30 04:03:25 +00:00
|
|
|
|
std::optional<VAddr> GpuToCpuAddress(GPUVAddr gpu_addr);
|
2018-04-21 18:40:51 +00:00
|
|
|
|
std::vector<GPUVAddr> CpuToGpuAddress(VAddr cpu_addr) const;
|
2018-02-08 02:54:35 +00:00
|
|
|
|
|
2018-04-23 15:57:12 +00:00
|
|
|
|
static constexpr u64 PAGE_BITS = 16;
|
|
|
|
|
static constexpr u64 PAGE_SIZE = 1 << PAGE_BITS;
|
|
|
|
|
static constexpr u64 PAGE_MASK = PAGE_SIZE - 1;
|
|
|
|
|
|
2018-02-08 02:54:35 +00:00
|
|
|
|
private:
|
|
|
|
|
enum class PageStatus : u64 {
|
|
|
|
|
Unmapped = 0xFFFFFFFFFFFFFFFFULL,
|
|
|
|
|
Allocated = 0xFFFFFFFFFFFFFFFEULL,
|
2018-11-23 17:58:55 +00:00
|
|
|
|
Reserved = 0xFFFFFFFFFFFFFFFDULL,
|
2018-02-08 02:54:35 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-11-01 02:20:37 +00:00
|
|
|
|
std::optional<GPUVAddr> FindFreeBlock(GPUVAddr region_start, u64 size, u64 align,
|
|
|
|
|
PageStatus status);
|
|
|
|
|
VAddr& PageSlot(GPUVAddr gpu_addr);
|
|
|
|
|
|
2018-02-08 02:54:35 +00:00
|
|
|
|
static constexpr u64 MAX_ADDRESS{0x10000000000ULL};
|
2018-04-23 15:57:12 +00:00
|
|
|
|
static constexpr u64 PAGE_TABLE_BITS{10};
|
2018-02-08 02:54:35 +00:00
|
|
|
|
static constexpr u64 PAGE_TABLE_SIZE{1 << PAGE_TABLE_BITS};
|
|
|
|
|
static constexpr u64 PAGE_TABLE_MASK{PAGE_TABLE_SIZE - 1};
|
|
|
|
|
static constexpr u64 PAGE_BLOCK_BITS{14};
|
|
|
|
|
static constexpr u64 PAGE_BLOCK_SIZE{1 << PAGE_BLOCK_BITS};
|
|
|
|
|
static constexpr u64 PAGE_BLOCK_MASK{PAGE_BLOCK_SIZE - 1};
|
|
|
|
|
|
|
|
|
|
using PageBlock = std::array<VAddr, PAGE_BLOCK_SIZE>;
|
|
|
|
|
std::array<std::unique_ptr<PageBlock>, PAGE_TABLE_SIZE> page_table{};
|
2018-04-21 18:40:51 +00:00
|
|
|
|
|
|
|
|
|
struct MappedRegion {
|
|
|
|
|
VAddr cpu_addr;
|
|
|
|
|
GPUVAddr gpu_addr;
|
|
|
|
|
u64 size;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
std::vector<MappedRegion> mapped_regions;
|
2018-02-08 02:54:35 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-02-12 04:44:12 +00:00
|
|
|
|
} // namespace Tegra
|