ti_usb_3410_5052.c 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902
  1. /* vi: ts=8 sw=8
  2. *
  3. * TI 3410/5052 USB Serial Driver
  4. *
  5. * Copyright (C) 2004 Texas Instruments
  6. *
  7. * This driver is based on the Linux io_ti driver, which is
  8. * Copyright (C) 2000-2002 Inside Out Networks
  9. * Copyright (C) 2001-2002 Greg Kroah-Hartman
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * For questions or problems with this driver, contact Texas Instruments
  17. * technical support, or Al Borchers <alborchers@steinerpoint.com>, or
  18. * Peter Berger <pberger@brimson.com>.
  19. */
  20. #include <linux/kernel.h>
  21. #include <linux/errno.h>
  22. #include <linux/firmware.h>
  23. #include <linux/init.h>
  24. #include <linux/slab.h>
  25. #include <linux/tty.h>
  26. #include <linux/tty_driver.h>
  27. #include <linux/tty_flip.h>
  28. #include <linux/module.h>
  29. #include <linux/spinlock.h>
  30. #include <linux/ioctl.h>
  31. #include <linux/serial.h>
  32. #include <linux/circ_buf.h>
  33. #include <linux/mutex.h>
  34. #include <linux/uaccess.h>
  35. #include <linux/usb.h>
  36. #include <linux/usb/serial.h>
  37. #include "ti_usb_3410_5052.h"
  38. /* Defines */
  39. #define TI_DRIVER_VERSION "v0.9"
  40. #define TI_DRIVER_AUTHOR "Al Borchers <alborchers@steinerpoint.com>"
  41. #define TI_DRIVER_DESC "TI USB 3410/5052 Serial Driver"
  42. #define TI_FIRMWARE_BUF_SIZE 16284
  43. #define TI_WRITE_BUF_SIZE 1024
  44. #define TI_TRANSFER_TIMEOUT 2
  45. #define TI_DEFAULT_LOW_LATENCY 0
  46. #define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */
  47. /* supported setserial flags */
  48. #define TI_SET_SERIAL_FLAGS (ASYNC_LOW_LATENCY)
  49. /* read urb states */
  50. #define TI_READ_URB_RUNNING 0
  51. #define TI_READ_URB_STOPPING 1
  52. #define TI_READ_URB_STOPPED 2
  53. #define TI_EXTRA_VID_PID_COUNT 5
  54. /* Structures */
  55. struct ti_port {
  56. int tp_is_open;
  57. __u8 tp_msr;
  58. __u8 tp_lsr;
  59. __u8 tp_shadow_mcr;
  60. __u8 tp_uart_mode; /* 232 or 485 modes */
  61. unsigned int tp_uart_base_addr;
  62. int tp_flags;
  63. int tp_closing_wait;/* in .01 secs */
  64. struct async_icount tp_icount;
  65. wait_queue_head_t tp_msr_wait; /* wait for msr change */
  66. wait_queue_head_t tp_write_wait;
  67. struct ti_device *tp_tdev;
  68. struct usb_serial_port *tp_port;
  69. spinlock_t tp_lock;
  70. int tp_read_urb_state;
  71. int tp_write_urb_in_use;
  72. struct circ_buf *tp_write_buf;
  73. };
  74. struct ti_device {
  75. struct mutex td_open_close_lock;
  76. int td_open_port_count;
  77. struct usb_serial *td_serial;
  78. int td_is_3410;
  79. int td_urb_error;
  80. };
  81. /* Function Declarations */
  82. static int ti_startup(struct usb_serial *serial);
  83. static void ti_shutdown(struct usb_serial *serial);
  84. static int ti_open(struct tty_struct *tty, struct usb_serial_port *port,
  85. struct file *file);
  86. static void ti_close(struct tty_struct *tty, struct usb_serial_port *port,
  87. struct file *file);
  88. static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
  89. const unsigned char *data, int count);
  90. static int ti_write_room(struct tty_struct *tty);
  91. static int ti_chars_in_buffer(struct tty_struct *tty);
  92. static void ti_throttle(struct tty_struct *tty);
  93. static void ti_unthrottle(struct tty_struct *tty);
  94. static int ti_ioctl(struct tty_struct *tty, struct file *file,
  95. unsigned int cmd, unsigned long arg);
  96. static void ti_set_termios(struct tty_struct *tty,
  97. struct usb_serial_port *port, struct ktermios *old_termios);
  98. static int ti_tiocmget(struct tty_struct *tty, struct file *file);
  99. static int ti_tiocmset(struct tty_struct *tty, struct file *file,
  100. unsigned int set, unsigned int clear);
  101. static void ti_break(struct tty_struct *tty, int break_state);
  102. static void ti_interrupt_callback(struct urb *urb);
  103. static void ti_bulk_in_callback(struct urb *urb);
  104. static void ti_bulk_out_callback(struct urb *urb);
  105. static void ti_recv(struct device *dev, struct tty_struct *tty,
  106. unsigned char *data, int length);
  107. static void ti_send(struct ti_port *tport);
  108. static int ti_set_mcr(struct ti_port *tport, unsigned int mcr);
  109. static int ti_get_lsr(struct ti_port *tport);
  110. static int ti_get_serial_info(struct ti_port *tport,
  111. struct serial_struct __user *ret_arg);
  112. static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
  113. struct serial_struct __user *new_arg);
  114. static void ti_handle_new_msr(struct ti_port *tport, __u8 msr);
  115. static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush);
  116. static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty);
  117. static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty);
  118. static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
  119. __u16 moduleid, __u16 value, __u8 *data, int size);
  120. static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
  121. __u16 moduleid, __u16 value, __u8 *data, int size);
  122. static int ti_write_byte(struct ti_device *tdev, unsigned long addr,
  123. __u8 mask, __u8 byte);
  124. static int ti_download_firmware(struct ti_device *tdev);
  125. /* circular buffer */
  126. static struct circ_buf *ti_buf_alloc(void);
  127. static void ti_buf_free(struct circ_buf *cb);
  128. static void ti_buf_clear(struct circ_buf *cb);
  129. static int ti_buf_data_avail(struct circ_buf *cb);
  130. static int ti_buf_space_avail(struct circ_buf *cb);
  131. static int ti_buf_put(struct circ_buf *cb, const char *buf, int count);
  132. static int ti_buf_get(struct circ_buf *cb, char *buf, int count);
  133. /* Data */
  134. /* module parameters */
  135. static int debug;
  136. static int low_latency = TI_DEFAULT_LOW_LATENCY;
  137. static int closing_wait = TI_DEFAULT_CLOSING_WAIT;
  138. static ushort vendor_3410[TI_EXTRA_VID_PID_COUNT];
  139. static unsigned int vendor_3410_count;
  140. static ushort product_3410[TI_EXTRA_VID_PID_COUNT];
  141. static unsigned int product_3410_count;
  142. static ushort vendor_5052[TI_EXTRA_VID_PID_COUNT];
  143. static unsigned int vendor_5052_count;
  144. static ushort product_5052[TI_EXTRA_VID_PID_COUNT];
  145. static unsigned int product_5052_count;
  146. /* supported devices */
  147. /* the array dimension is the number of default entries plus */
  148. /* TI_EXTRA_VID_PID_COUNT user defined entries plus 1 terminating */
  149. /* null entry */
  150. static struct usb_device_id ti_id_table_3410[10+TI_EXTRA_VID_PID_COUNT+1] = {
  151. { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
  152. { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
  153. { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
  154. { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
  155. { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
  156. { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
  157. { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
  158. { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
  159. { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
  160. { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
  161. };
  162. static struct usb_device_id ti_id_table_5052[5+TI_EXTRA_VID_PID_COUNT+1] = {
  163. { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
  164. { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
  165. { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
  166. { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
  167. { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
  168. };
  169. static struct usb_device_id ti_id_table_combined[14+2*TI_EXTRA_VID_PID_COUNT+1] = {
  170. { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
  171. { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
  172. { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
  173. { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
  174. { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
  175. { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
  176. { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
  177. { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
  178. { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
  179. { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
  180. { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
  181. { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
  182. { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
  183. { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
  184. { }
  185. };
  186. static struct usb_driver ti_usb_driver = {
  187. .name = "ti_usb_3410_5052",
  188. .probe = usb_serial_probe,
  189. .disconnect = usb_serial_disconnect,
  190. .id_table = ti_id_table_combined,
  191. .no_dynamic_id = 1,
  192. };
  193. static struct usb_serial_driver ti_1port_device = {
  194. .driver = {
  195. .owner = THIS_MODULE,
  196. .name = "ti_usb_3410_5052_1",
  197. },
  198. .description = "TI USB 3410 1 port adapter",
  199. .usb_driver = &ti_usb_driver,
  200. .id_table = ti_id_table_3410,
  201. .num_ports = 1,
  202. .attach = ti_startup,
  203. .shutdown = ti_shutdown,
  204. .open = ti_open,
  205. .close = ti_close,
  206. .write = ti_write,
  207. .write_room = ti_write_room,
  208. .chars_in_buffer = ti_chars_in_buffer,
  209. .throttle = ti_throttle,
  210. .unthrottle = ti_unthrottle,
  211. .ioctl = ti_ioctl,
  212. .set_termios = ti_set_termios,
  213. .tiocmget = ti_tiocmget,
  214. .tiocmset = ti_tiocmset,
  215. .break_ctl = ti_break,
  216. .read_int_callback = ti_interrupt_callback,
  217. .read_bulk_callback = ti_bulk_in_callback,
  218. .write_bulk_callback = ti_bulk_out_callback,
  219. };
  220. static struct usb_serial_driver ti_2port_device = {
  221. .driver = {
  222. .owner = THIS_MODULE,
  223. .name = "ti_usb_3410_5052_2",
  224. },
  225. .description = "TI USB 5052 2 port adapter",
  226. .usb_driver = &ti_usb_driver,
  227. .id_table = ti_id_table_5052,
  228. .num_ports = 2,
  229. .attach = ti_startup,
  230. .shutdown = ti_shutdown,
  231. .open = ti_open,
  232. .close = ti_close,
  233. .write = ti_write,
  234. .write_room = ti_write_room,
  235. .chars_in_buffer = ti_chars_in_buffer,
  236. .throttle = ti_throttle,
  237. .unthrottle = ti_unthrottle,
  238. .ioctl = ti_ioctl,
  239. .set_termios = ti_set_termios,
  240. .tiocmget = ti_tiocmget,
  241. .tiocmset = ti_tiocmset,
  242. .break_ctl = ti_break,
  243. .read_int_callback = ti_interrupt_callback,
  244. .read_bulk_callback = ti_bulk_in_callback,
  245. .write_bulk_callback = ti_bulk_out_callback,
  246. };
  247. /* Module */
  248. MODULE_AUTHOR(TI_DRIVER_AUTHOR);
  249. MODULE_DESCRIPTION(TI_DRIVER_DESC);
  250. MODULE_VERSION(TI_DRIVER_VERSION);
  251. MODULE_LICENSE("GPL");
  252. MODULE_FIRMWARE("ti_3410.fw");
  253. MODULE_FIRMWARE("ti_5052.fw");
  254. MODULE_FIRMWARE("mts_cdma.fw");
  255. MODULE_FIRMWARE("mts_gsm.fw");
  256. MODULE_FIRMWARE("mts_edge.fw");
  257. module_param(debug, bool, S_IRUGO | S_IWUSR);
  258. MODULE_PARM_DESC(debug, "Enable debugging, 0=no, 1=yes");
  259. module_param(low_latency, bool, S_IRUGO | S_IWUSR);
  260. MODULE_PARM_DESC(low_latency,
  261. "TTY low_latency flag, 0=off, 1=on, default is off");
  262. module_param(closing_wait, int, S_IRUGO | S_IWUSR);
  263. MODULE_PARM_DESC(closing_wait,
  264. "Maximum wait for data to drain in close, in .01 secs, default is 4000");
  265. module_param_array(vendor_3410, ushort, &vendor_3410_count, S_IRUGO);
  266. MODULE_PARM_DESC(vendor_3410,
  267. "Vendor ids for 3410 based devices, 1-5 short integers");
  268. module_param_array(product_3410, ushort, &product_3410_count, S_IRUGO);
  269. MODULE_PARM_DESC(product_3410,
  270. "Product ids for 3410 based devices, 1-5 short integers");
  271. module_param_array(vendor_5052, ushort, &vendor_5052_count, S_IRUGO);
  272. MODULE_PARM_DESC(vendor_5052,
  273. "Vendor ids for 5052 based devices, 1-5 short integers");
  274. module_param_array(product_5052, ushort, &product_5052_count, S_IRUGO);
  275. MODULE_PARM_DESC(product_5052,
  276. "Product ids for 5052 based devices, 1-5 short integers");
  277. MODULE_DEVICE_TABLE(usb, ti_id_table_combined);
  278. /* Functions */
  279. static int __init ti_init(void)
  280. {
  281. int i, j, c;
  282. int ret;
  283. /* insert extra vendor and product ids */
  284. c = ARRAY_SIZE(ti_id_table_combined) - 2 * TI_EXTRA_VID_PID_COUNT - 1;
  285. j = ARRAY_SIZE(ti_id_table_3410) - TI_EXTRA_VID_PID_COUNT - 1;
  286. for (i = 0; i < min(vendor_3410_count, product_3410_count); i++, j++, c++) {
  287. ti_id_table_3410[j].idVendor = vendor_3410[i];
  288. ti_id_table_3410[j].idProduct = product_3410[i];
  289. ti_id_table_3410[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
  290. ti_id_table_combined[c].idVendor = vendor_3410[i];
  291. ti_id_table_combined[c].idProduct = product_3410[i];
  292. ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
  293. }
  294. j = ARRAY_SIZE(ti_id_table_5052) - TI_EXTRA_VID_PID_COUNT - 1;
  295. for (i = 0; i < min(vendor_5052_count, product_5052_count); i++, j++, c++) {
  296. ti_id_table_5052[j].idVendor = vendor_5052[i];
  297. ti_id_table_5052[j].idProduct = product_5052[i];
  298. ti_id_table_5052[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
  299. ti_id_table_combined[c].idVendor = vendor_5052[i];
  300. ti_id_table_combined[c].idProduct = product_5052[i];
  301. ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
  302. }
  303. ret = usb_serial_register(&ti_1port_device);
  304. if (ret)
  305. goto failed_1port;
  306. ret = usb_serial_register(&ti_2port_device);
  307. if (ret)
  308. goto failed_2port;
  309. ret = usb_register(&ti_usb_driver);
  310. if (ret)
  311. goto failed_usb;
  312. printk(KERN_INFO KBUILD_MODNAME ": " TI_DRIVER_VERSION ":"
  313. TI_DRIVER_DESC "\n");
  314. return 0;
  315. failed_usb:
  316. usb_serial_deregister(&ti_2port_device);
  317. failed_2port:
  318. usb_serial_deregister(&ti_1port_device);
  319. failed_1port:
  320. return ret;
  321. }
  322. static void __exit ti_exit(void)
  323. {
  324. usb_serial_deregister(&ti_1port_device);
  325. usb_serial_deregister(&ti_2port_device);
  326. usb_deregister(&ti_usb_driver);
  327. }
  328. module_init(ti_init);
  329. module_exit(ti_exit);
  330. static int ti_startup(struct usb_serial *serial)
  331. {
  332. struct ti_device *tdev;
  333. struct ti_port *tport;
  334. struct usb_device *dev = serial->dev;
  335. int status;
  336. int i;
  337. dbg("%s - product 0x%4X, num configurations %d, configuration value %d",
  338. __func__, le16_to_cpu(dev->descriptor.idProduct),
  339. dev->descriptor.bNumConfigurations,
  340. dev->actconfig->desc.bConfigurationValue);
  341. /* create device structure */
  342. tdev = kzalloc(sizeof(struct ti_device), GFP_KERNEL);
  343. if (tdev == NULL) {
  344. dev_err(&dev->dev, "%s - out of memory\n", __func__);
  345. return -ENOMEM;
  346. }
  347. mutex_init(&tdev->td_open_close_lock);
  348. tdev->td_serial = serial;
  349. usb_set_serial_data(serial, tdev);
  350. /* determine device type */
  351. if (usb_match_id(serial->interface, ti_id_table_3410))
  352. tdev->td_is_3410 = 1;
  353. dbg("%s - device type is %s", __func__,
  354. tdev->td_is_3410 ? "3410" : "5052");
  355. /* if we have only 1 configuration, download firmware */
  356. if (dev->descriptor.bNumConfigurations == 1) {
  357. if ((status = ti_download_firmware(tdev)) != 0)
  358. goto free_tdev;
  359. /* 3410 must be reset, 5052 resets itself */
  360. if (tdev->td_is_3410) {
  361. msleep_interruptible(100);
  362. usb_reset_device(dev);
  363. }
  364. status = -ENODEV;
  365. goto free_tdev;
  366. }
  367. /* the second configuration must be set */
  368. if (dev->actconfig->desc.bConfigurationValue == TI_BOOT_CONFIG) {
  369. status = usb_driver_set_configuration(dev, TI_ACTIVE_CONFIG);
  370. status = status ? status : -ENODEV;
  371. goto free_tdev;
  372. }
  373. /* set up port structures */
  374. for (i = 0; i < serial->num_ports; ++i) {
  375. tport = kzalloc(sizeof(struct ti_port), GFP_KERNEL);
  376. if (tport == NULL) {
  377. dev_err(&dev->dev, "%s - out of memory\n", __func__);
  378. status = -ENOMEM;
  379. goto free_tports;
  380. }
  381. spin_lock_init(&tport->tp_lock);
  382. tport->tp_uart_base_addr = (i == 0 ?
  383. TI_UART1_BASE_ADDR : TI_UART2_BASE_ADDR);
  384. tport->tp_flags = low_latency ? ASYNC_LOW_LATENCY : 0;
  385. tport->tp_closing_wait = closing_wait;
  386. init_waitqueue_head(&tport->tp_msr_wait);
  387. init_waitqueue_head(&tport->tp_write_wait);
  388. tport->tp_write_buf = ti_buf_alloc();
  389. if (tport->tp_write_buf == NULL) {
  390. dev_err(&dev->dev, "%s - out of memory\n", __func__);
  391. kfree(tport);
  392. status = -ENOMEM;
  393. goto free_tports;
  394. }
  395. tport->tp_port = serial->port[i];
  396. tport->tp_tdev = tdev;
  397. usb_set_serial_port_data(serial->port[i], tport);
  398. tport->tp_uart_mode = 0; /* default is RS232 */
  399. }
  400. return 0;
  401. free_tports:
  402. for (--i; i >= 0; --i) {
  403. tport = usb_get_serial_port_data(serial->port[i]);
  404. ti_buf_free(tport->tp_write_buf);
  405. kfree(tport);
  406. usb_set_serial_port_data(serial->port[i], NULL);
  407. }
  408. free_tdev:
  409. kfree(tdev);
  410. usb_set_serial_data(serial, NULL);
  411. return status;
  412. }
  413. static void ti_shutdown(struct usb_serial *serial)
  414. {
  415. int i;
  416. struct ti_device *tdev = usb_get_serial_data(serial);
  417. struct ti_port *tport;
  418. dbg("%s", __func__);
  419. for (i = 0; i < serial->num_ports; ++i) {
  420. tport = usb_get_serial_port_data(serial->port[i]);
  421. if (tport) {
  422. ti_buf_free(tport->tp_write_buf);
  423. kfree(tport);
  424. usb_set_serial_port_data(serial->port[i], NULL);
  425. }
  426. }
  427. kfree(tdev);
  428. usb_set_serial_data(serial, NULL);
  429. }
  430. static int ti_open(struct tty_struct *tty,
  431. struct usb_serial_port *port, struct file *file)
  432. {
  433. struct ti_port *tport = usb_get_serial_port_data(port);
  434. struct ti_device *tdev;
  435. struct usb_device *dev;
  436. struct urb *urb;
  437. int port_number;
  438. int status;
  439. __u16 open_settings = (__u8)(TI_PIPE_MODE_CONTINOUS |
  440. TI_PIPE_TIMEOUT_ENABLE |
  441. (TI_TRANSFER_TIMEOUT << 2));
  442. dbg("%s - port %d", __func__, port->number);
  443. if (tport == NULL)
  444. return -ENODEV;
  445. dev = port->serial->dev;
  446. tdev = tport->tp_tdev;
  447. /* only one open on any port on a device at a time */
  448. if (mutex_lock_interruptible(&tdev->td_open_close_lock))
  449. return -ERESTARTSYS;
  450. if (tty)
  451. tty->low_latency =
  452. (tport->tp_flags & ASYNC_LOW_LATENCY) ? 1 : 0;
  453. port_number = port->number - port->serial->minor;
  454. memset(&(tport->tp_icount), 0x00, sizeof(tport->tp_icount));
  455. tport->tp_msr = 0;
  456. tport->tp_shadow_mcr |= (TI_MCR_RTS | TI_MCR_DTR);
  457. /* start interrupt urb the first time a port is opened on this device */
  458. if (tdev->td_open_port_count == 0) {
  459. dbg("%s - start interrupt in urb", __func__);
  460. urb = tdev->td_serial->port[0]->interrupt_in_urb;
  461. if (!urb) {
  462. dev_err(&port->dev, "%s - no interrupt urb\n",
  463. __func__);
  464. status = -EINVAL;
  465. goto release_lock;
  466. }
  467. urb->complete = ti_interrupt_callback;
  468. urb->context = tdev;
  469. urb->dev = dev;
  470. status = usb_submit_urb(urb, GFP_KERNEL);
  471. if (status) {
  472. dev_err(&port->dev,
  473. "%s - submit interrupt urb failed, %d\n",
  474. __func__, status);
  475. goto release_lock;
  476. }
  477. }
  478. if (tty)
  479. ti_set_termios(tty, port, tty->termios);
  480. dbg("%s - sending TI_OPEN_PORT", __func__);
  481. status = ti_command_out_sync(tdev, TI_OPEN_PORT,
  482. (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
  483. if (status) {
  484. dev_err(&port->dev, "%s - cannot send open command, %d\n",
  485. __func__, status);
  486. goto unlink_int_urb;
  487. }
  488. dbg("%s - sending TI_START_PORT", __func__);
  489. status = ti_command_out_sync(tdev, TI_START_PORT,
  490. (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
  491. if (status) {
  492. dev_err(&port->dev, "%s - cannot send start command, %d\n",
  493. __func__, status);
  494. goto unlink_int_urb;
  495. }
  496. dbg("%s - sending TI_PURGE_PORT", __func__);
  497. status = ti_command_out_sync(tdev, TI_PURGE_PORT,
  498. (__u8)(TI_UART1_PORT + port_number), TI_PURGE_INPUT, NULL, 0);
  499. if (status) {
  500. dev_err(&port->dev, "%s - cannot clear input buffers, %d\n",
  501. __func__, status);
  502. goto unlink_int_urb;
  503. }
  504. status = ti_command_out_sync(tdev, TI_PURGE_PORT,
  505. (__u8)(TI_UART1_PORT + port_number), TI_PURGE_OUTPUT, NULL, 0);
  506. if (status) {
  507. dev_err(&port->dev, "%s - cannot clear output buffers, %d\n",
  508. __func__, status);
  509. goto unlink_int_urb;
  510. }
  511. /* reset the data toggle on the bulk endpoints to work around bug in
  512. * host controllers where things get out of sync some times */
  513. usb_clear_halt(dev, port->write_urb->pipe);
  514. usb_clear_halt(dev, port->read_urb->pipe);
  515. if (tty)
  516. ti_set_termios(tty, port, tty->termios);
  517. dbg("%s - sending TI_OPEN_PORT (2)", __func__);
  518. status = ti_command_out_sync(tdev, TI_OPEN_PORT,
  519. (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
  520. if (status) {
  521. dev_err(&port->dev, "%s - cannot send open command (2), %d\n",
  522. __func__, status);
  523. goto unlink_int_urb;
  524. }
  525. dbg("%s - sending TI_START_PORT (2)", __func__);
  526. status = ti_command_out_sync(tdev, TI_START_PORT,
  527. (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
  528. if (status) {
  529. dev_err(&port->dev, "%s - cannot send start command (2), %d\n",
  530. __func__, status);
  531. goto unlink_int_urb;
  532. }
  533. /* start read urb */
  534. dbg("%s - start read urb", __func__);
  535. urb = port->read_urb;
  536. if (!urb) {
  537. dev_err(&port->dev, "%s - no read urb\n", __func__);
  538. status = -EINVAL;
  539. goto unlink_int_urb;
  540. }
  541. tport->tp_read_urb_state = TI_READ_URB_RUNNING;
  542. urb->complete = ti_bulk_in_callback;
  543. urb->context = tport;
  544. urb->dev = dev;
  545. status = usb_submit_urb(urb, GFP_KERNEL);
  546. if (status) {
  547. dev_err(&port->dev, "%s - submit read urb failed, %d\n",
  548. __func__, status);
  549. goto unlink_int_urb;
  550. }
  551. tport->tp_is_open = 1;
  552. ++tdev->td_open_port_count;
  553. goto release_lock;
  554. unlink_int_urb:
  555. if (tdev->td_open_port_count == 0)
  556. usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
  557. release_lock:
  558. mutex_unlock(&tdev->td_open_close_lock);
  559. dbg("%s - exit %d", __func__, status);
  560. return status;
  561. }
  562. static void ti_close(struct tty_struct *tty, struct usb_serial_port *port,
  563. struct file *file)
  564. {
  565. struct ti_device *tdev;
  566. struct ti_port *tport;
  567. int port_number;
  568. int status;
  569. int do_unlock;
  570. dbg("%s - port %d", __func__, port->number);
  571. tdev = usb_get_serial_data(port->serial);
  572. tport = usb_get_serial_port_data(port);
  573. if (tdev == NULL || tport == NULL)
  574. return;
  575. tport->tp_is_open = 0;
  576. ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 1);
  577. usb_kill_urb(port->read_urb);
  578. usb_kill_urb(port->write_urb);
  579. tport->tp_write_urb_in_use = 0;
  580. port_number = port->number - port->serial->minor;
  581. dbg("%s - sending TI_CLOSE_PORT", __func__);
  582. status = ti_command_out_sync(tdev, TI_CLOSE_PORT,
  583. (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
  584. if (status)
  585. dev_err(&port->dev,
  586. "%s - cannot send close port command, %d\n"
  587. , __func__, status);
  588. /* if mutex_lock is interrupted, continue anyway */
  589. do_unlock = !mutex_lock_interruptible(&tdev->td_open_close_lock);
  590. --tport->tp_tdev->td_open_port_count;
  591. if (tport->tp_tdev->td_open_port_count <= 0) {
  592. /* last port is closed, shut down interrupt urb */
  593. usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
  594. tport->tp_tdev->td_open_port_count = 0;
  595. }
  596. if (do_unlock)
  597. mutex_unlock(&tdev->td_open_close_lock);
  598. dbg("%s - exit", __func__);
  599. }
  600. static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
  601. const unsigned char *data, int count)
  602. {
  603. struct ti_port *tport = usb_get_serial_port_data(port);
  604. unsigned long flags;
  605. dbg("%s - port %d", __func__, port->number);
  606. if (count == 0) {
  607. dbg("%s - write request of 0 bytes", __func__);
  608. return 0;
  609. }
  610. if (tport == NULL || !tport->tp_is_open)
  611. return -ENODEV;
  612. spin_lock_irqsave(&tport->tp_lock, flags);
  613. count = ti_buf_put(tport->tp_write_buf, data, count);
  614. spin_unlock_irqrestore(&tport->tp_lock, flags);
  615. ti_send(tport);
  616. return count;
  617. }
  618. static int ti_write_room(struct tty_struct *tty)
  619. {
  620. struct usb_serial_port *port = tty->driver_data;
  621. struct ti_port *tport = usb_get_serial_port_data(port);
  622. int room = 0;
  623. unsigned long flags;
  624. dbg("%s - port %d", __func__, port->number);
  625. if (tport == NULL)
  626. return -ENODEV;
  627. spin_lock_irqsave(&tport->tp_lock, flags);
  628. room = ti_buf_space_avail(tport->tp_write_buf);
  629. spin_unlock_irqrestore(&tport->tp_lock, flags);
  630. dbg("%s - returns %d", __func__, room);
  631. return room;
  632. }
  633. static int ti_chars_in_buffer(struct tty_struct *tty)
  634. {
  635. struct usb_serial_port *port = tty->driver_data;
  636. struct ti_port *tport = usb_get_serial_port_data(port);
  637. int chars = 0;
  638. unsigned long flags;
  639. dbg("%s - port %d", __func__, port->number);
  640. if (tport == NULL)
  641. return -ENODEV;
  642. spin_lock_irqsave(&tport->tp_lock, flags);
  643. chars = ti_buf_data_avail(tport->tp_write_buf);
  644. spin_unlock_irqrestore(&tport->tp_lock, flags);
  645. dbg("%s - returns %d", __func__, chars);
  646. return chars;
  647. }
  648. static void ti_throttle(struct tty_struct *tty)
  649. {
  650. struct usb_serial_port *port = tty->driver_data;
  651. struct ti_port *tport = usb_get_serial_port_data(port);
  652. dbg("%s - port %d", __func__, port->number);
  653. if (tport == NULL)
  654. return;
  655. if (I_IXOFF(tty) || C_CRTSCTS(tty))
  656. ti_stop_read(tport, tty);
  657. }
  658. static void ti_unthrottle(struct tty_struct *tty)
  659. {
  660. struct usb_serial_port *port = tty->driver_data;
  661. struct ti_port *tport = usb_get_serial_port_data(port);
  662. int status;
  663. dbg("%s - port %d", __func__, port->number);
  664. if (tport == NULL)
  665. return;
  666. if (I_IXOFF(tty) || C_CRTSCTS(tty)) {
  667. status = ti_restart_read(tport, tty);
  668. if (status)
  669. dev_err(&port->dev, "%s - cannot restart read, %d\n",
  670. __func__, status);
  671. }
  672. }
  673. static int ti_ioctl(struct tty_struct *tty, struct file *file,
  674. unsigned int cmd, unsigned long arg)
  675. {
  676. struct usb_serial_port *port = tty->driver_data;
  677. struct ti_port *tport = usb_get_serial_port_data(port);
  678. struct async_icount cnow;
  679. struct async_icount cprev;
  680. dbg("%s - port %d, cmd = 0x%04X", __func__, port->number, cmd);
  681. if (tport == NULL)
  682. return -ENODEV;
  683. switch (cmd) {
  684. case TIOCGSERIAL:
  685. dbg("%s - (%d) TIOCGSERIAL", __func__, port->number);
  686. return ti_get_serial_info(tport,
  687. (struct serial_struct __user *)arg);
  688. case TIOCSSERIAL:
  689. dbg("%s - (%d) TIOCSSERIAL", __func__, port->number);
  690. return ti_set_serial_info(tty, tport,
  691. (struct serial_struct __user *)arg);
  692. case TIOCMIWAIT:
  693. dbg("%s - (%d) TIOCMIWAIT", __func__, port->number);
  694. cprev = tport->tp_icount;
  695. while (1) {
  696. interruptible_sleep_on(&tport->tp_msr_wait);
  697. if (signal_pending(current))
  698. return -ERESTARTSYS;
  699. cnow = tport->tp_icount;
  700. if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
  701. cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
  702. return -EIO; /* no change => error */
  703. if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
  704. ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
  705. ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
  706. ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)))
  707. return 0;
  708. cprev = cnow;
  709. }
  710. break;
  711. case TIOCGICOUNT:
  712. dbg("%s - (%d) TIOCGICOUNT RX=%d, TX=%d",
  713. __func__, port->number,
  714. tport->tp_icount.rx, tport->tp_icount.tx);
  715. if (copy_to_user((void __user *)arg, &tport->tp_icount,
  716. sizeof(tport->tp_icount)))
  717. return -EFAULT;
  718. return 0;
  719. }
  720. return -ENOIOCTLCMD;
  721. }
  722. static void ti_set_termios(struct tty_struct *tty,
  723. struct usb_serial_port *port, struct ktermios *old_termios)
  724. {
  725. struct ti_port *tport = usb_get_serial_port_data(port);
  726. struct ti_uart_config *config;
  727. tcflag_t cflag, iflag;
  728. int baud;
  729. int status;
  730. int port_number = port->number - port->serial->minor;
  731. unsigned int mcr;
  732. dbg("%s - port %d", __func__, port->number);
  733. cflag = tty->termios->c_cflag;
  734. iflag = tty->termios->c_iflag;
  735. dbg("%s - cflag %08x, iflag %08x", __func__, cflag, iflag);
  736. dbg("%s - old clfag %08x, old iflag %08x", __func__,
  737. old_termios->c_cflag, old_termios->c_iflag);
  738. if (tport == NULL)
  739. return;
  740. config = kmalloc(sizeof(*config), GFP_KERNEL);
  741. if (!config) {
  742. dev_err(&port->dev, "%s - out of memory\n", __func__);
  743. return;
  744. }
  745. config->wFlags = 0;
  746. /* these flags must be set */
  747. config->wFlags |= TI_UART_ENABLE_MS_INTS;
  748. config->wFlags |= TI_UART_ENABLE_AUTO_START_DMA;
  749. config->bUartMode = (__u8)(tport->tp_uart_mode);
  750. switch (cflag & CSIZE) {
  751. case CS5:
  752. config->bDataBits = TI_UART_5_DATA_BITS;
  753. break;
  754. case CS6:
  755. config->bDataBits = TI_UART_6_DATA_BITS;
  756. break;
  757. case CS7:
  758. config->bDataBits = TI_UART_7_DATA_BITS;
  759. break;
  760. default:
  761. case CS8:
  762. config->bDataBits = TI_UART_8_DATA_BITS;
  763. break;
  764. }
  765. /* CMSPAR isn't supported by this driver */
  766. tty->termios->c_cflag &= ~CMSPAR;
  767. if (cflag & PARENB) {
  768. if (cflag & PARODD) {
  769. config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
  770. config->bParity = TI_UART_ODD_PARITY;
  771. } else {
  772. config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
  773. config->bParity = TI_UART_EVEN_PARITY;
  774. }
  775. } else {
  776. config->wFlags &= ~TI_UART_ENABLE_PARITY_CHECKING;
  777. config->bParity = TI_UART_NO_PARITY;
  778. }
  779. if (cflag & CSTOPB)
  780. config->bStopBits = TI_UART_2_STOP_BITS;
  781. else
  782. config->bStopBits = TI_UART_1_STOP_BITS;
  783. if (cflag & CRTSCTS) {
  784. /* RTS flow control must be off to drop RTS for baud rate B0 */
  785. if ((cflag & CBAUD) != B0)
  786. config->wFlags |= TI_UART_ENABLE_RTS_IN;
  787. config->wFlags |= TI_UART_ENABLE_CTS_OUT;
  788. } else {
  789. tty->hw_stopped = 0;
  790. ti_restart_read(tport, tty);
  791. }
  792. if (I_IXOFF(tty) || I_IXON(tty)) {
  793. config->cXon = START_CHAR(tty);
  794. config->cXoff = STOP_CHAR(tty);
  795. if (I_IXOFF(tty))
  796. config->wFlags |= TI_UART_ENABLE_X_IN;
  797. else
  798. ti_restart_read(tport, tty);
  799. if (I_IXON(tty))
  800. config->wFlags |= TI_UART_ENABLE_X_OUT;
  801. }
  802. baud = tty_get_baud_rate(tty);
  803. if (!baud)
  804. baud = 9600;
  805. if (tport->tp_tdev->td_is_3410)
  806. config->wBaudRate = (__u16)((923077 + baud/2) / baud);
  807. else
  808. config->wBaudRate = (__u16)((461538 + baud/2) / baud);
  809. /* FIXME: Should calculate resulting baud here and report it back */
  810. if ((cflag & CBAUD) != B0)
  811. tty_encode_baud_rate(tty, baud, baud);
  812. dbg("%s - BaudRate=%d, wBaudRate=%d, wFlags=0x%04X, bDataBits=%d, bParity=%d, bStopBits=%d, cXon=%d, cXoff=%d, bUartMode=%d",
  813. __func__, baud, config->wBaudRate, config->wFlags, config->bDataBits, config->bParity, config->bStopBits, config->cXon, config->cXoff, config->bUartMode);
  814. cpu_to_be16s(&config->wBaudRate);
  815. cpu_to_be16s(&config->wFlags);
  816. status = ti_command_out_sync(tport->tp_tdev, TI_SET_CONFIG,
  817. (__u8)(TI_UART1_PORT + port_number), 0, (__u8 *)config,
  818. sizeof(*config));
  819. if (status)
  820. dev_err(&port->dev, "%s - cannot set config on port %d, %d\n",
  821. __func__, port_number, status);
  822. /* SET_CONFIG asserts RTS and DTR, reset them correctly */
  823. mcr = tport->tp_shadow_mcr;
  824. /* if baud rate is B0, clear RTS and DTR */
  825. if ((cflag & CBAUD) == B0)
  826. mcr &= ~(TI_MCR_DTR | TI_MCR_RTS);
  827. status = ti_set_mcr(tport, mcr);
  828. if (status)
  829. dev_err(&port->dev,
  830. "%s - cannot set modem control on port %d, %d\n",
  831. __func__, port_number, status);
  832. kfree(config);
  833. }
  834. static int ti_tiocmget(struct tty_struct *tty, struct file *file)
  835. {
  836. struct usb_serial_port *port = tty->driver_data;
  837. struct ti_port *tport = usb_get_serial_port_data(port);
  838. unsigned int result;
  839. unsigned int msr;
  840. unsigned int mcr;
  841. unsigned long flags;
  842. dbg("%s - port %d", __func__, port->number);
  843. if (tport == NULL)
  844. return -ENODEV;
  845. spin_lock_irqsave(&tport->tp_lock, flags);
  846. msr = tport->tp_msr;
  847. mcr = tport->tp_shadow_mcr;
  848. spin_unlock_irqrestore(&tport->tp_lock, flags);
  849. result = ((mcr & TI_MCR_DTR) ? TIOCM_DTR : 0)
  850. | ((mcr & TI_MCR_RTS) ? TIOCM_RTS : 0)
  851. | ((mcr & TI_MCR_LOOP) ? TIOCM_LOOP : 0)
  852. | ((msr & TI_MSR_CTS) ? TIOCM_CTS : 0)
  853. | ((msr & TI_MSR_CD) ? TIOCM_CAR : 0)
  854. | ((msr & TI_MSR_RI) ? TIOCM_RI : 0)
  855. | ((msr & TI_MSR_DSR) ? TIOCM_DSR : 0);
  856. dbg("%s - 0x%04X", __func__, result);
  857. return result;
  858. }
  859. static int ti_tiocmset(struct tty_struct *tty, struct file *file,
  860. unsigned int set, unsigned int clear)
  861. {
  862. struct usb_serial_port *port = tty->driver_data;
  863. struct ti_port *tport = usb_get_serial_port_data(port);
  864. unsigned int mcr;
  865. unsigned long flags;
  866. dbg("%s - port %d", __func__, port->number);
  867. if (tport == NULL)
  868. return -ENODEV;
  869. spin_lock_irqsave(&tport->tp_lock, flags);
  870. mcr = tport->tp_shadow_mcr;
  871. if (set & TIOCM_RTS)
  872. mcr |= TI_MCR_RTS;
  873. if (set & TIOCM_DTR)
  874. mcr |= TI_MCR_DTR;
  875. if (set & TIOCM_LOOP)
  876. mcr |= TI_MCR_LOOP;
  877. if (clear & TIOCM_RTS)
  878. mcr &= ~TI_MCR_RTS;
  879. if (clear & TIOCM_DTR)
  880. mcr &= ~TI_MCR_DTR;
  881. if (clear & TIOCM_LOOP)
  882. mcr &= ~TI_MCR_LOOP;
  883. spin_unlock_irqrestore(&tport->tp_lock, flags);
  884. return ti_set_mcr(tport, mcr);
  885. }
  886. static void ti_break(struct tty_struct *tty, int break_state)
  887. {
  888. struct usb_serial_port *port = tty->driver_data;
  889. struct ti_port *tport = usb_get_serial_port_data(port);
  890. int status;
  891. dbg("%s - state = %d", __func__, break_state);
  892. if (tport == NULL)
  893. return;
  894. ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 0);
  895. status = ti_write_byte(tport->tp_tdev,
  896. tport->tp_uart_base_addr + TI_UART_OFFSET_LCR,
  897. TI_LCR_BREAK, break_state == -1 ? TI_LCR_BREAK : 0);
  898. if (status)
  899. dbg("%s - error setting break, %d", __func__, status);
  900. }
  901. static void ti_interrupt_callback(struct urb *urb)
  902. {
  903. struct ti_device *tdev = urb->context;
  904. struct usb_serial_port *port;
  905. struct usb_serial *serial = tdev->td_serial;
  906. struct ti_port *tport;
  907. struct device *dev = &urb->dev->dev;
  908. unsigned char *data = urb->transfer_buffer;
  909. int length = urb->actual_length;
  910. int port_number;
  911. int function;
  912. int status = urb->status;
  913. int retval;
  914. __u8 msr;
  915. dbg("%s", __func__);
  916. switch (status) {
  917. case 0:
  918. break;
  919. case -ECONNRESET:
  920. case -ENOENT:
  921. case -ESHUTDOWN:
  922. dbg("%s - urb shutting down, %d", __func__, status);
  923. tdev->td_urb_error = 1;
  924. return;
  925. default:
  926. dev_err(dev, "%s - nonzero urb status, %d\n",
  927. __func__, status);
  928. tdev->td_urb_error = 1;
  929. goto exit;
  930. }
  931. if (length != 2) {
  932. dbg("%s - bad packet size, %d", __func__, length);
  933. goto exit;
  934. }
  935. if (data[0] == TI_CODE_HARDWARE_ERROR) {
  936. dev_err(dev, "%s - hardware error, %d\n", __func__, data[1]);
  937. goto exit;
  938. }
  939. port_number = TI_GET_PORT_FROM_CODE(data[0]);
  940. function = TI_GET_FUNC_FROM_CODE(data[0]);
  941. dbg("%s - port_number %d, function %d, data 0x%02X",
  942. __func__, port_number, function, data[1]);
  943. if (port_number >= serial->num_ports) {
  944. dev_err(dev, "%s - bad port number, %d\n",
  945. __func__, port_number);
  946. goto exit;
  947. }
  948. port = serial->port[port_number];
  949. tport = usb_get_serial_port_data(port);
  950. if (!tport)
  951. goto exit;
  952. switch (function) {
  953. case TI_CODE_DATA_ERROR:
  954. dev_err(dev, "%s - DATA ERROR, port %d, data 0x%02X\n",
  955. __func__, port_number, data[1]);
  956. break;
  957. case TI_CODE_MODEM_STATUS:
  958. msr = data[1];
  959. dbg("%s - port %d, msr 0x%02X", __func__, port_number, msr);
  960. ti_handle_new_msr(tport, msr);
  961. break;
  962. default:
  963. dev_err(dev, "%s - unknown interrupt code, 0x%02X\n",
  964. __func__, data[1]);
  965. break;
  966. }
  967. exit:
  968. retval = usb_submit_urb(urb, GFP_ATOMIC);
  969. if (retval)
  970. dev_err(dev, "%s - resubmit interrupt urb failed, %d\n",
  971. __func__, retval);
  972. }
  973. static void ti_bulk_in_callback(struct urb *urb)
  974. {
  975. struct ti_port *tport = urb->context;
  976. struct usb_serial_port *port = tport->tp_port;
  977. struct device *dev = &urb->dev->dev;
  978. int status = urb->status;
  979. int retval = 0;
  980. struct tty_struct *tty;
  981. dbg("%s", __func__);
  982. switch (status) {
  983. case 0:
  984. break;
  985. case -ECONNRESET:
  986. case -ENOENT:
  987. case -ESHUTDOWN:
  988. dbg("%s - urb shutting down, %d", __func__, status);
  989. tport->tp_tdev->td_urb_error = 1;
  990. wake_up_interruptible(&tport->tp_write_wait);
  991. return;
  992. default:
  993. dev_err(dev, "%s - nonzero urb status, %d\n",
  994. __func__, status);
  995. tport->tp_tdev->td_urb_error = 1;
  996. wake_up_interruptible(&tport->tp_write_wait);
  997. }
  998. if (status == -EPIPE)
  999. goto exit;
  1000. if (status) {
  1001. dev_err(dev, "%s - stopping read!\n", __func__);
  1002. return;
  1003. }
  1004. tty = tty_port_tty_get(&port->port);
  1005. if (tty && urb->actual_length) {
  1006. usb_serial_debug_data(debug, dev, __func__,
  1007. urb->actual_length, urb->transfer_buffer);
  1008. if (!tport->tp_is_open)
  1009. dbg("%s - port closed, dropping data", __func__);
  1010. else
  1011. ti_recv(&urb->dev->dev, tty,
  1012. urb->transfer_buffer,
  1013. urb->actual_length);
  1014. spin_lock(&tport->tp_lock);
  1015. tport->tp_icount.rx += urb->actual_length;
  1016. spin_unlock(&tport->tp_lock);
  1017. tty_kref_put(tty);
  1018. }
  1019. exit:
  1020. /* continue to read unless stopping */
  1021. spin_lock(&tport->tp_lock);
  1022. if (tport->tp_read_urb_state == TI_READ_URB_RUNNING) {
  1023. urb->dev = port->serial->dev;
  1024. retval = usb_submit_urb(urb, GFP_ATOMIC);
  1025. } else if (tport->tp_read_urb_state == TI_READ_URB_STOPPING) {
  1026. tport->tp_read_urb_state = TI_READ_URB_STOPPED;
  1027. }
  1028. spin_unlock(&tport->tp_lock);
  1029. if (retval)
  1030. dev_err(dev, "%s - resubmit read urb failed, %d\n",
  1031. __func__, retval);
  1032. }
  1033. static void ti_bulk_out_callback(struct urb *urb)
  1034. {
  1035. struct ti_port *tport = urb->context;
  1036. struct usb_serial_port *port = tport->tp_port;
  1037. struct device *dev = &urb->dev->dev;
  1038. int status = urb->status;
  1039. dbg("%s - port %d", __func__, port->number);
  1040. tport->tp_write_urb_in_use = 0;
  1041. switch (status) {
  1042. case 0:
  1043. break;
  1044. case -ECONNRESET:
  1045. case -ENOENT:
  1046. case -ESHUTDOWN:
  1047. dbg("%s - urb shutting down, %d", __func__, status);
  1048. tport->tp_tdev->td_urb_error = 1;
  1049. wake_up_interruptible(&tport->tp_write_wait);
  1050. return;
  1051. default:
  1052. dev_err(dev, "%s - nonzero urb status, %d\n",
  1053. __func__, status);
  1054. tport->tp_tdev->td_urb_error = 1;
  1055. wake_up_interruptible(&tport->tp_write_wait);
  1056. }
  1057. /* send any buffered data */
  1058. ti_send(tport);
  1059. }
  1060. static void ti_recv(struct device *dev, struct tty_struct *tty,
  1061. unsigned char *data, int length)
  1062. {
  1063. int cnt;
  1064. do {
  1065. cnt = tty_buffer_request_room(tty, length);
  1066. if (cnt < length) {
  1067. dev_err(dev, "%s - dropping data, %d bytes lost\n",
  1068. __func__, length - cnt);
  1069. if (cnt == 0)
  1070. break;
  1071. }
  1072. tty_insert_flip_string(tty, data, cnt);
  1073. tty_flip_buffer_push(tty);
  1074. data += cnt;
  1075. length -= cnt;
  1076. } while (length > 0);
  1077. }
  1078. static void ti_send(struct ti_port *tport)
  1079. {
  1080. int count, result;
  1081. struct usb_serial_port *port = tport->tp_port;
  1082. struct tty_struct *tty = tty_port_tty_get(&port->port); /* FIXME */
  1083. unsigned long flags;
  1084. dbg("%s - port %d", __func__, port->number);
  1085. spin_lock_irqsave(&tport->tp_lock, flags);
  1086. if (tport->tp_write_urb_in_use)
  1087. goto unlock;
  1088. count = ti_buf_get(tport->tp_write_buf,
  1089. port->write_urb->transfer_buffer,
  1090. port->bulk_out_size);
  1091. if (count == 0)
  1092. goto unlock;
  1093. tport->tp_write_urb_in_use = 1;
  1094. spin_unlock_irqrestore(&tport->tp_lock, flags);
  1095. usb_serial_debug_data(debug, &port->dev, __func__, count,
  1096. port->write_urb->transfer_buffer);
  1097. usb_fill_bulk_urb(port->write_urb, port->serial->dev,
  1098. usb_sndbulkpipe(port->serial->dev,
  1099. port->bulk_out_endpointAddress),
  1100. port->write_urb->transfer_buffer, count,
  1101. ti_bulk_out_callback, tport);
  1102. result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
  1103. if (result) {
  1104. dev_err(&port->dev, "%s - submit write urb failed, %d\n",
  1105. __func__, result);
  1106. tport->tp_write_urb_in_use = 0;
  1107. /* TODO: reschedule ti_send */
  1108. } else {
  1109. spin_lock_irqsave(&tport->tp_lock, flags);
  1110. tport->tp_icount.tx += count;
  1111. spin_unlock_irqrestore(&tport->tp_lock, flags);
  1112. }
  1113. /* more room in the buffer for new writes, wakeup */
  1114. if (tty)
  1115. tty_wakeup(tty);
  1116. tty_kref_put(tty);
  1117. wake_up_interruptible(&tport->tp_write_wait);
  1118. return;
  1119. unlock:
  1120. spin_unlock_irqrestore(&tport->tp_lock, flags);
  1121. tty_kref_put(tty);
  1122. return;
  1123. }
  1124. static int ti_set_mcr(struct ti_port *tport, unsigned int mcr)
  1125. {
  1126. unsigned long flags;
  1127. int status;
  1128. status = ti_write_byte(tport->tp_tdev,
  1129. tport->tp_uart_base_addr + TI_UART_OFFSET_MCR,
  1130. TI_MCR_RTS | TI_MCR_DTR | TI_MCR_LOOP, mcr);
  1131. spin_lock_irqsave(&tport->tp_lock, flags);
  1132. if (!status)
  1133. tport->tp_shadow_mcr = mcr;
  1134. spin_unlock_irqrestore(&tport->tp_lock, flags);
  1135. return status;
  1136. }
  1137. static int ti_get_lsr(struct ti_port *tport)
  1138. {
  1139. int size, status;
  1140. struct ti_device *tdev = tport->tp_tdev;
  1141. struct usb_serial_port *port = tport->tp_port;
  1142. int port_number = port->number - port->serial->minor;
  1143. struct ti_port_status *data;
  1144. dbg("%s - port %d", __func__, port->number);
  1145. size = sizeof(struct ti_port_status);
  1146. data = kmalloc(size, GFP_KERNEL);
  1147. if (!data) {
  1148. dev_err(&port->dev, "%s - out of memory\n", __func__);
  1149. return -ENOMEM;
  1150. }
  1151. status = ti_command_in_sync(tdev, TI_GET_PORT_STATUS,
  1152. (__u8)(TI_UART1_PORT+port_number), 0, (__u8 *)data, size);
  1153. if (status) {
  1154. dev_err(&port->dev,
  1155. "%s - get port status command failed, %d\n",
  1156. __func__, status);
  1157. goto free_data;
  1158. }
  1159. dbg("%s - lsr 0x%02X", __func__, data->bLSR);
  1160. tport->tp_lsr = data->bLSR;
  1161. free_data:
  1162. kfree(data);
  1163. return status;
  1164. }
  1165. static int ti_get_serial_info(struct ti_port *tport,
  1166. struct serial_struct __user *ret_arg)
  1167. {
  1168. struct usb_serial_port *port = tport->tp_port;
  1169. struct serial_struct ret_serial;
  1170. if (!ret_arg)
  1171. return -EFAULT;
  1172. memset(&ret_serial, 0, sizeof(ret_serial));
  1173. ret_serial.type = PORT_16550A;
  1174. ret_serial.line = port->serial->minor;
  1175. ret_serial.port = port->number - port->serial->minor;
  1176. ret_serial.flags = tport->tp_flags;
  1177. ret_serial.xmit_fifo_size = TI_WRITE_BUF_SIZE;
  1178. ret_serial.baud_base = tport->tp_tdev->td_is_3410 ? 921600 : 460800;
  1179. ret_serial.closing_wait = tport->tp_closing_wait;
  1180. if (copy_to_user(ret_arg, &ret_serial, sizeof(*ret_arg)))
  1181. return -EFAULT;
  1182. return 0;
  1183. }
  1184. static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
  1185. struct serial_struct __user *new_arg)
  1186. {
  1187. struct serial_struct new_serial;
  1188. if (copy_from_user(&new_serial, new_arg, sizeof(new_serial)))
  1189. return -EFAULT;
  1190. tport->tp_flags = new_serial.flags & TI_SET_SERIAL_FLAGS;
  1191. tty->low_latency = (tport->tp_flags & ASYNC_LOW_LATENCY) ? 1 : 0;
  1192. tport->tp_closing_wait = new_serial.closing_wait;
  1193. return 0;
  1194. }
  1195. static void ti_handle_new_msr(struct ti_port *tport, __u8 msr)
  1196. {
  1197. struct async_icount *icount;
  1198. struct tty_struct *tty;
  1199. unsigned long flags;
  1200. dbg("%s - msr 0x%02X", __func__, msr);
  1201. if (msr & TI_MSR_DELTA_MASK) {
  1202. spin_lock_irqsave(&tport->tp_lock, flags);
  1203. icount = &tport->tp_icount;
  1204. if (msr & TI_MSR_DELTA_CTS)
  1205. icount->cts++;
  1206. if (msr & TI_MSR_DELTA_DSR)
  1207. icount->dsr++;
  1208. if (msr & TI_MSR_DELTA_CD)
  1209. icount->dcd++;
  1210. if (msr & TI_MSR_DELTA_RI)
  1211. icount->rng++;
  1212. wake_up_interruptible(&tport->tp_msr_wait);
  1213. spin_unlock_irqrestore(&tport->tp_lock, flags);
  1214. }
  1215. tport->tp_msr = msr & TI_MSR_MASK;
  1216. /* handle CTS flow control */
  1217. tty = tty_port_tty_get(&tport->tp_port->port);
  1218. if (tty && C_CRTSCTS(tty)) {
  1219. if (msr & TI_MSR_CTS) {
  1220. tty->hw_stopped = 0;
  1221. tty_wakeup(tty);
  1222. } else {
  1223. tty->hw_stopped = 1;
  1224. }
  1225. }
  1226. tty_kref_put(tty);
  1227. }
  1228. static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush)
  1229. {
  1230. struct ti_device *tdev = tport->tp_tdev;
  1231. struct usb_serial_port *port = tport->tp_port;
  1232. wait_queue_t wait;
  1233. dbg("%s - port %d", __func__, port->number);
  1234. spin_lock_irq(&tport->tp_lock);
  1235. /* wait for data to drain from the buffer */
  1236. tdev->td_urb_error = 0;
  1237. init_waitqueue_entry(&wait, current);
  1238. add_wait_queue(&tport->tp_write_wait, &wait);
  1239. for (;;) {
  1240. set_current_state(TASK_INTERRUPTIBLE);
  1241. if (ti_buf_data_avail(tport->tp_write_buf) == 0
  1242. || timeout == 0 || signal_pending(current)
  1243. || tdev->td_urb_error
  1244. || port->serial->disconnected) /* disconnect */
  1245. break;
  1246. spin_unlock_irq(&tport->tp_lock);
  1247. timeout = schedule_timeout(timeout);
  1248. spin_lock_irq(&tport->tp_lock);
  1249. }
  1250. set_current_state(TASK_RUNNING);
  1251. remove_wait_queue(&tport->tp_write_wait, &wait);
  1252. /* flush any remaining data in the buffer */
  1253. if (flush)
  1254. ti_buf_clear(tport->tp_write_buf);
  1255. spin_unlock_irq(&tport->tp_lock);
  1256. mutex_lock(&port->serial->disc_mutex);
  1257. /* wait for data to drain from the device */
  1258. /* wait for empty tx register, plus 20 ms */
  1259. timeout += jiffies;
  1260. tport->tp_lsr &= ~TI_LSR_TX_EMPTY;
  1261. while ((long)(jiffies - timeout) < 0 && !signal_pending(current)
  1262. && !(tport->tp_lsr&TI_LSR_TX_EMPTY) && !tdev->td_urb_error
  1263. && !port->serial->disconnected) {
  1264. if (ti_get_lsr(tport))
  1265. break;
  1266. mutex_unlock(&port->serial->disc_mutex);
  1267. msleep_interruptible(20);
  1268. mutex_lock(&port->serial->disc_mutex);
  1269. }
  1270. mutex_unlock(&port->serial->disc_mutex);
  1271. }
  1272. static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty)
  1273. {
  1274. unsigned long flags;
  1275. spin_lock_irqsave(&tport->tp_lock, flags);
  1276. if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
  1277. tport->tp_read_urb_state = TI_READ_URB_STOPPING;
  1278. spin_unlock_irqrestore(&tport->tp_lock, flags);
  1279. }
  1280. static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty)
  1281. {
  1282. struct urb *urb;
  1283. int status = 0;
  1284. unsigned long flags;
  1285. spin_lock_irqsave(&tport->tp_lock, flags);
  1286. if (tport->tp_read_urb_state == TI_READ_URB_STOPPED) {
  1287. tport->tp_read_urb_state = TI_READ_URB_RUNNING;
  1288. urb = tport->tp_port->read_urb;
  1289. spin_unlock_irqrestore(&tport->tp_lock, flags);
  1290. urb->complete = ti_bulk_in_callback;
  1291. urb->context = tport;
  1292. urb->dev = tport->tp_port->serial->dev;
  1293. status = usb_submit_urb(urb, GFP_KERNEL);
  1294. } else {
  1295. tport->tp_read_urb_state = TI_READ_URB_RUNNING;
  1296. spin_unlock_irqrestore(&tport->tp_lock, flags);
  1297. }
  1298. return status;
  1299. }
  1300. static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
  1301. __u16 moduleid, __u16 value, __u8 *data, int size)
  1302. {
  1303. int status;
  1304. status = usb_control_msg(tdev->td_serial->dev,
  1305. usb_sndctrlpipe(tdev->td_serial->dev, 0), command,
  1306. (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
  1307. value, moduleid, data, size, 1000);
  1308. if (status == size)
  1309. status = 0;
  1310. if (status > 0)
  1311. status = -ECOMM;
  1312. return status;
  1313. }
  1314. static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
  1315. __u16 moduleid, __u16 value, __u8 *data, int size)
  1316. {
  1317. int status;
  1318. status = usb_control_msg(tdev->td_serial->dev,
  1319. usb_rcvctrlpipe(tdev->td_serial->dev, 0), command,
  1320. (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
  1321. value, moduleid, data, size, 1000);
  1322. if (status == size)
  1323. status = 0;
  1324. if (status > 0)
  1325. status = -ECOMM;
  1326. return status;
  1327. }
  1328. static int ti_write_byte(struct ti_device *tdev, unsigned long addr,
  1329. __u8 mask, __u8 byte)
  1330. {
  1331. int status;
  1332. unsigned int size;
  1333. struct ti_write_data_bytes *data;
  1334. struct device *dev = &tdev->td_serial->dev->dev;
  1335. dbg("%s - addr 0x%08lX, mask 0x%02X, byte 0x%02X",
  1336. __func__, addr, mask, byte);
  1337. size = sizeof(struct ti_write_data_bytes) + 2;
  1338. data = kmalloc(size, GFP_KERNEL);
  1339. if (!data) {
  1340. dev_err(dev, "%s - out of memory\n", __func__);
  1341. return -ENOMEM;
  1342. }
  1343. data->bAddrType = TI_RW_DATA_ADDR_XDATA;
  1344. data->bDataType = TI_RW_DATA_BYTE;
  1345. data->bDataCounter = 1;
  1346. data->wBaseAddrHi = cpu_to_be16(addr>>16);
  1347. data->wBaseAddrLo = cpu_to_be16(addr);
  1348. data->bData[0] = mask;
  1349. data->bData[1] = byte;
  1350. status = ti_command_out_sync(tdev, TI_WRITE_DATA, TI_RAM_PORT, 0,
  1351. (__u8 *)data, size);
  1352. if (status < 0)
  1353. dev_err(dev, "%s - failed, %d\n", __func__, status);
  1354. kfree(data);
  1355. return status;
  1356. }
  1357. static int ti_do_download(struct usb_device *dev, int pipe,
  1358. u8 *buffer, int size)
  1359. {
  1360. int pos;
  1361. u8 cs = 0;
  1362. int done;
  1363. struct ti_firmware_header *header;
  1364. int status;
  1365. int len;
  1366. for (pos = sizeof(struct ti_firmware_header); pos < size; pos++)
  1367. cs = (__u8)(cs + buffer[pos]);
  1368. header = (struct ti_firmware_header *)buffer;
  1369. header->wLength = cpu_to_le16((__u16)(size
  1370. - sizeof(struct ti_firmware_header)));
  1371. header->bCheckSum = cs;
  1372. dbg("%s - downloading firmware", __func__);
  1373. for (pos = 0; pos < size; pos += done) {
  1374. len = min(size - pos, TI_DOWNLOAD_MAX_PACKET_SIZE);
  1375. status = usb_bulk_msg(dev, pipe, buffer + pos, len,
  1376. &done, 1000);
  1377. if (status)
  1378. break;
  1379. }
  1380. return status;
  1381. }
  1382. static int ti_download_firmware(struct ti_device *tdev)
  1383. {
  1384. int status;
  1385. int buffer_size;
  1386. __u8 *buffer;
  1387. struct usb_device *dev = tdev->td_serial->dev;
  1388. unsigned int pipe = usb_sndbulkpipe(dev,
  1389. tdev->td_serial->port[0]->bulk_out_endpointAddress);
  1390. const struct firmware *fw_p;
  1391. char buf[32];
  1392. /* try ID specific firmware first, then try generic firmware */
  1393. sprintf(buf, "ti_usb-v%04x-p%04x.fw", dev->descriptor.idVendor,
  1394. dev->descriptor.idProduct);
  1395. if ((status = request_firmware(&fw_p, buf, &dev->dev)) != 0) {
  1396. buf[0] = '\0';
  1397. if (dev->descriptor.idVendor == MTS_VENDOR_ID) {
  1398. switch (dev->descriptor.idProduct) {
  1399. case MTS_CDMA_PRODUCT_ID:
  1400. strcpy(buf, "mts_cdma.fw");
  1401. break;
  1402. case MTS_GSM_PRODUCT_ID:
  1403. strcpy(buf, "mts_gsm.fw");
  1404. break;
  1405. case MTS_EDGE_PRODUCT_ID:
  1406. strcpy(buf, "mts_edge.fw");
  1407. break;
  1408. }
  1409. }
  1410. if (buf[0] == '\0') {
  1411. if (tdev->td_is_3410)
  1412. strcpy(buf, "ti_3410.fw");
  1413. else
  1414. strcpy(buf, "ti_5052.fw");
  1415. }
  1416. status = request_firmware(&fw_p, buf, &dev->dev);
  1417. }
  1418. if (status) {
  1419. dev_err(&dev->dev, "%s - firmware not found\n", __func__);
  1420. return -ENOENT;
  1421. }
  1422. if (fw_p->size > TI_FIRMWARE_BUF_SIZE) {
  1423. dev_err(&dev->dev, "%s - firmware too large\n", __func__);
  1424. return -ENOENT;
  1425. }
  1426. buffer_size = TI_FIRMWARE_BUF_SIZE + sizeof(struct ti_firmware_header);
  1427. buffer = kmalloc(buffer_size, GFP_KERNEL);
  1428. if (buffer) {
  1429. memcpy(buffer, fw_p->data, fw_p->size);
  1430. memset(buffer + fw_p->size, 0xff, buffer_size - fw_p->size);
  1431. status = ti_do_download(dev, pipe, buffer, fw_p->size);
  1432. kfree(buffer);
  1433. } else {
  1434. status = -ENOMEM;
  1435. }
  1436. release_firmware(fw_p);
  1437. if (status) {
  1438. dev_err(&dev->dev, "%s - error downloading firmware, %d\n",
  1439. __func__, status);
  1440. return status;
  1441. }
  1442. dbg("%s - download successful", __func__);
  1443. return 0;
  1444. }
  1445. /* Circular Buffer Functions */
  1446. /*
  1447. * ti_buf_alloc
  1448. *
  1449. * Allocate a circular buffer and all associated memory.
  1450. */
  1451. static struct circ_buf *ti_buf_alloc(void)
  1452. {
  1453. struct circ_buf *cb;
  1454. cb = kmalloc(sizeof(struct circ_buf), GFP_KERNEL);
  1455. if (cb == NULL)
  1456. return NULL;
  1457. cb->buf = kmalloc(TI_WRITE_BUF_SIZE, GFP_KERNEL);
  1458. if (cb->buf == NULL) {
  1459. kfree(cb);
  1460. return NULL;
  1461. }
  1462. ti_buf_clear(cb);
  1463. return cb;
  1464. }
  1465. /*
  1466. * ti_buf_free
  1467. *
  1468. * Free the buffer and all associated memory.
  1469. */
  1470. static void ti_buf_free(struct circ_buf *cb)
  1471. {
  1472. kfree(cb->buf);
  1473. kfree(cb);
  1474. }
  1475. /*
  1476. * ti_buf_clear
  1477. *
  1478. * Clear out all data in the circular buffer.
  1479. */
  1480. static void ti_buf_clear(struct circ_buf *cb)
  1481. {
  1482. cb->head = cb->tail = 0;
  1483. }
  1484. /*
  1485. * ti_buf_data_avail
  1486. *
  1487. * Return the number of bytes of data available in the circular
  1488. * buffer.
  1489. */
  1490. static int ti_buf_data_avail(struct circ_buf *cb)
  1491. {
  1492. return CIRC_CNT(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
  1493. }
  1494. /*
  1495. * ti_buf_space_avail
  1496. *
  1497. * Return the number of bytes of space available in the circular
  1498. * buffer.
  1499. */
  1500. static int ti_buf_space_avail(struct circ_buf *cb)
  1501. {
  1502. return CIRC_SPACE(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
  1503. }
  1504. /*
  1505. * ti_buf_put
  1506. *
  1507. * Copy data data from a user buffer and put it into the circular buffer.
  1508. * Restrict to the amount of space available.
  1509. *
  1510. * Return the number of bytes copied.
  1511. */
  1512. static int ti_buf_put(struct circ_buf *cb, const char *buf, int count)
  1513. {
  1514. int c, ret = 0;
  1515. while (1) {
  1516. c = CIRC_SPACE_TO_END(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
  1517. if (count < c)
  1518. c = count;
  1519. if (c <= 0)
  1520. break;
  1521. memcpy(cb->buf + cb->head, buf, c);
  1522. cb->head = (cb->head + c) & (TI_WRITE_BUF_SIZE-1);
  1523. buf += c;
  1524. count -= c;
  1525. ret += c;
  1526. }
  1527. return ret;
  1528. }
  1529. /*
  1530. * ti_buf_get
  1531. *
  1532. * Get data from the circular buffer and copy to the given buffer.
  1533. * Restrict to the amount of data available.
  1534. *
  1535. * Return the number of bytes copied.
  1536. */
  1537. static int ti_buf_get(struct circ_buf *cb, char *buf, int count)
  1538. {
  1539. int c, ret = 0;
  1540. while (1) {
  1541. c = CIRC_CNT_TO_END(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
  1542. if (count < c)
  1543. c = count;
  1544. if (c <= 0)
  1545. break;
  1546. memcpy(buf, cb->buf + cb->tail, c);
  1547. cb->tail = (cb->tail + c) & (TI_WRITE_BUF_SIZE-1);
  1548. buf += c;
  1549. count -= c;
  1550. ret += c;
  1551. }
  1552. return ret;
  1553. }