USB.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /*
  2. LUFA Library
  3. Copyright (C) Dean Camera, 2012.
  4. dean [at] fourwalledcubicle [dot] com
  5. www.lufa-lib.org
  6. */
  7. /*
  8. Copyright 2012 Dean Camera (dean [at] fourwalledcubicle [dot] com)
  9. Permission to use, copy, modify, distribute, and sell this
  10. software and its documentation for any purpose is hereby granted
  11. without fee, provided that the above copyright notice appear in
  12. all copies and that both that the copyright notice and this
  13. permission notice and warranty disclaimer appear in supporting
  14. documentation, and that the name of the author not be used in
  15. advertising or publicity pertaining to distribution of the
  16. software without specific, written prior permission.
  17. The author disclaim all warranties with regard to this
  18. software, including all implied warranties of merchantability
  19. and fitness. In no event shall the author be liable for any
  20. special, indirect or consequential damages or any damages
  21. whatsoever resulting from loss of use, data or profits, whether
  22. in an action of contract, negligence or other tortious action,
  23. arising out of or in connection with the use or performance of
  24. this software.
  25. */
  26. /** \file
  27. * \brief Master include file for the library USB functionality.
  28. *
  29. * Master include file for the library USB functionality.
  30. *
  31. * This file should be included in all user projects making use of the USB portions of the library, instead of
  32. * the individual USB driver submodule headers.
  33. */
  34. /** \defgroup Group_USB USB Core - LUFA/Drivers/USB/USB.h
  35. *
  36. * \section Sec_Dependencies Module Source Dependencies
  37. * The following files must be built with any user project that uses this module:
  38. * - LUFA/Drivers/USB/Core/ConfigDescriptors.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  39. * - LUFA/Drivers/USB/Core/DeviceStandardReq.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  40. * - LUFA/Drivers/USB/Core/Events.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  41. * - LUFA/Drivers/USB/Core/HostStandardReq.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  42. * - LUFA/Drivers/USB/Core/USBTask.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  43. * - LUFA/Drivers/USB/Core/<i>ARCH</i>/Device_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  44. * - LUFA/Drivers/USB/Core/<i>ARCH</i>/Endpoint_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  45. * - LUFA/Drivers/USB/Core/<i>ARCH</i>/EndpointStream_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  46. * - LUFA/Drivers/USB/Core/<i>ARCH</i>/Host_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  47. * - LUFA/Drivers/USB/Core/<i>ARCH</i>/Pipe_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  48. * - LUFA/Drivers/USB/Core/<i>ARCH</i>/PipeStream_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  49. * - LUFA/Drivers/USB/Core/<i>ARCH</i>/USBController_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  50. * - LUFA/Drivers/USB/Core/<i>ARCH</i>/USBInterrupt_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  51. * - LUFA/Drivers/USB/Class/Common/HIDParser.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
  52. *
  53. * \section Sec_ModDescription Module Description
  54. * Driver and framework for the USB controller of the selected architecture and microcontroller model. This module
  55. * consists of many submodules, and is designed to provide an easy way to configure and control USB host, device
  56. * or OTG mode USB applications.
  57. *
  58. * The USB stack requires the sole control over the USB controller in the microcontroller only; i.e. it does not
  59. * require any additional timers or other peripherals to operate. This ensures that the USB stack requires as few
  60. * resources as possible.
  61. *
  62. * The USB stack can be used in Device Mode for connections to USB Hosts (see \ref Group_Device), in Host mode for
  63. * hosting of other USB devices (see \ref Group_Host), or as a dual role device which can either act as a USB host
  64. * or device depending on what peripheral is connected (see \ref Group_OTG). Both modes also require a common set
  65. * of USB management functions found \ref Group_USBManagement.
  66. */
  67. /** \defgroup Group_USBClassDrivers USB Class Drivers
  68. *
  69. * Drivers for both host and device mode of the standard USB classes, for rapid application development.
  70. * Class drivers give a framework which sits on top of the low level library API, allowing for standard
  71. * USB classes to be implemented in a project with minimal user code. These drivers can be used in
  72. * conjunction with the library low level APIs to implement interfaces both via the class drivers and via
  73. * the standard library APIs.
  74. *
  75. * Multiple device mode class drivers can be used within a project, including multiple instances of the
  76. * same class driver. In this way, USB Hosts and Devices can be made quickly using the internal class drivers
  77. * so that more time and effort can be put into the end application instead of the USB protocol.
  78. *
  79. * The available class drivers and their modes are listed below.
  80. *
  81. * <table>
  82. * <tr>
  83. * <th width="200px">USB Class</th>
  84. * <th width="90px">Device Mode</th>
  85. * <th width="90px">Host Mode</th>
  86. * </tr>
  87. * <tr>
  88. * <td>Android Open Accessory</td>
  89. * <td bgcolor="#EE0000">No</td>
  90. * <td bgcolor="#00EE00">Yes</td>
  91. * </tr>
  92. * <tr>
  93. * <td>Audio 1.0</td>
  94. * <td bgcolor="#00EE00">Yes</td>
  95. * <td bgcolor="#00EE00">Yes</td>
  96. * </tr>
  97. * <tr>
  98. * <td>CDC-ACM</td>
  99. * <td bgcolor="#00EE00">Yes</td>
  100. * <td bgcolor="#00EE00">Yes</td>
  101. * </tr>
  102. * <tr>
  103. * <td>HID</td>
  104. * <td bgcolor="#00EE00">Yes</td>
  105. * <td bgcolor="#00EE00">Yes</td>
  106. * </tr>
  107. * <tr>
  108. * <td>MIDI</td>
  109. * <td bgcolor="#00EE00">Yes</td>
  110. * <td bgcolor="#00EE00">Yes</td>
  111. * </tr>
  112. * <tr>
  113. * <td>Mass Storage</td>
  114. * <td bgcolor="#00EE00">Yes</td>
  115. * <td bgcolor="#00EE00">Yes</td>
  116. * </tr>
  117. * <tr>
  118. * <td>Printer</td>
  119. * <td bgcolor="#EE0000">No</td>
  120. * <td bgcolor="#00EE00">Yes</td>
  121. * </tr>
  122. * <tr>
  123. * <td>RNDIS</td>
  124. * <td bgcolor="#00EE00">Yes</td>
  125. * <td bgcolor="#00EE00">Yes</td>
  126. * </tr>
  127. * <tr>
  128. * <td>Still Image</td>
  129. * <td bgcolor="#EE0000">No</td>
  130. * <td bgcolor="#00EE00">Yes</td>
  131. * </tr>
  132. * </table>
  133. *
  134. *
  135. * \section Sec_UsingClassDrivers Using the Class Drivers
  136. * To make the Class drivers easy to integrate into a user application, they all implement a standardized
  137. * design with similarly named/used function, enums, defines and types. The two different modes are implemented
  138. * slightly differently, and thus will be explained separately. For information on a specific class driver, read
  139. * the class driver's module documentation.
  140. *
  141. * \subsection Sec_ClassDriverDevice Device Mode Class Drivers
  142. * Implementing a Device Mode Class Driver in a user application requires a number of steps to be followed. Firstly,
  143. * the module configuration and state structure must be added to the project source. These structures are named in a
  144. * similar manner between classes, that of <tt>USB_ClassInfo_<i>{Class Name}</i>_Device_t</tt>, and are used to hold the
  145. * complete state and configuration for each class instance. Multiple class instances is where the power of the class
  146. * drivers lie; multiple interfaces of the same class simply require more instances of the Class Driver's \c USB_ClassInfo_*
  147. * structure.
  148. *
  149. * Inside the ClassInfo structure lies two sections, a \c Config section, and a \c State section. The \c Config
  150. * section contains the instance's configuration parameters, and <b>must have all fields set by the user application</b>
  151. * before the class driver is used. Each Device mode Class driver typically contains a set of configuration parameters
  152. * for the endpoint size/number of the associated logical USB interface, plus any class-specific configuration parameters.
  153. *
  154. * The following is an example of a properly initialized instance of the Audio Class Driver structure:
  155. *
  156. * \code
  157. * USB_ClassInfo_Audio_Device_t My_Audio_Interface =
  158. * {
  159. * .Config =
  160. * {
  161. * .StreamingInterfaceNumber = 1,
  162. * .DataINEndpoint =
  163. * {
  164. * .Address = (ENDPOINT_DIR_IN | 1),
  165. * .Size = 64,
  166. * .Banks = 1,
  167. * },
  168. * },
  169. * };
  170. * \endcode
  171. *
  172. * \note The class driver's configuration parameters should match those used in the device's descriptors that are
  173. * sent to the host.
  174. *
  175. * To initialize the Class driver instance, the driver's <tt><i>{Class Name}</i>_Device_ConfigureEndpoints()</tt> function
  176. * should be called in response to the \ref EVENT_USB_Device_ConfigurationChanged() event. This function will return a
  177. * boolean true value if the driver successfully initialized the instance. Like all the class driver functions, this function
  178. * takes in the address of the specific instance you wish to initialize - in this manner, multiple separate instances of
  179. * the same class type can be initialized like this:
  180. *
  181. * \code
  182. * void EVENT_USB_Device_ConfigurationChanged(void)
  183. * {
  184. * LEDs_SetAllLEDs(LEDMASK_USB_READY);
  185. *
  186. * if (!(Audio_Device_ConfigureEndpoints(&My_Audio_Interface)))
  187. * LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
  188. * }
  189. * \endcode
  190. *
  191. * Once initialized, it is important to maintain the class driver's state by repeatedly calling the Class Driver's
  192. * <tt><i>{Class Name}</i>_Device_USBTask()</tt> function in the main program loop. The exact implementation of this
  193. * function varies between class drivers, and can be used for any internal class driver purpose to maintain each
  194. * instance. Again, this function uses the address of the instance to operate on, and thus needs to be called for each
  195. * separate instance, just like the main USB maintenance routine \ref USB_USBTask():
  196. *
  197. * \code
  198. * int main(void)
  199. * {
  200. * SetupHardware();
  201. *
  202. * LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
  203. *
  204. * for (;;)
  205. * {
  206. * if (USB_DeviceState != DEVICE_STATE_Configured)
  207. * Create_And_Process_Samples();
  208. *
  209. * Audio_Device_USBTask(&My_Audio_Interface);
  210. * USB_USBTask();
  211. * }
  212. * }
  213. * \endcode
  214. *
  215. * The final standardized Device Class Driver function is the Control Request handler function
  216. * <tt><i>{Class Name}</i>_Device_ProcessControlRequest()</tt>, which should be called when the
  217. * \ref EVENT_USB_Device_ControlRequest() event fires. This function should also be called for
  218. * each class driver instance, using the address of the instance to operate on as the function's
  219. * parameter. The request handler will abort if it is determined that the current request is not
  220. * targeted at the given class driver instance, thus these methods can safely be called
  221. * one-after-another in the event handler with no form of error checking:
  222. *
  223. * \code
  224. * void EVENT_USB_Device_ControlRequest(void)
  225. * {
  226. * Audio_Device_ProcessControlRequest(&My_Audio_Interface);
  227. * }
  228. * \endcode
  229. *
  230. * Each class driver may also define a set of callback functions (which are prefixed by \c CALLBACK_*
  231. * in the function's name) which <b>must</b> also be added to the user application - refer to each
  232. * individual class driver's documentation for mandatory callbacks. In addition, each class driver may
  233. * also define a set of events (identifiable by their prefix of \c EVENT_* in the function's name), which
  234. * the user application <b>may</b> choose to implement, or ignore if not needed.
  235. *
  236. * The individual Device Mode Class Driver documentation contains more information on the non-standardized,
  237. * class-specific functions which the user application can then use on the driver instances, such as data
  238. * read and write routines. See each driver's individual documentation for more information on the
  239. * class-specific functions.
  240. *
  241. * \subsection Sec_ClassDriverHost Host Mode Class Drivers
  242. * Implementing a Host Mode Class Driver in a user application requires a number of steps to be followed. Firstly,
  243. * the module configuration and state structure must be added to the project source. These structures are named in a
  244. * similar manner between classes, that of <tt>USB_ClassInfo_<b>{Class Name}</b>_Host_t</tt>, and are used to hold the
  245. * complete state and configuration for each class instance. Multiple class instances is where the power of the class
  246. * drivers lie; multiple interfaces of the same class simply require more instances of the Class Driver's \c USB_ClassInfo_*
  247. * structure.
  248. *
  249. * Inside the \c USB_ClassInfo_* structure lies two sections, a \c Config section, and a \c State section. The \c Config
  250. * section contains the instance's configuration parameters, and <b>must have all fields set by the user application</b>
  251. * before the class driver is used. Each Device mode Class driver typically contains a set of configuration parameters
  252. * for the endpoint size/number of the associated logical USB interface, plus any class-specific configuration parameters.
  253. *
  254. * The following is an example of a properly initialized instance of the MIDI Host Class Driver structure:
  255. *
  256. * \code
  257. * USB_ClassInfo_MIDI_Host_t My_MIDI_Interface =
  258. * {
  259. * .Config =
  260. * {
  261. * .DataINPipe =
  262. * {
  263. * .Address = (PIPE_DIR_IN | 1),
  264. * .Size = 64,
  265. * .Banks = 1,
  266. * },
  267. * .DataOUTPipe =
  268. * {
  269. * .Address = (PIPE_DIR_OUT | 2),
  270. * .Size = 64,
  271. * .Banks = 1,
  272. * },
  273. * },
  274. * };
  275. * \endcode
  276. *
  277. * To initialize the Class driver instance, the driver's <tt><b>{Class Name}</b>_Host_ConfigurePipes()</tt> function
  278. * should be called in response to the \c EVENT_USB_Host_DeviceEnumerationComplete() event firing. This function will
  279. * will return an error code from the class driver's <tt><b>{Class Name}</b>_EnumerationFailure_ErrorCodes_t</tt> enum
  280. * to indicate if the driver successfully initialized the instance and bound it to an interface in the attached device.
  281. * Like all the class driver functions, this function takes in the address of the specific instance you wish to initialize -
  282. * in this manner, multiple separate instances of the same class type can be initialized. A fragment of a Class Driver
  283. * based Host mode application may look like the following:
  284. *
  285. * \code
  286. * void EVENT_USB_Host_DeviceEnumerationComplete(void)
  287. * {
  288. * LEDs_SetAllLEDs(LEDMASK_USB_ENUMERATING);
  289. *
  290. * uint16_t ConfigDescriptorSize;
  291. * uint8_t ConfigDescriptorData[512];
  292. *
  293. * if (USB_Host_GetDeviceConfigDescriptor(1, &ConfigDescriptorSize, ConfigDescriptorData,
  294. * sizeof(ConfigDescriptorData)) != HOST_GETCONFIG_Successful)
  295. * {
  296. * LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
  297. * return;
  298. * }
  299. *
  300. * if (MIDI_Host_ConfigurePipes(&Keyboard_MIDI_Interface,
  301. * ConfigDescriptorSize, ConfigDescriptorData) != MIDI_ENUMERROR_NoError)
  302. * {
  303. * LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
  304. * return;
  305. * }
  306. *
  307. * if (USB_Host_SetDeviceConfiguration(1) != HOST_SENDCONTROL_Successful)
  308. * {
  309. * LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
  310. * return;
  311. * }
  312. *
  313. * LEDs_SetAllLEDs(LEDMASK_USB_READY);
  314. * }
  315. * \endcode
  316. *
  317. * Note that the function also requires the device's configuration descriptor so that it can determine which interface
  318. * in the device to bind to - this can be retrieved as shown in the above fragment using the
  319. * \ref USB_Host_GetDeviceConfigDescriptor() function. If the device does not implement the interface the class driver
  320. * is looking for, if all the matching interfaces are already bound to class driver instances or if an error occurs while
  321. * binding to a device interface (for example, a device endpoint bank larger that the maximum supported bank size is used)
  322. * the configuration will fail.
  323. *
  324. * To complete the device enumeration after binding the host mode Class Drivers to the attached device, a call to
  325. * \c USB_Host_SetDeviceConfiguration() must be made. If the device configuration is not set within the
  326. * \c EVENT_USB_Host_DeviceEnumerationComplete() event, the host still will assume the device enumeration has failed.
  327. *
  328. * Once initialized, it is important to maintain the class driver's state by repeatedly calling the Class Driver's
  329. * <tt><b>{Class Name}</b>_Host_USBTask()</tt> function in the main program loop. The exact implementation of this
  330. * function varies between class drivers, and can be used for any internal class driver purpose to maintain each
  331. * instance. Again, this function uses the address of the instance to operate on, and thus needs to be called for each
  332. * separate instance, just like the main USB maintenance routine \ref USB_USBTask():
  333. *
  334. * \code
  335. * int main(void)
  336. * {
  337. * SetupHardware();
  338. *
  339. * LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
  340. *
  341. * for (;;)
  342. * {
  343. * if (USB_HostState != HOST_STATE_Configured)
  344. * Create_And_Process_Samples();
  345. *
  346. * MIDI_Host_USBTask(&My_Audio_Interface);
  347. * USB_USBTask();
  348. * }
  349. * }
  350. * \endcode
  351. *
  352. * Each class driver may also define a set of callback functions (which are prefixed by \c CALLBACK_*
  353. * in the function's name) which <b>must</b> also be added to the user application - refer to each
  354. * individual class driver's documentation for mandatory callbacks. In addition, each class driver may
  355. * also define a set of events (identifiable by their prefix of \c EVENT_* in the function's name), which
  356. * the user application <b>may</b> choose to implement, or ignore if not needed.
  357. *
  358. * The individual Host Mode Class Driver documentation contains more information on the non-standardized,
  359. * class-specific functions which the user application can then use on the driver instances, such as data
  360. * read and write routines. See each driver's individual documentation for more information on the
  361. * class-specific functions.
  362. */
  363. #ifndef __USB_H__
  364. #define __USB_H__
  365. /* Macros: */
  366. #define __INCLUDE_FROM_USB_DRIVER
  367. /* Includes: */
  368. #include "../../Common/Common.h"
  369. #include "Core/USBMode.h"
  370. /* Includes: */
  371. #include "Core/USBTask.h"
  372. #include "Core/Events.h"
  373. #include "Core/StdDescriptors.h"
  374. #include "Core/ConfigDescriptors.h"
  375. #include "Core/USBController.h"
  376. #include "Core/USBInterrupt.h"
  377. #if defined(USB_CAN_BE_HOST) || defined(__DOXYGEN__)
  378. #include "Core/Host.h"
  379. #include "Core/Pipe.h"
  380. #include "Core/HostStandardReq.h"
  381. #include "Core/PipeStream.h"
  382. #endif
  383. #if defined(USB_CAN_BE_DEVICE) || defined(__DOXYGEN__)
  384. #include "Core/Device.h"
  385. #include "Core/Endpoint.h"
  386. #include "Core/DeviceStandardReq.h"
  387. #include "Core/EndpointStream.h"
  388. #endif
  389. #if defined(USB_CAN_BE_BOTH) || defined(__DOXYGEN__)
  390. #include "Core/OTG.h"
  391. #endif
  392. #include "Class/AndroidAccessoryClass.h"
  393. #include "Class/AudioClass.h"
  394. #include "Class/CDCClass.h"
  395. #include "Class/HIDClass.h"
  396. #include "Class/MassStorageClass.h"
  397. #include "Class/MIDIClass.h"
  398. #include "Class/PrinterClass.h"
  399. #include "Class/RNDISClass.h"
  400. #include "Class/StillImageClass.h"
  401. #endif