usbdevice_fs.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*****************************************************************************/
  2. /*
  3. * usbdevice_fs.h -- USB device file system.
  4. *
  5. * Copyright (C) 2000
  6. * Thomas Sailer (sailer@ife.ee.ethz.ch)
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. *
  22. * History:
  23. * 0.1 04.01.2000 Created
  24. */
  25. /*****************************************************************************/
  26. #ifndef _LINUX_USBDEVICE_FS_H
  27. #define _LINUX_USBDEVICE_FS_H
  28. #include <linux/types.h>
  29. #include <linux/magic.h>
  30. /* --------------------------------------------------------------------- */
  31. /* usbdevfs ioctl codes */
  32. struct usbdevfs_ctrltransfer {
  33. __u8 bRequestType;
  34. __u8 bRequest;
  35. __u16 wValue;
  36. __u16 wIndex;
  37. __u16 wLength;
  38. __u32 timeout; /* in milliseconds */
  39. void __user *data;
  40. };
  41. struct usbdevfs_bulktransfer {
  42. unsigned int ep;
  43. unsigned int len;
  44. unsigned int timeout; /* in milliseconds */
  45. void __user *data;
  46. };
  47. struct usbdevfs_setinterface {
  48. unsigned int interface;
  49. unsigned int altsetting;
  50. };
  51. struct usbdevfs_disconnectsignal {
  52. unsigned int signr;
  53. void __user *context;
  54. };
  55. #define USBDEVFS_MAXDRIVERNAME 255
  56. struct usbdevfs_getdriver {
  57. unsigned int interface;
  58. char driver[USBDEVFS_MAXDRIVERNAME + 1];
  59. };
  60. struct usbdevfs_connectinfo {
  61. unsigned int devnum;
  62. unsigned char slow;
  63. };
  64. #define USBDEVFS_URB_SHORT_NOT_OK 0x01
  65. #define USBDEVFS_URB_ISO_ASAP 0x02
  66. #define USBDEVFS_URB_NO_FSBR 0x20
  67. #define USBDEVFS_URB_ZERO_PACKET 0x40
  68. #define USBDEVFS_URB_NO_INTERRUPT 0x80
  69. #define USBDEVFS_URB_TYPE_ISO 0
  70. #define USBDEVFS_URB_TYPE_INTERRUPT 1
  71. #define USBDEVFS_URB_TYPE_CONTROL 2
  72. #define USBDEVFS_URB_TYPE_BULK 3
  73. struct usbdevfs_iso_packet_desc {
  74. unsigned int length;
  75. unsigned int actual_length;
  76. unsigned int status;
  77. };
  78. struct usbdevfs_urb {
  79. unsigned char type;
  80. unsigned char endpoint;
  81. int status;
  82. unsigned int flags;
  83. void __user *buffer;
  84. int buffer_length;
  85. int actual_length;
  86. int start_frame;
  87. int number_of_packets;
  88. int error_count;
  89. unsigned int signr; /* signal to be sent on completion,
  90. or 0 if none should be sent. */
  91. void __user *usercontext;
  92. struct usbdevfs_iso_packet_desc iso_frame_desc[0];
  93. };
  94. /* ioctls for talking directly to drivers */
  95. struct usbdevfs_ioctl {
  96. int ifno; /* interface 0..N ; negative numbers reserved */
  97. int ioctl_code; /* MUST encode size + direction of data so the
  98. * macros in <asm/ioctl.h> give correct values */
  99. void __user *data; /* param buffer (in, or out) */
  100. };
  101. /* You can do most things with hubs just through control messages,
  102. * except find out what device connects to what port. */
  103. struct usbdevfs_hub_portinfo {
  104. char nports; /* number of downstream ports in this hub */
  105. char port [127]; /* e.g. port 3 connects to device 27 */
  106. };
  107. #ifdef __KERNEL__
  108. #ifdef CONFIG_COMPAT
  109. #include <linux/compat.h>
  110. struct usbdevfs_urb32 {
  111. unsigned char type;
  112. unsigned char endpoint;
  113. compat_int_t status;
  114. compat_uint_t flags;
  115. compat_caddr_t buffer;
  116. compat_int_t buffer_length;
  117. compat_int_t actual_length;
  118. compat_int_t start_frame;
  119. compat_int_t number_of_packets;
  120. compat_int_t error_count;
  121. compat_uint_t signr;
  122. compat_caddr_t usercontext; /* unused */
  123. struct usbdevfs_iso_packet_desc iso_frame_desc[0];
  124. };
  125. struct usbdevfs_ioctl32 {
  126. s32 ifno;
  127. s32 ioctl_code;
  128. compat_caddr_t data;
  129. };
  130. #endif
  131. #endif /* __KERNEL__ */
  132. #define USBDEVFS_CONTROL _IOWR('U', 0, struct usbdevfs_ctrltransfer)
  133. #define USBDEVFS_BULK _IOWR('U', 2, struct usbdevfs_bulktransfer)
  134. #define USBDEVFS_RESETEP _IOR('U', 3, unsigned int)
  135. #define USBDEVFS_SETINTERFACE _IOR('U', 4, struct usbdevfs_setinterface)
  136. #define USBDEVFS_SETCONFIGURATION _IOR('U', 5, unsigned int)
  137. #define USBDEVFS_GETDRIVER _IOW('U', 8, struct usbdevfs_getdriver)
  138. #define USBDEVFS_SUBMITURB _IOR('U', 10, struct usbdevfs_urb)
  139. #define USBDEVFS_SUBMITURB32 _IOR('U', 10, struct usbdevfs_urb32)
  140. #define USBDEVFS_DISCARDURB _IO('U', 11)
  141. #define USBDEVFS_REAPURB _IOW('U', 12, void *)
  142. #define USBDEVFS_REAPURB32 _IOW('U', 12, __u32)
  143. #define USBDEVFS_REAPURBNDELAY _IOW('U', 13, void *)
  144. #define USBDEVFS_REAPURBNDELAY32 _IOW('U', 13, __u32)
  145. #define USBDEVFS_DISCSIGNAL _IOR('U', 14, struct usbdevfs_disconnectsignal)
  146. #define USBDEVFS_CLAIMINTERFACE _IOR('U', 15, unsigned int)
  147. #define USBDEVFS_RELEASEINTERFACE _IOR('U', 16, unsigned int)
  148. #define USBDEVFS_CONNECTINFO _IOW('U', 17, struct usbdevfs_connectinfo)
  149. #define USBDEVFS_IOCTL _IOWR('U', 18, struct usbdevfs_ioctl)
  150. #define USBDEVFS_IOCTL32 _IOWR('U', 18, struct usbdevfs_ioctl32)
  151. #define USBDEVFS_HUB_PORTINFO _IOR('U', 19, struct usbdevfs_hub_portinfo)
  152. #define USBDEVFS_RESET _IO('U', 20)
  153. #define USBDEVFS_CLEAR_HALT _IOR('U', 21, unsigned int)
  154. #define USBDEVFS_DISCONNECT _IO('U', 22)
  155. #define USBDEVFS_CONNECT _IO('U', 23)
  156. #endif /* _LINUX_USBDEVICE_FS_H */