ftdi_sio.c 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226
  1. /*
  2. * USB FTDI SIO driver
  3. *
  4. * Copyright (C) 1999 - 2001
  5. * Greg Kroah-Hartman (greg@kroah.com)
  6. * Bill Ryder (bryder@sgi.com)
  7. * Copyright (C) 2002
  8. * Kuba Ober (kuba@mareimbrium.org)
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * See Documentation/usb/usb-serial.txt for more information on using this driver
  16. *
  17. * See http://ftdi-usb-sio.sourceforge.net for upto date testing info
  18. * and extra documentation
  19. *
  20. * (21/Jul/2004) Ian Abbott
  21. * Incorporated Steven Turner's code to add support for the FT2232C chip.
  22. * The prelimilary port to the 2.6 kernel was by Rus V. Brushkoff. I have
  23. * fixed a couple of things.
  24. *
  25. * (27/May/2004) Ian Abbott
  26. * Improved throttling code, mostly stolen from the WhiteHEAT driver.
  27. *
  28. * (26/Mar/2004) Jan Capek
  29. * Added PID's for ICD-U20/ICD-U40 - incircuit PIC debuggers from CCS Inc.
  30. *
  31. * (09/Feb/2004) Ian Abbott
  32. * Changed full name of USB-UIRT device to avoid "/" character.
  33. * Added FTDI's alternate PID (0x6006) for FT232/245 devices.
  34. * Added PID for "ELV USB Module UO100" from Stefan Frings.
  35. *
  36. * (21/Oct/2003) Ian Abbott
  37. * Renamed some VID/PID macros for Matrix Orbital and Perle Systems
  38. * devices. Removed Matrix Orbital and Perle Systems devices from the
  39. * 8U232AM device table, but left them in the FT232BM table, as they are
  40. * known to use only FT232BM.
  41. *
  42. * (17/Oct/2003) Scott Allen
  43. * Added vid/pid for Perle Systems UltraPort USB serial converters
  44. *
  45. * (21/Sep/2003) Ian Abbott
  46. * Added VID/PID for Omnidirectional Control Technology US101 USB to
  47. * RS-232 adapter (also rebadged as Dick Smith Electronics XH6381).
  48. * VID/PID supplied by Donald Gordon.
  49. *
  50. * (19/Aug/2003) Ian Abbott
  51. * Freed urb's transfer buffer in write bulk callback.
  52. * Omitted some paranoid checks in write bulk callback that don't matter.
  53. * Scheduled work in write bulk callback regardless of port's open count.
  54. *
  55. * (05/Aug/2003) Ian Abbott
  56. * Added VID/PID for ID TECH IDT1221U USB to RS-232 adapter.
  57. * VID/PID provided by Steve Briggs.
  58. *
  59. * (23/Jul/2003) Ian Abbott
  60. * Added PIDs for CrystalFontz 547, 633, 631, 635, 640 and 640 from
  61. * Wayne Wylupski.
  62. *
  63. * (10/Jul/2003) David Glance
  64. * Added PID for DSS-20 SyncStation cradle for Sony-Ericsson P800.
  65. *
  66. * (27/Jun/2003) Ian Abbott
  67. * Reworked the urb handling logic. We have no more pool, but dynamically
  68. * allocate the urb and the transfer buffer on the fly. In testing this
  69. * does not incure any measurable overhead. This also relies on the fact
  70. * that we have proper reference counting logic for urbs. I nicked this
  71. * from Greg KH's Visor driver.
  72. *
  73. * (23/Jun/2003) Ian Abbott
  74. * Reduced flip buffer pushes and corrected a data length test in
  75. * ftdi_read_bulk_callback.
  76. * Defererence pointers after any paranoid checks, not before.
  77. *
  78. * (21/Jun/2003) Erik Nygren
  79. * Added support for Home Electronics Tira-1 IR transceiver using FT232BM chip.
  80. * See <http://www.home-electro.com/tira1.htm>. Only operates properly
  81. * at 100000 and RTS-CTS, so set custom divisor mode on startup.
  82. * Also force the Tira-1 and USB-UIRT to only use their custom baud rates.
  83. *
  84. * (18/Jun/2003) Ian Abbott
  85. * Added Device ID of the USB relais from Rudolf Gugler (backported from
  86. * Philipp Gühring's patch for 2.5.x kernel).
  87. * Moved read transfer buffer reallocation into startup function.
  88. * Free existing write urb and transfer buffer in startup function.
  89. * Only use urbs in write urb pool that were successfully allocated.
  90. * Moved some constant macros out of functions.
  91. * Minor whitespace and comment changes.
  92. *
  93. * (12/Jun/2003) David Norwood
  94. * Added support for USB-UIRT IR transceiver using 8U232AM chip.
  95. * See <http://home.earthlink.net/~jrhees/USBUIRT/index.htm>. Only
  96. * operates properly at 312500, so set custom divisor mode on startup.
  97. *
  98. * (12/Jun/2003) Ian Abbott
  99. * Added Sealevel SeaLINK+ 210x, 220x, 240x, 280x vid/pids from Tuan Hoang
  100. * - I've eliminated some that don't seem to exist!
  101. * Added Home Electronics Tira-1 IR transceiver pid from Chris Horn
  102. * Some whitespace/coding-style cleanups
  103. *
  104. * (11/Jun/2003) Ian Abbott
  105. * Fixed unsafe spinlock usage in ftdi_write
  106. *
  107. * (24/Feb/2003) Richard Shooter
  108. * Increase read buffer size to improve read speeds at higher baud rates
  109. * (specifically tested with up to 1Mb/sec at 1.5M baud)
  110. *
  111. * (23/Feb/2003) John Wilkins
  112. * Added Xon/xoff flow control (activating support in the ftdi device)
  113. * Added vid/pid for Videonetworks/Homechoice (UK ISP)
  114. *
  115. * (23/Feb/2003) Bill Ryder
  116. * Added matrix orb device vid/pids from Wayne Wylupski
  117. *
  118. * (19/Feb/2003) Ian Abbott
  119. * For TIOCSSERIAL, set alt_speed to 0 when ASYNC_SPD_MASK value has
  120. * changed to something other than ASYNC_SPD_HI, ASYNC_SPD_VHI,
  121. * ASYNC_SPD_SHI or ASYNC_SPD_WARP. Also, unless ASYNC_SPD_CUST is in
  122. * force, don't bother changing baud rate when custom_divisor has changed.
  123. *
  124. * (18/Feb/2003) Ian Abbott
  125. * Fixed TIOCMGET handling to include state of DTR and RTS, the state
  126. * of which are now saved by set_dtr() and set_rts().
  127. * Fixed improper storage class for buf in set_dtr() and set_rts().
  128. * Added FT232BM chip type and support for its extra baud rates (compared
  129. * to FT8U232AM).
  130. * Took account of special case divisor values for highest baud rates of
  131. * FT8U232AM and FT232BM.
  132. * For TIOCSSERIAL, forced alt_speed to 0 when ASYNC_SPD_CUST kludge used,
  133. * as previous alt_speed setting is now stale.
  134. * Moved startup code common between the startup routines for the
  135. * different chip types into a common subroutine.
  136. *
  137. * (17/Feb/2003) Bill Ryder
  138. * Added write urb buffer pool on a per device basis
  139. * Added more checking for open file on callbacks (fixed OOPS)
  140. * Added CrystalFontz 632 and 634 PIDs
  141. * (thanx to CrystalFontz for the sample devices - they flushed out
  142. * some driver bugs)
  143. * Minor debugging message changes
  144. * Added throttle, unthrottle and chars_in_buffer functions
  145. * Fixed FTDI_SIO (the original device) bug
  146. * Fixed some shutdown handling
  147. *
  148. *
  149. *
  150. *
  151. * (07/Jun/2002) Kuba Ober
  152. * Changed FTDI_SIO_BASE_BAUD_TO_DIVISOR macro into ftdi_baud_to_divisor
  153. * function. It was getting too complex.
  154. * Fix the divisor calculation logic which was setting divisor of 0.125
  155. * instead of 0.5 for fractional parts of divisor equal to 5/8, 6/8, 7/8.
  156. * Also make it bump up the divisor to next integer in case of 7/8 - it's
  157. * a better approximation.
  158. *
  159. * (25/Jul/2002) Bill Ryder inserted Dmitri's TIOCMIWAIT patch
  160. * Not tested by me but it doesn't break anything I use.
  161. *
  162. * (04/Jan/2002) Kuba Ober
  163. * Implemented 38400 baudrate kludge, where it can be substituted with other
  164. * values. That's the only way to set custom baudrates.
  165. * Implemented TIOCSSERIAL, TIOCGSERIAL ioctl's so that setserial is happy.
  166. * FIXME: both baudrate things should eventually go to usbserial.c as other
  167. * devices may need that functionality too. Actually, it can probably be
  168. * merged in serial.c somehow - too many drivers repeat this code over
  169. * and over.
  170. * Fixed baudrate forgetfulness - open() used to reset baudrate to 9600 every time.
  171. * Divisors for baudrates are calculated by a macro.
  172. * Small code cleanups. Ugly whitespace changes for Plato's sake only ;-].
  173. *
  174. * (04/Nov/2001) Bill Ryder
  175. * Fixed bug in read_bulk_callback where incorrect urb buffer was used.
  176. * Cleaned up write offset calculation
  177. * Added write_room since default values can be incorrect for sio
  178. * Changed write_bulk_callback to use same queue_task as other drivers
  179. * (the previous version caused panics)
  180. * Removed port iteration code since the device only has one I/O port and it
  181. * was wrong anyway.
  182. *
  183. * (31/May/2001) gkh
  184. * Switched from using spinlock to a semaphore, which fixes lots of problems.
  185. *
  186. * (23/May/2001) Bill Ryder
  187. * Added runtime debug patch (thanx Tyson D Sawyer).
  188. * Cleaned up comments for 8U232
  189. * Added parity, framing and overrun error handling
  190. * Added receive break handling.
  191. *
  192. * (04/08/2001) gb
  193. * Identify version on module load.
  194. *
  195. * (18/March/2001) Bill Ryder
  196. * (Not released)
  197. * Added send break handling. (requires kernel patch too)
  198. * Fixed 8U232AM hardware RTS/CTS etc status reporting.
  199. * Added flipbuf fix copied from generic device
  200. *
  201. * (12/3/2000) Bill Ryder
  202. * Added support for 8U232AM device.
  203. * Moved PID and VIDs into header file only.
  204. * Turned on low-latency for the tty (device will do high baudrates)
  205. * Added shutdown routine to close files when device removed.
  206. * More debug and error message cleanups.
  207. *
  208. * (11/13/2000) Bill Ryder
  209. * Added spinlock protected open code and close code.
  210. * Multiple opens work (sort of - see webpage mentioned above).
  211. * Cleaned up comments. Removed multiple PID/VID definitions.
  212. * Factorised cts/dtr code
  213. * Made use of __FUNCTION__ in dbg's
  214. *
  215. * (11/01/2000) Adam J. Richter
  216. * usb_device_id table support
  217. *
  218. * (10/05/2000) gkh
  219. * Fixed bug with urb->dev not being set properly, now that the usb
  220. * core needs it.
  221. *
  222. * (09/11/2000) gkh
  223. * Removed DEBUG #ifdefs with call to usb_serial_debug_data
  224. *
  225. * (07/19/2000) gkh
  226. * Added module_init and module_exit functions to handle the fact that this
  227. * driver is a loadable module now.
  228. *
  229. * (04/04/2000) Bill Ryder
  230. * Fixed bugs in TCGET/TCSET ioctls (by removing them - they are
  231. * handled elsewhere in the tty io driver chain).
  232. *
  233. * (03/30/2000) Bill Ryder
  234. * Implemented lots of ioctls
  235. * Fixed a race condition in write
  236. * Changed some dbg's to errs
  237. *
  238. * (03/26/2000) gkh
  239. * Split driver up into device specific pieces.
  240. *
  241. */
  242. /* Bill Ryder - bryder@sgi.com - wrote the FTDI_SIO implementation */
  243. /* Thanx to FTDI for so kindly providing details of the protocol required */
  244. /* to talk to the device */
  245. /* Thanx to gkh and the rest of the usb dev group for all code I have assimilated :-) */
  246. #include <linux/kernel.h>
  247. #include <linux/errno.h>
  248. #include <linux/init.h>
  249. #include <linux/slab.h>
  250. #include <linux/tty.h>
  251. #include <linux/tty_driver.h>
  252. #include <linux/tty_flip.h>
  253. #include <linux/module.h>
  254. #include <linux/spinlock.h>
  255. #include <asm/uaccess.h>
  256. #include <linux/usb.h>
  257. #include <linux/serial.h>
  258. #include <linux/usb/serial.h>
  259. #include "ftdi_sio.h"
  260. /*
  261. * Version Information
  262. */
  263. #define DRIVER_VERSION "v1.4.3"
  264. #define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Bill Ryder <bryder@sgi.com>, Kuba Ober <kuba@mareimbrium.org>"
  265. #define DRIVER_DESC "USB FTDI Serial Converters Driver"
  266. static int debug;
  267. static __u16 vendor = FTDI_VID;
  268. static __u16 product;
  269. /* struct ftdi_sio_quirk is used by devices requiring special attention. */
  270. struct ftdi_sio_quirk {
  271. void (*setup)(struct usb_serial *); /* Special settings during startup. */
  272. };
  273. static void ftdi_USB_UIRT_setup (struct usb_serial *serial);
  274. static void ftdi_HE_TIRA1_setup (struct usb_serial *serial);
  275. static struct ftdi_sio_quirk ftdi_USB_UIRT_quirk = {
  276. .setup = ftdi_USB_UIRT_setup,
  277. };
  278. static struct ftdi_sio_quirk ftdi_HE_TIRA1_quirk = {
  279. .setup = ftdi_HE_TIRA1_setup,
  280. };
  281. /*
  282. * The 8U232AM has the same API as the sio except for:
  283. * - it can support MUCH higher baudrates; up to:
  284. * o 921600 for RS232 and 2000000 for RS422/485 at 48MHz
  285. * o 230400 at 12MHz
  286. * so .. 8U232AM's baudrate setting codes are different
  287. * - it has a two byte status code.
  288. * - it returns characters every 16ms (the FTDI does it every 40ms)
  289. *
  290. * the bcdDevice value is used to differentiate FT232BM and FT245BM from
  291. * the earlier FT8U232AM and FT8U232BM. For now, include all known VID/PID
  292. * combinations in both tables.
  293. * FIXME: perhaps bcdDevice can also identify 12MHz FT8U232AM devices,
  294. * but I don't know if those ever went into mass production. [Ian Abbott]
  295. */
  296. static struct usb_device_id id_table_combined [] = {
  297. { USB_DEVICE(FTDI_VID, FTDI_AMC232_PID) },
  298. { USB_DEVICE(FTDI_VID, FTDI_CANUSB_PID) },
  299. { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) },
  300. { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) },
  301. { USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) },
  302. { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) },
  303. { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) },
  304. { USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) },
  305. { USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) },
  306. { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) },
  307. { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) },
  308. { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) },
  309. { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) },
  310. { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) },
  311. { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) },
  312. { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
  313. { USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) },
  314. { USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) },
  315. { USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) },
  316. { USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) },
  317. { USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) },
  318. { USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) },
  319. { USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) },
  320. { USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) },
  321. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) },
  322. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) },
  323. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) },
  324. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) },
  325. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) },
  326. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) },
  327. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) },
  328. { USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) },
  329. { USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) },
  330. { USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) },
  331. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) },
  332. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) },
  333. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) },
  334. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) },
  335. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) },
  336. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) },
  337. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) },
  338. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) },
  339. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) },
  340. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) },
  341. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) },
  342. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) },
  343. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) },
  344. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) },
  345. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) },
  346. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) },
  347. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) },
  348. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) },
  349. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) },
  350. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) },
  351. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) },
  352. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) },
  353. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) },
  354. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) },
  355. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) },
  356. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) },
  357. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) },
  358. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) },
  359. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) },
  360. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) },
  361. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) },
  362. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) },
  363. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) },
  364. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) },
  365. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) },
  366. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) },
  367. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) },
  368. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) },
  369. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) },
  370. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) },
  371. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) },
  372. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) },
  373. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) },
  374. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) },
  375. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) },
  376. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) },
  377. { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) },
  378. { USB_DEVICE(OCT_VID, OCT_US101_PID) },
  379. { USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID),
  380. .driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk },
  381. { USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID),
  382. .driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk },
  383. { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) },
  384. { USB_DEVICE(FTDI_VID, PROTEGO_R2X0) },
  385. { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) },
  386. { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) },
  387. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) },
  388. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) },
  389. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) },
  390. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) },
  391. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) },
  392. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) },
  393. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) },
  394. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) },
  395. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) },
  396. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) },
  397. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) },
  398. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) },
  399. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) },
  400. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) },
  401. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) },
  402. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) },
  403. { USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) },
  404. { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) },
  405. { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) },
  406. { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) },
  407. { USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) },
  408. { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) },
  409. /*
  410. * These will probably use user-space drivers. Uncomment them if
  411. * you need them or use the user-specified vendor/product module
  412. * parameters (see ftdi_sio.h for the numbers). Make a fuss if
  413. * you think the driver should recognize any of them by default.
  414. */
  415. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) }, */
  416. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) }, */
  417. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) }, */
  418. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) }, */
  419. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) }, */
  420. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) }, */
  421. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) }, */
  422. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) }, */
  423. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) }, */
  424. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) }, */
  425. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) }, */
  426. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) }, */
  427. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) }, */
  428. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) }, */
  429. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) }, */
  430. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) }, */
  431. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) }, */
  432. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) }, */
  433. /* { USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) }, */
  434. { USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) },
  435. { USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) },
  436. { USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) },
  437. { USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) },
  438. { USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) },
  439. { USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) },
  440. { USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) },
  441. { USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) },
  442. { USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) },
  443. { USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) },
  444. { USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) },
  445. { USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) },
  446. { USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) },
  447. { USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) },
  448. { USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
  449. { USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
  450. { USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },
  451. { USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) },
  452. { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_0_PID) },
  453. { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) },
  454. { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) },
  455. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) },
  456. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) },
  457. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) },
  458. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) },
  459. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) },
  460. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) },
  461. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) },
  462. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) },
  463. { USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) },
  464. { USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) },
  465. { USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) },
  466. { USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) },
  467. { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) },
  468. { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) },
  469. { USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) },
  470. { USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) },
  471. { USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) },
  472. { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) },
  473. { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) },
  474. { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) },
  475. { USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
  476. { USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
  477. { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
  478. { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) },
  479. { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) },
  480. { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) },
  481. { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) },
  482. { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) },
  483. { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) },
  484. { USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) },
  485. { USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) },
  486. { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) },
  487. { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) },
  488. { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) },
  489. { USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) },
  490. { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) },
  491. { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) },
  492. { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) },
  493. { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) },
  494. { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) },
  495. { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) },
  496. { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) },
  497. { }, /* Optional parameter entry */
  498. { } /* Terminating entry */
  499. };
  500. MODULE_DEVICE_TABLE (usb, id_table_combined);
  501. static struct usb_driver ftdi_driver = {
  502. .name = "ftdi_sio",
  503. .probe = usb_serial_probe,
  504. .disconnect = usb_serial_disconnect,
  505. .id_table = id_table_combined,
  506. .no_dynamic_id = 1,
  507. };
  508. static const char *ftdi_chip_name[] = {
  509. [SIO] = "SIO", /* the serial part of FT8U100AX */
  510. [FT8U232AM] = "FT8U232AM",
  511. [FT232BM] = "FT232BM",
  512. [FT2232C] = "FT2232C",
  513. };
  514. /* Constants for read urb and write urb */
  515. #define BUFSZ 512
  516. #define PKTSZ 64
  517. /* rx_flags */
  518. #define THROTTLED 0x01
  519. #define ACTUALLY_THROTTLED 0x02
  520. struct ftdi_private {
  521. ftdi_chip_type_t chip_type;
  522. /* type of the device, either SIO or FT8U232AM */
  523. int baud_base; /* baud base clock for divisor setting */
  524. int custom_divisor; /* custom_divisor kludge, this is for baud_base (different from what goes to the chip!) */
  525. __u16 last_set_data_urb_value ;
  526. /* the last data state set - needed for doing a break */
  527. int write_offset; /* This is the offset in the usb data block to write the serial data -
  528. * it is different between devices
  529. */
  530. int flags; /* some ASYNC_xxxx flags are supported */
  531. unsigned long last_dtr_rts; /* saved modem control outputs */
  532. wait_queue_head_t delta_msr_wait; /* Used for TIOCMIWAIT */
  533. char prev_status, diff_status; /* Used for TIOCMIWAIT */
  534. __u8 rx_flags; /* receive state flags (throttling) */
  535. spinlock_t rx_lock; /* spinlock for receive state */
  536. struct work_struct rx_work;
  537. int rx_processed;
  538. unsigned long rx_bytes;
  539. __u16 interface; /* FT2232C port interface (0 for FT232/245) */
  540. int force_baud; /* if non-zero, force the baud rate to this value */
  541. int force_rtscts; /* if non-zero, force RTS-CTS to always be enabled */
  542. spinlock_t tx_lock; /* spinlock for transmit state */
  543. unsigned long tx_bytes;
  544. unsigned long tx_outstanding_bytes;
  545. unsigned long tx_outstanding_urbs;
  546. };
  547. /* Used for TIOCMIWAIT */
  548. #define FTDI_STATUS_B0_MASK (FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD)
  549. #define FTDI_STATUS_B1_MASK (FTDI_RS_BI)
  550. /* End TIOCMIWAIT */
  551. #define FTDI_IMPL_ASYNC_FLAGS = ( ASYNC_SPD_HI | ASYNC_SPD_VHI \
  552. ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP )
  553. /* function prototypes for a FTDI serial converter */
  554. static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id);
  555. static int ftdi_sio_attach (struct usb_serial *serial);
  556. static void ftdi_shutdown (struct usb_serial *serial);
  557. static int ftdi_open (struct usb_serial_port *port, struct file *filp);
  558. static void ftdi_close (struct usb_serial_port *port, struct file *filp);
  559. static int ftdi_write (struct usb_serial_port *port, const unsigned char *buf, int count);
  560. static int ftdi_write_room (struct usb_serial_port *port);
  561. static int ftdi_chars_in_buffer (struct usb_serial_port *port);
  562. static void ftdi_write_bulk_callback (struct urb *urb, struct pt_regs *regs);
  563. static void ftdi_read_bulk_callback (struct urb *urb, struct pt_regs *regs);
  564. static void ftdi_process_read (void *param);
  565. static void ftdi_set_termios (struct usb_serial_port *port, struct termios * old);
  566. static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file);
  567. static int ftdi_tiocmset (struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear);
  568. static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg);
  569. static void ftdi_break_ctl (struct usb_serial_port *port, int break_state );
  570. static void ftdi_throttle (struct usb_serial_port *port);
  571. static void ftdi_unthrottle (struct usb_serial_port *port);
  572. static unsigned short int ftdi_232am_baud_base_to_divisor (int baud, int base);
  573. static unsigned short int ftdi_232am_baud_to_divisor (int baud);
  574. static __u32 ftdi_232bm_baud_base_to_divisor (int baud, int base);
  575. static __u32 ftdi_232bm_baud_to_divisor (int baud);
  576. static struct usb_serial_driver ftdi_sio_device = {
  577. .driver = {
  578. .owner = THIS_MODULE,
  579. .name = "ftdi_sio",
  580. },
  581. .description = "FTDI USB Serial Device",
  582. .id_table = id_table_combined,
  583. .num_interrupt_in = 0,
  584. .num_bulk_in = 1,
  585. .num_bulk_out = 1,
  586. .num_ports = 1,
  587. .probe = ftdi_sio_probe,
  588. .open = ftdi_open,
  589. .close = ftdi_close,
  590. .throttle = ftdi_throttle,
  591. .unthrottle = ftdi_unthrottle,
  592. .write = ftdi_write,
  593. .write_room = ftdi_write_room,
  594. .chars_in_buffer = ftdi_chars_in_buffer,
  595. .read_bulk_callback = ftdi_read_bulk_callback,
  596. .write_bulk_callback = ftdi_write_bulk_callback,
  597. .tiocmget = ftdi_tiocmget,
  598. .tiocmset = ftdi_tiocmset,
  599. .ioctl = ftdi_ioctl,
  600. .set_termios = ftdi_set_termios,
  601. .break_ctl = ftdi_break_ctl,
  602. .attach = ftdi_sio_attach,
  603. .shutdown = ftdi_shutdown,
  604. };
  605. #define WDR_TIMEOUT 5000 /* default urb timeout */
  606. #define WDR_SHORT_TIMEOUT 1000 /* shorter urb timeout */
  607. /* High and low are for DTR, RTS etc etc */
  608. #define HIGH 1
  609. #define LOW 0
  610. /* number of outstanding urbs to prevent userspace DoS from happening */
  611. #define URB_UPPER_LIMIT 42
  612. /*
  613. * ***************************************************************************
  614. * Utlity functions
  615. * ***************************************************************************
  616. */
  617. static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base)
  618. {
  619. unsigned short int divisor;
  620. int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left
  621. if ((divisor3 & 0x7) == 7) divisor3 ++; // round x.7/8 up to x+1
  622. divisor = divisor3 >> 3;
  623. divisor3 &= 0x7;
  624. if (divisor3 == 1) divisor |= 0xc000; else // 0.125
  625. if (divisor3 >= 4) divisor |= 0x4000; else // 0.5
  626. if (divisor3 != 0) divisor |= 0x8000; // 0.25
  627. if (divisor == 1) divisor = 0; /* special case for maximum baud rate */
  628. return divisor;
  629. }
  630. static unsigned short int ftdi_232am_baud_to_divisor(int baud)
  631. {
  632. return(ftdi_232am_baud_base_to_divisor(baud, 48000000));
  633. }
  634. static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base)
  635. {
  636. static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
  637. __u32 divisor;
  638. int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left
  639. divisor = divisor3 >> 3;
  640. divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
  641. /* Deal with special cases for highest baud rates. */
  642. if (divisor == 1) divisor = 0; else // 1.0
  643. if (divisor == 0x4001) divisor = 1; // 1.5
  644. return divisor;
  645. }
  646. static __u32 ftdi_232bm_baud_to_divisor(int baud)
  647. {
  648. return(ftdi_232bm_baud_base_to_divisor(baud, 48000000));
  649. }
  650. #define set_mctrl(port, set) update_mctrl((port), (set), 0)
  651. #define clear_mctrl(port, clear) update_mctrl((port), 0, (clear))
  652. static int update_mctrl(struct usb_serial_port *port, unsigned int set, unsigned int clear)
  653. {
  654. struct ftdi_private *priv = usb_get_serial_port_data(port);
  655. char *buf;
  656. unsigned urb_value;
  657. int rv;
  658. if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
  659. dbg("%s - DTR|RTS not being set|cleared", __FUNCTION__);
  660. return 0; /* no change */
  661. }
  662. buf = kmalloc(1, GFP_NOIO);
  663. if (!buf) {
  664. return -ENOMEM;
  665. }
  666. clear &= ~set; /* 'set' takes precedence over 'clear' */
  667. urb_value = 0;
  668. if (clear & TIOCM_DTR)
  669. urb_value |= FTDI_SIO_SET_DTR_LOW;
  670. if (clear & TIOCM_RTS)
  671. urb_value |= FTDI_SIO_SET_RTS_LOW;
  672. if (set & TIOCM_DTR)
  673. urb_value |= FTDI_SIO_SET_DTR_HIGH;
  674. if (set & TIOCM_RTS)
  675. urb_value |= FTDI_SIO_SET_RTS_HIGH;
  676. rv = usb_control_msg(port->serial->dev,
  677. usb_sndctrlpipe(port->serial->dev, 0),
  678. FTDI_SIO_SET_MODEM_CTRL_REQUEST,
  679. FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE,
  680. urb_value, priv->interface,
  681. buf, 0, WDR_TIMEOUT);
  682. kfree(buf);
  683. if (rv < 0) {
  684. err("%s Error from MODEM_CTRL urb: DTR %s, RTS %s",
  685. __FUNCTION__,
  686. (set & TIOCM_DTR) ? "HIGH" :
  687. (clear & TIOCM_DTR) ? "LOW" : "unchanged",
  688. (set & TIOCM_RTS) ? "HIGH" :
  689. (clear & TIOCM_RTS) ? "LOW" : "unchanged");
  690. } else {
  691. dbg("%s - DTR %s, RTS %s", __FUNCTION__,
  692. (set & TIOCM_DTR) ? "HIGH" :
  693. (clear & TIOCM_DTR) ? "LOW" : "unchanged",
  694. (set & TIOCM_RTS) ? "HIGH" :
  695. (clear & TIOCM_RTS) ? "LOW" : "unchanged");
  696. priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set;
  697. }
  698. return rv;
  699. }
  700. static __u32 get_ftdi_divisor(struct usb_serial_port * port);
  701. static int change_speed(struct usb_serial_port *port)
  702. {
  703. struct ftdi_private *priv = usb_get_serial_port_data(port);
  704. char *buf;
  705. __u16 urb_value;
  706. __u16 urb_index;
  707. __u32 urb_index_value;
  708. int rv;
  709. buf = kmalloc(1, GFP_NOIO);
  710. if (!buf)
  711. return -ENOMEM;
  712. urb_index_value = get_ftdi_divisor(port);
  713. urb_value = (__u16)urb_index_value;
  714. urb_index = (__u16)(urb_index_value >> 16);
  715. if (priv->interface) { /* FT2232C */
  716. urb_index = (__u16)((urb_index << 8) | priv->interface);
  717. }
  718. rv = usb_control_msg(port->serial->dev,
  719. usb_sndctrlpipe(port->serial->dev, 0),
  720. FTDI_SIO_SET_BAUDRATE_REQUEST,
  721. FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE,
  722. urb_value, urb_index,
  723. buf, 0, WDR_SHORT_TIMEOUT);
  724. kfree(buf);
  725. return rv;
  726. }
  727. static __u32 get_ftdi_divisor(struct usb_serial_port * port)
  728. { /* get_ftdi_divisor */
  729. struct ftdi_private *priv = usb_get_serial_port_data(port);
  730. __u32 div_value = 0;
  731. int div_okay = 1;
  732. int baud;
  733. /*
  734. * The logic involved in setting the baudrate can be cleanly split in 3 steps.
  735. * Obtaining the actual baud rate is a little tricky since unix traditionally
  736. * somehow ignored the possibility to set non-standard baud rates.
  737. * 1. Standard baud rates are set in tty->termios->c_cflag
  738. * 2. If these are not enough, you can set any speed using alt_speed as follows:
  739. * - set tty->termios->c_cflag speed to B38400
  740. * - set your real speed in tty->alt_speed; it gets ignored when
  741. * alt_speed==0, (or)
  742. * - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows:
  743. * flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP], this just
  744. * sets alt_speed to (HI: 57600, VHI: 115200, SHI: 230400, WARP: 460800)
  745. * ** Steps 1, 2 are done courtesy of tty_get_baud_rate
  746. * 3. You can also set baud rate by setting custom divisor as follows
  747. * - set tty->termios->c_cflag speed to B38400
  748. * - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows:
  749. * o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST
  750. * o custom_divisor set to baud_base / your_new_baudrate
  751. * ** Step 3 is done courtesy of code borrowed from serial.c - I should really
  752. * spend some time and separate+move this common code to serial.c, it is
  753. * replicated in nearly every serial driver you see.
  754. */
  755. /* 1. Get the baud rate from the tty settings, this observes alt_speed hack */
  756. baud = tty_get_baud_rate(port->tty);
  757. dbg("%s - tty_get_baud_rate reports speed %d", __FUNCTION__, baud);
  758. /* 2. Observe async-compatible custom_divisor hack, update baudrate if needed */
  759. if (baud == 38400 &&
  760. ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
  761. (priv->custom_divisor)) {
  762. baud = priv->baud_base / priv->custom_divisor;
  763. dbg("%s - custom divisor %d sets baud rate to %d", __FUNCTION__, priv->custom_divisor, baud);
  764. }
  765. /* 3. Convert baudrate to device-specific divisor */
  766. if (!baud) baud = 9600;
  767. switch(priv->chip_type) {
  768. case SIO: /* SIO chip */
  769. switch(baud) {
  770. case 300: div_value = ftdi_sio_b300; break;
  771. case 600: div_value = ftdi_sio_b600; break;
  772. case 1200: div_value = ftdi_sio_b1200; break;
  773. case 2400: div_value = ftdi_sio_b2400; break;
  774. case 4800: div_value = ftdi_sio_b4800; break;
  775. case 9600: div_value = ftdi_sio_b9600; break;
  776. case 19200: div_value = ftdi_sio_b19200; break;
  777. case 38400: div_value = ftdi_sio_b38400; break;
  778. case 57600: div_value = ftdi_sio_b57600; break;
  779. case 115200: div_value = ftdi_sio_b115200; break;
  780. } /* baud */
  781. if (div_value == 0) {
  782. dbg("%s - Baudrate (%d) requested is not supported", __FUNCTION__, baud);
  783. div_value = ftdi_sio_b9600;
  784. div_okay = 0;
  785. }
  786. break;
  787. case FT8U232AM: /* 8U232AM chip */
  788. if (baud <= 3000000) {
  789. div_value = ftdi_232am_baud_to_divisor(baud);
  790. } else {
  791. dbg("%s - Baud rate too high!", __FUNCTION__);
  792. div_value = ftdi_232am_baud_to_divisor(9600);
  793. div_okay = 0;
  794. }
  795. break;
  796. case FT232BM: /* FT232BM chip */
  797. case FT2232C: /* FT2232C chip */
  798. if (baud <= 3000000) {
  799. div_value = ftdi_232bm_baud_to_divisor(baud);
  800. } else {
  801. dbg("%s - Baud rate too high!", __FUNCTION__);
  802. div_value = ftdi_232bm_baud_to_divisor(9600);
  803. div_okay = 0;
  804. }
  805. break;
  806. } /* priv->chip_type */
  807. if (div_okay) {
  808. dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s",
  809. __FUNCTION__, baud, (unsigned long)div_value,
  810. ftdi_chip_name[priv->chip_type]);
  811. }
  812. return(div_value);
  813. }
  814. static int get_serial_info(struct usb_serial_port * port, struct serial_struct __user * retinfo)
  815. {
  816. struct ftdi_private *priv = usb_get_serial_port_data(port);
  817. struct serial_struct tmp;
  818. if (!retinfo)
  819. return -EFAULT;
  820. memset(&tmp, 0, sizeof(tmp));
  821. tmp.flags = priv->flags;
  822. tmp.baud_base = priv->baud_base;
  823. tmp.custom_divisor = priv->custom_divisor;
  824. if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
  825. return -EFAULT;
  826. return 0;
  827. } /* get_serial_info */
  828. static int set_serial_info(struct usb_serial_port * port, struct serial_struct __user * newinfo)
  829. { /* set_serial_info */
  830. struct ftdi_private *priv = usb_get_serial_port_data(port);
  831. struct serial_struct new_serial;
  832. struct ftdi_private old_priv;
  833. if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
  834. return -EFAULT;
  835. old_priv = * priv;
  836. /* Do error checking and permission checking */
  837. if (!capable(CAP_SYS_ADMIN)) {
  838. if (((new_serial.flags & ~ASYNC_USR_MASK) !=
  839. (priv->flags & ~ASYNC_USR_MASK)))
  840. return -EPERM;
  841. priv->flags = ((priv->flags & ~ASYNC_USR_MASK) |
  842. (new_serial.flags & ASYNC_USR_MASK));
  843. priv->custom_divisor = new_serial.custom_divisor;
  844. goto check_and_exit;
  845. }
  846. if ((new_serial.baud_base != priv->baud_base) &&
  847. (new_serial.baud_base < 9600))
  848. return -EINVAL;
  849. /* Make the changes - these are privileged changes! */
  850. priv->flags = ((priv->flags & ~ASYNC_FLAGS) |
  851. (new_serial.flags & ASYNC_FLAGS));
  852. priv->custom_divisor = new_serial.custom_divisor;
  853. port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
  854. check_and_exit:
  855. if ((old_priv.flags & ASYNC_SPD_MASK) !=
  856. (priv->flags & ASYNC_SPD_MASK)) {
  857. if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
  858. port->tty->alt_speed = 57600;
  859. else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
  860. port->tty->alt_speed = 115200;
  861. else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
  862. port->tty->alt_speed = 230400;
  863. else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
  864. port->tty->alt_speed = 460800;
  865. else
  866. port->tty->alt_speed = 0;
  867. }
  868. if (((old_priv.flags & ASYNC_SPD_MASK) !=
  869. (priv->flags & ASYNC_SPD_MASK)) ||
  870. (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
  871. (old_priv.custom_divisor != priv->custom_divisor))) {
  872. change_speed(port);
  873. }
  874. return (0);
  875. } /* set_serial_info */
  876. /* Determine type of FTDI chip based on USB config and descriptor. */
  877. static void ftdi_determine_type(struct usb_serial_port *port)
  878. {
  879. struct ftdi_private *priv = usb_get_serial_port_data(port);
  880. struct usb_serial *serial = port->serial;
  881. struct usb_device *udev = serial->dev;
  882. unsigned version;
  883. unsigned interfaces;
  884. /* Assume it is not the original SIO device for now. */
  885. priv->baud_base = 48000000 / 2;
  886. priv->write_offset = 0;
  887. version = le16_to_cpu(udev->descriptor.bcdDevice);
  888. interfaces = udev->actconfig->desc.bNumInterfaces;
  889. dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __FUNCTION__,
  890. version, interfaces);
  891. if (interfaces > 1) {
  892. int inter;
  893. /* Multiple interfaces. Assume FT2232C. */
  894. priv->chip_type = FT2232C;
  895. /* Determine interface code. */
  896. inter = serial->interface->altsetting->desc.bInterfaceNumber;
  897. if (inter == 0) {
  898. priv->interface = PIT_SIOA;
  899. } else {
  900. priv->interface = PIT_SIOB;
  901. }
  902. /* BM-type devices have a bug where bcdDevice gets set
  903. * to 0x200 when iSerialNumber is 0. */
  904. if (version < 0x500) {
  905. dbg("%s: something fishy - bcdDevice too low for multi-interface device",
  906. __FUNCTION__);
  907. }
  908. } else if (version < 0x200) {
  909. /* Old device. Assume its the original SIO. */
  910. priv->chip_type = SIO;
  911. priv->baud_base = 12000000 / 16;
  912. priv->write_offset = 1;
  913. } else if (version < 0x400) {
  914. /* Assume its an FT8U232AM (or FT8U245AM) */
  915. /* (It might be a BM because of the iSerialNumber bug,
  916. * but it will still work as an AM device.) */
  917. priv->chip_type = FT8U232AM;
  918. } else {
  919. /* Assume its an FT232BM (or FT245BM) */
  920. priv->chip_type = FT232BM;
  921. }
  922. info("Detected %s", ftdi_chip_name[priv->chip_type]);
  923. }
  924. /*
  925. * ***************************************************************************
  926. * Sysfs Attribute
  927. * ***************************************************************************
  928. */
  929. static ssize_t show_latency_timer(struct device *dev, struct device_attribute *attr, char *buf)
  930. {
  931. struct usb_serial_port *port = to_usb_serial_port(dev);
  932. struct ftdi_private *priv = usb_get_serial_port_data(port);
  933. struct usb_device *udev;
  934. unsigned short latency = 0;
  935. int rv = 0;
  936. udev = to_usb_device(dev);
  937. dbg("%s",__FUNCTION__);
  938. rv = usb_control_msg(udev,
  939. usb_rcvctrlpipe(udev, 0),
  940. FTDI_SIO_GET_LATENCY_TIMER_REQUEST,
  941. FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE,
  942. 0, priv->interface,
  943. (char*) &latency, 1, WDR_TIMEOUT);
  944. if (rv < 0) {
  945. dev_err(dev, "Unable to read latency timer: %i", rv);
  946. return -EIO;
  947. }
  948. return sprintf(buf, "%i\n", latency);
  949. }
  950. /* Write a new value of the latency timer, in units of milliseconds. */
  951. static ssize_t store_latency_timer(struct device *dev, struct device_attribute *attr, const char *valbuf,
  952. size_t count)
  953. {
  954. struct usb_serial_port *port = to_usb_serial_port(dev);
  955. struct ftdi_private *priv = usb_get_serial_port_data(port);
  956. struct usb_device *udev;
  957. char buf[1];
  958. int v = simple_strtoul(valbuf, NULL, 10);
  959. int rv = 0;
  960. udev = to_usb_device(dev);
  961. dbg("%s: setting latency timer = %i", __FUNCTION__, v);
  962. rv = usb_control_msg(udev,
  963. usb_sndctrlpipe(udev, 0),
  964. FTDI_SIO_SET_LATENCY_TIMER_REQUEST,
  965. FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE,
  966. v, priv->interface,
  967. buf, 0, WDR_TIMEOUT);
  968. if (rv < 0) {
  969. dev_err(dev, "Unable to write latency timer: %i", rv);
  970. return -EIO;
  971. }
  972. return count;
  973. }
  974. /* Write an event character directly to the FTDI register. The ASCII
  975. value is in the low 8 bits, with the enable bit in the 9th bit. */
  976. static ssize_t store_event_char(struct device *dev, struct device_attribute *attr, const char *valbuf,
  977. size_t count)
  978. {
  979. struct usb_serial_port *port = to_usb_serial_port(dev);
  980. struct ftdi_private *priv = usb_get_serial_port_data(port);
  981. struct usb_device *udev;
  982. char buf[1];
  983. int v = simple_strtoul(valbuf, NULL, 10);
  984. int rv = 0;
  985. udev = to_usb_device(dev);
  986. dbg("%s: setting event char = %i", __FUNCTION__, v);
  987. rv = usb_control_msg(udev,
  988. usb_sndctrlpipe(udev, 0),
  989. FTDI_SIO_SET_EVENT_CHAR_REQUEST,
  990. FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE,
  991. v, priv->interface,
  992. buf, 0, WDR_TIMEOUT);
  993. if (rv < 0) {
  994. dbg("Unable to write event character: %i", rv);
  995. return -EIO;
  996. }
  997. return count;
  998. }
  999. static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer, store_latency_timer);
  1000. static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char);
  1001. static void create_sysfs_attrs(struct usb_serial *serial)
  1002. {
  1003. struct ftdi_private *priv;
  1004. struct usb_device *udev;
  1005. dbg("%s",__FUNCTION__);
  1006. priv = usb_get_serial_port_data(serial->port[0]);
  1007. udev = serial->dev;
  1008. /* XXX I've no idea if the original SIO supports the event_char
  1009. * sysfs parameter, so I'm playing it safe. */
  1010. if (priv->chip_type != SIO) {
  1011. dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]);
  1012. device_create_file(&udev->dev, &dev_attr_event_char);
  1013. if (priv->chip_type == FT232BM || priv->chip_type == FT2232C) {
  1014. device_create_file(&udev->dev, &dev_attr_latency_timer);
  1015. }
  1016. }
  1017. }
  1018. static void remove_sysfs_attrs(struct usb_serial *serial)
  1019. {
  1020. struct ftdi_private *priv;
  1021. struct usb_device *udev;
  1022. dbg("%s",__FUNCTION__);
  1023. priv = usb_get_serial_port_data(serial->port[0]);
  1024. udev = serial->dev;
  1025. /* XXX see create_sysfs_attrs */
  1026. if (priv->chip_type != SIO) {
  1027. device_remove_file(&udev->dev, &dev_attr_event_char);
  1028. if (priv->chip_type == FT232BM || priv->chip_type == FT2232C) {
  1029. device_remove_file(&udev->dev, &dev_attr_latency_timer);
  1030. }
  1031. }
  1032. }
  1033. /*
  1034. * ***************************************************************************
  1035. * FTDI driver specific functions
  1036. * ***************************************************************************
  1037. */
  1038. /* Probe function to check for special devices */
  1039. static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id)
  1040. {
  1041. usb_set_serial_data(serial, (void *)id->driver_info);
  1042. return (0);
  1043. }
  1044. /* attach subroutine */
  1045. static int ftdi_sio_attach (struct usb_serial *serial)
  1046. {
  1047. struct usb_serial_port *port = serial->port[0];
  1048. struct ftdi_private *priv;
  1049. struct ftdi_sio_quirk *quirk;
  1050. dbg("%s",__FUNCTION__);
  1051. priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL);
  1052. if (!priv){
  1053. err("%s- kmalloc(%Zd) failed.", __FUNCTION__, sizeof(struct ftdi_private));
  1054. return -ENOMEM;
  1055. }
  1056. spin_lock_init(&priv->rx_lock);
  1057. spin_lock_init(&priv->tx_lock);
  1058. init_waitqueue_head(&priv->delta_msr_wait);
  1059. /* This will push the characters through immediately rather
  1060. than queue a task to deliver them */
  1061. priv->flags = ASYNC_LOW_LATENCY;
  1062. /* Increase the size of read buffers */
  1063. kfree(port->bulk_in_buffer);
  1064. port->bulk_in_buffer = kmalloc (BUFSZ, GFP_KERNEL);
  1065. if (!port->bulk_in_buffer) {
  1066. kfree (priv);
  1067. return -ENOMEM;
  1068. }
  1069. if (port->read_urb) {
  1070. port->read_urb->transfer_buffer = port->bulk_in_buffer;
  1071. port->read_urb->transfer_buffer_length = BUFSZ;
  1072. }
  1073. INIT_WORK(&priv->rx_work, ftdi_process_read, port);
  1074. /* Free port's existing write urb and transfer buffer. */
  1075. if (port->write_urb) {
  1076. usb_free_urb (port->write_urb);
  1077. port->write_urb = NULL;
  1078. }
  1079. kfree(port->bulk_out_buffer);
  1080. port->bulk_out_buffer = NULL;
  1081. usb_set_serial_port_data(serial->port[0], priv);
  1082. ftdi_determine_type (serial->port[0]);
  1083. create_sysfs_attrs(serial);
  1084. /* Check for device requiring special set up. */
  1085. quirk = (struct ftdi_sio_quirk *)usb_get_serial_data(serial);
  1086. if (quirk && quirk->setup) {
  1087. quirk->setup(serial);
  1088. }
  1089. return (0);
  1090. } /* ftdi_sio_attach */
  1091. /* Setup for the USB-UIRT device, which requires hardwired
  1092. * baudrate (38400 gets mapped to 312500) */
  1093. /* Called from usbserial:serial_probe */
  1094. static void ftdi_USB_UIRT_setup (struct usb_serial *serial)
  1095. {
  1096. struct ftdi_private *priv;
  1097. dbg("%s",__FUNCTION__);
  1098. priv = usb_get_serial_port_data(serial->port[0]);
  1099. priv->flags |= ASYNC_SPD_CUST;
  1100. priv->custom_divisor = 77;
  1101. priv->force_baud = B38400;
  1102. } /* ftdi_USB_UIRT_setup */
  1103. /* Setup for the HE-TIRA1 device, which requires hardwired
  1104. * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled. */
  1105. static void ftdi_HE_TIRA1_setup (struct usb_serial *serial)
  1106. {
  1107. struct ftdi_private *priv;
  1108. dbg("%s",__FUNCTION__);
  1109. priv = usb_get_serial_port_data(serial->port[0]);
  1110. priv->flags |= ASYNC_SPD_CUST;
  1111. priv->custom_divisor = 240;
  1112. priv->force_baud = B38400;
  1113. priv->force_rtscts = 1;
  1114. } /* ftdi_HE_TIRA1_setup */
  1115. /* ftdi_shutdown is called from usbserial:usb_serial_disconnect
  1116. * it is called when the usb device is disconnected
  1117. *
  1118. * usbserial:usb_serial_disconnect
  1119. * calls __serial_close for each open of the port
  1120. * shutdown is called then (ie ftdi_shutdown)
  1121. */
  1122. static void ftdi_shutdown (struct usb_serial *serial)
  1123. { /* ftdi_shutdown */
  1124. struct usb_serial_port *port = serial->port[0];
  1125. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1126. dbg("%s", __FUNCTION__);
  1127. remove_sysfs_attrs(serial);
  1128. /* all open ports are closed at this point
  1129. * (by usbserial.c:__serial_close, which calls ftdi_close)
  1130. */
  1131. if (priv) {
  1132. usb_set_serial_port_data(port, NULL);
  1133. kfree(priv);
  1134. }
  1135. } /* ftdi_shutdown */
  1136. static int ftdi_open (struct usb_serial_port *port, struct file *filp)
  1137. { /* ftdi_open */
  1138. struct usb_device *dev = port->serial->dev;
  1139. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1140. unsigned long flags;
  1141. int result = 0;
  1142. char buf[1]; /* Needed for the usb_control_msg I think */
  1143. dbg("%s", __FUNCTION__);
  1144. spin_lock_irqsave(&priv->tx_lock, flags);
  1145. priv->tx_bytes = 0;
  1146. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1147. spin_lock_irqsave(&priv->rx_lock, flags);
  1148. priv->rx_bytes = 0;
  1149. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1150. if (port->tty)
  1151. port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
  1152. /* No error checking for this (will get errors later anyway) */
  1153. /* See ftdi_sio.h for description of what is reset */
  1154. usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  1155. FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE,
  1156. FTDI_SIO_RESET_SIO,
  1157. priv->interface, buf, 0, WDR_TIMEOUT);
  1158. /* Termios defaults are set by usb_serial_init. We don't change
  1159. port->tty->termios - this would loose speed settings, etc.
  1160. This is same behaviour as serial.c/rs_open() - Kuba */
  1161. /* ftdi_set_termios will send usb control messages */
  1162. if (port->tty)
  1163. ftdi_set_termios(port, NULL);
  1164. /* FIXME: Flow control might be enabled, so it should be checked -
  1165. we have no control of defaults! */
  1166. /* Turn on RTS and DTR since we are not flow controlling by default */
  1167. set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
  1168. /* Not throttled */
  1169. spin_lock_irqsave(&priv->rx_lock, flags);
  1170. priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
  1171. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1172. /* Start reading from the device */
  1173. priv->rx_processed = 0;
  1174. usb_fill_bulk_urb(port->read_urb, dev,
  1175. usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress),
  1176. port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
  1177. ftdi_read_bulk_callback, port);
  1178. result = usb_submit_urb(port->read_urb, GFP_KERNEL);
  1179. if (result)
  1180. err("%s - failed submitting read urb, error %d", __FUNCTION__, result);
  1181. return result;
  1182. } /* ftdi_open */
  1183. /*
  1184. * usbserial:__serial_close only calls ftdi_close if the point is open
  1185. *
  1186. * This only gets called when it is the last close
  1187. *
  1188. *
  1189. */
  1190. static void ftdi_close (struct usb_serial_port *port, struct file *filp)
  1191. { /* ftdi_close */
  1192. unsigned int c_cflag = port->tty->termios->c_cflag;
  1193. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1194. char buf[1];
  1195. dbg("%s", __FUNCTION__);
  1196. if (c_cflag & HUPCL){
  1197. /* Disable flow control */
  1198. if (usb_control_msg(port->serial->dev,
  1199. usb_sndctrlpipe(port->serial->dev, 0),
  1200. FTDI_SIO_SET_FLOW_CTRL_REQUEST,
  1201. FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
  1202. 0, priv->interface, buf, 0,
  1203. WDR_TIMEOUT) < 0) {
  1204. err("error from flowcontrol urb");
  1205. }
  1206. /* drop RTS and DTR */
  1207. clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
  1208. } /* Note change no line if hupcl is off */
  1209. /* cancel any scheduled reading */
  1210. cancel_delayed_work(&priv->rx_work);
  1211. flush_scheduled_work();
  1212. /* shutdown our bulk read */
  1213. if (port->read_urb)
  1214. usb_kill_urb(port->read_urb);
  1215. } /* ftdi_close */
  1216. /* The SIO requires the first byte to have:
  1217. * B0 1
  1218. * B1 0
  1219. * B2..7 length of message excluding byte 0
  1220. *
  1221. * The new devices do not require this byte
  1222. */
  1223. static int ftdi_write (struct usb_serial_port *port,
  1224. const unsigned char *buf, int count)
  1225. { /* ftdi_write */
  1226. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1227. struct urb *urb;
  1228. unsigned char *buffer;
  1229. int data_offset ; /* will be 1 for the SIO and 0 otherwise */
  1230. int status;
  1231. int transfer_size;
  1232. unsigned long flags;
  1233. dbg("%s port %d, %d bytes", __FUNCTION__, port->number, count);
  1234. if (count == 0) {
  1235. dbg("write request of 0 bytes");
  1236. return 0;
  1237. }
  1238. spin_lock_irqsave(&priv->tx_lock, flags);
  1239. if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) {
  1240. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1241. dbg("%s - write limit hit\n", __FUNCTION__);
  1242. return 0;
  1243. }
  1244. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1245. data_offset = priv->write_offset;
  1246. dbg("data_offset set to %d",data_offset);
  1247. /* Determine total transfer size */
  1248. transfer_size = count;
  1249. if (data_offset > 0) {
  1250. /* Original sio needs control bytes too... */
  1251. transfer_size += (data_offset *
  1252. ((count + (PKTSZ - 1 - data_offset)) /
  1253. (PKTSZ - data_offset)));
  1254. }
  1255. buffer = kmalloc (transfer_size, GFP_ATOMIC);
  1256. if (!buffer) {
  1257. err("%s ran out of kernel memory for urb ...", __FUNCTION__);
  1258. return -ENOMEM;
  1259. }
  1260. urb = usb_alloc_urb(0, GFP_ATOMIC);
  1261. if (!urb) {
  1262. err("%s - no more free urbs", __FUNCTION__);
  1263. kfree (buffer);
  1264. return -ENOMEM;
  1265. }
  1266. /* Copy data */
  1267. if (data_offset > 0) {
  1268. /* Original sio requires control byte at start of each packet. */
  1269. int user_pktsz = PKTSZ - data_offset;
  1270. int todo = count;
  1271. unsigned char *first_byte = buffer;
  1272. const unsigned char *current_position = buf;
  1273. while (todo > 0) {
  1274. if (user_pktsz > todo) {
  1275. user_pktsz = todo;
  1276. }
  1277. /* Write the control byte at the front of the packet*/
  1278. *first_byte = 1 | ((user_pktsz) << 2);
  1279. /* Copy data for packet */
  1280. memcpy (first_byte + data_offset,
  1281. current_position, user_pktsz);
  1282. first_byte += user_pktsz + data_offset;
  1283. current_position += user_pktsz;
  1284. todo -= user_pktsz;
  1285. }
  1286. } else {
  1287. /* No control byte required. */
  1288. /* Copy in the data to send */
  1289. memcpy (buffer, buf, count);
  1290. }
  1291. usb_serial_debug_data(debug, &port->dev, __FUNCTION__, transfer_size, buffer);
  1292. /* fill the buffer and send it */
  1293. usb_fill_bulk_urb(urb, port->serial->dev,
  1294. usb_sndbulkpipe(port->serial->dev, port->bulk_out_endpointAddress),
  1295. buffer, transfer_size,
  1296. ftdi_write_bulk_callback, port);
  1297. status = usb_submit_urb(urb, GFP_ATOMIC);
  1298. if (status) {
  1299. err("%s - failed submitting write urb, error %d", __FUNCTION__, status);
  1300. count = status;
  1301. kfree (buffer);
  1302. } else {
  1303. spin_lock_irqsave(&priv->tx_lock, flags);
  1304. ++priv->tx_outstanding_urbs;
  1305. priv->tx_outstanding_bytes += count;
  1306. priv->tx_bytes += count;
  1307. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1308. }
  1309. /* we are done with this urb, so let the host driver
  1310. * really free it when it is finished with it */
  1311. usb_free_urb (urb);
  1312. dbg("%s write returning: %d", __FUNCTION__, count);
  1313. return count;
  1314. } /* ftdi_write */
  1315. /* This function may get called when the device is closed */
  1316. static void ftdi_write_bulk_callback (struct urb *urb, struct pt_regs *regs)
  1317. {
  1318. unsigned long flags;
  1319. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  1320. struct ftdi_private *priv;
  1321. int data_offset; /* will be 1 for the SIO and 0 otherwise */
  1322. unsigned long countback;
  1323. /* free up the transfer buffer, as usb_free_urb() does not do this */
  1324. kfree (urb->transfer_buffer);
  1325. dbg("%s - port %d", __FUNCTION__, port->number);
  1326. if (urb->status) {
  1327. dbg("nonzero write bulk status received: %d", urb->status);
  1328. return;
  1329. }
  1330. priv = usb_get_serial_port_data(port);
  1331. if (!priv) {
  1332. dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
  1333. return;
  1334. }
  1335. /* account for transferred data */
  1336. countback = urb->actual_length;
  1337. data_offset = priv->write_offset;
  1338. if (data_offset > 0) {
  1339. /* Subtract the control bytes */
  1340. countback -= (data_offset * ((countback + (PKTSZ - 1)) / PKTSZ));
  1341. }
  1342. spin_lock_irqsave(&priv->tx_lock, flags);
  1343. --priv->tx_outstanding_urbs;
  1344. priv->tx_outstanding_bytes -= countback;
  1345. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1346. usb_serial_port_softint(port);
  1347. } /* ftdi_write_bulk_callback */
  1348. static int ftdi_write_room( struct usb_serial_port *port )
  1349. {
  1350. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1351. int room;
  1352. unsigned long flags;
  1353. dbg("%s - port %d", __FUNCTION__, port->number);
  1354. spin_lock_irqsave(&priv->tx_lock, flags);
  1355. if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) {
  1356. /*
  1357. * We really can take anything the user throws at us
  1358. * but let's pick a nice big number to tell the tty
  1359. * layer that we have lots of free space
  1360. */
  1361. room = 2048;
  1362. } else {
  1363. room = 0;
  1364. }
  1365. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1366. return room;
  1367. } /* ftdi_write_room */
  1368. static int ftdi_chars_in_buffer (struct usb_serial_port *port)
  1369. { /* ftdi_chars_in_buffer */
  1370. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1371. int buffered;
  1372. unsigned long flags;
  1373. dbg("%s - port %d", __FUNCTION__, port->number);
  1374. spin_lock_irqsave(&priv->tx_lock, flags);
  1375. buffered = (int)priv->tx_outstanding_bytes;
  1376. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1377. if (buffered < 0) {
  1378. err("%s outstanding tx bytes is negative!", __FUNCTION__);
  1379. buffered = 0;
  1380. }
  1381. return buffered;
  1382. } /* ftdi_chars_in_buffer */
  1383. static void ftdi_read_bulk_callback (struct urb *urb, struct pt_regs *regs)
  1384. { /* ftdi_read_bulk_callback */
  1385. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  1386. struct tty_struct *tty;
  1387. struct ftdi_private *priv;
  1388. unsigned long countread;
  1389. unsigned long flags;
  1390. if (urb->number_of_packets > 0) {
  1391. err("%s transfer_buffer_length %d actual_length %d number of packets %d",__FUNCTION__,
  1392. urb->transfer_buffer_length, urb->actual_length, urb->number_of_packets );
  1393. err("%s transfer_flags %x ", __FUNCTION__,urb->transfer_flags );
  1394. }
  1395. dbg("%s - port %d", __FUNCTION__, port->number);
  1396. if (port->open_count <= 0)
  1397. return;
  1398. tty = port->tty;
  1399. if (!tty) {
  1400. dbg("%s - bad tty pointer - exiting",__FUNCTION__);
  1401. return;
  1402. }
  1403. priv = usb_get_serial_port_data(port);
  1404. if (!priv) {
  1405. dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
  1406. return;
  1407. }
  1408. if (urb != port->read_urb) {
  1409. err("%s - Not my urb!", __FUNCTION__);
  1410. }
  1411. if (urb->status) {
  1412. /* This will happen at close every time so it is a dbg not an err */
  1413. dbg("(this is ok on close) nonzero read bulk status received: %d", urb->status);
  1414. return;
  1415. }
  1416. /* count data bytes, but not status bytes */
  1417. countread = urb->actual_length;
  1418. countread -= 2 * ((countread + (PKTSZ - 1)) / PKTSZ);
  1419. spin_lock_irqsave(&priv->rx_lock, flags);
  1420. priv->rx_bytes += countread;
  1421. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1422. ftdi_process_read(port);
  1423. } /* ftdi_read_bulk_callback */
  1424. static void ftdi_process_read (void *param)
  1425. { /* ftdi_process_read */
  1426. struct usb_serial_port *port = (struct usb_serial_port*)param;
  1427. struct urb *urb;
  1428. struct tty_struct *tty;
  1429. struct ftdi_private *priv;
  1430. char error_flag;
  1431. unsigned char *data;
  1432. int i;
  1433. int result;
  1434. int need_flip;
  1435. int packet_offset;
  1436. unsigned long flags;
  1437. dbg("%s - port %d", __FUNCTION__, port->number);
  1438. if (port->open_count <= 0)
  1439. return;
  1440. tty = port->tty;
  1441. if (!tty) {
  1442. dbg("%s - bad tty pointer - exiting",__FUNCTION__);
  1443. return;
  1444. }
  1445. priv = usb_get_serial_port_data(port);
  1446. if (!priv) {
  1447. dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
  1448. return;
  1449. }
  1450. urb = port->read_urb;
  1451. if (!urb) {
  1452. dbg("%s - bad read_urb pointer - exiting", __FUNCTION__);
  1453. return;
  1454. }
  1455. data = urb->transfer_buffer;
  1456. if (priv->rx_processed) {
  1457. dbg("%s - already processed: %d bytes, %d remain", __FUNCTION__,
  1458. priv->rx_processed,
  1459. urb->actual_length - priv->rx_processed);
  1460. } else {
  1461. /* The first two bytes of every read packet are status */
  1462. if (urb->actual_length > 2) {
  1463. usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data);
  1464. } else {
  1465. dbg("Status only: %03oo %03oo",data[0],data[1]);
  1466. }
  1467. }
  1468. /* TO DO -- check for hung up line and handle appropriately: */
  1469. /* send hangup */
  1470. /* See acm.c - you do a tty_hangup - eg tty_hangup(tty) */
  1471. /* if CD is dropped and the line is not CLOCAL then we should hangup */
  1472. need_flip = 0;
  1473. for (packet_offset = priv->rx_processed; packet_offset < urb->actual_length; packet_offset += PKTSZ) {
  1474. int length;
  1475. /* Compare new line status to the old one, signal if different */
  1476. /* N.B. packet may be processed more than once, but differences
  1477. * are only processed once. */
  1478. if (priv != NULL) {
  1479. char new_status = data[packet_offset+0] & FTDI_STATUS_B0_MASK;
  1480. if (new_status != priv->prev_status) {
  1481. priv->diff_status |= new_status ^ priv->prev_status;
  1482. wake_up_interruptible(&priv->delta_msr_wait);
  1483. priv->prev_status = new_status;
  1484. }
  1485. }
  1486. length = min(PKTSZ, urb->actual_length-packet_offset)-2;
  1487. if (length < 0) {
  1488. err("%s - bad packet length: %d", __FUNCTION__, length+2);
  1489. length = 0;
  1490. }
  1491. if (priv->rx_flags & THROTTLED) {
  1492. dbg("%s - throttled", __FUNCTION__);
  1493. break;
  1494. }
  1495. if (tty_buffer_request_room(tty, length) < length) {
  1496. /* break out & wait for throttling/unthrottling to happen */
  1497. dbg("%s - receive room low", __FUNCTION__);
  1498. break;
  1499. }
  1500. /* Handle errors and break */
  1501. error_flag = TTY_NORMAL;
  1502. /* Although the device uses a bitmask and hence can have multiple */
  1503. /* errors on a packet - the order here sets the priority the */
  1504. /* error is returned to the tty layer */
  1505. if ( data[packet_offset+1] & FTDI_RS_OE ) {
  1506. error_flag = TTY_OVERRUN;
  1507. dbg("OVERRRUN error");
  1508. }
  1509. if ( data[packet_offset+1] & FTDI_RS_BI ) {
  1510. error_flag = TTY_BREAK;
  1511. dbg("BREAK received");
  1512. }
  1513. if ( data[packet_offset+1] & FTDI_RS_PE ) {
  1514. error_flag = TTY_PARITY;
  1515. dbg("PARITY error");
  1516. }
  1517. if ( data[packet_offset+1] & FTDI_RS_FE ) {
  1518. error_flag = TTY_FRAME;
  1519. dbg("FRAMING error");
  1520. }
  1521. if (length > 0) {
  1522. for (i = 2; i < length+2; i++) {
  1523. /* Note that the error flag is duplicated for
  1524. every character received since we don't know
  1525. which character it applied to */
  1526. tty_insert_flip_char(tty, data[packet_offset+i], error_flag);
  1527. }
  1528. need_flip = 1;
  1529. }
  1530. #ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW
  1531. /* if a parity error is detected you get status packets forever
  1532. until a character is sent without a parity error.
  1533. This doesn't work well since the application receives a never
  1534. ending stream of bad data - even though new data hasn't been sent.
  1535. Therefore I (bill) have taken this out.
  1536. However - this might make sense for framing errors and so on
  1537. so I am leaving the code in for now.
  1538. */
  1539. else {
  1540. if (error_flag != TTY_NORMAL){
  1541. dbg("error_flag is not normal");
  1542. /* In this case it is just status - if that is an error send a bad character */
  1543. if(tty->flip.count >= TTY_FLIPBUF_SIZE) {
  1544. tty_flip_buffer_push(tty);
  1545. }
  1546. tty_insert_flip_char(tty, 0xff, error_flag);
  1547. need_flip = 1;
  1548. }
  1549. }
  1550. #endif
  1551. } /* "for(packet_offset=0..." */
  1552. /* Low latency */
  1553. if (need_flip) {
  1554. tty_flip_buffer_push(tty);
  1555. }
  1556. if (packet_offset < urb->actual_length) {
  1557. /* not completely processed - record progress */
  1558. priv->rx_processed = packet_offset;
  1559. dbg("%s - incomplete, %d bytes processed, %d remain",
  1560. __FUNCTION__, packet_offset,
  1561. urb->actual_length - packet_offset);
  1562. /* check if we were throttled while processing */
  1563. spin_lock_irqsave(&priv->rx_lock, flags);
  1564. if (priv->rx_flags & THROTTLED) {
  1565. priv->rx_flags |= ACTUALLY_THROTTLED;
  1566. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1567. dbg("%s - deferring remainder until unthrottled",
  1568. __FUNCTION__);
  1569. return;
  1570. }
  1571. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1572. /* if the port is closed stop trying to read */
  1573. if (port->open_count > 0){
  1574. /* delay processing of remainder */
  1575. schedule_delayed_work(&priv->rx_work, 1);
  1576. } else {
  1577. dbg("%s - port is closed", __FUNCTION__);
  1578. }
  1579. return;
  1580. }
  1581. /* urb is completely processed */
  1582. priv->rx_processed = 0;
  1583. /* if the port is closed stop trying to read */
  1584. if (port->open_count > 0){
  1585. /* Continue trying to always read */
  1586. usb_fill_bulk_urb(port->read_urb, port->serial->dev,
  1587. usb_rcvbulkpipe(port->serial->dev, port->bulk_in_endpointAddress),
  1588. port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
  1589. ftdi_read_bulk_callback, port);
  1590. result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
  1591. if (result)
  1592. err("%s - failed resubmitting read urb, error %d", __FUNCTION__, result);
  1593. }
  1594. return;
  1595. } /* ftdi_process_read */
  1596. static void ftdi_break_ctl( struct usb_serial_port *port, int break_state )
  1597. {
  1598. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1599. __u16 urb_value = 0;
  1600. char buf[1];
  1601. /* break_state = -1 to turn on break, and 0 to turn off break */
  1602. /* see drivers/char/tty_io.c to see it used */
  1603. /* last_set_data_urb_value NEVER has the break bit set in it */
  1604. if (break_state) {
  1605. urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK;
  1606. } else {
  1607. urb_value = priv->last_set_data_urb_value;
  1608. }
  1609. if (usb_control_msg(port->serial->dev, usb_sndctrlpipe(port->serial->dev, 0),
  1610. FTDI_SIO_SET_DATA_REQUEST,
  1611. FTDI_SIO_SET_DATA_REQUEST_TYPE,
  1612. urb_value , priv->interface,
  1613. buf, 0, WDR_TIMEOUT) < 0) {
  1614. err("%s FAILED to enable/disable break state (state was %d)", __FUNCTION__,break_state);
  1615. }
  1616. dbg("%s break state is %d - urb is %d", __FUNCTION__,break_state, urb_value);
  1617. }
  1618. /* old_termios contains the original termios settings and tty->termios contains
  1619. * the new setting to be used
  1620. * WARNING: set_termios calls this with old_termios in kernel space
  1621. */
  1622. static void ftdi_set_termios (struct usb_serial_port *port, struct termios *old_termios)
  1623. { /* ftdi_termios */
  1624. struct usb_device *dev = port->serial->dev;
  1625. unsigned int cflag = port->tty->termios->c_cflag;
  1626. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1627. __u16 urb_value; /* will hold the new flags */
  1628. char buf[1]; /* Perhaps I should dynamically alloc this? */
  1629. // Added for xon/xoff support
  1630. unsigned int iflag = port->tty->termios->c_iflag;
  1631. unsigned char vstop;
  1632. unsigned char vstart;
  1633. dbg("%s", __FUNCTION__);
  1634. /* Force baud rate if this device requires it, unless it is set to B0. */
  1635. if (priv->force_baud && ((port->tty->termios->c_cflag & CBAUD) != B0)) {
  1636. dbg("%s: forcing baud rate for this device", __FUNCTION__);
  1637. port->tty->termios->c_cflag &= ~CBAUD;
  1638. port->tty->termios->c_cflag |= priv->force_baud;
  1639. }
  1640. /* Force RTS-CTS if this device requires it. */
  1641. if (priv->force_rtscts) {
  1642. dbg("%s: forcing rtscts for this device", __FUNCTION__);
  1643. port->tty->termios->c_cflag |= CRTSCTS;
  1644. }
  1645. cflag = port->tty->termios->c_cflag;
  1646. /* FIXME -For this cut I don't care if the line is really changing or
  1647. not - so just do the change regardless - should be able to
  1648. compare old_termios and tty->termios */
  1649. /* NOTE These routines can get interrupted by
  1650. ftdi_sio_read_bulk_callback - need to examine what this
  1651. means - don't see any problems yet */
  1652. /* Set number of data bits, parity, stop bits */
  1653. urb_value = 0;
  1654. urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 :
  1655. FTDI_SIO_SET_DATA_STOP_BITS_1);
  1656. urb_value |= (cflag & PARENB ?
  1657. (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD :
  1658. FTDI_SIO_SET_DATA_PARITY_EVEN) :
  1659. FTDI_SIO_SET_DATA_PARITY_NONE);
  1660. if (cflag & CSIZE) {
  1661. switch (cflag & CSIZE) {
  1662. case CS5: urb_value |= 5; dbg("Setting CS5"); break;
  1663. case CS6: urb_value |= 6; dbg("Setting CS6"); break;
  1664. case CS7: urb_value |= 7; dbg("Setting CS7"); break;
  1665. case CS8: urb_value |= 8; dbg("Setting CS8"); break;
  1666. default:
  1667. err("CSIZE was set but not CS5-CS8");
  1668. }
  1669. }
  1670. /* This is needed by the break command since it uses the same command - but is
  1671. * or'ed with this value */
  1672. priv->last_set_data_urb_value = urb_value;
  1673. if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  1674. FTDI_SIO_SET_DATA_REQUEST,
  1675. FTDI_SIO_SET_DATA_REQUEST_TYPE,
  1676. urb_value , priv->interface,
  1677. buf, 0, WDR_SHORT_TIMEOUT) < 0) {
  1678. err("%s FAILED to set databits/stopbits/parity", __FUNCTION__);
  1679. }
  1680. /* Now do the baudrate */
  1681. if ((cflag & CBAUD) == B0 ) {
  1682. /* Disable flow control */
  1683. if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  1684. FTDI_SIO_SET_FLOW_CTRL_REQUEST,
  1685. FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
  1686. 0, priv->interface,
  1687. buf, 0, WDR_TIMEOUT) < 0) {
  1688. err("%s error from disable flowcontrol urb", __FUNCTION__);
  1689. }
  1690. /* Drop RTS and DTR */
  1691. clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
  1692. } else {
  1693. /* set the baudrate determined before */
  1694. if (change_speed(port)) {
  1695. err("%s urb failed to set baudrate", __FUNCTION__);
  1696. }
  1697. /* Ensure RTS and DTR are raised when baudrate changed from 0 */
  1698. if (!old_termios || (old_termios->c_cflag & CBAUD) == B0) {
  1699. set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
  1700. }
  1701. }
  1702. /* Set flow control */
  1703. /* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */
  1704. if (cflag & CRTSCTS) {
  1705. dbg("%s Setting to CRTSCTS flow control", __FUNCTION__);
  1706. if (usb_control_msg(dev,
  1707. usb_sndctrlpipe(dev, 0),
  1708. FTDI_SIO_SET_FLOW_CTRL_REQUEST,
  1709. FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
  1710. 0 , (FTDI_SIO_RTS_CTS_HS | priv->interface),
  1711. buf, 0, WDR_TIMEOUT) < 0) {
  1712. err("urb failed to set to rts/cts flow control");
  1713. }
  1714. } else {
  1715. /*
  1716. * Xon/Xoff code
  1717. *
  1718. * Check the IXOFF status in the iflag component of the termios structure
  1719. * if IXOFF is not set, the pre-xon/xoff code is executed.
  1720. */
  1721. if (iflag & IXOFF) {
  1722. dbg("%s request to enable xonxoff iflag=%04x",__FUNCTION__,iflag);
  1723. // Try to enable the XON/XOFF on the ftdi_sio
  1724. // Set the vstart and vstop -- could have been done up above where
  1725. // a lot of other dereferencing is done but that would be very
  1726. // inefficient as vstart and vstop are not always needed
  1727. vstart=port->tty->termios->c_cc[VSTART];
  1728. vstop=port->tty->termios->c_cc[VSTOP];
  1729. urb_value=(vstop << 8) | (vstart);
  1730. if (usb_control_msg(dev,
  1731. usb_sndctrlpipe(dev, 0),
  1732. FTDI_SIO_SET_FLOW_CTRL_REQUEST,
  1733. FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
  1734. urb_value , (FTDI_SIO_XON_XOFF_HS
  1735. | priv->interface),
  1736. buf, 0, WDR_TIMEOUT) < 0) {
  1737. err("urb failed to set to xon/xoff flow control");
  1738. }
  1739. } else {
  1740. /* else clause to only run if cfag ! CRTSCTS and iflag ! XOFF */
  1741. /* CHECKME Assuming XON/XOFF handled by tty stack - not by device */
  1742. dbg("%s Turning off hardware flow control", __FUNCTION__);
  1743. if (usb_control_msg(dev,
  1744. usb_sndctrlpipe(dev, 0),
  1745. FTDI_SIO_SET_FLOW_CTRL_REQUEST,
  1746. FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
  1747. 0, priv->interface,
  1748. buf, 0, WDR_TIMEOUT) < 0) {
  1749. err("urb failed to clear flow control");
  1750. }
  1751. }
  1752. }
  1753. return;
  1754. } /* ftdi_termios */
  1755. static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file)
  1756. {
  1757. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1758. unsigned char buf[2];
  1759. int ret;
  1760. dbg("%s TIOCMGET", __FUNCTION__);
  1761. switch (priv->chip_type) {
  1762. case SIO:
  1763. /* Request the status from the device */
  1764. if ((ret = usb_control_msg(port->serial->dev,
  1765. usb_rcvctrlpipe(port->serial->dev, 0),
  1766. FTDI_SIO_GET_MODEM_STATUS_REQUEST,
  1767. FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
  1768. 0, 0,
  1769. buf, 1, WDR_TIMEOUT)) < 0 ) {
  1770. err("%s Could not get modem status of device - err: %d", __FUNCTION__,
  1771. ret);
  1772. return(ret);
  1773. }
  1774. break;
  1775. case FT8U232AM:
  1776. case FT232BM:
  1777. case FT2232C:
  1778. /* the 8U232AM returns a two byte value (the sio is a 1 byte value) - in the same
  1779. format as the data returned from the in point */
  1780. if ((ret = usb_control_msg(port->serial->dev,
  1781. usb_rcvctrlpipe(port->serial->dev, 0),
  1782. FTDI_SIO_GET_MODEM_STATUS_REQUEST,
  1783. FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
  1784. 0, priv->interface,
  1785. buf, 2, WDR_TIMEOUT)) < 0 ) {
  1786. err("%s Could not get modem status of device - err: %d", __FUNCTION__,
  1787. ret);
  1788. return(ret);
  1789. }
  1790. break;
  1791. default:
  1792. return -EFAULT;
  1793. break;
  1794. }
  1795. return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) |
  1796. (buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) |
  1797. (buf[0] & FTDI_SIO_RI_MASK ? TIOCM_RI : 0) |
  1798. (buf[0] & FTDI_SIO_RLSD_MASK ? TIOCM_CD : 0) |
  1799. priv->last_dtr_rts;
  1800. }
  1801. static int ftdi_tiocmset(struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear)
  1802. {
  1803. dbg("%s TIOCMSET", __FUNCTION__);
  1804. return update_mctrl(port, set, clear);
  1805. }
  1806. static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg)
  1807. {
  1808. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1809. dbg("%s cmd 0x%04x", __FUNCTION__, cmd);
  1810. /* Based on code from acm.c and others */
  1811. switch (cmd) {
  1812. case TIOCGSERIAL: /* gets serial port data */
  1813. return get_serial_info(port, (struct serial_struct __user *) arg);
  1814. case TIOCSSERIAL: /* sets serial port data */
  1815. return set_serial_info(port, (struct serial_struct __user *) arg);
  1816. /*
  1817. * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
  1818. * - mask passed in arg for lines of interest
  1819. * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
  1820. * Caller should use TIOCGICOUNT to see which one it was.
  1821. *
  1822. * This code is borrowed from linux/drivers/char/serial.c
  1823. */
  1824. case TIOCMIWAIT:
  1825. while (priv != NULL) {
  1826. interruptible_sleep_on(&priv->delta_msr_wait);
  1827. /* see if a signal did it */
  1828. if (signal_pending(current))
  1829. return -ERESTARTSYS;
  1830. else {
  1831. char diff = priv->diff_status;
  1832. if (diff == 0) {
  1833. return -EIO; /* no change => error */
  1834. }
  1835. /* Consume all events */
  1836. priv->diff_status = 0;
  1837. /* Return 0 if caller wanted to know about these bits */
  1838. if ( ((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) ||
  1839. ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) ||
  1840. ((arg & TIOCM_CD) && (diff & FTDI_RS0_RLSD)) ||
  1841. ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS)) ) {
  1842. return 0;
  1843. }
  1844. /*
  1845. * Otherwise caller can't care less about what happened,
  1846. * and so we continue to wait for more events.
  1847. */
  1848. }
  1849. }
  1850. return(0);
  1851. break;
  1852. default:
  1853. break;
  1854. }
  1855. /* This is not necessarily an error - turns out the higher layers will do
  1856. * some ioctls itself (see comment above)
  1857. */
  1858. dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __FUNCTION__, cmd);
  1859. return(-ENOIOCTLCMD);
  1860. } /* ftdi_ioctl */
  1861. static void ftdi_throttle (struct usb_serial_port *port)
  1862. {
  1863. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1864. unsigned long flags;
  1865. dbg("%s - port %d", __FUNCTION__, port->number);
  1866. spin_lock_irqsave(&priv->rx_lock, flags);
  1867. priv->rx_flags |= THROTTLED;
  1868. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1869. }
  1870. static void ftdi_unthrottle (struct usb_serial_port *port)
  1871. {
  1872. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1873. int actually_throttled;
  1874. unsigned long flags;
  1875. dbg("%s - port %d", __FUNCTION__, port->number);
  1876. spin_lock_irqsave(&priv->rx_lock, flags);
  1877. actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
  1878. priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
  1879. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1880. if (actually_throttled)
  1881. schedule_work(&priv->rx_work);
  1882. }
  1883. static int __init ftdi_init (void)
  1884. {
  1885. int retval;
  1886. dbg("%s", __FUNCTION__);
  1887. if (vendor > 0 && product > 0) {
  1888. /* Add user specified VID/PID to reserved element of table. */
  1889. int i;
  1890. for (i = 0; id_table_combined[i].idVendor; i++)
  1891. ;
  1892. id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
  1893. id_table_combined[i].idVendor = vendor;
  1894. id_table_combined[i].idProduct = product;
  1895. }
  1896. retval = usb_serial_register(&ftdi_sio_device);
  1897. if (retval)
  1898. goto failed_sio_register;
  1899. retval = usb_register(&ftdi_driver);
  1900. if (retval)
  1901. goto failed_usb_register;
  1902. info(DRIVER_VERSION ":" DRIVER_DESC);
  1903. return 0;
  1904. failed_usb_register:
  1905. usb_serial_deregister(&ftdi_sio_device);
  1906. failed_sio_register:
  1907. return retval;
  1908. }
  1909. static void __exit ftdi_exit (void)
  1910. {
  1911. dbg("%s", __FUNCTION__);
  1912. usb_deregister (&ftdi_driver);
  1913. usb_serial_deregister (&ftdi_sio_device);
  1914. }
  1915. module_init(ftdi_init);
  1916. module_exit(ftdi_exit);
  1917. MODULE_AUTHOR( DRIVER_AUTHOR );
  1918. MODULE_DESCRIPTION( DRIVER_DESC );
  1919. MODULE_LICENSE("GPL");
  1920. module_param(debug, bool, S_IRUGO | S_IWUSR);
  1921. MODULE_PARM_DESC(debug, "Debug enabled or not");
  1922. module_param(vendor, ushort, 0);
  1923. MODULE_PARM_DESC(vendor, "User specified vendor ID (default="
  1924. __MODULE_STRING(FTDI_VID)")");
  1925. module_param(product, ushort, 0);
  1926. MODULE_PARM_DESC(vendor, "User specified product ID");