adb.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Definitions for ADB (Apple Desktop Bus) support.
  3.  */
  4. #ifndef __ADB_H
  5. #define __ADB_H
  6. /* ADB commands */
  7. #define ADB_BUSRESET 0
  8. #define ADB_FLUSH(id) (0x01 | ((id) << 4))
  9. #define ADB_WRITEREG(id, reg) (0x08 | (reg) | ((id) << 4))
  10. #define ADB_READREG(id, reg) (0x0C | (reg) | ((id) << 4))
  11. /* ADB default device IDs (upper 4 bits of ADB command byte) */
  12. #define ADB_DONGLE 1 /* "software execution control" devices */
  13. #define ADB_KEYBOARD 2
  14. #define ADB_MOUSE 3
  15. #define ADB_TABLET 4
  16. #define ADB_MODEM 5
  17. #define ADB_MISC 7 /* maybe a monitor */
  18. #define ADB_RET_OK 0
  19. #define ADB_RET_TIMEOUT 3
  20. /* The kind of ADB request. The controller may emulate some
  21.    or all of those CUDA/PMU packet kinds */
  22. #define ADB_PACKET 0
  23. #define CUDA_PACKET 1
  24. #define ERROR_PACKET 2
  25. #define TIMER_PACKET 3
  26. #define POWER_PACKET 4
  27. #define MACIIC_PACKET 5
  28. #define PMU_PACKET 6
  29. #ifdef __KERNEL__
  30. struct adb_request {
  31. unsigned char data[32];
  32. int nbytes;
  33. unsigned char reply[32];
  34. int reply_len;
  35. unsigned char reply_expected;
  36. unsigned char sent;
  37. unsigned char complete;
  38. void (*done)(struct adb_request *);
  39. void *arg;
  40. struct adb_request *next;
  41. };
  42. struct adb_ids {
  43. int nids;
  44. unsigned char id[16];
  45. };
  46. /* Structure which encapsulates a low-level ADB driver */
  47. struct adb_driver {
  48. char name[16];
  49. int (*probe)(void);
  50. int (*init)(void);
  51. int (*send_request)(struct adb_request *req, int sync);
  52. int (*autopoll)(int devs);
  53. void (*poll)(void);
  54. int (*reset_bus)(void);
  55. };
  56. /* Values for adb_request flags */
  57. #define ADBREQ_REPLY 1 /* expect reply */
  58. #define ADBREQ_SYNC 2 /* poll until done */
  59. #define ADBREQ_NOSEND 4 /* build the request, but don't send it */
  60. /* Messages sent thru the client_list notifier. You should NOT stop
  61.    the operation, at least not with this version */
  62. enum adb_message {
  63.     ADB_MSG_POWERDOWN, /* Currently called before sleep only */
  64.     ADB_MSG_PRE_RESET, /* Called before resetting the bus */
  65.     ADB_MSG_POST_RESET /* Called after resetting the bus (re-do init & register) */
  66. };
  67. extern struct adb_driver *adb_controller;
  68. extern struct notifier_block *adb_client_list;
  69. int adb_request(struct adb_request *req, void (*done)(struct adb_request *),
  70. int flags, int nbytes, ...);
  71. int adb_register(int default_id,int handler_id,struct adb_ids *ids,
  72.  void (*handler)(unsigned char *, int, struct pt_regs *, int));
  73. int adb_unregister(int index);
  74. void adb_poll(void);
  75. void adb_input(unsigned char *, int, struct pt_regs *, int);
  76. int adb_reset_bus(void);
  77. int adb_try_handler_change(int address, int new_id);
  78. int adb_get_infos(int address, int *original_address, int *handler_id);
  79. #endif /* __KERNEL__ */
  80. #endif /* __ADB_H */