cp210x.c 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529
  1. /*
  2. * Silicon Laboratories CP210x USB to RS232 serial adaptor driver
  3. *
  4. * Copyright (C) 2005 Craig Shelley (craig@microtron.org.uk)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License version
  8. * 2 as published by the Free Software Foundation.
  9. *
  10. * Support to set flow control line levels using TIOCMGET and TIOCMSET
  11. * thanks to Karl Hiramoto karl@hiramoto.org. RTSCTS hardware flow
  12. * control thanks to Munir Nassar nassarmu@real-time.com
  13. *
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/errno.h>
  17. #include <linux/slab.h>
  18. #include <linux/tty.h>
  19. #include <linux/tty_flip.h>
  20. #include <linux/module.h>
  21. #include <linux/moduleparam.h>
  22. #include <linux/usb.h>
  23. #include <linux/uaccess.h>
  24. #include <linux/usb/serial.h>
  25. #include <linux/gpio/driver.h>
  26. #include <linux/bitops.h>
  27. #include <linux/mutex.h>
  28. #define DRIVER_DESC "Silicon Labs CP210x RS232 serial adaptor driver"
  29. /*
  30. * Function Prototypes
  31. */
  32. static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *);
  33. static void cp210x_close(struct usb_serial_port *);
  34. static void cp210x_get_termios(struct tty_struct *, struct usb_serial_port *);
  35. static void cp210x_get_termios_port(struct usb_serial_port *port,
  36. tcflag_t *cflagp, unsigned int *baudp);
  37. static void cp210x_change_speed(struct tty_struct *, struct usb_serial_port *,
  38. struct ktermios *);
  39. static void cp210x_set_termios(struct tty_struct *, struct usb_serial_port *,
  40. struct ktermios*);
  41. static bool cp210x_tx_empty(struct usb_serial_port *port);
  42. static int cp210x_tiocmget(struct tty_struct *);
  43. static int cp210x_tiocmset(struct tty_struct *, unsigned int, unsigned int);
  44. static int cp210x_tiocmset_port(struct usb_serial_port *port,
  45. unsigned int, unsigned int);
  46. static void cp210x_break_ctl(struct tty_struct *, int);
  47. static int cp210x_attach(struct usb_serial *);
  48. static void cp210x_disconnect(struct usb_serial *);
  49. static void cp210x_release(struct usb_serial *);
  50. static int cp210x_port_probe(struct usb_serial_port *);
  51. static int cp210x_port_remove(struct usb_serial_port *);
  52. static void cp210x_dtr_rts(struct usb_serial_port *p, int on);
  53. static const struct usb_device_id id_table[] = {
  54. { USB_DEVICE(0x045B, 0x0053) }, /* Renesas RX610 RX-Stick */
  55. { USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */
  56. { USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */
  57. { USB_DEVICE(0x0489, 0xE003) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */
  58. { USB_DEVICE(0x0745, 0x1000) }, /* CipherLab USB CCD Barcode Scanner 1000 */
  59. { USB_DEVICE(0x0846, 0x1100) }, /* NetGear Managed Switch M4100 series, M5300 series, M7100 series */
  60. { USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */
  61. { USB_DEVICE(0x08FD, 0x000A) }, /* Digianswer A/S , ZigBee/802.15.4 MAC Device */
  62. { USB_DEVICE(0x0908, 0x01FF) }, /* Siemens RUGGEDCOM USB Serial Console */
  63. { USB_DEVICE(0x0BED, 0x1100) }, /* MEI (TM) Cashflow-SC Bill/Voucher Acceptor */
  64. { USB_DEVICE(0x0BED, 0x1101) }, /* MEI series 2000 Combo Acceptor */
  65. { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */
  66. { USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */
  67. { USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */
  68. { USB_DEVICE(0x0FDE, 0xCA05) }, /* OWL Wireless Electricity Monitor CM-160 */
  69. { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */
  70. { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */
  71. { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */
  72. { USB_DEVICE(0x10C4, 0x0F91) }, /* Vstabi */
  73. { USB_DEVICE(0x10C4, 0x1101) }, /* Arkham Technology DS101 Bus Monitor */
  74. { USB_DEVICE(0x10C4, 0x1601) }, /* Arkham Technology DS101 Adapter */
  75. { USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */
  76. { USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */
  77. { USB_DEVICE(0x10C4, 0x8044) }, /* Cygnal Debug Adapter */
  78. { USB_DEVICE(0x10C4, 0x804E) }, /* Software Bisque Paramount ME build-in converter */
  79. { USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */
  80. { USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */
  81. { USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */
  82. { USB_DEVICE(0x10C4, 0x806F) }, /* IMS USB to RS422 Converter Cable */
  83. { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */
  84. { USB_DEVICE(0x10C4, 0x80C4) }, /* Cygnal Integrated Products, Inc., Optris infrared thermometer */
  85. { USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */
  86. { USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */
  87. { USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */
  88. { USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */
  89. { USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */
  90. { USB_DEVICE(0x10C4, 0x813F) }, /* Tams Master Easy Control */
  91. { USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */
  92. { USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */
  93. { USB_DEVICE(0x2405, 0x0003) }, /* West Mountain Radio RIGblaster Advantage */
  94. { USB_DEVICE(0x10C4, 0x8156) }, /* B&G H3000 link cable */
  95. { USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */
  96. { USB_DEVICE(0x10C4, 0x815F) }, /* Timewave HamLinkUSB */
  97. { USB_DEVICE(0x10C4, 0x818B) }, /* AVIT Research USB to TTL */
  98. { USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */
  99. { USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */
  100. { USB_DEVICE(0x10C4, 0x81A9) }, /* Multiplex RC Interface */
  101. { USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */
  102. { USB_DEVICE(0x10C4, 0x81AD) }, /* INSYS USB Modem */
  103. { USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */
  104. { USB_DEVICE(0x10C4, 0x81D7) }, /* IAI Corp. RCB-CV-USB USB to RS485 Adaptor */
  105. { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */
  106. { USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */
  107. { USB_DEVICE(0x10C4, 0x81E8) }, /* Zephyr Bioharness */
  108. { USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */
  109. { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */
  110. { USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */
  111. { USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demonstration module */
  112. { USB_DEVICE(0x10C4, 0x8281) }, /* Nanotec Plug & Drive */
  113. { USB_DEVICE(0x10C4, 0x8293) }, /* Telegesis ETRX2USB */
  114. { USB_DEVICE(0x10C4, 0x82F4) }, /* Starizona MicroTouch */
  115. { USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */
  116. { USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */
  117. { USB_DEVICE(0x10C4, 0x8382) }, /* Cygnal Integrated Products, Inc. */
  118. { USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */
  119. { USB_DEVICE(0x10C4, 0x83D8) }, /* DekTec DTA Plus VHF/UHF Booster/Attenuator */
  120. { USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */
  121. { USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */
  122. { USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */
  123. { USB_DEVICE(0x10C4, 0x8470) }, /* Juniper Networks BX Series System Console */
  124. { USB_DEVICE(0x10C4, 0x8477) }, /* Balluff RFID */
  125. { USB_DEVICE(0x10C4, 0x84B6) }, /* Starizona Hyperion */
  126. { USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */
  127. { USB_DEVICE(0x10C4, 0x85EB) }, /* AC-Services CIS-IBUS */
  128. { USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */
  129. { USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */
  130. { USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */
  131. { USB_DEVICE(0x10C4, 0x8856) }, /* CEL EM357 ZigBee USB Stick - LR */
  132. { USB_DEVICE(0x10C4, 0x8857) }, /* CEL EM357 ZigBee USB Stick */
  133. { USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */
  134. { USB_DEVICE(0x10C4, 0x88A5) }, /* Planet Innovation Ingeni ZigBee USB Device */
  135. { USB_DEVICE(0x10C4, 0x8946) }, /* Ketra N1 Wireless Interface */
  136. { USB_DEVICE(0x10C4, 0x8962) }, /* Brim Brothers charging dock */
  137. { USB_DEVICE(0x10C4, 0x8977) }, /* CEL MeshWorks DevKit Device */
  138. { USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */
  139. { USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */
  140. { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */
  141. { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */
  142. { USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */
  143. { USB_DEVICE(0x10C4, 0xEA71) }, /* Infinity GPS-MIC-1 Radio Monophone */
  144. { USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */
  145. { USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */
  146. { USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */
  147. { USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */
  148. { USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */
  149. { USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */
  150. { USB_DEVICE(0x12B8, 0xEC60) }, /* Link G4 ECU */
  151. { USB_DEVICE(0x12B8, 0xEC62) }, /* Link G4+ ECU */
  152. { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */
  153. { USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */
  154. { USB_DEVICE(0x166A, 0x0201) }, /* Clipsal 5500PACA C-Bus Pascal Automation Controller */
  155. { USB_DEVICE(0x166A, 0x0301) }, /* Clipsal 5800PC C-Bus Wireless PC Interface */
  156. { USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */
  157. { USB_DEVICE(0x166A, 0x0304) }, /* Clipsal 5000CT2 C-Bus Black and White Touchscreen */
  158. { USB_DEVICE(0x166A, 0x0305) }, /* Clipsal C-5000CT2 C-Bus Spectrum Colour Touchscreen */
  159. { USB_DEVICE(0x166A, 0x0401) }, /* Clipsal L51xx C-Bus Architectural Dimmer */
  160. { USB_DEVICE(0x166A, 0x0101) }, /* Clipsal 5560884 C-Bus Multi-room Audio Matrix Switcher */
  161. { USB_DEVICE(0x16C0, 0x09B0) }, /* Lunatico Seletek */
  162. { USB_DEVICE(0x16C0, 0x09B1) }, /* Lunatico Seletek */
  163. { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */
  164. { USB_DEVICE(0x16DC, 0x0010) }, /* W-IE-NE-R Plein & Baus GmbH PL512 Power Supply */
  165. { USB_DEVICE(0x16DC, 0x0011) }, /* W-IE-NE-R Plein & Baus GmbH RCM Remote Control for MARATON Power Supply */
  166. { USB_DEVICE(0x16DC, 0x0012) }, /* W-IE-NE-R Plein & Baus GmbH MPOD Multi Channel Power Supply */
  167. { USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */
  168. { USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */
  169. { USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */
  170. { USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */
  171. { USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */
  172. { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */
  173. { USB_DEVICE(0x18EF, 0xE025) }, /* ELV Marble Sound Board 1 */
  174. { USB_DEVICE(0x1901, 0x0190) }, /* GE B850 CP2105 Recorder interface */
  175. { USB_DEVICE(0x1901, 0x0193) }, /* GE B650 CP2104 PMC interface */
  176. { USB_DEVICE(0x1901, 0x0194) }, /* GE Healthcare Remote Alarm Box */
  177. { USB_DEVICE(0x1901, 0x0195) }, /* GE B850/B650/B450 CP2104 DP UART interface */
  178. { USB_DEVICE(0x1901, 0x0196) }, /* GE B850 CP2105 DP UART interface */
  179. { USB_DEVICE(0x19CF, 0x3000) }, /* Parrot NMEA GPS Flight Recorder */
  180. { USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */
  181. { USB_DEVICE(0x1B1C, 0x1C00) }, /* Corsair USB Dongle */
  182. { USB_DEVICE(0x1BA4, 0x0002) }, /* Silicon Labs 358x factory default */
  183. { USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */
  184. { USB_DEVICE(0x1D6F, 0x0010) }, /* Seluxit ApS RF Dongle */
  185. { USB_DEVICE(0x1E29, 0x0102) }, /* Festo CPX-USB */
  186. { USB_DEVICE(0x1E29, 0x0501) }, /* Festo CMSP */
  187. { USB_DEVICE(0x1FB9, 0x0100) }, /* Lake Shore Model 121 Current Source */
  188. { USB_DEVICE(0x1FB9, 0x0200) }, /* Lake Shore Model 218A Temperature Monitor */
  189. { USB_DEVICE(0x1FB9, 0x0201) }, /* Lake Shore Model 219 Temperature Monitor */
  190. { USB_DEVICE(0x1FB9, 0x0202) }, /* Lake Shore Model 233 Temperature Transmitter */
  191. { USB_DEVICE(0x1FB9, 0x0203) }, /* Lake Shore Model 235 Temperature Transmitter */
  192. { USB_DEVICE(0x1FB9, 0x0300) }, /* Lake Shore Model 335 Temperature Controller */
  193. { USB_DEVICE(0x1FB9, 0x0301) }, /* Lake Shore Model 336 Temperature Controller */
  194. { USB_DEVICE(0x1FB9, 0x0302) }, /* Lake Shore Model 350 Temperature Controller */
  195. { USB_DEVICE(0x1FB9, 0x0303) }, /* Lake Shore Model 371 AC Bridge */
  196. { USB_DEVICE(0x1FB9, 0x0400) }, /* Lake Shore Model 411 Handheld Gaussmeter */
  197. { USB_DEVICE(0x1FB9, 0x0401) }, /* Lake Shore Model 425 Gaussmeter */
  198. { USB_DEVICE(0x1FB9, 0x0402) }, /* Lake Shore Model 455A Gaussmeter */
  199. { USB_DEVICE(0x1FB9, 0x0403) }, /* Lake Shore Model 475A Gaussmeter */
  200. { USB_DEVICE(0x1FB9, 0x0404) }, /* Lake Shore Model 465 Three Axis Gaussmeter */
  201. { USB_DEVICE(0x1FB9, 0x0600) }, /* Lake Shore Model 625A Superconducting MPS */
  202. { USB_DEVICE(0x1FB9, 0x0601) }, /* Lake Shore Model 642A Magnet Power Supply */
  203. { USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */
  204. { USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */
  205. { USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */
  206. { USB_DEVICE(0x2626, 0xEA60) }, /* Aruba Networks 7xxx USB Serial Console */
  207. { USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */
  208. { USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */
  209. { USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */
  210. { USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */
  211. { } /* Terminating Entry */
  212. };
  213. MODULE_DEVICE_TABLE(usb, id_table);
  214. struct cp210x_serial_private {
  215. #ifdef CONFIG_GPIOLIB
  216. struct gpio_chip gc;
  217. u8 config;
  218. u8 gpio_mode;
  219. bool gpio_registered;
  220. #endif
  221. u8 partnum;
  222. };
  223. struct cp210x_port_private {
  224. __u8 bInterfaceNumber;
  225. bool has_swapped_line_ctl;
  226. };
  227. static struct usb_serial_driver cp210x_device = {
  228. .driver = {
  229. .owner = THIS_MODULE,
  230. .name = "cp210x",
  231. },
  232. .id_table = id_table,
  233. .num_ports = 1,
  234. .bulk_in_size = 256,
  235. .bulk_out_size = 256,
  236. .open = cp210x_open,
  237. .close = cp210x_close,
  238. .break_ctl = cp210x_break_ctl,
  239. .set_termios = cp210x_set_termios,
  240. .tx_empty = cp210x_tx_empty,
  241. .tiocmget = cp210x_tiocmget,
  242. .tiocmset = cp210x_tiocmset,
  243. .attach = cp210x_attach,
  244. .disconnect = cp210x_disconnect,
  245. .release = cp210x_release,
  246. .port_probe = cp210x_port_probe,
  247. .port_remove = cp210x_port_remove,
  248. .dtr_rts = cp210x_dtr_rts
  249. };
  250. static struct usb_serial_driver * const serial_drivers[] = {
  251. &cp210x_device, NULL
  252. };
  253. /* Config request types */
  254. #define REQTYPE_HOST_TO_INTERFACE 0x41
  255. #define REQTYPE_INTERFACE_TO_HOST 0xc1
  256. #define REQTYPE_HOST_TO_DEVICE 0x40
  257. #define REQTYPE_DEVICE_TO_HOST 0xc0
  258. /* Config request codes */
  259. #define CP210X_IFC_ENABLE 0x00
  260. #define CP210X_SET_BAUDDIV 0x01
  261. #define CP210X_GET_BAUDDIV 0x02
  262. #define CP210X_SET_LINE_CTL 0x03
  263. #define CP210X_GET_LINE_CTL 0x04
  264. #define CP210X_SET_BREAK 0x05
  265. #define CP210X_IMM_CHAR 0x06
  266. #define CP210X_SET_MHS 0x07
  267. #define CP210X_GET_MDMSTS 0x08
  268. #define CP210X_SET_XON 0x09
  269. #define CP210X_SET_XOFF 0x0A
  270. #define CP210X_SET_EVENTMASK 0x0B
  271. #define CP210X_GET_EVENTMASK 0x0C
  272. #define CP210X_SET_CHAR 0x0D
  273. #define CP210X_GET_CHARS 0x0E
  274. #define CP210X_GET_PROPS 0x0F
  275. #define CP210X_GET_COMM_STATUS 0x10
  276. #define CP210X_RESET 0x11
  277. #define CP210X_PURGE 0x12
  278. #define CP210X_SET_FLOW 0x13
  279. #define CP210X_GET_FLOW 0x14
  280. #define CP210X_EMBED_EVENTS 0x15
  281. #define CP210X_GET_EVENTSTATE 0x16
  282. #define CP210X_SET_CHARS 0x19
  283. #define CP210X_GET_BAUDRATE 0x1D
  284. #define CP210X_SET_BAUDRATE 0x1E
  285. #define CP210X_VENDOR_SPECIFIC 0xFF
  286. /* CP210X_IFC_ENABLE */
  287. #define UART_ENABLE 0x0001
  288. #define UART_DISABLE 0x0000
  289. /* CP210X_(SET|GET)_BAUDDIV */
  290. #define BAUD_RATE_GEN_FREQ 0x384000
  291. /* CP210X_(SET|GET)_LINE_CTL */
  292. #define BITS_DATA_MASK 0X0f00
  293. #define BITS_DATA_5 0X0500
  294. #define BITS_DATA_6 0X0600
  295. #define BITS_DATA_7 0X0700
  296. #define BITS_DATA_8 0X0800
  297. #define BITS_DATA_9 0X0900
  298. #define BITS_PARITY_MASK 0x00f0
  299. #define BITS_PARITY_NONE 0x0000
  300. #define BITS_PARITY_ODD 0x0010
  301. #define BITS_PARITY_EVEN 0x0020
  302. #define BITS_PARITY_MARK 0x0030
  303. #define BITS_PARITY_SPACE 0x0040
  304. #define BITS_STOP_MASK 0x000f
  305. #define BITS_STOP_1 0x0000
  306. #define BITS_STOP_1_5 0x0001
  307. #define BITS_STOP_2 0x0002
  308. /* CP210X_SET_BREAK */
  309. #define BREAK_ON 0x0001
  310. #define BREAK_OFF 0x0000
  311. /* CP210X_(SET_MHS|GET_MDMSTS) */
  312. #define CONTROL_DTR 0x0001
  313. #define CONTROL_RTS 0x0002
  314. #define CONTROL_CTS 0x0010
  315. #define CONTROL_DSR 0x0020
  316. #define CONTROL_RING 0x0040
  317. #define CONTROL_DCD 0x0080
  318. #define CONTROL_WRITE_DTR 0x0100
  319. #define CONTROL_WRITE_RTS 0x0200
  320. /* CP210X_VENDOR_SPECIFIC values */
  321. #define CP210X_READ_LATCH 0x00C2
  322. #define CP210X_GET_PARTNUM 0x370B
  323. #define CP210X_GET_PORTCONFIG 0x370C
  324. #define CP210X_GET_DEVICEMODE 0x3711
  325. #define CP210X_WRITE_LATCH 0x37E1
  326. /* Part number definitions */
  327. #define CP210X_PARTNUM_CP2101 0x01
  328. #define CP210X_PARTNUM_CP2102 0x02
  329. #define CP210X_PARTNUM_CP2103 0x03
  330. #define CP210X_PARTNUM_CP2104 0x04
  331. #define CP210X_PARTNUM_CP2105 0x05
  332. #define CP210X_PARTNUM_CP2108 0x08
  333. /* CP210X_GET_COMM_STATUS returns these 0x13 bytes */
  334. struct cp210x_comm_status {
  335. __le32 ulErrors;
  336. __le32 ulHoldReasons;
  337. __le32 ulAmountInInQueue;
  338. __le32 ulAmountInOutQueue;
  339. u8 bEofReceived;
  340. u8 bWaitForImmediate;
  341. u8 bReserved;
  342. } __packed;
  343. /*
  344. * CP210X_PURGE - 16 bits passed in wValue of USB request.
  345. * SiLabs app note AN571 gives a strange description of the 4 bits:
  346. * bit 0 or bit 2 clears the transmit queue and 1 or 3 receive.
  347. * writing 1 to all, however, purges cp2108 well enough to avoid the hang.
  348. */
  349. #define PURGE_ALL 0x000f
  350. /* CP210X_GET_FLOW/CP210X_SET_FLOW read/write these 0x10 bytes */
  351. struct cp210x_flow_ctl {
  352. __le32 ulControlHandshake;
  353. __le32 ulFlowReplace;
  354. __le32 ulXonLimit;
  355. __le32 ulXoffLimit;
  356. } __packed;
  357. /* cp210x_flow_ctl::ulControlHandshake */
  358. #define CP210X_SERIAL_DTR_MASK GENMASK(1, 0)
  359. #define CP210X_SERIAL_DTR_SHIFT(_mode) (_mode)
  360. #define CP210X_SERIAL_CTS_HANDSHAKE BIT(3)
  361. #define CP210X_SERIAL_DSR_HANDSHAKE BIT(4)
  362. #define CP210X_SERIAL_DCD_HANDSHAKE BIT(5)
  363. #define CP210X_SERIAL_DSR_SENSITIVITY BIT(6)
  364. /* values for cp210x_flow_ctl::ulControlHandshake::CP210X_SERIAL_DTR_MASK */
  365. #define CP210X_SERIAL_DTR_INACTIVE 0
  366. #define CP210X_SERIAL_DTR_ACTIVE 1
  367. #define CP210X_SERIAL_DTR_FLOW_CTL 2
  368. /* cp210x_flow_ctl::ulFlowReplace */
  369. #define CP210X_SERIAL_AUTO_TRANSMIT BIT(0)
  370. #define CP210X_SERIAL_AUTO_RECEIVE BIT(1)
  371. #define CP210X_SERIAL_ERROR_CHAR BIT(2)
  372. #define CP210X_SERIAL_NULL_STRIPPING BIT(3)
  373. #define CP210X_SERIAL_BREAK_CHAR BIT(4)
  374. #define CP210X_SERIAL_RTS_MASK GENMASK(7, 6)
  375. #define CP210X_SERIAL_RTS_SHIFT(_mode) (_mode << 6)
  376. #define CP210X_SERIAL_XOFF_CONTINUE BIT(31)
  377. /* values for cp210x_flow_ctl::ulFlowReplace::CP210X_SERIAL_RTS_MASK */
  378. #define CP210X_SERIAL_RTS_INACTIVE 0
  379. #define CP210X_SERIAL_RTS_ACTIVE 1
  380. #define CP210X_SERIAL_RTS_FLOW_CTL 2
  381. /* CP210X_VENDOR_SPECIFIC, CP210X_GET_DEVICEMODE call reads these 0x2 bytes. */
  382. struct cp210x_pin_mode {
  383. u8 eci;
  384. u8 sci;
  385. } __packed;
  386. #define CP210X_PIN_MODE_MODEM 0
  387. #define CP210X_PIN_MODE_GPIO BIT(0)
  388. /*
  389. * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0xf bytes.
  390. * Structure needs padding due to unused/unspecified bytes.
  391. */
  392. struct cp210x_config {
  393. __le16 gpio_mode;
  394. u8 __pad0[2];
  395. __le16 reset_state;
  396. u8 __pad1[4];
  397. __le16 suspend_state;
  398. u8 sci_cfg;
  399. u8 eci_cfg;
  400. u8 device_cfg;
  401. } __packed;
  402. /* GPIO modes */
  403. #define CP210X_SCI_GPIO_MODE_OFFSET 9
  404. #define CP210X_SCI_GPIO_MODE_MASK GENMASK(11, 9)
  405. #define CP210X_ECI_GPIO_MODE_OFFSET 2
  406. #define CP210X_ECI_GPIO_MODE_MASK GENMASK(3, 2)
  407. /* CP2105 port configuration values */
  408. #define CP2105_GPIO0_TXLED_MODE BIT(0)
  409. #define CP2105_GPIO1_RXLED_MODE BIT(1)
  410. #define CP2105_GPIO1_RS485_MODE BIT(2)
  411. /* CP210X_VENDOR_SPECIFIC, CP210X_WRITE_LATCH call writes these 0x2 bytes. */
  412. struct cp210x_gpio_write {
  413. u8 mask;
  414. u8 state;
  415. } __packed;
  416. /*
  417. * Helper to get interface number when we only have struct usb_serial.
  418. */
  419. static u8 cp210x_interface_num(struct usb_serial *serial)
  420. {
  421. struct usb_host_interface *cur_altsetting;
  422. cur_altsetting = serial->interface->cur_altsetting;
  423. return cur_altsetting->desc.bInterfaceNumber;
  424. }
  425. /*
  426. * Reads a variable-sized block of CP210X_ registers, identified by req.
  427. * Returns data into buf in native USB byte order.
  428. */
  429. static int cp210x_read_reg_block(struct usb_serial_port *port, u8 req,
  430. void *buf, int bufsize)
  431. {
  432. struct usb_serial *serial = port->serial;
  433. struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
  434. void *dmabuf;
  435. int result;
  436. dmabuf = kmalloc(bufsize, GFP_KERNEL);
  437. if (!dmabuf) {
  438. /*
  439. * FIXME Some callers don't bother to check for error,
  440. * at least give them consistent junk until they are fixed
  441. */
  442. memset(buf, 0, bufsize);
  443. return -ENOMEM;
  444. }
  445. result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
  446. req, REQTYPE_INTERFACE_TO_HOST, 0,
  447. port_priv->bInterfaceNumber, dmabuf, bufsize,
  448. USB_CTRL_SET_TIMEOUT);
  449. if (result == bufsize) {
  450. memcpy(buf, dmabuf, bufsize);
  451. result = 0;
  452. } else {
  453. dev_err(&port->dev, "failed get req 0x%x size %d status: %d\n",
  454. req, bufsize, result);
  455. if (result >= 0)
  456. result = -EIO;
  457. /*
  458. * FIXME Some callers don't bother to check for error,
  459. * at least give them consistent junk until they are fixed
  460. */
  461. memset(buf, 0, bufsize);
  462. }
  463. kfree(dmabuf);
  464. return result;
  465. }
  466. /*
  467. * Reads any 32-bit CP210X_ register identified by req.
  468. */
  469. static int cp210x_read_u32_reg(struct usb_serial_port *port, u8 req, u32 *val)
  470. {
  471. __le32 le32_val;
  472. int err;
  473. err = cp210x_read_reg_block(port, req, &le32_val, sizeof(le32_val));
  474. if (err) {
  475. /*
  476. * FIXME Some callers don't bother to check for error,
  477. * at least give them consistent junk until they are fixed
  478. */
  479. *val = 0;
  480. return err;
  481. }
  482. *val = le32_to_cpu(le32_val);
  483. return 0;
  484. }
  485. /*
  486. * Reads any 16-bit CP210X_ register identified by req.
  487. */
  488. static int cp210x_read_u16_reg(struct usb_serial_port *port, u8 req, u16 *val)
  489. {
  490. __le16 le16_val;
  491. int err;
  492. err = cp210x_read_reg_block(port, req, &le16_val, sizeof(le16_val));
  493. if (err)
  494. return err;
  495. *val = le16_to_cpu(le16_val);
  496. return 0;
  497. }
  498. /*
  499. * Reads any 8-bit CP210X_ register identified by req.
  500. */
  501. static int cp210x_read_u8_reg(struct usb_serial_port *port, u8 req, u8 *val)
  502. {
  503. return cp210x_read_reg_block(port, req, val, sizeof(*val));
  504. }
  505. /*
  506. * Reads a variable-sized vendor block of CP210X_ registers, identified by val.
  507. * Returns data into buf in native USB byte order.
  508. */
  509. static int cp210x_read_vendor_block(struct usb_serial *serial, u8 type, u16 val,
  510. void *buf, int bufsize)
  511. {
  512. void *dmabuf;
  513. int result;
  514. dmabuf = kmalloc(bufsize, GFP_KERNEL);
  515. if (!dmabuf)
  516. return -ENOMEM;
  517. result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
  518. CP210X_VENDOR_SPECIFIC, type, val,
  519. cp210x_interface_num(serial), dmabuf, bufsize,
  520. USB_CTRL_GET_TIMEOUT);
  521. if (result == bufsize) {
  522. memcpy(buf, dmabuf, bufsize);
  523. result = 0;
  524. } else {
  525. dev_err(&serial->interface->dev,
  526. "failed to get vendor val 0x%04x size %d: %d\n", val,
  527. bufsize, result);
  528. if (result >= 0)
  529. result = -EIO;
  530. }
  531. kfree(dmabuf);
  532. return result;
  533. }
  534. /*
  535. * Writes any 16-bit CP210X_ register (req) whose value is passed
  536. * entirely in the wValue field of the USB request.
  537. */
  538. static int cp210x_write_u16_reg(struct usb_serial_port *port, u8 req, u16 val)
  539. {
  540. struct usb_serial *serial = port->serial;
  541. struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
  542. int result;
  543. result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
  544. req, REQTYPE_HOST_TO_INTERFACE, val,
  545. port_priv->bInterfaceNumber, NULL, 0,
  546. USB_CTRL_SET_TIMEOUT);
  547. if (result < 0) {
  548. dev_err(&port->dev, "failed set request 0x%x status: %d\n",
  549. req, result);
  550. }
  551. return result;
  552. }
  553. /*
  554. * Writes a variable-sized block of CP210X_ registers, identified by req.
  555. * Data in buf must be in native USB byte order.
  556. */
  557. static int cp210x_write_reg_block(struct usb_serial_port *port, u8 req,
  558. void *buf, int bufsize)
  559. {
  560. struct usb_serial *serial = port->serial;
  561. struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
  562. void *dmabuf;
  563. int result;
  564. dmabuf = kmemdup(buf, bufsize, GFP_KERNEL);
  565. if (!dmabuf)
  566. return -ENOMEM;
  567. result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
  568. req, REQTYPE_HOST_TO_INTERFACE, 0,
  569. port_priv->bInterfaceNumber, dmabuf, bufsize,
  570. USB_CTRL_SET_TIMEOUT);
  571. kfree(dmabuf);
  572. if (result == bufsize) {
  573. result = 0;
  574. } else {
  575. dev_err(&port->dev, "failed set req 0x%x size %d status: %d\n",
  576. req, bufsize, result);
  577. if (result >= 0)
  578. result = -EIO;
  579. }
  580. return result;
  581. }
  582. /*
  583. * Writes any 32-bit CP210X_ register identified by req.
  584. */
  585. static int cp210x_write_u32_reg(struct usb_serial_port *port, u8 req, u32 val)
  586. {
  587. __le32 le32_val;
  588. le32_val = cpu_to_le32(val);
  589. return cp210x_write_reg_block(port, req, &le32_val, sizeof(le32_val));
  590. }
  591. #ifdef CONFIG_GPIOLIB
  592. /*
  593. * Writes a variable-sized vendor block of CP210X_ registers, identified by val.
  594. * Data in buf must be in native USB byte order.
  595. */
  596. static int cp210x_write_vendor_block(struct usb_serial *serial, u8 type,
  597. u16 val, void *buf, int bufsize)
  598. {
  599. void *dmabuf;
  600. int result;
  601. dmabuf = kmemdup(buf, bufsize, GFP_KERNEL);
  602. if (!dmabuf)
  603. return -ENOMEM;
  604. result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
  605. CP210X_VENDOR_SPECIFIC, type, val,
  606. cp210x_interface_num(serial), dmabuf, bufsize,
  607. USB_CTRL_SET_TIMEOUT);
  608. kfree(dmabuf);
  609. if (result == bufsize) {
  610. result = 0;
  611. } else {
  612. dev_err(&serial->interface->dev,
  613. "failed to set vendor val 0x%04x size %d: %d\n", val,
  614. bufsize, result);
  615. if (result >= 0)
  616. result = -EIO;
  617. }
  618. return result;
  619. }
  620. #endif
  621. /*
  622. * Detect CP2108 GET_LINE_CTL bug and activate workaround.
  623. * Write a known good value 0x800, read it back.
  624. * If it comes back swapped the bug is detected.
  625. * Preserve the original register value.
  626. */
  627. static int cp210x_detect_swapped_line_ctl(struct usb_serial_port *port)
  628. {
  629. struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
  630. u16 line_ctl_save;
  631. u16 line_ctl_test;
  632. int err;
  633. err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, &line_ctl_save);
  634. if (err)
  635. return err;
  636. err = cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, 0x800);
  637. if (err)
  638. return err;
  639. err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, &line_ctl_test);
  640. if (err)
  641. return err;
  642. if (line_ctl_test == 8) {
  643. port_priv->has_swapped_line_ctl = true;
  644. line_ctl_save = swab16(line_ctl_save);
  645. }
  646. return cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, line_ctl_save);
  647. }
  648. /*
  649. * Must always be called instead of cp210x_read_u16_reg(CP210X_GET_LINE_CTL)
  650. * to workaround cp2108 bug and get correct value.
  651. */
  652. static int cp210x_get_line_ctl(struct usb_serial_port *port, u16 *ctl)
  653. {
  654. struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
  655. int err;
  656. err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, ctl);
  657. if (err)
  658. return err;
  659. /* Workaround swapped bytes in 16-bit value from CP210X_GET_LINE_CTL */
  660. if (port_priv->has_swapped_line_ctl)
  661. *ctl = swab16(*ctl);
  662. return 0;
  663. }
  664. /*
  665. * cp210x_quantise_baudrate
  666. * Quantises the baud rate as per AN205 Table 1
  667. */
  668. static unsigned int cp210x_quantise_baudrate(unsigned int baud)
  669. {
  670. if (baud <= 300)
  671. baud = 300;
  672. else if (baud <= 600) baud = 600;
  673. else if (baud <= 1200) baud = 1200;
  674. else if (baud <= 1800) baud = 1800;
  675. else if (baud <= 2400) baud = 2400;
  676. else if (baud <= 4000) baud = 4000;
  677. else if (baud <= 4803) baud = 4800;
  678. else if (baud <= 7207) baud = 7200;
  679. else if (baud <= 9612) baud = 9600;
  680. else if (baud <= 14428) baud = 14400;
  681. else if (baud <= 16062) baud = 16000;
  682. else if (baud <= 19250) baud = 19200;
  683. else if (baud <= 28912) baud = 28800;
  684. else if (baud <= 38601) baud = 38400;
  685. else if (baud <= 51558) baud = 51200;
  686. else if (baud <= 56280) baud = 56000;
  687. else if (baud <= 58053) baud = 57600;
  688. else if (baud <= 64111) baud = 64000;
  689. else if (baud <= 77608) baud = 76800;
  690. else if (baud <= 117028) baud = 115200;
  691. else if (baud <= 129347) baud = 128000;
  692. else if (baud <= 156868) baud = 153600;
  693. else if (baud <= 237832) baud = 230400;
  694. else if (baud <= 254234) baud = 250000;
  695. else if (baud <= 273066) baud = 256000;
  696. else if (baud <= 491520) baud = 460800;
  697. else if (baud <= 567138) baud = 500000;
  698. else if (baud <= 670254) baud = 576000;
  699. else if (baud < 1000000)
  700. baud = 921600;
  701. else if (baud > 2000000)
  702. baud = 2000000;
  703. return baud;
  704. }
  705. static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port)
  706. {
  707. int result;
  708. result = cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_ENABLE);
  709. if (result) {
  710. dev_err(&port->dev, "%s - Unable to enable UART\n", __func__);
  711. return result;
  712. }
  713. /* Configure the termios structure */
  714. cp210x_get_termios(tty, port);
  715. /* The baud rate must be initialised on cp2104 */
  716. if (tty)
  717. cp210x_change_speed(tty, port, NULL);
  718. return usb_serial_generic_open(tty, port);
  719. }
  720. static void cp210x_close(struct usb_serial_port *port)
  721. {
  722. usb_serial_generic_close(port);
  723. /* Clear both queues; cp2108 needs this to avoid an occasional hang */
  724. cp210x_write_u16_reg(port, CP210X_PURGE, PURGE_ALL);
  725. cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_DISABLE);
  726. }
  727. /*
  728. * Read how many bytes are waiting in the TX queue.
  729. */
  730. static int cp210x_get_tx_queue_byte_count(struct usb_serial_port *port,
  731. u32 *count)
  732. {
  733. struct usb_serial *serial = port->serial;
  734. struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
  735. struct cp210x_comm_status *sts;
  736. int result;
  737. sts = kmalloc(sizeof(*sts), GFP_KERNEL);
  738. if (!sts)
  739. return -ENOMEM;
  740. result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
  741. CP210X_GET_COMM_STATUS, REQTYPE_INTERFACE_TO_HOST,
  742. 0, port_priv->bInterfaceNumber, sts, sizeof(*sts),
  743. USB_CTRL_GET_TIMEOUT);
  744. if (result == sizeof(*sts)) {
  745. *count = le32_to_cpu(sts->ulAmountInOutQueue);
  746. result = 0;
  747. } else {
  748. dev_err(&port->dev, "failed to get comm status: %d\n", result);
  749. if (result >= 0)
  750. result = -EIO;
  751. }
  752. kfree(sts);
  753. return result;
  754. }
  755. static bool cp210x_tx_empty(struct usb_serial_port *port)
  756. {
  757. int err;
  758. u32 count;
  759. err = cp210x_get_tx_queue_byte_count(port, &count);
  760. if (err)
  761. return true;
  762. return !count;
  763. }
  764. /*
  765. * cp210x_get_termios
  766. * Reads the baud rate, data bits, parity, stop bits and flow control mode
  767. * from the device, corrects any unsupported values, and configures the
  768. * termios structure to reflect the state of the device
  769. */
  770. static void cp210x_get_termios(struct tty_struct *tty,
  771. struct usb_serial_port *port)
  772. {
  773. unsigned int baud;
  774. if (tty) {
  775. cp210x_get_termios_port(tty->driver_data,
  776. &tty->termios.c_cflag, &baud);
  777. tty_encode_baud_rate(tty, baud, baud);
  778. } else {
  779. tcflag_t cflag;
  780. cflag = 0;
  781. cp210x_get_termios_port(port, &cflag, &baud);
  782. }
  783. }
  784. /*
  785. * cp210x_get_termios_port
  786. * This is the heart of cp210x_get_termios which always uses a &usb_serial_port.
  787. */
  788. static void cp210x_get_termios_port(struct usb_serial_port *port,
  789. tcflag_t *cflagp, unsigned int *baudp)
  790. {
  791. struct device *dev = &port->dev;
  792. tcflag_t cflag;
  793. struct cp210x_flow_ctl flow_ctl;
  794. u32 baud;
  795. u16 bits;
  796. u32 ctl_hs;
  797. cp210x_read_u32_reg(port, CP210X_GET_BAUDRATE, &baud);
  798. dev_dbg(dev, "%s - baud rate = %d\n", __func__, baud);
  799. *baudp = baud;
  800. cflag = *cflagp;
  801. cp210x_get_line_ctl(port, &bits);
  802. cflag &= ~CSIZE;
  803. switch (bits & BITS_DATA_MASK) {
  804. case BITS_DATA_5:
  805. dev_dbg(dev, "%s - data bits = 5\n", __func__);
  806. cflag |= CS5;
  807. break;
  808. case BITS_DATA_6:
  809. dev_dbg(dev, "%s - data bits = 6\n", __func__);
  810. cflag |= CS6;
  811. break;
  812. case BITS_DATA_7:
  813. dev_dbg(dev, "%s - data bits = 7\n", __func__);
  814. cflag |= CS7;
  815. break;
  816. case BITS_DATA_8:
  817. dev_dbg(dev, "%s - data bits = 8\n", __func__);
  818. cflag |= CS8;
  819. break;
  820. case BITS_DATA_9:
  821. dev_dbg(dev, "%s - data bits = 9 (not supported, using 8 data bits)\n", __func__);
  822. cflag |= CS8;
  823. bits &= ~BITS_DATA_MASK;
  824. bits |= BITS_DATA_8;
  825. cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
  826. break;
  827. default:
  828. dev_dbg(dev, "%s - Unknown number of data bits, using 8\n", __func__);
  829. cflag |= CS8;
  830. bits &= ~BITS_DATA_MASK;
  831. bits |= BITS_DATA_8;
  832. cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
  833. break;
  834. }
  835. switch (bits & BITS_PARITY_MASK) {
  836. case BITS_PARITY_NONE:
  837. dev_dbg(dev, "%s - parity = NONE\n", __func__);
  838. cflag &= ~PARENB;
  839. break;
  840. case BITS_PARITY_ODD:
  841. dev_dbg(dev, "%s - parity = ODD\n", __func__);
  842. cflag |= (PARENB|PARODD);
  843. break;
  844. case BITS_PARITY_EVEN:
  845. dev_dbg(dev, "%s - parity = EVEN\n", __func__);
  846. cflag &= ~PARODD;
  847. cflag |= PARENB;
  848. break;
  849. case BITS_PARITY_MARK:
  850. dev_dbg(dev, "%s - parity = MARK\n", __func__);
  851. cflag |= (PARENB|PARODD|CMSPAR);
  852. break;
  853. case BITS_PARITY_SPACE:
  854. dev_dbg(dev, "%s - parity = SPACE\n", __func__);
  855. cflag &= ~PARODD;
  856. cflag |= (PARENB|CMSPAR);
  857. break;
  858. default:
  859. dev_dbg(dev, "%s - Unknown parity mode, disabling parity\n", __func__);
  860. cflag &= ~PARENB;
  861. bits &= ~BITS_PARITY_MASK;
  862. cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
  863. break;
  864. }
  865. cflag &= ~CSTOPB;
  866. switch (bits & BITS_STOP_MASK) {
  867. case BITS_STOP_1:
  868. dev_dbg(dev, "%s - stop bits = 1\n", __func__);
  869. break;
  870. case BITS_STOP_1_5:
  871. dev_dbg(dev, "%s - stop bits = 1.5 (not supported, using 1 stop bit)\n", __func__);
  872. bits &= ~BITS_STOP_MASK;
  873. cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
  874. break;
  875. case BITS_STOP_2:
  876. dev_dbg(dev, "%s - stop bits = 2\n", __func__);
  877. cflag |= CSTOPB;
  878. break;
  879. default:
  880. dev_dbg(dev, "%s - Unknown number of stop bits, using 1 stop bit\n", __func__);
  881. bits &= ~BITS_STOP_MASK;
  882. cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
  883. break;
  884. }
  885. cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl,
  886. sizeof(flow_ctl));
  887. ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake);
  888. if (ctl_hs & CP210X_SERIAL_CTS_HANDSHAKE) {
  889. dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__);
  890. cflag |= CRTSCTS;
  891. } else {
  892. dev_dbg(dev, "%s - flow control = NONE\n", __func__);
  893. cflag &= ~CRTSCTS;
  894. }
  895. *cflagp = cflag;
  896. }
  897. /*
  898. * CP2101 supports the following baud rates:
  899. *
  900. * 300, 600, 1200, 1800, 2400, 4800, 7200, 9600, 14400, 19200, 28800,
  901. * 38400, 56000, 57600, 115200, 128000, 230400, 460800, 921600
  902. *
  903. * CP2102 and CP2103 support the following additional rates:
  904. *
  905. * 4000, 16000, 51200, 64000, 76800, 153600, 250000, 256000, 500000,
  906. * 576000
  907. *
  908. * The device will map a requested rate to a supported one, but the result
  909. * of requests for rates greater than 1053257 is undefined (see AN205).
  910. *
  911. * CP2104, CP2105 and CP2110 support most rates up to 2M, 921k and 1M baud,
  912. * respectively, with an error less than 1%. The actual rates are determined
  913. * by
  914. *
  915. * div = round(freq / (2 x prescale x request))
  916. * actual = freq / (2 x prescale x div)
  917. *
  918. * For CP2104 and CP2105 freq is 48Mhz and prescale is 4 for request <= 365bps
  919. * or 1 otherwise.
  920. * For CP2110 freq is 24Mhz and prescale is 4 for request <= 300bps or 1
  921. * otherwise.
  922. */
  923. static void cp210x_change_speed(struct tty_struct *tty,
  924. struct usb_serial_port *port, struct ktermios *old_termios)
  925. {
  926. u32 baud;
  927. baud = tty->termios.c_ospeed;
  928. /* This maps the requested rate to a rate valid on cp2102 or cp2103,
  929. * or to an arbitrary rate in [1M,2M].
  930. *
  931. * NOTE: B0 is not implemented.
  932. */
  933. baud = cp210x_quantise_baudrate(baud);
  934. dev_dbg(&port->dev, "%s - setting baud rate to %u\n", __func__, baud);
  935. if (cp210x_write_u32_reg(port, CP210X_SET_BAUDRATE, baud)) {
  936. dev_warn(&port->dev, "failed to set baud rate to %u\n", baud);
  937. if (old_termios)
  938. baud = old_termios->c_ospeed;
  939. else
  940. baud = 9600;
  941. }
  942. tty_encode_baud_rate(tty, baud, baud);
  943. }
  944. static void cp210x_set_termios(struct tty_struct *tty,
  945. struct usb_serial_port *port, struct ktermios *old_termios)
  946. {
  947. struct device *dev = &port->dev;
  948. unsigned int cflag, old_cflag;
  949. u16 bits;
  950. cflag = tty->termios.c_cflag;
  951. old_cflag = old_termios->c_cflag;
  952. if (tty->termios.c_ospeed != old_termios->c_ospeed)
  953. cp210x_change_speed(tty, port, old_termios);
  954. /* If the number of data bits is to be updated */
  955. if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
  956. cp210x_get_line_ctl(port, &bits);
  957. bits &= ~BITS_DATA_MASK;
  958. switch (cflag & CSIZE) {
  959. case CS5:
  960. bits |= BITS_DATA_5;
  961. dev_dbg(dev, "%s - data bits = 5\n", __func__);
  962. break;
  963. case CS6:
  964. bits |= BITS_DATA_6;
  965. dev_dbg(dev, "%s - data bits = 6\n", __func__);
  966. break;
  967. case CS7:
  968. bits |= BITS_DATA_7;
  969. dev_dbg(dev, "%s - data bits = 7\n", __func__);
  970. break;
  971. case CS8:
  972. default:
  973. bits |= BITS_DATA_8;
  974. dev_dbg(dev, "%s - data bits = 8\n", __func__);
  975. break;
  976. }
  977. if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits))
  978. dev_dbg(dev, "Number of data bits requested not supported by device\n");
  979. }
  980. if ((cflag & (PARENB|PARODD|CMSPAR)) !=
  981. (old_cflag & (PARENB|PARODD|CMSPAR))) {
  982. cp210x_get_line_ctl(port, &bits);
  983. bits &= ~BITS_PARITY_MASK;
  984. if (cflag & PARENB) {
  985. if (cflag & CMSPAR) {
  986. if (cflag & PARODD) {
  987. bits |= BITS_PARITY_MARK;
  988. dev_dbg(dev, "%s - parity = MARK\n", __func__);
  989. } else {
  990. bits |= BITS_PARITY_SPACE;
  991. dev_dbg(dev, "%s - parity = SPACE\n", __func__);
  992. }
  993. } else {
  994. if (cflag & PARODD) {
  995. bits |= BITS_PARITY_ODD;
  996. dev_dbg(dev, "%s - parity = ODD\n", __func__);
  997. } else {
  998. bits |= BITS_PARITY_EVEN;
  999. dev_dbg(dev, "%s - parity = EVEN\n", __func__);
  1000. }
  1001. }
  1002. }
  1003. if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits))
  1004. dev_dbg(dev, "Parity mode not supported by device\n");
  1005. }
  1006. if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
  1007. cp210x_get_line_ctl(port, &bits);
  1008. bits &= ~BITS_STOP_MASK;
  1009. if (cflag & CSTOPB) {
  1010. bits |= BITS_STOP_2;
  1011. dev_dbg(dev, "%s - stop bits = 2\n", __func__);
  1012. } else {
  1013. bits |= BITS_STOP_1;
  1014. dev_dbg(dev, "%s - stop bits = 1\n", __func__);
  1015. }
  1016. if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits))
  1017. dev_dbg(dev, "Number of stop bits requested not supported by device\n");
  1018. }
  1019. if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) {
  1020. struct cp210x_flow_ctl flow_ctl;
  1021. u32 ctl_hs;
  1022. u32 flow_repl;
  1023. cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl,
  1024. sizeof(flow_ctl));
  1025. ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake);
  1026. flow_repl = le32_to_cpu(flow_ctl.ulFlowReplace);
  1027. dev_dbg(dev, "%s - read ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n",
  1028. __func__, ctl_hs, flow_repl);
  1029. ctl_hs &= ~CP210X_SERIAL_DSR_HANDSHAKE;
  1030. ctl_hs &= ~CP210X_SERIAL_DCD_HANDSHAKE;
  1031. ctl_hs &= ~CP210X_SERIAL_DSR_SENSITIVITY;
  1032. ctl_hs &= ~CP210X_SERIAL_DTR_MASK;
  1033. ctl_hs |= CP210X_SERIAL_DTR_SHIFT(CP210X_SERIAL_DTR_ACTIVE);
  1034. if (cflag & CRTSCTS) {
  1035. ctl_hs |= CP210X_SERIAL_CTS_HANDSHAKE;
  1036. flow_repl &= ~CP210X_SERIAL_RTS_MASK;
  1037. flow_repl |= CP210X_SERIAL_RTS_SHIFT(
  1038. CP210X_SERIAL_RTS_FLOW_CTL);
  1039. dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__);
  1040. } else {
  1041. ctl_hs &= ~CP210X_SERIAL_CTS_HANDSHAKE;
  1042. flow_repl &= ~CP210X_SERIAL_RTS_MASK;
  1043. flow_repl |= CP210X_SERIAL_RTS_SHIFT(
  1044. CP210X_SERIAL_RTS_ACTIVE);
  1045. dev_dbg(dev, "%s - flow control = NONE\n", __func__);
  1046. }
  1047. dev_dbg(dev, "%s - write ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n",
  1048. __func__, ctl_hs, flow_repl);
  1049. flow_ctl.ulControlHandshake = cpu_to_le32(ctl_hs);
  1050. flow_ctl.ulFlowReplace = cpu_to_le32(flow_repl);
  1051. cp210x_write_reg_block(port, CP210X_SET_FLOW, &flow_ctl,
  1052. sizeof(flow_ctl));
  1053. }
  1054. }
  1055. static int cp210x_tiocmset(struct tty_struct *tty,
  1056. unsigned int set, unsigned int clear)
  1057. {
  1058. struct usb_serial_port *port = tty->driver_data;
  1059. return cp210x_tiocmset_port(port, set, clear);
  1060. }
  1061. static int cp210x_tiocmset_port(struct usb_serial_port *port,
  1062. unsigned int set, unsigned int clear)
  1063. {
  1064. u16 control = 0;
  1065. if (set & TIOCM_RTS) {
  1066. control |= CONTROL_RTS;
  1067. control |= CONTROL_WRITE_RTS;
  1068. }
  1069. if (set & TIOCM_DTR) {
  1070. control |= CONTROL_DTR;
  1071. control |= CONTROL_WRITE_DTR;
  1072. }
  1073. if (clear & TIOCM_RTS) {
  1074. control &= ~CONTROL_RTS;
  1075. control |= CONTROL_WRITE_RTS;
  1076. }
  1077. if (clear & TIOCM_DTR) {
  1078. control &= ~CONTROL_DTR;
  1079. control |= CONTROL_WRITE_DTR;
  1080. }
  1081. dev_dbg(&port->dev, "%s - control = 0x%.4x\n", __func__, control);
  1082. return cp210x_write_u16_reg(port, CP210X_SET_MHS, control);
  1083. }
  1084. static void cp210x_dtr_rts(struct usb_serial_port *p, int on)
  1085. {
  1086. if (on)
  1087. cp210x_tiocmset_port(p, TIOCM_DTR|TIOCM_RTS, 0);
  1088. else
  1089. cp210x_tiocmset_port(p, 0, TIOCM_DTR|TIOCM_RTS);
  1090. }
  1091. static int cp210x_tiocmget(struct tty_struct *tty)
  1092. {
  1093. struct usb_serial_port *port = tty->driver_data;
  1094. u8 control;
  1095. int result;
  1096. result = cp210x_read_u8_reg(port, CP210X_GET_MDMSTS, &control);
  1097. if (result)
  1098. return result;
  1099. result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
  1100. |((control & CONTROL_RTS) ? TIOCM_RTS : 0)
  1101. |((control & CONTROL_CTS) ? TIOCM_CTS : 0)
  1102. |((control & CONTROL_DSR) ? TIOCM_DSR : 0)
  1103. |((control & CONTROL_RING)? TIOCM_RI : 0)
  1104. |((control & CONTROL_DCD) ? TIOCM_CD : 0);
  1105. dev_dbg(&port->dev, "%s - control = 0x%.2x\n", __func__, control);
  1106. return result;
  1107. }
  1108. static void cp210x_break_ctl(struct tty_struct *tty, int break_state)
  1109. {
  1110. struct usb_serial_port *port = tty->driver_data;
  1111. u16 state;
  1112. if (break_state == 0)
  1113. state = BREAK_OFF;
  1114. else
  1115. state = BREAK_ON;
  1116. dev_dbg(&port->dev, "%s - turning break %s\n", __func__,
  1117. state == BREAK_OFF ? "off" : "on");
  1118. cp210x_write_u16_reg(port, CP210X_SET_BREAK, state);
  1119. }
  1120. #ifdef CONFIG_GPIOLIB
  1121. static int cp210x_gpio_request(struct gpio_chip *gc, unsigned int offset)
  1122. {
  1123. struct usb_serial *serial = gpiochip_get_data(gc);
  1124. struct cp210x_serial_private *priv = usb_get_serial_data(serial);
  1125. switch (offset) {
  1126. case 0:
  1127. if (priv->config & CP2105_GPIO0_TXLED_MODE)
  1128. return -ENODEV;
  1129. break;
  1130. case 1:
  1131. if (priv->config & (CP2105_GPIO1_RXLED_MODE |
  1132. CP2105_GPIO1_RS485_MODE))
  1133. return -ENODEV;
  1134. break;
  1135. }
  1136. return 0;
  1137. }
  1138. static int cp210x_gpio_get(struct gpio_chip *gc, unsigned int gpio)
  1139. {
  1140. struct usb_serial *serial = gpiochip_get_data(gc);
  1141. int result;
  1142. u8 buf;
  1143. result = cp210x_read_vendor_block(serial, REQTYPE_INTERFACE_TO_HOST,
  1144. CP210X_READ_LATCH, &buf, sizeof(buf));
  1145. if (result < 0)
  1146. return result;
  1147. return !!(buf & BIT(gpio));
  1148. }
  1149. static void cp210x_gpio_set(struct gpio_chip *gc, unsigned int gpio, int value)
  1150. {
  1151. struct usb_serial *serial = gpiochip_get_data(gc);
  1152. struct cp210x_gpio_write buf;
  1153. if (value == 1)
  1154. buf.state = BIT(gpio);
  1155. else
  1156. buf.state = 0;
  1157. buf.mask = BIT(gpio);
  1158. cp210x_write_vendor_block(serial, REQTYPE_HOST_TO_INTERFACE,
  1159. CP210X_WRITE_LATCH, &buf, sizeof(buf));
  1160. }
  1161. static int cp210x_gpio_direction_get(struct gpio_chip *gc, unsigned int gpio)
  1162. {
  1163. /* Hardware does not support an input mode */
  1164. return 0;
  1165. }
  1166. static int cp210x_gpio_direction_input(struct gpio_chip *gc, unsigned int gpio)
  1167. {
  1168. /* Hardware does not support an input mode */
  1169. return -ENOTSUPP;
  1170. }
  1171. static int cp210x_gpio_direction_output(struct gpio_chip *gc, unsigned int gpio,
  1172. int value)
  1173. {
  1174. return 0;
  1175. }
  1176. static int cp210x_gpio_set_config(struct gpio_chip *gc, unsigned int gpio,
  1177. unsigned long config)
  1178. {
  1179. struct usb_serial *serial = gpiochip_get_data(gc);
  1180. struct cp210x_serial_private *priv = usb_get_serial_data(serial);
  1181. enum pin_config_param param = pinconf_to_config_param(config);
  1182. /* Succeed only if in correct mode (this can't be set at runtime) */
  1183. if ((param == PIN_CONFIG_DRIVE_PUSH_PULL) &&
  1184. (priv->gpio_mode & BIT(gpio)))
  1185. return 0;
  1186. if ((param == PIN_CONFIG_DRIVE_OPEN_DRAIN) &&
  1187. !(priv->gpio_mode & BIT(gpio)))
  1188. return 0;
  1189. return -ENOTSUPP;
  1190. }
  1191. /*
  1192. * This function is for configuring GPIO using shared pins, where other signals
  1193. * are made unavailable by configuring the use of GPIO. This is believed to be
  1194. * only applicable to the cp2105 at this point, the other devices supported by
  1195. * this driver that provide GPIO do so in a way that does not impact other
  1196. * signals and are thus expected to have very different initialisation.
  1197. */
  1198. static int cp2105_shared_gpio_init(struct usb_serial *serial)
  1199. {
  1200. struct cp210x_serial_private *priv = usb_get_serial_data(serial);
  1201. struct cp210x_pin_mode mode;
  1202. struct cp210x_config config;
  1203. u8 intf_num = cp210x_interface_num(serial);
  1204. int result;
  1205. result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
  1206. CP210X_GET_DEVICEMODE, &mode,
  1207. sizeof(mode));
  1208. if (result < 0)
  1209. return result;
  1210. result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
  1211. CP210X_GET_PORTCONFIG, &config,
  1212. sizeof(config));
  1213. if (result < 0)
  1214. return result;
  1215. /* 2 banks of GPIO - One for the pins taken from each serial port */
  1216. if (intf_num == 0) {
  1217. if (mode.eci == CP210X_PIN_MODE_MODEM)
  1218. return 0;
  1219. priv->config = config.eci_cfg;
  1220. priv->gpio_mode = (u8)((le16_to_cpu(config.gpio_mode) &
  1221. CP210X_ECI_GPIO_MODE_MASK) >>
  1222. CP210X_ECI_GPIO_MODE_OFFSET);
  1223. priv->gc.ngpio = 2;
  1224. } else if (intf_num == 1) {
  1225. if (mode.sci == CP210X_PIN_MODE_MODEM)
  1226. return 0;
  1227. priv->config = config.sci_cfg;
  1228. priv->gpio_mode = (u8)((le16_to_cpu(config.gpio_mode) &
  1229. CP210X_SCI_GPIO_MODE_MASK) >>
  1230. CP210X_SCI_GPIO_MODE_OFFSET);
  1231. priv->gc.ngpio = 3;
  1232. } else {
  1233. return -ENODEV;
  1234. }
  1235. priv->gc.label = "cp210x";
  1236. priv->gc.request = cp210x_gpio_request;
  1237. priv->gc.get_direction = cp210x_gpio_direction_get;
  1238. priv->gc.direction_input = cp210x_gpio_direction_input;
  1239. priv->gc.direction_output = cp210x_gpio_direction_output;
  1240. priv->gc.get = cp210x_gpio_get;
  1241. priv->gc.set = cp210x_gpio_set;
  1242. priv->gc.set_config = cp210x_gpio_set_config;
  1243. priv->gc.owner = THIS_MODULE;
  1244. priv->gc.parent = &serial->interface->dev;
  1245. priv->gc.base = -1;
  1246. priv->gc.can_sleep = true;
  1247. result = gpiochip_add_data(&priv->gc, serial);
  1248. if (!result)
  1249. priv->gpio_registered = true;
  1250. return result;
  1251. }
  1252. static void cp210x_gpio_remove(struct usb_serial *serial)
  1253. {
  1254. struct cp210x_serial_private *priv = usb_get_serial_data(serial);
  1255. if (priv->gpio_registered) {
  1256. gpiochip_remove(&priv->gc);
  1257. priv->gpio_registered = false;
  1258. }
  1259. }
  1260. #else
  1261. static int cp2105_shared_gpio_init(struct usb_serial *serial)
  1262. {
  1263. return 0;
  1264. }
  1265. static void cp210x_gpio_remove(struct usb_serial *serial)
  1266. {
  1267. /* Nothing to do */
  1268. }
  1269. #endif
  1270. static int cp210x_port_probe(struct usb_serial_port *port)
  1271. {
  1272. struct usb_serial *serial = port->serial;
  1273. struct cp210x_port_private *port_priv;
  1274. int ret;
  1275. port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL);
  1276. if (!port_priv)
  1277. return -ENOMEM;
  1278. port_priv->bInterfaceNumber = cp210x_interface_num(serial);
  1279. usb_set_serial_port_data(port, port_priv);
  1280. ret = cp210x_detect_swapped_line_ctl(port);
  1281. if (ret) {
  1282. kfree(port_priv);
  1283. return ret;
  1284. }
  1285. return 0;
  1286. }
  1287. static int cp210x_port_remove(struct usb_serial_port *port)
  1288. {
  1289. struct cp210x_port_private *port_priv;
  1290. port_priv = usb_get_serial_port_data(port);
  1291. kfree(port_priv);
  1292. return 0;
  1293. }
  1294. static int cp210x_attach(struct usb_serial *serial)
  1295. {
  1296. int result;
  1297. struct cp210x_serial_private *priv;
  1298. priv = kzalloc(sizeof(*priv), GFP_KERNEL);
  1299. if (!priv)
  1300. return -ENOMEM;
  1301. result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
  1302. CP210X_GET_PARTNUM, &priv->partnum,
  1303. sizeof(priv->partnum));
  1304. if (result < 0)
  1305. goto err_free_priv;
  1306. usb_set_serial_data(serial, priv);
  1307. if (priv->partnum == CP210X_PARTNUM_CP2105) {
  1308. result = cp2105_shared_gpio_init(serial);
  1309. if (result < 0) {
  1310. dev_err(&serial->interface->dev,
  1311. "GPIO initialisation failed, continuing without GPIO support\n");
  1312. }
  1313. }
  1314. return 0;
  1315. err_free_priv:
  1316. kfree(priv);
  1317. return result;
  1318. }
  1319. static void cp210x_disconnect(struct usb_serial *serial)
  1320. {
  1321. cp210x_gpio_remove(serial);
  1322. }
  1323. static void cp210x_release(struct usb_serial *serial)
  1324. {
  1325. struct cp210x_serial_private *priv = usb_get_serial_data(serial);
  1326. cp210x_gpio_remove(serial);
  1327. kfree(priv);
  1328. }
  1329. module_usb_serial_driver(serial_drivers, id_table);
  1330. MODULE_DESCRIPTION(DRIVER_DESC);
  1331. MODULE_LICENSE("GPL");