cpu-throttle: Remove timer_mod() from cpu_throttle_set()
[qemu/ar7.git] / target / cris / mmu.h
blob9ab1642b964098f6a3c56695a46c50a9649e218a
1 #ifndef TARGET_CRIS_MMU_H
2 #define TARGET_CRIS_MMU_H
4 #define CRIS_MMU_ERR_EXEC 0
5 #define CRIS_MMU_ERR_READ 1
6 #define CRIS_MMU_ERR_WRITE 2
7 #define CRIS_MMU_ERR_FLUSH 3
9 struct cris_mmu_result
11 uint32_t phy;
12 int prot;
13 int bf_vec;
16 void cris_mmu_init(CPUCRISState *env);
17 void cris_mmu_flush_pid(CPUCRISState *env, uint32_t pid);
18 int cris_mmu_translate(struct cris_mmu_result *res,
19 CPUCRISState *env, uint32_t vaddr,
20 int rw, int mmu_idx, int debug);
22 #endif