4 * Copyright (c) 2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu/osdep.h"
25 #include "hw/input/adb.h"
26 #include "adb-internal.h"
29 #define ADB_RET_NOTPRESENT (-2)
31 static void adb_device_reset(ADBDevice
*d
)
33 qdev_reset_all(DEVICE(d
));
36 int adb_request(ADBBusState
*s
, uint8_t *obuf
, const uint8_t *buf
, int len
)
42 if (cmd
== ADB_BUSRESET
) {
43 for(i
= 0; i
< s
->nb_devices
; i
++) {
49 devaddr
= buf
[0] >> 4;
50 for(i
= 0; i
< s
->nb_devices
; i
++) {
52 if (d
->devaddr
== devaddr
) {
53 ADBDeviceClass
*adc
= ADB_DEVICE_GET_CLASS(d
);
54 return adc
->devreq(d
, obuf
, buf
, len
);
57 return ADB_RET_NOTPRESENT
;
60 /* XXX: move that to cuda ? */
61 int adb_poll(ADBBusState
*s
, uint8_t *obuf
, uint16_t poll_mask
)
68 for(i
= 0; i
< s
->nb_devices
; i
++) {
69 if (s
->poll_index
>= s
->nb_devices
)
71 d
= s
->devices
[s
->poll_index
];
72 if ((1 << d
->devaddr
) & poll_mask
) {
73 buf
[0] = ADB_READREG
| (d
->devaddr
<< 4);
74 olen
= adb_request(s
, obuf
+ 1, buf
, 1);
75 /* if there is data, we poll again the same device */
87 static const TypeInfo adb_bus_type_info
= {
90 .instance_size
= sizeof(ADBBusState
),
93 const VMStateDescription vmstate_adb_device
= {
96 .minimum_version_id
= 0,
97 .fields
= (VMStateField
[]) {
98 VMSTATE_INT32(devaddr
, ADBDevice
),
99 VMSTATE_INT32(handler
, ADBDevice
),
100 VMSTATE_END_OF_LIST()
104 static void adb_device_realizefn(DeviceState
*dev
, Error
**errp
)
106 ADBDevice
*d
= ADB_DEVICE(dev
);
107 ADBBusState
*bus
= ADB_BUS(qdev_get_parent_bus(dev
));
109 if (bus
->nb_devices
>= MAX_ADB_DEVICES
) {
113 bus
->devices
[bus
->nb_devices
++] = d
;
116 static void adb_device_class_init(ObjectClass
*oc
, void *data
)
118 DeviceClass
*dc
= DEVICE_CLASS(oc
);
120 dc
->realize
= adb_device_realizefn
;
121 dc
->bus_type
= TYPE_ADB_BUS
;
124 static const TypeInfo adb_device_type_info
= {
125 .name
= TYPE_ADB_DEVICE
,
126 .parent
= TYPE_DEVICE
,
127 .instance_size
= sizeof(ADBDevice
),
129 .class_init
= adb_device_class_init
,
132 static void adb_register_types(void)
134 type_register_static(&adb_bus_type_info
);
135 type_register_static(&adb_device_type_info
);
138 type_init(adb_register_types
)