ti_usb_3410_5052.c 47 KB

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