1 /* 2 * QEMU ADB emulation shared definitions and prototypes 3 * 4 * Copyright (c) 2004-2007 Fabrice Bellard 5 * Copyright (c) 2007 Jocelyn Mayer 6 * 7 * Permission is hereby granted, free of charge, to any person obtaining a copy 8 * of this software and associated documentation files (the "Software"), to deal 9 * in the Software without restriction, including without limitation the rights 10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 * copies of the Software, and to permit persons to whom the Software is 12 * furnished to do so, subject to the following conditions: 13 * 14 * The above copyright notice and this permission notice shall be included in 15 * all copies or substantial portions of the Software. 16 * 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 23 * THE SOFTWARE. 24 */ 25 26 #ifndef ADB_H 27 #define ADB_H 28 29 #include "hw/qdev-core.h" 30 #include "qom/object.h" 31 32 #define MAX_ADB_DEVICES 16 33 34 #define ADB_MAX_OUT_LEN 16 35 36 typedef struct ADBBusState ADBBusState; 37 typedef struct ADBDevice ADBDevice; 38 39 /* buf = NULL means polling */ 40 typedef int ADBDeviceRequest(ADBDevice *d, uint8_t *buf_out, 41 const uint8_t *buf, int len); 42 43 typedef bool ADBDeviceHasData(ADBDevice *d); 44 45 #define TYPE_ADB_DEVICE "adb-device" 46 OBJECT_DECLARE_TYPE(ADBDevice, ADBDeviceClass, ADB_DEVICE) 47 48 struct ADBDevice { 49 /*< private >*/ 50 DeviceState parent_obj; 51 /*< public >*/ 52 53 int devaddr; 54 int handler; 55 }; 56 57 58 struct ADBDeviceClass { 59 /*< private >*/ 60 DeviceClass parent_class; 61 /*< public >*/ 62 63 ADBDeviceRequest *devreq; 64 ADBDeviceHasData *devhasdata; 65 }; 66 67 #define TYPE_ADB_BUS "apple-desktop-bus" 68 DECLARE_INSTANCE_CHECKER(ADBBusState, ADB_BUS, 69 TYPE_ADB_BUS) 70 71 #define ADB_STATUS_BUSTIMEOUT 0x1 72 #define ADB_STATUS_POLLREPLY 0x2 73 74 struct ADBBusState { 75 /*< private >*/ 76 BusState parent_obj; 77 /*< public >*/ 78 79 ADBDevice *devices[MAX_ADB_DEVICES]; 80 uint16_t pending; 81 int nb_devices; 82 int poll_index; 83 uint8_t status; 84 85 QEMUTimer *autopoll_timer; 86 bool autopoll_enabled; 87 bool autopoll_blocked; 88 uint8_t autopoll_rate_ms; 89 uint16_t autopoll_mask; 90 void (*autopoll_cb)(void *opaque); 91 void *autopoll_cb_opaque; 92 }; 93 94 int adb_request(ADBBusState *s, uint8_t *buf_out, 95 const uint8_t *buf, int len); 96 int adb_poll(ADBBusState *s, uint8_t *buf_out, uint16_t poll_mask); 97 98 void adb_autopoll_block(ADBBusState *s); 99 void adb_autopoll_unblock(ADBBusState *s); 100 101 void adb_set_autopoll_enabled(ADBBusState *s, bool enabled); 102 void adb_set_autopoll_rate_ms(ADBBusState *s, int rate_ms); 103 void adb_set_autopoll_mask(ADBBusState *s, uint16_t mask); 104 void adb_register_autopoll_callback(ADBBusState *s, void (*cb)(void *opaque), 105 void *opaque); 106 107 #define TYPE_ADB_KEYBOARD "adb-keyboard" 108 #define TYPE_ADB_MOUSE "adb-mouse" 109 110 #endif /* ADB_H */ 111