]>
Commit | Line | Data |
---|---|---|
87ecb68b PB |
1 | #ifndef PRIMECELL_H |
2 | #define PRIMECELL_H | |
3 | ||
4 | /* Declarations for ARM PrimeCell based periperals. */ | |
5 | /* Also includes some devices that are currently only used by the | |
6 | ARM boards. */ | |
7 | ||
87ecb68b | 8 | /* pl061.c */ |
775616c3 | 9 | void pl061_float_high(void *opaque, uint8_t mask); |
87ecb68b PB |
10 | qemu_irq *pl061_init(uint32_t base, qemu_irq irq, qemu_irq **out); |
11 | ||
12 | /* pl080.c */ | |
13 | void *pl080_init(uint32_t base, qemu_irq irq, int nchannels); | |
14 | ||
87ecb68b PB |
15 | /* arm_sysctl.c */ |
16 | void arm_sysctl_init(uint32_t base, uint32_t sys_id); | |
17 | ||
87ecb68b | 18 | #endif |