]> git.proxmox.com Git - qemu.git/blob - hw/mips.h
ds1225y: Remove protection stuff, which doesn't belong to this device
[qemu.git] / hw / mips.h
1 #ifndef HW_MIPS_H
2 #define HW_MIPS_H
3 /* Definitions for mips board emulation. */
4
5 /* gt64xxx.c */
6 PCIBus *gt64120_register(qemu_irq *pic);
7
8 /* bonito.c */
9 PCIBus *bonito_init(qemu_irq *pic);
10
11 /* ds1225y.c */
12 void *ds1225y_init(target_phys_addr_t mem_base, const char *filename);
13
14 /* g364fb.c */
15 int g364fb_mm_init(target_phys_addr_t vram_base,
16 target_phys_addr_t ctrl_base, int it_shift,
17 qemu_irq irq);
18
19 /* mipsnet.c */
20 void mipsnet_init(int base, qemu_irq irq, NICInfo *nd);
21
22 /* jazz_led.c */
23 void jazz_led_init(target_phys_addr_t base);
24
25 /* rc4030.c */
26 typedef struct rc4030DMAState *rc4030_dma;
27 void rc4030_dma_memory_rw(void *opaque, target_phys_addr_t addr, uint8_t *buf, int len, int is_write);
28 void rc4030_dma_read(void *dma, uint8_t *buf, int len);
29 void rc4030_dma_write(void *dma, uint8_t *buf, int len);
30
31 void *rc4030_init(qemu_irq timer, qemu_irq jazz_bus,
32 qemu_irq **irqs, rc4030_dma **dmas);
33
34 /* dp8393x.c */
35 void dp83932_init(NICInfo *nd, target_phys_addr_t base, int it_shift,
36 qemu_irq irq, void* mem_opaque,
37 void (*memory_rw)(void *opaque, target_phys_addr_t addr, uint8_t *buf, int len, int is_write));
38
39 #endif