ftdi_sio.c 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451
  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
  16. * driver
  17. *
  18. * See http://ftdi-usb-sio.sourceforge.net for upto date testing info
  19. * and extra documentation
  20. *
  21. * Change entries from 2004 and earlier can be found in versions of this
  22. * file in kernel versions prior to the 2.6.24 release.
  23. *
  24. */
  25. /* Bill Ryder - bryder@sgi.com - wrote the FTDI_SIO implementation */
  26. /* Thanx to FTDI for so kindly providing details of the protocol required */
  27. /* to talk to the device */
  28. /* Thanx to gkh and the rest of the usb dev group for all code I have
  29. assimilated :-) */
  30. #include <linux/kernel.h>
  31. #include <linux/errno.h>
  32. #include <linux/init.h>
  33. #include <linux/slab.h>
  34. #include <linux/tty.h>
  35. #include <linux/tty_driver.h>
  36. #include <linux/tty_flip.h>
  37. #include <linux/module.h>
  38. #include <linux/spinlock.h>
  39. #include <linux/uaccess.h>
  40. #include <linux/usb.h>
  41. #include <linux/serial.h>
  42. #include <linux/usb/serial.h>
  43. #include "ftdi_sio.h"
  44. /*
  45. * Version Information
  46. */
  47. #define DRIVER_VERSION "v1.4.3"
  48. #define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Bill Ryder <bryder@sgi.com>, Kuba Ober <kuba@mareimbrium.org>"
  49. #define DRIVER_DESC "USB FTDI Serial Converters Driver"
  50. static int debug;
  51. static __u16 vendor = FTDI_VID;
  52. static __u16 product;
  53. struct ftdi_private {
  54. ftdi_chip_type_t chip_type;
  55. /* type of device, either SIO or FT8U232AM */
  56. int baud_base; /* baud base clock for divisor setting */
  57. int custom_divisor; /* custom_divisor kludge, this is for
  58. baud_base (different from what goes to the
  59. chip!) */
  60. __u16 last_set_data_urb_value ;
  61. /* the last data state set - needed for doing
  62. * a break
  63. */
  64. int write_offset; /* This is the offset in the usb data block to
  65. * write the serial data - it varies between
  66. * devices
  67. */
  68. int flags; /* some ASYNC_xxxx flags are supported */
  69. unsigned long last_dtr_rts; /* saved modem control outputs */
  70. wait_queue_head_t delta_msr_wait; /* Used for TIOCMIWAIT */
  71. char prev_status, diff_status; /* Used for TIOCMIWAIT */
  72. __u8 rx_flags; /* receive state flags (throttling) */
  73. spinlock_t rx_lock; /* spinlock for receive state */
  74. struct delayed_work rx_work;
  75. struct usb_serial_port *port;
  76. int rx_processed;
  77. unsigned long rx_bytes;
  78. __u16 interface; /* FT2232C port interface (0 for FT232/245) */
  79. speed_t force_baud; /* if non-zero, force the baud rate to
  80. this value */
  81. int force_rtscts; /* if non-zero, force RTS-CTS to always
  82. be enabled */
  83. spinlock_t tx_lock; /* spinlock for transmit state */
  84. unsigned long tx_bytes;
  85. unsigned long tx_outstanding_bytes;
  86. unsigned long tx_outstanding_urbs;
  87. };
  88. /* struct ftdi_sio_quirk is used by devices requiring special attention. */
  89. struct ftdi_sio_quirk {
  90. int (*probe)(struct usb_serial *);
  91. /* Special settings for probed ports. */
  92. void (*port_probe)(struct ftdi_private *);
  93. };
  94. static int ftdi_jtag_probe(struct usb_serial *serial);
  95. static int ftdi_mtxorb_hack_setup(struct usb_serial *serial);
  96. static void ftdi_USB_UIRT_setup(struct ftdi_private *priv);
  97. static void ftdi_HE_TIRA1_setup(struct ftdi_private *priv);
  98. static struct ftdi_sio_quirk ftdi_jtag_quirk = {
  99. .probe = ftdi_jtag_probe,
  100. };
  101. static struct ftdi_sio_quirk ftdi_mtxorb_hack_quirk = {
  102. .probe = ftdi_mtxorb_hack_setup,
  103. };
  104. static struct ftdi_sio_quirk ftdi_USB_UIRT_quirk = {
  105. .port_probe = ftdi_USB_UIRT_setup,
  106. };
  107. static struct ftdi_sio_quirk ftdi_HE_TIRA1_quirk = {
  108. .port_probe = ftdi_HE_TIRA1_setup,
  109. };
  110. /*
  111. * The 8U232AM has the same API as the sio except for:
  112. * - it can support MUCH higher baudrates; up to:
  113. * o 921600 for RS232 and 2000000 for RS422/485 at 48MHz
  114. * o 230400 at 12MHz
  115. * so .. 8U232AM's baudrate setting codes are different
  116. * - it has a two byte status code.
  117. * - it returns characters every 16ms (the FTDI does it every 40ms)
  118. *
  119. * the bcdDevice value is used to differentiate FT232BM and FT245BM from
  120. * the earlier FT8U232AM and FT8U232BM. For now, include all known VID/PID
  121. * combinations in both tables.
  122. * FIXME: perhaps bcdDevice can also identify 12MHz FT8U232AM devices,
  123. * but I don't know if those ever went into mass production. [Ian Abbott]
  124. */
  125. static struct usb_device_id id_table_combined [] = {
  126. { USB_DEVICE(FTDI_VID, FTDI_AMC232_PID) },
  127. { USB_DEVICE(FTDI_VID, FTDI_CANUSB_PID) },
  128. { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_0_PID) },
  129. { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_1_PID) },
  130. { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_2_PID) },
  131. { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_3_PID) },
  132. { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_4_PID) },
  133. { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_5_PID) },
  134. { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_6_PID) },
  135. { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_7_PID) },
  136. { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) },
  137. { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) },
  138. { USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) },
  139. { USB_DEVICE(FTDI_VID, FTDI_IPLUS2_PID) },
  140. { USB_DEVICE(FTDI_VID, FTDI_DMX4ALL) },
  141. { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) },
  142. { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) },
  143. { USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) },
  144. { USB_DEVICE(FTDI_VID, FTDI_232RL_PID) },
  145. { USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) },
  146. { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) },
  147. { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) },
  148. { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) },
  149. { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) },
  150. { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) },
  151. { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) },
  152. { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) },
  153. { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
  154. { USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) },
  155. { USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) },
  156. { USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) },
  157. { USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) },
  158. { USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) },
  159. { USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) },
  160. { USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) },
  161. { USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) },
  162. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) },
  163. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) },
  164. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) },
  165. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) },
  166. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) },
  167. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) },
  168. { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) },
  169. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0100_PID) },
  170. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0101_PID) },
  171. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0102_PID) },
  172. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0103_PID) },
  173. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0104_PID) },
  174. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0105_PID) },
  175. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0106_PID) },
  176. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0107_PID) },
  177. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0108_PID) },
  178. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0109_PID) },
  179. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010A_PID) },
  180. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010B_PID) },
  181. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010C_PID) },
  182. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010D_PID) },
  183. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010E_PID) },
  184. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010F_PID) },
  185. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0110_PID) },
  186. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0111_PID) },
  187. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0112_PID) },
  188. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0113_PID) },
  189. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0114_PID) },
  190. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0115_PID) },
  191. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0116_PID) },
  192. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0117_PID) },
  193. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0118_PID) },
  194. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0119_PID) },
  195. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011A_PID) },
  196. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011B_PID) },
  197. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011C_PID) },
  198. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011D_PID) },
  199. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011E_PID) },
  200. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011F_PID) },
  201. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0120_PID) },
  202. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0121_PID) },
  203. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0122_PID) },
  204. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0123_PID) },
  205. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0124_PID) },
  206. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0125_PID) },
  207. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0126_PID) },
  208. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0127_PID),
  209. .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
  210. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0128_PID) },
  211. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0129_PID) },
  212. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012A_PID) },
  213. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012B_PID) },
  214. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012C_PID),
  215. .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
  216. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012D_PID) },
  217. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012E_PID) },
  218. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012F_PID) },
  219. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0130_PID) },
  220. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0131_PID) },
  221. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0132_PID) },
  222. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0133_PID) },
  223. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0134_PID) },
  224. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0135_PID) },
  225. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0136_PID) },
  226. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0137_PID) },
  227. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0138_PID) },
  228. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0139_PID) },
  229. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013A_PID) },
  230. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013B_PID) },
  231. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013C_PID) },
  232. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013D_PID) },
  233. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013E_PID) },
  234. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013F_PID) },
  235. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0140_PID) },
  236. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0141_PID) },
  237. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0142_PID) },
  238. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0143_PID) },
  239. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0144_PID) },
  240. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0145_PID) },
  241. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0146_PID) },
  242. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0147_PID) },
  243. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0148_PID) },
  244. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0149_PID) },
  245. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014A_PID) },
  246. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014B_PID) },
  247. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014C_PID) },
  248. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014D_PID) },
  249. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014E_PID) },
  250. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014F_PID) },
  251. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0150_PID) },
  252. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0151_PID) },
  253. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0152_PID) },
  254. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0153_PID),
  255. .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
  256. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0154_PID),
  257. .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
  258. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0155_PID),
  259. .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
  260. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0156_PID),
  261. .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
  262. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0157_PID),
  263. .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
  264. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0158_PID),
  265. .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
  266. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0159_PID) },
  267. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015A_PID) },
  268. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015B_PID) },
  269. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015C_PID) },
  270. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015D_PID) },
  271. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015E_PID) },
  272. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015F_PID) },
  273. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0160_PID) },
  274. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0161_PID) },
  275. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0162_PID) },
  276. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0163_PID) },
  277. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0164_PID) },
  278. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0165_PID) },
  279. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0166_PID) },
  280. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0167_PID) },
  281. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0168_PID) },
  282. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0169_PID) },
  283. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016A_PID) },
  284. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016B_PID) },
  285. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016C_PID) },
  286. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016D_PID) },
  287. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016E_PID) },
  288. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016F_PID) },
  289. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0170_PID) },
  290. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0171_PID) },
  291. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0172_PID) },
  292. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0173_PID) },
  293. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0174_PID) },
  294. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0175_PID) },
  295. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0176_PID) },
  296. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0177_PID) },
  297. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0178_PID) },
  298. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0179_PID) },
  299. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017A_PID) },
  300. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017B_PID) },
  301. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017C_PID) },
  302. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017D_PID) },
  303. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017E_PID) },
  304. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017F_PID) },
  305. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0180_PID) },
  306. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0181_PID) },
  307. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0182_PID) },
  308. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0183_PID) },
  309. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0184_PID) },
  310. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0185_PID) },
  311. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0186_PID) },
  312. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0187_PID) },
  313. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0188_PID) },
  314. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0189_PID) },
  315. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018A_PID) },
  316. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018B_PID) },
  317. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018C_PID) },
  318. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018D_PID) },
  319. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018E_PID) },
  320. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018F_PID) },
  321. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0190_PID) },
  322. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0191_PID) },
  323. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0192_PID) },
  324. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0193_PID) },
  325. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0194_PID) },
  326. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0195_PID) },
  327. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0196_PID) },
  328. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0197_PID) },
  329. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0198_PID) },
  330. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0199_PID) },
  331. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019A_PID) },
  332. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019B_PID) },
  333. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019C_PID) },
  334. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019D_PID) },
  335. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019E_PID) },
  336. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019F_PID) },
  337. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A0_PID) },
  338. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A1_PID) },
  339. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A2_PID) },
  340. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A3_PID) },
  341. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A4_PID) },
  342. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A5_PID) },
  343. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A6_PID) },
  344. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A7_PID) },
  345. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A8_PID) },
  346. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A9_PID) },
  347. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AA_PID) },
  348. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AB_PID) },
  349. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AC_PID) },
  350. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AD_PID) },
  351. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AE_PID) },
  352. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AF_PID) },
  353. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B0_PID) },
  354. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B1_PID) },
  355. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B2_PID) },
  356. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B3_PID) },
  357. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B4_PID) },
  358. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B5_PID) },
  359. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B6_PID) },
  360. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B7_PID) },
  361. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B8_PID) },
  362. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B9_PID) },
  363. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BA_PID) },
  364. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BB_PID) },
  365. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BC_PID) },
  366. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BD_PID) },
  367. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BE_PID) },
  368. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BF_PID) },
  369. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C0_PID) },
  370. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C1_PID) },
  371. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C2_PID) },
  372. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C3_PID) },
  373. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C4_PID) },
  374. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C5_PID) },
  375. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C6_PID) },
  376. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C7_PID) },
  377. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C8_PID) },
  378. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C9_PID) },
  379. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CA_PID) },
  380. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CB_PID) },
  381. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CC_PID) },
  382. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CD_PID) },
  383. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CE_PID) },
  384. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CF_PID) },
  385. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D0_PID) },
  386. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D1_PID) },
  387. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D2_PID) },
  388. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D3_PID) },
  389. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D4_PID) },
  390. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D5_PID) },
  391. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D6_PID) },
  392. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D7_PID) },
  393. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D8_PID) },
  394. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D9_PID) },
  395. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DA_PID) },
  396. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DB_PID) },
  397. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DC_PID) },
  398. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DD_PID) },
  399. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DE_PID) },
  400. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DF_PID) },
  401. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E0_PID) },
  402. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E1_PID) },
  403. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E2_PID) },
  404. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E3_PID) },
  405. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E4_PID) },
  406. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E5_PID) },
  407. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E6_PID) },
  408. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E7_PID) },
  409. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E8_PID) },
  410. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E9_PID) },
  411. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EA_PID) },
  412. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EB_PID) },
  413. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EC_PID) },
  414. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01ED_PID) },
  415. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EE_PID) },
  416. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EF_PID) },
  417. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F0_PID) },
  418. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F1_PID) },
  419. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F2_PID) },
  420. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F3_PID) },
  421. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F4_PID) },
  422. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F5_PID) },
  423. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F6_PID) },
  424. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F7_PID) },
  425. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F8_PID) },
  426. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F9_PID) },
  427. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FA_PID) },
  428. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FB_PID) },
  429. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FC_PID) },
  430. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FD_PID) },
  431. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FE_PID) },
  432. { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FF_PID) },
  433. { USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) },
  434. { USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) },
  435. { USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) },
  436. { USB_DEVICE(FTDI_VID, FTDI_USBX_707_PID) },
  437. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) },
  438. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) },
  439. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) },
  440. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) },
  441. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2106_PID) },
  442. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) },
  443. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) },
  444. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) },
  445. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) },
  446. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) },
  447. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) },
  448. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) },
  449. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) },
  450. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) },
  451. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) },
  452. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) },
  453. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) },
  454. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) },
  455. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) },
  456. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) },
  457. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) },
  458. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) },
  459. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) },
  460. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) },
  461. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) },
  462. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) },
  463. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) },
  464. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) },
  465. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) },
  466. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) },
  467. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) },
  468. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) },
  469. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) },
  470. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) },
  471. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) },
  472. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) },
  473. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) },
  474. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) },
  475. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) },
  476. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) },
  477. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) },
  478. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) },
  479. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) },
  480. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) },
  481. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) },
  482. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) },
  483. { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) },
  484. { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) },
  485. { USB_DEVICE(OCT_VID, OCT_US101_PID) },
  486. { USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID),
  487. .driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk },
  488. { USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID),
  489. .driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk },
  490. { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) },
  491. { USB_DEVICE(FTDI_VID, PROTEGO_R2X0) },
  492. { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) },
  493. { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) },
  494. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) },
  495. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) },
  496. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) },
  497. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) },
  498. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) },
  499. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) },
  500. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) },
  501. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) },
  502. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) },
  503. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) },
  504. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) },
  505. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) },
  506. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) },
  507. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) },
  508. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) },
  509. { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) },
  510. { USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) },
  511. { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) },
  512. { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) },
  513. { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) },
  514. { USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) },
  515. { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) },
  516. { USB_DEVICE(FTDI_VID, FTDI_IBS_US485_PID) },
  517. { USB_DEVICE(FTDI_VID, FTDI_IBS_PICPRO_PID) },
  518. { USB_DEVICE(FTDI_VID, FTDI_IBS_PCMCIA_PID) },
  519. { USB_DEVICE(FTDI_VID, FTDI_IBS_PK1_PID) },
  520. { USB_DEVICE(FTDI_VID, FTDI_IBS_RS232MON_PID) },
  521. { USB_DEVICE(FTDI_VID, FTDI_IBS_APP70_PID) },
  522. { USB_DEVICE(FTDI_VID, FTDI_IBS_PEDO_PID) },
  523. { USB_DEVICE(FTDI_VID, FTDI_IBS_PROD_PID) },
  524. /*
  525. * Due to many user requests for multiple ELV devices we enable
  526. * them by default.
  527. */
  528. { USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) },
  529. { USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) },
  530. { USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) },
  531. { USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) },
  532. { USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) },
  533. { USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) },
  534. { USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) },
  535. { USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) },
  536. { USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) },
  537. { USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) },
  538. { USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) },
  539. { USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) },
  540. { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) },
  541. { USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) },
  542. { USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) },
  543. { USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) },
  544. { USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) },
  545. { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) },
  546. { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1010PC_PID) },
  547. { USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) },
  548. { USB_DEVICE(FTDI_VID, FTDI_ELV_HS485_PID) },
  549. { USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) },
  550. { USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) },
  551. { USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) },
  552. { USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) },
  553. { USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) },
  554. { USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) },
  555. { USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) },
  556. { USB_DEVICE(FTDI_VID, FTDI_CCSMACHX_2_PID) },
  557. { USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) },
  558. { USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) },
  559. { USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) },
  560. { USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) },
  561. { USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) },
  562. { USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) },
  563. { USB_DEVICE(TTI_VID, TTI_QL355P_PID) },
  564. { USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) },
  565. { USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
  566. { USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
  567. { USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },
  568. { USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) },
  569. { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) },
  570. { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) },
  571. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) },
  572. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) },
  573. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) },
  574. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) },
  575. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) },
  576. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) },
  577. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) },
  578. { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) },
  579. { USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) },
  580. { USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) },
  581. { USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) },
  582. { USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) },
  583. { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) },
  584. { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) },
  585. { USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) },
  586. { USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) },
  587. { USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) },
  588. { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) },
  589. { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) },
  590. { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) },
  591. { USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
  592. { USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) },
  593. { USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) },
  594. { USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
  595. { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
  596. { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) },
  597. { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) },
  598. { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) },
  599. { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16IC_PID) },
  600. { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) },
  601. { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) },
  602. { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) },
  603. { USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) },
  604. { USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) },
  605. { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) },
  606. { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) },
  607. { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) },
  608. { USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) },
  609. { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) },
  610. { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) },
  611. { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) },
  612. { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) },
  613. { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) },
  614. { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) },
  615. { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) },
  616. { USB_DEVICE(FTDI_VID, FTDI_GAMMA_SCOUT_PID) },
  617. { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13M_PID) },
  618. { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) },
  619. { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) },
  620. { USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) },
  621. { USB_DEVICE(TELLDUS_VID, TELLDUS_TELLSTICK_PID) },
  622. { USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) },
  623. { USB_DEVICE(TML_VID, TML_USB_SERIAL_PID) },
  624. { USB_DEVICE(FTDI_VID, FTDI_ELSTER_UNICOM_PID) },
  625. { USB_DEVICE(FTDI_VID, FTDI_PROPOX_JTAGCABLEII_PID) },
  626. { USB_DEVICE(OLIMEX_VID, OLIMEX_ARM_USB_OCD_PID),
  627. .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
  628. { USB_DEVICE(FIC_VID, FIC_NEO1973_DEBUG_PID),
  629. .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
  630. { USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID),
  631. .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
  632. { USB_DEVICE(RATOC_VENDOR_ID, RATOC_PRODUCT_ID_USB60F) },
  633. { USB_DEVICE(FTDI_VID, FTDI_REU_TINY_PID) },
  634. { }, /* Optional parameter entry */
  635. { } /* Terminating entry */
  636. };
  637. MODULE_DEVICE_TABLE(usb, id_table_combined);
  638. static struct usb_driver ftdi_driver = {
  639. .name = "ftdi_sio",
  640. .probe = usb_serial_probe,
  641. .disconnect = usb_serial_disconnect,
  642. .id_table = id_table_combined,
  643. .no_dynamic_id = 1,
  644. };
  645. static const char *ftdi_chip_name[] = {
  646. [SIO] = "SIO", /* the serial part of FT8U100AX */
  647. [FT8U232AM] = "FT8U232AM",
  648. [FT232BM] = "FT232BM",
  649. [FT2232C] = "FT2232C",
  650. [FT232RL] = "FT232RL",
  651. };
  652. /* Constants for read urb and write urb */
  653. #define BUFSZ 512
  654. #define PKTSZ 64
  655. /* rx_flags */
  656. #define THROTTLED 0x01
  657. #define ACTUALLY_THROTTLED 0x02
  658. /* Used for TIOCMIWAIT */
  659. #define FTDI_STATUS_B0_MASK (FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD)
  660. #define FTDI_STATUS_B1_MASK (FTDI_RS_BI)
  661. /* End TIOCMIWAIT */
  662. #define FTDI_IMPL_ASYNC_FLAGS = (ASYNC_SPD_HI | ASYNC_SPD_VHI \
  663. | ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP)
  664. /* function prototypes for a FTDI serial converter */
  665. static int ftdi_sio_probe(struct usb_serial *serial,
  666. const struct usb_device_id *id);
  667. static void ftdi_shutdown(struct usb_serial *serial);
  668. static int ftdi_sio_port_probe(struct usb_serial_port *port);
  669. static int ftdi_sio_port_remove(struct usb_serial_port *port);
  670. static int ftdi_open(struct tty_struct *tty,
  671. struct usb_serial_port *port, struct file *filp);
  672. static void ftdi_close(struct tty_struct *tty,
  673. struct usb_serial_port *port, struct file *filp);
  674. static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port,
  675. const unsigned char *buf, int count);
  676. static int ftdi_write_room(struct tty_struct *tty);
  677. static int ftdi_chars_in_buffer(struct tty_struct *tty);
  678. static void ftdi_write_bulk_callback(struct urb *urb);
  679. static void ftdi_read_bulk_callback(struct urb *urb);
  680. static void ftdi_process_read(struct work_struct *work);
  681. static void ftdi_set_termios(struct tty_struct *tty,
  682. struct usb_serial_port *port, struct ktermios *old);
  683. static int ftdi_tiocmget(struct tty_struct *tty, struct file *file);
  684. static int ftdi_tiocmset(struct tty_struct *tty, struct file *file,
  685. unsigned int set, unsigned int clear);
  686. static int ftdi_ioctl(struct tty_struct *tty, struct file *file,
  687. unsigned int cmd, unsigned long arg);
  688. static void ftdi_break_ctl(struct tty_struct *tty, int break_state);
  689. static void ftdi_throttle(struct tty_struct *tty);
  690. static void ftdi_unthrottle(struct tty_struct *tty);
  691. static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base);
  692. static unsigned short int ftdi_232am_baud_to_divisor(int baud);
  693. static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base);
  694. static __u32 ftdi_232bm_baud_to_divisor(int baud);
  695. static struct usb_serial_driver ftdi_sio_device = {
  696. .driver = {
  697. .owner = THIS_MODULE,
  698. .name = "ftdi_sio",
  699. },
  700. .description = "FTDI USB Serial Device",
  701. .usb_driver = &ftdi_driver ,
  702. .id_table = id_table_combined,
  703. .num_ports = 1,
  704. .probe = ftdi_sio_probe,
  705. .port_probe = ftdi_sio_port_probe,
  706. .port_remove = ftdi_sio_port_remove,
  707. .open = ftdi_open,
  708. .close = ftdi_close,
  709. .throttle = ftdi_throttle,
  710. .unthrottle = ftdi_unthrottle,
  711. .write = ftdi_write,
  712. .write_room = ftdi_write_room,
  713. .chars_in_buffer = ftdi_chars_in_buffer,
  714. .read_bulk_callback = ftdi_read_bulk_callback,
  715. .write_bulk_callback = ftdi_write_bulk_callback,
  716. .tiocmget = ftdi_tiocmget,
  717. .tiocmset = ftdi_tiocmset,
  718. .ioctl = ftdi_ioctl,
  719. .set_termios = ftdi_set_termios,
  720. .break_ctl = ftdi_break_ctl,
  721. .shutdown = ftdi_shutdown,
  722. };
  723. #define WDR_TIMEOUT 5000 /* default urb timeout */
  724. #define WDR_SHORT_TIMEOUT 1000 /* shorter urb timeout */
  725. /* High and low are for DTR, RTS etc etc */
  726. #define HIGH 1
  727. #define LOW 0
  728. /* number of outstanding urbs to prevent userspace DoS from happening */
  729. #define URB_UPPER_LIMIT 42
  730. /*
  731. * ***************************************************************************
  732. * Utility functions
  733. * ***************************************************************************
  734. */
  735. static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base)
  736. {
  737. unsigned short int divisor;
  738. /* divisor shifted 3 bits to the left */
  739. int divisor3 = base / 2 / baud;
  740. if ((divisor3 & 0x7) == 7)
  741. divisor3++; /* round x.7/8 up to x+1 */
  742. divisor = divisor3 >> 3;
  743. divisor3 &= 0x7;
  744. if (divisor3 == 1)
  745. divisor |= 0xc000;
  746. else if (divisor3 >= 4)
  747. divisor |= 0x4000;
  748. else if (divisor3 != 0)
  749. divisor |= 0x8000;
  750. else if (divisor == 1)
  751. divisor = 0; /* special case for maximum baud rate */
  752. return divisor;
  753. }
  754. static unsigned short int ftdi_232am_baud_to_divisor(int baud)
  755. {
  756. return ftdi_232am_baud_base_to_divisor(baud, 48000000);
  757. }
  758. static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base)
  759. {
  760. static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
  761. __u32 divisor;
  762. /* divisor shifted 3 bits to the left */
  763. int divisor3 = base / 2 / baud;
  764. divisor = divisor3 >> 3;
  765. divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
  766. /* Deal with special cases for highest baud rates. */
  767. if (divisor == 1)
  768. divisor = 0;
  769. else if (divisor == 0x4001)
  770. divisor = 1;
  771. return divisor;
  772. }
  773. static __u32 ftdi_232bm_baud_to_divisor(int baud)
  774. {
  775. return ftdi_232bm_baud_base_to_divisor(baud, 48000000);
  776. }
  777. #define set_mctrl(port, set) update_mctrl((port), (set), 0)
  778. #define clear_mctrl(port, clear) update_mctrl((port), 0, (clear))
  779. static int update_mctrl(struct usb_serial_port *port, unsigned int set,
  780. unsigned int clear)
  781. {
  782. struct ftdi_private *priv = usb_get_serial_port_data(port);
  783. char *buf;
  784. unsigned urb_value;
  785. int rv;
  786. if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
  787. dbg("%s - DTR|RTS not being set|cleared", __func__);
  788. return 0; /* no change */
  789. }
  790. buf = kmalloc(1, GFP_NOIO);
  791. if (!buf)
  792. return -ENOMEM;
  793. clear &= ~set; /* 'set' takes precedence over 'clear' */
  794. urb_value = 0;
  795. if (clear & TIOCM_DTR)
  796. urb_value |= FTDI_SIO_SET_DTR_LOW;
  797. if (clear & TIOCM_RTS)
  798. urb_value |= FTDI_SIO_SET_RTS_LOW;
  799. if (set & TIOCM_DTR)
  800. urb_value |= FTDI_SIO_SET_DTR_HIGH;
  801. if (set & TIOCM_RTS)
  802. urb_value |= FTDI_SIO_SET_RTS_HIGH;
  803. rv = usb_control_msg(port->serial->dev,
  804. usb_sndctrlpipe(port->serial->dev, 0),
  805. FTDI_SIO_SET_MODEM_CTRL_REQUEST,
  806. FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE,
  807. urb_value, priv->interface,
  808. buf, 0, WDR_TIMEOUT);
  809. kfree(buf);
  810. if (rv < 0) {
  811. err("%s Error from MODEM_CTRL urb: DTR %s, RTS %s",
  812. __func__,
  813. (set & TIOCM_DTR) ? "HIGH" :
  814. (clear & TIOCM_DTR) ? "LOW" : "unchanged",
  815. (set & TIOCM_RTS) ? "HIGH" :
  816. (clear & TIOCM_RTS) ? "LOW" : "unchanged");
  817. } else {
  818. dbg("%s - DTR %s, RTS %s", __func__,
  819. (set & TIOCM_DTR) ? "HIGH" :
  820. (clear & TIOCM_DTR) ? "LOW" : "unchanged",
  821. (set & TIOCM_RTS) ? "HIGH" :
  822. (clear & TIOCM_RTS) ? "LOW" : "unchanged");
  823. /* FIXME: locking on last_dtr_rts */
  824. priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set;
  825. }
  826. return rv;
  827. }
  828. static __u32 get_ftdi_divisor(struct tty_struct *tty,
  829. struct usb_serial_port *port)
  830. { /* get_ftdi_divisor */
  831. struct ftdi_private *priv = usb_get_serial_port_data(port);
  832. __u32 div_value = 0;
  833. int div_okay = 1;
  834. int baud;
  835. /*
  836. * The logic involved in setting the baudrate can be cleanly split into
  837. * 3 steps.
  838. * 1. Standard baud rates are set in tty->termios->c_cflag
  839. * 2. If these are not enough, you can set any speed using alt_speed as
  840. * follows:
  841. * - set tty->termios->c_cflag speed to B38400
  842. * - set your real speed in tty->alt_speed; it gets ignored when
  843. * alt_speed==0, (or)
  844. * - call TIOCSSERIAL ioctl with (struct serial_struct) set as
  845. * follows:
  846. * flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP],
  847. * this just sets alt_speed to (HI: 57600, VHI: 115200,
  848. * SHI: 230400, WARP: 460800)
  849. * ** Steps 1, 2 are done courtesy of tty_get_baud_rate
  850. * 3. You can also set baud rate by setting custom divisor as follows
  851. * - set tty->termios->c_cflag speed to B38400
  852. * - call TIOCSSERIAL ioctl with (struct serial_struct) set as
  853. * follows:
  854. * o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST
  855. * o custom_divisor set to baud_base / your_new_baudrate
  856. * ** Step 3 is done courtesy of code borrowed from serial.c
  857. * I should really spend some time and separate + move this common
  858. * code to serial.c, it is replicated in nearly every serial driver
  859. * you see.
  860. */
  861. /* 1. Get the baud rate from the tty settings, this observes
  862. alt_speed hack */
  863. baud = tty_get_baud_rate(tty);
  864. dbg("%s - tty_get_baud_rate reports speed %d", __func__, baud);
  865. /* 2. Observe async-compatible custom_divisor hack, update baudrate
  866. if needed */
  867. if (baud == 38400 &&
  868. ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
  869. (priv->custom_divisor)) {
  870. baud = priv->baud_base / priv->custom_divisor;
  871. dbg("%s - custom divisor %d sets baud rate to %d",
  872. __func__, priv->custom_divisor, baud);
  873. }
  874. /* 3. Convert baudrate to device-specific divisor */
  875. if (!baud)
  876. baud = 9600;
  877. switch (priv->chip_type) {
  878. case SIO: /* SIO chip */
  879. switch (baud) {
  880. case 300: div_value = ftdi_sio_b300; break;
  881. case 600: div_value = ftdi_sio_b600; break;
  882. case 1200: div_value = ftdi_sio_b1200; break;
  883. case 2400: div_value = ftdi_sio_b2400; break;
  884. case 4800: div_value = ftdi_sio_b4800; break;
  885. case 9600: div_value = ftdi_sio_b9600; break;
  886. case 19200: div_value = ftdi_sio_b19200; break;
  887. case 38400: div_value = ftdi_sio_b38400; break;
  888. case 57600: div_value = ftdi_sio_b57600; break;
  889. case 115200: div_value = ftdi_sio_b115200; break;
  890. } /* baud */
  891. if (div_value == 0) {
  892. dbg("%s - Baudrate (%d) requested is not supported",
  893. __func__, baud);
  894. div_value = ftdi_sio_b9600;
  895. baud = 9600;
  896. div_okay = 0;
  897. }
  898. break;
  899. case FT8U232AM: /* 8U232AM chip */
  900. if (baud <= 3000000) {
  901. div_value = ftdi_232am_baud_to_divisor(baud);
  902. } else {
  903. dbg("%s - Baud rate too high!", __func__);
  904. baud = 9600;
  905. div_value = ftdi_232am_baud_to_divisor(9600);
  906. div_okay = 0;
  907. }
  908. break;
  909. case FT232BM: /* FT232BM chip */
  910. case FT2232C: /* FT2232C chip */
  911. case FT232RL:
  912. if (baud <= 3000000) {
  913. div_value = ftdi_232bm_baud_to_divisor(baud);
  914. } else {
  915. dbg("%s - Baud rate too high!", __func__);
  916. div_value = ftdi_232bm_baud_to_divisor(9600);
  917. div_okay = 0;
  918. baud = 9600;
  919. }
  920. break;
  921. } /* priv->chip_type */
  922. if (div_okay) {
  923. dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s",
  924. __func__, baud, (unsigned long)div_value,
  925. ftdi_chip_name[priv->chip_type]);
  926. }
  927. tty_encode_baud_rate(tty, baud, baud);
  928. return div_value;
  929. }
  930. static int change_speed(struct tty_struct *tty, struct usb_serial_port *port)
  931. {
  932. struct ftdi_private *priv = usb_get_serial_port_data(port);
  933. char *buf;
  934. __u16 urb_value;
  935. __u16 urb_index;
  936. __u32 urb_index_value;
  937. int rv;
  938. buf = kmalloc(1, GFP_NOIO);
  939. if (!buf)
  940. return -ENOMEM;
  941. urb_index_value = get_ftdi_divisor(tty, port);
  942. urb_value = (__u16)urb_index_value;
  943. urb_index = (__u16)(urb_index_value >> 16);
  944. if (priv->interface) { /* FT2232C */
  945. urb_index = (__u16)((urb_index << 8) | priv->interface);
  946. }
  947. rv = usb_control_msg(port->serial->dev,
  948. usb_sndctrlpipe(port->serial->dev, 0),
  949. FTDI_SIO_SET_BAUDRATE_REQUEST,
  950. FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE,
  951. urb_value, urb_index,
  952. buf, 0, WDR_SHORT_TIMEOUT);
  953. kfree(buf);
  954. return rv;
  955. }
  956. static int get_serial_info(struct usb_serial_port *port,
  957. struct serial_struct __user *retinfo)
  958. {
  959. struct ftdi_private *priv = usb_get_serial_port_data(port);
  960. struct serial_struct tmp;
  961. if (!retinfo)
  962. return -EFAULT;
  963. memset(&tmp, 0, sizeof(tmp));
  964. tmp.flags = priv->flags;
  965. tmp.baud_base = priv->baud_base;
  966. tmp.custom_divisor = priv->custom_divisor;
  967. if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
  968. return -EFAULT;
  969. return 0;
  970. } /* get_serial_info */
  971. static int set_serial_info(struct tty_struct *tty,
  972. struct usb_serial_port *port, struct serial_struct __user *newinfo)
  973. { /* set_serial_info */
  974. struct ftdi_private *priv = usb_get_serial_port_data(port);
  975. struct serial_struct new_serial;
  976. struct ftdi_private old_priv;
  977. if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
  978. return -EFAULT;
  979. old_priv = *priv;
  980. /* Do error checking and permission checking */
  981. if (!capable(CAP_SYS_ADMIN)) {
  982. if (((new_serial.flags & ~ASYNC_USR_MASK) !=
  983. (priv->flags & ~ASYNC_USR_MASK)))
  984. return -EPERM;
  985. priv->flags = ((priv->flags & ~ASYNC_USR_MASK) |
  986. (new_serial.flags & ASYNC_USR_MASK));
  987. priv->custom_divisor = new_serial.custom_divisor;
  988. goto check_and_exit;
  989. }
  990. if ((new_serial.baud_base != priv->baud_base) &&
  991. (new_serial.baud_base < 9600))
  992. return -EINVAL;
  993. /* Make the changes - these are privileged changes! */
  994. priv->flags = ((priv->flags & ~ASYNC_FLAGS) |
  995. (new_serial.flags & ASYNC_FLAGS));
  996. priv->custom_divisor = new_serial.custom_divisor;
  997. tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
  998. check_and_exit:
  999. if ((old_priv.flags & ASYNC_SPD_MASK) !=
  1000. (priv->flags & ASYNC_SPD_MASK)) {
  1001. if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
  1002. tty->alt_speed = 57600;
  1003. else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
  1004. tty->alt_speed = 115200;
  1005. else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
  1006. tty->alt_speed = 230400;
  1007. else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
  1008. tty->alt_speed = 460800;
  1009. else
  1010. tty->alt_speed = 0;
  1011. }
  1012. if (((old_priv.flags & ASYNC_SPD_MASK) !=
  1013. (priv->flags & ASYNC_SPD_MASK)) ||
  1014. (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
  1015. (old_priv.custom_divisor != priv->custom_divisor))) {
  1016. change_speed(tty, port);
  1017. }
  1018. return 0;
  1019. } /* set_serial_info */
  1020. /* Determine type of FTDI chip based on USB config and descriptor. */
  1021. static void ftdi_determine_type(struct usb_serial_port *port)
  1022. {
  1023. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1024. struct usb_serial *serial = port->serial;
  1025. struct usb_device *udev = serial->dev;
  1026. unsigned version;
  1027. unsigned interfaces;
  1028. /* Assume it is not the original SIO device for now. */
  1029. priv->baud_base = 48000000 / 2;
  1030. priv->write_offset = 0;
  1031. version = le16_to_cpu(udev->descriptor.bcdDevice);
  1032. interfaces = udev->actconfig->desc.bNumInterfaces;
  1033. dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __func__,
  1034. version, interfaces);
  1035. if (interfaces > 1) {
  1036. int inter;
  1037. /* Multiple interfaces. Assume FT2232C. */
  1038. priv->chip_type = FT2232C;
  1039. /* Determine interface code. */
  1040. inter = serial->interface->altsetting->desc.bInterfaceNumber;
  1041. if (inter == 0)
  1042. priv->interface = PIT_SIOA;
  1043. else
  1044. priv->interface = PIT_SIOB;
  1045. /* BM-type devices have a bug where bcdDevice gets set
  1046. * to 0x200 when iSerialNumber is 0. */
  1047. if (version < 0x500) {
  1048. dbg("%s: something fishy - bcdDevice too low for multi-interface device",
  1049. __func__);
  1050. }
  1051. } else if (version < 0x200) {
  1052. /* Old device. Assume its the original SIO. */
  1053. priv->chip_type = SIO;
  1054. priv->baud_base = 12000000 / 16;
  1055. priv->write_offset = 1;
  1056. } else if (version < 0x400) {
  1057. /* Assume its an FT8U232AM (or FT8U245AM) */
  1058. /* (It might be a BM because of the iSerialNumber bug,
  1059. * but it will still work as an AM device.) */
  1060. priv->chip_type = FT8U232AM;
  1061. } else if (version < 0x600) {
  1062. /* Assume its an FT232BM (or FT245BM) */
  1063. priv->chip_type = FT232BM;
  1064. } else {
  1065. /* Assume its an FT232R */
  1066. priv->chip_type = FT232RL;
  1067. }
  1068. info("Detected %s", ftdi_chip_name[priv->chip_type]);
  1069. }
  1070. /*
  1071. * ***************************************************************************
  1072. * Sysfs Attribute
  1073. * ***************************************************************************
  1074. */
  1075. static ssize_t show_latency_timer(struct device *dev,
  1076. struct device_attribute *attr, char *buf)
  1077. {
  1078. struct usb_serial_port *port = to_usb_serial_port(dev);
  1079. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1080. struct usb_device *udev = port->serial->dev;
  1081. unsigned short latency = 0;
  1082. int rv = 0;
  1083. dbg("%s", __func__);
  1084. rv = usb_control_msg(udev,
  1085. usb_rcvctrlpipe(udev, 0),
  1086. FTDI_SIO_GET_LATENCY_TIMER_REQUEST,
  1087. FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE,
  1088. 0, priv->interface,
  1089. (char *) &latency, 1, WDR_TIMEOUT);
  1090. if (rv < 0) {
  1091. dev_err(dev, "Unable to read latency timer: %i\n", rv);
  1092. return -EIO;
  1093. }
  1094. return sprintf(buf, "%i\n", latency);
  1095. }
  1096. /* Write a new value of the latency timer, in units of milliseconds. */
  1097. static ssize_t store_latency_timer(struct device *dev,
  1098. struct device_attribute *attr, const char *valbuf,
  1099. size_t count)
  1100. {
  1101. struct usb_serial_port *port = to_usb_serial_port(dev);
  1102. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1103. struct usb_device *udev = port->serial->dev;
  1104. char buf[1];
  1105. int v = simple_strtoul(valbuf, NULL, 10);
  1106. int rv = 0;
  1107. dbg("%s: setting latency timer = %i", __func__, v);
  1108. rv = usb_control_msg(udev,
  1109. usb_sndctrlpipe(udev, 0),
  1110. FTDI_SIO_SET_LATENCY_TIMER_REQUEST,
  1111. FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE,
  1112. v, priv->interface,
  1113. buf, 0, WDR_TIMEOUT);
  1114. if (rv < 0) {
  1115. dev_err(dev, "Unable to write latency timer: %i\n", rv);
  1116. return -EIO;
  1117. }
  1118. return count;
  1119. }
  1120. /* Write an event character directly to the FTDI register. The ASCII
  1121. value is in the low 8 bits, with the enable bit in the 9th bit. */
  1122. static ssize_t store_event_char(struct device *dev,
  1123. struct device_attribute *attr, const char *valbuf, size_t count)
  1124. {
  1125. struct usb_serial_port *port = to_usb_serial_port(dev);
  1126. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1127. struct usb_device *udev = port->serial->dev;
  1128. char buf[1];
  1129. int v = simple_strtoul(valbuf, NULL, 10);
  1130. int rv = 0;
  1131. dbg("%s: setting event char = %i", __func__, v);
  1132. rv = usb_control_msg(udev,
  1133. usb_sndctrlpipe(udev, 0),
  1134. FTDI_SIO_SET_EVENT_CHAR_REQUEST,
  1135. FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE,
  1136. v, priv->interface,
  1137. buf, 0, WDR_TIMEOUT);
  1138. if (rv < 0) {
  1139. dbg("Unable to write event character: %i", rv);
  1140. return -EIO;
  1141. }
  1142. return count;
  1143. }
  1144. static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer,
  1145. store_latency_timer);
  1146. static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char);
  1147. static int create_sysfs_attrs(struct usb_serial_port *port)
  1148. {
  1149. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1150. int retval = 0;
  1151. dbg("%s", __func__);
  1152. /* XXX I've no idea if the original SIO supports the event_char
  1153. * sysfs parameter, so I'm playing it safe. */
  1154. if (priv->chip_type != SIO) {
  1155. dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]);
  1156. retval = device_create_file(&port->dev, &dev_attr_event_char);
  1157. if ((!retval) &&
  1158. (priv->chip_type == FT232BM ||
  1159. priv->chip_type == FT2232C ||
  1160. priv->chip_type == FT232RL)) {
  1161. retval = device_create_file(&port->dev,
  1162. &dev_attr_latency_timer);
  1163. }
  1164. }
  1165. return retval;
  1166. }
  1167. static void remove_sysfs_attrs(struct usb_serial_port *port)
  1168. {
  1169. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1170. dbg("%s", __func__);
  1171. /* XXX see create_sysfs_attrs */
  1172. if (priv->chip_type != SIO) {
  1173. device_remove_file(&port->dev, &dev_attr_event_char);
  1174. if (priv->chip_type == FT232BM ||
  1175. priv->chip_type == FT2232C ||
  1176. priv->chip_type == FT232RL) {
  1177. device_remove_file(&port->dev, &dev_attr_latency_timer);
  1178. }
  1179. }
  1180. }
  1181. /*
  1182. * ***************************************************************************
  1183. * FTDI driver specific functions
  1184. * ***************************************************************************
  1185. */
  1186. /* Probe function to check for special devices */
  1187. static int ftdi_sio_probe(struct usb_serial *serial,
  1188. const struct usb_device_id *id)
  1189. {
  1190. struct ftdi_sio_quirk *quirk =
  1191. (struct ftdi_sio_quirk *)id->driver_info;
  1192. if (quirk && quirk->probe) {
  1193. int ret = quirk->probe(serial);
  1194. if (ret != 0)
  1195. return ret;
  1196. }
  1197. usb_set_serial_data(serial, (void *)id->driver_info);
  1198. return 0;
  1199. }
  1200. static int ftdi_sio_port_probe(struct usb_serial_port *port)
  1201. {
  1202. struct ftdi_private *priv;
  1203. struct ftdi_sio_quirk *quirk = usb_get_serial_data(port->serial);
  1204. dbg("%s", __func__);
  1205. priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL);
  1206. if (!priv) {
  1207. err("%s- kmalloc(%Zd) failed.", __func__,
  1208. sizeof(struct ftdi_private));
  1209. return -ENOMEM;
  1210. }
  1211. spin_lock_init(&priv->rx_lock);
  1212. spin_lock_init(&priv->tx_lock);
  1213. init_waitqueue_head(&priv->delta_msr_wait);
  1214. /* This will push the characters through immediately rather
  1215. than queue a task to deliver them */
  1216. priv->flags = ASYNC_LOW_LATENCY;
  1217. if (quirk && quirk->port_probe)
  1218. quirk->port_probe(priv);
  1219. /* Increase the size of read buffers */
  1220. kfree(port->bulk_in_buffer);
  1221. port->bulk_in_buffer = kmalloc(BUFSZ, GFP_KERNEL);
  1222. if (!port->bulk_in_buffer) {
  1223. kfree(priv);
  1224. return -ENOMEM;
  1225. }
  1226. if (port->read_urb) {
  1227. port->read_urb->transfer_buffer = port->bulk_in_buffer;
  1228. port->read_urb->transfer_buffer_length = BUFSZ;
  1229. }
  1230. INIT_DELAYED_WORK(&priv->rx_work, ftdi_process_read);
  1231. priv->port = port;
  1232. /* Free port's existing write urb and transfer buffer. */
  1233. if (port->write_urb) {
  1234. usb_free_urb(port->write_urb);
  1235. port->write_urb = NULL;
  1236. }
  1237. kfree(port->bulk_out_buffer);
  1238. port->bulk_out_buffer = NULL;
  1239. usb_set_serial_port_data(port, priv);
  1240. ftdi_determine_type(port);
  1241. create_sysfs_attrs(port);
  1242. return 0;
  1243. }
  1244. /* Setup for the USB-UIRT device, which requires hardwired
  1245. * baudrate (38400 gets mapped to 312500) */
  1246. /* Called from usbserial:serial_probe */
  1247. static void ftdi_USB_UIRT_setup(struct ftdi_private *priv)
  1248. {
  1249. dbg("%s", __func__);
  1250. priv->flags |= ASYNC_SPD_CUST;
  1251. priv->custom_divisor = 77;
  1252. priv->force_baud = 38400;
  1253. } /* ftdi_USB_UIRT_setup */
  1254. /* Setup for the HE-TIRA1 device, which requires hardwired
  1255. * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled. */
  1256. static void ftdi_HE_TIRA1_setup(struct ftdi_private *priv)
  1257. {
  1258. dbg("%s", __func__);
  1259. priv->flags |= ASYNC_SPD_CUST;
  1260. priv->custom_divisor = 240;
  1261. priv->force_baud = 38400;
  1262. priv->force_rtscts = 1;
  1263. } /* ftdi_HE_TIRA1_setup */
  1264. /*
  1265. * First port on JTAG adaptors such as Olimex arm-usb-ocd or the FIC/OpenMoko
  1266. * Neo1973 Debug Board is reserved for JTAG interface and can be accessed from
  1267. * userspace using openocd.
  1268. */
  1269. static int ftdi_jtag_probe(struct usb_serial *serial)
  1270. {
  1271. struct usb_device *udev = serial->dev;
  1272. struct usb_interface *interface = serial->interface;
  1273. dbg("%s", __func__);
  1274. if (interface == udev->actconfig->interface[0]) {
  1275. info("Ignoring serial port reserved for JTAG");
  1276. return -ENODEV;
  1277. }
  1278. return 0;
  1279. }
  1280. /*
  1281. * The Matrix Orbital VK204-25-USB has an invalid IN endpoint.
  1282. * We have to correct it if we want to read from it.
  1283. */
  1284. static int ftdi_mtxorb_hack_setup(struct usb_serial *serial)
  1285. {
  1286. struct usb_host_endpoint *ep = serial->dev->ep_in[1];
  1287. struct usb_endpoint_descriptor *ep_desc = &ep->desc;
  1288. if (ep->enabled && ep_desc->wMaxPacketSize == 0) {
  1289. ep_desc->wMaxPacketSize = cpu_to_le16(0x40);
  1290. info("Fixing invalid wMaxPacketSize on read pipe");
  1291. }
  1292. return 0;
  1293. }
  1294. /* ftdi_shutdown is called from usbserial:usb_serial_disconnect
  1295. * it is called when the usb device is disconnected
  1296. *
  1297. * usbserial:usb_serial_disconnect
  1298. * calls __serial_close for each open of the port
  1299. * shutdown is called then (ie ftdi_shutdown)
  1300. */
  1301. static void ftdi_shutdown(struct usb_serial *serial)
  1302. {
  1303. dbg("%s", __func__);
  1304. }
  1305. static int ftdi_sio_port_remove(struct usb_serial_port *port)
  1306. {
  1307. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1308. dbg("%s", __func__);
  1309. remove_sysfs_attrs(port);
  1310. /* all open ports are closed at this point
  1311. * (by usbserial.c:__serial_close, which calls ftdi_close)
  1312. */
  1313. if (priv) {
  1314. usb_set_serial_port_data(port, NULL);
  1315. kfree(priv);
  1316. }
  1317. return 0;
  1318. }
  1319. static int ftdi_open(struct tty_struct *tty,
  1320. struct usb_serial_port *port, struct file *filp)
  1321. { /* ftdi_open */
  1322. struct usb_device *dev = port->serial->dev;
  1323. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1324. unsigned long flags;
  1325. int result = 0;
  1326. char buf[1]; /* Needed for the usb_control_msg I think */
  1327. dbg("%s", __func__);
  1328. spin_lock_irqsave(&priv->tx_lock, flags);
  1329. priv->tx_bytes = 0;
  1330. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1331. spin_lock_irqsave(&priv->rx_lock, flags);
  1332. priv->rx_bytes = 0;
  1333. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1334. if (tty)
  1335. tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
  1336. /* No error checking for this (will get errors later anyway) */
  1337. /* See ftdi_sio.h for description of what is reset */
  1338. usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  1339. FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE,
  1340. FTDI_SIO_RESET_SIO,
  1341. priv->interface, buf, 0, WDR_TIMEOUT);
  1342. /* Termios defaults are set by usb_serial_init. We don't change
  1343. port->tty->termios - this would loose speed settings, etc.
  1344. This is same behaviour as serial.c/rs_open() - Kuba */
  1345. /* ftdi_set_termios will send usb control messages */
  1346. if (tty)
  1347. ftdi_set_termios(tty, port, tty->termios);
  1348. /* FIXME: Flow control might be enabled, so it should be checked -
  1349. we have no control of defaults! */
  1350. /* Turn on RTS and DTR since we are not flow controlling by default */
  1351. set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
  1352. /* Not throttled */
  1353. spin_lock_irqsave(&priv->rx_lock, flags);
  1354. priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
  1355. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1356. /* Start reading from the device */
  1357. priv->rx_processed = 0;
  1358. usb_fill_bulk_urb(port->read_urb, dev,
  1359. usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress),
  1360. port->read_urb->transfer_buffer,
  1361. port->read_urb->transfer_buffer_length,
  1362. ftdi_read_bulk_callback, port);
  1363. result = usb_submit_urb(port->read_urb, GFP_KERNEL);
  1364. if (result)
  1365. err("%s - failed submitting read urb, error %d",
  1366. __func__, result);
  1367. return result;
  1368. } /* ftdi_open */
  1369. /*
  1370. * usbserial:__serial_close only calls ftdi_close if the point is open
  1371. *
  1372. * This only gets called when it is the last close
  1373. *
  1374. *
  1375. */
  1376. static void ftdi_close(struct tty_struct *tty,
  1377. struct usb_serial_port *port, struct file *filp)
  1378. { /* ftdi_close */
  1379. unsigned int c_cflag = tty->termios->c_cflag;
  1380. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1381. char buf[1];
  1382. dbg("%s", __func__);
  1383. mutex_lock(&port->serial->disc_mutex);
  1384. if (c_cflag & HUPCL && !port->serial->disconnected) {
  1385. /* Disable flow control */
  1386. if (usb_control_msg(port->serial->dev,
  1387. usb_sndctrlpipe(port->serial->dev, 0),
  1388. FTDI_SIO_SET_FLOW_CTRL_REQUEST,
  1389. FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
  1390. 0, priv->interface, buf, 0,
  1391. WDR_TIMEOUT) < 0) {
  1392. err("error from flowcontrol urb");
  1393. }
  1394. /* drop RTS and DTR */
  1395. clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
  1396. } /* Note change no line if hupcl is off */
  1397. mutex_unlock(&port->serial->disc_mutex);
  1398. /* cancel any scheduled reading */
  1399. cancel_delayed_work(&priv->rx_work);
  1400. flush_scheduled_work();
  1401. /* shutdown our bulk read */
  1402. usb_kill_urb(port->read_urb);
  1403. } /* ftdi_close */
  1404. /* The SIO requires the first byte to have:
  1405. * B0 1
  1406. * B1 0
  1407. * B2..7 length of message excluding byte 0
  1408. *
  1409. * The new devices do not require this byte
  1410. */
  1411. static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port,
  1412. const unsigned char *buf, int count)
  1413. { /* ftdi_write */
  1414. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1415. struct urb *urb;
  1416. unsigned char *buffer;
  1417. int data_offset ; /* will be 1 for the SIO and 0 otherwise */
  1418. int status;
  1419. int transfer_size;
  1420. unsigned long flags;
  1421. dbg("%s port %d, %d bytes", __func__, port->number, count);
  1422. if (count == 0) {
  1423. dbg("write request of 0 bytes");
  1424. return 0;
  1425. }
  1426. spin_lock_irqsave(&priv->tx_lock, flags);
  1427. if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) {
  1428. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1429. dbg("%s - write limit hit\n", __func__);
  1430. return 0;
  1431. }
  1432. priv->tx_outstanding_urbs++;
  1433. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1434. data_offset = priv->write_offset;
  1435. dbg("data_offset set to %d", data_offset);
  1436. /* Determine total transfer size */
  1437. transfer_size = count;
  1438. if (data_offset > 0) {
  1439. /* Original sio needs control bytes too... */
  1440. transfer_size += (data_offset *
  1441. ((count + (PKTSZ - 1 - data_offset)) /
  1442. (PKTSZ - data_offset)));
  1443. }
  1444. buffer = kmalloc(transfer_size, GFP_ATOMIC);
  1445. if (!buffer) {
  1446. err("%s ran out of kernel memory for urb ...", __func__);
  1447. count = -ENOMEM;
  1448. goto error_no_buffer;
  1449. }
  1450. urb = usb_alloc_urb(0, GFP_ATOMIC);
  1451. if (!urb) {
  1452. err("%s - no more free urbs", __func__);
  1453. count = -ENOMEM;
  1454. goto error_no_urb;
  1455. }
  1456. /* Copy data */
  1457. if (data_offset > 0) {
  1458. /* Original sio requires control byte at start of
  1459. each packet. */
  1460. int user_pktsz = PKTSZ - data_offset;
  1461. int todo = count;
  1462. unsigned char *first_byte = buffer;
  1463. const unsigned char *current_position = buf;
  1464. while (todo > 0) {
  1465. if (user_pktsz > todo)
  1466. user_pktsz = todo;
  1467. /* Write the control byte at the front of the packet*/
  1468. *first_byte = 1 | ((user_pktsz) << 2);
  1469. /* Copy data for packet */
  1470. memcpy(first_byte + data_offset,
  1471. current_position, user_pktsz);
  1472. first_byte += user_pktsz + data_offset;
  1473. current_position += user_pktsz;
  1474. todo -= user_pktsz;
  1475. }
  1476. } else {
  1477. /* No control byte required. */
  1478. /* Copy in the data to send */
  1479. memcpy(buffer, buf, count);
  1480. }
  1481. usb_serial_debug_data(debug, &port->dev, __func__,
  1482. transfer_size, buffer);
  1483. /* fill the buffer and send it */
  1484. usb_fill_bulk_urb(urb, port->serial->dev,
  1485. usb_sndbulkpipe(port->serial->dev,
  1486. port->bulk_out_endpointAddress),
  1487. buffer, transfer_size,
  1488. ftdi_write_bulk_callback, port);
  1489. status = usb_submit_urb(urb, GFP_ATOMIC);
  1490. if (status) {
  1491. err("%s - failed submitting write urb, error %d",
  1492. __func__, status);
  1493. count = status;
  1494. goto error;
  1495. } else {
  1496. spin_lock_irqsave(&priv->tx_lock, flags);
  1497. priv->tx_outstanding_bytes += count;
  1498. priv->tx_bytes += count;
  1499. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1500. }
  1501. /* we are done with this urb, so let the host driver
  1502. * really free it when it is finished with it */
  1503. usb_free_urb(urb);
  1504. dbg("%s write returning: %d", __func__, count);
  1505. return count;
  1506. error:
  1507. usb_free_urb(urb);
  1508. error_no_urb:
  1509. kfree(buffer);
  1510. error_no_buffer:
  1511. spin_lock_irqsave(&priv->tx_lock, flags);
  1512. priv->tx_outstanding_urbs--;
  1513. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1514. return count;
  1515. } /* ftdi_write */
  1516. /* This function may get called when the device is closed */
  1517. static void ftdi_write_bulk_callback(struct urb *urb)
  1518. {
  1519. unsigned long flags;
  1520. struct usb_serial_port *port = urb->context;
  1521. struct ftdi_private *priv;
  1522. int data_offset; /* will be 1 for the SIO and 0 otherwise */
  1523. unsigned long countback;
  1524. int status = urb->status;
  1525. /* free up the transfer buffer, as usb_free_urb() does not do this */
  1526. kfree(urb->transfer_buffer);
  1527. dbg("%s - port %d", __func__, port->number);
  1528. if (status) {
  1529. dbg("nonzero write bulk status received: %d", status);
  1530. return;
  1531. }
  1532. priv = usb_get_serial_port_data(port);
  1533. if (!priv) {
  1534. dbg("%s - bad port private data pointer - exiting", __func__);
  1535. return;
  1536. }
  1537. /* account for transferred data */
  1538. countback = urb->actual_length;
  1539. data_offset = priv->write_offset;
  1540. if (data_offset > 0) {
  1541. /* Subtract the control bytes */
  1542. countback -= (data_offset * DIV_ROUND_UP(countback, PKTSZ));
  1543. }
  1544. spin_lock_irqsave(&priv->tx_lock, flags);
  1545. --priv->tx_outstanding_urbs;
  1546. priv->tx_outstanding_bytes -= countback;
  1547. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1548. usb_serial_port_softint(port);
  1549. } /* ftdi_write_bulk_callback */
  1550. static int ftdi_write_room(struct tty_struct *tty)
  1551. {
  1552. struct usb_serial_port *port = tty->driver_data;
  1553. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1554. int room;
  1555. unsigned long flags;
  1556. dbg("%s - port %d", __func__, port->number);
  1557. spin_lock_irqsave(&priv->tx_lock, flags);
  1558. if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) {
  1559. /*
  1560. * We really can take anything the user throws at us
  1561. * but let's pick a nice big number to tell the tty
  1562. * layer that we have lots of free space
  1563. */
  1564. room = 2048;
  1565. } else {
  1566. room = 0;
  1567. }
  1568. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1569. return room;
  1570. }
  1571. static int ftdi_chars_in_buffer(struct tty_struct *tty)
  1572. {
  1573. struct usb_serial_port *port = tty->driver_data;
  1574. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1575. int buffered;
  1576. unsigned long flags;
  1577. dbg("%s - port %d", __func__, port->number);
  1578. spin_lock_irqsave(&priv->tx_lock, flags);
  1579. buffered = (int)priv->tx_outstanding_bytes;
  1580. spin_unlock_irqrestore(&priv->tx_lock, flags);
  1581. if (buffered < 0) {
  1582. err("%s outstanding tx bytes is negative!", __func__);
  1583. buffered = 0;
  1584. }
  1585. return buffered;
  1586. }
  1587. static void ftdi_read_bulk_callback(struct urb *urb)
  1588. {
  1589. struct usb_serial_port *port = urb->context;
  1590. struct tty_struct *tty;
  1591. struct ftdi_private *priv;
  1592. unsigned long countread;
  1593. unsigned long flags;
  1594. int status = urb->status;
  1595. if (urb->number_of_packets > 0) {
  1596. err("%s transfer_buffer_length %d actual_length %d number of packets %d",
  1597. __func__,
  1598. urb->transfer_buffer_length,
  1599. urb->actual_length, urb->number_of_packets);
  1600. err("%s transfer_flags %x ", __func__, urb->transfer_flags);
  1601. }
  1602. dbg("%s - port %d", __func__, port->number);
  1603. if (port->port.count <= 0)
  1604. return;
  1605. tty = port->port.tty;
  1606. if (!tty) {
  1607. dbg("%s - bad tty pointer - exiting", __func__);
  1608. return;
  1609. }
  1610. priv = usb_get_serial_port_data(port);
  1611. if (!priv) {
  1612. dbg("%s - bad port private data pointer - exiting", __func__);
  1613. return;
  1614. }
  1615. if (urb != port->read_urb)
  1616. err("%s - Not my urb!", __func__);
  1617. if (status) {
  1618. /* This will happen at close every time so it is a dbg not an
  1619. err */
  1620. dbg("(this is ok on close) nonzero read bulk status received: %d", status);
  1621. return;
  1622. }
  1623. /* count data bytes, but not status bytes */
  1624. countread = urb->actual_length;
  1625. countread -= 2 * DIV_ROUND_UP(countread, PKTSZ);
  1626. spin_lock_irqsave(&priv->rx_lock, flags);
  1627. priv->rx_bytes += countread;
  1628. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1629. ftdi_process_read(&priv->rx_work.work);
  1630. } /* ftdi_read_bulk_callback */
  1631. static void ftdi_process_read(struct work_struct *work)
  1632. { /* ftdi_process_read */
  1633. struct ftdi_private *priv =
  1634. container_of(work, struct ftdi_private, rx_work.work);
  1635. struct usb_serial_port *port = priv->port;
  1636. struct urb *urb;
  1637. struct tty_struct *tty;
  1638. char error_flag;
  1639. unsigned char *data;
  1640. int i;
  1641. int result;
  1642. int need_flip;
  1643. int packet_offset;
  1644. unsigned long flags;
  1645. dbg("%s - port %d", __func__, port->number);
  1646. if (port->port.count <= 0)
  1647. return;
  1648. tty = port->port.tty;
  1649. if (!tty) {
  1650. dbg("%s - bad tty pointer - exiting", __func__);
  1651. return;
  1652. }
  1653. priv = usb_get_serial_port_data(port);
  1654. if (!priv) {
  1655. dbg("%s - bad port private data pointer - exiting", __func__);
  1656. return;
  1657. }
  1658. urb = port->read_urb;
  1659. if (!urb) {
  1660. dbg("%s - bad read_urb pointer - exiting", __func__);
  1661. return;
  1662. }
  1663. data = urb->transfer_buffer;
  1664. if (priv->rx_processed) {
  1665. dbg("%s - already processed: %d bytes, %d remain", __func__,
  1666. priv->rx_processed,
  1667. urb->actual_length - priv->rx_processed);
  1668. } else {
  1669. /* The first two bytes of every read packet are status */
  1670. if (urb->actual_length > 2)
  1671. usb_serial_debug_data(debug, &port->dev, __func__,
  1672. urb->actual_length, data);
  1673. else
  1674. dbg("Status only: %03oo %03oo", data[0], data[1]);
  1675. }
  1676. /* TO DO -- check for hung up line and handle appropriately: */
  1677. /* send hangup */
  1678. /* See acm.c - you do a tty_hangup - eg tty_hangup(tty) */
  1679. /* if CD is dropped and the line is not CLOCAL then we should hangup */
  1680. need_flip = 0;
  1681. for (packet_offset = priv->rx_processed;
  1682. packet_offset < urb->actual_length; packet_offset += PKTSZ) {
  1683. int length;
  1684. /* Compare new line status to the old one, signal if different/
  1685. N.B. packet may be processed more than once, but differences
  1686. are only processed once. */
  1687. if (priv != NULL) {
  1688. char new_status = data[packet_offset + 0] &
  1689. FTDI_STATUS_B0_MASK;
  1690. if (new_status != priv->prev_status) {
  1691. priv->diff_status |=
  1692. new_status ^ priv->prev_status;
  1693. wake_up_interruptible(&priv->delta_msr_wait);
  1694. priv->prev_status = new_status;
  1695. }
  1696. }
  1697. length = min(PKTSZ, urb->actual_length-packet_offset)-2;
  1698. if (length < 0) {
  1699. err("%s - bad packet length: %d", __func__, length+2);
  1700. length = 0;
  1701. }
  1702. if (priv->rx_flags & THROTTLED) {
  1703. dbg("%s - throttled", __func__);
  1704. break;
  1705. }
  1706. if (tty_buffer_request_room(tty, length) < length) {
  1707. /* break out & wait for throttling/unthrottling to
  1708. happen */
  1709. dbg("%s - receive room low", __func__);
  1710. break;
  1711. }
  1712. /* Handle errors and break */
  1713. error_flag = TTY_NORMAL;
  1714. /* Although the device uses a bitmask and hence can have
  1715. multiple errors on a packet - the order here sets the
  1716. priority the error is returned to the tty layer */
  1717. if (data[packet_offset+1] & FTDI_RS_OE) {
  1718. error_flag = TTY_OVERRUN;
  1719. dbg("OVERRRUN error");
  1720. }
  1721. if (data[packet_offset+1] & FTDI_RS_BI) {
  1722. error_flag = TTY_BREAK;
  1723. dbg("BREAK received");
  1724. }
  1725. if (data[packet_offset+1] & FTDI_RS_PE) {
  1726. error_flag = TTY_PARITY;
  1727. dbg("PARITY error");
  1728. }
  1729. if (data[packet_offset+1] & FTDI_RS_FE) {
  1730. error_flag = TTY_FRAME;
  1731. dbg("FRAMING error");
  1732. }
  1733. if (length > 0) {
  1734. for (i = 2; i < length+2; i++) {
  1735. /* Note that the error flag is duplicated for
  1736. every character received since we don't know
  1737. which character it applied to */
  1738. tty_insert_flip_char(tty,
  1739. data[packet_offset + i], error_flag);
  1740. }
  1741. need_flip = 1;
  1742. }
  1743. #ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW
  1744. /* if a parity error is detected you get status packets forever
  1745. until a character is sent without a parity error.
  1746. This doesn't work well since the application receives a
  1747. never ending stream of bad data - even though new data
  1748. hasn't been sent. Therefore I (bill) have taken this out.
  1749. However - this might make sense for framing errors and so on
  1750. so I am leaving the code in for now.
  1751. */
  1752. else {
  1753. if (error_flag != TTY_NORMAL) {
  1754. dbg("error_flag is not normal");
  1755. /* In this case it is just status - if that is
  1756. an error send a bad character */
  1757. if (tty->flip.count >= TTY_FLIPBUF_SIZE)
  1758. tty_flip_buffer_push(tty);
  1759. tty_insert_flip_char(tty, 0xff, error_flag);
  1760. need_flip = 1;
  1761. }
  1762. }
  1763. #endif
  1764. } /* "for(packet_offset=0..." */
  1765. /* Low latency */
  1766. if (need_flip)
  1767. tty_flip_buffer_push(tty);
  1768. if (packet_offset < urb->actual_length) {
  1769. /* not completely processed - record progress */
  1770. priv->rx_processed = packet_offset;
  1771. dbg("%s - incomplete, %d bytes processed, %d remain",
  1772. __func__, packet_offset,
  1773. urb->actual_length - packet_offset);
  1774. /* check if we were throttled while processing */
  1775. spin_lock_irqsave(&priv->rx_lock, flags);
  1776. if (priv->rx_flags & THROTTLED) {
  1777. priv->rx_flags |= ACTUALLY_THROTTLED;
  1778. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1779. dbg("%s - deferring remainder until unthrottled",
  1780. __func__);
  1781. return;
  1782. }
  1783. spin_unlock_irqrestore(&priv->rx_lock, flags);
  1784. /* if the port is closed stop trying to read */
  1785. if (port->port.count > 0)
  1786. /* delay processing of remainder */
  1787. schedule_delayed_work(&priv->rx_work, 1);
  1788. else
  1789. dbg("%s - port is closed", __func__);
  1790. return;
  1791. }
  1792. /* urb is completely processed */
  1793. priv->rx_processed = 0;
  1794. /* if the port is closed stop trying to read */
  1795. if (port->port.count > 0) {
  1796. /* Continue trying to always read */
  1797. usb_fill_bulk_urb(port->read_urb, port->serial->dev,
  1798. usb_rcvbulkpipe(port->serial->dev,
  1799. port->bulk_in_endpointAddress),
  1800. port->read_urb->transfer_buffer,
  1801. port->read_urb->transfer_buffer_length,
  1802. ftdi_read_bulk_callback, port);
  1803. result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
  1804. if (result)
  1805. err("%s - failed resubmitting read urb, error %d",
  1806. __func__, result);
  1807. }
  1808. } /* ftdi_process_read */
  1809. static void ftdi_break_ctl(struct tty_struct *tty, int break_state)
  1810. {
  1811. struct usb_serial_port *port = tty->driver_data;
  1812. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1813. __u16 urb_value = 0;
  1814. char buf[1];
  1815. /* break_state = -1 to turn on break, and 0 to turn off break */
  1816. /* see drivers/char/tty_io.c to see it used */
  1817. /* last_set_data_urb_value NEVER has the break bit set in it */
  1818. if (break_state)
  1819. urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK;
  1820. else
  1821. urb_value = priv->last_set_data_urb_value;
  1822. if (usb_control_msg(port->serial->dev,
  1823. usb_sndctrlpipe(port->serial->dev, 0),
  1824. FTDI_SIO_SET_DATA_REQUEST,
  1825. FTDI_SIO_SET_DATA_REQUEST_TYPE,
  1826. urb_value , priv->interface,
  1827. buf, 0, WDR_TIMEOUT) < 0) {
  1828. err("%s FAILED to enable/disable break state (state was %d)",
  1829. __func__, break_state);
  1830. }
  1831. dbg("%s break state is %d - urb is %d", __func__,
  1832. break_state, urb_value);
  1833. }
  1834. /* old_termios contains the original termios settings and tty->termios contains
  1835. * the new setting to be used
  1836. * WARNING: set_termios calls this with old_termios in kernel space
  1837. */
  1838. static void ftdi_set_termios(struct tty_struct *tty,
  1839. struct usb_serial_port *port, struct ktermios *old_termios)
  1840. { /* ftdi_termios */
  1841. struct usb_device *dev = port->serial->dev;
  1842. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1843. struct ktermios *termios = tty->termios;
  1844. unsigned int cflag = termios->c_cflag;
  1845. __u16 urb_value; /* will hold the new flags */
  1846. char buf[1]; /* Perhaps I should dynamically alloc this? */
  1847. /* Added for xon/xoff support */
  1848. unsigned int iflag = termios->c_iflag;
  1849. unsigned char vstop;
  1850. unsigned char vstart;
  1851. dbg("%s", __func__);
  1852. /* Force baud rate if this device requires it, unless it is set to
  1853. B0. */
  1854. if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) {
  1855. dbg("%s: forcing baud rate for this device", __func__);
  1856. tty_encode_baud_rate(tty, priv->force_baud,
  1857. priv->force_baud);
  1858. }
  1859. /* Force RTS-CTS if this device requires it. */
  1860. if (priv->force_rtscts) {
  1861. dbg("%s: forcing rtscts for this device", __func__);
  1862. termios->c_cflag |= CRTSCTS;
  1863. }
  1864. cflag = termios->c_cflag;
  1865. /* FIXME -For this cut I don't care if the line is really changing or
  1866. not - so just do the change regardless - should be able to
  1867. compare old_termios and tty->termios */
  1868. /* NOTE These routines can get interrupted by
  1869. ftdi_sio_read_bulk_callback - need to examine what this means -
  1870. don't see any problems yet */
  1871. /* Set number of data bits, parity, stop bits */
  1872. termios->c_cflag &= ~CMSPAR;
  1873. urb_value = 0;
  1874. urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 :
  1875. FTDI_SIO_SET_DATA_STOP_BITS_1);
  1876. urb_value |= (cflag & PARENB ?
  1877. (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD :
  1878. FTDI_SIO_SET_DATA_PARITY_EVEN) :
  1879. FTDI_SIO_SET_DATA_PARITY_NONE);
  1880. if (cflag & CSIZE) {
  1881. switch (cflag & CSIZE) {
  1882. case CS5: urb_value |= 5; dbg("Setting CS5"); break;
  1883. case CS6: urb_value |= 6; dbg("Setting CS6"); break;
  1884. case CS7: urb_value |= 7; dbg("Setting CS7"); break;
  1885. case CS8: urb_value |= 8; dbg("Setting CS8"); break;
  1886. default:
  1887. err("CSIZE was set but not CS5-CS8");
  1888. }
  1889. }
  1890. /* This is needed by the break command since it uses the same command
  1891. - but is or'ed with this value */
  1892. priv->last_set_data_urb_value = urb_value;
  1893. if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  1894. FTDI_SIO_SET_DATA_REQUEST,
  1895. FTDI_SIO_SET_DATA_REQUEST_TYPE,
  1896. urb_value , priv->interface,
  1897. buf, 0, WDR_SHORT_TIMEOUT) < 0) {
  1898. err("%s FAILED to set databits/stopbits/parity", __func__);
  1899. }
  1900. /* Now do the baudrate */
  1901. if ((cflag & CBAUD) == B0) {
  1902. /* Disable flow control */
  1903. if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  1904. FTDI_SIO_SET_FLOW_CTRL_REQUEST,
  1905. FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
  1906. 0, priv->interface,
  1907. buf, 0, WDR_TIMEOUT) < 0) {
  1908. err("%s error from disable flowcontrol urb", __func__);
  1909. }
  1910. /* Drop RTS and DTR */
  1911. clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
  1912. } else {
  1913. /* set the baudrate determined before */
  1914. if (change_speed(tty, port))
  1915. err("%s urb failed to set baudrate", __func__);
  1916. /* Ensure RTS and DTR are raised when baudrate changed from 0 */
  1917. if (!old_termios || (old_termios->c_cflag & CBAUD) == B0)
  1918. set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
  1919. }
  1920. /* Set flow control */
  1921. /* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */
  1922. if (cflag & CRTSCTS) {
  1923. dbg("%s Setting to CRTSCTS flow control", __func__);
  1924. if (usb_control_msg(dev,
  1925. usb_sndctrlpipe(dev, 0),
  1926. FTDI_SIO_SET_FLOW_CTRL_REQUEST,
  1927. FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
  1928. 0 , (FTDI_SIO_RTS_CTS_HS | priv->interface),
  1929. buf, 0, WDR_TIMEOUT) < 0) {
  1930. err("urb failed to set to rts/cts flow control");
  1931. }
  1932. } else {
  1933. /*
  1934. * Xon/Xoff code
  1935. *
  1936. * Check the IXOFF status in the iflag component of the
  1937. * termios structure. If IXOFF is not set, the pre-xon/xoff
  1938. * code is executed.
  1939. */
  1940. if (iflag & IXOFF) {
  1941. dbg("%s request to enable xonxoff iflag=%04x",
  1942. __func__, iflag);
  1943. /* Try to enable the XON/XOFF on the ftdi_sio
  1944. * Set the vstart and vstop -- could have been done up
  1945. * above where a lot of other dereferencing is done but
  1946. * that would be very inefficient as vstart and vstop
  1947. * are not always needed.
  1948. */
  1949. vstart = termios->c_cc[VSTART];
  1950. vstop = termios->c_cc[VSTOP];
  1951. urb_value = (vstop << 8) | (vstart);
  1952. if (usb_control_msg(dev,
  1953. usb_sndctrlpipe(dev, 0),
  1954. FTDI_SIO_SET_FLOW_CTRL_REQUEST,
  1955. FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
  1956. urb_value , (FTDI_SIO_XON_XOFF_HS
  1957. | priv->interface),
  1958. buf, 0, WDR_TIMEOUT) < 0) {
  1959. err("urb failed to set to xon/xoff flow control");
  1960. }
  1961. } else {
  1962. /* else clause to only run if cflag ! CRTSCTS and iflag
  1963. * ! XOFF. CHECKME Assuming XON/XOFF handled by tty
  1964. * stack - not by device */
  1965. dbg("%s Turning off hardware flow control", __func__);
  1966. if (usb_control_msg(dev,
  1967. usb_sndctrlpipe(dev, 0),
  1968. FTDI_SIO_SET_FLOW_CTRL_REQUEST,
  1969. FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
  1970. 0, priv->interface,
  1971. buf, 0, WDR_TIMEOUT) < 0) {
  1972. err("urb failed to clear flow control");
  1973. }
  1974. }
  1975. }
  1976. return;
  1977. }
  1978. static int ftdi_tiocmget(struct tty_struct *tty, struct file *file)
  1979. {
  1980. struct usb_serial_port *port = tty->driver_data;
  1981. struct ftdi_private *priv = usb_get_serial_port_data(port);
  1982. unsigned char buf[2];
  1983. int ret;
  1984. dbg("%s TIOCMGET", __func__);
  1985. switch (priv->chip_type) {
  1986. case SIO:
  1987. /* Request the status from the device */
  1988. ret = usb_control_msg(port->serial->dev,
  1989. usb_rcvctrlpipe(port->serial->dev, 0),
  1990. FTDI_SIO_GET_MODEM_STATUS_REQUEST,
  1991. FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
  1992. 0, 0,
  1993. buf, 1, WDR_TIMEOUT);
  1994. if (ret < 0) {
  1995. err("%s Could not get modem status of device - err: %d", __func__,
  1996. ret);
  1997. return ret;
  1998. }
  1999. break;
  2000. case FT8U232AM:
  2001. case FT232BM:
  2002. case FT2232C:
  2003. case FT232RL:
  2004. /* the 8U232AM returns a two byte value (the sio is a 1 byte
  2005. value) - in the same format as the data returned from the in
  2006. point */
  2007. ret = usb_control_msg(port->serial->dev,
  2008. usb_rcvctrlpipe(port->serial->dev, 0),
  2009. FTDI_SIO_GET_MODEM_STATUS_REQUEST,
  2010. FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
  2011. 0, priv->interface,
  2012. buf, 2, WDR_TIMEOUT);
  2013. if (ret < 0) {
  2014. err("%s Could not get modem status of device - err: %d", __func__,
  2015. ret);
  2016. return ret;
  2017. }
  2018. break;
  2019. default:
  2020. return -EFAULT;
  2021. break;
  2022. }
  2023. return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) |
  2024. (buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) |
  2025. (buf[0] & FTDI_SIO_RI_MASK ? TIOCM_RI : 0) |
  2026. (buf[0] & FTDI_SIO_RLSD_MASK ? TIOCM_CD : 0) |
  2027. priv->last_dtr_rts;
  2028. }
  2029. static int ftdi_tiocmset(struct tty_struct *tty, struct file *file,
  2030. unsigned int set, unsigned int clear)
  2031. {
  2032. struct usb_serial_port *port = tty->driver_data;
  2033. dbg("%s TIOCMSET", __func__);
  2034. return update_mctrl(port, set, clear);
  2035. }
  2036. static int ftdi_ioctl(struct tty_struct *tty, struct file *file,
  2037. unsigned int cmd, unsigned long arg)
  2038. {
  2039. struct usb_serial_port *port = tty->driver_data;
  2040. struct ftdi_private *priv = usb_get_serial_port_data(port);
  2041. dbg("%s cmd 0x%04x", __func__, cmd);
  2042. /* Based on code from acm.c and others */
  2043. switch (cmd) {
  2044. case TIOCGSERIAL: /* gets serial port data */
  2045. return get_serial_info(port,
  2046. (struct serial_struct __user *) arg);
  2047. case TIOCSSERIAL: /* sets serial port data */
  2048. return set_serial_info(tty, port,
  2049. (struct serial_struct __user *) arg);
  2050. /*
  2051. * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
  2052. * - mask passed in arg for lines of interest
  2053. * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
  2054. * Caller should use TIOCGICOUNT to see which one it was.
  2055. *
  2056. * This code is borrowed from linux/drivers/char/serial.c
  2057. */
  2058. case TIOCMIWAIT:
  2059. while (priv != NULL) {
  2060. interruptible_sleep_on(&priv->delta_msr_wait);
  2061. /* see if a signal did it */
  2062. if (signal_pending(current))
  2063. return -ERESTARTSYS;
  2064. else {
  2065. char diff = priv->diff_status;
  2066. if (diff == 0)
  2067. return -EIO; /* no change => error */
  2068. /* Consume all events */
  2069. priv->diff_status = 0;
  2070. /* Return 0 if caller wanted to know about
  2071. these bits */
  2072. if (((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) ||
  2073. ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) ||
  2074. ((arg & TIOCM_CD) && (diff & FTDI_RS0_RLSD)) ||
  2075. ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS))) {
  2076. return 0;
  2077. }
  2078. /*
  2079. * Otherwise caller can't care less about what
  2080. * happened,and so we continue to wait for more
  2081. * events.
  2082. */
  2083. }
  2084. }
  2085. return 0;
  2086. default:
  2087. break;
  2088. }
  2089. /* This is not necessarily an error - turns out the higher layers
  2090. * will do some ioctls themselves (see comment above)
  2091. */
  2092. dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __func__, cmd);
  2093. return -ENOIOCTLCMD;
  2094. }
  2095. static void ftdi_throttle(struct tty_struct *tty)
  2096. {
  2097. struct usb_serial_port *port = tty->driver_data;
  2098. struct ftdi_private *priv = usb_get_serial_port_data(port);
  2099. unsigned long flags;
  2100. dbg("%s - port %d", __func__, port->number);
  2101. spin_lock_irqsave(&priv->rx_lock, flags);
  2102. priv->rx_flags |= THROTTLED;
  2103. spin_unlock_irqrestore(&priv->rx_lock, flags);
  2104. }
  2105. static void ftdi_unthrottle(struct tty_struct *tty)
  2106. {
  2107. struct usb_serial_port *port = tty->driver_data;
  2108. struct ftdi_private *priv = usb_get_serial_port_data(port);
  2109. int actually_throttled;
  2110. unsigned long flags;
  2111. dbg("%s - port %d", __func__, port->number);
  2112. spin_lock_irqsave(&priv->rx_lock, flags);
  2113. actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
  2114. priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
  2115. spin_unlock_irqrestore(&priv->rx_lock, flags);
  2116. if (actually_throttled)
  2117. schedule_delayed_work(&priv->rx_work, 0);
  2118. }
  2119. static int __init ftdi_init(void)
  2120. {
  2121. int retval;
  2122. dbg("%s", __func__);
  2123. if (vendor > 0 && product > 0) {
  2124. /* Add user specified VID/PID to reserved element of table. */
  2125. int i;
  2126. for (i = 0; id_table_combined[i].idVendor; i++)
  2127. ;
  2128. id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
  2129. id_table_combined[i].idVendor = vendor;
  2130. id_table_combined[i].idProduct = product;
  2131. }
  2132. retval = usb_serial_register(&ftdi_sio_device);
  2133. if (retval)
  2134. goto failed_sio_register;
  2135. retval = usb_register(&ftdi_driver);
  2136. if (retval)
  2137. goto failed_usb_register;
  2138. info(DRIVER_VERSION ":" DRIVER_DESC);
  2139. return 0;
  2140. failed_usb_register:
  2141. usb_serial_deregister(&ftdi_sio_device);
  2142. failed_sio_register:
  2143. return retval;
  2144. }
  2145. static void __exit ftdi_exit(void)
  2146. {
  2147. dbg("%s", __func__);
  2148. usb_deregister(&ftdi_driver);
  2149. usb_serial_deregister(&ftdi_sio_device);
  2150. }
  2151. module_init(ftdi_init);
  2152. module_exit(ftdi_exit);
  2153. MODULE_AUTHOR(DRIVER_AUTHOR);
  2154. MODULE_DESCRIPTION(DRIVER_DESC);
  2155. MODULE_LICENSE("GPL");
  2156. module_param(debug, bool, S_IRUGO | S_IWUSR);
  2157. MODULE_PARM_DESC(debug, "Debug enabled or not");
  2158. module_param(vendor, ushort, 0);
  2159. MODULE_PARM_DESC(vendor, "User specified vendor ID (default="
  2160. __MODULE_STRING(FTDI_VID)")");
  2161. module_param(product, ushort, 0);
  2162. MODULE_PARM_DESC(vendor, "User specified product ID");