2015-05-13 02:38:56 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2016-05-26 17:53:30 +00:00
|
|
|
#include "core/mmio.h"
|
2015-05-21 03:37:07 +00:00
|
|
|
|
2015-05-13 02:38:56 +00:00
|
|
|
namespace Memory {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps an allocated buffer onto a region of the emulated process address space.
|
|
|
|
*
|
2017-07-22 02:17:57 +00:00
|
|
|
* @param page_table The page table of the emulated process.
|
2015-05-13 02:38:56 +00:00
|
|
|
* @param base The address to start mapping at. Must be page-aligned.
|
|
|
|
* @param size The amount of bytes to map. Must be page-aligned.
|
|
|
|
* @param target Buffer with the memory backing the mapping. Must be of length at least `size`.
|
|
|
|
*/
|
2017-07-22 02:17:57 +00:00
|
|
|
void MapMemoryRegion(PageTable& page_table, VAddr base, u32 size, u8* target);
|
2015-05-13 02:38:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a region of the emulated process address space as a IO region.
|
2017-07-22 02:17:57 +00:00
|
|
|
* @param page_table The page table of the emulated process.
|
2016-01-30 18:41:04 +00:00
|
|
|
* @param base The address to start mapping at. Must be page-aligned.
|
|
|
|
* @param size The amount of bytes to map. Must be page-aligned.
|
|
|
|
* @param mmio_handler The handler that backs the mapping.
|
2015-05-13 02:38:56 +00:00
|
|
|
*/
|
2017-07-22 02:17:57 +00:00
|
|
|
void MapIoRegion(PageTable& page_table, VAddr base, u32 size, MMIORegionPointer mmio_handler);
|
2015-05-13 02:38:56 +00:00
|
|
|
|
2017-07-22 02:17:57 +00:00
|
|
|
void UnmapRegion(PageTable& page_table, VAddr base, u32 size);
|
2015-05-13 02:38:56 +00:00
|
|
|
}
|