serial.c 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340
  1. /*
  2. * g_serial.c -- USB gadget serial driver
  3. *
  4. * Copyright 2003 (C) Al Borchers (alborchers@steinerpoint.com)
  5. *
  6. * This code is based in part on the Gadget Zero driver, which
  7. * is Copyright (C) 2003 by David Brownell, all rights reserved.
  8. *
  9. * This code also borrows from usbserial.c, which is
  10. * Copyright (C) 1999 - 2002 Greg Kroah-Hartman (greg@kroah.com)
  11. * Copyright (C) 2000 Peter Berger (pberger@brimson.com)
  12. * Copyright (C) 2000 Al Borchers (alborchers@steinerpoint.com)
  13. *
  14. * This software is distributed under the terms of the GNU General
  15. * Public License ("GPL") as published by the Free Software Foundation,
  16. * either version 2 of that License or (at your option) any later version.
  17. *
  18. */
  19. #include <linux/module.h>
  20. #include <linux/kernel.h>
  21. #include <linux/delay.h>
  22. #include <linux/ioport.h>
  23. #include <linux/slab.h>
  24. #include <linux/errno.h>
  25. #include <linux/init.h>
  26. #include <linux/timer.h>
  27. #include <linux/list.h>
  28. #include <linux/interrupt.h>
  29. #include <linux/utsname.h>
  30. #include <linux/wait.h>
  31. #include <linux/proc_fs.h>
  32. #include <linux/device.h>
  33. #include <linux/tty.h>
  34. #include <linux/tty_flip.h>
  35. #include <asm/byteorder.h>
  36. #include <asm/io.h>
  37. #include <asm/irq.h>
  38. #include <asm/system.h>
  39. #include <asm/unaligned.h>
  40. #include <asm/uaccess.h>
  41. #include <linux/usb/ch9.h>
  42. #include <linux/usb/cdc.h>
  43. #include <linux/usb_gadget.h>
  44. #include "gadget_chips.h"
  45. /* Defines */
  46. #define GS_VERSION_STR "v2.2"
  47. #define GS_VERSION_NUM 0x0202
  48. #define GS_LONG_NAME "Gadget Serial"
  49. #define GS_SHORT_NAME "g_serial"
  50. #define GS_MAJOR 127
  51. #define GS_MINOR_START 0
  52. #define GS_NUM_PORTS 16
  53. #define GS_NUM_CONFIGS 1
  54. #define GS_NO_CONFIG_ID 0
  55. #define GS_BULK_CONFIG_ID 1
  56. #define GS_ACM_CONFIG_ID 2
  57. #define GS_MAX_NUM_INTERFACES 2
  58. #define GS_BULK_INTERFACE_ID 0
  59. #define GS_CONTROL_INTERFACE_ID 0
  60. #define GS_DATA_INTERFACE_ID 1
  61. #define GS_MAX_DESC_LEN 256
  62. #define GS_DEFAULT_READ_Q_SIZE 32
  63. #define GS_DEFAULT_WRITE_Q_SIZE 32
  64. #define GS_DEFAULT_WRITE_BUF_SIZE 8192
  65. #define GS_TMP_BUF_SIZE 8192
  66. #define GS_CLOSE_TIMEOUT 15
  67. #define GS_DEFAULT_USE_ACM 0
  68. #define GS_DEFAULT_DTE_RATE 9600
  69. #define GS_DEFAULT_DATA_BITS 8
  70. #define GS_DEFAULT_PARITY USB_CDC_NO_PARITY
  71. #define GS_DEFAULT_CHAR_FORMAT USB_CDC_1_STOP_BITS
  72. /* select highspeed/fullspeed, hiding highspeed if not configured */
  73. #ifdef CONFIG_USB_GADGET_DUALSPEED
  74. #define GS_SPEED_SELECT(is_hs,hs,fs) ((is_hs) ? (hs) : (fs))
  75. #else
  76. #define GS_SPEED_SELECT(is_hs,hs,fs) (fs)
  77. #endif /* CONFIG_USB_GADGET_DUALSPEED */
  78. /* debug settings */
  79. #ifdef GS_DEBUG
  80. static int debug = 1;
  81. #define gs_debug(format, arg...) \
  82. do { if (debug) printk(KERN_DEBUG format, ## arg); } while(0)
  83. #define gs_debug_level(level, format, arg...) \
  84. do { if (debug>=level) printk(KERN_DEBUG format, ## arg); } while(0)
  85. #else
  86. #define gs_debug(format, arg...) \
  87. do { } while(0)
  88. #define gs_debug_level(level, format, arg...) \
  89. do { } while(0)
  90. #endif /* GS_DEBUG */
  91. /* Thanks to NetChip Technologies for donating this product ID.
  92. *
  93. * DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
  94. * Instead: allocate your own, using normal USB-IF procedures.
  95. */
  96. #define GS_VENDOR_ID 0x0525 /* NetChip */
  97. #define GS_PRODUCT_ID 0xa4a6 /* Linux-USB Serial Gadget */
  98. #define GS_CDC_PRODUCT_ID 0xa4a7 /* ... as CDC-ACM */
  99. #define GS_LOG2_NOTIFY_INTERVAL 5 /* 1 << 5 == 32 msec */
  100. #define GS_NOTIFY_MAXPACKET 8
  101. /* Structures */
  102. struct gs_dev;
  103. /* circular buffer */
  104. struct gs_buf {
  105. unsigned int buf_size;
  106. char *buf_buf;
  107. char *buf_get;
  108. char *buf_put;
  109. };
  110. /* list of requests */
  111. struct gs_req_entry {
  112. struct list_head re_entry;
  113. struct usb_request *re_req;
  114. };
  115. /* the port structure holds info for each port, one for each minor number */
  116. struct gs_port {
  117. struct gs_dev *port_dev; /* pointer to device struct */
  118. struct tty_struct *port_tty; /* pointer to tty struct */
  119. spinlock_t port_lock;
  120. int port_num;
  121. int port_open_count;
  122. int port_in_use; /* open/close in progress */
  123. wait_queue_head_t port_write_wait;/* waiting to write */
  124. struct gs_buf *port_write_buf;
  125. struct usb_cdc_line_coding port_line_coding;
  126. };
  127. /* the device structure holds info for the USB device */
  128. struct gs_dev {
  129. struct usb_gadget *dev_gadget; /* gadget device pointer */
  130. spinlock_t dev_lock; /* lock for set/reset config */
  131. int dev_config; /* configuration number */
  132. struct usb_ep *dev_notify_ep; /* address of notify endpoint */
  133. struct usb_ep *dev_in_ep; /* address of in endpoint */
  134. struct usb_ep *dev_out_ep; /* address of out endpoint */
  135. struct usb_endpoint_descriptor /* descriptor of notify ep */
  136. *dev_notify_ep_desc;
  137. struct usb_endpoint_descriptor /* descriptor of in endpoint */
  138. *dev_in_ep_desc;
  139. struct usb_endpoint_descriptor /* descriptor of out endpoint */
  140. *dev_out_ep_desc;
  141. struct usb_request *dev_ctrl_req; /* control request */
  142. struct list_head dev_req_list; /* list of write requests */
  143. int dev_sched_port; /* round robin port scheduled */
  144. struct gs_port *dev_port[GS_NUM_PORTS]; /* the ports */
  145. };
  146. /* Functions */
  147. /* module */
  148. static int __init gs_module_init(void);
  149. static void __exit gs_module_exit(void);
  150. /* tty driver */
  151. static int gs_open(struct tty_struct *tty, struct file *file);
  152. static void gs_close(struct tty_struct *tty, struct file *file);
  153. static int gs_write(struct tty_struct *tty,
  154. const unsigned char *buf, int count);
  155. static void gs_put_char(struct tty_struct *tty, unsigned char ch);
  156. static void gs_flush_chars(struct tty_struct *tty);
  157. static int gs_write_room(struct tty_struct *tty);
  158. static int gs_chars_in_buffer(struct tty_struct *tty);
  159. static void gs_throttle(struct tty_struct * tty);
  160. static void gs_unthrottle(struct tty_struct * tty);
  161. static void gs_break(struct tty_struct *tty, int break_state);
  162. static int gs_ioctl(struct tty_struct *tty, struct file *file,
  163. unsigned int cmd, unsigned long arg);
  164. static void gs_set_termios(struct tty_struct *tty, struct ktermios *old);
  165. static int gs_send(struct gs_dev *dev);
  166. static int gs_send_packet(struct gs_dev *dev, char *packet,
  167. unsigned int size);
  168. static int gs_recv_packet(struct gs_dev *dev, char *packet,
  169. unsigned int size);
  170. static void gs_read_complete(struct usb_ep *ep, struct usb_request *req);
  171. static void gs_write_complete(struct usb_ep *ep, struct usb_request *req);
  172. /* gadget driver */
  173. static int gs_bind(struct usb_gadget *gadget);
  174. static void gs_unbind(struct usb_gadget *gadget);
  175. static int gs_setup(struct usb_gadget *gadget,
  176. const struct usb_ctrlrequest *ctrl);
  177. static int gs_setup_standard(struct usb_gadget *gadget,
  178. const struct usb_ctrlrequest *ctrl);
  179. static int gs_setup_class(struct usb_gadget *gadget,
  180. const struct usb_ctrlrequest *ctrl);
  181. static void gs_setup_complete(struct usb_ep *ep, struct usb_request *req);
  182. static void gs_disconnect(struct usb_gadget *gadget);
  183. static int gs_set_config(struct gs_dev *dev, unsigned config);
  184. static void gs_reset_config(struct gs_dev *dev);
  185. static int gs_build_config_buf(u8 *buf, enum usb_device_speed speed,
  186. u8 type, unsigned int index, int is_otg);
  187. static struct usb_request *gs_alloc_req(struct usb_ep *ep, unsigned int len,
  188. gfp_t kmalloc_flags);
  189. static void gs_free_req(struct usb_ep *ep, struct usb_request *req);
  190. static struct gs_req_entry *gs_alloc_req_entry(struct usb_ep *ep, unsigned len,
  191. gfp_t kmalloc_flags);
  192. static void gs_free_req_entry(struct usb_ep *ep, struct gs_req_entry *req);
  193. static int gs_alloc_ports(struct gs_dev *dev, gfp_t kmalloc_flags);
  194. static void gs_free_ports(struct gs_dev *dev);
  195. /* circular buffer */
  196. static struct gs_buf *gs_buf_alloc(unsigned int size, gfp_t kmalloc_flags);
  197. static void gs_buf_free(struct gs_buf *gb);
  198. static void gs_buf_clear(struct gs_buf *gb);
  199. static unsigned int gs_buf_data_avail(struct gs_buf *gb);
  200. static unsigned int gs_buf_space_avail(struct gs_buf *gb);
  201. static unsigned int gs_buf_put(struct gs_buf *gb, const char *buf,
  202. unsigned int count);
  203. static unsigned int gs_buf_get(struct gs_buf *gb, char *buf,
  204. unsigned int count);
  205. /* external functions */
  206. extern int net2280_set_fifo_mode(struct usb_gadget *gadget, int mode);
  207. /* Globals */
  208. static struct gs_dev *gs_device;
  209. static const char *EP_IN_NAME;
  210. static const char *EP_OUT_NAME;
  211. static const char *EP_NOTIFY_NAME;
  212. static struct semaphore gs_open_close_sem[GS_NUM_PORTS];
  213. static unsigned int read_q_size = GS_DEFAULT_READ_Q_SIZE;
  214. static unsigned int write_q_size = GS_DEFAULT_WRITE_Q_SIZE;
  215. static unsigned int write_buf_size = GS_DEFAULT_WRITE_BUF_SIZE;
  216. static unsigned int use_acm = GS_DEFAULT_USE_ACM;
  217. /* tty driver struct */
  218. static const struct tty_operations gs_tty_ops = {
  219. .open = gs_open,
  220. .close = gs_close,
  221. .write = gs_write,
  222. .put_char = gs_put_char,
  223. .flush_chars = gs_flush_chars,
  224. .write_room = gs_write_room,
  225. .ioctl = gs_ioctl,
  226. .set_termios = gs_set_termios,
  227. .throttle = gs_throttle,
  228. .unthrottle = gs_unthrottle,
  229. .break_ctl = gs_break,
  230. .chars_in_buffer = gs_chars_in_buffer,
  231. };
  232. static struct tty_driver *gs_tty_driver;
  233. /* gadget driver struct */
  234. static struct usb_gadget_driver gs_gadget_driver = {
  235. #ifdef CONFIG_USB_GADGET_DUALSPEED
  236. .speed = USB_SPEED_HIGH,
  237. #else
  238. .speed = USB_SPEED_FULL,
  239. #endif /* CONFIG_USB_GADGET_DUALSPEED */
  240. .function = GS_LONG_NAME,
  241. .bind = gs_bind,
  242. .unbind = gs_unbind,
  243. .setup = gs_setup,
  244. .disconnect = gs_disconnect,
  245. .driver = {
  246. .name = GS_SHORT_NAME,
  247. },
  248. };
  249. /* USB descriptors */
  250. #define GS_MANUFACTURER_STR_ID 1
  251. #define GS_PRODUCT_STR_ID 2
  252. #define GS_SERIAL_STR_ID 3
  253. #define GS_BULK_CONFIG_STR_ID 4
  254. #define GS_ACM_CONFIG_STR_ID 5
  255. #define GS_CONTROL_STR_ID 6
  256. #define GS_DATA_STR_ID 7
  257. /* static strings, in UTF-8 */
  258. static char manufacturer[50];
  259. static struct usb_string gs_strings[] = {
  260. { GS_MANUFACTURER_STR_ID, manufacturer },
  261. { GS_PRODUCT_STR_ID, GS_LONG_NAME },
  262. { GS_SERIAL_STR_ID, "0" },
  263. { GS_BULK_CONFIG_STR_ID, "Gadget Serial Bulk" },
  264. { GS_ACM_CONFIG_STR_ID, "Gadget Serial CDC ACM" },
  265. { GS_CONTROL_STR_ID, "Gadget Serial Control" },
  266. { GS_DATA_STR_ID, "Gadget Serial Data" },
  267. { } /* end of list */
  268. };
  269. static struct usb_gadget_strings gs_string_table = {
  270. .language = 0x0409, /* en-us */
  271. .strings = gs_strings,
  272. };
  273. static struct usb_device_descriptor gs_device_desc = {
  274. .bLength = USB_DT_DEVICE_SIZE,
  275. .bDescriptorType = USB_DT_DEVICE,
  276. .bcdUSB = __constant_cpu_to_le16(0x0200),
  277. .bDeviceSubClass = 0,
  278. .bDeviceProtocol = 0,
  279. .idVendor = __constant_cpu_to_le16(GS_VENDOR_ID),
  280. .idProduct = __constant_cpu_to_le16(GS_PRODUCT_ID),
  281. .iManufacturer = GS_MANUFACTURER_STR_ID,
  282. .iProduct = GS_PRODUCT_STR_ID,
  283. .iSerialNumber = GS_SERIAL_STR_ID,
  284. .bNumConfigurations = GS_NUM_CONFIGS,
  285. };
  286. static struct usb_otg_descriptor gs_otg_descriptor = {
  287. .bLength = sizeof(gs_otg_descriptor),
  288. .bDescriptorType = USB_DT_OTG,
  289. .bmAttributes = USB_OTG_SRP,
  290. };
  291. static struct usb_config_descriptor gs_bulk_config_desc = {
  292. .bLength = USB_DT_CONFIG_SIZE,
  293. .bDescriptorType = USB_DT_CONFIG,
  294. /* .wTotalLength computed dynamically */
  295. .bNumInterfaces = 1,
  296. .bConfigurationValue = GS_BULK_CONFIG_ID,
  297. .iConfiguration = GS_BULK_CONFIG_STR_ID,
  298. .bmAttributes = USB_CONFIG_ATT_ONE | USB_CONFIG_ATT_SELFPOWER,
  299. .bMaxPower = 1,
  300. };
  301. static struct usb_config_descriptor gs_acm_config_desc = {
  302. .bLength = USB_DT_CONFIG_SIZE,
  303. .bDescriptorType = USB_DT_CONFIG,
  304. /* .wTotalLength computed dynamically */
  305. .bNumInterfaces = 2,
  306. .bConfigurationValue = GS_ACM_CONFIG_ID,
  307. .iConfiguration = GS_ACM_CONFIG_STR_ID,
  308. .bmAttributes = USB_CONFIG_ATT_ONE | USB_CONFIG_ATT_SELFPOWER,
  309. .bMaxPower = 1,
  310. };
  311. static const struct usb_interface_descriptor gs_bulk_interface_desc = {
  312. .bLength = USB_DT_INTERFACE_SIZE,
  313. .bDescriptorType = USB_DT_INTERFACE,
  314. .bInterfaceNumber = GS_BULK_INTERFACE_ID,
  315. .bNumEndpoints = 2,
  316. .bInterfaceClass = USB_CLASS_CDC_DATA,
  317. .bInterfaceSubClass = 0,
  318. .bInterfaceProtocol = 0,
  319. .iInterface = GS_DATA_STR_ID,
  320. };
  321. static const struct usb_interface_descriptor gs_control_interface_desc = {
  322. .bLength = USB_DT_INTERFACE_SIZE,
  323. .bDescriptorType = USB_DT_INTERFACE,
  324. .bInterfaceNumber = GS_CONTROL_INTERFACE_ID,
  325. .bNumEndpoints = 1,
  326. .bInterfaceClass = USB_CLASS_COMM,
  327. .bInterfaceSubClass = USB_CDC_SUBCLASS_ACM,
  328. .bInterfaceProtocol = USB_CDC_ACM_PROTO_AT_V25TER,
  329. .iInterface = GS_CONTROL_STR_ID,
  330. };
  331. static const struct usb_interface_descriptor gs_data_interface_desc = {
  332. .bLength = USB_DT_INTERFACE_SIZE,
  333. .bDescriptorType = USB_DT_INTERFACE,
  334. .bInterfaceNumber = GS_DATA_INTERFACE_ID,
  335. .bNumEndpoints = 2,
  336. .bInterfaceClass = USB_CLASS_CDC_DATA,
  337. .bInterfaceSubClass = 0,
  338. .bInterfaceProtocol = 0,
  339. .iInterface = GS_DATA_STR_ID,
  340. };
  341. static const struct usb_cdc_header_desc gs_header_desc = {
  342. .bLength = sizeof(gs_header_desc),
  343. .bDescriptorType = USB_DT_CS_INTERFACE,
  344. .bDescriptorSubType = USB_CDC_HEADER_TYPE,
  345. .bcdCDC = __constant_cpu_to_le16(0x0110),
  346. };
  347. static const struct usb_cdc_call_mgmt_descriptor gs_call_mgmt_descriptor = {
  348. .bLength = sizeof(gs_call_mgmt_descriptor),
  349. .bDescriptorType = USB_DT_CS_INTERFACE,
  350. .bDescriptorSubType = USB_CDC_CALL_MANAGEMENT_TYPE,
  351. .bmCapabilities = 0,
  352. .bDataInterface = 1, /* index of data interface */
  353. };
  354. static struct usb_cdc_acm_descriptor gs_acm_descriptor = {
  355. .bLength = sizeof(gs_acm_descriptor),
  356. .bDescriptorType = USB_DT_CS_INTERFACE,
  357. .bDescriptorSubType = USB_CDC_ACM_TYPE,
  358. .bmCapabilities = 0,
  359. };
  360. static const struct usb_cdc_union_desc gs_union_desc = {
  361. .bLength = sizeof(gs_union_desc),
  362. .bDescriptorType = USB_DT_CS_INTERFACE,
  363. .bDescriptorSubType = USB_CDC_UNION_TYPE,
  364. .bMasterInterface0 = 0, /* index of control interface */
  365. .bSlaveInterface0 = 1, /* index of data interface */
  366. };
  367. static struct usb_endpoint_descriptor gs_fullspeed_notify_desc = {
  368. .bLength = USB_DT_ENDPOINT_SIZE,
  369. .bDescriptorType = USB_DT_ENDPOINT,
  370. .bEndpointAddress = USB_DIR_IN,
  371. .bmAttributes = USB_ENDPOINT_XFER_INT,
  372. .wMaxPacketSize = __constant_cpu_to_le16(GS_NOTIFY_MAXPACKET),
  373. .bInterval = 1 << GS_LOG2_NOTIFY_INTERVAL,
  374. };
  375. static struct usb_endpoint_descriptor gs_fullspeed_in_desc = {
  376. .bLength = USB_DT_ENDPOINT_SIZE,
  377. .bDescriptorType = USB_DT_ENDPOINT,
  378. .bEndpointAddress = USB_DIR_IN,
  379. .bmAttributes = USB_ENDPOINT_XFER_BULK,
  380. };
  381. static struct usb_endpoint_descriptor gs_fullspeed_out_desc = {
  382. .bLength = USB_DT_ENDPOINT_SIZE,
  383. .bDescriptorType = USB_DT_ENDPOINT,
  384. .bEndpointAddress = USB_DIR_OUT,
  385. .bmAttributes = USB_ENDPOINT_XFER_BULK,
  386. };
  387. static const struct usb_descriptor_header *gs_bulk_fullspeed_function[] = {
  388. (struct usb_descriptor_header *) &gs_otg_descriptor,
  389. (struct usb_descriptor_header *) &gs_bulk_interface_desc,
  390. (struct usb_descriptor_header *) &gs_fullspeed_in_desc,
  391. (struct usb_descriptor_header *) &gs_fullspeed_out_desc,
  392. NULL,
  393. };
  394. static const struct usb_descriptor_header *gs_acm_fullspeed_function[] = {
  395. (struct usb_descriptor_header *) &gs_otg_descriptor,
  396. (struct usb_descriptor_header *) &gs_control_interface_desc,
  397. (struct usb_descriptor_header *) &gs_header_desc,
  398. (struct usb_descriptor_header *) &gs_call_mgmt_descriptor,
  399. (struct usb_descriptor_header *) &gs_acm_descriptor,
  400. (struct usb_descriptor_header *) &gs_union_desc,
  401. (struct usb_descriptor_header *) &gs_fullspeed_notify_desc,
  402. (struct usb_descriptor_header *) &gs_data_interface_desc,
  403. (struct usb_descriptor_header *) &gs_fullspeed_in_desc,
  404. (struct usb_descriptor_header *) &gs_fullspeed_out_desc,
  405. NULL,
  406. };
  407. #ifdef CONFIG_USB_GADGET_DUALSPEED
  408. static struct usb_endpoint_descriptor gs_highspeed_notify_desc = {
  409. .bLength = USB_DT_ENDPOINT_SIZE,
  410. .bDescriptorType = USB_DT_ENDPOINT,
  411. .bEndpointAddress = USB_DIR_IN,
  412. .bmAttributes = USB_ENDPOINT_XFER_INT,
  413. .wMaxPacketSize = __constant_cpu_to_le16(GS_NOTIFY_MAXPACKET),
  414. .bInterval = GS_LOG2_NOTIFY_INTERVAL+4,
  415. };
  416. static struct usb_endpoint_descriptor gs_highspeed_in_desc = {
  417. .bLength = USB_DT_ENDPOINT_SIZE,
  418. .bDescriptorType = USB_DT_ENDPOINT,
  419. .bmAttributes = USB_ENDPOINT_XFER_BULK,
  420. .wMaxPacketSize = __constant_cpu_to_le16(512),
  421. };
  422. static struct usb_endpoint_descriptor gs_highspeed_out_desc = {
  423. .bLength = USB_DT_ENDPOINT_SIZE,
  424. .bDescriptorType = USB_DT_ENDPOINT,
  425. .bmAttributes = USB_ENDPOINT_XFER_BULK,
  426. .wMaxPacketSize = __constant_cpu_to_le16(512),
  427. };
  428. static struct usb_qualifier_descriptor gs_qualifier_desc = {
  429. .bLength = sizeof(struct usb_qualifier_descriptor),
  430. .bDescriptorType = USB_DT_DEVICE_QUALIFIER,
  431. .bcdUSB = __constant_cpu_to_le16 (0x0200),
  432. /* assumes ep0 uses the same value for both speeds ... */
  433. .bNumConfigurations = GS_NUM_CONFIGS,
  434. };
  435. static const struct usb_descriptor_header *gs_bulk_highspeed_function[] = {
  436. (struct usb_descriptor_header *) &gs_otg_descriptor,
  437. (struct usb_descriptor_header *) &gs_bulk_interface_desc,
  438. (struct usb_descriptor_header *) &gs_highspeed_in_desc,
  439. (struct usb_descriptor_header *) &gs_highspeed_out_desc,
  440. NULL,
  441. };
  442. static const struct usb_descriptor_header *gs_acm_highspeed_function[] = {
  443. (struct usb_descriptor_header *) &gs_otg_descriptor,
  444. (struct usb_descriptor_header *) &gs_control_interface_desc,
  445. (struct usb_descriptor_header *) &gs_header_desc,
  446. (struct usb_descriptor_header *) &gs_call_mgmt_descriptor,
  447. (struct usb_descriptor_header *) &gs_acm_descriptor,
  448. (struct usb_descriptor_header *) &gs_union_desc,
  449. (struct usb_descriptor_header *) &gs_highspeed_notify_desc,
  450. (struct usb_descriptor_header *) &gs_data_interface_desc,
  451. (struct usb_descriptor_header *) &gs_highspeed_in_desc,
  452. (struct usb_descriptor_header *) &gs_highspeed_out_desc,
  453. NULL,
  454. };
  455. #endif /* CONFIG_USB_GADGET_DUALSPEED */
  456. /* Module */
  457. MODULE_DESCRIPTION(GS_LONG_NAME);
  458. MODULE_AUTHOR("Al Borchers");
  459. MODULE_LICENSE("GPL");
  460. #ifdef GS_DEBUG
  461. module_param(debug, int, S_IRUGO|S_IWUSR);
  462. MODULE_PARM_DESC(debug, "Enable debugging, 0=off, 1=on");
  463. #endif
  464. module_param(read_q_size, uint, S_IRUGO);
  465. MODULE_PARM_DESC(read_q_size, "Read request queue size, default=32");
  466. module_param(write_q_size, uint, S_IRUGO);
  467. MODULE_PARM_DESC(write_q_size, "Write request queue size, default=32");
  468. module_param(write_buf_size, uint, S_IRUGO);
  469. MODULE_PARM_DESC(write_buf_size, "Write buffer size, default=8192");
  470. module_param(use_acm, uint, S_IRUGO);
  471. MODULE_PARM_DESC(use_acm, "Use CDC ACM, 0=no, 1=yes, default=no");
  472. module_init(gs_module_init);
  473. module_exit(gs_module_exit);
  474. /*
  475. * gs_module_init
  476. *
  477. * Register as a USB gadget driver and a tty driver.
  478. */
  479. static int __init gs_module_init(void)
  480. {
  481. int i;
  482. int retval;
  483. retval = usb_gadget_register_driver(&gs_gadget_driver);
  484. if (retval) {
  485. printk(KERN_ERR "gs_module_init: cannot register gadget driver, ret=%d\n", retval);
  486. return retval;
  487. }
  488. gs_tty_driver = alloc_tty_driver(GS_NUM_PORTS);
  489. if (!gs_tty_driver)
  490. return -ENOMEM;
  491. gs_tty_driver->owner = THIS_MODULE;
  492. gs_tty_driver->driver_name = GS_SHORT_NAME;
  493. gs_tty_driver->name = "ttygs";
  494. gs_tty_driver->major = GS_MAJOR;
  495. gs_tty_driver->minor_start = GS_MINOR_START;
  496. gs_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
  497. gs_tty_driver->subtype = SERIAL_TYPE_NORMAL;
  498. gs_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
  499. gs_tty_driver->init_termios = tty_std_termios;
  500. gs_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
  501. tty_set_operations(gs_tty_driver, &gs_tty_ops);
  502. for (i=0; i < GS_NUM_PORTS; i++)
  503. sema_init(&gs_open_close_sem[i], 1);
  504. retval = tty_register_driver(gs_tty_driver);
  505. if (retval) {
  506. usb_gadget_unregister_driver(&gs_gadget_driver);
  507. put_tty_driver(gs_tty_driver);
  508. printk(KERN_ERR "gs_module_init: cannot register tty driver, ret=%d\n", retval);
  509. return retval;
  510. }
  511. printk(KERN_INFO "gs_module_init: %s %s loaded\n", GS_LONG_NAME, GS_VERSION_STR);
  512. return 0;
  513. }
  514. /*
  515. * gs_module_exit
  516. *
  517. * Unregister as a tty driver and a USB gadget driver.
  518. */
  519. static void __exit gs_module_exit(void)
  520. {
  521. tty_unregister_driver(gs_tty_driver);
  522. put_tty_driver(gs_tty_driver);
  523. usb_gadget_unregister_driver(&gs_gadget_driver);
  524. printk(KERN_INFO "gs_module_exit: %s %s unloaded\n", GS_LONG_NAME, GS_VERSION_STR);
  525. }
  526. /* TTY Driver */
  527. /*
  528. * gs_open
  529. */
  530. static int gs_open(struct tty_struct *tty, struct file *file)
  531. {
  532. int port_num;
  533. unsigned long flags;
  534. struct gs_port *port;
  535. struct gs_dev *dev;
  536. struct gs_buf *buf;
  537. struct semaphore *sem;
  538. int ret;
  539. port_num = tty->index;
  540. gs_debug("gs_open: (%d,%p,%p)\n", port_num, tty, file);
  541. if (port_num < 0 || port_num >= GS_NUM_PORTS) {
  542. printk(KERN_ERR "gs_open: (%d,%p,%p) invalid port number\n",
  543. port_num, tty, file);
  544. return -ENODEV;
  545. }
  546. dev = gs_device;
  547. if (dev == NULL) {
  548. printk(KERN_ERR "gs_open: (%d,%p,%p) NULL device pointer\n",
  549. port_num, tty, file);
  550. return -ENODEV;
  551. }
  552. sem = &gs_open_close_sem[port_num];
  553. if (down_interruptible(sem)) {
  554. printk(KERN_ERR
  555. "gs_open: (%d,%p,%p) interrupted waiting for semaphore\n",
  556. port_num, tty, file);
  557. return -ERESTARTSYS;
  558. }
  559. spin_lock_irqsave(&dev->dev_lock, flags);
  560. if (dev->dev_config == GS_NO_CONFIG_ID) {
  561. printk(KERN_ERR
  562. "gs_open: (%d,%p,%p) device is not connected\n",
  563. port_num, tty, file);
  564. ret = -ENODEV;
  565. goto exit_unlock_dev;
  566. }
  567. port = dev->dev_port[port_num];
  568. if (port == NULL) {
  569. printk(KERN_ERR "gs_open: (%d,%p,%p) NULL port pointer\n",
  570. port_num, tty, file);
  571. ret = -ENODEV;
  572. goto exit_unlock_dev;
  573. }
  574. spin_lock(&port->port_lock);
  575. spin_unlock(&dev->dev_lock);
  576. if (port->port_dev == NULL) {
  577. printk(KERN_ERR "gs_open: (%d,%p,%p) port disconnected (1)\n",
  578. port_num, tty, file);
  579. ret = -EIO;
  580. goto exit_unlock_port;
  581. }
  582. if (port->port_open_count > 0) {
  583. ++port->port_open_count;
  584. gs_debug("gs_open: (%d,%p,%p) already open\n",
  585. port_num, tty, file);
  586. ret = 0;
  587. goto exit_unlock_port;
  588. }
  589. tty->driver_data = NULL;
  590. /* mark port as in use, we can drop port lock and sleep if necessary */
  591. port->port_in_use = 1;
  592. /* allocate write buffer on first open */
  593. if (port->port_write_buf == NULL) {
  594. spin_unlock_irqrestore(&port->port_lock, flags);
  595. buf = gs_buf_alloc(write_buf_size, GFP_KERNEL);
  596. spin_lock_irqsave(&port->port_lock, flags);
  597. /* might have been disconnected while asleep, check */
  598. if (port->port_dev == NULL) {
  599. printk(KERN_ERR
  600. "gs_open: (%d,%p,%p) port disconnected (2)\n",
  601. port_num, tty, file);
  602. port->port_in_use = 0;
  603. ret = -EIO;
  604. goto exit_unlock_port;
  605. }
  606. if ((port->port_write_buf=buf) == NULL) {
  607. printk(KERN_ERR "gs_open: (%d,%p,%p) cannot allocate port write buffer\n",
  608. port_num, tty, file);
  609. port->port_in_use = 0;
  610. ret = -ENOMEM;
  611. goto exit_unlock_port;
  612. }
  613. }
  614. /* wait for carrier detect (not implemented) */
  615. /* might have been disconnected while asleep, check */
  616. if (port->port_dev == NULL) {
  617. printk(KERN_ERR "gs_open: (%d,%p,%p) port disconnected (3)\n",
  618. port_num, tty, file);
  619. port->port_in_use = 0;
  620. ret = -EIO;
  621. goto exit_unlock_port;
  622. }
  623. tty->driver_data = port;
  624. port->port_tty = tty;
  625. port->port_open_count = 1;
  626. port->port_in_use = 0;
  627. gs_debug("gs_open: (%d,%p,%p) completed\n", port_num, tty, file);
  628. ret = 0;
  629. exit_unlock_port:
  630. spin_unlock_irqrestore(&port->port_lock, flags);
  631. up(sem);
  632. return ret;
  633. exit_unlock_dev:
  634. spin_unlock_irqrestore(&dev->dev_lock, flags);
  635. up(sem);
  636. return ret;
  637. }
  638. /*
  639. * gs_close
  640. */
  641. #define GS_WRITE_FINISHED_EVENT_SAFELY(p) \
  642. ({ \
  643. int cond; \
  644. \
  645. spin_lock_irq(&(p)->port_lock); \
  646. cond = !(p)->port_dev || !gs_buf_data_avail((p)->port_write_buf); \
  647. spin_unlock_irq(&(p)->port_lock); \
  648. cond; \
  649. })
  650. static void gs_close(struct tty_struct *tty, struct file *file)
  651. {
  652. struct gs_port *port = tty->driver_data;
  653. struct semaphore *sem;
  654. if (port == NULL) {
  655. printk(KERN_ERR "gs_close: NULL port pointer\n");
  656. return;
  657. }
  658. gs_debug("gs_close: (%d,%p,%p)\n", port->port_num, tty, file);
  659. sem = &gs_open_close_sem[port->port_num];
  660. down(sem);
  661. spin_lock_irq(&port->port_lock);
  662. if (port->port_open_count == 0) {
  663. printk(KERN_ERR
  664. "gs_close: (%d,%p,%p) port is already closed\n",
  665. port->port_num, tty, file);
  666. goto exit;
  667. }
  668. if (port->port_open_count > 1) {
  669. --port->port_open_count;
  670. goto exit;
  671. }
  672. /* free disconnected port on final close */
  673. if (port->port_dev == NULL) {
  674. kfree(port);
  675. goto exit;
  676. }
  677. /* mark port as closed but in use, we can drop port lock */
  678. /* and sleep if necessary */
  679. port->port_in_use = 1;
  680. port->port_open_count = 0;
  681. /* wait for write buffer to drain, or */
  682. /* at most GS_CLOSE_TIMEOUT seconds */
  683. if (gs_buf_data_avail(port->port_write_buf) > 0) {
  684. spin_unlock_irq(&port->port_lock);
  685. wait_event_interruptible_timeout(port->port_write_wait,
  686. GS_WRITE_FINISHED_EVENT_SAFELY(port),
  687. GS_CLOSE_TIMEOUT * HZ);
  688. spin_lock_irq(&port->port_lock);
  689. }
  690. /* free disconnected port on final close */
  691. /* (might have happened during the above sleep) */
  692. if (port->port_dev == NULL) {
  693. kfree(port);
  694. goto exit;
  695. }
  696. gs_buf_clear(port->port_write_buf);
  697. tty->driver_data = NULL;
  698. port->port_tty = NULL;
  699. port->port_in_use = 0;
  700. gs_debug("gs_close: (%d,%p,%p) completed\n",
  701. port->port_num, tty, file);
  702. exit:
  703. spin_unlock_irq(&port->port_lock);
  704. up(sem);
  705. }
  706. /*
  707. * gs_write
  708. */
  709. static int gs_write(struct tty_struct *tty, const unsigned char *buf, int count)
  710. {
  711. unsigned long flags;
  712. struct gs_port *port = tty->driver_data;
  713. int ret;
  714. if (port == NULL) {
  715. printk(KERN_ERR "gs_write: NULL port pointer\n");
  716. return -EIO;
  717. }
  718. gs_debug("gs_write: (%d,%p) writing %d bytes\n", port->port_num, tty,
  719. count);
  720. if (count == 0)
  721. return 0;
  722. spin_lock_irqsave(&port->port_lock, flags);
  723. if (port->port_dev == NULL) {
  724. printk(KERN_ERR "gs_write: (%d,%p) port is not connected\n",
  725. port->port_num, tty);
  726. ret = -EIO;
  727. goto exit;
  728. }
  729. if (port->port_open_count == 0) {
  730. printk(KERN_ERR "gs_write: (%d,%p) port is closed\n",
  731. port->port_num, tty);
  732. ret = -EBADF;
  733. goto exit;
  734. }
  735. count = gs_buf_put(port->port_write_buf, buf, count);
  736. spin_unlock_irqrestore(&port->port_lock, flags);
  737. gs_send(gs_device);
  738. gs_debug("gs_write: (%d,%p) wrote %d bytes\n", port->port_num, tty,
  739. count);
  740. return count;
  741. exit:
  742. spin_unlock_irqrestore(&port->port_lock, flags);
  743. return ret;
  744. }
  745. /*
  746. * gs_put_char
  747. */
  748. static void gs_put_char(struct tty_struct *tty, unsigned char ch)
  749. {
  750. unsigned long flags;
  751. struct gs_port *port = tty->driver_data;
  752. if (port == NULL) {
  753. printk(KERN_ERR "gs_put_char: NULL port pointer\n");
  754. return;
  755. }
  756. gs_debug("gs_put_char: (%d,%p) char=0x%x, called from %p, %p, %p\n", port->port_num, tty, ch, __builtin_return_address(0), __builtin_return_address(1), __builtin_return_address(2));
  757. spin_lock_irqsave(&port->port_lock, flags);
  758. if (port->port_dev == NULL) {
  759. printk(KERN_ERR "gs_put_char: (%d,%p) port is not connected\n",
  760. port->port_num, tty);
  761. goto exit;
  762. }
  763. if (port->port_open_count == 0) {
  764. printk(KERN_ERR "gs_put_char: (%d,%p) port is closed\n",
  765. port->port_num, tty);
  766. goto exit;
  767. }
  768. gs_buf_put(port->port_write_buf, &ch, 1);
  769. exit:
  770. spin_unlock_irqrestore(&port->port_lock, flags);
  771. }
  772. /*
  773. * gs_flush_chars
  774. */
  775. static void gs_flush_chars(struct tty_struct *tty)
  776. {
  777. unsigned long flags;
  778. struct gs_port *port = tty->driver_data;
  779. if (port == NULL) {
  780. printk(KERN_ERR "gs_flush_chars: NULL port pointer\n");
  781. return;
  782. }
  783. gs_debug("gs_flush_chars: (%d,%p)\n", port->port_num, tty);
  784. spin_lock_irqsave(&port->port_lock, flags);
  785. if (port->port_dev == NULL) {
  786. printk(KERN_ERR
  787. "gs_flush_chars: (%d,%p) port is not connected\n",
  788. port->port_num, tty);
  789. goto exit;
  790. }
  791. if (port->port_open_count == 0) {
  792. printk(KERN_ERR "gs_flush_chars: (%d,%p) port is closed\n",
  793. port->port_num, tty);
  794. goto exit;
  795. }
  796. spin_unlock_irqrestore(&port->port_lock, flags);
  797. gs_send(gs_device);
  798. return;
  799. exit:
  800. spin_unlock_irqrestore(&port->port_lock, flags);
  801. }
  802. /*
  803. * gs_write_room
  804. */
  805. static int gs_write_room(struct tty_struct *tty)
  806. {
  807. int room = 0;
  808. unsigned long flags;
  809. struct gs_port *port = tty->driver_data;
  810. if (port == NULL)
  811. return 0;
  812. spin_lock_irqsave(&port->port_lock, flags);
  813. if (port->port_dev != NULL && port->port_open_count > 0
  814. && port->port_write_buf != NULL)
  815. room = gs_buf_space_avail(port->port_write_buf);
  816. spin_unlock_irqrestore(&port->port_lock, flags);
  817. gs_debug("gs_write_room: (%d,%p) room=%d\n",
  818. port->port_num, tty, room);
  819. return room;
  820. }
  821. /*
  822. * gs_chars_in_buffer
  823. */
  824. static int gs_chars_in_buffer(struct tty_struct *tty)
  825. {
  826. int chars = 0;
  827. unsigned long flags;
  828. struct gs_port *port = tty->driver_data;
  829. if (port == NULL)
  830. return 0;
  831. spin_lock_irqsave(&port->port_lock, flags);
  832. if (port->port_dev != NULL && port->port_open_count > 0
  833. && port->port_write_buf != NULL)
  834. chars = gs_buf_data_avail(port->port_write_buf);
  835. spin_unlock_irqrestore(&port->port_lock, flags);
  836. gs_debug("gs_chars_in_buffer: (%d,%p) chars=%d\n",
  837. port->port_num, tty, chars);
  838. return chars;
  839. }
  840. /*
  841. * gs_throttle
  842. */
  843. static void gs_throttle(struct tty_struct *tty)
  844. {
  845. }
  846. /*
  847. * gs_unthrottle
  848. */
  849. static void gs_unthrottle(struct tty_struct *tty)
  850. {
  851. }
  852. /*
  853. * gs_break
  854. */
  855. static void gs_break(struct tty_struct *tty, int break_state)
  856. {
  857. }
  858. /*
  859. * gs_ioctl
  860. */
  861. static int gs_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg)
  862. {
  863. struct gs_port *port = tty->driver_data;
  864. if (port == NULL) {
  865. printk(KERN_ERR "gs_ioctl: NULL port pointer\n");
  866. return -EIO;
  867. }
  868. gs_debug("gs_ioctl: (%d,%p,%p) cmd=0x%4.4x, arg=%lu\n",
  869. port->port_num, tty, file, cmd, arg);
  870. /* handle ioctls */
  871. /* could not handle ioctl */
  872. return -ENOIOCTLCMD;
  873. }
  874. /*
  875. * gs_set_termios
  876. */
  877. static void gs_set_termios(struct tty_struct *tty, struct ktermios *old)
  878. {
  879. }
  880. /*
  881. * gs_send
  882. *
  883. * This function finds available write requests, calls
  884. * gs_send_packet to fill these packets with data, and
  885. * continues until either there are no more write requests
  886. * available or no more data to send. This function is
  887. * run whenever data arrives or write requests are available.
  888. */
  889. static int gs_send(struct gs_dev *dev)
  890. {
  891. int ret,len;
  892. unsigned long flags;
  893. struct usb_ep *ep;
  894. struct usb_request *req;
  895. struct gs_req_entry *req_entry;
  896. if (dev == NULL) {
  897. printk(KERN_ERR "gs_send: NULL device pointer\n");
  898. return -ENODEV;
  899. }
  900. spin_lock_irqsave(&dev->dev_lock, flags);
  901. ep = dev->dev_in_ep;
  902. while(!list_empty(&dev->dev_req_list)) {
  903. req_entry = list_entry(dev->dev_req_list.next,
  904. struct gs_req_entry, re_entry);
  905. req = req_entry->re_req;
  906. len = gs_send_packet(dev, req->buf, ep->maxpacket);
  907. if (len > 0) {
  908. gs_debug_level(3, "gs_send: len=%d, 0x%2.2x 0x%2.2x 0x%2.2x ...\n", len, *((unsigned char *)req->buf), *((unsigned char *)req->buf+1), *((unsigned char *)req->buf+2));
  909. list_del(&req_entry->re_entry);
  910. req->length = len;
  911. spin_unlock_irqrestore(&dev->dev_lock, flags);
  912. if ((ret=usb_ep_queue(ep, req, GFP_ATOMIC))) {
  913. printk(KERN_ERR
  914. "gs_send: cannot queue read request, ret=%d\n",
  915. ret);
  916. spin_lock_irqsave(&dev->dev_lock, flags);
  917. break;
  918. }
  919. spin_lock_irqsave(&dev->dev_lock, flags);
  920. } else {
  921. break;
  922. }
  923. }
  924. spin_unlock_irqrestore(&dev->dev_lock, flags);
  925. return 0;
  926. }
  927. /*
  928. * gs_send_packet
  929. *
  930. * If there is data to send, a packet is built in the given
  931. * buffer and the size is returned. If there is no data to
  932. * send, 0 is returned. If there is any error a negative
  933. * error number is returned.
  934. *
  935. * Called during USB completion routine, on interrupt time.
  936. *
  937. * We assume that disconnect will not happen until all completion
  938. * routines have completed, so we can assume that the dev_port
  939. * array does not change during the lifetime of this function.
  940. */
  941. static int gs_send_packet(struct gs_dev *dev, char *packet, unsigned int size)
  942. {
  943. unsigned int len;
  944. struct gs_port *port;
  945. /* TEMPORARY -- only port 0 is supported right now */
  946. port = dev->dev_port[0];
  947. if (port == NULL) {
  948. printk(KERN_ERR
  949. "gs_send_packet: port=%d, NULL port pointer\n",
  950. 0);
  951. return -EIO;
  952. }
  953. spin_lock(&port->port_lock);
  954. len = gs_buf_data_avail(port->port_write_buf);
  955. if (len < size)
  956. size = len;
  957. if (size == 0)
  958. goto exit;
  959. size = gs_buf_get(port->port_write_buf, packet, size);
  960. if (port->port_tty)
  961. wake_up_interruptible(&port->port_tty->write_wait);
  962. exit:
  963. spin_unlock(&port->port_lock);
  964. return size;
  965. }
  966. /*
  967. * gs_recv_packet
  968. *
  969. * Called for each USB packet received. Reads the packet
  970. * header and stuffs the data in the appropriate tty buffer.
  971. * Returns 0 if successful, or a negative error number.
  972. *
  973. * Called during USB completion routine, on interrupt time.
  974. *
  975. * We assume that disconnect will not happen until all completion
  976. * routines have completed, so we can assume that the dev_port
  977. * array does not change during the lifetime of this function.
  978. */
  979. static int gs_recv_packet(struct gs_dev *dev, char *packet, unsigned int size)
  980. {
  981. unsigned int len;
  982. struct gs_port *port;
  983. int ret;
  984. struct tty_struct *tty;
  985. /* TEMPORARY -- only port 0 is supported right now */
  986. port = dev->dev_port[0];
  987. if (port == NULL) {
  988. printk(KERN_ERR "gs_recv_packet: port=%d, NULL port pointer\n",
  989. port->port_num);
  990. return -EIO;
  991. }
  992. spin_lock(&port->port_lock);
  993. if (port->port_open_count == 0) {
  994. printk(KERN_ERR "gs_recv_packet: port=%d, port is closed\n",
  995. port->port_num);
  996. ret = -EIO;
  997. goto exit;
  998. }
  999. tty = port->port_tty;
  1000. if (tty == NULL) {
  1001. printk(KERN_ERR "gs_recv_packet: port=%d, NULL tty pointer\n",
  1002. port->port_num);
  1003. ret = -EIO;
  1004. goto exit;
  1005. }
  1006. if (port->port_tty->magic != TTY_MAGIC) {
  1007. printk(KERN_ERR "gs_recv_packet: port=%d, bad tty magic\n",
  1008. port->port_num);
  1009. ret = -EIO;
  1010. goto exit;
  1011. }
  1012. len = tty_buffer_request_room(tty, size);
  1013. if (len > 0) {
  1014. tty_insert_flip_string(tty, packet, len);
  1015. tty_flip_buffer_push(port->port_tty);
  1016. wake_up_interruptible(&port->port_tty->read_wait);
  1017. }
  1018. ret = 0;
  1019. exit:
  1020. spin_unlock(&port->port_lock);
  1021. return ret;
  1022. }
  1023. /*
  1024. * gs_read_complete
  1025. */
  1026. static void gs_read_complete(struct usb_ep *ep, struct usb_request *req)
  1027. {
  1028. int ret;
  1029. struct gs_dev *dev = ep->driver_data;
  1030. if (dev == NULL) {
  1031. printk(KERN_ERR "gs_read_complete: NULL device pointer\n");
  1032. return;
  1033. }
  1034. switch(req->status) {
  1035. case 0:
  1036. /* normal completion */
  1037. gs_recv_packet(dev, req->buf, req->actual);
  1038. requeue:
  1039. req->length = ep->maxpacket;
  1040. if ((ret=usb_ep_queue(ep, req, GFP_ATOMIC))) {
  1041. printk(KERN_ERR
  1042. "gs_read_complete: cannot queue read request, ret=%d\n",
  1043. ret);
  1044. }
  1045. break;
  1046. case -ESHUTDOWN:
  1047. /* disconnect */
  1048. gs_debug("gs_read_complete: shutdown\n");
  1049. gs_free_req(ep, req);
  1050. break;
  1051. default:
  1052. /* unexpected */
  1053. printk(KERN_ERR
  1054. "gs_read_complete: unexpected status error, status=%d\n",
  1055. req->status);
  1056. goto requeue;
  1057. break;
  1058. }
  1059. }
  1060. /*
  1061. * gs_write_complete
  1062. */
  1063. static void gs_write_complete(struct usb_ep *ep, struct usb_request *req)
  1064. {
  1065. struct gs_dev *dev = ep->driver_data;
  1066. struct gs_req_entry *gs_req = req->context;
  1067. if (dev == NULL) {
  1068. printk(KERN_ERR "gs_write_complete: NULL device pointer\n");
  1069. return;
  1070. }
  1071. switch(req->status) {
  1072. case 0:
  1073. /* normal completion */
  1074. requeue:
  1075. if (gs_req == NULL) {
  1076. printk(KERN_ERR
  1077. "gs_write_complete: NULL request pointer\n");
  1078. return;
  1079. }
  1080. spin_lock(&dev->dev_lock);
  1081. list_add(&gs_req->re_entry, &dev->dev_req_list);
  1082. spin_unlock(&dev->dev_lock);
  1083. gs_send(dev);
  1084. break;
  1085. case -ESHUTDOWN:
  1086. /* disconnect */
  1087. gs_debug("gs_write_complete: shutdown\n");
  1088. gs_free_req(ep, req);
  1089. break;
  1090. default:
  1091. printk(KERN_ERR
  1092. "gs_write_complete: unexpected status error, status=%d\n",
  1093. req->status);
  1094. goto requeue;
  1095. break;
  1096. }
  1097. }
  1098. /* Gadget Driver */
  1099. /*
  1100. * gs_bind
  1101. *
  1102. * Called on module load. Allocates and initializes the device
  1103. * structure and a control request.
  1104. */
  1105. static int __init gs_bind(struct usb_gadget *gadget)
  1106. {
  1107. int ret;
  1108. struct usb_ep *ep;
  1109. struct gs_dev *dev;
  1110. int gcnum;
  1111. /* Some controllers can't support CDC ACM:
  1112. * - sh doesn't support multiple interfaces or configs;
  1113. * - sa1100 doesn't have a third interrupt endpoint
  1114. */
  1115. if (gadget_is_sh(gadget) || gadget_is_sa1100(gadget))
  1116. use_acm = 0;
  1117. gcnum = usb_gadget_controller_number(gadget);
  1118. if (gcnum >= 0)
  1119. gs_device_desc.bcdDevice =
  1120. cpu_to_le16(GS_VERSION_NUM | gcnum);
  1121. else {
  1122. printk(KERN_WARNING "gs_bind: controller '%s' not recognized\n",
  1123. gadget->name);
  1124. /* unrecognized, but safe unless bulk is REALLY quirky */
  1125. gs_device_desc.bcdDevice =
  1126. __constant_cpu_to_le16(GS_VERSION_NUM|0x0099);
  1127. }
  1128. usb_ep_autoconfig_reset(gadget);
  1129. ep = usb_ep_autoconfig(gadget, &gs_fullspeed_in_desc);
  1130. if (!ep)
  1131. goto autoconf_fail;
  1132. EP_IN_NAME = ep->name;
  1133. ep->driver_data = ep; /* claim the endpoint */
  1134. ep = usb_ep_autoconfig(gadget, &gs_fullspeed_out_desc);
  1135. if (!ep)
  1136. goto autoconf_fail;
  1137. EP_OUT_NAME = ep->name;
  1138. ep->driver_data = ep; /* claim the endpoint */
  1139. if (use_acm) {
  1140. ep = usb_ep_autoconfig(gadget, &gs_fullspeed_notify_desc);
  1141. if (!ep) {
  1142. printk(KERN_ERR "gs_bind: cannot run ACM on %s\n", gadget->name);
  1143. goto autoconf_fail;
  1144. }
  1145. gs_device_desc.idProduct = __constant_cpu_to_le16(
  1146. GS_CDC_PRODUCT_ID),
  1147. EP_NOTIFY_NAME = ep->name;
  1148. ep->driver_data = ep; /* claim the endpoint */
  1149. }
  1150. gs_device_desc.bDeviceClass = use_acm
  1151. ? USB_CLASS_COMM : USB_CLASS_VENDOR_SPEC;
  1152. gs_device_desc.bMaxPacketSize0 = gadget->ep0->maxpacket;
  1153. #ifdef CONFIG_USB_GADGET_DUALSPEED
  1154. gs_qualifier_desc.bDeviceClass = use_acm
  1155. ? USB_CLASS_COMM : USB_CLASS_VENDOR_SPEC;
  1156. /* assume ep0 uses the same packet size for both speeds */
  1157. gs_qualifier_desc.bMaxPacketSize0 = gs_device_desc.bMaxPacketSize0;
  1158. /* assume endpoints are dual-speed */
  1159. gs_highspeed_notify_desc.bEndpointAddress =
  1160. gs_fullspeed_notify_desc.bEndpointAddress;
  1161. gs_highspeed_in_desc.bEndpointAddress =
  1162. gs_fullspeed_in_desc.bEndpointAddress;
  1163. gs_highspeed_out_desc.bEndpointAddress =
  1164. gs_fullspeed_out_desc.bEndpointAddress;
  1165. #endif /* CONFIG_USB_GADGET_DUALSPEED */
  1166. usb_gadget_set_selfpowered(gadget);
  1167. if (gadget->is_otg) {
  1168. gs_otg_descriptor.bmAttributes |= USB_OTG_HNP,
  1169. gs_bulk_config_desc.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
  1170. gs_acm_config_desc.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
  1171. }
  1172. gs_device = dev = kmalloc(sizeof(struct gs_dev), GFP_KERNEL);
  1173. if (dev == NULL)
  1174. return -ENOMEM;
  1175. snprintf(manufacturer, sizeof(manufacturer), "%s %s with %s",
  1176. init_utsname()->sysname, init_utsname()->release,
  1177. gadget->name);
  1178. memset(dev, 0, sizeof(struct gs_dev));
  1179. dev->dev_gadget = gadget;
  1180. spin_lock_init(&dev->dev_lock);
  1181. INIT_LIST_HEAD(&dev->dev_req_list);
  1182. set_gadget_data(gadget, dev);
  1183. if ((ret=gs_alloc_ports(dev, GFP_KERNEL)) != 0) {
  1184. printk(KERN_ERR "gs_bind: cannot allocate ports\n");
  1185. gs_unbind(gadget);
  1186. return ret;
  1187. }
  1188. /* preallocate control response and buffer */
  1189. dev->dev_ctrl_req = gs_alloc_req(gadget->ep0, GS_MAX_DESC_LEN,
  1190. GFP_KERNEL);
  1191. if (dev->dev_ctrl_req == NULL) {
  1192. gs_unbind(gadget);
  1193. return -ENOMEM;
  1194. }
  1195. dev->dev_ctrl_req->complete = gs_setup_complete;
  1196. gadget->ep0->driver_data = dev;
  1197. printk(KERN_INFO "gs_bind: %s %s bound\n",
  1198. GS_LONG_NAME, GS_VERSION_STR);
  1199. return 0;
  1200. autoconf_fail:
  1201. printk(KERN_ERR "gs_bind: cannot autoconfigure on %s\n", gadget->name);
  1202. return -ENODEV;
  1203. }
  1204. /*
  1205. * gs_unbind
  1206. *
  1207. * Called on module unload. Frees the control request and device
  1208. * structure.
  1209. */
  1210. static void /* __init_or_exit */ gs_unbind(struct usb_gadget *gadget)
  1211. {
  1212. struct gs_dev *dev = get_gadget_data(gadget);
  1213. gs_device = NULL;
  1214. /* read/write requests already freed, only control request remains */
  1215. if (dev != NULL) {
  1216. if (dev->dev_ctrl_req != NULL) {
  1217. gs_free_req(gadget->ep0, dev->dev_ctrl_req);
  1218. dev->dev_ctrl_req = NULL;
  1219. }
  1220. gs_free_ports(dev);
  1221. kfree(dev);
  1222. set_gadget_data(gadget, NULL);
  1223. }
  1224. printk(KERN_INFO "gs_unbind: %s %s unbound\n", GS_LONG_NAME,
  1225. GS_VERSION_STR);
  1226. }
  1227. /*
  1228. * gs_setup
  1229. *
  1230. * Implements all the control endpoint functionality that's not
  1231. * handled in hardware or the hardware driver.
  1232. *
  1233. * Returns the size of the data sent to the host, or a negative
  1234. * error number.
  1235. */
  1236. static int gs_setup(struct usb_gadget *gadget,
  1237. const struct usb_ctrlrequest *ctrl)
  1238. {
  1239. int ret = -EOPNOTSUPP;
  1240. struct gs_dev *dev = get_gadget_data(gadget);
  1241. struct usb_request *req = dev->dev_ctrl_req;
  1242. u16 wIndex = le16_to_cpu(ctrl->wIndex);
  1243. u16 wValue = le16_to_cpu(ctrl->wValue);
  1244. u16 wLength = le16_to_cpu(ctrl->wLength);
  1245. switch (ctrl->bRequestType & USB_TYPE_MASK) {
  1246. case USB_TYPE_STANDARD:
  1247. ret = gs_setup_standard(gadget,ctrl);
  1248. break;
  1249. case USB_TYPE_CLASS:
  1250. ret = gs_setup_class(gadget,ctrl);
  1251. break;
  1252. default:
  1253. printk(KERN_ERR "gs_setup: unknown request, type=%02x, request=%02x, value=%04x, index=%04x, length=%d\n",
  1254. ctrl->bRequestType, ctrl->bRequest,
  1255. wValue, wIndex, wLength);
  1256. break;
  1257. }
  1258. /* respond with data transfer before status phase? */
  1259. if (ret >= 0) {
  1260. req->length = ret;
  1261. req->zero = ret < wLength
  1262. && (ret % gadget->ep0->maxpacket) == 0;
  1263. ret = usb_ep_queue(gadget->ep0, req, GFP_ATOMIC);
  1264. if (ret < 0) {
  1265. printk(KERN_ERR "gs_setup: cannot queue response, ret=%d\n",
  1266. ret);
  1267. req->status = 0;
  1268. gs_setup_complete(gadget->ep0, req);
  1269. }
  1270. }
  1271. /* device either stalls (ret < 0) or reports success */
  1272. return ret;
  1273. }
  1274. static int gs_setup_standard(struct usb_gadget *gadget,
  1275. const struct usb_ctrlrequest *ctrl)
  1276. {
  1277. int ret = -EOPNOTSUPP;
  1278. struct gs_dev *dev = get_gadget_data(gadget);
  1279. struct usb_request *req = dev->dev_ctrl_req;
  1280. u16 wIndex = le16_to_cpu(ctrl->wIndex);
  1281. u16 wValue = le16_to_cpu(ctrl->wValue);
  1282. u16 wLength = le16_to_cpu(ctrl->wLength);
  1283. switch (ctrl->bRequest) {
  1284. case USB_REQ_GET_DESCRIPTOR:
  1285. if (ctrl->bRequestType != USB_DIR_IN)
  1286. break;
  1287. switch (wValue >> 8) {
  1288. case USB_DT_DEVICE:
  1289. ret = min(wLength,
  1290. (u16)sizeof(struct usb_device_descriptor));
  1291. memcpy(req->buf, &gs_device_desc, ret);
  1292. break;
  1293. #ifdef CONFIG_USB_GADGET_DUALSPEED
  1294. case USB_DT_DEVICE_QUALIFIER:
  1295. if (!gadget->is_dualspeed)
  1296. break;
  1297. ret = min(wLength,
  1298. (u16)sizeof(struct usb_qualifier_descriptor));
  1299. memcpy(req->buf, &gs_qualifier_desc, ret);
  1300. break;
  1301. case USB_DT_OTHER_SPEED_CONFIG:
  1302. if (!gadget->is_dualspeed)
  1303. break;
  1304. /* fall through */
  1305. #endif /* CONFIG_USB_GADGET_DUALSPEED */
  1306. case USB_DT_CONFIG:
  1307. ret = gs_build_config_buf(req->buf, gadget->speed,
  1308. wValue >> 8, wValue & 0xff,
  1309. gadget->is_otg);
  1310. if (ret >= 0)
  1311. ret = min(wLength, (u16)ret);
  1312. break;
  1313. case USB_DT_STRING:
  1314. /* wIndex == language code. */
  1315. ret = usb_gadget_get_string(&gs_string_table,
  1316. wValue & 0xff, req->buf);
  1317. if (ret >= 0)
  1318. ret = min(wLength, (u16)ret);
  1319. break;
  1320. }
  1321. break;
  1322. case USB_REQ_SET_CONFIGURATION:
  1323. if (ctrl->bRequestType != 0)
  1324. break;
  1325. spin_lock(&dev->dev_lock);
  1326. ret = gs_set_config(dev, wValue);
  1327. spin_unlock(&dev->dev_lock);
  1328. break;
  1329. case USB_REQ_GET_CONFIGURATION:
  1330. if (ctrl->bRequestType != USB_DIR_IN)
  1331. break;
  1332. *(u8 *)req->buf = dev->dev_config;
  1333. ret = min(wLength, (u16)1);
  1334. break;
  1335. case USB_REQ_SET_INTERFACE:
  1336. if (ctrl->bRequestType != USB_RECIP_INTERFACE
  1337. || !dev->dev_config
  1338. || wIndex >= GS_MAX_NUM_INTERFACES)
  1339. break;
  1340. if (dev->dev_config == GS_BULK_CONFIG_ID
  1341. && wIndex != GS_BULK_INTERFACE_ID)
  1342. break;
  1343. /* no alternate interface settings */
  1344. if (wValue != 0)
  1345. break;
  1346. spin_lock(&dev->dev_lock);
  1347. /* PXA hardware partially handles SET_INTERFACE;
  1348. * we need to kluge around that interference. */
  1349. if (gadget_is_pxa(gadget)) {
  1350. ret = gs_set_config(dev, use_acm ?
  1351. GS_ACM_CONFIG_ID : GS_BULK_CONFIG_ID);
  1352. goto set_interface_done;
  1353. }
  1354. if (dev->dev_config != GS_BULK_CONFIG_ID
  1355. && wIndex == GS_CONTROL_INTERFACE_ID) {
  1356. if (dev->dev_notify_ep) {
  1357. usb_ep_disable(dev->dev_notify_ep);
  1358. usb_ep_enable(dev->dev_notify_ep, dev->dev_notify_ep_desc);
  1359. }
  1360. } else {
  1361. usb_ep_disable(dev->dev_in_ep);
  1362. usb_ep_disable(dev->dev_out_ep);
  1363. usb_ep_enable(dev->dev_in_ep, dev->dev_in_ep_desc);
  1364. usb_ep_enable(dev->dev_out_ep, dev->dev_out_ep_desc);
  1365. }
  1366. ret = 0;
  1367. set_interface_done:
  1368. spin_unlock(&dev->dev_lock);
  1369. break;
  1370. case USB_REQ_GET_INTERFACE:
  1371. if (ctrl->bRequestType != (USB_DIR_IN|USB_RECIP_INTERFACE)
  1372. || dev->dev_config == GS_NO_CONFIG_ID)
  1373. break;
  1374. if (wIndex >= GS_MAX_NUM_INTERFACES
  1375. || (dev->dev_config == GS_BULK_CONFIG_ID
  1376. && wIndex != GS_BULK_INTERFACE_ID)) {
  1377. ret = -EDOM;
  1378. break;
  1379. }
  1380. /* no alternate interface settings */
  1381. *(u8 *)req->buf = 0;
  1382. ret = min(wLength, (u16)1);
  1383. break;
  1384. default:
  1385. printk(KERN_ERR "gs_setup: unknown standard request, type=%02x, request=%02x, value=%04x, index=%04x, length=%d\n",
  1386. ctrl->bRequestType, ctrl->bRequest,
  1387. wValue, wIndex, wLength);
  1388. break;
  1389. }
  1390. return ret;
  1391. }
  1392. static int gs_setup_class(struct usb_gadget *gadget,
  1393. const struct usb_ctrlrequest *ctrl)
  1394. {
  1395. int ret = -EOPNOTSUPP;
  1396. struct gs_dev *dev = get_gadget_data(gadget);
  1397. struct gs_port *port = dev->dev_port[0]; /* ACM only has one port */
  1398. struct usb_request *req = dev->dev_ctrl_req;
  1399. u16 wIndex = le16_to_cpu(ctrl->wIndex);
  1400. u16 wValue = le16_to_cpu(ctrl->wValue);
  1401. u16 wLength = le16_to_cpu(ctrl->wLength);
  1402. switch (ctrl->bRequest) {
  1403. case USB_CDC_REQ_SET_LINE_CODING:
  1404. ret = min(wLength,
  1405. (u16)sizeof(struct usb_cdc_line_coding));
  1406. if (port) {
  1407. spin_lock(&port->port_lock);
  1408. memcpy(&port->port_line_coding, req->buf, ret);
  1409. spin_unlock(&port->port_lock);
  1410. }
  1411. ret = 0;
  1412. break;
  1413. case USB_CDC_REQ_GET_LINE_CODING:
  1414. port = dev->dev_port[0]; /* ACM only has one port */
  1415. ret = min(wLength,
  1416. (u16)sizeof(struct usb_cdc_line_coding));
  1417. if (port) {
  1418. spin_lock(&port->port_lock);
  1419. memcpy(req->buf, &port->port_line_coding, ret);
  1420. spin_unlock(&port->port_lock);
  1421. }
  1422. break;
  1423. case USB_CDC_REQ_SET_CONTROL_LINE_STATE:
  1424. ret = 0;
  1425. break;
  1426. default:
  1427. printk(KERN_ERR "gs_setup: unknown class request, type=%02x, request=%02x, value=%04x, index=%04x, length=%d\n",
  1428. ctrl->bRequestType, ctrl->bRequest,
  1429. wValue, wIndex, wLength);
  1430. break;
  1431. }
  1432. return ret;
  1433. }
  1434. /*
  1435. * gs_setup_complete
  1436. */
  1437. static void gs_setup_complete(struct usb_ep *ep, struct usb_request *req)
  1438. {
  1439. if (req->status || req->actual != req->length) {
  1440. printk(KERN_ERR "gs_setup_complete: status error, status=%d, actual=%d, length=%d\n",
  1441. req->status, req->actual, req->length);
  1442. }
  1443. }
  1444. /*
  1445. * gs_disconnect
  1446. *
  1447. * Called when the device is disconnected. Frees the closed
  1448. * ports and disconnects open ports. Open ports will be freed
  1449. * on close. Then reallocates the ports for the next connection.
  1450. */
  1451. static void gs_disconnect(struct usb_gadget *gadget)
  1452. {
  1453. unsigned long flags;
  1454. struct gs_dev *dev = get_gadget_data(gadget);
  1455. spin_lock_irqsave(&dev->dev_lock, flags);
  1456. gs_reset_config(dev);
  1457. /* free closed ports and disconnect open ports */
  1458. /* (open ports will be freed when closed) */
  1459. gs_free_ports(dev);
  1460. /* re-allocate ports for the next connection */
  1461. if (gs_alloc_ports(dev, GFP_ATOMIC) != 0)
  1462. printk(KERN_ERR "gs_disconnect: cannot re-allocate ports\n");
  1463. spin_unlock_irqrestore(&dev->dev_lock, flags);
  1464. printk(KERN_INFO "gs_disconnect: %s disconnected\n", GS_LONG_NAME);
  1465. }
  1466. /*
  1467. * gs_set_config
  1468. *
  1469. * Configures the device by enabling device specific
  1470. * optimizations, setting up the endpoints, allocating
  1471. * read and write requests and queuing read requests.
  1472. *
  1473. * The device lock must be held when calling this function.
  1474. */
  1475. static int gs_set_config(struct gs_dev *dev, unsigned config)
  1476. {
  1477. int i;
  1478. int ret = 0;
  1479. struct usb_gadget *gadget = dev->dev_gadget;
  1480. struct usb_ep *ep;
  1481. struct usb_endpoint_descriptor *ep_desc;
  1482. struct usb_request *req;
  1483. struct gs_req_entry *req_entry;
  1484. if (dev == NULL) {
  1485. printk(KERN_ERR "gs_set_config: NULL device pointer\n");
  1486. return 0;
  1487. }
  1488. if (config == dev->dev_config)
  1489. return 0;
  1490. gs_reset_config(dev);
  1491. switch (config) {
  1492. case GS_NO_CONFIG_ID:
  1493. return 0;
  1494. case GS_BULK_CONFIG_ID:
  1495. if (use_acm)
  1496. return -EINVAL;
  1497. /* device specific optimizations */
  1498. if (gadget_is_net2280(gadget))
  1499. net2280_set_fifo_mode(gadget, 1);
  1500. break;
  1501. case GS_ACM_CONFIG_ID:
  1502. if (!use_acm)
  1503. return -EINVAL;
  1504. /* device specific optimizations */
  1505. if (gadget_is_net2280(gadget))
  1506. net2280_set_fifo_mode(gadget, 1);
  1507. break;
  1508. default:
  1509. return -EINVAL;
  1510. }
  1511. dev->dev_config = config;
  1512. gadget_for_each_ep(ep, gadget) {
  1513. if (EP_NOTIFY_NAME
  1514. && strcmp(ep->name, EP_NOTIFY_NAME) == 0) {
  1515. ep_desc = GS_SPEED_SELECT(
  1516. gadget->speed == USB_SPEED_HIGH,
  1517. &gs_highspeed_notify_desc,
  1518. &gs_fullspeed_notify_desc);
  1519. ret = usb_ep_enable(ep,ep_desc);
  1520. if (ret == 0) {
  1521. ep->driver_data = dev;
  1522. dev->dev_notify_ep = ep;
  1523. dev->dev_notify_ep_desc = ep_desc;
  1524. } else {
  1525. printk(KERN_ERR "gs_set_config: cannot enable notify endpoint %s, ret=%d\n",
  1526. ep->name, ret);
  1527. goto exit_reset_config;
  1528. }
  1529. }
  1530. else if (strcmp(ep->name, EP_IN_NAME) == 0) {
  1531. ep_desc = GS_SPEED_SELECT(
  1532. gadget->speed == USB_SPEED_HIGH,
  1533. &gs_highspeed_in_desc,
  1534. &gs_fullspeed_in_desc);
  1535. ret = usb_ep_enable(ep,ep_desc);
  1536. if (ret == 0) {
  1537. ep->driver_data = dev;
  1538. dev->dev_in_ep = ep;
  1539. dev->dev_in_ep_desc = ep_desc;
  1540. } else {
  1541. printk(KERN_ERR "gs_set_config: cannot enable in endpoint %s, ret=%d\n",
  1542. ep->name, ret);
  1543. goto exit_reset_config;
  1544. }
  1545. }
  1546. else if (strcmp(ep->name, EP_OUT_NAME) == 0) {
  1547. ep_desc = GS_SPEED_SELECT(
  1548. gadget->speed == USB_SPEED_HIGH,
  1549. &gs_highspeed_out_desc,
  1550. &gs_fullspeed_out_desc);
  1551. ret = usb_ep_enable(ep,ep_desc);
  1552. if (ret == 0) {
  1553. ep->driver_data = dev;
  1554. dev->dev_out_ep = ep;
  1555. dev->dev_out_ep_desc = ep_desc;
  1556. } else {
  1557. printk(KERN_ERR "gs_set_config: cannot enable out endpoint %s, ret=%d\n",
  1558. ep->name, ret);
  1559. goto exit_reset_config;
  1560. }
  1561. }
  1562. }
  1563. if (dev->dev_in_ep == NULL || dev->dev_out_ep == NULL
  1564. || (config != GS_BULK_CONFIG_ID && dev->dev_notify_ep == NULL)) {
  1565. printk(KERN_ERR "gs_set_config: cannot find endpoints\n");
  1566. ret = -ENODEV;
  1567. goto exit_reset_config;
  1568. }
  1569. /* allocate and queue read requests */
  1570. ep = dev->dev_out_ep;
  1571. for (i=0; i<read_q_size && ret == 0; i++) {
  1572. if ((req=gs_alloc_req(ep, ep->maxpacket, GFP_ATOMIC))) {
  1573. req->complete = gs_read_complete;
  1574. if ((ret=usb_ep_queue(ep, req, GFP_ATOMIC))) {
  1575. printk(KERN_ERR "gs_set_config: cannot queue read request, ret=%d\n",
  1576. ret);
  1577. }
  1578. } else {
  1579. printk(KERN_ERR "gs_set_config: cannot allocate read requests\n");
  1580. ret = -ENOMEM;
  1581. goto exit_reset_config;
  1582. }
  1583. }
  1584. /* allocate write requests, and put on free list */
  1585. ep = dev->dev_in_ep;
  1586. for (i=0; i<write_q_size; i++) {
  1587. if ((req_entry=gs_alloc_req_entry(ep, ep->maxpacket, GFP_ATOMIC))) {
  1588. req_entry->re_req->complete = gs_write_complete;
  1589. list_add(&req_entry->re_entry, &dev->dev_req_list);
  1590. } else {
  1591. printk(KERN_ERR "gs_set_config: cannot allocate write requests\n");
  1592. ret = -ENOMEM;
  1593. goto exit_reset_config;
  1594. }
  1595. }
  1596. printk(KERN_INFO "gs_set_config: %s configured, %s speed %s config\n",
  1597. GS_LONG_NAME,
  1598. gadget->speed == USB_SPEED_HIGH ? "high" : "full",
  1599. config == GS_BULK_CONFIG_ID ? "BULK" : "CDC-ACM");
  1600. return 0;
  1601. exit_reset_config:
  1602. gs_reset_config(dev);
  1603. return ret;
  1604. }
  1605. /*
  1606. * gs_reset_config
  1607. *
  1608. * Mark the device as not configured, disable all endpoints,
  1609. * which forces completion of pending I/O and frees queued
  1610. * requests, and free the remaining write requests on the
  1611. * free list.
  1612. *
  1613. * The device lock must be held when calling this function.
  1614. */
  1615. static void gs_reset_config(struct gs_dev *dev)
  1616. {
  1617. struct gs_req_entry *req_entry;
  1618. if (dev == NULL) {
  1619. printk(KERN_ERR "gs_reset_config: NULL device pointer\n");
  1620. return;
  1621. }
  1622. if (dev->dev_config == GS_NO_CONFIG_ID)
  1623. return;
  1624. dev->dev_config = GS_NO_CONFIG_ID;
  1625. /* free write requests on the free list */
  1626. while(!list_empty(&dev->dev_req_list)) {
  1627. req_entry = list_entry(dev->dev_req_list.next,
  1628. struct gs_req_entry, re_entry);
  1629. list_del(&req_entry->re_entry);
  1630. gs_free_req_entry(dev->dev_in_ep, req_entry);
  1631. }
  1632. /* disable endpoints, forcing completion of pending i/o; */
  1633. /* completion handlers free their requests in this case */
  1634. if (dev->dev_notify_ep) {
  1635. usb_ep_disable(dev->dev_notify_ep);
  1636. dev->dev_notify_ep = NULL;
  1637. }
  1638. if (dev->dev_in_ep) {
  1639. usb_ep_disable(dev->dev_in_ep);
  1640. dev->dev_in_ep = NULL;
  1641. }
  1642. if (dev->dev_out_ep) {
  1643. usb_ep_disable(dev->dev_out_ep);
  1644. dev->dev_out_ep = NULL;
  1645. }
  1646. }
  1647. /*
  1648. * gs_build_config_buf
  1649. *
  1650. * Builds the config descriptors in the given buffer and returns the
  1651. * length, or a negative error number.
  1652. */
  1653. static int gs_build_config_buf(u8 *buf, enum usb_device_speed speed,
  1654. u8 type, unsigned int index, int is_otg)
  1655. {
  1656. int len;
  1657. int high_speed;
  1658. const struct usb_config_descriptor *config_desc;
  1659. const struct usb_descriptor_header **function;
  1660. if (index >= gs_device_desc.bNumConfigurations)
  1661. return -EINVAL;
  1662. /* other speed switches high and full speed */
  1663. high_speed = (speed == USB_SPEED_HIGH);
  1664. if (type == USB_DT_OTHER_SPEED_CONFIG)
  1665. high_speed = !high_speed;
  1666. if (use_acm) {
  1667. config_desc = &gs_acm_config_desc;
  1668. function = GS_SPEED_SELECT(high_speed,
  1669. gs_acm_highspeed_function,
  1670. gs_acm_fullspeed_function);
  1671. } else {
  1672. config_desc = &gs_bulk_config_desc;
  1673. function = GS_SPEED_SELECT(high_speed,
  1674. gs_bulk_highspeed_function,
  1675. gs_bulk_fullspeed_function);
  1676. }
  1677. /* for now, don't advertise srp-only devices */
  1678. if (!is_otg)
  1679. function++;
  1680. len = usb_gadget_config_buf(config_desc, buf, GS_MAX_DESC_LEN, function);
  1681. if (len < 0)
  1682. return len;
  1683. ((struct usb_config_descriptor *)buf)->bDescriptorType = type;
  1684. return len;
  1685. }
  1686. /*
  1687. * gs_alloc_req
  1688. *
  1689. * Allocate a usb_request and its buffer. Returns a pointer to the
  1690. * usb_request or NULL if there is an error.
  1691. */
  1692. static struct usb_request *
  1693. gs_alloc_req(struct usb_ep *ep, unsigned int len, gfp_t kmalloc_flags)
  1694. {
  1695. struct usb_request *req;
  1696. if (ep == NULL)
  1697. return NULL;
  1698. req = usb_ep_alloc_request(ep, kmalloc_flags);
  1699. if (req != NULL) {
  1700. req->length = len;
  1701. req->buf = kmalloc(len, kmalloc_flags);
  1702. if (req->buf == NULL) {
  1703. usb_ep_free_request(ep, req);
  1704. return NULL;
  1705. }
  1706. }
  1707. return req;
  1708. }
  1709. /*
  1710. * gs_free_req
  1711. *
  1712. * Free a usb_request and its buffer.
  1713. */
  1714. static void gs_free_req(struct usb_ep *ep, struct usb_request *req)
  1715. {
  1716. if (ep != NULL && req != NULL) {
  1717. kfree(req->buf);
  1718. usb_ep_free_request(ep, req);
  1719. }
  1720. }
  1721. /*
  1722. * gs_alloc_req_entry
  1723. *
  1724. * Allocates a request and its buffer, using the given
  1725. * endpoint, buffer len, and kmalloc flags.
  1726. */
  1727. static struct gs_req_entry *
  1728. gs_alloc_req_entry(struct usb_ep *ep, unsigned len, gfp_t kmalloc_flags)
  1729. {
  1730. struct gs_req_entry *req;
  1731. req = kmalloc(sizeof(struct gs_req_entry), kmalloc_flags);
  1732. if (req == NULL)
  1733. return NULL;
  1734. req->re_req = gs_alloc_req(ep, len, kmalloc_flags);
  1735. if (req->re_req == NULL) {
  1736. kfree(req);
  1737. return NULL;
  1738. }
  1739. req->re_req->context = req;
  1740. return req;
  1741. }
  1742. /*
  1743. * gs_free_req_entry
  1744. *
  1745. * Frees a request and its buffer.
  1746. */
  1747. static void gs_free_req_entry(struct usb_ep *ep, struct gs_req_entry *req)
  1748. {
  1749. if (ep != NULL && req != NULL) {
  1750. if (req->re_req != NULL)
  1751. gs_free_req(ep, req->re_req);
  1752. kfree(req);
  1753. }
  1754. }
  1755. /*
  1756. * gs_alloc_ports
  1757. *
  1758. * Allocate all ports and set the gs_dev struct to point to them.
  1759. * Return 0 if successful, or a negative error number.
  1760. *
  1761. * The device lock is normally held when calling this function.
  1762. */
  1763. static int gs_alloc_ports(struct gs_dev *dev, gfp_t kmalloc_flags)
  1764. {
  1765. int i;
  1766. struct gs_port *port;
  1767. if (dev == NULL)
  1768. return -EIO;
  1769. for (i=0; i<GS_NUM_PORTS; i++) {
  1770. if ((port=kzalloc(sizeof(struct gs_port), kmalloc_flags)) == NULL)
  1771. return -ENOMEM;
  1772. port->port_dev = dev;
  1773. port->port_num = i;
  1774. port->port_line_coding.dwDTERate = cpu_to_le32(GS_DEFAULT_DTE_RATE);
  1775. port->port_line_coding.bCharFormat = GS_DEFAULT_CHAR_FORMAT;
  1776. port->port_line_coding.bParityType = GS_DEFAULT_PARITY;
  1777. port->port_line_coding.bDataBits = GS_DEFAULT_DATA_BITS;
  1778. spin_lock_init(&port->port_lock);
  1779. init_waitqueue_head(&port->port_write_wait);
  1780. dev->dev_port[i] = port;
  1781. }
  1782. return 0;
  1783. }
  1784. /*
  1785. * gs_free_ports
  1786. *
  1787. * Free all closed ports. Open ports are disconnected by
  1788. * freeing their write buffers, setting their device pointers
  1789. * and the pointers to them in the device to NULL. These
  1790. * ports will be freed when closed.
  1791. *
  1792. * The device lock is normally held when calling this function.
  1793. */
  1794. static void gs_free_ports(struct gs_dev *dev)
  1795. {
  1796. int i;
  1797. unsigned long flags;
  1798. struct gs_port *port;
  1799. if (dev == NULL)
  1800. return;
  1801. for (i=0; i<GS_NUM_PORTS; i++) {
  1802. if ((port=dev->dev_port[i]) != NULL) {
  1803. dev->dev_port[i] = NULL;
  1804. spin_lock_irqsave(&port->port_lock, flags);
  1805. if (port->port_write_buf != NULL) {
  1806. gs_buf_free(port->port_write_buf);
  1807. port->port_write_buf = NULL;
  1808. }
  1809. if (port->port_open_count > 0 || port->port_in_use) {
  1810. port->port_dev = NULL;
  1811. wake_up_interruptible(&port->port_write_wait);
  1812. if (port->port_tty) {
  1813. wake_up_interruptible(&port->port_tty->read_wait);
  1814. wake_up_interruptible(&port->port_tty->write_wait);
  1815. }
  1816. spin_unlock_irqrestore(&port->port_lock, flags);
  1817. } else {
  1818. spin_unlock_irqrestore(&port->port_lock, flags);
  1819. kfree(port);
  1820. }
  1821. }
  1822. }
  1823. }
  1824. /* Circular Buffer */
  1825. /*
  1826. * gs_buf_alloc
  1827. *
  1828. * Allocate a circular buffer and all associated memory.
  1829. */
  1830. static struct gs_buf *gs_buf_alloc(unsigned int size, gfp_t kmalloc_flags)
  1831. {
  1832. struct gs_buf *gb;
  1833. if (size == 0)
  1834. return NULL;
  1835. gb = kmalloc(sizeof(struct gs_buf), kmalloc_flags);
  1836. if (gb == NULL)
  1837. return NULL;
  1838. gb->buf_buf = kmalloc(size, kmalloc_flags);
  1839. if (gb->buf_buf == NULL) {
  1840. kfree(gb);
  1841. return NULL;
  1842. }
  1843. gb->buf_size = size;
  1844. gb->buf_get = gb->buf_put = gb->buf_buf;
  1845. return gb;
  1846. }
  1847. /*
  1848. * gs_buf_free
  1849. *
  1850. * Free the buffer and all associated memory.
  1851. */
  1852. void gs_buf_free(struct gs_buf *gb)
  1853. {
  1854. if (gb) {
  1855. kfree(gb->buf_buf);
  1856. kfree(gb);
  1857. }
  1858. }
  1859. /*
  1860. * gs_buf_clear
  1861. *
  1862. * Clear out all data in the circular buffer.
  1863. */
  1864. void gs_buf_clear(struct gs_buf *gb)
  1865. {
  1866. if (gb != NULL)
  1867. gb->buf_get = gb->buf_put;
  1868. /* equivalent to a get of all data available */
  1869. }
  1870. /*
  1871. * gs_buf_data_avail
  1872. *
  1873. * Return the number of bytes of data available in the circular
  1874. * buffer.
  1875. */
  1876. unsigned int gs_buf_data_avail(struct gs_buf *gb)
  1877. {
  1878. if (gb != NULL)
  1879. return (gb->buf_size + gb->buf_put - gb->buf_get) % gb->buf_size;
  1880. else
  1881. return 0;
  1882. }
  1883. /*
  1884. * gs_buf_space_avail
  1885. *
  1886. * Return the number of bytes of space available in the circular
  1887. * buffer.
  1888. */
  1889. unsigned int gs_buf_space_avail(struct gs_buf *gb)
  1890. {
  1891. if (gb != NULL)
  1892. return (gb->buf_size + gb->buf_get - gb->buf_put - 1) % gb->buf_size;
  1893. else
  1894. return 0;
  1895. }
  1896. /*
  1897. * gs_buf_put
  1898. *
  1899. * Copy data data from a user buffer and put it into the circular buffer.
  1900. * Restrict to the amount of space available.
  1901. *
  1902. * Return the number of bytes copied.
  1903. */
  1904. unsigned int gs_buf_put(struct gs_buf *gb, const char *buf, unsigned int count)
  1905. {
  1906. unsigned int len;
  1907. if (gb == NULL)
  1908. return 0;
  1909. len = gs_buf_space_avail(gb);
  1910. if (count > len)
  1911. count = len;
  1912. if (count == 0)
  1913. return 0;
  1914. len = gb->buf_buf + gb->buf_size - gb->buf_put;
  1915. if (count > len) {
  1916. memcpy(gb->buf_put, buf, len);
  1917. memcpy(gb->buf_buf, buf+len, count - len);
  1918. gb->buf_put = gb->buf_buf + count - len;
  1919. } else {
  1920. memcpy(gb->buf_put, buf, count);
  1921. if (count < len)
  1922. gb->buf_put += count;
  1923. else /* count == len */
  1924. gb->buf_put = gb->buf_buf;
  1925. }
  1926. return count;
  1927. }
  1928. /*
  1929. * gs_buf_get
  1930. *
  1931. * Get data from the circular buffer and copy to the given buffer.
  1932. * Restrict to the amount of data available.
  1933. *
  1934. * Return the number of bytes copied.
  1935. */
  1936. unsigned int gs_buf_get(struct gs_buf *gb, char *buf, unsigned int count)
  1937. {
  1938. unsigned int len;
  1939. if (gb == NULL)
  1940. return 0;
  1941. len = gs_buf_data_avail(gb);
  1942. if (count > len)
  1943. count = len;
  1944. if (count == 0)
  1945. return 0;
  1946. len = gb->buf_buf + gb->buf_size - gb->buf_get;
  1947. if (count > len) {
  1948. memcpy(buf, gb->buf_get, len);
  1949. memcpy(buf+len, gb->buf_buf, count - len);
  1950. gb->buf_get = gb->buf_buf + count - len;
  1951. } else {
  1952. memcpy(buf, gb->buf_get, count);
  1953. if (count < len)
  1954. gb->buf_get += count;
  1955. else /* count == len */
  1956. gb->buf_get = gb->buf_buf;
  1957. }
  1958. return count;
  1959. }