symbian-qemu-0.9.1-12/qemu-symbian-svp/target-cris/mmu.h
author Gareth Stockwell <gareth.stockwell@accenture.com>
Thu, 09 Sep 2010 12:06:21 +0100
changeset 108 78b83e1454a6
parent 1 2fb8b9db1c86
permissions -rw-r--r--
Allow NVM device to be built with MinGW

#define CRIS_MMU_ERR_EXEC  0
#define CRIS_MMU_ERR_READ  1
#define CRIS_MMU_ERR_WRITE 2
#define CRIS_MMU_ERR_FLUSH 3

struct cris_mmu_result_t
{
	uint32_t phy;
	uint32_t pfn;
	int prot;
	int bf_vec;
};

void cris_mmu_flush_pid(CPUState *env, uint32_t pid);
int cris_mmu_translate(struct cris_mmu_result_t *res,
		       CPUState *env, uint32_t vaddr,
		       int rw, int mmu_idx);