io_ti.c 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811
  1. /*
  2. * Edgeport USB Serial Converter driver
  3. *
  4. * Copyright (C) 2000-2002 Inside Out Networks, All rights reserved.
  5. * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * Supports the following devices:
  13. * EP/1 EP/2 EP/4 EP/21 EP/22 EP/221 EP/42 EP/421 WATCHPORT
  14. *
  15. * For questions or problems with this driver, contact Inside Out
  16. * Networks technical support, or Peter Berger <pberger@brimson.com>,
  17. * or Al Borchers <alborchers@steinerpoint.com>.
  18. */
  19. #include <linux/kernel.h>
  20. #include <linux/jiffies.h>
  21. #include <linux/errno.h>
  22. #include <linux/init.h>
  23. #include <linux/slab.h>
  24. #include <linux/tty.h>
  25. #include <linux/tty_driver.h>
  26. #include <linux/tty_flip.h>
  27. #include <linux/module.h>
  28. #include <linux/spinlock.h>
  29. #include <linux/mutex.h>
  30. #include <linux/serial.h>
  31. #include <linux/kfifo.h>
  32. #include <linux/ioctl.h>
  33. #include <linux/firmware.h>
  34. #include <linux/uaccess.h>
  35. #include <linux/usb.h>
  36. #include <linux/usb/serial.h>
  37. #include "io_16654.h"
  38. #include "io_usbvend.h"
  39. #include "io_ti.h"
  40. /*
  41. * Version Information
  42. */
  43. #define DRIVER_VERSION "v0.7mode043006"
  44. #define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com> and David Iacovelli"
  45. #define DRIVER_DESC "Edgeport USB Serial Driver"
  46. #define EPROM_PAGE_SIZE 64
  47. /* different hardware types */
  48. #define HARDWARE_TYPE_930 0
  49. #define HARDWARE_TYPE_TIUMP 1
  50. /* IOCTL_PRIVATE_TI_GET_MODE Definitions */
  51. #define TI_MODE_CONFIGURING 0 /* Device has not entered start device */
  52. #define TI_MODE_BOOT 1 /* Staying in boot mode */
  53. #define TI_MODE_DOWNLOAD 2 /* Made it to download mode */
  54. #define TI_MODE_TRANSITIONING 3 /* Currently in boot mode but
  55. transitioning to download mode */
  56. /* read urb state */
  57. #define EDGE_READ_URB_RUNNING 0
  58. #define EDGE_READ_URB_STOPPING 1
  59. #define EDGE_READ_URB_STOPPED 2
  60. #define EDGE_CLOSING_WAIT 4000 /* in .01 sec */
  61. #define EDGE_OUT_BUF_SIZE 1024
  62. /* Product information read from the Edgeport */
  63. struct product_info {
  64. int TiMode; /* Current TI Mode */
  65. __u8 hardware_type; /* Type of hardware */
  66. } __attribute__((packed));
  67. struct edgeport_port {
  68. __u16 uart_base;
  69. __u16 dma_address;
  70. __u8 shadow_msr;
  71. __u8 shadow_mcr;
  72. __u8 shadow_lsr;
  73. __u8 lsr_mask;
  74. __u32 ump_read_timeout; /* Number of milliseconds the UMP will
  75. wait without data before completing
  76. a read short */
  77. int baud_rate;
  78. int close_pending;
  79. int lsr_event;
  80. struct async_icount icount;
  81. wait_queue_head_t delta_msr_wait; /* for handling sleeping while
  82. waiting for msr change to
  83. happen */
  84. struct edgeport_serial *edge_serial;
  85. struct usb_serial_port *port;
  86. __u8 bUartMode; /* Port type, 0: RS232, etc. */
  87. spinlock_t ep_lock;
  88. int ep_read_urb_state;
  89. int ep_write_urb_in_use;
  90. struct kfifo write_fifo;
  91. };
  92. struct edgeport_serial {
  93. struct product_info product_info;
  94. u8 TI_I2C_Type; /* Type of I2C in UMP */
  95. u8 TiReadI2C; /* Set to TRUE if we have read the
  96. I2c in Boot Mode */
  97. struct mutex es_lock;
  98. int num_ports_open;
  99. struct usb_serial *serial;
  100. };
  101. /* Devices that this driver supports */
  102. static const struct usb_device_id edgeport_1port_id_table[] = {
  103. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_1) },
  104. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1) },
  105. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1I) },
  106. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROXIMITY) },
  107. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOTION) },
  108. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOISTURE) },
  109. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_TEMPERATURE) },
  110. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_HUMIDITY) },
  111. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_POWER) },
  112. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_LIGHT) },
  113. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_RADIATION) },
  114. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_DISTANCE) },
  115. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_ACCELERATION) },
  116. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROX_DIST) },
  117. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_HP4CD) },
  118. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_PCI) },
  119. { }
  120. };
  121. static const struct usb_device_id edgeport_2port_id_table[] = {
  122. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2) },
  123. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2C) },
  124. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2I) },
  125. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_421) },
  126. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21) },
  127. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_42) },
  128. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4) },
  129. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4I) },
  130. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22I) },
  131. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_221C) },
  132. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22C) },
  133. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21C) },
  134. /* The 4, 8 and 16 port devices show up as multiple 2 port devices */
  135. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4S) },
  136. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8) },
  137. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8S) },
  138. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416) },
  139. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416B) },
  140. { }
  141. };
  142. /* Devices that this driver supports */
  143. static const struct usb_device_id id_table_combined[] = {
  144. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_1) },
  145. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1) },
  146. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1I) },
  147. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROXIMITY) },
  148. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOTION) },
  149. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOISTURE) },
  150. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_TEMPERATURE) },
  151. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_HUMIDITY) },
  152. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_POWER) },
  153. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_LIGHT) },
  154. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_RADIATION) },
  155. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_DISTANCE) },
  156. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_ACCELERATION) },
  157. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROX_DIST) },
  158. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_HP4CD) },
  159. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_PCI) },
  160. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2) },
  161. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2C) },
  162. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2I) },
  163. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_421) },
  164. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21) },
  165. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_42) },
  166. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4) },
  167. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4I) },
  168. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22I) },
  169. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_221C) },
  170. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22C) },
  171. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21C) },
  172. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4S) },
  173. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8) },
  174. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8S) },
  175. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416) },
  176. { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416B) },
  177. { }
  178. };
  179. MODULE_DEVICE_TABLE(usb, id_table_combined);
  180. static struct usb_driver io_driver = {
  181. .name = "io_ti",
  182. .probe = usb_serial_probe,
  183. .disconnect = usb_serial_disconnect,
  184. .id_table = id_table_combined,
  185. };
  186. static unsigned char OperationalMajorVersion;
  187. static unsigned char OperationalMinorVersion;
  188. static unsigned short OperationalBuildNumber;
  189. static bool debug;
  190. static int closing_wait = EDGE_CLOSING_WAIT;
  191. static bool ignore_cpu_rev;
  192. static int default_uart_mode; /* RS232 */
  193. static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
  194. unsigned char *data, int length);
  195. static void stop_read(struct edgeport_port *edge_port);
  196. static int restart_read(struct edgeport_port *edge_port);
  197. static void edge_set_termios(struct tty_struct *tty,
  198. struct usb_serial_port *port, struct ktermios *old_termios);
  199. static void edge_send(struct tty_struct *tty);
  200. /* sysfs attributes */
  201. static int edge_create_sysfs_attrs(struct usb_serial_port *port);
  202. static int edge_remove_sysfs_attrs(struct usb_serial_port *port);
  203. static int ti_vread_sync(struct usb_device *dev, __u8 request,
  204. __u16 value, __u16 index, u8 *data, int size)
  205. {
  206. int status;
  207. status = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), request,
  208. (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
  209. value, index, data, size, 1000);
  210. if (status < 0)
  211. return status;
  212. if (status != size) {
  213. dbg("%s - wanted to write %d, but only wrote %d",
  214. __func__, size, status);
  215. return -ECOMM;
  216. }
  217. return 0;
  218. }
  219. static int ti_vsend_sync(struct usb_device *dev, __u8 request,
  220. __u16 value, __u16 index, u8 *data, int size)
  221. {
  222. int status;
  223. status = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), request,
  224. (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
  225. value, index, data, size, 1000);
  226. if (status < 0)
  227. return status;
  228. if (status != size) {
  229. dbg("%s - wanted to write %d, but only wrote %d",
  230. __func__, size, status);
  231. return -ECOMM;
  232. }
  233. return 0;
  234. }
  235. static int send_cmd(struct usb_device *dev, __u8 command,
  236. __u8 moduleid, __u16 value, u8 *data,
  237. int size)
  238. {
  239. return ti_vsend_sync(dev, command, value, moduleid, data, size);
  240. }
  241. /* clear tx/rx buffers and fifo in TI UMP */
  242. static int purge_port(struct usb_serial_port *port, __u16 mask)
  243. {
  244. int port_number = port->number - port->serial->minor;
  245. dbg("%s - port %d, mask %x", __func__, port_number, mask);
  246. return send_cmd(port->serial->dev,
  247. UMPC_PURGE_PORT,
  248. (__u8)(UMPM_UART1_PORT + port_number),
  249. mask,
  250. NULL,
  251. 0);
  252. }
  253. /**
  254. * read_download_mem - Read edgeport memory from TI chip
  255. * @dev: usb device pointer
  256. * @start_address: Device CPU address at which to read
  257. * @length: Length of above data
  258. * @address_type: Can read both XDATA and I2C
  259. * @buffer: pointer to input data buffer
  260. */
  261. static int read_download_mem(struct usb_device *dev, int start_address,
  262. int length, __u8 address_type, __u8 *buffer)
  263. {
  264. int status = 0;
  265. __u8 read_length;
  266. __be16 be_start_address;
  267. dbg("%s - @ %x for %d", __func__, start_address, length);
  268. /* Read in blocks of 64 bytes
  269. * (TI firmware can't handle more than 64 byte reads)
  270. */
  271. while (length) {
  272. if (length > 64)
  273. read_length = 64;
  274. else
  275. read_length = (__u8)length;
  276. if (read_length > 1) {
  277. dbg("%s - @ %x for %d", __func__,
  278. start_address, read_length);
  279. }
  280. be_start_address = cpu_to_be16(start_address);
  281. status = ti_vread_sync(dev, UMPC_MEMORY_READ,
  282. (__u16)address_type,
  283. (__force __u16)be_start_address,
  284. buffer, read_length);
  285. if (status) {
  286. dbg("%s - ERROR %x", __func__, status);
  287. return status;
  288. }
  289. if (read_length > 1)
  290. usb_serial_debug_data(debug, &dev->dev, __func__,
  291. read_length, buffer);
  292. /* Update pointers/length */
  293. start_address += read_length;
  294. buffer += read_length;
  295. length -= read_length;
  296. }
  297. return status;
  298. }
  299. static int read_ram(struct usb_device *dev, int start_address,
  300. int length, __u8 *buffer)
  301. {
  302. return read_download_mem(dev, start_address, length,
  303. DTK_ADDR_SPACE_XDATA, buffer);
  304. }
  305. /* Read edgeport memory to a given block */
  306. static int read_boot_mem(struct edgeport_serial *serial,
  307. int start_address, int length, __u8 *buffer)
  308. {
  309. int status = 0;
  310. int i;
  311. for (i = 0; i < length; i++) {
  312. status = ti_vread_sync(serial->serial->dev,
  313. UMPC_MEMORY_READ, serial->TI_I2C_Type,
  314. (__u16)(start_address+i), &buffer[i], 0x01);
  315. if (status) {
  316. dbg("%s - ERROR %x", __func__, status);
  317. return status;
  318. }
  319. }
  320. dbg("%s - start_address = %x, length = %d",
  321. __func__, start_address, length);
  322. usb_serial_debug_data(debug, &serial->serial->dev->dev,
  323. __func__, length, buffer);
  324. serial->TiReadI2C = 1;
  325. return status;
  326. }
  327. /* Write given block to TI EPROM memory */
  328. static int write_boot_mem(struct edgeport_serial *serial,
  329. int start_address, int length, __u8 *buffer)
  330. {
  331. int status = 0;
  332. int i;
  333. u8 *temp;
  334. /* Must do a read before write */
  335. if (!serial->TiReadI2C) {
  336. temp = kmalloc(1, GFP_KERNEL);
  337. if (!temp) {
  338. dev_err(&serial->serial->dev->dev,
  339. "%s - out of memory\n", __func__);
  340. return -ENOMEM;
  341. }
  342. status = read_boot_mem(serial, 0, 1, temp);
  343. kfree(temp);
  344. if (status)
  345. return status;
  346. }
  347. for (i = 0; i < length; ++i) {
  348. status = ti_vsend_sync(serial->serial->dev,
  349. UMPC_MEMORY_WRITE, buffer[i],
  350. (__u16)(i + start_address), NULL, 0);
  351. if (status)
  352. return status;
  353. }
  354. dbg("%s - start_sddr = %x, length = %d",
  355. __func__, start_address, length);
  356. usb_serial_debug_data(debug, &serial->serial->dev->dev,
  357. __func__, length, buffer);
  358. return status;
  359. }
  360. /* Write edgeport I2C memory to TI chip */
  361. static int write_i2c_mem(struct edgeport_serial *serial,
  362. int start_address, int length, __u8 address_type, __u8 *buffer)
  363. {
  364. int status = 0;
  365. int write_length;
  366. __be16 be_start_address;
  367. /* We can only send a maximum of 1 aligned byte page at a time */
  368. /* calculate the number of bytes left in the first page */
  369. write_length = EPROM_PAGE_SIZE -
  370. (start_address & (EPROM_PAGE_SIZE - 1));
  371. if (write_length > length)
  372. write_length = length;
  373. dbg("%s - BytesInFirstPage Addr = %x, length = %d",
  374. __func__, start_address, write_length);
  375. usb_serial_debug_data(debug, &serial->serial->dev->dev,
  376. __func__, write_length, buffer);
  377. /* Write first page */
  378. be_start_address = cpu_to_be16(start_address);
  379. status = ti_vsend_sync(serial->serial->dev,
  380. UMPC_MEMORY_WRITE, (__u16)address_type,
  381. (__force __u16)be_start_address,
  382. buffer, write_length);
  383. if (status) {
  384. dbg("%s - ERROR %d", __func__, status);
  385. return status;
  386. }
  387. length -= write_length;
  388. start_address += write_length;
  389. buffer += write_length;
  390. /* We should be aligned now -- can write
  391. max page size bytes at a time */
  392. while (length) {
  393. if (length > EPROM_PAGE_SIZE)
  394. write_length = EPROM_PAGE_SIZE;
  395. else
  396. write_length = length;
  397. dbg("%s - Page Write Addr = %x, length = %d",
  398. __func__, start_address, write_length);
  399. usb_serial_debug_data(debug, &serial->serial->dev->dev,
  400. __func__, write_length, buffer);
  401. /* Write next page */
  402. be_start_address = cpu_to_be16(start_address);
  403. status = ti_vsend_sync(serial->serial->dev, UMPC_MEMORY_WRITE,
  404. (__u16)address_type,
  405. (__force __u16)be_start_address,
  406. buffer, write_length);
  407. if (status) {
  408. dev_err(&serial->serial->dev->dev, "%s - ERROR %d\n",
  409. __func__, status);
  410. return status;
  411. }
  412. length -= write_length;
  413. start_address += write_length;
  414. buffer += write_length;
  415. }
  416. return status;
  417. }
  418. /* Examine the UMP DMA registers and LSR
  419. *
  420. * Check the MSBit of the X and Y DMA byte count registers.
  421. * A zero in this bit indicates that the TX DMA buffers are empty
  422. * then check the TX Empty bit in the UART.
  423. */
  424. static int tx_active(struct edgeport_port *port)
  425. {
  426. int status;
  427. struct out_endpoint_desc_block *oedb;
  428. __u8 *lsr;
  429. int bytes_left = 0;
  430. oedb = kmalloc(sizeof(*oedb), GFP_KERNEL);
  431. if (!oedb) {
  432. dev_err(&port->port->dev, "%s - out of memory\n", __func__);
  433. return -ENOMEM;
  434. }
  435. lsr = kmalloc(1, GFP_KERNEL); /* Sigh, that's right, just one byte,
  436. as not all platforms can do DMA
  437. from stack */
  438. if (!lsr) {
  439. kfree(oedb);
  440. return -ENOMEM;
  441. }
  442. /* Read the DMA Count Registers */
  443. status = read_ram(port->port->serial->dev, port->dma_address,
  444. sizeof(*oedb), (void *)oedb);
  445. if (status)
  446. goto exit_is_tx_active;
  447. dbg("%s - XByteCount 0x%X", __func__, oedb->XByteCount);
  448. /* and the LSR */
  449. status = read_ram(port->port->serial->dev,
  450. port->uart_base + UMPMEM_OFFS_UART_LSR, 1, lsr);
  451. if (status)
  452. goto exit_is_tx_active;
  453. dbg("%s - LSR = 0x%X", __func__, *lsr);
  454. /* If either buffer has data or we are transmitting then return TRUE */
  455. if ((oedb->XByteCount & 0x80) != 0)
  456. bytes_left += 64;
  457. if ((*lsr & UMP_UART_LSR_TX_MASK) == 0)
  458. bytes_left += 1;
  459. /* We return Not Active if we get any kind of error */
  460. exit_is_tx_active:
  461. dbg("%s - return %d", __func__, bytes_left);
  462. kfree(lsr);
  463. kfree(oedb);
  464. return bytes_left;
  465. }
  466. static void chase_port(struct edgeport_port *port, unsigned long timeout,
  467. int flush)
  468. {
  469. int baud_rate;
  470. struct tty_struct *tty = tty_port_tty_get(&port->port->port);
  471. struct usb_serial *serial = port->port->serial;
  472. wait_queue_t wait;
  473. unsigned long flags;
  474. if (!timeout)
  475. timeout = (HZ * EDGE_CLOSING_WAIT)/100;
  476. /* wait for data to drain from the buffer */
  477. spin_lock_irqsave(&port->ep_lock, flags);
  478. init_waitqueue_entry(&wait, current);
  479. add_wait_queue(&tty->write_wait, &wait);
  480. for (;;) {
  481. set_current_state(TASK_INTERRUPTIBLE);
  482. if (kfifo_len(&port->write_fifo) == 0
  483. || timeout == 0 || signal_pending(current)
  484. || serial->disconnected)
  485. /* disconnect */
  486. break;
  487. spin_unlock_irqrestore(&port->ep_lock, flags);
  488. timeout = schedule_timeout(timeout);
  489. spin_lock_irqsave(&port->ep_lock, flags);
  490. }
  491. set_current_state(TASK_RUNNING);
  492. remove_wait_queue(&tty->write_wait, &wait);
  493. if (flush)
  494. kfifo_reset_out(&port->write_fifo);
  495. spin_unlock_irqrestore(&port->ep_lock, flags);
  496. tty_kref_put(tty);
  497. /* wait for data to drain from the device */
  498. timeout += jiffies;
  499. while ((long)(jiffies - timeout) < 0 && !signal_pending(current)
  500. && !serial->disconnected) {
  501. /* not disconnected */
  502. if (!tx_active(port))
  503. break;
  504. msleep(10);
  505. }
  506. /* disconnected */
  507. if (serial->disconnected)
  508. return;
  509. /* wait one more character time, based on baud rate */
  510. /* (tx_active doesn't seem to wait for the last byte) */
  511. baud_rate = port->baud_rate;
  512. if (baud_rate == 0)
  513. baud_rate = 50;
  514. msleep(max(1, DIV_ROUND_UP(10000, baud_rate)));
  515. }
  516. static int choose_config(struct usb_device *dev)
  517. {
  518. /*
  519. * There may be multiple configurations on this device, in which case
  520. * we would need to read and parse all of them to find out which one
  521. * we want. However, we just support one config at this point,
  522. * configuration # 1, which is Config Descriptor 0.
  523. */
  524. dbg("%s - Number of Interfaces = %d",
  525. __func__, dev->config->desc.bNumInterfaces);
  526. dbg("%s - MAX Power = %d",
  527. __func__, dev->config->desc.bMaxPower * 2);
  528. if (dev->config->desc.bNumInterfaces != 1) {
  529. dev_err(&dev->dev, "%s - bNumInterfaces is not 1, ERROR!\n",
  530. __func__);
  531. return -ENODEV;
  532. }
  533. return 0;
  534. }
  535. static int read_rom(struct edgeport_serial *serial,
  536. int start_address, int length, __u8 *buffer)
  537. {
  538. int status;
  539. if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
  540. status = read_download_mem(serial->serial->dev,
  541. start_address,
  542. length,
  543. serial->TI_I2C_Type,
  544. buffer);
  545. } else {
  546. status = read_boot_mem(serial, start_address, length,
  547. buffer);
  548. }
  549. return status;
  550. }
  551. static int write_rom(struct edgeport_serial *serial, int start_address,
  552. int length, __u8 *buffer)
  553. {
  554. if (serial->product_info.TiMode == TI_MODE_BOOT)
  555. return write_boot_mem(serial, start_address, length,
  556. buffer);
  557. if (serial->product_info.TiMode == TI_MODE_DOWNLOAD)
  558. return write_i2c_mem(serial, start_address, length,
  559. serial->TI_I2C_Type, buffer);
  560. return -EINVAL;
  561. }
  562. /* Read a descriptor header from I2C based on type */
  563. static int get_descriptor_addr(struct edgeport_serial *serial,
  564. int desc_type, struct ti_i2c_desc *rom_desc)
  565. {
  566. int start_address;
  567. int status;
  568. /* Search for requested descriptor in I2C */
  569. start_address = 2;
  570. do {
  571. status = read_rom(serial,
  572. start_address,
  573. sizeof(struct ti_i2c_desc),
  574. (__u8 *)rom_desc);
  575. if (status)
  576. return 0;
  577. if (rom_desc->Type == desc_type)
  578. return start_address;
  579. start_address = start_address + sizeof(struct ti_i2c_desc)
  580. + rom_desc->Size;
  581. } while ((start_address < TI_MAX_I2C_SIZE) && rom_desc->Type);
  582. return 0;
  583. }
  584. /* Validate descriptor checksum */
  585. static int valid_csum(struct ti_i2c_desc *rom_desc, __u8 *buffer)
  586. {
  587. __u16 i;
  588. __u8 cs = 0;
  589. for (i = 0; i < rom_desc->Size; i++)
  590. cs = (__u8)(cs + buffer[i]);
  591. if (cs != rom_desc->CheckSum) {
  592. dbg("%s - Mismatch %x - %x", __func__, rom_desc->CheckSum, cs);
  593. return -EINVAL;
  594. }
  595. return 0;
  596. }
  597. /* Make sure that the I2C image is good */
  598. static int check_i2c_image(struct edgeport_serial *serial)
  599. {
  600. struct device *dev = &serial->serial->dev->dev;
  601. int status = 0;
  602. struct ti_i2c_desc *rom_desc;
  603. int start_address = 2;
  604. __u8 *buffer;
  605. __u16 ttype;
  606. rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
  607. if (!rom_desc) {
  608. dev_err(dev, "%s - out of memory\n", __func__);
  609. return -ENOMEM;
  610. }
  611. buffer = kmalloc(TI_MAX_I2C_SIZE, GFP_KERNEL);
  612. if (!buffer) {
  613. dev_err(dev, "%s - out of memory when allocating buffer\n",
  614. __func__);
  615. kfree(rom_desc);
  616. return -ENOMEM;
  617. }
  618. /* Read the first byte (Signature0) must be 0x52 or 0x10 */
  619. status = read_rom(serial, 0, 1, buffer);
  620. if (status)
  621. goto out;
  622. if (*buffer != UMP5152 && *buffer != UMP3410) {
  623. dev_err(dev, "%s - invalid buffer signature\n", __func__);
  624. status = -ENODEV;
  625. goto out;
  626. }
  627. do {
  628. /* Validate the I2C */
  629. status = read_rom(serial,
  630. start_address,
  631. sizeof(struct ti_i2c_desc),
  632. (__u8 *)rom_desc);
  633. if (status)
  634. break;
  635. if ((start_address + sizeof(struct ti_i2c_desc) +
  636. rom_desc->Size) > TI_MAX_I2C_SIZE) {
  637. status = -ENODEV;
  638. dbg("%s - structure too big, erroring out.", __func__);
  639. break;
  640. }
  641. dbg("%s Type = 0x%x", __func__, rom_desc->Type);
  642. /* Skip type 2 record */
  643. ttype = rom_desc->Type & 0x0f;
  644. if (ttype != I2C_DESC_TYPE_FIRMWARE_BASIC
  645. && ttype != I2C_DESC_TYPE_FIRMWARE_AUTO) {
  646. /* Read the descriptor data */
  647. status = read_rom(serial, start_address +
  648. sizeof(struct ti_i2c_desc),
  649. rom_desc->Size, buffer);
  650. if (status)
  651. break;
  652. status = valid_csum(rom_desc, buffer);
  653. if (status)
  654. break;
  655. }
  656. start_address = start_address + sizeof(struct ti_i2c_desc) +
  657. rom_desc->Size;
  658. } while ((rom_desc->Type != I2C_DESC_TYPE_ION) &&
  659. (start_address < TI_MAX_I2C_SIZE));
  660. if ((rom_desc->Type != I2C_DESC_TYPE_ION) ||
  661. (start_address > TI_MAX_I2C_SIZE))
  662. status = -ENODEV;
  663. out:
  664. kfree(buffer);
  665. kfree(rom_desc);
  666. return status;
  667. }
  668. static int get_manuf_info(struct edgeport_serial *serial, __u8 *buffer)
  669. {
  670. int status;
  671. int start_address;
  672. struct ti_i2c_desc *rom_desc;
  673. struct edge_ti_manuf_descriptor *desc;
  674. rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
  675. if (!rom_desc) {
  676. dev_err(&serial->serial->dev->dev, "%s - out of memory\n",
  677. __func__);
  678. return -ENOMEM;
  679. }
  680. start_address = get_descriptor_addr(serial, I2C_DESC_TYPE_ION,
  681. rom_desc);
  682. if (!start_address) {
  683. dbg("%s - Edge Descriptor not found in I2C", __func__);
  684. status = -ENODEV;
  685. goto exit;
  686. }
  687. /* Read the descriptor data */
  688. status = read_rom(serial, start_address+sizeof(struct ti_i2c_desc),
  689. rom_desc->Size, buffer);
  690. if (status)
  691. goto exit;
  692. status = valid_csum(rom_desc, buffer);
  693. desc = (struct edge_ti_manuf_descriptor *)buffer;
  694. dbg("%s - IonConfig 0x%x", __func__, desc->IonConfig);
  695. dbg("%s - Version %d", __func__, desc->Version);
  696. dbg("%s - Cpu/Board 0x%x", __func__, desc->CpuRev_BoardRev);
  697. dbg("%s - NumPorts %d", __func__, desc->NumPorts);
  698. dbg("%s - NumVirtualPorts %d", __func__, desc->NumVirtualPorts);
  699. dbg("%s - TotalPorts %d", __func__, desc->TotalPorts);
  700. exit:
  701. kfree(rom_desc);
  702. return status;
  703. }
  704. /* Build firmware header used for firmware update */
  705. static int build_i2c_fw_hdr(__u8 *header, struct device *dev)
  706. {
  707. __u8 *buffer;
  708. int buffer_size;
  709. int i;
  710. int err;
  711. __u8 cs = 0;
  712. struct ti_i2c_desc *i2c_header;
  713. struct ti_i2c_image_header *img_header;
  714. struct ti_i2c_firmware_rec *firmware_rec;
  715. const struct firmware *fw;
  716. const char *fw_name = "edgeport/down3.bin";
  717. /* In order to update the I2C firmware we must change the type 2 record
  718. * to type 0xF2. This will force the UMP to come up in Boot Mode.
  719. * Then while in boot mode, the driver will download the latest
  720. * firmware (padded to 15.5k) into the UMP ram. And finally when the
  721. * device comes back up in download mode the driver will cause the new
  722. * firmware to be copied from the UMP Ram to I2C and the firmware will
  723. * update the record type from 0xf2 to 0x02.
  724. */
  725. /* Allocate a 15.5k buffer + 2 bytes for version number
  726. * (Firmware Record) */
  727. buffer_size = (((1024 * 16) - 512 ) +
  728. sizeof(struct ti_i2c_firmware_rec));
  729. buffer = kmalloc(buffer_size, GFP_KERNEL);
  730. if (!buffer) {
  731. dev_err(dev, "%s - out of memory\n", __func__);
  732. return -ENOMEM;
  733. }
  734. // Set entire image of 0xffs
  735. memset(buffer, 0xff, buffer_size);
  736. err = request_firmware(&fw, fw_name, dev);
  737. if (err) {
  738. printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
  739. fw_name, err);
  740. kfree(buffer);
  741. return err;
  742. }
  743. /* Save Download Version Number */
  744. OperationalMajorVersion = fw->data[0];
  745. OperationalMinorVersion = fw->data[1];
  746. OperationalBuildNumber = fw->data[2] | (fw->data[3] << 8);
  747. /* Copy version number into firmware record */
  748. firmware_rec = (struct ti_i2c_firmware_rec *)buffer;
  749. firmware_rec->Ver_Major = OperationalMajorVersion;
  750. firmware_rec->Ver_Minor = OperationalMinorVersion;
  751. /* Pointer to fw_down memory image */
  752. img_header = (struct ti_i2c_image_header *)&fw->data[4];
  753. memcpy(buffer + sizeof(struct ti_i2c_firmware_rec),
  754. &fw->data[4 + sizeof(struct ti_i2c_image_header)],
  755. le16_to_cpu(img_header->Length));
  756. release_firmware(fw);
  757. for (i=0; i < buffer_size; i++) {
  758. cs = (__u8)(cs + buffer[i]);
  759. }
  760. kfree(buffer);
  761. /* Build new header */
  762. i2c_header = (struct ti_i2c_desc *)header;
  763. firmware_rec = (struct ti_i2c_firmware_rec*)i2c_header->Data;
  764. i2c_header->Type = I2C_DESC_TYPE_FIRMWARE_BLANK;
  765. i2c_header->Size = (__u16)buffer_size;
  766. i2c_header->CheckSum = cs;
  767. firmware_rec->Ver_Major = OperationalMajorVersion;
  768. firmware_rec->Ver_Minor = OperationalMinorVersion;
  769. return 0;
  770. }
  771. /* Try to figure out what type of I2c we have */
  772. static int i2c_type_bootmode(struct edgeport_serial *serial)
  773. {
  774. int status;
  775. u8 *data;
  776. data = kmalloc(1, GFP_KERNEL);
  777. if (!data) {
  778. dev_err(&serial->serial->dev->dev,
  779. "%s - out of memory\n", __func__);
  780. return -ENOMEM;
  781. }
  782. /* Try to read type 2 */
  783. status = ti_vread_sync(serial->serial->dev, UMPC_MEMORY_READ,
  784. DTK_ADDR_SPACE_I2C_TYPE_II, 0, data, 0x01);
  785. if (status)
  786. dbg("%s - read 2 status error = %d", __func__, status);
  787. else
  788. dbg("%s - read 2 data = 0x%x", __func__, *data);
  789. if ((!status) && (*data == UMP5152 || *data == UMP3410)) {
  790. dbg("%s - ROM_TYPE_II", __func__);
  791. serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
  792. goto out;
  793. }
  794. /* Try to read type 3 */
  795. status = ti_vread_sync(serial->serial->dev, UMPC_MEMORY_READ,
  796. DTK_ADDR_SPACE_I2C_TYPE_III, 0, data, 0x01);
  797. if (status)
  798. dbg("%s - read 3 status error = %d", __func__, status);
  799. else
  800. dbg("%s - read 2 data = 0x%x", __func__, *data);
  801. if ((!status) && (*data == UMP5152 || *data == UMP3410)) {
  802. dbg("%s - ROM_TYPE_III", __func__);
  803. serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_III;
  804. goto out;
  805. }
  806. dbg("%s - Unknown", __func__);
  807. serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
  808. status = -ENODEV;
  809. out:
  810. kfree(data);
  811. return status;
  812. }
  813. static int bulk_xfer(struct usb_serial *serial, void *buffer,
  814. int length, int *num_sent)
  815. {
  816. int status;
  817. status = usb_bulk_msg(serial->dev,
  818. usb_sndbulkpipe(serial->dev,
  819. serial->port[0]->bulk_out_endpointAddress),
  820. buffer, length, num_sent, 1000);
  821. return status;
  822. }
  823. /* Download given firmware image to the device (IN BOOT MODE) */
  824. static int download_code(struct edgeport_serial *serial, __u8 *image,
  825. int image_length)
  826. {
  827. int status = 0;
  828. int pos;
  829. int transfer;
  830. int done;
  831. /* Transfer firmware image */
  832. for (pos = 0; pos < image_length; ) {
  833. /* Read the next buffer from file */
  834. transfer = image_length - pos;
  835. if (transfer > EDGE_FW_BULK_MAX_PACKET_SIZE)
  836. transfer = EDGE_FW_BULK_MAX_PACKET_SIZE;
  837. /* Transfer data */
  838. status = bulk_xfer(serial->serial, &image[pos],
  839. transfer, &done);
  840. if (status)
  841. break;
  842. /* Advance buffer pointer */
  843. pos += done;
  844. }
  845. return status;
  846. }
  847. /* FIXME!!! */
  848. static int config_boot_dev(struct usb_device *dev)
  849. {
  850. return 0;
  851. }
  852. static int ti_cpu_rev(struct edge_ti_manuf_descriptor *desc)
  853. {
  854. return TI_GET_CPU_REVISION(desc->CpuRev_BoardRev);
  855. }
  856. /**
  857. * DownloadTIFirmware - Download run-time operating firmware to the TI5052
  858. *
  859. * This routine downloads the main operating code into the TI5052, using the
  860. * boot code already burned into E2PROM or ROM.
  861. */
  862. static int download_fw(struct edgeport_serial *serial)
  863. {
  864. struct device *dev = &serial->serial->dev->dev;
  865. int status = 0;
  866. int start_address;
  867. struct edge_ti_manuf_descriptor *ti_manuf_desc;
  868. struct usb_interface_descriptor *interface;
  869. int download_cur_ver;
  870. int download_new_ver;
  871. /* This routine is entered by both the BOOT mode and the Download mode
  872. * We can determine which code is running by the reading the config
  873. * descriptor and if we have only one bulk pipe it is in boot mode
  874. */
  875. serial->product_info.hardware_type = HARDWARE_TYPE_TIUMP;
  876. /* Default to type 2 i2c */
  877. serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
  878. status = choose_config(serial->serial->dev);
  879. if (status)
  880. return status;
  881. interface = &serial->serial->interface->cur_altsetting->desc;
  882. if (!interface) {
  883. dev_err(dev, "%s - no interface set, error!\n", __func__);
  884. return -ENODEV;
  885. }
  886. /*
  887. * Setup initial mode -- the default mode 0 is TI_MODE_CONFIGURING
  888. * if we have more than one endpoint we are definitely in download
  889. * mode
  890. */
  891. if (interface->bNumEndpoints > 1)
  892. serial->product_info.TiMode = TI_MODE_DOWNLOAD;
  893. else
  894. /* Otherwise we will remain in configuring mode */
  895. serial->product_info.TiMode = TI_MODE_CONFIGURING;
  896. /********************************************************************/
  897. /* Download Mode */
  898. /********************************************************************/
  899. if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
  900. struct ti_i2c_desc *rom_desc;
  901. dbg("%s - RUNNING IN DOWNLOAD MODE", __func__);
  902. status = check_i2c_image(serial);
  903. if (status) {
  904. dbg("%s - DOWNLOAD MODE -- BAD I2C", __func__);
  905. return status;
  906. }
  907. /* Validate Hardware version number
  908. * Read Manufacturing Descriptor from TI Based Edgeport
  909. */
  910. ti_manuf_desc = kmalloc(sizeof(*ti_manuf_desc), GFP_KERNEL);
  911. if (!ti_manuf_desc) {
  912. dev_err(dev, "%s - out of memory.\n", __func__);
  913. return -ENOMEM;
  914. }
  915. status = get_manuf_info(serial, (__u8 *)ti_manuf_desc);
  916. if (status) {
  917. kfree(ti_manuf_desc);
  918. return status;
  919. }
  920. /* Check version number of ION descriptor */
  921. if (!ignore_cpu_rev && ti_cpu_rev(ti_manuf_desc) < 2) {
  922. dbg("%s - Wrong CPU Rev %d (Must be 2)",
  923. __func__, ti_cpu_rev(ti_manuf_desc));
  924. kfree(ti_manuf_desc);
  925. return -EINVAL;
  926. }
  927. rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
  928. if (!rom_desc) {
  929. dev_err(dev, "%s - out of memory.\n", __func__);
  930. kfree(ti_manuf_desc);
  931. return -ENOMEM;
  932. }
  933. /* Search for type 2 record (firmware record) */
  934. start_address = get_descriptor_addr(serial,
  935. I2C_DESC_TYPE_FIRMWARE_BASIC, rom_desc);
  936. if (start_address != 0) {
  937. struct ti_i2c_firmware_rec *firmware_version;
  938. u8 *record;
  939. dbg("%s - Found Type FIRMWARE (Type 2) record",
  940. __func__);
  941. firmware_version = kmalloc(sizeof(*firmware_version),
  942. GFP_KERNEL);
  943. if (!firmware_version) {
  944. dev_err(dev, "%s - out of memory.\n", __func__);
  945. kfree(rom_desc);
  946. kfree(ti_manuf_desc);
  947. return -ENOMEM;
  948. }
  949. /* Validate version number
  950. * Read the descriptor data
  951. */
  952. status = read_rom(serial, start_address +
  953. sizeof(struct ti_i2c_desc),
  954. sizeof(struct ti_i2c_firmware_rec),
  955. (__u8 *)firmware_version);
  956. if (status) {
  957. kfree(firmware_version);
  958. kfree(rom_desc);
  959. kfree(ti_manuf_desc);
  960. return status;
  961. }
  962. /* Check version number of download with current
  963. version in I2c */
  964. download_cur_ver = (firmware_version->Ver_Major << 8) +
  965. (firmware_version->Ver_Minor);
  966. download_new_ver = (OperationalMajorVersion << 8) +
  967. (OperationalMinorVersion);
  968. dbg("%s - >> FW Versions Device %d.%d Driver %d.%d",
  969. __func__,
  970. firmware_version->Ver_Major,
  971. firmware_version->Ver_Minor,
  972. OperationalMajorVersion,
  973. OperationalMinorVersion);
  974. /* Check if we have an old version in the I2C and
  975. update if necessary */
  976. if (download_cur_ver < download_new_ver) {
  977. dbg("%s - Update I2C dld from %d.%d to %d.%d",
  978. __func__,
  979. firmware_version->Ver_Major,
  980. firmware_version->Ver_Minor,
  981. OperationalMajorVersion,
  982. OperationalMinorVersion);
  983. record = kmalloc(1, GFP_KERNEL);
  984. if (!record) {
  985. dev_err(dev, "%s - out of memory.\n",
  986. __func__);
  987. kfree(firmware_version);
  988. kfree(rom_desc);
  989. kfree(ti_manuf_desc);
  990. return -ENOMEM;
  991. }
  992. /* In order to update the I2C firmware we must
  993. * change the type 2 record to type 0xF2. This
  994. * will force the UMP to come up in Boot Mode.
  995. * Then while in boot mode, the driver will
  996. * download the latest firmware (padded to
  997. * 15.5k) into the UMP ram. Finally when the
  998. * device comes back up in download mode the
  999. * driver will cause the new firmware to be
  1000. * copied from the UMP Ram to I2C and the
  1001. * firmware will update the record type from
  1002. * 0xf2 to 0x02.
  1003. */
  1004. *record = I2C_DESC_TYPE_FIRMWARE_BLANK;
  1005. /* Change the I2C Firmware record type to
  1006. 0xf2 to trigger an update */
  1007. status = write_rom(serial, start_address,
  1008. sizeof(*record), record);
  1009. if (status) {
  1010. kfree(record);
  1011. kfree(firmware_version);
  1012. kfree(rom_desc);
  1013. kfree(ti_manuf_desc);
  1014. return status;
  1015. }
  1016. /* verify the write -- must do this in order
  1017. * for write to complete before we do the
  1018. * hardware reset
  1019. */
  1020. status = read_rom(serial,
  1021. start_address,
  1022. sizeof(*record),
  1023. record);
  1024. if (status) {
  1025. kfree(record);
  1026. kfree(firmware_version);
  1027. kfree(rom_desc);
  1028. kfree(ti_manuf_desc);
  1029. return status;
  1030. }
  1031. if (*record != I2C_DESC_TYPE_FIRMWARE_BLANK) {
  1032. dev_err(dev,
  1033. "%s - error resetting device\n",
  1034. __func__);
  1035. kfree(record);
  1036. kfree(firmware_version);
  1037. kfree(rom_desc);
  1038. kfree(ti_manuf_desc);
  1039. return -ENODEV;
  1040. }
  1041. dbg("%s - HARDWARE RESET", __func__);
  1042. /* Reset UMP -- Back to BOOT MODE */
  1043. status = ti_vsend_sync(serial->serial->dev,
  1044. UMPC_HARDWARE_RESET,
  1045. 0, 0, NULL, 0);
  1046. dbg("%s - HARDWARE RESET return %d",
  1047. __func__, status);
  1048. /* return an error on purpose. */
  1049. kfree(record);
  1050. kfree(firmware_version);
  1051. kfree(rom_desc);
  1052. kfree(ti_manuf_desc);
  1053. return -ENODEV;
  1054. }
  1055. kfree(firmware_version);
  1056. }
  1057. /* Search for type 0xF2 record (firmware blank record) */
  1058. else if ((start_address = get_descriptor_addr(serial, I2C_DESC_TYPE_FIRMWARE_BLANK, rom_desc)) != 0) {
  1059. #define HEADER_SIZE (sizeof(struct ti_i2c_desc) + \
  1060. sizeof(struct ti_i2c_firmware_rec))
  1061. __u8 *header;
  1062. __u8 *vheader;
  1063. header = kmalloc(HEADER_SIZE, GFP_KERNEL);
  1064. if (!header) {
  1065. dev_err(dev, "%s - out of memory.\n", __func__);
  1066. kfree(rom_desc);
  1067. kfree(ti_manuf_desc);
  1068. return -ENOMEM;
  1069. }
  1070. vheader = kmalloc(HEADER_SIZE, GFP_KERNEL);
  1071. if (!vheader) {
  1072. dev_err(dev, "%s - out of memory.\n", __func__);
  1073. kfree(header);
  1074. kfree(rom_desc);
  1075. kfree(ti_manuf_desc);
  1076. return -ENOMEM;
  1077. }
  1078. dbg("%s - Found Type BLANK FIRMWARE (Type F2) record",
  1079. __func__);
  1080. /*
  1081. * In order to update the I2C firmware we must change
  1082. * the type 2 record to type 0xF2. This will force the
  1083. * UMP to come up in Boot Mode. Then while in boot
  1084. * mode, the driver will download the latest firmware
  1085. * (padded to 15.5k) into the UMP ram. Finally when the
  1086. * device comes back up in download mode the driver
  1087. * will cause the new firmware to be copied from the
  1088. * UMP Ram to I2C and the firmware will update the
  1089. * record type from 0xf2 to 0x02.
  1090. */
  1091. status = build_i2c_fw_hdr(header, dev);
  1092. if (status) {
  1093. kfree(vheader);
  1094. kfree(header);
  1095. kfree(rom_desc);
  1096. kfree(ti_manuf_desc);
  1097. return -EINVAL;
  1098. }
  1099. /* Update I2C with type 0xf2 record with correct
  1100. size and checksum */
  1101. status = write_rom(serial,
  1102. start_address,
  1103. HEADER_SIZE,
  1104. header);
  1105. if (status) {
  1106. kfree(vheader);
  1107. kfree(header);
  1108. kfree(rom_desc);
  1109. kfree(ti_manuf_desc);
  1110. return -EINVAL;
  1111. }
  1112. /* verify the write -- must do this in order for
  1113. write to complete before we do the hardware reset */
  1114. status = read_rom(serial, start_address,
  1115. HEADER_SIZE, vheader);
  1116. if (status) {
  1117. dbg("%s - can't read header back", __func__);
  1118. kfree(vheader);
  1119. kfree(header);
  1120. kfree(rom_desc);
  1121. kfree(ti_manuf_desc);
  1122. return status;
  1123. }
  1124. if (memcmp(vheader, header, HEADER_SIZE)) {
  1125. dbg("%s - write download record failed",
  1126. __func__);
  1127. kfree(vheader);
  1128. kfree(header);
  1129. kfree(rom_desc);
  1130. kfree(ti_manuf_desc);
  1131. return -EINVAL;
  1132. }
  1133. kfree(vheader);
  1134. kfree(header);
  1135. dbg("%s - Start firmware update", __func__);
  1136. /* Tell firmware to copy download image into I2C */
  1137. status = ti_vsend_sync(serial->serial->dev,
  1138. UMPC_COPY_DNLD_TO_I2C, 0, 0, NULL, 0);
  1139. dbg("%s - Update complete 0x%x", __func__, status);
  1140. if (status) {
  1141. dev_err(dev,
  1142. "%s - UMPC_COPY_DNLD_TO_I2C failed\n",
  1143. __func__);
  1144. kfree(rom_desc);
  1145. kfree(ti_manuf_desc);
  1146. return status;
  1147. }
  1148. }
  1149. // The device is running the download code
  1150. kfree(rom_desc);
  1151. kfree(ti_manuf_desc);
  1152. return 0;
  1153. }
  1154. /********************************************************************/
  1155. /* Boot Mode */
  1156. /********************************************************************/
  1157. dbg("%s - RUNNING IN BOOT MODE", __func__);
  1158. /* Configure the TI device so we can use the BULK pipes for download */
  1159. status = config_boot_dev(serial->serial->dev);
  1160. if (status)
  1161. return status;
  1162. if (le16_to_cpu(serial->serial->dev->descriptor.idVendor)
  1163. != USB_VENDOR_ID_ION) {
  1164. dbg("%s - VID = 0x%x", __func__,
  1165. le16_to_cpu(serial->serial->dev->descriptor.idVendor));
  1166. serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
  1167. goto stayinbootmode;
  1168. }
  1169. /* We have an ION device (I2c Must be programmed)
  1170. Determine I2C image type */
  1171. if (i2c_type_bootmode(serial))
  1172. goto stayinbootmode;
  1173. /* Check for ION Vendor ID and that the I2C is valid */
  1174. if (!check_i2c_image(serial)) {
  1175. struct ti_i2c_image_header *header;
  1176. int i;
  1177. __u8 cs = 0;
  1178. __u8 *buffer;
  1179. int buffer_size;
  1180. int err;
  1181. const struct firmware *fw;
  1182. const char *fw_name = "edgeport/down3.bin";
  1183. /* Validate Hardware version number
  1184. * Read Manufacturing Descriptor from TI Based Edgeport
  1185. */
  1186. ti_manuf_desc = kmalloc(sizeof(*ti_manuf_desc), GFP_KERNEL);
  1187. if (!ti_manuf_desc) {
  1188. dev_err(dev, "%s - out of memory.\n", __func__);
  1189. return -ENOMEM;
  1190. }
  1191. status = get_manuf_info(serial, (__u8 *)ti_manuf_desc);
  1192. if (status) {
  1193. kfree(ti_manuf_desc);
  1194. goto stayinbootmode;
  1195. }
  1196. /* Check for version 2 */
  1197. if (!ignore_cpu_rev && ti_cpu_rev(ti_manuf_desc) < 2) {
  1198. dbg("%s - Wrong CPU Rev %d (Must be 2)",
  1199. __func__, ti_cpu_rev(ti_manuf_desc));
  1200. kfree(ti_manuf_desc);
  1201. goto stayinbootmode;
  1202. }
  1203. kfree(ti_manuf_desc);
  1204. /*
  1205. * In order to update the I2C firmware we must change the type
  1206. * 2 record to type 0xF2. This will force the UMP to come up
  1207. * in Boot Mode. Then while in boot mode, the driver will
  1208. * download the latest firmware (padded to 15.5k) into the
  1209. * UMP ram. Finally when the device comes back up in download
  1210. * mode the driver will cause the new firmware to be copied
  1211. * from the UMP Ram to I2C and the firmware will update the
  1212. * record type from 0xf2 to 0x02.
  1213. *
  1214. * Do we really have to copy the whole firmware image,
  1215. * or could we do this in place!
  1216. */
  1217. /* Allocate a 15.5k buffer + 3 byte header */
  1218. buffer_size = (((1024 * 16) - 512) +
  1219. sizeof(struct ti_i2c_image_header));
  1220. buffer = kmalloc(buffer_size, GFP_KERNEL);
  1221. if (!buffer) {
  1222. dev_err(dev, "%s - out of memory\n", __func__);
  1223. return -ENOMEM;
  1224. }
  1225. /* Initialize the buffer to 0xff (pad the buffer) */
  1226. memset(buffer, 0xff, buffer_size);
  1227. err = request_firmware(&fw, fw_name, dev);
  1228. if (err) {
  1229. printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
  1230. fw_name, err);
  1231. kfree(buffer);
  1232. return err;
  1233. }
  1234. memcpy(buffer, &fw->data[4], fw->size - 4);
  1235. release_firmware(fw);
  1236. for (i = sizeof(struct ti_i2c_image_header);
  1237. i < buffer_size; i++) {
  1238. cs = (__u8)(cs + buffer[i]);
  1239. }
  1240. header = (struct ti_i2c_image_header *)buffer;
  1241. /* update length and checksum after padding */
  1242. header->Length = cpu_to_le16((__u16)(buffer_size -
  1243. sizeof(struct ti_i2c_image_header)));
  1244. header->CheckSum = cs;
  1245. /* Download the operational code */
  1246. dbg("%s - Downloading operational code image (TI UMP)",
  1247. __func__);
  1248. status = download_code(serial, buffer, buffer_size);
  1249. kfree(buffer);
  1250. if (status) {
  1251. dbg("%s - Error downloading operational code image",
  1252. __func__);
  1253. return status;
  1254. }
  1255. /* Device will reboot */
  1256. serial->product_info.TiMode = TI_MODE_TRANSITIONING;
  1257. dbg("%s - Download successful -- Device rebooting...",
  1258. __func__);
  1259. /* return an error on purpose */
  1260. return -ENODEV;
  1261. }
  1262. stayinbootmode:
  1263. /* Eprom is invalid or blank stay in boot mode */
  1264. dbg("%s - STAYING IN BOOT MODE", __func__);
  1265. serial->product_info.TiMode = TI_MODE_BOOT;
  1266. return 0;
  1267. }
  1268. static int ti_do_config(struct edgeport_port *port, int feature, int on)
  1269. {
  1270. int port_number = port->port->number - port->port->serial->minor;
  1271. on = !!on; /* 1 or 0 not bitmask */
  1272. return send_cmd(port->port->serial->dev,
  1273. feature, (__u8)(UMPM_UART1_PORT + port_number),
  1274. on, NULL, 0);
  1275. }
  1276. static int restore_mcr(struct edgeport_port *port, __u8 mcr)
  1277. {
  1278. int status = 0;
  1279. dbg("%s - %x", __func__, mcr);
  1280. status = ti_do_config(port, UMPC_SET_CLR_DTR, mcr & MCR_DTR);
  1281. if (status)
  1282. return status;
  1283. status = ti_do_config(port, UMPC_SET_CLR_RTS, mcr & MCR_RTS);
  1284. if (status)
  1285. return status;
  1286. return ti_do_config(port, UMPC_SET_CLR_LOOPBACK, mcr & MCR_LOOPBACK);
  1287. }
  1288. /* Convert TI LSR to standard UART flags */
  1289. static __u8 map_line_status(__u8 ti_lsr)
  1290. {
  1291. __u8 lsr = 0;
  1292. #define MAP_FLAG(flagUmp, flagUart) \
  1293. if (ti_lsr & flagUmp) \
  1294. lsr |= flagUart;
  1295. MAP_FLAG(UMP_UART_LSR_OV_MASK, LSR_OVER_ERR) /* overrun */
  1296. MAP_FLAG(UMP_UART_LSR_PE_MASK, LSR_PAR_ERR) /* parity error */
  1297. MAP_FLAG(UMP_UART_LSR_FE_MASK, LSR_FRM_ERR) /* framing error */
  1298. MAP_FLAG(UMP_UART_LSR_BR_MASK, LSR_BREAK) /* break detected */
  1299. MAP_FLAG(UMP_UART_LSR_RX_MASK, LSR_RX_AVAIL) /* rx data available */
  1300. MAP_FLAG(UMP_UART_LSR_TX_MASK, LSR_TX_EMPTY) /* tx hold reg empty */
  1301. #undef MAP_FLAG
  1302. return lsr;
  1303. }
  1304. static void handle_new_msr(struct edgeport_port *edge_port, __u8 msr)
  1305. {
  1306. struct async_icount *icount;
  1307. struct tty_struct *tty;
  1308. dbg("%s - %02x", __func__, msr);
  1309. if (msr & (EDGEPORT_MSR_DELTA_CTS | EDGEPORT_MSR_DELTA_DSR |
  1310. EDGEPORT_MSR_DELTA_RI | EDGEPORT_MSR_DELTA_CD)) {
  1311. icount = &edge_port->icount;
  1312. /* update input line counters */
  1313. if (msr & EDGEPORT_MSR_DELTA_CTS)
  1314. icount->cts++;
  1315. if (msr & EDGEPORT_MSR_DELTA_DSR)
  1316. icount->dsr++;
  1317. if (msr & EDGEPORT_MSR_DELTA_CD)
  1318. icount->dcd++;
  1319. if (msr & EDGEPORT_MSR_DELTA_RI)
  1320. icount->rng++;
  1321. wake_up_interruptible(&edge_port->delta_msr_wait);
  1322. }
  1323. /* Save the new modem status */
  1324. edge_port->shadow_msr = msr & 0xf0;
  1325. tty = tty_port_tty_get(&edge_port->port->port);
  1326. /* handle CTS flow control */
  1327. if (tty && C_CRTSCTS(tty)) {
  1328. if (msr & EDGEPORT_MSR_CTS) {
  1329. tty->hw_stopped = 0;
  1330. tty_wakeup(tty);
  1331. } else {
  1332. tty->hw_stopped = 1;
  1333. }
  1334. }
  1335. tty_kref_put(tty);
  1336. }
  1337. static void handle_new_lsr(struct edgeport_port *edge_port, int lsr_data,
  1338. __u8 lsr, __u8 data)
  1339. {
  1340. struct async_icount *icount;
  1341. __u8 new_lsr = (__u8)(lsr & (__u8)(LSR_OVER_ERR | LSR_PAR_ERR |
  1342. LSR_FRM_ERR | LSR_BREAK));
  1343. struct tty_struct *tty;
  1344. dbg("%s - %02x", __func__, new_lsr);
  1345. edge_port->shadow_lsr = lsr;
  1346. if (new_lsr & LSR_BREAK)
  1347. /*
  1348. * Parity and Framing errors only count if they
  1349. * occur exclusive of a break being received.
  1350. */
  1351. new_lsr &= (__u8)(LSR_OVER_ERR | LSR_BREAK);
  1352. /* Place LSR data byte into Rx buffer */
  1353. if (lsr_data) {
  1354. tty = tty_port_tty_get(&edge_port->port->port);
  1355. if (tty) {
  1356. edge_tty_recv(&edge_port->port->dev, tty, &data, 1);
  1357. tty_kref_put(tty);
  1358. }
  1359. }
  1360. /* update input line counters */
  1361. icount = &edge_port->icount;
  1362. if (new_lsr & LSR_BREAK)
  1363. icount->brk++;
  1364. if (new_lsr & LSR_OVER_ERR)
  1365. icount->overrun++;
  1366. if (new_lsr & LSR_PAR_ERR)
  1367. icount->parity++;
  1368. if (new_lsr & LSR_FRM_ERR)
  1369. icount->frame++;
  1370. }
  1371. static void edge_interrupt_callback(struct urb *urb)
  1372. {
  1373. struct edgeport_serial *edge_serial = urb->context;
  1374. struct usb_serial_port *port;
  1375. struct edgeport_port *edge_port;
  1376. unsigned char *data = urb->transfer_buffer;
  1377. int length = urb->actual_length;
  1378. int port_number;
  1379. int function;
  1380. int retval;
  1381. __u8 lsr;
  1382. __u8 msr;
  1383. int status = urb->status;
  1384. dbg("%s", __func__);
  1385. switch (status) {
  1386. case 0:
  1387. /* success */
  1388. break;
  1389. case -ECONNRESET:
  1390. case -ENOENT:
  1391. case -ESHUTDOWN:
  1392. /* this urb is terminated, clean up */
  1393. dbg("%s - urb shutting down with status: %d",
  1394. __func__, status);
  1395. return;
  1396. default:
  1397. dev_err(&urb->dev->dev, "%s - nonzero urb status received: "
  1398. "%d\n", __func__, status);
  1399. goto exit;
  1400. }
  1401. if (!length) {
  1402. dbg("%s - no data in urb", __func__);
  1403. goto exit;
  1404. }
  1405. usb_serial_debug_data(debug, &edge_serial->serial->dev->dev,
  1406. __func__, length, data);
  1407. if (length != 2) {
  1408. dbg("%s - expecting packet of size 2, got %d",
  1409. __func__, length);
  1410. goto exit;
  1411. }
  1412. port_number = TIUMP_GET_PORT_FROM_CODE(data[0]);
  1413. function = TIUMP_GET_FUNC_FROM_CODE(data[0]);
  1414. dbg("%s - port_number %d, function %d, info 0x%x",
  1415. __func__, port_number, function, data[1]);
  1416. port = edge_serial->serial->port[port_number];
  1417. edge_port = usb_get_serial_port_data(port);
  1418. if (!edge_port) {
  1419. dbg("%s - edge_port not found", __func__);
  1420. return;
  1421. }
  1422. switch (function) {
  1423. case TIUMP_INTERRUPT_CODE_LSR:
  1424. lsr = map_line_status(data[1]);
  1425. if (lsr & UMP_UART_LSR_DATA_MASK) {
  1426. /* Save the LSR event for bulk read
  1427. completion routine */
  1428. dbg("%s - LSR Event Port %u LSR Status = %02x",
  1429. __func__, port_number, lsr);
  1430. edge_port->lsr_event = 1;
  1431. edge_port->lsr_mask = lsr;
  1432. } else {
  1433. dbg("%s - ===== Port %d LSR Status = %02x ======",
  1434. __func__, port_number, lsr);
  1435. handle_new_lsr(edge_port, 0, lsr, 0);
  1436. }
  1437. break;
  1438. case TIUMP_INTERRUPT_CODE_MSR: /* MSR */
  1439. /* Copy MSR from UMP */
  1440. msr = data[1];
  1441. dbg("%s - ===== Port %u MSR Status = %02x ======",
  1442. __func__, port_number, msr);
  1443. handle_new_msr(edge_port, msr);
  1444. break;
  1445. default:
  1446. dev_err(&urb->dev->dev,
  1447. "%s - Unknown Interrupt code from UMP %x\n",
  1448. __func__, data[1]);
  1449. break;
  1450. }
  1451. exit:
  1452. retval = usb_submit_urb(urb, GFP_ATOMIC);
  1453. if (retval)
  1454. dev_err(&urb->dev->dev,
  1455. "%s - usb_submit_urb failed with result %d\n",
  1456. __func__, retval);
  1457. }
  1458. static void edge_bulk_in_callback(struct urb *urb)
  1459. {
  1460. struct edgeport_port *edge_port = urb->context;
  1461. unsigned char *data = urb->transfer_buffer;
  1462. struct tty_struct *tty;
  1463. int retval = 0;
  1464. int port_number;
  1465. int status = urb->status;
  1466. dbg("%s", __func__);
  1467. switch (status) {
  1468. case 0:
  1469. /* success */
  1470. break;
  1471. case -ECONNRESET:
  1472. case -ENOENT:
  1473. case -ESHUTDOWN:
  1474. /* this urb is terminated, clean up */
  1475. dbg("%s - urb shutting down with status: %d",
  1476. __func__, status);
  1477. return;
  1478. default:
  1479. dev_err(&urb->dev->dev,
  1480. "%s - nonzero read bulk status received: %d\n",
  1481. __func__, status);
  1482. }
  1483. if (status == -EPIPE)
  1484. goto exit;
  1485. if (status) {
  1486. dev_err(&urb->dev->dev, "%s - stopping read!\n", __func__);
  1487. return;
  1488. }
  1489. port_number = edge_port->port->number - edge_port->port->serial->minor;
  1490. if (edge_port->lsr_event) {
  1491. edge_port->lsr_event = 0;
  1492. dbg("%s ===== Port %u LSR Status = %02x, Data = %02x ======",
  1493. __func__, port_number, edge_port->lsr_mask, *data);
  1494. handle_new_lsr(edge_port, 1, edge_port->lsr_mask, *data);
  1495. /* Adjust buffer length/pointer */
  1496. --urb->actual_length;
  1497. ++data;
  1498. }
  1499. tty = tty_port_tty_get(&edge_port->port->port);
  1500. if (tty && urb->actual_length) {
  1501. usb_serial_debug_data(debug, &edge_port->port->dev,
  1502. __func__, urb->actual_length, data);
  1503. if (edge_port->close_pending)
  1504. dbg("%s - close pending, dropping data on the floor",
  1505. __func__);
  1506. else
  1507. edge_tty_recv(&edge_port->port->dev, tty, data,
  1508. urb->actual_length);
  1509. edge_port->icount.rx += urb->actual_length;
  1510. }
  1511. tty_kref_put(tty);
  1512. exit:
  1513. /* continue read unless stopped */
  1514. spin_lock(&edge_port->ep_lock);
  1515. if (edge_port->ep_read_urb_state == EDGE_READ_URB_RUNNING)
  1516. retval = usb_submit_urb(urb, GFP_ATOMIC);
  1517. else if (edge_port->ep_read_urb_state == EDGE_READ_URB_STOPPING)
  1518. edge_port->ep_read_urb_state = EDGE_READ_URB_STOPPED;
  1519. spin_unlock(&edge_port->ep_lock);
  1520. if (retval)
  1521. dev_err(&urb->dev->dev,
  1522. "%s - usb_submit_urb failed with result %d\n",
  1523. __func__, retval);
  1524. }
  1525. static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
  1526. unsigned char *data, int length)
  1527. {
  1528. int queued;
  1529. queued = tty_insert_flip_string(tty, data, length);
  1530. if (queued < length)
  1531. dev_err(dev, "%s - dropping data, %d bytes lost\n",
  1532. __func__, length - queued);
  1533. tty_flip_buffer_push(tty);
  1534. }
  1535. static void edge_bulk_out_callback(struct urb *urb)
  1536. {
  1537. struct usb_serial_port *port = urb->context;
  1538. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  1539. int status = urb->status;
  1540. struct tty_struct *tty;
  1541. dbg("%s - port %d", __func__, port->number);
  1542. edge_port->ep_write_urb_in_use = 0;
  1543. switch (status) {
  1544. case 0:
  1545. /* success */
  1546. break;
  1547. case -ECONNRESET:
  1548. case -ENOENT:
  1549. case -ESHUTDOWN:
  1550. /* this urb is terminated, clean up */
  1551. dbg("%s - urb shutting down with status: %d",
  1552. __func__, status);
  1553. return;
  1554. default:
  1555. dev_err_console(port, "%s - nonzero write bulk status "
  1556. "received: %d\n", __func__, status);
  1557. }
  1558. /* send any buffered data */
  1559. tty = tty_port_tty_get(&port->port);
  1560. edge_send(tty);
  1561. tty_kref_put(tty);
  1562. }
  1563. static int edge_open(struct tty_struct *tty, struct usb_serial_port *port)
  1564. {
  1565. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  1566. struct edgeport_serial *edge_serial;
  1567. struct usb_device *dev;
  1568. struct urb *urb;
  1569. int port_number;
  1570. int status;
  1571. u16 open_settings;
  1572. u8 transaction_timeout;
  1573. dbg("%s - port %d", __func__, port->number);
  1574. if (edge_port == NULL)
  1575. return -ENODEV;
  1576. port_number = port->number - port->serial->minor;
  1577. switch (port_number) {
  1578. case 0:
  1579. edge_port->uart_base = UMPMEM_BASE_UART1;
  1580. edge_port->dma_address = UMPD_OEDB1_ADDRESS;
  1581. break;
  1582. case 1:
  1583. edge_port->uart_base = UMPMEM_BASE_UART2;
  1584. edge_port->dma_address = UMPD_OEDB2_ADDRESS;
  1585. break;
  1586. default:
  1587. dev_err(&port->dev, "Unknown port number!!!\n");
  1588. return -ENODEV;
  1589. }
  1590. dbg("%s - port_number = %d, uart_base = %04x, dma_address = %04x",
  1591. __func__, port_number, edge_port->uart_base,
  1592. edge_port->dma_address);
  1593. dev = port->serial->dev;
  1594. memset(&(edge_port->icount), 0x00, sizeof(edge_port->icount));
  1595. init_waitqueue_head(&edge_port->delta_msr_wait);
  1596. /* turn off loopback */
  1597. status = ti_do_config(edge_port, UMPC_SET_CLR_LOOPBACK, 0);
  1598. if (status) {
  1599. dev_err(&port->dev,
  1600. "%s - cannot send clear loopback command, %d\n",
  1601. __func__, status);
  1602. return status;
  1603. }
  1604. /* set up the port settings */
  1605. if (tty)
  1606. edge_set_termios(tty, port, tty->termios);
  1607. /* open up the port */
  1608. /* milliseconds to timeout for DMA transfer */
  1609. transaction_timeout = 2;
  1610. edge_port->ump_read_timeout =
  1611. max(20, ((transaction_timeout * 3) / 2));
  1612. /* milliseconds to timeout for DMA transfer */
  1613. open_settings = (u8)(UMP_DMA_MODE_CONTINOUS |
  1614. UMP_PIPE_TRANS_TIMEOUT_ENA |
  1615. (transaction_timeout << 2));
  1616. dbg("%s - Sending UMPC_OPEN_PORT", __func__);
  1617. /* Tell TI to open and start the port */
  1618. status = send_cmd(dev, UMPC_OPEN_PORT,
  1619. (u8)(UMPM_UART1_PORT + port_number), open_settings, NULL, 0);
  1620. if (status) {
  1621. dev_err(&port->dev, "%s - cannot send open command, %d\n",
  1622. __func__, status);
  1623. return status;
  1624. }
  1625. /* Start the DMA? */
  1626. status = send_cmd(dev, UMPC_START_PORT,
  1627. (u8)(UMPM_UART1_PORT + port_number), 0, NULL, 0);
  1628. if (status) {
  1629. dev_err(&port->dev, "%s - cannot send start DMA command, %d\n",
  1630. __func__, status);
  1631. return status;
  1632. }
  1633. /* Clear TX and RX buffers in UMP */
  1634. status = purge_port(port, UMP_PORT_DIR_OUT | UMP_PORT_DIR_IN);
  1635. if (status) {
  1636. dev_err(&port->dev,
  1637. "%s - cannot send clear buffers command, %d\n",
  1638. __func__, status);
  1639. return status;
  1640. }
  1641. /* Read Initial MSR */
  1642. status = ti_vread_sync(dev, UMPC_READ_MSR, 0,
  1643. (__u16)(UMPM_UART1_PORT + port_number),
  1644. &edge_port->shadow_msr, 1);
  1645. if (status) {
  1646. dev_err(&port->dev, "%s - cannot send read MSR command, %d\n",
  1647. __func__, status);
  1648. return status;
  1649. }
  1650. dbg("ShadowMSR 0x%X", edge_port->shadow_msr);
  1651. /* Set Initial MCR */
  1652. edge_port->shadow_mcr = MCR_RTS | MCR_DTR;
  1653. dbg("ShadowMCR 0x%X", edge_port->shadow_mcr);
  1654. edge_serial = edge_port->edge_serial;
  1655. if (mutex_lock_interruptible(&edge_serial->es_lock))
  1656. return -ERESTARTSYS;
  1657. if (edge_serial->num_ports_open == 0) {
  1658. /* we are the first port to open, post the interrupt urb */
  1659. urb = edge_serial->serial->port[0]->interrupt_in_urb;
  1660. if (!urb) {
  1661. dev_err(&port->dev,
  1662. "%s - no interrupt urb present, exiting\n",
  1663. __func__);
  1664. status = -EINVAL;
  1665. goto release_es_lock;
  1666. }
  1667. urb->context = edge_serial;
  1668. status = usb_submit_urb(urb, GFP_KERNEL);
  1669. if (status) {
  1670. dev_err(&port->dev,
  1671. "%s - usb_submit_urb failed with value %d\n",
  1672. __func__, status);
  1673. goto release_es_lock;
  1674. }
  1675. }
  1676. /*
  1677. * reset the data toggle on the bulk endpoints to work around bug in
  1678. * host controllers where things get out of sync some times
  1679. */
  1680. usb_clear_halt(dev, port->write_urb->pipe);
  1681. usb_clear_halt(dev, port->read_urb->pipe);
  1682. /* start up our bulk read urb */
  1683. urb = port->read_urb;
  1684. if (!urb) {
  1685. dev_err(&port->dev, "%s - no read urb present, exiting\n",
  1686. __func__);
  1687. status = -EINVAL;
  1688. goto unlink_int_urb;
  1689. }
  1690. edge_port->ep_read_urb_state = EDGE_READ_URB_RUNNING;
  1691. urb->context = edge_port;
  1692. status = usb_submit_urb(urb, GFP_KERNEL);
  1693. if (status) {
  1694. dev_err(&port->dev,
  1695. "%s - read bulk usb_submit_urb failed with value %d\n",
  1696. __func__, status);
  1697. goto unlink_int_urb;
  1698. }
  1699. ++edge_serial->num_ports_open;
  1700. dbg("%s - exited", __func__);
  1701. goto release_es_lock;
  1702. unlink_int_urb:
  1703. if (edge_port->edge_serial->num_ports_open == 0)
  1704. usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
  1705. release_es_lock:
  1706. mutex_unlock(&edge_serial->es_lock);
  1707. return status;
  1708. }
  1709. static void edge_close(struct usb_serial_port *port)
  1710. {
  1711. struct edgeport_serial *edge_serial;
  1712. struct edgeport_port *edge_port;
  1713. struct usb_serial *serial = port->serial;
  1714. int port_number;
  1715. dbg("%s - port %d", __func__, port->number);
  1716. edge_serial = usb_get_serial_data(port->serial);
  1717. edge_port = usb_get_serial_port_data(port);
  1718. if (edge_serial == NULL || edge_port == NULL)
  1719. return;
  1720. /* The bulkreadcompletion routine will check
  1721. * this flag and dump add read data */
  1722. edge_port->close_pending = 1;
  1723. /* chase the port close and flush */
  1724. chase_port(edge_port, (HZ * closing_wait) / 100, 1);
  1725. usb_kill_urb(port->read_urb);
  1726. usb_kill_urb(port->write_urb);
  1727. edge_port->ep_write_urb_in_use = 0;
  1728. /* assuming we can still talk to the device,
  1729. * send a close port command to it */
  1730. dbg("%s - send umpc_close_port", __func__);
  1731. port_number = port->number - port->serial->minor;
  1732. mutex_lock(&serial->disc_mutex);
  1733. if (!serial->disconnected) {
  1734. send_cmd(serial->dev,
  1735. UMPC_CLOSE_PORT,
  1736. (__u8)(UMPM_UART1_PORT + port_number),
  1737. 0,
  1738. NULL,
  1739. 0);
  1740. }
  1741. mutex_unlock(&serial->disc_mutex);
  1742. mutex_lock(&edge_serial->es_lock);
  1743. --edge_port->edge_serial->num_ports_open;
  1744. if (edge_port->edge_serial->num_ports_open <= 0) {
  1745. /* last port is now closed, let's shut down our interrupt urb */
  1746. usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
  1747. edge_port->edge_serial->num_ports_open = 0;
  1748. }
  1749. mutex_unlock(&edge_serial->es_lock);
  1750. edge_port->close_pending = 0;
  1751. dbg("%s - exited", __func__);
  1752. }
  1753. static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
  1754. const unsigned char *data, int count)
  1755. {
  1756. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  1757. dbg("%s - port %d", __func__, port->number);
  1758. if (count == 0) {
  1759. dbg("%s - write request of 0 bytes", __func__);
  1760. return 0;
  1761. }
  1762. if (edge_port == NULL)
  1763. return -ENODEV;
  1764. if (edge_port->close_pending == 1)
  1765. return -ENODEV;
  1766. count = kfifo_in_locked(&edge_port->write_fifo, data, count,
  1767. &edge_port->ep_lock);
  1768. edge_send(tty);
  1769. return count;
  1770. }
  1771. static void edge_send(struct tty_struct *tty)
  1772. {
  1773. struct usb_serial_port *port = tty->driver_data;
  1774. int count, result;
  1775. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  1776. unsigned long flags;
  1777. dbg("%s - port %d", __func__, port->number);
  1778. spin_lock_irqsave(&edge_port->ep_lock, flags);
  1779. if (edge_port->ep_write_urb_in_use) {
  1780. spin_unlock_irqrestore(&edge_port->ep_lock, flags);
  1781. return;
  1782. }
  1783. count = kfifo_out(&edge_port->write_fifo,
  1784. port->write_urb->transfer_buffer,
  1785. port->bulk_out_size);
  1786. if (count == 0) {
  1787. spin_unlock_irqrestore(&edge_port->ep_lock, flags);
  1788. return;
  1789. }
  1790. edge_port->ep_write_urb_in_use = 1;
  1791. spin_unlock_irqrestore(&edge_port->ep_lock, flags);
  1792. usb_serial_debug_data(debug, &port->dev, __func__, count,
  1793. port->write_urb->transfer_buffer);
  1794. /* set up our urb */
  1795. port->write_urb->transfer_buffer_length = count;
  1796. /* send the data out the bulk port */
  1797. result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
  1798. if (result) {
  1799. dev_err_console(port,
  1800. "%s - failed submitting write urb, error %d\n",
  1801. __func__, result);
  1802. edge_port->ep_write_urb_in_use = 0;
  1803. /* TODO: reschedule edge_send */
  1804. } else
  1805. edge_port->icount.tx += count;
  1806. /* wakeup any process waiting for writes to complete */
  1807. /* there is now more room in the buffer for new writes */
  1808. if (tty)
  1809. tty_wakeup(tty);
  1810. }
  1811. static int edge_write_room(struct tty_struct *tty)
  1812. {
  1813. struct usb_serial_port *port = tty->driver_data;
  1814. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  1815. int room = 0;
  1816. unsigned long flags;
  1817. dbg("%s - port %d", __func__, port->number);
  1818. if (edge_port == NULL)
  1819. return 0;
  1820. if (edge_port->close_pending == 1)
  1821. return 0;
  1822. spin_lock_irqsave(&edge_port->ep_lock, flags);
  1823. room = kfifo_avail(&edge_port->write_fifo);
  1824. spin_unlock_irqrestore(&edge_port->ep_lock, flags);
  1825. dbg("%s - returns %d", __func__, room);
  1826. return room;
  1827. }
  1828. static int edge_chars_in_buffer(struct tty_struct *tty)
  1829. {
  1830. struct usb_serial_port *port = tty->driver_data;
  1831. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  1832. int chars = 0;
  1833. unsigned long flags;
  1834. dbg("%s - port %d", __func__, port->number);
  1835. if (edge_port == NULL)
  1836. return 0;
  1837. if (edge_port->close_pending == 1)
  1838. return 0;
  1839. spin_lock_irqsave(&edge_port->ep_lock, flags);
  1840. chars = kfifo_len(&edge_port->write_fifo);
  1841. spin_unlock_irqrestore(&edge_port->ep_lock, flags);
  1842. dbg("%s - returns %d", __func__, chars);
  1843. return chars;
  1844. }
  1845. static void edge_throttle(struct tty_struct *tty)
  1846. {
  1847. struct usb_serial_port *port = tty->driver_data;
  1848. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  1849. int status;
  1850. dbg("%s - port %d", __func__, port->number);
  1851. if (edge_port == NULL)
  1852. return;
  1853. /* if we are implementing XON/XOFF, send the stop character */
  1854. if (I_IXOFF(tty)) {
  1855. unsigned char stop_char = STOP_CHAR(tty);
  1856. status = edge_write(tty, port, &stop_char, 1);
  1857. if (status <= 0) {
  1858. dev_err(&port->dev, "%s - failed to write stop character, %d\n", __func__, status);
  1859. }
  1860. }
  1861. /* if we are implementing RTS/CTS, stop reads */
  1862. /* and the Edgeport will clear the RTS line */
  1863. if (C_CRTSCTS(tty))
  1864. stop_read(edge_port);
  1865. }
  1866. static void edge_unthrottle(struct tty_struct *tty)
  1867. {
  1868. struct usb_serial_port *port = tty->driver_data;
  1869. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  1870. int status;
  1871. dbg("%s - port %d", __func__, port->number);
  1872. if (edge_port == NULL)
  1873. return;
  1874. /* if we are implementing XON/XOFF, send the start character */
  1875. if (I_IXOFF(tty)) {
  1876. unsigned char start_char = START_CHAR(tty);
  1877. status = edge_write(tty, port, &start_char, 1);
  1878. if (status <= 0) {
  1879. dev_err(&port->dev, "%s - failed to write start character, %d\n", __func__, status);
  1880. }
  1881. }
  1882. /* if we are implementing RTS/CTS, restart reads */
  1883. /* are the Edgeport will assert the RTS line */
  1884. if (C_CRTSCTS(tty)) {
  1885. status = restart_read(edge_port);
  1886. if (status)
  1887. dev_err(&port->dev,
  1888. "%s - read bulk usb_submit_urb failed: %d\n",
  1889. __func__, status);
  1890. }
  1891. }
  1892. static void stop_read(struct edgeport_port *edge_port)
  1893. {
  1894. unsigned long flags;
  1895. spin_lock_irqsave(&edge_port->ep_lock, flags);
  1896. if (edge_port->ep_read_urb_state == EDGE_READ_URB_RUNNING)
  1897. edge_port->ep_read_urb_state = EDGE_READ_URB_STOPPING;
  1898. edge_port->shadow_mcr &= ~MCR_RTS;
  1899. spin_unlock_irqrestore(&edge_port->ep_lock, flags);
  1900. }
  1901. static int restart_read(struct edgeport_port *edge_port)
  1902. {
  1903. struct urb *urb;
  1904. int status = 0;
  1905. unsigned long flags;
  1906. spin_lock_irqsave(&edge_port->ep_lock, flags);
  1907. if (edge_port->ep_read_urb_state == EDGE_READ_URB_STOPPED) {
  1908. urb = edge_port->port->read_urb;
  1909. status = usb_submit_urb(urb, GFP_ATOMIC);
  1910. }
  1911. edge_port->ep_read_urb_state = EDGE_READ_URB_RUNNING;
  1912. edge_port->shadow_mcr |= MCR_RTS;
  1913. spin_unlock_irqrestore(&edge_port->ep_lock, flags);
  1914. return status;
  1915. }
  1916. static void change_port_settings(struct tty_struct *tty,
  1917. struct edgeport_port *edge_port, struct ktermios *old_termios)
  1918. {
  1919. struct ump_uart_config *config;
  1920. int baud;
  1921. unsigned cflag;
  1922. int status;
  1923. int port_number = edge_port->port->number -
  1924. edge_port->port->serial->minor;
  1925. dbg("%s - port %d", __func__, edge_port->port->number);
  1926. config = kmalloc (sizeof (*config), GFP_KERNEL);
  1927. if (!config) {
  1928. *tty->termios = *old_termios;
  1929. dev_err(&edge_port->port->dev, "%s - out of memory\n",
  1930. __func__);
  1931. return;
  1932. }
  1933. cflag = tty->termios->c_cflag;
  1934. config->wFlags = 0;
  1935. /* These flags must be set */
  1936. config->wFlags |= UMP_MASK_UART_FLAGS_RECEIVE_MS_INT;
  1937. config->wFlags |= UMP_MASK_UART_FLAGS_AUTO_START_ON_ERR;
  1938. config->bUartMode = (__u8)(edge_port->bUartMode);
  1939. switch (cflag & CSIZE) {
  1940. case CS5:
  1941. config->bDataBits = UMP_UART_CHAR5BITS;
  1942. dbg("%s - data bits = 5", __func__);
  1943. break;
  1944. case CS6:
  1945. config->bDataBits = UMP_UART_CHAR6BITS;
  1946. dbg("%s - data bits = 6", __func__);
  1947. break;
  1948. case CS7:
  1949. config->bDataBits = UMP_UART_CHAR7BITS;
  1950. dbg("%s - data bits = 7", __func__);
  1951. break;
  1952. default:
  1953. case CS8:
  1954. config->bDataBits = UMP_UART_CHAR8BITS;
  1955. dbg("%s - data bits = 8", __func__);
  1956. break;
  1957. }
  1958. if (cflag & PARENB) {
  1959. if (cflag & PARODD) {
  1960. config->wFlags |= UMP_MASK_UART_FLAGS_PARITY;
  1961. config->bParity = UMP_UART_ODDPARITY;
  1962. dbg("%s - parity = odd", __func__);
  1963. } else {
  1964. config->wFlags |= UMP_MASK_UART_FLAGS_PARITY;
  1965. config->bParity = UMP_UART_EVENPARITY;
  1966. dbg("%s - parity = even", __func__);
  1967. }
  1968. } else {
  1969. config->bParity = UMP_UART_NOPARITY;
  1970. dbg("%s - parity = none", __func__);
  1971. }
  1972. if (cflag & CSTOPB) {
  1973. config->bStopBits = UMP_UART_STOPBIT2;
  1974. dbg("%s - stop bits = 2", __func__);
  1975. } else {
  1976. config->bStopBits = UMP_UART_STOPBIT1;
  1977. dbg("%s - stop bits = 1", __func__);
  1978. }
  1979. /* figure out the flow control settings */
  1980. if (cflag & CRTSCTS) {
  1981. config->wFlags |= UMP_MASK_UART_FLAGS_OUT_X_CTS_FLOW;
  1982. config->wFlags |= UMP_MASK_UART_FLAGS_RTS_FLOW;
  1983. dbg("%s - RTS/CTS is enabled", __func__);
  1984. } else {
  1985. dbg("%s - RTS/CTS is disabled", __func__);
  1986. tty->hw_stopped = 0;
  1987. restart_read(edge_port);
  1988. }
  1989. /* if we are implementing XON/XOFF, set the start and stop
  1990. character in the device */
  1991. config->cXon = START_CHAR(tty);
  1992. config->cXoff = STOP_CHAR(tty);
  1993. /* if we are implementing INBOUND XON/XOFF */
  1994. if (I_IXOFF(tty)) {
  1995. config->wFlags |= UMP_MASK_UART_FLAGS_IN_X;
  1996. dbg("%s - INBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x",
  1997. __func__, config->cXon, config->cXoff);
  1998. } else
  1999. dbg("%s - INBOUND XON/XOFF is disabled", __func__);
  2000. /* if we are implementing OUTBOUND XON/XOFF */
  2001. if (I_IXON(tty)) {
  2002. config->wFlags |= UMP_MASK_UART_FLAGS_OUT_X;
  2003. dbg("%s - OUTBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x",
  2004. __func__, config->cXon, config->cXoff);
  2005. } else
  2006. dbg("%s - OUTBOUND XON/XOFF is disabled", __func__);
  2007. tty->termios->c_cflag &= ~CMSPAR;
  2008. /* Round the baud rate */
  2009. baud = tty_get_baud_rate(tty);
  2010. if (!baud) {
  2011. /* pick a default, any default... */
  2012. baud = 9600;
  2013. } else
  2014. tty_encode_baud_rate(tty, baud, baud);
  2015. edge_port->baud_rate = baud;
  2016. config->wBaudRate = (__u16)((461550L + baud/2) / baud);
  2017. /* FIXME: Recompute actual baud from divisor here */
  2018. dbg("%s - baud rate = %d, wBaudRate = %d", __func__, baud,
  2019. config->wBaudRate);
  2020. dbg("wBaudRate: %d", (int)(461550L / config->wBaudRate));
  2021. dbg("wFlags: 0x%x", config->wFlags);
  2022. dbg("bDataBits: %d", config->bDataBits);
  2023. dbg("bParity: %d", config->bParity);
  2024. dbg("bStopBits: %d", config->bStopBits);
  2025. dbg("cXon: %d", config->cXon);
  2026. dbg("cXoff: %d", config->cXoff);
  2027. dbg("bUartMode: %d", config->bUartMode);
  2028. /* move the word values into big endian mode */
  2029. cpu_to_be16s(&config->wFlags);
  2030. cpu_to_be16s(&config->wBaudRate);
  2031. status = send_cmd(edge_port->port->serial->dev, UMPC_SET_CONFIG,
  2032. (__u8)(UMPM_UART1_PORT + port_number),
  2033. 0, (__u8 *)config, sizeof(*config));
  2034. if (status)
  2035. dbg("%s - error %d when trying to write config to device",
  2036. __func__, status);
  2037. kfree(config);
  2038. }
  2039. static void edge_set_termios(struct tty_struct *tty,
  2040. struct usb_serial_port *port, struct ktermios *old_termios)
  2041. {
  2042. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  2043. unsigned int cflag;
  2044. cflag = tty->termios->c_cflag;
  2045. dbg("%s - clfag %08x iflag %08x", __func__,
  2046. tty->termios->c_cflag, tty->termios->c_iflag);
  2047. dbg("%s - old clfag %08x old iflag %08x", __func__,
  2048. old_termios->c_cflag, old_termios->c_iflag);
  2049. dbg("%s - port %d", __func__, port->number);
  2050. if (edge_port == NULL)
  2051. return;
  2052. /* change the port settings to the new ones specified */
  2053. change_port_settings(tty, edge_port, old_termios);
  2054. }
  2055. static int edge_tiocmset(struct tty_struct *tty,
  2056. unsigned int set, unsigned int clear)
  2057. {
  2058. struct usb_serial_port *port = tty->driver_data;
  2059. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  2060. unsigned int mcr;
  2061. unsigned long flags;
  2062. dbg("%s - port %d", __func__, port->number);
  2063. spin_lock_irqsave(&edge_port->ep_lock, flags);
  2064. mcr = edge_port->shadow_mcr;
  2065. if (set & TIOCM_RTS)
  2066. mcr |= MCR_RTS;
  2067. if (set & TIOCM_DTR)
  2068. mcr |= MCR_DTR;
  2069. if (set & TIOCM_LOOP)
  2070. mcr |= MCR_LOOPBACK;
  2071. if (clear & TIOCM_RTS)
  2072. mcr &= ~MCR_RTS;
  2073. if (clear & TIOCM_DTR)
  2074. mcr &= ~MCR_DTR;
  2075. if (clear & TIOCM_LOOP)
  2076. mcr &= ~MCR_LOOPBACK;
  2077. edge_port->shadow_mcr = mcr;
  2078. spin_unlock_irqrestore(&edge_port->ep_lock, flags);
  2079. restore_mcr(edge_port, mcr);
  2080. return 0;
  2081. }
  2082. static int edge_tiocmget(struct tty_struct *tty)
  2083. {
  2084. struct usb_serial_port *port = tty->driver_data;
  2085. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  2086. unsigned int result = 0;
  2087. unsigned int msr;
  2088. unsigned int mcr;
  2089. unsigned long flags;
  2090. dbg("%s - port %d", __func__, port->number);
  2091. spin_lock_irqsave(&edge_port->ep_lock, flags);
  2092. msr = edge_port->shadow_msr;
  2093. mcr = edge_port->shadow_mcr;
  2094. result = ((mcr & MCR_DTR) ? TIOCM_DTR: 0) /* 0x002 */
  2095. | ((mcr & MCR_RTS) ? TIOCM_RTS: 0) /* 0x004 */
  2096. | ((msr & EDGEPORT_MSR_CTS) ? TIOCM_CTS: 0) /* 0x020 */
  2097. | ((msr & EDGEPORT_MSR_CD) ? TIOCM_CAR: 0) /* 0x040 */
  2098. | ((msr & EDGEPORT_MSR_RI) ? TIOCM_RI: 0) /* 0x080 */
  2099. | ((msr & EDGEPORT_MSR_DSR) ? TIOCM_DSR: 0); /* 0x100 */
  2100. dbg("%s -- %x", __func__, result);
  2101. spin_unlock_irqrestore(&edge_port->ep_lock, flags);
  2102. return result;
  2103. }
  2104. static int edge_get_icount(struct tty_struct *tty,
  2105. struct serial_icounter_struct *icount)
  2106. {
  2107. struct usb_serial_port *port = tty->driver_data;
  2108. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  2109. struct async_icount *ic = &edge_port->icount;
  2110. icount->cts = ic->cts;
  2111. icount->dsr = ic->dsr;
  2112. icount->rng = ic->rng;
  2113. icount->dcd = ic->dcd;
  2114. icount->tx = ic->tx;
  2115. icount->rx = ic->rx;
  2116. icount->frame = ic->frame;
  2117. icount->parity = ic->parity;
  2118. icount->overrun = ic->overrun;
  2119. icount->brk = ic->brk;
  2120. icount->buf_overrun = ic->buf_overrun;
  2121. return 0;
  2122. }
  2123. static int get_serial_info(struct edgeport_port *edge_port,
  2124. struct serial_struct __user *retinfo)
  2125. {
  2126. struct serial_struct tmp;
  2127. if (!retinfo)
  2128. return -EFAULT;
  2129. memset(&tmp, 0, sizeof(tmp));
  2130. tmp.type = PORT_16550A;
  2131. tmp.line = edge_port->port->serial->minor;
  2132. tmp.port = edge_port->port->number;
  2133. tmp.irq = 0;
  2134. tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
  2135. tmp.xmit_fifo_size = edge_port->port->bulk_out_size;
  2136. tmp.baud_base = 9600;
  2137. tmp.close_delay = 5*HZ;
  2138. tmp.closing_wait = closing_wait;
  2139. if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
  2140. return -EFAULT;
  2141. return 0;
  2142. }
  2143. static int edge_ioctl(struct tty_struct *tty,
  2144. unsigned int cmd, unsigned long arg)
  2145. {
  2146. struct usb_serial_port *port = tty->driver_data;
  2147. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  2148. struct async_icount cnow;
  2149. struct async_icount cprev;
  2150. dbg("%s - port %d, cmd = 0x%x", __func__, port->number, cmd);
  2151. switch (cmd) {
  2152. case TIOCGSERIAL:
  2153. dbg("%s - (%d) TIOCGSERIAL", __func__, port->number);
  2154. return get_serial_info(edge_port,
  2155. (struct serial_struct __user *) arg);
  2156. case TIOCMIWAIT:
  2157. dbg("%s - (%d) TIOCMIWAIT", __func__, port->number);
  2158. cprev = edge_port->icount;
  2159. while (1) {
  2160. interruptible_sleep_on(&edge_port->delta_msr_wait);
  2161. /* see if a signal did it */
  2162. if (signal_pending(current))
  2163. return -ERESTARTSYS;
  2164. cnow = edge_port->icount;
  2165. if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
  2166. cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
  2167. return -EIO; /* no change => error */
  2168. if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
  2169. ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
  2170. ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
  2171. ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
  2172. return 0;
  2173. }
  2174. cprev = cnow;
  2175. }
  2176. /* not reached */
  2177. break;
  2178. }
  2179. return -ENOIOCTLCMD;
  2180. }
  2181. static void edge_break(struct tty_struct *tty, int break_state)
  2182. {
  2183. struct usb_serial_port *port = tty->driver_data;
  2184. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  2185. int status;
  2186. int bv = 0; /* Off */
  2187. dbg("%s - state = %d", __func__, break_state);
  2188. /* chase the port close */
  2189. chase_port(edge_port, 0, 0);
  2190. if (break_state == -1)
  2191. bv = 1; /* On */
  2192. status = ti_do_config(edge_port, UMPC_SET_CLR_BREAK, bv);
  2193. if (status)
  2194. dbg("%s - error %d sending break set/clear command.",
  2195. __func__, status);
  2196. }
  2197. static int edge_startup(struct usb_serial *serial)
  2198. {
  2199. struct edgeport_serial *edge_serial;
  2200. struct edgeport_port *edge_port;
  2201. struct usb_device *dev;
  2202. int status;
  2203. int i;
  2204. dev = serial->dev;
  2205. /* create our private serial structure */
  2206. edge_serial = kzalloc(sizeof(struct edgeport_serial), GFP_KERNEL);
  2207. if (edge_serial == NULL) {
  2208. dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
  2209. return -ENOMEM;
  2210. }
  2211. mutex_init(&edge_serial->es_lock);
  2212. edge_serial->serial = serial;
  2213. usb_set_serial_data(serial, edge_serial);
  2214. status = download_fw(edge_serial);
  2215. if (status) {
  2216. kfree(edge_serial);
  2217. return status;
  2218. }
  2219. /* set up our port private structures */
  2220. for (i = 0; i < serial->num_ports; ++i) {
  2221. edge_port = kzalloc(sizeof(struct edgeport_port), GFP_KERNEL);
  2222. if (edge_port == NULL) {
  2223. dev_err(&serial->dev->dev, "%s - Out of memory\n",
  2224. __func__);
  2225. goto cleanup;
  2226. }
  2227. spin_lock_init(&edge_port->ep_lock);
  2228. if (kfifo_alloc(&edge_port->write_fifo, EDGE_OUT_BUF_SIZE,
  2229. GFP_KERNEL)) {
  2230. dev_err(&serial->dev->dev, "%s - Out of memory\n",
  2231. __func__);
  2232. kfree(edge_port);
  2233. goto cleanup;
  2234. }
  2235. edge_port->port = serial->port[i];
  2236. edge_port->edge_serial = edge_serial;
  2237. usb_set_serial_port_data(serial->port[i], edge_port);
  2238. edge_port->bUartMode = default_uart_mode;
  2239. }
  2240. return 0;
  2241. cleanup:
  2242. for (--i; i >= 0; --i) {
  2243. edge_port = usb_get_serial_port_data(serial->port[i]);
  2244. kfifo_free(&edge_port->write_fifo);
  2245. kfree(edge_port);
  2246. usb_set_serial_port_data(serial->port[i], NULL);
  2247. }
  2248. kfree(edge_serial);
  2249. usb_set_serial_data(serial, NULL);
  2250. return -ENOMEM;
  2251. }
  2252. static void edge_disconnect(struct usb_serial *serial)
  2253. {
  2254. dbg("%s", __func__);
  2255. }
  2256. static void edge_release(struct usb_serial *serial)
  2257. {
  2258. int i;
  2259. struct edgeport_port *edge_port;
  2260. dbg("%s", __func__);
  2261. for (i = 0; i < serial->num_ports; ++i) {
  2262. edge_port = usb_get_serial_port_data(serial->port[i]);
  2263. kfifo_free(&edge_port->write_fifo);
  2264. kfree(edge_port);
  2265. }
  2266. kfree(usb_get_serial_data(serial));
  2267. }
  2268. /* Sysfs Attributes */
  2269. static ssize_t show_uart_mode(struct device *dev,
  2270. struct device_attribute *attr, char *buf)
  2271. {
  2272. struct usb_serial_port *port = to_usb_serial_port(dev);
  2273. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  2274. return sprintf(buf, "%d\n", edge_port->bUartMode);
  2275. }
  2276. static ssize_t store_uart_mode(struct device *dev,
  2277. struct device_attribute *attr, const char *valbuf, size_t count)
  2278. {
  2279. struct usb_serial_port *port = to_usb_serial_port(dev);
  2280. struct edgeport_port *edge_port = usb_get_serial_port_data(port);
  2281. unsigned int v = simple_strtoul(valbuf, NULL, 0);
  2282. dbg("%s: setting uart_mode = %d", __func__, v);
  2283. if (v < 256)
  2284. edge_port->bUartMode = v;
  2285. else
  2286. dev_err(dev, "%s - uart_mode %d is invalid\n", __func__, v);
  2287. return count;
  2288. }
  2289. static DEVICE_ATTR(uart_mode, S_IWUSR | S_IRUGO, show_uart_mode,
  2290. store_uart_mode);
  2291. static int edge_create_sysfs_attrs(struct usb_serial_port *port)
  2292. {
  2293. return device_create_file(&port->dev, &dev_attr_uart_mode);
  2294. }
  2295. static int edge_remove_sysfs_attrs(struct usb_serial_port *port)
  2296. {
  2297. device_remove_file(&port->dev, &dev_attr_uart_mode);
  2298. return 0;
  2299. }
  2300. static struct usb_serial_driver edgeport_1port_device = {
  2301. .driver = {
  2302. .owner = THIS_MODULE,
  2303. .name = "edgeport_ti_1",
  2304. },
  2305. .description = "Edgeport TI 1 port adapter",
  2306. .id_table = edgeport_1port_id_table,
  2307. .num_ports = 1,
  2308. .open = edge_open,
  2309. .close = edge_close,
  2310. .throttle = edge_throttle,
  2311. .unthrottle = edge_unthrottle,
  2312. .attach = edge_startup,
  2313. .disconnect = edge_disconnect,
  2314. .release = edge_release,
  2315. .port_probe = edge_create_sysfs_attrs,
  2316. .port_remove = edge_remove_sysfs_attrs,
  2317. .ioctl = edge_ioctl,
  2318. .set_termios = edge_set_termios,
  2319. .tiocmget = edge_tiocmget,
  2320. .tiocmset = edge_tiocmset,
  2321. .get_icount = edge_get_icount,
  2322. .write = edge_write,
  2323. .write_room = edge_write_room,
  2324. .chars_in_buffer = edge_chars_in_buffer,
  2325. .break_ctl = edge_break,
  2326. .read_int_callback = edge_interrupt_callback,
  2327. .read_bulk_callback = edge_bulk_in_callback,
  2328. .write_bulk_callback = edge_bulk_out_callback,
  2329. };
  2330. static struct usb_serial_driver edgeport_2port_device = {
  2331. .driver = {
  2332. .owner = THIS_MODULE,
  2333. .name = "edgeport_ti_2",
  2334. },
  2335. .description = "Edgeport TI 2 port adapter",
  2336. .id_table = edgeport_2port_id_table,
  2337. .num_ports = 2,
  2338. .open = edge_open,
  2339. .close = edge_close,
  2340. .throttle = edge_throttle,
  2341. .unthrottle = edge_unthrottle,
  2342. .attach = edge_startup,
  2343. .disconnect = edge_disconnect,
  2344. .release = edge_release,
  2345. .port_probe = edge_create_sysfs_attrs,
  2346. .port_remove = edge_remove_sysfs_attrs,
  2347. .ioctl = edge_ioctl,
  2348. .set_termios = edge_set_termios,
  2349. .tiocmget = edge_tiocmget,
  2350. .tiocmset = edge_tiocmset,
  2351. .write = edge_write,
  2352. .write_room = edge_write_room,
  2353. .chars_in_buffer = edge_chars_in_buffer,
  2354. .break_ctl = edge_break,
  2355. .read_int_callback = edge_interrupt_callback,
  2356. .read_bulk_callback = edge_bulk_in_callback,
  2357. .write_bulk_callback = edge_bulk_out_callback,
  2358. };
  2359. static struct usb_serial_driver * const serial_drivers[] = {
  2360. &edgeport_1port_device, &edgeport_2port_device, NULL
  2361. };
  2362. module_usb_serial_driver(io_driver, serial_drivers);
  2363. MODULE_AUTHOR(DRIVER_AUTHOR);
  2364. MODULE_DESCRIPTION(DRIVER_DESC);
  2365. MODULE_LICENSE("GPL");
  2366. MODULE_FIRMWARE("edgeport/down3.bin");
  2367. module_param(debug, bool, S_IRUGO | S_IWUSR);
  2368. MODULE_PARM_DESC(debug, "Debug enabled or not");
  2369. module_param(closing_wait, int, S_IRUGO | S_IWUSR);
  2370. MODULE_PARM_DESC(closing_wait, "Maximum wait for data to drain, in .01 secs");
  2371. module_param(ignore_cpu_rev, bool, S_IRUGO | S_IWUSR);
  2372. MODULE_PARM_DESC(ignore_cpu_rev,
  2373. "Ignore the cpu revision when connecting to a device");
  2374. module_param(default_uart_mode, int, S_IRUGO | S_IWUSR);
  2375. MODULE_PARM_DESC(default_uart_mode, "Default uart_mode, 0=RS232, ...");