audio.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /*
  2. * audio.c -- Audio gadget driver
  3. *
  4. * Copyright (C) 2008 Bryan Wu <cooloney@kernel.org>
  5. * Copyright (C) 2008 Analog Devices, Inc
  6. *
  7. * Enter bugs at http://blackfin.uclinux.org/
  8. *
  9. * Licensed under the GPL-2 or later.
  10. */
  11. /* #define VERBOSE_DEBUG */
  12. #include <linux/kernel.h>
  13. #include <linux/utsname.h>
  14. #define DRIVER_DESC "Linux USB Audio Gadget"
  15. #define DRIVER_VERSION "Feb 2, 2012"
  16. /*-------------------------------------------------------------------------*/
  17. /*
  18. * Kbuild is not very cooperative with respect to linking separately
  19. * compiled library objects into one module. So for now we won't use
  20. * separate compilation ... ensuring init/exit sections work to shrink
  21. * the runtime footprint, and giving us at least some parts of what
  22. * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
  23. */
  24. #include "composite.c"
  25. #include "usbstring.c"
  26. #include "config.c"
  27. #include "epautoconf.c"
  28. /* string IDs are assigned dynamically */
  29. #define STRING_MANUFACTURER_IDX 0
  30. #define STRING_PRODUCT_IDX 1
  31. static char manufacturer[50];
  32. static struct usb_string strings_dev[] = {
  33. [STRING_MANUFACTURER_IDX].s = manufacturer,
  34. [STRING_PRODUCT_IDX].s = DRIVER_DESC,
  35. { } /* end of list */
  36. };
  37. static struct usb_gadget_strings stringtab_dev = {
  38. .language = 0x0409, /* en-us */
  39. .strings = strings_dev,
  40. };
  41. static struct usb_gadget_strings *audio_strings[] = {
  42. &stringtab_dev,
  43. NULL,
  44. };
  45. #ifdef CONFIG_GADGET_UAC1
  46. #include "u_uac1.h"
  47. #include "u_uac1.c"
  48. #include "f_uac1.c"
  49. #else
  50. #include "f_uac2.c"
  51. #endif
  52. /*-------------------------------------------------------------------------*/
  53. /* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
  54. * Instead: allocate your own, using normal USB-IF procedures.
  55. */
  56. /* Thanks to Linux Foundation for donating this product ID. */
  57. #define AUDIO_VENDOR_NUM 0x1d6b /* Linux Foundation */
  58. #define AUDIO_PRODUCT_NUM 0x0101 /* Linux-USB Audio Gadget */
  59. /*-------------------------------------------------------------------------*/
  60. static struct usb_device_descriptor device_desc = {
  61. .bLength = sizeof device_desc,
  62. .bDescriptorType = USB_DT_DEVICE,
  63. .bcdUSB = __constant_cpu_to_le16(0x200),
  64. #ifdef CONFIG_GADGET_UAC1
  65. .bDeviceClass = USB_CLASS_PER_INTERFACE,
  66. .bDeviceSubClass = 0,
  67. .bDeviceProtocol = 0,
  68. #else
  69. .bDeviceClass = USB_CLASS_MISC,
  70. .bDeviceSubClass = 0x02,
  71. .bDeviceProtocol = 0x01,
  72. #endif
  73. /* .bMaxPacketSize0 = f(hardware) */
  74. /* Vendor and product id defaults change according to what configs
  75. * we support. (As does bNumConfigurations.) These values can
  76. * also be overridden by module parameters.
  77. */
  78. .idVendor = __constant_cpu_to_le16(AUDIO_VENDOR_NUM),
  79. .idProduct = __constant_cpu_to_le16(AUDIO_PRODUCT_NUM),
  80. /* .bcdDevice = f(hardware) */
  81. /* .iManufacturer = DYNAMIC */
  82. /* .iProduct = DYNAMIC */
  83. /* NO SERIAL NUMBER */
  84. .bNumConfigurations = 1,
  85. };
  86. static struct usb_otg_descriptor otg_descriptor = {
  87. .bLength = sizeof otg_descriptor,
  88. .bDescriptorType = USB_DT_OTG,
  89. /* REVISIT SRP-only hardware is possible, although
  90. * it would not be called "OTG" ...
  91. */
  92. .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
  93. };
  94. static const struct usb_descriptor_header *otg_desc[] = {
  95. (struct usb_descriptor_header *) &otg_descriptor,
  96. NULL,
  97. };
  98. /*-------------------------------------------------------------------------*/
  99. static int __init audio_do_config(struct usb_configuration *c)
  100. {
  101. /* FIXME alloc iConfiguration string, set it in c->strings */
  102. if (gadget_is_otg(c->cdev->gadget)) {
  103. c->descriptors = otg_desc;
  104. c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
  105. }
  106. audio_bind_config(c);
  107. return 0;
  108. }
  109. static struct usb_configuration audio_config_driver = {
  110. .label = DRIVER_DESC,
  111. .bConfigurationValue = 1,
  112. /* .iConfiguration = DYNAMIC */
  113. .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
  114. #ifndef CONFIG_GADGET_UAC1
  115. .unbind = uac2_unbind_config,
  116. #endif
  117. };
  118. /*-------------------------------------------------------------------------*/
  119. static int __init audio_bind(struct usb_composite_dev *cdev)
  120. {
  121. int gcnum;
  122. int status;
  123. gcnum = usb_gadget_controller_number(cdev->gadget);
  124. if (gcnum >= 0)
  125. device_desc.bcdDevice = cpu_to_le16(0x0300 | gcnum);
  126. else {
  127. ERROR(cdev, "controller '%s' not recognized; trying %s\n",
  128. cdev->gadget->name,
  129. audio_config_driver.label);
  130. device_desc.bcdDevice =
  131. __constant_cpu_to_le16(0x0300 | 0x0099);
  132. }
  133. /* device descriptor strings: manufacturer, product */
  134. snprintf(manufacturer, sizeof manufacturer, "%s %s with %s",
  135. init_utsname()->sysname, init_utsname()->release,
  136. cdev->gadget->name);
  137. status = usb_string_id(cdev);
  138. if (status < 0)
  139. goto fail;
  140. strings_dev[STRING_MANUFACTURER_IDX].id = status;
  141. device_desc.iManufacturer = status;
  142. status = usb_string_id(cdev);
  143. if (status < 0)
  144. goto fail;
  145. strings_dev[STRING_PRODUCT_IDX].id = status;
  146. device_desc.iProduct = status;
  147. status = usb_add_config(cdev, &audio_config_driver, audio_do_config);
  148. if (status < 0)
  149. goto fail;
  150. INFO(cdev, "%s, version: %s\n", DRIVER_DESC, DRIVER_VERSION);
  151. return 0;
  152. fail:
  153. return status;
  154. }
  155. static int __exit audio_unbind(struct usb_composite_dev *cdev)
  156. {
  157. #ifdef CONFIG_GADGET_UAC1
  158. gaudio_cleanup();
  159. #endif
  160. return 0;
  161. }
  162. static struct usb_composite_driver audio_driver = {
  163. .name = "g_audio",
  164. .dev = &device_desc,
  165. .strings = audio_strings,
  166. .max_speed = USB_SPEED_HIGH,
  167. .unbind = __exit_p(audio_unbind),
  168. };
  169. static int __init init(void)
  170. {
  171. return usb_composite_probe(&audio_driver, audio_bind);
  172. }
  173. module_init(init);
  174. static void __exit cleanup(void)
  175. {
  176. usb_composite_unregister(&audio_driver);
  177. }
  178. module_exit(cleanup);
  179. MODULE_DESCRIPTION(DRIVER_DESC);
  180. MODULE_AUTHOR("Bryan Wu <cooloney@kernel.org>");
  181. MODULE_LICENSE("GPL");