]>
Commit | Line | Data |
---|---|---|
87ecb68b PB |
1 | #ifndef HW_MIPS_H |
2 | #define HW_MIPS_H | |
3 | /* Definitions for mips board emulation. */ | |
4 | ||
5 | /* gt64xxx.c */ | |
c2dd2a23 | 6 | PCIBus *gt64120_register(qemu_irq *pic); |
87ecb68b | 7 | |
d0f7453d HC |
8 | /* bonito.c */ |
9 | PCIBus *bonito_init(qemu_irq *pic); | |
10 | ||
87ecb68b | 11 | /* jazz_led.c */ |
64b85a8f | 12 | void jazz_led_init(target_phys_addr_t base); |
87ecb68b | 13 | |
4ce7ff6e | 14 | /* rc4030.c */ |
c6945b15 | 15 | typedef struct rc4030DMAState *rc4030_dma; |
c227f099 | 16 | void rc4030_dma_memory_rw(void *opaque, target_phys_addr_t addr, uint8_t *buf, int len, int is_write); |
68238a9e AJ |
17 | void rc4030_dma_read(void *dma, uint8_t *buf, int len); |
18 | void rc4030_dma_write(void *dma, uint8_t *buf, int len); | |
19 | ||
20 | void *rc4030_init(qemu_irq timer, qemu_irq jazz_bus, | |
21 | qemu_irq **irqs, rc4030_dma **dmas); | |
4ce7ff6e | 22 | |
a65f56ee | 23 | /* dp8393x.c */ |
c227f099 | 24 | void dp83932_init(NICInfo *nd, target_phys_addr_t base, int it_shift, |
a65f56ee | 25 | qemu_irq irq, void* mem_opaque, |
c227f099 | 26 | void (*memory_rw)(void *opaque, target_phys_addr_t addr, uint8_t *buf, int len, int is_write)); |
a65f56ee | 27 | |
87ecb68b | 28 | #endif |