]>
Commit | Line | Data |
---|---|---|
87ecb68b PB |
1 | #ifndef QEMU_DEVICES_H |
2 | #define QEMU_DEVICES_H | |
3 | ||
27a9d2ea RH |
4 | /* ??? Not all users of this file can include cpu-common.h. */ |
5 | struct MemoryRegion; | |
6 | ||
87ecb68b PB |
7 | /* Devices that have nowhere better to go. */ |
8 | ||
9 | /* smc91c111.c */ | |
10 | void smc91c111_init(NICInfo *, uint32_t, qemu_irq); | |
11 | ||
2a424990 PB |
12 | /* lan9118.c */ |
13 | void lan9118_init(NICInfo *, uint32_t, qemu_irq); | |
14 | ||
a5d7eb65 | 15 | /* tsc210x.c */ |
22d83b14 PB |
16 | uWireSlave *tsc2102_init(qemu_irq pint); |
17 | uWireSlave *tsc2301_init(qemu_irq penirq, qemu_irq kbirq, qemu_irq dav); | |
bc24a225 | 18 | I2SCodec *tsc210x_codec(uWireSlave *chip); |
e927bb00 | 19 | uint32_t tsc210x_txrx(void *opaque, uint32_t value, int len); |
bc24a225 PB |
20 | void tsc210x_set_transform(uWireSlave *chip, |
21 | MouseTransformInfo *info); | |
22 | void tsc210x_key_event(uWireSlave *chip, int key, int down); | |
a5d7eb65 | 23 | |
e927bb00 AZ |
24 | /* tsc2005.c */ |
25 | void *tsc2005_init(qemu_irq pintdav); | |
26 | uint32_t tsc2005_txrx(void *opaque, uint32_t value, int len); | |
bc24a225 | 27 | void tsc2005_set_transform(void *opaque, MouseTransformInfo *info); |
e927bb00 | 28 | |
cf0dbb21 PB |
29 | /* stellaris_input.c */ |
30 | void stellaris_gamepad_init(int n, qemu_irq *irq, const int *keycode); | |
31 | ||
7e7c5e4c | 32 | /* blizzard.c */ |
3023f332 | 33 | void *s1d13745_init(qemu_irq gpio_int); |
7e7c5e4c AZ |
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 */ | |
bc24a225 | 40 | typedef struct { |
7e7c5e4c AZ |
41 | qemu_irq clk; |
42 | qemu_irq dat; | |
43 | qemu_irq sel; | |
bc24a225 PB |
44 | } CBus; |
45 | CBus *cbus_init(qemu_irq dat_out); | |
46 | void cbus_attach(CBus *bus, void *slave_opaque); | |
7e7c5e4c AZ |
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 | ||
88d2c950 | 53 | /* tc6393xb.c */ |
bc24a225 | 54 | typedef struct TC6393xbState TC6393xbState; |
64b40bc5 | 55 | #define TC6393XB_RAM 0x110000 /* amount of ram for Video and USB */ |
fe06bd93 AK |
56 | TC6393xbState *tc6393xb_init(struct MemoryRegion *sysmem, |
57 | uint32_t base, qemu_irq irq); | |
bc24a225 | 58 | void tc6393xb_gpio_out_set(TC6393xbState *s, int line, |
88d2c950 | 59 | qemu_irq handler); |
bc24a225 PB |
60 | qemu_irq *tc6393xb_gpio_in_get(TC6393xbState *s); |
61 | qemu_irq tc6393xb_l3v_get(TC6393xbState *s); | |
88d2c950 | 62 | |
ffd39257 | 63 | /* sm501.c */ |
27a9d2ea RH |
64 | void sm501_init(struct MemoryRegion *address_space_mem, uint32_t base, |
65 | uint32_t local_mem_bytes, qemu_irq irq, | |
ac611340 AJ |
66 | CharDriverState *chr); |
67 | ||
87ecb68b | 68 | #endif |