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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * ADB through the IOP
  3.  * Written by Joshua M. Thompson
  4.  */
  5. /* IOP number and channel number for ADB */
  6. #define ADB_IOP IOP_NUM_ISM
  7. #define ADB_CHAN 2
  8. /* From the A/UX headers...maybe important, maybe not */
  9. #define ADB_IOP_LISTEN 0x01
  10. #define ADB_IOP_TALK 0x02
  11. #define ADB_IOP_EXISTS 0x04
  12. #define ADB_IOP_FLUSH 0x08
  13. #define ADB_IOP_RESET 0x10
  14. #define ADB_IOP_INT 0x20
  15. #define ADB_IOP_POLL 0x40
  16. #define ADB_IOP_UNINT 0x80
  17. #define AIF_RESET 0x00
  18. #define AIF_FLUSH 0x01
  19. #define AIF_LISTEN 0x08
  20. #define AIF_TALK 0x0C
  21. /* Flag bits in struct adb_iopmsg */
  22. #define ADB_IOP_EXPLICIT 0x80 /* nonzero if explicit command */
  23. #define ADB_IOP_AUTOPOLL 0x40 /* auto/SRQ polling enabled    */
  24. #define ADB_IOP_SRQ 0x04 /* SRQ detected                */
  25. #define ADB_IOP_TIMEOUT 0x02 /* nonzero if timeout          */
  26. #ifndef __ASSEMBLY__
  27. struct adb_iopmsg {
  28. __u8 flags; /* ADB flags         */
  29. __u8 count; /* no. of data bytes */
  30. __u8 cmd; /* ADB command       */
  31. __u8 data[8]; /* ADB data          */
  32. __u8 spare[21]; /* spare             */
  33. };
  34. #endif /* __ASSEMBLY__ */