nstool/lib/libhac/include/nn/hac/MemoryMappingHandler.h

80 lines
1.7 KiB
C
Raw Normal View History

#pragma once
2018-08-07 07:17:51 +00:00
#include <nn/hac/IKernelCapabilityHandler.h>
2018-08-07 07:17:51 +00:00
namespace nn
{
namespace hac
{
class MemoryMappingHandler :
public IKernelCapabilityHandler
{
public:
enum MemoryPerm
{
MEM_RW,
MEM_RO
};
enum MappingType
{
MAP_IO,
MAP_STATIC
};
struct sMemoryMapping
{
2018-03-22 05:26:22 +00:00
uint32_t addr; // page index
uint32_t size; // page num
MemoryPerm perm;
MappingType type;
bool operator==(const sMemoryMapping& other) const
{
return (addr == other.addr) \
&& (size == other.size) \
&& (perm == other.perm) \
&& (type == other.type);
}
bool operator!=(const sMemoryMapping& other) const
{
return !operator==(other);
}
const sMemoryMapping& operator=(const sMemoryMapping& other)
{
addr = other.addr;
size = other.size;
perm = other.perm;
type = other.type;
return *this;
}
};
MemoryMappingHandler();
void operator=(const MemoryMappingHandler& other);
bool operator==(const MemoryMappingHandler& other) const;
bool operator!=(const MemoryMappingHandler& other) const;
// kernel capabilty list in/out
void importKernelCapabilityList(const fnd::List<KernelCapabilityEntry>& caps);
void exportKernelCapabilityList(fnd::List<KernelCapabilityEntry>& caps) const;
void clear();
bool isSet() const;
const fnd::List<sMemoryMapping>& getMemoryMaps() const;
const fnd::List<sMemoryMapping>& getIoMemoryMaps() const;
private:
const std::string kModuleName = "MEMORY_MAPPING_HANDLER";
2018-03-22 05:26:22 +00:00
static const uint32_t kMaxPageAddr = BIT(24) - 1;
static const uint32_t kMaxPageNum = BIT(20) - 1;
bool mIsSet;
fnd::List<sMemoryMapping> mMemRange;
fnd::List<sMemoryMapping> mMemPage;
};
}
2018-08-07 07:17:51 +00:00
}