|
|
1.1 root 1: #ifndef QEMU_DEVICES_H
2: #define QEMU_DEVICES_H
3:
1.1.1.6 ! root 4: /* ??? Not all users of this file can include cpu-common.h. */
! 5: struct MemoryRegion;
! 6:
1.1 root 7: /* Devices that have nowhere better to go. */
8:
9: /* smc91c111.c */
10: void smc91c111_init(NICInfo *, uint32_t, qemu_irq);
11:
1.1.1.4 root 12: /* lan9118.c */
13: void lan9118_init(NICInfo *, uint32_t, qemu_irq);
14:
1.1.1.2 root 15: /* tsc210x.c */
1.1.1.3 root 16: uWireSlave *tsc2102_init(qemu_irq pint);
17: uWireSlave *tsc2301_init(qemu_irq penirq, qemu_irq kbirq, qemu_irq dav);
18: I2SCodec *tsc210x_codec(uWireSlave *chip);
1.1.1.2 root 19: uint32_t tsc210x_txrx(void *opaque, uint32_t value, int len);
1.1.1.3 root 20: void tsc210x_set_transform(uWireSlave *chip,
21: MouseTransformInfo *info);
22: void tsc210x_key_event(uWireSlave *chip, int key, int down);
1.1.1.2 root 23:
24: /* tsc2005.c */
25: void *tsc2005_init(qemu_irq pintdav);
26: uint32_t tsc2005_txrx(void *opaque, uint32_t value, int len);
1.1.1.3 root 27: void tsc2005_set_transform(void *opaque, MouseTransformInfo *info);
1.1.1.2 root 28:
1.1 root 29: /* stellaris_input.c */
30: void stellaris_gamepad_init(int n, qemu_irq *irq, const int *keycode);
31:
1.1.1.2 root 32: /* blizzard.c */
33: void *s1d13745_init(qemu_irq gpio_int);
34: void s1d13745_write(void *opaque, int dc, uint16_t value);
35: void s1d13745_write_block(void *opaque, int dc,
36: void *buf, size_t len, int pitch);
37: uint16_t s1d13745_read(void *opaque, int dc);
38:
39: /* cbus.c */
1.1.1.3 root 40: typedef struct {
1.1.1.2 root 41: qemu_irq clk;
42: qemu_irq dat;
43: qemu_irq sel;
1.1.1.3 root 44: } CBus;
45: CBus *cbus_init(qemu_irq dat_out);
46: void cbus_attach(CBus *bus, void *slave_opaque);
1.1.1.2 root 47:
48: void *retu_init(qemu_irq irq, int vilma);
49: void *tahvo_init(qemu_irq irq, int betty);
50:
51: void retu_key_event(void *retu, int state);
52:
53: /* tc6393xb.c */
1.1.1.3 root 54: typedef struct TC6393xbState TC6393xbState;
1.1.1.2 root 55: #define TC6393XB_RAM 0x110000 /* amount of ram for Video and USB */
1.1.1.6 ! root 56: TC6393xbState *tc6393xb_init(struct MemoryRegion *sysmem,
! 57: uint32_t base, qemu_irq irq);
1.1.1.3 root 58: void tc6393xb_gpio_out_set(TC6393xbState *s, int line,
1.1.1.2 root 59: qemu_irq handler);
1.1.1.3 root 60: qemu_irq *tc6393xb_gpio_in_get(TC6393xbState *s);
61: qemu_irq tc6393xb_l3v_get(TC6393xbState *s);
1.1.1.2 root 62:
63: /* sm501.c */
1.1.1.6 ! root 64: void sm501_init(struct MemoryRegion *address_space_mem, uint32_t base,
! 65: uint32_t local_mem_bytes, qemu_irq irq,
1.1.1.3 root 66: CharDriverState *chr);
67:
1.1 root 68: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.