2007-10-08 15:11:58 +02:00
|
|
|
#define CRIS_MMU_ERR_EXEC 0
|
|
|
|
#define CRIS_MMU_ERR_READ 1
|
|
|
|
#define CRIS_MMU_ERR_WRITE 2
|
|
|
|
#define CRIS_MMU_ERR_FLUSH 3
|
|
|
|
|
2009-04-25 15:51:53 +02:00
|
|
|
struct cris_mmu_result
|
2007-10-08 15:11:58 +02:00
|
|
|
{
|
|
|
|
uint32_t phy;
|
2008-05-03 00:16:17 +02:00
|
|
|
int prot;
|
2008-03-14 02:08:09 +01:00
|
|
|
int bf_vec;
|
2007-10-08 15:11:58 +02:00
|
|
|
};
|
|
|
|
|
2009-01-26 23:21:30 +01:00
|
|
|
void cris_mmu_init(CPUState *env);
|
2008-05-13 12:59:14 +02:00
|
|
|
void cris_mmu_flush_pid(CPUState *env, uint32_t pid);
|
2009-04-25 15:51:53 +02:00
|
|
|
int cris_mmu_translate(struct cris_mmu_result *res,
|
2007-10-08 15:11:58 +02:00
|
|
|
CPUState *env, uint32_t vaddr,
|
2007-10-14 09:07:08 +02:00
|
|
|
int rw, int mmu_idx);
|