2022-04-23 10:59:50 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-02-08 03:54:35 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-12-17 16:45:06 +01:00
|
|
|
#include <atomic>
|
2019-03-04 05:54:16 +01:00
|
|
|
#include <map>
|
2018-10-30 05:03:25 +01:00
|
|
|
#include <optional>
|
2020-07-26 06:16:21 +02:00
|
|
|
#include <vector>
|
2018-04-21 18:31:30 +02:00
|
|
|
|
2018-02-08 03:54:35 +01:00
|
|
|
#include "common/common_types.h"
|
2021-11-11 21:24:40 +01:00
|
|
|
#include "common/multi_level_page_table.h"
|
2022-02-05 18:15:26 +01:00
|
|
|
#include "common/virtual_buffer.h"
|
2018-02-08 03:54:35 +01:00
|
|
|
|
2020-02-15 23:47:15 +01:00
|
|
|
namespace VideoCore {
|
|
|
|
class RasterizerInterface;
|
|
|
|
}
|
|
|
|
|
2019-07-09 08:17:44 +02:00
|
|
|
namespace Core {
|
2022-02-05 18:15:26 +01:00
|
|
|
class DeviceMemory;
|
|
|
|
namespace Memory {
|
|
|
|
class Memory;
|
|
|
|
} // namespace Memory
|
2019-07-09 08:17:44 +02:00
|
|
|
class System;
|
2022-02-05 18:15:26 +01:00
|
|
|
} // namespace Core
|
2019-07-09 08:17:44 +02:00
|
|
|
|
2018-02-12 05:44:12 +01:00
|
|
|
namespace Tegra {
|
|
|
|
|
2018-02-08 03:54:35 +01:00
|
|
|
class MemoryManager final {
|
|
|
|
public:
|
2021-11-11 21:24:40 +01:00
|
|
|
explicit MemoryManager(Core::System& system_, u64 address_space_bits_ = 40,
|
2022-02-05 18:15:26 +01:00
|
|
|
u64 big_page_bits_ = 16, u64 page_bits_ = 12);
|
2019-05-10 01:04:41 +02:00
|
|
|
~MemoryManager();
|
2018-02-08 03:54:35 +01:00
|
|
|
|
2021-12-17 16:45:06 +01:00
|
|
|
size_t GetID() const {
|
|
|
|
return unique_identifier;
|
|
|
|
}
|
|
|
|
|
2020-06-11 05:58:57 +02:00
|
|
|
/// Binds a renderer to the memory manager.
|
2021-01-05 08:09:39 +01:00
|
|
|
void BindRasterizer(VideoCore::RasterizerInterface* rasterizer);
|
2020-06-11 05:58:57 +02:00
|
|
|
|
2020-08-27 02:14:13 +02:00
|
|
|
[[nodiscard]] std::optional<VAddr> GpuToCpuAddress(GPUVAddr addr) const;
|
2018-02-08 03:54:35 +01:00
|
|
|
|
2021-06-13 03:34:06 +02:00
|
|
|
[[nodiscard]] std::optional<VAddr> GpuToCpuAddress(GPUVAddr addr, std::size_t size) const;
|
|
|
|
|
2019-03-04 05:54:16 +01:00
|
|
|
template <typename T>
|
2020-08-27 02:14:13 +02:00
|
|
|
[[nodiscard]] T Read(GPUVAddr addr) const;
|
2019-02-24 06:15:35 +01:00
|
|
|
|
2019-03-04 05:54:16 +01:00
|
|
|
template <typename T>
|
2019-03-09 20:06:51 +01:00
|
|
|
void Write(GPUVAddr addr, T data);
|
2019-02-24 06:15:35 +01:00
|
|
|
|
2020-08-27 02:14:13 +02:00
|
|
|
[[nodiscard]] u8* GetPointer(GPUVAddr addr);
|
|
|
|
[[nodiscard]] const u8* GetPointer(GPUVAddr addr) const;
|
2019-02-24 06:15:35 +01:00
|
|
|
|
2019-04-16 21:45:24 +02:00
|
|
|
/**
|
2019-04-16 16:11:35 +02:00
|
|
|
* ReadBlock and WriteBlock are full read and write operations over virtual
|
2019-05-10 01:02:52 +02:00
|
|
|
* GPU Memory. It's important to use these when GPU memory may not be continuous
|
2019-04-16 16:11:35 +02:00
|
|
|
* in the Host Memory counterpart. Note: This functions cause Host GPU Memory
|
|
|
|
* Flushes and Invalidations, respectively to each operation.
|
|
|
|
*/
|
2020-06-20 04:02:56 +02:00
|
|
|
void ReadBlock(GPUVAddr gpu_src_addr, void* dest_buffer, std::size_t size) const;
|
|
|
|
void WriteBlock(GPUVAddr gpu_dest_addr, const void* src_buffer, std::size_t size);
|
|
|
|
void CopyBlock(GPUVAddr gpu_dest_addr, GPUVAddr gpu_src_addr, std::size_t size);
|
2019-04-16 16:11:35 +02:00
|
|
|
|
2019-04-16 21:45:24 +02:00
|
|
|
/**
|
2019-04-16 16:11:35 +02:00
|
|
|
* ReadBlockUnsafe and WriteBlockUnsafe are special versions of ReadBlock and
|
|
|
|
* WriteBlock respectively. In this versions, no flushing or invalidation is actually
|
|
|
|
* done and their performance is similar to a memcpy. This functions can be used
|
|
|
|
* on either of this 2 scenarios instead of their safe counterpart:
|
|
|
|
* - Memory which is sure to never be represented in the Host GPU.
|
|
|
|
* - Memory Managed by a Cache Manager. Example: Texture Flushing should use
|
|
|
|
* WriteBlockUnsafe instead of WriteBlock since it shouldn't invalidate the texture
|
|
|
|
* being flushed.
|
|
|
|
*/
|
2020-06-20 04:02:56 +02:00
|
|
|
void ReadBlockUnsafe(GPUVAddr gpu_src_addr, void* dest_buffer, std::size_t size) const;
|
|
|
|
void WriteBlockUnsafe(GPUVAddr gpu_dest_addr, const void* src_buffer, std::size_t size);
|
2019-04-16 16:11:35 +02:00
|
|
|
|
2020-04-08 19:34:59 +02:00
|
|
|
/**
|
2021-06-20 12:25:59 +02:00
|
|
|
* Checks if a gpu region can be simply read with a pointer.
|
2020-04-08 19:34:59 +02:00
|
|
|
*/
|
2020-08-27 02:14:13 +02:00
|
|
|
[[nodiscard]] bool IsGranularRange(GPUVAddr gpu_addr, std::size_t size) const;
|
2020-04-05 23:23:49 +02:00
|
|
|
|
2021-06-13 03:34:06 +02:00
|
|
|
/**
|
2021-06-20 12:25:59 +02:00
|
|
|
* Checks if a gpu region is mapped by a single range of cpu addresses.
|
2021-06-13 03:34:06 +02:00
|
|
|
*/
|
|
|
|
[[nodiscard]] bool IsContinousRange(GPUVAddr gpu_addr, std::size_t size) const;
|
|
|
|
|
|
|
|
/**
|
2021-06-20 12:25:59 +02:00
|
|
|
* Checks if a gpu region is mapped entirely.
|
2021-06-13 03:34:06 +02:00
|
|
|
*/
|
|
|
|
[[nodiscard]] bool IsFullyMappedRange(GPUVAddr gpu_addr, std::size_t size) const;
|
|
|
|
|
|
|
|
/**
|
2021-06-20 12:25:59 +02:00
|
|
|
* Returns a vector with all the subranges of cpu addresses mapped beneath.
|
2021-06-13 03:34:06 +02:00
|
|
|
* if the region is continous, a single pair will be returned. If it's unmapped, an empty vector
|
|
|
|
* will be returned;
|
|
|
|
*/
|
|
|
|
std::vector<std::pair<GPUVAddr, std::size_t>> GetSubmappedRange(GPUVAddr gpu_addr,
|
|
|
|
std::size_t size) const;
|
|
|
|
|
2022-02-05 18:15:26 +01:00
|
|
|
GPUVAddr Map(GPUVAddr gpu_addr, VAddr cpu_addr, std::size_t size, bool is_big_pages = true);
|
|
|
|
GPUVAddr MapSparse(GPUVAddr gpu_addr, std::size_t size, bool is_big_pages = true);
|
2020-07-26 06:16:21 +02:00
|
|
|
void Unmap(GPUVAddr gpu_addr, std::size_t size);
|
2019-03-04 05:54:16 +01:00
|
|
|
|
2022-01-29 17:42:28 +01:00
|
|
|
void FlushRegion(GPUVAddr gpu_addr, size_t size) const;
|
|
|
|
|
2022-08-14 11:36:36 +02:00
|
|
|
void InvalidateRegion(GPUVAddr gpu_addr, size_t size) const;
|
|
|
|
|
|
|
|
bool IsMemoryDirty(GPUVAddr gpu_addr, size_t size) const;
|
|
|
|
|
|
|
|
size_t MaxContinousRange(GPUVAddr gpu_addr, size_t size) const;
|
|
|
|
|
2022-04-13 16:20:34 +02:00
|
|
|
bool IsWithinGPUAddressRange(GPUVAddr gpu_addr) const {
|
|
|
|
return gpu_addr < address_space_size;
|
|
|
|
}
|
|
|
|
|
2020-07-26 06:16:21 +02:00
|
|
|
private:
|
2022-02-05 18:15:26 +01:00
|
|
|
template <bool is_big_pages, typename FuncMapped, typename FuncReserved, typename FuncUnmapped>
|
|
|
|
inline void MemoryOperation(GPUVAddr gpu_src_addr, std::size_t size, FuncMapped&& func_mapped,
|
|
|
|
FuncReserved&& func_reserved, FuncUnmapped&& func_unmapped) const;
|
|
|
|
|
|
|
|
template <bool is_safe>
|
|
|
|
void ReadBlockImpl(GPUVAddr gpu_src_addr, void* dest_buffer, std::size_t size) const;
|
|
|
|
|
|
|
|
template <bool is_safe>
|
|
|
|
void WriteBlockImpl(GPUVAddr gpu_dest_addr, const void* src_buffer, std::size_t size);
|
2021-12-31 05:36:00 +01:00
|
|
|
|
2022-02-05 18:15:26 +01:00
|
|
|
template <bool is_big_page>
|
2021-11-11 21:24:40 +01:00
|
|
|
[[nodiscard]] inline std::size_t PageEntryIndex(GPUVAddr gpu_addr) const {
|
2022-02-05 18:15:26 +01:00
|
|
|
if constexpr (is_big_page) {
|
|
|
|
return (gpu_addr >> big_page_bits) & big_page_table_mask;
|
|
|
|
} else {
|
|
|
|
return (gpu_addr >> page_bits) & page_table_mask;
|
|
|
|
}
|
2020-07-26 06:16:21 +02:00
|
|
|
}
|
2018-04-21 20:40:51 +02:00
|
|
|
|
2022-02-06 18:51:07 +01:00
|
|
|
inline bool IsBigPageContinous(size_t big_page_index) const;
|
|
|
|
inline void SetBigPageContinous(size_t big_page_index, bool value);
|
|
|
|
|
2020-07-26 06:16:21 +02:00
|
|
|
Core::System& system;
|
2022-02-05 18:15:26 +01:00
|
|
|
Core::Memory::Memory& memory;
|
|
|
|
Core::DeviceMemory& device_memory;
|
2019-03-04 05:54:16 +01:00
|
|
|
|
2021-11-11 21:24:40 +01:00
|
|
|
const u64 address_space_bits;
|
|
|
|
const u64 page_bits;
|
|
|
|
u64 address_space_size;
|
|
|
|
u64 page_size;
|
|
|
|
u64 page_mask;
|
|
|
|
u64 page_table_mask;
|
|
|
|
static constexpr u64 cpu_page_bits{12};
|
|
|
|
|
2022-02-05 18:15:26 +01:00
|
|
|
const u64 big_page_bits;
|
|
|
|
u64 big_page_size;
|
|
|
|
u64 big_page_mask;
|
|
|
|
u64 big_page_table_mask;
|
|
|
|
|
2020-06-11 05:58:57 +02:00
|
|
|
VideoCore::RasterizerInterface* rasterizer = nullptr;
|
2019-07-09 08:17:44 +02:00
|
|
|
|
2021-11-11 21:24:40 +01:00
|
|
|
enum class EntryType : u64 {
|
|
|
|
Free = 0,
|
|
|
|
Reserved = 1,
|
|
|
|
Mapped = 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<u64> entries;
|
2022-02-05 18:15:26 +01:00
|
|
|
std::vector<u64> big_entries;
|
2021-11-11 21:24:40 +01:00
|
|
|
|
|
|
|
template <EntryType entry_type>
|
|
|
|
GPUVAddr PageTableOp(GPUVAddr gpu_addr, [[maybe_unused]] VAddr cpu_addr, size_t size);
|
|
|
|
|
2022-02-05 18:15:26 +01:00
|
|
|
template <EntryType entry_type>
|
|
|
|
GPUVAddr BigPageTableOp(GPUVAddr gpu_addr, [[maybe_unused]] VAddr cpu_addr, size_t size);
|
|
|
|
|
|
|
|
template <bool is_big_page>
|
|
|
|
inline EntryType GetEntry(size_t position) const;
|
2021-01-22 22:31:08 +01:00
|
|
|
|
2022-02-05 18:15:26 +01:00
|
|
|
template <bool is_big_page>
|
|
|
|
inline void SetEntry(size_t position, EntryType entry);
|
2021-01-22 22:33:10 +01:00
|
|
|
|
2021-11-11 21:24:40 +01:00
|
|
|
Common::MultiLevelPageTable<u32> page_table;
|
2022-02-05 18:15:26 +01:00
|
|
|
Common::VirtualBuffer<u32> big_page_table_cpu;
|
2022-02-06 18:51:07 +01:00
|
|
|
|
|
|
|
std::vector<u64> big_page_continous;
|
|
|
|
|
|
|
|
constexpr static size_t continous_bits = 64;
|
2021-12-17 16:45:06 +01:00
|
|
|
|
|
|
|
const size_t unique_identifier;
|
|
|
|
|
|
|
|
static std::atomic<size_t> unique_identifier_generator;
|
2018-02-08 03:54:35 +01:00
|
|
|
};
|
|
|
|
|
2018-02-12 05:44:12 +01:00
|
|
|
} // namespace Tegra
|