2007-11-17 20:14:51 +03:00
|
|
|
#ifndef HW_MIPS_H
|
|
|
|
#define HW_MIPS_H
|
|
|
|
/* Definitions for mips board emulation. */
|
|
|
|
|
2011-10-06 18:34:39 +04:00
|
|
|
#include "memory.h"
|
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
/* gt64xxx.c */
|
2011-01-20 01:10:40 +03:00
|
|
|
PCIBus *gt64120_register(qemu_irq *pic);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2010-06-29 06:48:55 +04:00
|
|
|
/* bonito.c */
|
|
|
|
PCIBus *bonito_init(qemu_irq *pic);
|
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
/* jazz_led.c */
|
2011-10-06 18:34:39 +04:00
|
|
|
void jazz_led_init(MemoryRegion *address_space, target_phys_addr_t base);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2008-04-07 23:47:14 +04:00
|
|
|
/* rc4030.c */
|
2009-01-01 16:03:36 +03:00
|
|
|
typedef struct rc4030DMAState *rc4030_dma;
|
2009-10-02 01:12:16 +04:00
|
|
|
void rc4030_dma_memory_rw(void *opaque, target_phys_addr_t addr, uint8_t *buf, int len, int is_write);
|
2009-04-11 01:26:55 +04:00
|
|
|
void rc4030_dma_read(void *dma, uint8_t *buf, int len);
|
|
|
|
void rc4030_dma_write(void *dma, uint8_t *buf, int len);
|
|
|
|
|
|
|
|
void *rc4030_init(qemu_irq timer, qemu_irq jazz_bus,
|
2011-11-06 21:30:48 +04:00
|
|
|
qemu_irq **irqs, rc4030_dma **dmas,
|
|
|
|
MemoryRegion *sysmem);
|
2008-04-07 23:47:14 +04:00
|
|
|
|
2009-04-15 18:57:54 +04:00
|
|
|
/* dp8393x.c */
|
2009-10-02 01:12:16 +04:00
|
|
|
void dp83932_init(NICInfo *nd, target_phys_addr_t base, int it_shift,
|
2011-11-09 20:22:37 +04:00
|
|
|
MemoryRegion *address_space,
|
2009-04-15 18:57:54 +04:00
|
|
|
qemu_irq irq, void* mem_opaque,
|
2009-10-02 01:12:16 +04:00
|
|
|
void (*memory_rw)(void *opaque, target_phys_addr_t addr, uint8_t *buf, int len, int is_write));
|
2009-04-15 18:57:54 +04:00
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
#endif
|