cypress_m8.c 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663
  1. /*
  2. * USB Cypress M8 driver
  3. *
  4. * Copyright (C) 2004
  5. * Lonnie Mendez (dignome@gmail.com)
  6. * Copyright (C) 2003,2004
  7. * Neil Whelchel (koyama@firstlight.net)
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * See Documentation/usb/usb-serial.txt for more information on using this
  15. * driver
  16. *
  17. * See http://geocities.com/i0xox0i for information on this driver and the
  18. * earthmate usb device.
  19. *
  20. * Lonnie Mendez <dignome@gmail.com>
  21. * 4-29-2005
  22. * Fixed problem where setting or retreiving the serial config would fail
  23. * with EPIPE. Removed CRTS toggling so the driver behaves more like
  24. * other usbserial adapters. Issued new interval of 1ms instead of the
  25. * default 10ms. As a result, transfer speed has been substantially
  26. * increased from avg. 850bps to avg. 3300bps. initial termios has also
  27. * been modified. Cleaned up code and formatting issues so it is more
  28. * readable. Replaced the C++ style comments.
  29. *
  30. * Lonnie Mendez <dignome@gmail.com>
  31. * 12-15-2004
  32. * Incorporated write buffering from pl2303 driver. Fixed bug with line
  33. * handling so both lines are raised in cypress_open. (was dropping rts)
  34. * Various code cleanups made as well along with other misc bug fixes.
  35. *
  36. * Lonnie Mendez <dignome@gmail.com>
  37. * 04-10-2004
  38. * Driver modified to support dynamic line settings. Various improvments
  39. * and features.
  40. *
  41. * Neil Whelchel
  42. * 10-2003
  43. * Driver first released.
  44. *
  45. */
  46. /* Thanks to Neil Whelchel for writing the first cypress m8 implementation
  47. for linux. */
  48. /* Thanks to cypress for providing references for the hid reports. */
  49. /* Thanks to Jiang Zhang for providing links and for general help. */
  50. /* Code originates and was built up from ftdi_sio, belkin, pl2303 and others.*/
  51. #include <linux/kernel.h>
  52. #include <linux/errno.h>
  53. #include <linux/init.h>
  54. #include <linux/slab.h>
  55. #include <linux/tty.h>
  56. #include <linux/tty_driver.h>
  57. #include <linux/tty_flip.h>
  58. #include <linux/module.h>
  59. #include <linux/moduleparam.h>
  60. #include <linux/spinlock.h>
  61. #include <linux/usb.h>
  62. #include <linux/usb/serial.h>
  63. #include <linux/serial.h>
  64. #include <linux/delay.h>
  65. #include <linux/uaccess.h>
  66. #include "cypress_m8.h"
  67. #ifdef CONFIG_USB_SERIAL_DEBUG
  68. static int debug = 1;
  69. #else
  70. static int debug;
  71. #endif
  72. static int stats;
  73. static int interval;
  74. /*
  75. * Version Information
  76. */
  77. #define DRIVER_VERSION "v1.09"
  78. #define DRIVER_AUTHOR "Lonnie Mendez <dignome@gmail.com>, Neil Whelchel <koyama@firstlight.net>"
  79. #define DRIVER_DESC "Cypress USB to Serial Driver"
  80. /* write buffer size defines */
  81. #define CYPRESS_BUF_SIZE 1024
  82. #define CYPRESS_CLOSING_WAIT (30*HZ)
  83. static struct usb_device_id id_table_earthmate [] = {
  84. { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
  85. { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
  86. { } /* Terminating entry */
  87. };
  88. static struct usb_device_id id_table_cyphidcomrs232 [] = {
  89. { USB_DEVICE(VENDOR_ID_CYPRESS, PRODUCT_ID_CYPHIDCOM) },
  90. { USB_DEVICE(VENDOR_ID_POWERCOM, PRODUCT_ID_UPS) },
  91. { } /* Terminating entry */
  92. };
  93. static struct usb_device_id id_table_nokiaca42v2 [] = {
  94. { USB_DEVICE(VENDOR_ID_DAZZLE, PRODUCT_ID_CA42) },
  95. { } /* Terminating entry */
  96. };
  97. static struct usb_device_id id_table_combined [] = {
  98. { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
  99. { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
  100. { USB_DEVICE(VENDOR_ID_CYPRESS, PRODUCT_ID_CYPHIDCOM) },
  101. { USB_DEVICE(VENDOR_ID_POWERCOM, PRODUCT_ID_UPS) },
  102. { USB_DEVICE(VENDOR_ID_DAZZLE, PRODUCT_ID_CA42) },
  103. { } /* Terminating entry */
  104. };
  105. MODULE_DEVICE_TABLE(usb, id_table_combined);
  106. static struct usb_driver cypress_driver = {
  107. .name = "cypress",
  108. .probe = usb_serial_probe,
  109. .disconnect = usb_serial_disconnect,
  110. .id_table = id_table_combined,
  111. .no_dynamic_id = 1,
  112. };
  113. enum packet_format {
  114. packet_format_1, /* b0:status, b1:payload count */
  115. packet_format_2 /* b0[7:3]:status, b0[2:0]:payload count */
  116. };
  117. struct cypress_private {
  118. spinlock_t lock; /* private lock */
  119. int chiptype; /* identifier of device, for quirks/etc */
  120. int bytes_in; /* used for statistics */
  121. int bytes_out; /* used for statistics */
  122. int cmd_count; /* used for statistics */
  123. int cmd_ctrl; /* always set this to 1 before issuing a command */
  124. struct cypress_buf *buf; /* write buffer */
  125. int write_urb_in_use; /* write urb in use indicator */
  126. int write_urb_interval; /* interval to use for write urb */
  127. int read_urb_interval; /* interval to use for read urb */
  128. int comm_is_ok; /* true if communication is (still) ok */
  129. int termios_initialized;
  130. __u8 line_control; /* holds dtr / rts value */
  131. __u8 current_status; /* received from last read - info on dsr,cts,cd,ri,etc */
  132. __u8 current_config; /* stores the current configuration byte */
  133. __u8 rx_flags; /* throttling - used from whiteheat/ftdi_sio */
  134. enum packet_format pkt_fmt; /* format to use for packet send / receive */
  135. int get_cfg_unsafe; /* If true, the CYPRESS_GET_CONFIG is unsafe */
  136. int baud_rate; /* stores current baud rate in
  137. integer form */
  138. int isthrottled; /* if throttled, discard reads */
  139. wait_queue_head_t delta_msr_wait; /* used for TIOCMIWAIT */
  140. char prev_status, diff_status; /* used for TIOCMIWAIT */
  141. /* we pass a pointer to this as the arguement sent to
  142. cypress_set_termios old_termios */
  143. struct ktermios tmp_termios; /* stores the old termios settings */
  144. };
  145. /* write buffer structure */
  146. struct cypress_buf {
  147. unsigned int buf_size;
  148. char *buf_buf;
  149. char *buf_get;
  150. char *buf_put;
  151. };
  152. /* function prototypes for the Cypress USB to serial device */
  153. static int cypress_earthmate_startup(struct usb_serial *serial);
  154. static int cypress_hidcom_startup(struct usb_serial *serial);
  155. static int cypress_ca42v2_startup(struct usb_serial *serial);
  156. static void cypress_shutdown(struct usb_serial *serial);
  157. static int cypress_open(struct tty_struct *tty,
  158. struct usb_serial_port *port, struct file *filp);
  159. static void cypress_close(struct usb_serial_port *port);
  160. static void cypress_dtr_rts(struct usb_serial_port *port, int on);
  161. static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port,
  162. const unsigned char *buf, int count);
  163. static void cypress_send(struct usb_serial_port *port);
  164. static int cypress_write_room(struct tty_struct *tty);
  165. static int cypress_ioctl(struct tty_struct *tty, struct file *file,
  166. unsigned int cmd, unsigned long arg);
  167. static void cypress_set_termios(struct tty_struct *tty,
  168. struct usb_serial_port *port, struct ktermios *old);
  169. static int cypress_tiocmget(struct tty_struct *tty, struct file *file);
  170. static int cypress_tiocmset(struct tty_struct *tty, struct file *file,
  171. unsigned int set, unsigned int clear);
  172. static int cypress_chars_in_buffer(struct tty_struct *tty);
  173. static void cypress_throttle(struct tty_struct *tty);
  174. static void cypress_unthrottle(struct tty_struct *tty);
  175. static void cypress_set_dead(struct usb_serial_port *port);
  176. static void cypress_read_int_callback(struct urb *urb);
  177. static void cypress_write_int_callback(struct urb *urb);
  178. /* write buffer functions */
  179. static struct cypress_buf *cypress_buf_alloc(unsigned int size);
  180. static void cypress_buf_free(struct cypress_buf *cb);
  181. static void cypress_buf_clear(struct cypress_buf *cb);
  182. static unsigned int cypress_buf_data_avail(struct cypress_buf *cb);
  183. static unsigned int cypress_buf_space_avail(struct cypress_buf *cb);
  184. static unsigned int cypress_buf_put(struct cypress_buf *cb,
  185. const char *buf, unsigned int count);
  186. static unsigned int cypress_buf_get(struct cypress_buf *cb,
  187. char *buf, unsigned int count);
  188. static struct usb_serial_driver cypress_earthmate_device = {
  189. .driver = {
  190. .owner = THIS_MODULE,
  191. .name = "earthmate",
  192. },
  193. .description = "DeLorme Earthmate USB",
  194. .usb_driver = &cypress_driver,
  195. .id_table = id_table_earthmate,
  196. .num_ports = 1,
  197. .attach = cypress_earthmate_startup,
  198. .shutdown = cypress_shutdown,
  199. .open = cypress_open,
  200. .close = cypress_close,
  201. .dtr_rts = cypress_dtr_rts,
  202. .write = cypress_write,
  203. .write_room = cypress_write_room,
  204. .ioctl = cypress_ioctl,
  205. .set_termios = cypress_set_termios,
  206. .tiocmget = cypress_tiocmget,
  207. .tiocmset = cypress_tiocmset,
  208. .chars_in_buffer = cypress_chars_in_buffer,
  209. .throttle = cypress_throttle,
  210. .unthrottle = cypress_unthrottle,
  211. .read_int_callback = cypress_read_int_callback,
  212. .write_int_callback = cypress_write_int_callback,
  213. };
  214. static struct usb_serial_driver cypress_hidcom_device = {
  215. .driver = {
  216. .owner = THIS_MODULE,
  217. .name = "cyphidcom",
  218. },
  219. .description = "HID->COM RS232 Adapter",
  220. .usb_driver = &cypress_driver,
  221. .id_table = id_table_cyphidcomrs232,
  222. .num_ports = 1,
  223. .attach = cypress_hidcom_startup,
  224. .shutdown = cypress_shutdown,
  225. .open = cypress_open,
  226. .close = cypress_close,
  227. .dtr_rts = cypress_dtr_rts,
  228. .write = cypress_write,
  229. .write_room = cypress_write_room,
  230. .ioctl = cypress_ioctl,
  231. .set_termios = cypress_set_termios,
  232. .tiocmget = cypress_tiocmget,
  233. .tiocmset = cypress_tiocmset,
  234. .chars_in_buffer = cypress_chars_in_buffer,
  235. .throttle = cypress_throttle,
  236. .unthrottle = cypress_unthrottle,
  237. .read_int_callback = cypress_read_int_callback,
  238. .write_int_callback = cypress_write_int_callback,
  239. };
  240. static struct usb_serial_driver cypress_ca42v2_device = {
  241. .driver = {
  242. .owner = THIS_MODULE,
  243. .name = "nokiaca42v2",
  244. },
  245. .description = "Nokia CA-42 V2 Adapter",
  246. .usb_driver = &cypress_driver,
  247. .id_table = id_table_nokiaca42v2,
  248. .num_ports = 1,
  249. .attach = cypress_ca42v2_startup,
  250. .shutdown = cypress_shutdown,
  251. .open = cypress_open,
  252. .close = cypress_close,
  253. .dtr_rts = cypress_dtr_rts,
  254. .write = cypress_write,
  255. .write_room = cypress_write_room,
  256. .ioctl = cypress_ioctl,
  257. .set_termios = cypress_set_termios,
  258. .tiocmget = cypress_tiocmget,
  259. .tiocmset = cypress_tiocmset,
  260. .chars_in_buffer = cypress_chars_in_buffer,
  261. .throttle = cypress_throttle,
  262. .unthrottle = cypress_unthrottle,
  263. .read_int_callback = cypress_read_int_callback,
  264. .write_int_callback = cypress_write_int_callback,
  265. };
  266. /*****************************************************************************
  267. * Cypress serial helper functions
  268. *****************************************************************************/
  269. static int analyze_baud_rate(struct usb_serial_port *port, speed_t new_rate)
  270. {
  271. struct cypress_private *priv;
  272. priv = usb_get_serial_port_data(port);
  273. /*
  274. * The general purpose firmware for the Cypress M8 allows for
  275. * a maximum speed of 57600bps (I have no idea whether DeLorme
  276. * chose to use the general purpose firmware or not), if you
  277. * need to modify this speed setting for your own project
  278. * please add your own chiptype and modify the code likewise.
  279. * The Cypress HID->COM device will work successfully up to
  280. * 115200bps (but the actual throughput is around 3kBps).
  281. */
  282. if (port->serial->dev->speed == USB_SPEED_LOW) {
  283. /*
  284. * Mike Isely <isely@pobox.com> 2-Feb-2008: The
  285. * Cypress app note that describes this mechanism
  286. * states the the low-speed part can't handle more
  287. * than 800 bytes/sec, in which case 4800 baud is the
  288. * safest speed for a part like that.
  289. */
  290. if (new_rate > 4800) {
  291. dbg("%s - failed setting baud rate, device incapable "
  292. "speed %d", __func__, new_rate);
  293. return -1;
  294. }
  295. }
  296. switch (priv->chiptype) {
  297. case CT_EARTHMATE:
  298. if (new_rate <= 600) {
  299. /* 300 and 600 baud rates are supported under
  300. * the generic firmware, but are not used with
  301. * NMEA and SiRF protocols */
  302. dbg("%s - failed setting baud rate, unsupported speed "
  303. "of %d on Earthmate GPS", __func__, new_rate);
  304. return -1;
  305. }
  306. break;
  307. default:
  308. break;
  309. }
  310. return new_rate;
  311. }
  312. /* This function can either set or retrieve the current serial line settings */
  313. static int cypress_serial_control(struct tty_struct *tty,
  314. struct usb_serial_port *port, speed_t baud_rate, int data_bits,
  315. int stop_bits, int parity_enable, int parity_type, int reset,
  316. int cypress_request_type)
  317. {
  318. int new_baudrate = 0, retval = 0, tries = 0;
  319. struct cypress_private *priv;
  320. __u8 feature_buffer[5];
  321. unsigned long flags;
  322. dbg("%s", __func__);
  323. priv = usb_get_serial_port_data(port);
  324. if (!priv->comm_is_ok)
  325. return -ENODEV;
  326. switch (cypress_request_type) {
  327. case CYPRESS_SET_CONFIG:
  328. new_baudrate = priv->baud_rate;
  329. /* 0 means 'Hang up' so doesn't change the true bit rate */
  330. if (baud_rate == 0)
  331. new_baudrate = priv->baud_rate;
  332. /* Change of speed ? */
  333. else if (baud_rate != priv->baud_rate) {
  334. dbg("%s - baud rate is changing", __func__);
  335. retval = analyze_baud_rate(port, baud_rate);
  336. if (retval >= 0) {
  337. new_baudrate = retval;
  338. dbg("%s - New baud rate set to %d",
  339. __func__, new_baudrate);
  340. }
  341. }
  342. dbg("%s - baud rate is being sent as %d",
  343. __func__, new_baudrate);
  344. memset(feature_buffer, 0, sizeof(feature_buffer));
  345. /* fill the feature_buffer with new configuration */
  346. *((u_int32_t *)feature_buffer) = new_baudrate;
  347. feature_buffer[4] |= data_bits; /* assign data bits in 2 bit space ( max 3 ) */
  348. /* 1 bit gap */
  349. feature_buffer[4] |= (stop_bits << 3); /* assign stop bits in 1 bit space */
  350. feature_buffer[4] |= (parity_enable << 4); /* assign parity flag in 1 bit space */
  351. feature_buffer[4] |= (parity_type << 5); /* assign parity type in 1 bit space */
  352. /* 1 bit gap */
  353. feature_buffer[4] |= (reset << 7); /* assign reset at end of byte, 1 bit space */
  354. dbg("%s - device is being sent this feature report:",
  355. __func__);
  356. dbg("%s - %02X - %02X - %02X - %02X - %02X", __func__,
  357. feature_buffer[0], feature_buffer[1],
  358. feature_buffer[2], feature_buffer[3],
  359. feature_buffer[4]);
  360. do {
  361. retval = usb_control_msg(port->serial->dev,
  362. usb_sndctrlpipe(port->serial->dev, 0),
  363. HID_REQ_SET_REPORT,
  364. USB_DIR_OUT | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
  365. 0x0300, 0, feature_buffer,
  366. sizeof(feature_buffer), 500);
  367. if (tries++ >= 3)
  368. break;
  369. } while (retval != sizeof(feature_buffer) &&
  370. retval != -ENODEV);
  371. if (retval != sizeof(feature_buffer)) {
  372. dev_err(&port->dev, "%s - failed sending serial "
  373. "line settings - %d\n", __func__, retval);
  374. cypress_set_dead(port);
  375. } else {
  376. spin_lock_irqsave(&priv->lock, flags);
  377. priv->baud_rate = new_baudrate;
  378. priv->current_config = feature_buffer[4];
  379. spin_unlock_irqrestore(&priv->lock, flags);
  380. /* If we asked for a speed change encode it */
  381. if (baud_rate)
  382. tty_encode_baud_rate(tty,
  383. new_baudrate, new_baudrate);
  384. }
  385. break;
  386. case CYPRESS_GET_CONFIG:
  387. if (priv->get_cfg_unsafe) {
  388. /* Not implemented for this device,
  389. and if we try to do it we're likely
  390. to crash the hardware. */
  391. return -ENOTTY;
  392. }
  393. dbg("%s - retreiving serial line settings", __func__);
  394. /* set initial values in feature buffer */
  395. memset(feature_buffer, 0, sizeof(feature_buffer));
  396. do {
  397. retval = usb_control_msg(port->serial->dev,
  398. usb_rcvctrlpipe(port->serial->dev, 0),
  399. HID_REQ_GET_REPORT,
  400. USB_DIR_IN | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
  401. 0x0300, 0, feature_buffer,
  402. sizeof(feature_buffer), 500);
  403. if (tries++ >= 3)
  404. break;
  405. } while (retval != sizeof(feature_buffer)
  406. && retval != -ENODEV);
  407. if (retval != sizeof(feature_buffer)) {
  408. dev_err(&port->dev, "%s - failed to retrieve serial "
  409. "line settings - %d\n", __func__, retval);
  410. cypress_set_dead(port);
  411. return retval;
  412. } else {
  413. spin_lock_irqsave(&priv->lock, flags);
  414. /* store the config in one byte, and later
  415. use bit masks to check values */
  416. priv->current_config = feature_buffer[4];
  417. priv->baud_rate = *((u_int32_t *)feature_buffer);
  418. spin_unlock_irqrestore(&priv->lock, flags);
  419. }
  420. }
  421. spin_lock_irqsave(&priv->lock, flags);
  422. ++priv->cmd_count;
  423. spin_unlock_irqrestore(&priv->lock, flags);
  424. return retval;
  425. } /* cypress_serial_control */
  426. static void cypress_set_dead(struct usb_serial_port *port)
  427. {
  428. struct cypress_private *priv = usb_get_serial_port_data(port);
  429. unsigned long flags;
  430. spin_lock_irqsave(&priv->lock, flags);
  431. if (!priv->comm_is_ok) {
  432. spin_unlock_irqrestore(&priv->lock, flags);
  433. return;
  434. }
  435. priv->comm_is_ok = 0;
  436. spin_unlock_irqrestore(&priv->lock, flags);
  437. dev_err(&port->dev, "cypress_m8 suspending failing port %d - "
  438. "interval might be too short\n", port->number);
  439. }
  440. /*****************************************************************************
  441. * Cypress serial driver functions
  442. *****************************************************************************/
  443. static int generic_startup(struct usb_serial *serial)
  444. {
  445. struct cypress_private *priv;
  446. struct usb_serial_port *port = serial->port[0];
  447. dbg("%s - port %d", __func__, port->number);
  448. priv = kzalloc(sizeof(struct cypress_private), GFP_KERNEL);
  449. if (!priv)
  450. return -ENOMEM;
  451. priv->comm_is_ok = !0;
  452. spin_lock_init(&priv->lock);
  453. priv->buf = cypress_buf_alloc(CYPRESS_BUF_SIZE);
  454. if (priv->buf == NULL) {
  455. kfree(priv);
  456. return -ENOMEM;
  457. }
  458. init_waitqueue_head(&priv->delta_msr_wait);
  459. usb_reset_configuration(serial->dev);
  460. priv->cmd_ctrl = 0;
  461. priv->line_control = 0;
  462. priv->termios_initialized = 0;
  463. priv->rx_flags = 0;
  464. /* Default packet format setting is determined by packet size.
  465. Anything with a size larger then 9 must have a separate
  466. count field since the 3 bit count field is otherwise too
  467. small. Otherwise we can use the slightly more compact
  468. format. This is in accordance with the cypress_m8 serial
  469. converter app note. */
  470. if (port->interrupt_out_size > 9)
  471. priv->pkt_fmt = packet_format_1;
  472. else
  473. priv->pkt_fmt = packet_format_2;
  474. if (interval > 0) {
  475. priv->write_urb_interval = interval;
  476. priv->read_urb_interval = interval;
  477. dbg("%s - port %d read & write intervals forced to %d",
  478. __func__, port->number, interval);
  479. } else {
  480. priv->write_urb_interval = port->interrupt_out_urb->interval;
  481. priv->read_urb_interval = port->interrupt_in_urb->interval;
  482. dbg("%s - port %d intervals: read=%d write=%d",
  483. __func__, port->number,
  484. priv->read_urb_interval, priv->write_urb_interval);
  485. }
  486. usb_set_serial_port_data(port, priv);
  487. return 0;
  488. }
  489. static int cypress_earthmate_startup(struct usb_serial *serial)
  490. {
  491. struct cypress_private *priv;
  492. struct usb_serial_port *port = serial->port[0];
  493. dbg("%s", __func__);
  494. if (generic_startup(serial)) {
  495. dbg("%s - Failed setting up port %d", __func__,
  496. port->number);
  497. return 1;
  498. }
  499. priv = usb_get_serial_port_data(port);
  500. priv->chiptype = CT_EARTHMATE;
  501. /* All Earthmate devices use the separated-count packet
  502. format! Idiotic. */
  503. priv->pkt_fmt = packet_format_1;
  504. if (serial->dev->descriptor.idProduct !=
  505. cpu_to_le16(PRODUCT_ID_EARTHMATEUSB)) {
  506. /* The old original USB Earthmate seemed able to
  507. handle GET_CONFIG requests; everything they've
  508. produced since that time crashes if this command is
  509. attempted :-( */
  510. dbg("%s - Marking this device as unsafe for GET_CONFIG "
  511. "commands", __func__);
  512. priv->get_cfg_unsafe = !0;
  513. }
  514. return 0;
  515. } /* cypress_earthmate_startup */
  516. static int cypress_hidcom_startup(struct usb_serial *serial)
  517. {
  518. struct cypress_private *priv;
  519. dbg("%s", __func__);
  520. if (generic_startup(serial)) {
  521. dbg("%s - Failed setting up port %d", __func__,
  522. serial->port[0]->number);
  523. return 1;
  524. }
  525. priv = usb_get_serial_port_data(serial->port[0]);
  526. priv->chiptype = CT_CYPHIDCOM;
  527. return 0;
  528. } /* cypress_hidcom_startup */
  529. static int cypress_ca42v2_startup(struct usb_serial *serial)
  530. {
  531. struct cypress_private *priv;
  532. dbg("%s", __func__);
  533. if (generic_startup(serial)) {
  534. dbg("%s - Failed setting up port %d", __func__,
  535. serial->port[0]->number);
  536. return 1;
  537. }
  538. priv = usb_get_serial_port_data(serial->port[0]);
  539. priv->chiptype = CT_CA42V2;
  540. return 0;
  541. } /* cypress_ca42v2_startup */
  542. static void cypress_shutdown(struct usb_serial *serial)
  543. {
  544. struct cypress_private *priv;
  545. dbg("%s - port %d", __func__, serial->port[0]->number);
  546. /* all open ports are closed at this point */
  547. priv = usb_get_serial_port_data(serial->port[0]);
  548. if (priv) {
  549. cypress_buf_free(priv->buf);
  550. kfree(priv);
  551. usb_set_serial_port_data(serial->port[0], NULL);
  552. }
  553. }
  554. static int cypress_open(struct tty_struct *tty,
  555. struct usb_serial_port *port, struct file *filp)
  556. {
  557. struct cypress_private *priv = usb_get_serial_port_data(port);
  558. struct usb_serial *serial = port->serial;
  559. unsigned long flags;
  560. int result = 0;
  561. dbg("%s - port %d", __func__, port->number);
  562. if (!priv->comm_is_ok)
  563. return -EIO;
  564. /* clear halts before open */
  565. usb_clear_halt(serial->dev, 0x81);
  566. usb_clear_halt(serial->dev, 0x02);
  567. spin_lock_irqsave(&priv->lock, flags);
  568. /* reset read/write statistics */
  569. priv->bytes_in = 0;
  570. priv->bytes_out = 0;
  571. priv->cmd_count = 0;
  572. priv->rx_flags = 0;
  573. spin_unlock_irqrestore(&priv->lock, flags);
  574. /* Set termios */
  575. result = cypress_write(tty, port, NULL, 0);
  576. if (result) {
  577. dev_err(&port->dev,
  578. "%s - failed setting the control lines - error %d\n",
  579. __func__, result);
  580. return result;
  581. } else
  582. dbg("%s - success setting the control lines", __func__);
  583. if (tty)
  584. cypress_set_termios(tty, port, &priv->tmp_termios);
  585. /* setup the port and start reading from the device */
  586. if (!port->interrupt_in_urb) {
  587. dev_err(&port->dev, "%s - interrupt_in_urb is empty!\n",
  588. __func__);
  589. return -1;
  590. }
  591. usb_fill_int_urb(port->interrupt_in_urb, serial->dev,
  592. usb_rcvintpipe(serial->dev, port->interrupt_in_endpointAddress),
  593. port->interrupt_in_urb->transfer_buffer,
  594. port->interrupt_in_urb->transfer_buffer_length,
  595. cypress_read_int_callback, port, priv->read_urb_interval);
  596. result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
  597. if (result) {
  598. dev_err(&port->dev,
  599. "%s - failed submitting read urb, error %d\n",
  600. __func__, result);
  601. cypress_set_dead(port);
  602. }
  603. port->port.drain_delay = 256;
  604. return result;
  605. } /* cypress_open */
  606. static void cypress_dtr_rts(struct usb_serial_port *port, int on)
  607. {
  608. struct cypress_private *priv = usb_get_serial_port_data(port);
  609. /* drop dtr and rts */
  610. priv = usb_get_serial_port_data(port);
  611. spin_lock_irq(&priv->lock);
  612. if (on == 0)
  613. priv->line_control = 0;
  614. else
  615. priv->line_control = CONTROL_DTR | CONTROL_RTS;
  616. priv->cmd_ctrl = 1;
  617. spin_unlock_irq(&priv->lock);
  618. cypress_write(NULL, port, NULL, 0);
  619. }
  620. static void cypress_close(struct usb_serial_port *port)
  621. {
  622. struct cypress_private *priv = usb_get_serial_port_data(port);
  623. dbg("%s - port %d", __func__, port->number);
  624. /* writing is potentially harmful, lock must be taken */
  625. mutex_lock(&port->serial->disc_mutex);
  626. if (port->serial->disconnected) {
  627. mutex_unlock(&port->serial->disc_mutex);
  628. return;
  629. }
  630. cypress_buf_clear(priv->buf);
  631. dbg("%s - stopping urbs", __func__);
  632. usb_kill_urb(port->interrupt_in_urb);
  633. usb_kill_urb(port->interrupt_out_urb);
  634. if (stats)
  635. dev_info(&port->dev, "Statistics: %d Bytes In | %d Bytes Out | %d Commands Issued\n",
  636. priv->bytes_in, priv->bytes_out, priv->cmd_count);
  637. mutex_unlock(&port->serial->disc_mutex);
  638. } /* cypress_close */
  639. static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port,
  640. const unsigned char *buf, int count)
  641. {
  642. struct cypress_private *priv = usb_get_serial_port_data(port);
  643. unsigned long flags;
  644. dbg("%s - port %d, %d bytes", __func__, port->number, count);
  645. /* line control commands, which need to be executed immediately,
  646. are not put into the buffer for obvious reasons.
  647. */
  648. if (priv->cmd_ctrl) {
  649. count = 0;
  650. goto finish;
  651. }
  652. if (!count)
  653. return count;
  654. spin_lock_irqsave(&priv->lock, flags);
  655. count = cypress_buf_put(priv->buf, buf, count);
  656. spin_unlock_irqrestore(&priv->lock, flags);
  657. finish:
  658. cypress_send(port);
  659. return count;
  660. } /* cypress_write */
  661. static void cypress_send(struct usb_serial_port *port)
  662. {
  663. int count = 0, result, offset, actual_size;
  664. struct cypress_private *priv = usb_get_serial_port_data(port);
  665. unsigned long flags;
  666. if (!priv->comm_is_ok)
  667. return;
  668. dbg("%s - port %d", __func__, port->number);
  669. dbg("%s - interrupt out size is %d", __func__,
  670. port->interrupt_out_size);
  671. spin_lock_irqsave(&priv->lock, flags);
  672. if (priv->write_urb_in_use) {
  673. dbg("%s - can't write, urb in use", __func__);
  674. spin_unlock_irqrestore(&priv->lock, flags);
  675. return;
  676. }
  677. spin_unlock_irqrestore(&priv->lock, flags);
  678. /* clear buffer */
  679. memset(port->interrupt_out_urb->transfer_buffer, 0,
  680. port->interrupt_out_size);
  681. spin_lock_irqsave(&priv->lock, flags);
  682. switch (priv->pkt_fmt) {
  683. default:
  684. case packet_format_1:
  685. /* this is for the CY7C64013... */
  686. offset = 2;
  687. port->interrupt_out_buffer[0] = priv->line_control;
  688. break;
  689. case packet_format_2:
  690. /* this is for the CY7C63743... */
  691. offset = 1;
  692. port->interrupt_out_buffer[0] = priv->line_control;
  693. break;
  694. }
  695. if (priv->line_control & CONTROL_RESET)
  696. priv->line_control &= ~CONTROL_RESET;
  697. if (priv->cmd_ctrl) {
  698. priv->cmd_count++;
  699. dbg("%s - line control command being issued", __func__);
  700. spin_unlock_irqrestore(&priv->lock, flags);
  701. goto send;
  702. } else
  703. spin_unlock_irqrestore(&priv->lock, flags);
  704. count = cypress_buf_get(priv->buf, &port->interrupt_out_buffer[offset],
  705. port->interrupt_out_size-offset);
  706. if (count == 0)
  707. return;
  708. switch (priv->pkt_fmt) {
  709. default:
  710. case packet_format_1:
  711. port->interrupt_out_buffer[1] = count;
  712. break;
  713. case packet_format_2:
  714. port->interrupt_out_buffer[0] |= count;
  715. }
  716. dbg("%s - count is %d", __func__, count);
  717. send:
  718. spin_lock_irqsave(&priv->lock, flags);
  719. priv->write_urb_in_use = 1;
  720. spin_unlock_irqrestore(&priv->lock, flags);
  721. if (priv->cmd_ctrl)
  722. actual_size = 1;
  723. else
  724. actual_size = count +
  725. (priv->pkt_fmt == packet_format_1 ? 2 : 1);
  726. usb_serial_debug_data(debug, &port->dev, __func__,
  727. port->interrupt_out_size,
  728. port->interrupt_out_urb->transfer_buffer);
  729. usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev,
  730. usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
  731. port->interrupt_out_buffer, port->interrupt_out_size,
  732. cypress_write_int_callback, port, priv->write_urb_interval);
  733. result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
  734. if (result) {
  735. dev_err(&port->dev,
  736. "%s - failed submitting write urb, error %d\n",
  737. __func__, result);
  738. priv->write_urb_in_use = 0;
  739. cypress_set_dead(port);
  740. }
  741. spin_lock_irqsave(&priv->lock, flags);
  742. if (priv->cmd_ctrl)
  743. priv->cmd_ctrl = 0;
  744. /* do not count the line control and size bytes */
  745. priv->bytes_out += count;
  746. spin_unlock_irqrestore(&priv->lock, flags);
  747. usb_serial_port_softint(port);
  748. } /* cypress_send */
  749. /* returns how much space is available in the soft buffer */
  750. static int cypress_write_room(struct tty_struct *tty)
  751. {
  752. struct usb_serial_port *port = tty->driver_data;
  753. struct cypress_private *priv = usb_get_serial_port_data(port);
  754. int room = 0;
  755. unsigned long flags;
  756. dbg("%s - port %d", __func__, port->number);
  757. spin_lock_irqsave(&priv->lock, flags);
  758. room = cypress_buf_space_avail(priv->buf);
  759. spin_unlock_irqrestore(&priv->lock, flags);
  760. dbg("%s - returns %d", __func__, room);
  761. return room;
  762. }
  763. static int cypress_tiocmget(struct tty_struct *tty, struct file *file)
  764. {
  765. struct usb_serial_port *port = tty->driver_data;
  766. struct cypress_private *priv = usb_get_serial_port_data(port);
  767. __u8 status, control;
  768. unsigned int result = 0;
  769. unsigned long flags;
  770. dbg("%s - port %d", __func__, port->number);
  771. spin_lock_irqsave(&priv->lock, flags);
  772. control = priv->line_control;
  773. status = priv->current_status;
  774. spin_unlock_irqrestore(&priv->lock, flags);
  775. result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
  776. | ((control & CONTROL_RTS) ? TIOCM_RTS : 0)
  777. | ((status & UART_CTS) ? TIOCM_CTS : 0)
  778. | ((status & UART_DSR) ? TIOCM_DSR : 0)
  779. | ((status & UART_RI) ? TIOCM_RI : 0)
  780. | ((status & UART_CD) ? TIOCM_CD : 0);
  781. dbg("%s - result = %x", __func__, result);
  782. return result;
  783. }
  784. static int cypress_tiocmset(struct tty_struct *tty, struct file *file,
  785. unsigned int set, unsigned int clear)
  786. {
  787. struct usb_serial_port *port = tty->driver_data;
  788. struct cypress_private *priv = usb_get_serial_port_data(port);
  789. unsigned long flags;
  790. dbg("%s - port %d", __func__, port->number);
  791. spin_lock_irqsave(&priv->lock, flags);
  792. if (set & TIOCM_RTS)
  793. priv->line_control |= CONTROL_RTS;
  794. if (set & TIOCM_DTR)
  795. priv->line_control |= CONTROL_DTR;
  796. if (clear & TIOCM_RTS)
  797. priv->line_control &= ~CONTROL_RTS;
  798. if (clear & TIOCM_DTR)
  799. priv->line_control &= ~CONTROL_DTR;
  800. priv->cmd_ctrl = 1;
  801. spin_unlock_irqrestore(&priv->lock, flags);
  802. return cypress_write(tty, port, NULL, 0);
  803. }
  804. static int cypress_ioctl(struct tty_struct *tty, struct file *file,
  805. unsigned int cmd, unsigned long arg)
  806. {
  807. struct usb_serial_port *port = tty->driver_data;
  808. struct cypress_private *priv = usb_get_serial_port_data(port);
  809. dbg("%s - port %d, cmd 0x%.4x", __func__, port->number, cmd);
  810. switch (cmd) {
  811. /* This code comes from drivers/char/serial.c and ftdi_sio.c */
  812. case TIOCMIWAIT:
  813. while (priv != NULL) {
  814. interruptible_sleep_on(&priv->delta_msr_wait);
  815. /* see if a signal did it */
  816. if (signal_pending(current))
  817. return -ERESTARTSYS;
  818. else {
  819. char diff = priv->diff_status;
  820. if (diff == 0)
  821. return -EIO; /* no change => error */
  822. /* consume all events */
  823. priv->diff_status = 0;
  824. /* return 0 if caller wanted to know about
  825. these bits */
  826. if (((arg & TIOCM_RNG) && (diff & UART_RI)) ||
  827. ((arg & TIOCM_DSR) && (diff & UART_DSR)) ||
  828. ((arg & TIOCM_CD) && (diff & UART_CD)) ||
  829. ((arg & TIOCM_CTS) && (diff & UART_CTS)))
  830. return 0;
  831. /* otherwise caller can't care less about what
  832. * happened, and so we continue to wait for
  833. * more events.
  834. */
  835. }
  836. }
  837. return 0;
  838. default:
  839. break;
  840. }
  841. dbg("%s - arg not supported - it was 0x%04x - check include/asm/ioctls.h", __func__, cmd);
  842. return -ENOIOCTLCMD;
  843. } /* cypress_ioctl */
  844. static void cypress_set_termios(struct tty_struct *tty,
  845. struct usb_serial_port *port, struct ktermios *old_termios)
  846. {
  847. struct cypress_private *priv = usb_get_serial_port_data(port);
  848. int data_bits, stop_bits, parity_type, parity_enable;
  849. unsigned cflag, iflag;
  850. unsigned long flags;
  851. __u8 oldlines;
  852. int linechange = 0;
  853. dbg("%s - port %d", __func__, port->number);
  854. spin_lock_irqsave(&priv->lock, flags);
  855. if (!priv->termios_initialized) {
  856. if (priv->chiptype == CT_EARTHMATE) {
  857. *(tty->termios) = tty_std_termios;
  858. tty->termios->c_cflag = B4800 | CS8 | CREAD | HUPCL |
  859. CLOCAL;
  860. tty->termios->c_ispeed = 4800;
  861. tty->termios->c_ospeed = 4800;
  862. } else if (priv->chiptype == CT_CYPHIDCOM) {
  863. *(tty->termios) = tty_std_termios;
  864. tty->termios->c_cflag = B9600 | CS8 | CREAD | HUPCL |
  865. CLOCAL;
  866. tty->termios->c_ispeed = 9600;
  867. tty->termios->c_ospeed = 9600;
  868. } else if (priv->chiptype == CT_CA42V2) {
  869. *(tty->termios) = tty_std_termios;
  870. tty->termios->c_cflag = B9600 | CS8 | CREAD | HUPCL |
  871. CLOCAL;
  872. tty->termios->c_ispeed = 9600;
  873. tty->termios->c_ospeed = 9600;
  874. }
  875. priv->termios_initialized = 1;
  876. }
  877. spin_unlock_irqrestore(&priv->lock, flags);
  878. /* Unsupported features need clearing */
  879. tty->termios->c_cflag &= ~(CMSPAR|CRTSCTS);
  880. cflag = tty->termios->c_cflag;
  881. iflag = tty->termios->c_iflag;
  882. /* check if there are new settings */
  883. if (old_termios) {
  884. spin_lock_irqsave(&priv->lock, flags);
  885. priv->tmp_termios = *(tty->termios);
  886. spin_unlock_irqrestore(&priv->lock, flags);
  887. }
  888. /* set number of data bits, parity, stop bits */
  889. /* when parity is disabled the parity type bit is ignored */
  890. /* 1 means 2 stop bits, 0 means 1 stop bit */
  891. stop_bits = cflag & CSTOPB ? 1 : 0;
  892. if (cflag & PARENB) {
  893. parity_enable = 1;
  894. /* 1 means odd parity, 0 means even parity */
  895. parity_type = cflag & PARODD ? 1 : 0;
  896. } else
  897. parity_enable = parity_type = 0;
  898. switch (cflag & CSIZE) {
  899. case CS5:
  900. data_bits = 0;
  901. break;
  902. case CS6:
  903. data_bits = 1;
  904. break;
  905. case CS7:
  906. data_bits = 2;
  907. break;
  908. case CS8:
  909. data_bits = 3;
  910. break;
  911. default:
  912. dev_err(&port->dev, "%s - CSIZE was set, but not CS5-CS8\n",
  913. __func__);
  914. data_bits = 3;
  915. }
  916. spin_lock_irqsave(&priv->lock, flags);
  917. oldlines = priv->line_control;
  918. if ((cflag & CBAUD) == B0) {
  919. /* drop dtr and rts */
  920. dbg("%s - dropping the lines, baud rate 0bps", __func__);
  921. priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS);
  922. } else
  923. priv->line_control = (CONTROL_DTR | CONTROL_RTS);
  924. spin_unlock_irqrestore(&priv->lock, flags);
  925. dbg("%s - sending %d stop_bits, %d parity_enable, %d parity_type, "
  926. "%d data_bits (+5)", __func__, stop_bits,
  927. parity_enable, parity_type, data_bits);
  928. cypress_serial_control(tty, port, tty_get_baud_rate(tty),
  929. data_bits, stop_bits,
  930. parity_enable, parity_type,
  931. 0, CYPRESS_SET_CONFIG);
  932. /* we perform a CYPRESS_GET_CONFIG so that the current settings are
  933. * filled into the private structure this should confirm that all is
  934. * working if it returns what we just set */
  935. cypress_serial_control(tty, port, 0, 0, 0, 0, 0, 0, CYPRESS_GET_CONFIG);
  936. /* Here we can define custom tty settings for devices; the main tty
  937. * termios flag base comes from empeg.c */
  938. spin_lock_irqsave(&priv->lock, flags);
  939. if (priv->chiptype == CT_EARTHMATE && priv->baud_rate == 4800) {
  940. dbg("Using custom termios settings for a baud rate of "
  941. "4800bps.");
  942. /* define custom termios settings for NMEA protocol */
  943. tty->termios->c_iflag /* input modes - */
  944. &= ~(IGNBRK /* disable ignore break */
  945. | BRKINT /* disable break causes interrupt */
  946. | PARMRK /* disable mark parity errors */
  947. | ISTRIP /* disable clear high bit of input char */
  948. | INLCR /* disable translate NL to CR */
  949. | IGNCR /* disable ignore CR */
  950. | ICRNL /* disable translate CR to NL */
  951. | IXON); /* disable enable XON/XOFF flow control */
  952. tty->termios->c_oflag /* output modes */
  953. &= ~OPOST; /* disable postprocess output char */
  954. tty->termios->c_lflag /* line discipline modes */
  955. &= ~(ECHO /* disable echo input characters */
  956. | ECHONL /* disable echo new line */
  957. | ICANON /* disable erase, kill, werase, and rprnt
  958. special characters */
  959. | ISIG /* disable interrupt, quit, and suspend
  960. special characters */
  961. | IEXTEN); /* disable non-POSIX special characters */
  962. } /* CT_CYPHIDCOM: Application should handle this for device */
  963. linechange = (priv->line_control != oldlines);
  964. spin_unlock_irqrestore(&priv->lock, flags);
  965. /* if necessary, set lines */
  966. if (linechange) {
  967. priv->cmd_ctrl = 1;
  968. cypress_write(tty, port, NULL, 0);
  969. }
  970. } /* cypress_set_termios */
  971. /* returns amount of data still left in soft buffer */
  972. static int cypress_chars_in_buffer(struct tty_struct *tty)
  973. {
  974. struct usb_serial_port *port = tty->driver_data;
  975. struct cypress_private *priv = usb_get_serial_port_data(port);
  976. int chars = 0;
  977. unsigned long flags;
  978. dbg("%s - port %d", __func__, port->number);
  979. spin_lock_irqsave(&priv->lock, flags);
  980. chars = cypress_buf_data_avail(priv->buf);
  981. spin_unlock_irqrestore(&priv->lock, flags);
  982. dbg("%s - returns %d", __func__, chars);
  983. return chars;
  984. }
  985. static void cypress_throttle(struct tty_struct *tty)
  986. {
  987. struct usb_serial_port *port = tty->driver_data;
  988. struct cypress_private *priv = usb_get_serial_port_data(port);
  989. unsigned long flags;
  990. dbg("%s - port %d", __func__, port->number);
  991. spin_lock_irqsave(&priv->lock, flags);
  992. priv->rx_flags = THROTTLED;
  993. spin_unlock_irqrestore(&priv->lock, flags);
  994. }
  995. static void cypress_unthrottle(struct tty_struct *tty)
  996. {
  997. struct usb_serial_port *port = tty->driver_data;
  998. struct cypress_private *priv = usb_get_serial_port_data(port);
  999. int actually_throttled, result;
  1000. unsigned long flags;
  1001. dbg("%s - port %d", __func__, port->number);
  1002. spin_lock_irqsave(&priv->lock, flags);
  1003. actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
  1004. priv->rx_flags = 0;
  1005. spin_unlock_irqrestore(&priv->lock, flags);
  1006. if (!priv->comm_is_ok)
  1007. return;
  1008. if (actually_throttled) {
  1009. port->interrupt_in_urb->dev = port->serial->dev;
  1010. result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
  1011. if (result) {
  1012. dev_err(&port->dev, "%s - failed submitting read urb, "
  1013. "error %d\n", __func__, result);
  1014. cypress_set_dead(port);
  1015. }
  1016. }
  1017. }
  1018. static void cypress_read_int_callback(struct urb *urb)
  1019. {
  1020. struct usb_serial_port *port = urb->context;
  1021. struct cypress_private *priv = usb_get_serial_port_data(port);
  1022. struct tty_struct *tty;
  1023. unsigned char *data = urb->transfer_buffer;
  1024. unsigned long flags;
  1025. char tty_flag = TTY_NORMAL;
  1026. int havedata = 0;
  1027. int bytes = 0;
  1028. int result;
  1029. int i = 0;
  1030. int status = urb->status;
  1031. dbg("%s - port %d", __func__, port->number);
  1032. switch (status) {
  1033. case 0: /* success */
  1034. break;
  1035. case -ECONNRESET:
  1036. case -ENOENT:
  1037. case -ESHUTDOWN:
  1038. /* precursor to disconnect so just go away */
  1039. return;
  1040. case -EPIPE:
  1041. usb_clear_halt(port->serial->dev, 0x81);
  1042. break;
  1043. default:
  1044. /* something ugly is going on... */
  1045. dev_err(&urb->dev->dev,
  1046. "%s - unexpected nonzero read status received: %d\n",
  1047. __func__, status);
  1048. cypress_set_dead(port);
  1049. return;
  1050. }
  1051. spin_lock_irqsave(&priv->lock, flags);
  1052. if (priv->rx_flags & THROTTLED) {
  1053. dbg("%s - now throttling", __func__);
  1054. priv->rx_flags |= ACTUALLY_THROTTLED;
  1055. spin_unlock_irqrestore(&priv->lock, flags);
  1056. return;
  1057. }
  1058. spin_unlock_irqrestore(&priv->lock, flags);
  1059. tty = tty_port_tty_get(&port->port);
  1060. if (!tty) {
  1061. dbg("%s - bad tty pointer - exiting", __func__);
  1062. return;
  1063. }
  1064. spin_lock_irqsave(&priv->lock, flags);
  1065. result = urb->actual_length;
  1066. switch (priv->pkt_fmt) {
  1067. default:
  1068. case packet_format_1:
  1069. /* This is for the CY7C64013... */
  1070. priv->current_status = data[0] & 0xF8;
  1071. bytes = data[1] + 2;
  1072. i = 2;
  1073. if (bytes > 2)
  1074. havedata = 1;
  1075. break;
  1076. case packet_format_2:
  1077. /* This is for the CY7C63743... */
  1078. priv->current_status = data[0] & 0xF8;
  1079. bytes = (data[0] & 0x07) + 1;
  1080. i = 1;
  1081. if (bytes > 1)
  1082. havedata = 1;
  1083. break;
  1084. }
  1085. spin_unlock_irqrestore(&priv->lock, flags);
  1086. if (result < bytes) {
  1087. dbg("%s - wrong packet size - received %d bytes but packet "
  1088. "said %d bytes", __func__, result, bytes);
  1089. goto continue_read;
  1090. }
  1091. usb_serial_debug_data(debug, &port->dev, __func__,
  1092. urb->actual_length, data);
  1093. spin_lock_irqsave(&priv->lock, flags);
  1094. /* check to see if status has changed */
  1095. if (priv->current_status != priv->prev_status) {
  1096. priv->diff_status |= priv->current_status ^
  1097. priv->prev_status;
  1098. wake_up_interruptible(&priv->delta_msr_wait);
  1099. priv->prev_status = priv->current_status;
  1100. }
  1101. spin_unlock_irqrestore(&priv->lock, flags);
  1102. /* hangup, as defined in acm.c... this might be a bad place for it
  1103. * though */
  1104. if (tty && !(tty->termios->c_cflag & CLOCAL) &&
  1105. !(priv->current_status & UART_CD)) {
  1106. dbg("%s - calling hangup", __func__);
  1107. tty_hangup(tty);
  1108. goto continue_read;
  1109. }
  1110. /* There is one error bit... I'm assuming it is a parity error
  1111. * indicator as the generic firmware will set this bit to 1 if a
  1112. * parity error occurs.
  1113. * I can not find reference to any other error events. */
  1114. spin_lock_irqsave(&priv->lock, flags);
  1115. if (priv->current_status & CYP_ERROR) {
  1116. spin_unlock_irqrestore(&priv->lock, flags);
  1117. tty_flag = TTY_PARITY;
  1118. dbg("%s - Parity Error detected", __func__);
  1119. } else
  1120. spin_unlock_irqrestore(&priv->lock, flags);
  1121. /* process read if there is data other than line status */
  1122. if (tty && (bytes > i)) {
  1123. bytes = tty_buffer_request_room(tty, bytes);
  1124. for (; i < bytes ; ++i) {
  1125. dbg("pushing byte number %d - %d - %c", i, data[i],
  1126. data[i]);
  1127. tty_insert_flip_char(tty, data[i], tty_flag);
  1128. }
  1129. tty_flip_buffer_push(tty);
  1130. }
  1131. spin_lock_irqsave(&priv->lock, flags);
  1132. /* control and status byte(s) are also counted */
  1133. priv->bytes_in += bytes;
  1134. spin_unlock_irqrestore(&priv->lock, flags);
  1135. continue_read:
  1136. tty_kref_put(tty);
  1137. /* Continue trying to always read... unless the port has closed. */
  1138. if (port->port.count > 0 && priv->comm_is_ok) {
  1139. usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
  1140. usb_rcvintpipe(port->serial->dev,
  1141. port->interrupt_in_endpointAddress),
  1142. port->interrupt_in_urb->transfer_buffer,
  1143. port->interrupt_in_urb->transfer_buffer_length,
  1144. cypress_read_int_callback, port,
  1145. priv->read_urb_interval);
  1146. result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
  1147. if (result) {
  1148. dev_err(&urb->dev->dev, "%s - failed resubmitting "
  1149. "read urb, error %d\n", __func__,
  1150. result);
  1151. cypress_set_dead(port);
  1152. }
  1153. }
  1154. return;
  1155. } /* cypress_read_int_callback */
  1156. static void cypress_write_int_callback(struct urb *urb)
  1157. {
  1158. struct usb_serial_port *port = urb->context;
  1159. struct cypress_private *priv = usb_get_serial_port_data(port);
  1160. int result;
  1161. int status = urb->status;
  1162. dbg("%s - port %d", __func__, port->number);
  1163. switch (status) {
  1164. case 0:
  1165. /* success */
  1166. break;
  1167. case -ECONNRESET:
  1168. case -ENOENT:
  1169. case -ESHUTDOWN:
  1170. /* this urb is terminated, clean up */
  1171. dbg("%s - urb shutting down with status: %d",
  1172. __func__, status);
  1173. priv->write_urb_in_use = 0;
  1174. return;
  1175. case -EPIPE: /* no break needed; clear halt and resubmit */
  1176. if (!priv->comm_is_ok)
  1177. break;
  1178. usb_clear_halt(port->serial->dev, 0x02);
  1179. /* error in the urb, so we have to resubmit it */
  1180. dbg("%s - nonzero write bulk status received: %d",
  1181. __func__, status);
  1182. port->interrupt_out_urb->transfer_buffer_length = 1;
  1183. port->interrupt_out_urb->dev = port->serial->dev;
  1184. result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
  1185. if (!result)
  1186. return;
  1187. dev_err(&urb->dev->dev,
  1188. "%s - failed resubmitting write urb, error %d\n",
  1189. __func__, result);
  1190. cypress_set_dead(port);
  1191. break;
  1192. default:
  1193. dev_err(&urb->dev->dev,
  1194. "%s - unexpected nonzero write status received: %d\n",
  1195. __func__, status);
  1196. cypress_set_dead(port);
  1197. break;
  1198. }
  1199. priv->write_urb_in_use = 0;
  1200. /* send any buffered data */
  1201. cypress_send(port);
  1202. }
  1203. /*****************************************************************************
  1204. * Write buffer functions - buffering code from pl2303 used
  1205. *****************************************************************************/
  1206. /*
  1207. * cypress_buf_alloc
  1208. *
  1209. * Allocate a circular buffer and all associated memory.
  1210. */
  1211. static struct cypress_buf *cypress_buf_alloc(unsigned int size)
  1212. {
  1213. struct cypress_buf *cb;
  1214. if (size == 0)
  1215. return NULL;
  1216. cb = kmalloc(sizeof(struct cypress_buf), GFP_KERNEL);
  1217. if (cb == NULL)
  1218. return NULL;
  1219. cb->buf_buf = kmalloc(size, GFP_KERNEL);
  1220. if (cb->buf_buf == NULL) {
  1221. kfree(cb);
  1222. return NULL;
  1223. }
  1224. cb->buf_size = size;
  1225. cb->buf_get = cb->buf_put = cb->buf_buf;
  1226. return cb;
  1227. }
  1228. /*
  1229. * cypress_buf_free
  1230. *
  1231. * Free the buffer and all associated memory.
  1232. */
  1233. static void cypress_buf_free(struct cypress_buf *cb)
  1234. {
  1235. if (cb) {
  1236. kfree(cb->buf_buf);
  1237. kfree(cb);
  1238. }
  1239. }
  1240. /*
  1241. * cypress_buf_clear
  1242. *
  1243. * Clear out all data in the circular buffer.
  1244. */
  1245. static void cypress_buf_clear(struct cypress_buf *cb)
  1246. {
  1247. if (cb != NULL)
  1248. cb->buf_get = cb->buf_put;
  1249. /* equivalent to a get of all data available */
  1250. }
  1251. /*
  1252. * cypress_buf_data_avail
  1253. *
  1254. * Return the number of bytes of data available in the circular
  1255. * buffer.
  1256. */
  1257. static unsigned int cypress_buf_data_avail(struct cypress_buf *cb)
  1258. {
  1259. if (cb != NULL)
  1260. return (cb->buf_size + cb->buf_put - cb->buf_get)
  1261. % cb->buf_size;
  1262. else
  1263. return 0;
  1264. }
  1265. /*
  1266. * cypress_buf_space_avail
  1267. *
  1268. * Return the number of bytes of space available in the circular
  1269. * buffer.
  1270. */
  1271. static unsigned int cypress_buf_space_avail(struct cypress_buf *cb)
  1272. {
  1273. if (cb != NULL)
  1274. return (cb->buf_size + cb->buf_get - cb->buf_put - 1)
  1275. % cb->buf_size;
  1276. else
  1277. return 0;
  1278. }
  1279. /*
  1280. * cypress_buf_put
  1281. *
  1282. * Copy data data from a user buffer and put it into the circular buffer.
  1283. * Restrict to the amount of space available.
  1284. *
  1285. * Return the number of bytes copied.
  1286. */
  1287. static unsigned int cypress_buf_put(struct cypress_buf *cb, const char *buf,
  1288. unsigned int count)
  1289. {
  1290. unsigned int len;
  1291. if (cb == NULL)
  1292. return 0;
  1293. len = cypress_buf_space_avail(cb);
  1294. if (count > len)
  1295. count = len;
  1296. if (count == 0)
  1297. return 0;
  1298. len = cb->buf_buf + cb->buf_size - cb->buf_put;
  1299. if (count > len) {
  1300. memcpy(cb->buf_put, buf, len);
  1301. memcpy(cb->buf_buf, buf+len, count - len);
  1302. cb->buf_put = cb->buf_buf + count - len;
  1303. } else {
  1304. memcpy(cb->buf_put, buf, count);
  1305. if (count < len)
  1306. cb->buf_put += count;
  1307. else /* count == len */
  1308. cb->buf_put = cb->buf_buf;
  1309. }
  1310. return count;
  1311. }
  1312. /*
  1313. * cypress_buf_get
  1314. *
  1315. * Get data from the circular buffer and copy to the given buffer.
  1316. * Restrict to the amount of data available.
  1317. *
  1318. * Return the number of bytes copied.
  1319. */
  1320. static unsigned int cypress_buf_get(struct cypress_buf *cb, char *buf,
  1321. unsigned int count)
  1322. {
  1323. unsigned int len;
  1324. if (cb == NULL)
  1325. return 0;
  1326. len = cypress_buf_data_avail(cb);
  1327. if (count > len)
  1328. count = len;
  1329. if (count == 0)
  1330. return 0;
  1331. len = cb->buf_buf + cb->buf_size - cb->buf_get;
  1332. if (count > len) {
  1333. memcpy(buf, cb->buf_get, len);
  1334. memcpy(buf+len, cb->buf_buf, count - len);
  1335. cb->buf_get = cb->buf_buf + count - len;
  1336. } else {
  1337. memcpy(buf, cb->buf_get, count);
  1338. if (count < len)
  1339. cb->buf_get += count;
  1340. else /* count == len */
  1341. cb->buf_get = cb->buf_buf;
  1342. }
  1343. return count;
  1344. }
  1345. /*****************************************************************************
  1346. * Module functions
  1347. *****************************************************************************/
  1348. static int __init cypress_init(void)
  1349. {
  1350. int retval;
  1351. dbg("%s", __func__);
  1352. retval = usb_serial_register(&cypress_earthmate_device);
  1353. if (retval)
  1354. goto failed_em_register;
  1355. retval = usb_serial_register(&cypress_hidcom_device);
  1356. if (retval)
  1357. goto failed_hidcom_register;
  1358. retval = usb_serial_register(&cypress_ca42v2_device);
  1359. if (retval)
  1360. goto failed_ca42v2_register;
  1361. retval = usb_register(&cypress_driver);
  1362. if (retval)
  1363. goto failed_usb_register;
  1364. printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
  1365. DRIVER_DESC "\n");
  1366. return 0;
  1367. failed_usb_register:
  1368. usb_serial_deregister(&cypress_ca42v2_device);
  1369. failed_ca42v2_register:
  1370. usb_serial_deregister(&cypress_hidcom_device);
  1371. failed_hidcom_register:
  1372. usb_serial_deregister(&cypress_earthmate_device);
  1373. failed_em_register:
  1374. return retval;
  1375. }
  1376. static void __exit cypress_exit(void)
  1377. {
  1378. dbg("%s", __func__);
  1379. usb_deregister(&cypress_driver);
  1380. usb_serial_deregister(&cypress_earthmate_device);
  1381. usb_serial_deregister(&cypress_hidcom_device);
  1382. usb_serial_deregister(&cypress_ca42v2_device);
  1383. }
  1384. module_init(cypress_init);
  1385. module_exit(cypress_exit);
  1386. MODULE_AUTHOR(DRIVER_AUTHOR);
  1387. MODULE_DESCRIPTION(DRIVER_DESC);
  1388. MODULE_VERSION(DRIVER_VERSION);
  1389. MODULE_LICENSE("GPL");
  1390. module_param(debug, bool, S_IRUGO | S_IWUSR);
  1391. MODULE_PARM_DESC(debug, "Debug enabled or not");
  1392. module_param(stats, bool, S_IRUGO | S_IWUSR);
  1393. MODULE_PARM_DESC(stats, "Enable statistics or not");
  1394. module_param(interval, int, S_IRUGO | S_IWUSR);
  1395. MODULE_PARM_DESC(interval, "Overrides interrupt interval");