]>
Commit | Line | Data |
---|---|---|
b970ea8f BS |
1 | #ifndef HW_MIPS_CPUDEVS_H |
2 | #define HW_MIPS_CPUDEVS_H | |
3 | /* Definitions for MIPS CPU internal devices. */ | |
4 | ||
5 | /* mips_addr.c */ | |
6 | uint64_t cpu_mips_kseg0_to_phys(void *opaque, uint64_t addr); | |
7 | uint64_t cpu_mips_phys_to_kseg0(void *opaque, uint64_t addr); | |
8 | ||
9 | /* mips_int.c */ | |
61c56c8c | 10 | void cpu_mips_irq_init_cpu(CPUMIPSState *env); |
b970ea8f BS |
11 | |
12 | /* mips_timer.c */ | |
61c56c8c | 13 | void cpu_mips_clock_init(CPUMIPSState *); |
b970ea8f BS |
14 | |
15 | #endif |