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
|
|
|
};
|
|
|
|
|
2012-03-14 01:38:21 +01:00
|
|
|
void cris_mmu_init(CPUCRISState *env);
|
|
|
|
void cris_mmu_flush_pid(CPUCRISState *env, uint32_t pid);
|
2009-04-25 15:51:53 +02:00
|
|
|
int cris_mmu_translate(struct cris_mmu_result *res,
|
2012-03-14 01:38:21 +01:00
|
|
|
CPUCRISState *env, uint32_t vaddr,
|
2010-07-05 11:39:04 +02:00
|
|
|
int rw, int mmu_idx, int debug);
|