2007-10-08 17:11:58 +04: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 17:51:53 +04:00
|
|
|
struct cris_mmu_result
|
2007-10-08 17:11:58 +04:00
|
|
|
{
|
|
|
|
uint32_t phy;
|
2008-05-03 02:16:17 +04:00
|
|
|
int prot;
|
2008-03-14 04:08:09 +03:00
|
|
|
int bf_vec;
|
2007-10-08 17:11:58 +04:00
|
|
|
};
|
|
|
|
|
2012-03-14 04:38:21 +04:00
|
|
|
void cris_mmu_init(CPUCRISState *env);
|
|
|
|
void cris_mmu_flush_pid(CPUCRISState *env, uint32_t pid);
|
2009-04-25 17:51:53 +04:00
|
|
|
int cris_mmu_translate(struct cris_mmu_result *res,
|
2012-03-14 04:38:21 +04:00
|
|
|
CPUCRISState *env, uint32_t vaddr,
|
2010-07-05 13:39:04 +04:00
|
|
|
int rw, int mmu_idx, int debug);
|