ti_usb_3410_5052.c 47 KB

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