usbdevice_fs.h 6.8 KB

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