2015-05-13 02:38:56 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 23:15:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-19 03:52:51 +00:00
|
|
|
|
2018-01-27 15:16:39 +00:00
|
|
|
#include <algorithm>
|
2015-09-10 03:23:44 +00:00
|
|
|
#include <cstring>
|
2018-10-30 04:03:25 +00:00
|
|
|
#include <optional>
|
2018-07-18 23:02:47 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2015-05-13 02:38:56 +00:00
|
|
|
#include "common/assert.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/logging/log.h"
|
2019-03-02 20:20:28 +00:00
|
|
|
#include "common/page_table.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/swap.h"
|
2017-09-24 21:44:13 +00:00
|
|
|
#include "core/arm/arm_interface.h"
|
|
|
|
#include "core/core.h"
|
2015-08-06 00:26:52 +00:00
|
|
|
#include "core/hle/kernel/process.h"
|
2018-09-25 00:01:45 +00:00
|
|
|
#include "core/hle/kernel/vm_manager.h"
|
2018-03-25 02:21:14 +00:00
|
|
|
#include "core/hle/lock.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/memory.h"
|
2015-05-21 03:37:07 +00:00
|
|
|
#include "core/memory_setup.h"
|
2019-02-23 04:38:45 +00:00
|
|
|
#include "video_core/gpu.h"
|
2016-04-16 22:57:57 +00:00
|
|
|
#include "video_core/renderer_base.h"
|
|
|
|
|
2013-09-19 03:52:51 +00:00
|
|
|
namespace Memory {
|
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
static Common::PageTable* current_page_table = nullptr;
|
2015-05-13 02:38:56 +00:00
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
void SetCurrentPageTable(Common::PageTable* page_table) {
|
2017-09-24 21:42:42 +00:00
|
|
|
current_page_table = page_table;
|
2018-05-03 02:36:51 +00:00
|
|
|
|
|
|
|
auto& system = Core::System::GetInstance();
|
|
|
|
if (system.IsPoweredOn()) {
|
|
|
|
system.ArmInterface(0).PageTableChanged();
|
|
|
|
system.ArmInterface(1).PageTableChanged();
|
|
|
|
system.ArmInterface(2).PageTableChanged();
|
|
|
|
system.ArmInterface(3).PageTableChanged();
|
2017-09-24 21:44:13 +00:00
|
|
|
}
|
2017-09-24 21:42:42 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
static void MapPages(Common::PageTable& page_table, VAddr base, u64 size, u8* memory,
|
|
|
|
Common::PageType type) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_DEBUG(HW_Memory, "Mapping {} onto {:016X}-{:016X}", fmt::ptr(memory), base * PAGE_SIZE,
|
2018-07-02 16:20:50 +00:00
|
|
|
(base + size) * PAGE_SIZE);
|
2015-05-13 02:38:56 +00:00
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
// During boot, current_page_table might not be set yet, in which case we need not flush
|
2019-03-19 02:17:12 +00:00
|
|
|
if (Core::System::GetInstance().IsPoweredOn()) {
|
2019-02-23 04:38:45 +00:00
|
|
|
Core::System::GetInstance().GPU().FlushAndInvalidateRegion(base << PAGE_BITS,
|
|
|
|
size * PAGE_SIZE);
|
2019-02-19 01:58:32 +00:00
|
|
|
}
|
2018-03-23 02:56:41 +00:00
|
|
|
|
2017-10-10 03:56:20 +00:00
|
|
|
VAddr end = base + size;
|
2019-02-27 22:22:47 +00:00
|
|
|
ASSERT_MSG(end <= page_table.pointers.size(), "out of range mapping at {:016X}",
|
|
|
|
base + page_table.pointers.size());
|
2015-05-13 02:38:56 +00:00
|
|
|
|
2019-02-27 22:22:47 +00:00
|
|
|
std::fill(page_table.attributes.begin() + base, page_table.attributes.begin() + end, type);
|
2015-05-13 02:38:56 +00:00
|
|
|
|
2019-02-27 22:22:47 +00:00
|
|
|
if (memory == nullptr) {
|
|
|
|
std::fill(page_table.pointers.begin() + base, page_table.pointers.begin() + end, memory);
|
|
|
|
} else {
|
|
|
|
while (base != end) {
|
|
|
|
page_table.pointers[base] = memory;
|
|
|
|
|
|
|
|
base += 1;
|
2015-07-10 01:47:27 +00:00
|
|
|
memory += PAGE_SIZE;
|
2019-02-27 22:22:47 +00:00
|
|
|
}
|
2014-04-01 22:18:02 +00:00
|
|
|
}
|
2013-09-19 03:52:51 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
void MapMemoryRegion(Common::PageTable& page_table, VAddr base, u64 size, u8* target) {
|
2018-04-27 11:54:05 +00:00
|
|
|
ASSERT_MSG((size & PAGE_MASK) == 0, "non-page aligned size: {:016X}", size);
|
|
|
|
ASSERT_MSG((base & PAGE_MASK) == 0, "non-page aligned base: {:016X}", base);
|
2019-03-02 20:20:28 +00:00
|
|
|
MapPages(page_table, base / PAGE_SIZE, size / PAGE_SIZE, target, Common::PageType::Memory);
|
2015-05-13 02:38:56 +00:00
|
|
|
}
|
2014-04-26 05:27:25 +00:00
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
void MapIoRegion(Common::PageTable& page_table, VAddr base, u64 size,
|
|
|
|
Common::MemoryHookPointer mmio_handler) {
|
2018-04-27 11:54:05 +00:00
|
|
|
ASSERT_MSG((size & PAGE_MASK) == 0, "non-page aligned size: {:016X}", size);
|
|
|
|
ASSERT_MSG((base & PAGE_MASK) == 0, "non-page aligned base: {:016X}", base);
|
2019-03-02 20:20:28 +00:00
|
|
|
MapPages(page_table, base / PAGE_SIZE, size / PAGE_SIZE, nullptr, Common::PageType::Special);
|
2016-01-30 18:41:04 +00:00
|
|
|
|
2018-01-27 15:16:39 +00:00
|
|
|
auto interval = boost::icl::discrete_interval<VAddr>::closed(base, base + size - 1);
|
2019-03-02 20:20:28 +00:00
|
|
|
Common::SpecialRegion region{Common::SpecialRegion::Type::IODevice, std::move(mmio_handler)};
|
|
|
|
page_table.special_regions.add(
|
|
|
|
std::make_pair(interval, std::set<Common::SpecialRegion>{region}));
|
2015-05-13 02:38:56 +00:00
|
|
|
}
|
2014-12-30 03:35:06 +00:00
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
void UnmapRegion(Common::PageTable& page_table, VAddr base, u64 size) {
|
2018-04-27 11:54:05 +00:00
|
|
|
ASSERT_MSG((size & PAGE_MASK) == 0, "non-page aligned size: {:016X}", size);
|
|
|
|
ASSERT_MSG((base & PAGE_MASK) == 0, "non-page aligned base: {:016X}", base);
|
2019-03-02 20:20:28 +00:00
|
|
|
MapPages(page_table, base / PAGE_SIZE, size / PAGE_SIZE, nullptr, Common::PageType::Unmapped);
|
2016-04-16 22:57:57 +00:00
|
|
|
|
2018-01-27 15:16:39 +00:00
|
|
|
auto interval = boost::icl::discrete_interval<VAddr>::closed(base, base + size - 1);
|
|
|
|
page_table.special_regions.erase(interval);
|
|
|
|
}
|
2016-04-16 22:57:57 +00:00
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
void AddDebugHook(Common::PageTable& page_table, VAddr base, u64 size,
|
|
|
|
Common::MemoryHookPointer hook) {
|
2018-01-27 15:16:39 +00:00
|
|
|
auto interval = boost::icl::discrete_interval<VAddr>::closed(base, base + size - 1);
|
2019-03-02 20:20:28 +00:00
|
|
|
Common::SpecialRegion region{Common::SpecialRegion::Type::DebugHook, std::move(hook)};
|
|
|
|
page_table.special_regions.add(
|
|
|
|
std::make_pair(interval, std::set<Common::SpecialRegion>{region}));
|
2016-04-16 22:57:57 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
void RemoveDebugHook(Common::PageTable& page_table, VAddr base, u64 size,
|
|
|
|
Common::MemoryHookPointer hook) {
|
2018-01-27 15:16:39 +00:00
|
|
|
auto interval = boost::icl::discrete_interval<VAddr>::closed(base, base + size - 1);
|
2019-03-02 20:20:28 +00:00
|
|
|
Common::SpecialRegion region{Common::SpecialRegion::Type::DebugHook, std::move(hook)};
|
|
|
|
page_table.special_regions.subtract(
|
|
|
|
std::make_pair(interval, std::set<Common::SpecialRegion>{region}));
|
2017-09-30 00:38:54 +00:00
|
|
|
}
|
|
|
|
|
2018-03-25 02:21:14 +00:00
|
|
|
/**
|
|
|
|
* Gets a pointer to the exact memory at the virtual address (i.e. not page aligned)
|
|
|
|
* using a VMA from the current process
|
|
|
|
*/
|
|
|
|
static u8* GetPointerFromVMA(const Kernel::Process& process, VAddr vaddr) {
|
2018-12-06 15:59:22 +00:00
|
|
|
const auto& vm_manager = process.VMManager();
|
2018-03-25 02:21:14 +00:00
|
|
|
|
2018-12-06 15:59:22 +00:00
|
|
|
const auto it = vm_manager.FindVMA(vaddr);
|
2018-12-06 19:21:22 +00:00
|
|
|
DEBUG_ASSERT(vm_manager.IsValidHandle(it));
|
2018-03-25 02:21:14 +00:00
|
|
|
|
2018-12-06 15:59:22 +00:00
|
|
|
u8* direct_pointer = nullptr;
|
|
|
|
const auto& vma = it->second;
|
2018-03-25 02:21:14 +00:00
|
|
|
switch (vma.type) {
|
|
|
|
case Kernel::VMAType::AllocatedMemoryBlock:
|
|
|
|
direct_pointer = vma.backing_block->data() + vma.offset;
|
|
|
|
break;
|
|
|
|
case Kernel::VMAType::BackingMemory:
|
|
|
|
direct_pointer = vma.backing_memory;
|
|
|
|
break;
|
|
|
|
case Kernel::VMAType::Free:
|
|
|
|
return nullptr;
|
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
|
|
|
return direct_pointer + (vaddr - vma.base);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a pointer to the exact memory at the virtual address (i.e. not page aligned)
|
|
|
|
* using a VMA from the current process.
|
|
|
|
*/
|
|
|
|
static u8* GetPointerFromVMA(VAddr vaddr) {
|
|
|
|
return GetPointerFromVMA(*Core::CurrentProcess(), vaddr);
|
|
|
|
}
|
2016-01-30 18:41:04 +00:00
|
|
|
|
2015-05-13 02:38:56 +00:00
|
|
|
template <typename T>
|
|
|
|
T Read(const VAddr vaddr) {
|
2018-03-25 02:21:14 +00:00
|
|
|
const u8* page_pointer = current_page_table->pointers[vaddr >> PAGE_BITS];
|
|
|
|
if (page_pointer) {
|
|
|
|
// NOTE: Avoid adding any extra logic to this fast-path block
|
|
|
|
T value;
|
|
|
|
std::memcpy(&value, &page_pointer[vaddr & PAGE_MASK], sizeof(T));
|
|
|
|
return value;
|
2018-02-21 20:03:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
Common::PageType type = current_page_table->attributes[vaddr >> PAGE_BITS];
|
2015-05-13 02:38:56 +00:00
|
|
|
switch (type) {
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Unmapped:
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(HW_Memory, "Unmapped Read{} @ 0x{:08X}", sizeof(T) * 8, vaddr);
|
2015-05-13 02:38:56 +00:00
|
|
|
return 0;
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Memory:
|
2018-04-27 11:54:05 +00:00
|
|
|
ASSERT_MSG(false, "Mapped memory page without a pointer @ {:016X}", vaddr);
|
2018-03-25 02:21:14 +00:00
|
|
|
break;
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::RasterizerCachedMemory: {
|
2019-02-23 04:38:45 +00:00
|
|
|
auto host_ptr{GetPointerFromVMA(vaddr)};
|
|
|
|
Core::System::GetInstance().GPU().FlushRegion(ToCacheAddr(host_ptr), sizeof(T));
|
2016-04-16 22:57:57 +00:00
|
|
|
T value;
|
2019-02-23 04:38:45 +00:00
|
|
|
std::memcpy(&value, host_ptr, sizeof(T));
|
2016-04-16 22:57:57 +00:00
|
|
|
return value;
|
|
|
|
}
|
2018-03-25 02:21:14 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
2014-04-01 22:18:02 +00:00
|
|
|
}
|
2018-12-19 01:52:32 +00:00
|
|
|
return {};
|
2013-09-19 03:52:51 +00:00
|
|
|
}
|
|
|
|
|
2015-05-13 02:38:56 +00:00
|
|
|
template <typename T>
|
|
|
|
void Write(const VAddr vaddr, const T data) {
|
2018-03-25 02:21:14 +00:00
|
|
|
u8* page_pointer = current_page_table->pointers[vaddr >> PAGE_BITS];
|
|
|
|
if (page_pointer) {
|
|
|
|
// NOTE: Avoid adding any extra logic to this fast-path block
|
|
|
|
std::memcpy(&page_pointer[vaddr & PAGE_MASK], &data, sizeof(T));
|
2018-02-21 20:03:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
Common::PageType type = current_page_table->attributes[vaddr >> PAGE_BITS];
|
2015-05-13 02:38:56 +00:00
|
|
|
switch (type) {
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Unmapped:
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(HW_Memory, "Unmapped Write{} 0x{:08X} @ 0x{:016X}", sizeof(data) * 8,
|
2018-07-02 16:20:50 +00:00
|
|
|
static_cast<u32>(data), vaddr);
|
2018-01-27 15:16:39 +00:00
|
|
|
return;
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Memory:
|
2018-04-27 11:54:05 +00:00
|
|
|
ASSERT_MSG(false, "Mapped memory page without a pointer @ {:016X}", vaddr);
|
2018-03-25 02:21:14 +00:00
|
|
|
break;
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::RasterizerCachedMemory: {
|
2019-02-23 04:38:45 +00:00
|
|
|
auto host_ptr{GetPointerFromVMA(vaddr)};
|
|
|
|
Core::System::GetInstance().GPU().InvalidateRegion(ToCacheAddr(host_ptr), sizeof(T));
|
|
|
|
std::memcpy(host_ptr, &data, sizeof(T));
|
2018-03-25 02:21:14 +00:00
|
|
|
break;
|
2016-04-16 22:57:57 +00:00
|
|
|
}
|
2018-03-25 02:21:14 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
2015-05-13 02:38:56 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-26 05:27:25 +00:00
|
|
|
|
2017-09-26 22:27:44 +00:00
|
|
|
bool IsValidVirtualAddress(const Kernel::Process& process, const VAddr vaddr) {
|
2018-09-29 22:47:00 +00:00
|
|
|
const auto& page_table = process.VMManager().page_table;
|
2017-09-26 22:27:44 +00:00
|
|
|
|
2018-03-25 02:21:14 +00:00
|
|
|
const u8* page_pointer = page_table.pointers[vaddr >> PAGE_BITS];
|
|
|
|
if (page_pointer)
|
|
|
|
return true;
|
2018-01-20 20:56:15 +00:00
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
if (page_table.attributes[vaddr >> PAGE_BITS] == Common::PageType::RasterizerCachedMemory)
|
2018-01-27 15:16:39 +00:00
|
|
|
return true;
|
2018-03-25 02:21:14 +00:00
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
if (page_table.attributes[vaddr >> PAGE_BITS] != Common::PageType::Special)
|
2018-03-25 02:21:14 +00:00
|
|
|
return false;
|
|
|
|
|
2016-04-16 07:46:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-09-26 22:27:44 +00:00
|
|
|
bool IsValidVirtualAddress(const VAddr vaddr) {
|
2018-03-13 21:49:59 +00:00
|
|
|
return IsValidVirtualAddress(*Core::CurrentProcess(), vaddr);
|
2017-09-26 22:27:44 +00:00
|
|
|
}
|
|
|
|
|
2018-06-22 06:47:59 +00:00
|
|
|
bool IsKernelVirtualAddress(const VAddr vaddr) {
|
|
|
|
return KERNEL_REGION_VADDR <= vaddr && vaddr < KERNEL_REGION_END;
|
|
|
|
}
|
|
|
|
|
2015-05-13 02:38:56 +00:00
|
|
|
u8* GetPointer(const VAddr vaddr) {
|
|
|
|
u8* page_pointer = current_page_table->pointers[vaddr >> PAGE_BITS];
|
|
|
|
if (page_pointer) {
|
|
|
|
return page_pointer + (vaddr & PAGE_MASK);
|
2014-04-01 22:18:02 +00:00
|
|
|
}
|
2015-05-13 02:38:56 +00:00
|
|
|
|
2019-03-02 20:20:28 +00:00
|
|
|
if (current_page_table->attributes[vaddr >> PAGE_BITS] ==
|
|
|
|
Common::PageType::RasterizerCachedMemory) {
|
2018-03-25 02:21:14 +00:00
|
|
|
return GetPointerFromVMA(vaddr);
|
|
|
|
}
|
|
|
|
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(HW_Memory, "Unknown GetPointer @ 0x{:016X}", vaddr);
|
2015-05-13 02:38:56 +00:00
|
|
|
return nullptr;
|
2014-03-25 14:50:34 +00:00
|
|
|
}
|
|
|
|
|
2016-06-27 17:42:42 +00:00
|
|
|
std::string ReadCString(VAddr vaddr, std::size_t max_length) {
|
|
|
|
std::string string;
|
|
|
|
string.reserve(max_length);
|
|
|
|
for (std::size_t i = 0; i < max_length; ++i) {
|
|
|
|
char c = Read8(vaddr);
|
|
|
|
if (c == '\0')
|
|
|
|
break;
|
|
|
|
string.push_back(c);
|
|
|
|
++vaddr;
|
|
|
|
}
|
|
|
|
string.shrink_to_fit();
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
2018-08-28 01:35:15 +00:00
|
|
|
void RasterizerMarkRegionCached(VAddr vaddr, u64 size, bool cached) {
|
|
|
|
if (vaddr == 0) {
|
2018-03-25 02:21:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-24 04:19:36 +00:00
|
|
|
// Iterate over a contiguous CPU address space, which corresponds to the specified GPU address
|
|
|
|
// space, marking the region as un/cached. The region is marked un/cached at a granularity of
|
|
|
|
// CPU pages, hence why we iterate on a CPU page basis (note: GPU page size is different). This
|
|
|
|
// assumes the specified GPU address region is contiguous as well.
|
|
|
|
|
2018-08-28 01:35:15 +00:00
|
|
|
u64 num_pages = ((vaddr + size - 1) >> PAGE_BITS) - (vaddr >> PAGE_BITS) + 1;
|
|
|
|
for (unsigned i = 0; i < num_pages; ++i, vaddr += PAGE_SIZE) {
|
2019-03-02 20:20:28 +00:00
|
|
|
Common::PageType& page_type = current_page_table->attributes[vaddr >> PAGE_BITS];
|
2018-03-25 02:21:14 +00:00
|
|
|
|
|
|
|
if (cached) {
|
|
|
|
// Switch page type to cached if now cached
|
|
|
|
switch (page_type) {
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Unmapped:
|
2018-03-25 02:21:14 +00:00
|
|
|
// It is not necessary for a process to have this region mapped into its address
|
|
|
|
// space, for example, a system module need not have a VRAM mapping.
|
|
|
|
break;
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Memory:
|
|
|
|
page_type = Common::PageType::RasterizerCachedMemory;
|
2018-03-25 02:21:14 +00:00
|
|
|
current_page_table->pointers[vaddr >> PAGE_BITS] = nullptr;
|
|
|
|
break;
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::RasterizerCachedMemory:
|
2018-04-24 04:19:36 +00:00
|
|
|
// There can be more than one GPU region mapped per CPU region, so it's common that
|
|
|
|
// this area is already marked as cached.
|
|
|
|
break;
|
2018-03-25 02:21:14 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Switch page type to uncached if now uncached
|
|
|
|
switch (page_type) {
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Unmapped:
|
2018-03-25 02:21:14 +00:00
|
|
|
// It is not necessary for a process to have this region mapped into its address
|
|
|
|
// space, for example, a system module need not have a VRAM mapping.
|
|
|
|
break;
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Memory:
|
2018-04-24 04:19:36 +00:00
|
|
|
// There can be more than one GPU region mapped per CPU region, so it's common that
|
|
|
|
// this area is already unmarked as cached.
|
|
|
|
break;
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::RasterizerCachedMemory: {
|
2018-03-25 02:21:14 +00:00
|
|
|
u8* pointer = GetPointerFromVMA(vaddr & ~PAGE_MASK);
|
|
|
|
if (pointer == nullptr) {
|
|
|
|
// It's possible that this function has been called while updating the pagetable
|
|
|
|
// after unmapping a VMA. In that case the underlying VMA will no longer exist,
|
|
|
|
// and we should just leave the pagetable entry blank.
|
2019-03-02 20:20:28 +00:00
|
|
|
page_type = Common::PageType::Unmapped;
|
2018-03-25 02:21:14 +00:00
|
|
|
} else {
|
2019-03-02 20:20:28 +00:00
|
|
|
page_type = Common::PageType::Memory;
|
2018-03-25 02:21:14 +00:00
|
|
|
current_page_table->pointers[vaddr >> PAGE_BITS] = pointer;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
u8 Read8(const VAddr addr) {
|
2015-05-13 02:38:56 +00:00
|
|
|
return Read<u8>(addr);
|
2013-09-19 03:52:51 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
u16 Read16(const VAddr addr) {
|
2015-05-13 02:38:56 +00:00
|
|
|
return Read<u16_le>(addr);
|
2013-09-19 03:52:51 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
u32 Read32(const VAddr addr) {
|
2015-05-13 02:38:56 +00:00
|
|
|
return Read<u32_le>(addr);
|
2013-09-19 03:52:51 +00:00
|
|
|
}
|
|
|
|
|
2015-03-11 20:10:14 +00:00
|
|
|
u64 Read64(const VAddr addr) {
|
2015-05-13 02:38:56 +00:00
|
|
|
return Read<u64_le>(addr);
|
2013-09-19 03:52:51 +00:00
|
|
|
}
|
|
|
|
|
2017-09-30 00:38:54 +00:00
|
|
|
void ReadBlock(const Kernel::Process& process, const VAddr src_addr, void* dest_buffer,
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t size) {
|
2018-09-29 22:47:00 +00:00
|
|
|
const auto& page_table = process.VMManager().page_table;
|
2017-09-30 00:38:54 +00:00
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t remaining_size = size;
|
|
|
|
std::size_t page_index = src_addr >> PAGE_BITS;
|
|
|
|
std::size_t page_offset = src_addr & PAGE_MASK;
|
2016-04-16 08:14:18 +00:00
|
|
|
|
|
|
|
while (remaining_size > 0) {
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t copy_amount =
|
|
|
|
std::min(static_cast<std::size_t>(PAGE_SIZE) - page_offset, remaining_size);
|
2017-09-26 23:26:09 +00:00
|
|
|
const VAddr current_vaddr = static_cast<VAddr>((page_index << PAGE_BITS) + page_offset);
|
2016-04-16 08:14:18 +00:00
|
|
|
|
2017-09-30 00:38:54 +00:00
|
|
|
switch (page_table.attributes[page_index]) {
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Unmapped: {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(HW_Memory,
|
2018-07-02 16:20:50 +00:00
|
|
|
"Unmapped ReadBlock @ 0x{:016X} (start address = 0x{:016X}, size = {})",
|
|
|
|
current_vaddr, src_addr, size);
|
2016-04-16 08:14:18 +00:00
|
|
|
std::memset(dest_buffer, 0, copy_amount);
|
|
|
|
break;
|
|
|
|
}
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Memory: {
|
2017-09-30 00:38:54 +00:00
|
|
|
DEBUG_ASSERT(page_table.pointers[page_index]);
|
2016-04-16 08:14:18 +00:00
|
|
|
|
2017-09-30 00:38:54 +00:00
|
|
|
const u8* src_ptr = page_table.pointers[page_index] + page_offset;
|
2016-04-16 08:14:18 +00:00
|
|
|
std::memcpy(dest_buffer, src_ptr, copy_amount);
|
|
|
|
break;
|
|
|
|
}
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::RasterizerCachedMemory: {
|
2019-02-23 04:38:45 +00:00
|
|
|
const auto& host_ptr{GetPointerFromVMA(process, current_vaddr)};
|
|
|
|
Core::System::GetInstance().GPU().FlushRegion(ToCacheAddr(host_ptr), copy_amount);
|
|
|
|
std::memcpy(dest_buffer, host_ptr, copy_amount);
|
2018-03-25 02:21:14 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-04-16 08:14:18 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
|
|
|
page_index++;
|
|
|
|
page_offset = 0;
|
2016-04-19 19:08:02 +00:00
|
|
|
dest_buffer = static_cast<u8*>(dest_buffer) + copy_amount;
|
2016-04-16 08:14:18 +00:00
|
|
|
remaining_size -= copy_amount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
void ReadBlock(const VAddr src_addr, void* dest_buffer, const std::size_t size) {
|
2018-03-13 21:49:59 +00:00
|
|
|
ReadBlock(*Core::CurrentProcess(), src_addr, dest_buffer, size);
|
2017-09-30 00:38:54 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
void Write8(const VAddr addr, const u8 data) {
|
2014-07-05 03:46:16 +00:00
|
|
|
Write<u8>(addr, data);
|
2013-09-19 03:52:51 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
void Write16(const VAddr addr, const u16 data) {
|
2014-07-05 03:46:16 +00:00
|
|
|
Write<u16_le>(addr, data);
|
2013-09-19 03:52:51 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
void Write32(const VAddr addr, const u32 data) {
|
2014-07-05 03:46:16 +00:00
|
|
|
Write<u32_le>(addr, data);
|
2013-09-19 03:52:51 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
void Write64(const VAddr addr, const u64 data) {
|
2014-07-05 03:46:16 +00:00
|
|
|
Write<u64_le>(addr, data);
|
2013-09-19 03:52:51 +00:00
|
|
|
}
|
|
|
|
|
2017-09-30 03:42:25 +00:00
|
|
|
void WriteBlock(const Kernel::Process& process, const VAddr dest_addr, const void* src_buffer,
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t size) {
|
2018-09-29 22:47:00 +00:00
|
|
|
const auto& page_table = process.VMManager().page_table;
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t remaining_size = size;
|
|
|
|
std::size_t page_index = dest_addr >> PAGE_BITS;
|
|
|
|
std::size_t page_offset = dest_addr & PAGE_MASK;
|
2016-04-16 08:14:18 +00:00
|
|
|
|
|
|
|
while (remaining_size > 0) {
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t copy_amount =
|
|
|
|
std::min(static_cast<std::size_t>(PAGE_SIZE) - page_offset, remaining_size);
|
2017-09-26 23:26:09 +00:00
|
|
|
const VAddr current_vaddr = static_cast<VAddr>((page_index << PAGE_BITS) + page_offset);
|
2016-04-16 08:14:18 +00:00
|
|
|
|
2017-09-30 03:42:25 +00:00
|
|
|
switch (page_table.attributes[page_index]) {
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Unmapped: {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(HW_Memory,
|
2018-07-02 16:20:50 +00:00
|
|
|
"Unmapped WriteBlock @ 0x{:016X} (start address = 0x{:016X}, size = {})",
|
|
|
|
current_vaddr, dest_addr, size);
|
2016-04-16 08:14:18 +00:00
|
|
|
break;
|
2018-03-25 02:21:14 +00:00
|
|
|
}
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Memory: {
|
2017-09-30 03:42:25 +00:00
|
|
|
DEBUG_ASSERT(page_table.pointers[page_index]);
|
2016-04-16 08:14:18 +00:00
|
|
|
|
2017-09-30 03:42:25 +00:00
|
|
|
u8* dest_ptr = page_table.pointers[page_index] + page_offset;
|
2016-04-16 08:14:18 +00:00
|
|
|
std::memcpy(dest_ptr, src_buffer, copy_amount);
|
|
|
|
break;
|
|
|
|
}
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::RasterizerCachedMemory: {
|
2019-02-23 04:38:45 +00:00
|
|
|
const auto& host_ptr{GetPointerFromVMA(process, current_vaddr)};
|
|
|
|
Core::System::GetInstance().GPU().InvalidateRegion(ToCacheAddr(host_ptr), copy_amount);
|
|
|
|
std::memcpy(host_ptr, src_buffer, copy_amount);
|
2018-03-25 02:21:14 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-04-16 08:14:18 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
|
|
|
page_index++;
|
|
|
|
page_offset = 0;
|
2016-04-19 19:08:02 +00:00
|
|
|
src_buffer = static_cast<const u8*>(src_buffer) + copy_amount;
|
2016-04-16 08:14:18 +00:00
|
|
|
remaining_size -= copy_amount;
|
2015-09-10 03:23:44 +00:00
|
|
|
}
|
2014-06-24 22:51:31 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
void WriteBlock(const VAddr dest_addr, const void* src_buffer, const std::size_t size) {
|
2018-03-13 21:49:59 +00:00
|
|
|
WriteBlock(*Core::CurrentProcess(), dest_addr, src_buffer, size);
|
2017-09-30 03:42:25 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
void ZeroBlock(const Kernel::Process& process, const VAddr dest_addr, const std::size_t size) {
|
2018-09-29 22:47:00 +00:00
|
|
|
const auto& page_table = process.VMManager().page_table;
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t remaining_size = size;
|
|
|
|
std::size_t page_index = dest_addr >> PAGE_BITS;
|
|
|
|
std::size_t page_offset = dest_addr & PAGE_MASK;
|
2016-04-16 09:21:41 +00:00
|
|
|
|
|
|
|
while (remaining_size > 0) {
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t copy_amount =
|
|
|
|
std::min(static_cast<std::size_t>(PAGE_SIZE) - page_offset, remaining_size);
|
2017-09-26 23:26:09 +00:00
|
|
|
const VAddr current_vaddr = static_cast<VAddr>((page_index << PAGE_BITS) + page_offset);
|
2016-04-16 09:21:41 +00:00
|
|
|
|
2018-03-25 02:21:14 +00:00
|
|
|
switch (page_table.attributes[page_index]) {
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Unmapped: {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(HW_Memory,
|
2018-07-02 16:20:50 +00:00
|
|
|
"Unmapped ZeroBlock @ 0x{:016X} (start address = 0x{:016X}, size = {})",
|
|
|
|
current_vaddr, dest_addr, size);
|
2016-04-16 09:21:41 +00:00
|
|
|
break;
|
2018-03-25 02:21:14 +00:00
|
|
|
}
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Memory: {
|
2018-03-25 02:21:14 +00:00
|
|
|
DEBUG_ASSERT(page_table.pointers[page_index]);
|
2016-04-16 09:21:41 +00:00
|
|
|
|
2018-03-25 02:21:14 +00:00
|
|
|
u8* dest_ptr = page_table.pointers[page_index] + page_offset;
|
2016-04-16 09:21:41 +00:00
|
|
|
std::memset(dest_ptr, 0, copy_amount);
|
|
|
|
break;
|
|
|
|
}
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::RasterizerCachedMemory: {
|
2019-02-23 04:38:45 +00:00
|
|
|
const auto& host_ptr{GetPointerFromVMA(process, current_vaddr)};
|
|
|
|
Core::System::GetInstance().GPU().InvalidateRegion(ToCacheAddr(host_ptr), copy_amount);
|
|
|
|
std::memset(host_ptr, 0, copy_amount);
|
2018-03-25 02:21:14 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-04-16 09:21:41 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
|
|
|
page_index++;
|
|
|
|
page_offset = 0;
|
|
|
|
remaining_size -= copy_amount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
void CopyBlock(const Kernel::Process& process, VAddr dest_addr, VAddr src_addr,
|
|
|
|
const std::size_t size) {
|
2018-09-29 22:47:00 +00:00
|
|
|
const auto& page_table = process.VMManager().page_table;
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t remaining_size = size;
|
|
|
|
std::size_t page_index = src_addr >> PAGE_BITS;
|
|
|
|
std::size_t page_offset = src_addr & PAGE_MASK;
|
2016-04-16 14:22:45 +00:00
|
|
|
|
|
|
|
while (remaining_size > 0) {
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t copy_amount =
|
|
|
|
std::min(static_cast<std::size_t>(PAGE_SIZE) - page_offset, remaining_size);
|
2017-09-26 23:26:09 +00:00
|
|
|
const VAddr current_vaddr = static_cast<VAddr>((page_index << PAGE_BITS) + page_offset);
|
2016-04-16 14:22:45 +00:00
|
|
|
|
2018-03-25 02:21:14 +00:00
|
|
|
switch (page_table.attributes[page_index]) {
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Unmapped: {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(HW_Memory,
|
2018-07-02 16:20:50 +00:00
|
|
|
"Unmapped CopyBlock @ 0x{:016X} (start address = 0x{:016X}, size = {})",
|
|
|
|
current_vaddr, src_addr, size);
|
2018-03-25 02:21:14 +00:00
|
|
|
ZeroBlock(process, dest_addr, copy_amount);
|
2016-04-16 14:22:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::Memory: {
|
2018-03-25 02:21:14 +00:00
|
|
|
DEBUG_ASSERT(page_table.pointers[page_index]);
|
|
|
|
const u8* src_ptr = page_table.pointers[page_index] + page_offset;
|
|
|
|
WriteBlock(process, dest_addr, src_ptr, copy_amount);
|
|
|
|
break;
|
|
|
|
}
|
2019-03-02 20:20:28 +00:00
|
|
|
case Common::PageType::RasterizerCachedMemory: {
|
2019-02-23 04:38:45 +00:00
|
|
|
const auto& host_ptr{GetPointerFromVMA(process, current_vaddr)};
|
|
|
|
Core::System::GetInstance().GPU().FlushRegion(ToCacheAddr(host_ptr), copy_amount);
|
|
|
|
WriteBlock(process, dest_addr, host_ptr, copy_amount);
|
2016-04-16 14:22:45 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
|
|
|
page_index++;
|
|
|
|
page_offset = 0;
|
2017-09-26 23:26:09 +00:00
|
|
|
dest_addr += static_cast<VAddr>(copy_amount);
|
|
|
|
src_addr += static_cast<VAddr>(copy_amount);
|
2016-04-16 14:22:45 +00:00
|
|
|
remaining_size -= copy_amount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
void CopyBlock(VAddr dest_addr, VAddr src_addr, std::size_t size) {
|
2018-04-25 03:01:27 +00:00
|
|
|
CopyBlock(*Core::CurrentProcess(), dest_addr, src_addr, size);
|
|
|
|
}
|
|
|
|
|
2017-07-21 05:34:47 +00:00
|
|
|
} // namespace Memory
|