blob: c788373c8c958a3ca2670120b4f7b506d5c0aaa2 [file] [log] [blame]
pbrook87ecb682007-11-17 17:14:51 +00001#ifndef QEMU_DEVICES_H
2#define QEMU_DEVICES_H
3
4/* Devices that have nowhere better to go. */
5
6/* smc91c111.c */
7void smc91c111_init(NICInfo *, uint32_t, qemu_irq);
8
Paul Brook2a424992009-11-16 17:06:43 +00009/* lan9118.c */
10void lan9118_init(NICInfo *, uint32_t, qemu_irq);
11
balroga5d7eb62008-04-14 21:28:11 +000012/* tsc210x.c */
Paul Brook22d83b12009-05-12 12:33:04 +010013uWireSlave *tsc2102_init(qemu_irq pint);
14uWireSlave *tsc2301_init(qemu_irq penirq, qemu_irq kbirq, qemu_irq dav);
Paul Brookbc24a222009-05-10 01:44:56 +010015I2SCodec *tsc210x_codec(uWireSlave *chip);
balroge927bb02008-05-07 14:30:38 +000016uint32_t tsc210x_txrx(void *opaque, uint32_t value, int len);
Paul Brookbc24a222009-05-10 01:44:56 +010017void tsc210x_set_transform(uWireSlave *chip,
18 MouseTransformInfo *info);
19void tsc210x_key_event(uWireSlave *chip, int key, int down);
balroga5d7eb62008-04-14 21:28:11 +000020
balroge927bb02008-05-07 14:30:38 +000021/* tsc2005.c */
22void *tsc2005_init(qemu_irq pintdav);
23uint32_t tsc2005_txrx(void *opaque, uint32_t value, int len);
Paul Brookbc24a222009-05-10 01:44:56 +010024void tsc2005_set_transform(void *opaque, MouseTransformInfo *info);
balroge927bb02008-05-07 14:30:38 +000025
pbrookcf0dbb22007-11-18 14:36:08 +000026/* stellaris_input.c */
27void stellaris_gamepad_init(int n, qemu_irq *irq, const int *keycode);
28
balrog7e7c5e42008-04-14 21:57:44 +000029/* blizzard.c */
aliguori3023f332009-01-16 19:04:14 +000030void *s1d13745_init(qemu_irq gpio_int);
balrog7e7c5e42008-04-14 21:57:44 +000031void s1d13745_write(void *opaque, int dc, uint16_t value);
32void s1d13745_write_block(void *opaque, int dc,
33 void *buf, size_t len, int pitch);
34uint16_t s1d13745_read(void *opaque, int dc);
35
36/* cbus.c */
Paul Brookbc24a222009-05-10 01:44:56 +010037typedef struct {
balrog7e7c5e42008-04-14 21:57:44 +000038 qemu_irq clk;
39 qemu_irq dat;
40 qemu_irq sel;
Paul Brookbc24a222009-05-10 01:44:56 +010041} CBus;
42CBus *cbus_init(qemu_irq dat_out);
43void cbus_attach(CBus *bus, void *slave_opaque);
balrog7e7c5e42008-04-14 21:57:44 +000044
45void *retu_init(qemu_irq irq, int vilma);
46void *tahvo_init(qemu_irq irq, int betty);
47
48void retu_key_event(void *retu, int state);
49
balrog942ac052008-04-22 03:15:10 +000050/* tusb6010.c */
Paul Brookbc24a222009-05-10 01:44:56 +010051typedef struct TUSBState TUSBState;
52TUSBState *tusb6010_init(qemu_irq intr);
53int tusb6010_sync_io(TUSBState *s);
54int tusb6010_async_io(TUSBState *s);
55void tusb6010_power(TUSBState *s, int on);
balrog942ac052008-04-22 03:15:10 +000056
balrog88d2c952008-06-09 00:03:13 +000057/* tc6393xb.c */
Paul Brookbc24a222009-05-10 01:44:56 +010058typedef struct TC6393xbState TC6393xbState;
balrog64b40bc2008-11-04 09:04:41 +000059#define TC6393XB_RAM 0x110000 /* amount of ram for Video and USB */
Paul Brookbc24a222009-05-10 01:44:56 +010060TC6393xbState *tc6393xb_init(uint32_t base, qemu_irq irq);
61void tc6393xb_gpio_out_set(TC6393xbState *s, int line,
balrog88d2c952008-06-09 00:03:13 +000062 qemu_irq handler);
Paul Brookbc24a222009-05-10 01:44:56 +010063qemu_irq *tc6393xb_gpio_in_get(TC6393xbState *s);
64qemu_irq tc6393xb_l3v_get(TC6393xbState *s);
balrog88d2c952008-06-09 00:03:13 +000065
blueswir1ffd39252008-11-05 20:24:35 +000066/* sm501.c */
aurel32ac611342009-04-19 09:15:50 +000067void sm501_init(uint32_t base, uint32_t local_mem_bytes, qemu_irq irq,
68 CharDriverState *chr);
69
pbrook87ecb682007-11-17 17:14:51 +000070#endif