esp.c 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520
  1. /*
  2. * esp.c - driver for Hayes ESP serial cards
  3. *
  4. * --- Notices from serial.c, upon which this driver is based ---
  5. *
  6. * Copyright (C) 1991, 1992 Linus Torvalds
  7. *
  8. * Extensively rewritten by Theodore Ts'o, 8/16/92 -- 9/14/92. Now
  9. * much more extensible to support other serial cards based on the
  10. * 16450/16550A UART's. Added support for the AST FourPort and the
  11. * Accent Async board.
  12. *
  13. * set_serial_info fixed to set the flags, custom divisor, and uart
  14. * type fields. Fix suggested by Michael K. Johnson 12/12/92.
  15. *
  16. * 11/95: TIOCMIWAIT, TIOCGICOUNT by Angelo Haritsis <ah@doc.ic.ac.uk>
  17. *
  18. * 03/96: Modularised by Angelo Haritsis <ah@doc.ic.ac.uk>
  19. *
  20. * rs_set_termios fixed to look also for changes of the input
  21. * flags INPCK, BRKINT, PARMRK, IGNPAR and IGNBRK.
  22. * Bernd Anhäupl 05/17/96.
  23. *
  24. * --- End of notices from serial.c ---
  25. *
  26. * Support for the ESP serial card by Andrew J. Robinson
  27. * <arobinso@nyx.net> (Card detection routine taken from a patch
  28. * by Dennis J. Boylan). Patches to allow use with 2.1.x contributed
  29. * by Chris Faylor.
  30. *
  31. * Most recent changes: (Andrew J. Robinson)
  32. * Support for PIO mode. This allows the driver to work properly with
  33. * multiport cards.
  34. *
  35. * Arnaldo Carvalho de Melo <acme@conectiva.com.br> -
  36. * several cleanups, use module_init/module_exit, etc
  37. *
  38. * This module exports the following rs232 io functions:
  39. *
  40. * int espserial_init(void);
  41. */
  42. #include <linux/module.h>
  43. #include <linux/errno.h>
  44. #include <linux/signal.h>
  45. #include <linux/sched.h>
  46. #include <linux/interrupt.h>
  47. #include <linux/tty.h>
  48. #include <linux/tty_flip.h>
  49. #include <linux/serial.h>
  50. #include <linux/serialP.h>
  51. #include <linux/serial_reg.h>
  52. #include <linux/major.h>
  53. #include <linux/string.h>
  54. #include <linux/fcntl.h>
  55. #include <linux/ptrace.h>
  56. #include <linux/ioport.h>
  57. #include <linux/mm.h>
  58. #include <linux/init.h>
  59. #include <linux/delay.h>
  60. #include <linux/bitops.h>
  61. #include <asm/system.h>
  62. #include <linux/io.h>
  63. #include <asm/dma.h>
  64. #include <linux/slab.h>
  65. #include <linux/uaccess.h>
  66. #include <linux/hayesesp.h>
  67. #define NR_PORTS 64 /* maximum number of ports */
  68. #define NR_PRIMARY 8 /* maximum number of primary ports */
  69. #define REGION_SIZE 8 /* size of io region to request */
  70. /* The following variables can be set by giving module options */
  71. static int irq[NR_PRIMARY]; /* IRQ for each base port */
  72. static unsigned int divisor[NR_PRIMARY]; /* custom divisor for each port */
  73. static unsigned int dma = ESP_DMA_CHANNEL; /* DMA channel */
  74. static unsigned int rx_trigger = ESP_RX_TRIGGER;
  75. static unsigned int tx_trigger = ESP_TX_TRIGGER;
  76. static unsigned int flow_off = ESP_FLOW_OFF;
  77. static unsigned int flow_on = ESP_FLOW_ON;
  78. static unsigned int rx_timeout = ESP_RX_TMOUT;
  79. static unsigned int pio_threshold = ESP_PIO_THRESHOLD;
  80. MODULE_LICENSE("GPL");
  81. module_param_array(irq, int, NULL, 0);
  82. module_param_array(divisor, uint, NULL, 0);
  83. module_param(dma, uint, 0);
  84. module_param(rx_trigger, uint, 0);
  85. module_param(tx_trigger, uint, 0);
  86. module_param(flow_off, uint, 0);
  87. module_param(flow_on, uint, 0);
  88. module_param(rx_timeout, uint, 0);
  89. module_param(pio_threshold, uint, 0);
  90. /* END */
  91. static char *dma_buffer;
  92. static int dma_bytes;
  93. static struct esp_pio_buffer *free_pio_buf;
  94. #define DMA_BUFFER_SZ 1024
  95. #define WAKEUP_CHARS 1024
  96. static char serial_name[] __initdata = "ESP serial driver";
  97. static char serial_version[] __initdata = "2.2";
  98. static struct tty_driver *esp_driver;
  99. /*
  100. * Serial driver configuration section. Here are the various options:
  101. *
  102. * SERIAL_PARANOIA_CHECK
  103. * Check the magic number for the esp_structure where
  104. * ever possible.
  105. */
  106. #undef SERIAL_PARANOIA_CHECK
  107. #define SERIAL_DO_RESTART
  108. #undef SERIAL_DEBUG_INTR
  109. #undef SERIAL_DEBUG_OPEN
  110. #undef SERIAL_DEBUG_FLOW
  111. #if defined(MODULE) && defined(SERIAL_DEBUG_MCOUNT)
  112. #define DBG_CNT(s) printk(KERN_DEBUG "(%s): [%x] refc=%d, serc=%d, ttyc=%d -> %s\n", \
  113. tty->name, info->flags, \
  114. serial_driver.refcount, \
  115. info->count, tty->count, s)
  116. #else
  117. #define DBG_CNT(s)
  118. #endif
  119. static struct esp_struct *ports;
  120. static void change_speed(struct esp_struct *info);
  121. static void rs_wait_until_sent(struct tty_struct *, int);
  122. /*
  123. * The ESP card has a clock rate of 14.7456 MHz (that is, 2**ESPC_SCALE
  124. * times the normal 1.8432 Mhz clock of most serial boards).
  125. */
  126. #define BASE_BAUD ((1843200 / 16) * (1 << ESPC_SCALE))
  127. /* Standard COM flags (except for COM4, because of the 8514 problem) */
  128. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
  129. static inline int serial_paranoia_check(struct esp_struct *info,
  130. char *name, const char *routine)
  131. {
  132. #ifdef SERIAL_PARANOIA_CHECK
  133. static const char badmagic[] = KERN_WARNING
  134. "Warning: bad magic number for serial struct (%s) in %s\n";
  135. static const char badinfo[] = KERN_WARNING
  136. "Warning: null esp_struct for (%s) in %s\n";
  137. if (!info) {
  138. printk(badinfo, name, routine);
  139. return 1;
  140. }
  141. if (info->magic != ESP_MAGIC) {
  142. printk(badmagic, name, routine);
  143. return 1;
  144. }
  145. #endif
  146. return 0;
  147. }
  148. static inline unsigned int serial_in(struct esp_struct *info, int offset)
  149. {
  150. return inb(info->port + offset);
  151. }
  152. static inline void serial_out(struct esp_struct *info, int offset,
  153. unsigned char value)
  154. {
  155. outb(value, info->port+offset);
  156. }
  157. /*
  158. * ------------------------------------------------------------
  159. * rs_stop() and rs_start()
  160. *
  161. * This routines are called before setting or resetting tty->stopped.
  162. * They enable or disable transmitter interrupts, as necessary.
  163. * ------------------------------------------------------------
  164. */
  165. static void rs_stop(struct tty_struct *tty)
  166. {
  167. struct esp_struct *info = tty->driver_data;
  168. unsigned long flags;
  169. if (serial_paranoia_check(info, tty->name, "rs_stop"))
  170. return;
  171. spin_lock_irqsave(&info->lock, flags);
  172. if (info->IER & UART_IER_THRI) {
  173. info->IER &= ~UART_IER_THRI;
  174. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  175. serial_out(info, UART_ESI_CMD2, info->IER);
  176. }
  177. spin_unlock_irqrestore(&info->lock, flags);
  178. }
  179. static void rs_start(struct tty_struct *tty)
  180. {
  181. struct esp_struct *info = tty->driver_data;
  182. unsigned long flags;
  183. if (serial_paranoia_check(info, tty->name, "rs_start"))
  184. return;
  185. spin_lock_irqsave(&info->lock, flags);
  186. if (info->xmit_cnt && info->xmit_buf && !(info->IER & UART_IER_THRI)) {
  187. info->IER |= UART_IER_THRI;
  188. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  189. serial_out(info, UART_ESI_CMD2, info->IER);
  190. }
  191. spin_unlock_irqrestore(&info->lock, flags);
  192. }
  193. /*
  194. * ----------------------------------------------------------------------
  195. *
  196. * Here starts the interrupt handling routines. All of the following
  197. * subroutines are declared as inline and are folded into
  198. * rs_interrupt(). They were separated out for readability's sake.
  199. *
  200. * Note: rs_interrupt() is a "fast" interrupt, which means that it
  201. * runs with interrupts turned off. People who may want to modify
  202. * rs_interrupt() should try to keep the interrupt handler as fast as
  203. * possible. After you are done making modifications, it is not a bad
  204. * idea to do:
  205. *
  206. * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c
  207. *
  208. * and look at the resulting assemble code in serial.s.
  209. *
  210. * - Ted Ts'o (tytso@mit.edu), 7-Mar-93
  211. * -----------------------------------------------------------------------
  212. */
  213. static DEFINE_SPINLOCK(pio_lock);
  214. static inline struct esp_pio_buffer *get_pio_buffer(void)
  215. {
  216. struct esp_pio_buffer *buf;
  217. unsigned long flags;
  218. spin_lock_irqsave(&pio_lock, flags);
  219. if (free_pio_buf) {
  220. buf = free_pio_buf;
  221. free_pio_buf = buf->next;
  222. } else {
  223. buf = kmalloc(sizeof(struct esp_pio_buffer), GFP_ATOMIC);
  224. }
  225. spin_unlock_irqrestore(&pio_lock, flags);
  226. return buf;
  227. }
  228. static inline void release_pio_buffer(struct esp_pio_buffer *buf)
  229. {
  230. unsigned long flags;
  231. spin_lock_irqsave(&pio_lock, flags);
  232. buf->next = free_pio_buf;
  233. free_pio_buf = buf;
  234. spin_unlock_irqrestore(&pio_lock, flags);
  235. }
  236. static inline void receive_chars_pio(struct esp_struct *info, int num_bytes)
  237. {
  238. struct tty_struct *tty = info->tty;
  239. int i;
  240. struct esp_pio_buffer *pio_buf;
  241. struct esp_pio_buffer *err_buf;
  242. unsigned char status_mask;
  243. pio_buf = get_pio_buffer();
  244. if (!pio_buf)
  245. return;
  246. err_buf = get_pio_buffer();
  247. if (!err_buf) {
  248. release_pio_buffer(pio_buf);
  249. return;
  250. }
  251. status_mask = (info->read_status_mask >> 2) & 0x07;
  252. for (i = 0; i < num_bytes - 1; i += 2) {
  253. *((unsigned short *)(pio_buf->data + i)) =
  254. inw(info->port + UART_ESI_RX);
  255. err_buf->data[i] = serial_in(info, UART_ESI_RWS);
  256. err_buf->data[i + 1] = (err_buf->data[i] >> 3) & status_mask;
  257. err_buf->data[i] &= status_mask;
  258. }
  259. if (num_bytes & 0x0001) {
  260. pio_buf->data[num_bytes - 1] = serial_in(info, UART_ESI_RX);
  261. err_buf->data[num_bytes - 1] =
  262. (serial_in(info, UART_ESI_RWS) >> 3) & status_mask;
  263. }
  264. /* make sure everything is still ok since interrupts were enabled */
  265. tty = info->tty;
  266. if (!tty) {
  267. release_pio_buffer(pio_buf);
  268. release_pio_buffer(err_buf);
  269. info->stat_flags &= ~ESP_STAT_RX_TIMEOUT;
  270. return;
  271. }
  272. status_mask = (info->ignore_status_mask >> 2) & 0x07;
  273. for (i = 0; i < num_bytes; i++) {
  274. if (!(err_buf->data[i] & status_mask)) {
  275. int flag = 0;
  276. if (err_buf->data[i] & 0x04) {
  277. flag = TTY_BREAK;
  278. if (info->flags & ASYNC_SAK)
  279. do_SAK(tty);
  280. } else if (err_buf->data[i] & 0x02)
  281. flag = TTY_FRAME;
  282. else if (err_buf->data[i] & 0x01)
  283. flag = TTY_PARITY;
  284. tty_insert_flip_char(tty, pio_buf->data[i], flag);
  285. }
  286. }
  287. tty_schedule_flip(tty);
  288. info->stat_flags &= ~ESP_STAT_RX_TIMEOUT;
  289. release_pio_buffer(pio_buf);
  290. release_pio_buffer(err_buf);
  291. }
  292. static void program_isa_dma(int dma, int dir, unsigned long addr, int len)
  293. {
  294. unsigned long flags;
  295. flags = claim_dma_lock();
  296. disable_dma(dma);
  297. clear_dma_ff(dma);
  298. set_dma_mode(dma, dir);
  299. set_dma_addr(dma, addr);
  300. set_dma_count(dma, len);
  301. enable_dma(dma);
  302. release_dma_lock(flags);
  303. }
  304. static void receive_chars_dma(struct esp_struct *info, int num_bytes)
  305. {
  306. info->stat_flags &= ~ESP_STAT_RX_TIMEOUT;
  307. dma_bytes = num_bytes;
  308. info->stat_flags |= ESP_STAT_DMA_RX;
  309. program_isa_dma(dma, DMA_MODE_READ, isa_virt_to_bus(dma_buffer),
  310. dma_bytes);
  311. serial_out(info, UART_ESI_CMD1, ESI_START_DMA_RX);
  312. }
  313. static inline void receive_chars_dma_done(struct esp_struct *info,
  314. int status)
  315. {
  316. struct tty_struct *tty = info->tty;
  317. int num_bytes;
  318. unsigned long flags;
  319. flags = claim_dma_lock();
  320. disable_dma(dma);
  321. clear_dma_ff(dma);
  322. info->stat_flags &= ~ESP_STAT_DMA_RX;
  323. num_bytes = dma_bytes - get_dma_residue(dma);
  324. release_dma_lock(flags);
  325. info->icount.rx += num_bytes;
  326. if (num_bytes > 0) {
  327. tty_insert_flip_string(tty, dma_buffer, num_bytes - 1);
  328. status &= (0x1c & info->read_status_mask);
  329. /* Is the status significant or do we throw the last byte ? */
  330. if (!(status & info->ignore_status_mask)) {
  331. int statflag = 0;
  332. if (status & 0x10) {
  333. statflag = TTY_BREAK;
  334. (info->icount.brk)++;
  335. if (info->flags & ASYNC_SAK)
  336. do_SAK(tty);
  337. } else if (status & 0x08) {
  338. statflag = TTY_FRAME;
  339. info->icount.frame++;
  340. } else if (status & 0x04) {
  341. statflag = TTY_PARITY;
  342. info->icount.parity++;
  343. }
  344. tty_insert_flip_char(tty, dma_buffer[num_bytes - 1],
  345. statflag);
  346. }
  347. tty_schedule_flip(tty);
  348. }
  349. if (dma_bytes != num_bytes) {
  350. num_bytes = dma_bytes - num_bytes;
  351. dma_bytes = 0;
  352. receive_chars_dma(info, num_bytes);
  353. } else
  354. dma_bytes = 0;
  355. }
  356. /* Caller must hold info->lock */
  357. static inline void transmit_chars_pio(struct esp_struct *info,
  358. int space_avail)
  359. {
  360. int i;
  361. struct esp_pio_buffer *pio_buf;
  362. pio_buf = get_pio_buffer();
  363. if (!pio_buf)
  364. return;
  365. while (space_avail && info->xmit_cnt) {
  366. if (info->xmit_tail + space_avail <= ESP_XMIT_SIZE) {
  367. memcpy(pio_buf->data,
  368. &(info->xmit_buf[info->xmit_tail]),
  369. space_avail);
  370. } else {
  371. i = ESP_XMIT_SIZE - info->xmit_tail;
  372. memcpy(pio_buf->data,
  373. &(info->xmit_buf[info->xmit_tail]), i);
  374. memcpy(&(pio_buf->data[i]), info->xmit_buf,
  375. space_avail - i);
  376. }
  377. info->xmit_cnt -= space_avail;
  378. info->xmit_tail = (info->xmit_tail + space_avail) &
  379. (ESP_XMIT_SIZE - 1);
  380. for (i = 0; i < space_avail - 1; i += 2) {
  381. outw(*((unsigned short *)(pio_buf->data + i)),
  382. info->port + UART_ESI_TX);
  383. }
  384. if (space_avail & 0x0001)
  385. serial_out(info, UART_ESI_TX,
  386. pio_buf->data[space_avail - 1]);
  387. if (info->xmit_cnt) {
  388. serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
  389. serial_out(info, UART_ESI_CMD1, ESI_GET_TX_AVAIL);
  390. space_avail = serial_in(info, UART_ESI_STAT1) << 8;
  391. space_avail |= serial_in(info, UART_ESI_STAT2);
  392. if (space_avail > info->xmit_cnt)
  393. space_avail = info->xmit_cnt;
  394. }
  395. }
  396. if (info->xmit_cnt < WAKEUP_CHARS) {
  397. if (info->tty)
  398. tty_wakeup(info->tty);
  399. #ifdef SERIAL_DEBUG_INTR
  400. printk("THRE...");
  401. #endif
  402. if (info->xmit_cnt <= 0) {
  403. info->IER &= ~UART_IER_THRI;
  404. serial_out(info, UART_ESI_CMD1,
  405. ESI_SET_SRV_MASK);
  406. serial_out(info, UART_ESI_CMD2, info->IER);
  407. }
  408. }
  409. release_pio_buffer(pio_buf);
  410. }
  411. /* Caller must hold info->lock */
  412. static inline void transmit_chars_dma(struct esp_struct *info, int num_bytes)
  413. {
  414. dma_bytes = num_bytes;
  415. if (info->xmit_tail + dma_bytes <= ESP_XMIT_SIZE) {
  416. memcpy(dma_buffer, &(info->xmit_buf[info->xmit_tail]),
  417. dma_bytes);
  418. } else {
  419. int i = ESP_XMIT_SIZE - info->xmit_tail;
  420. memcpy(dma_buffer, &(info->xmit_buf[info->xmit_tail]),
  421. i);
  422. memcpy(&(dma_buffer[i]), info->xmit_buf, dma_bytes - i);
  423. }
  424. info->xmit_cnt -= dma_bytes;
  425. info->xmit_tail = (info->xmit_tail + dma_bytes) & (ESP_XMIT_SIZE - 1);
  426. if (info->xmit_cnt < WAKEUP_CHARS) {
  427. if (info->tty)
  428. tty_wakeup(info->tty);
  429. #ifdef SERIAL_DEBUG_INTR
  430. printk("THRE...");
  431. #endif
  432. if (info->xmit_cnt <= 0) {
  433. info->IER &= ~UART_IER_THRI;
  434. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  435. serial_out(info, UART_ESI_CMD2, info->IER);
  436. }
  437. }
  438. info->stat_flags |= ESP_STAT_DMA_TX;
  439. program_isa_dma(dma, DMA_MODE_WRITE, isa_virt_to_bus(dma_buffer),
  440. dma_bytes);
  441. serial_out(info, UART_ESI_CMD1, ESI_START_DMA_TX);
  442. }
  443. static inline void transmit_chars_dma_done(struct esp_struct *info)
  444. {
  445. int num_bytes;
  446. unsigned long flags;
  447. flags = claim_dma_lock();
  448. disable_dma(dma);
  449. clear_dma_ff(dma);
  450. num_bytes = dma_bytes - get_dma_residue(dma);
  451. info->icount.tx += dma_bytes;
  452. release_dma_lock(flags);
  453. if (dma_bytes != num_bytes) {
  454. dma_bytes -= num_bytes;
  455. memmove(dma_buffer, dma_buffer + num_bytes, dma_bytes);
  456. program_isa_dma(dma, DMA_MODE_WRITE,
  457. isa_virt_to_bus(dma_buffer), dma_bytes);
  458. serial_out(info, UART_ESI_CMD1, ESI_START_DMA_TX);
  459. } else {
  460. dma_bytes = 0;
  461. info->stat_flags &= ~ESP_STAT_DMA_TX;
  462. }
  463. }
  464. static void check_modem_status(struct esp_struct *info)
  465. {
  466. int status;
  467. serial_out(info, UART_ESI_CMD1, ESI_GET_UART_STAT);
  468. status = serial_in(info, UART_ESI_STAT2);
  469. if (status & UART_MSR_ANY_DELTA) {
  470. /* update input line counters */
  471. if (status & UART_MSR_TERI)
  472. info->icount.rng++;
  473. if (status & UART_MSR_DDSR)
  474. info->icount.dsr++;
  475. if (status & UART_MSR_DDCD)
  476. info->icount.dcd++;
  477. if (status & UART_MSR_DCTS)
  478. info->icount.cts++;
  479. wake_up_interruptible(&info->delta_msr_wait);
  480. }
  481. if ((info->flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) {
  482. #if (defined(SERIAL_DEBUG_OPEN) || defined(SERIAL_DEBUG_INTR))
  483. printk("ttys%d CD now %s...", info->line,
  484. (status & UART_MSR_DCD) ? "on" : "off");
  485. #endif
  486. if (status & UART_MSR_DCD)
  487. wake_up_interruptible(&info->open_wait);
  488. else {
  489. #ifdef SERIAL_DEBUG_OPEN
  490. printk("scheduling hangup...");
  491. #endif
  492. tty_hangup(info->tty);
  493. }
  494. }
  495. }
  496. /*
  497. * This is the serial driver's interrupt routine
  498. */
  499. static irqreturn_t rs_interrupt_single(int irq, void *dev_id)
  500. {
  501. struct esp_struct *info;
  502. unsigned err_status;
  503. unsigned int scratch;
  504. #ifdef SERIAL_DEBUG_INTR
  505. printk("rs_interrupt_single(%d)...", irq);
  506. #endif
  507. info = (struct esp_struct *)dev_id;
  508. err_status = 0;
  509. scratch = serial_in(info, UART_ESI_SID);
  510. spin_lock(&info->lock);
  511. if (!info->tty) {
  512. spin_unlock(&info->lock);
  513. return IRQ_NONE;
  514. }
  515. if (scratch & 0x04) { /* error */
  516. serial_out(info, UART_ESI_CMD1, ESI_GET_ERR_STAT);
  517. err_status = serial_in(info, UART_ESI_STAT1);
  518. serial_in(info, UART_ESI_STAT2);
  519. if (err_status & 0x01)
  520. info->stat_flags |= ESP_STAT_RX_TIMEOUT;
  521. if (err_status & 0x20) /* UART status */
  522. check_modem_status(info);
  523. if (err_status & 0x80) /* Start break */
  524. wake_up_interruptible(&info->break_wait);
  525. }
  526. if ((scratch & 0x88) || /* DMA completed or timed out */
  527. (err_status & 0x1c) /* receive error */) {
  528. if (info->stat_flags & ESP_STAT_DMA_RX)
  529. receive_chars_dma_done(info, err_status);
  530. else if (info->stat_flags & ESP_STAT_DMA_TX)
  531. transmit_chars_dma_done(info);
  532. }
  533. if (!(info->stat_flags & (ESP_STAT_DMA_RX | ESP_STAT_DMA_TX)) &&
  534. ((scratch & 0x01) || (info->stat_flags & ESP_STAT_RX_TIMEOUT)) &&
  535. (info->IER & UART_IER_RDI)) {
  536. int num_bytes;
  537. serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
  538. serial_out(info, UART_ESI_CMD1, ESI_GET_RX_AVAIL);
  539. num_bytes = serial_in(info, UART_ESI_STAT1) << 8;
  540. num_bytes |= serial_in(info, UART_ESI_STAT2);
  541. num_bytes = tty_buffer_request_room(info->tty, num_bytes);
  542. if (num_bytes) {
  543. if (dma_bytes ||
  544. (info->stat_flags & ESP_STAT_USE_PIO) ||
  545. (num_bytes <= info->config.pio_threshold))
  546. receive_chars_pio(info, num_bytes);
  547. else
  548. receive_chars_dma(info, num_bytes);
  549. }
  550. }
  551. if (!(info->stat_flags & (ESP_STAT_DMA_RX | ESP_STAT_DMA_TX)) &&
  552. (scratch & 0x02) && (info->IER & UART_IER_THRI)) {
  553. if ((info->xmit_cnt <= 0) || info->tty->stopped) {
  554. info->IER &= ~UART_IER_THRI;
  555. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  556. serial_out(info, UART_ESI_CMD2, info->IER);
  557. } else {
  558. int num_bytes;
  559. serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
  560. serial_out(info, UART_ESI_CMD1, ESI_GET_TX_AVAIL);
  561. num_bytes = serial_in(info, UART_ESI_STAT1) << 8;
  562. num_bytes |= serial_in(info, UART_ESI_STAT2);
  563. if (num_bytes > info->xmit_cnt)
  564. num_bytes = info->xmit_cnt;
  565. if (num_bytes) {
  566. if (dma_bytes ||
  567. (info->stat_flags & ESP_STAT_USE_PIO) ||
  568. (num_bytes <= info->config.pio_threshold))
  569. transmit_chars_pio(info, num_bytes);
  570. else
  571. transmit_chars_dma(info, num_bytes);
  572. }
  573. }
  574. }
  575. info->last_active = jiffies;
  576. #ifdef SERIAL_DEBUG_INTR
  577. printk("end.\n");
  578. #endif
  579. spin_unlock(&info->lock);
  580. return IRQ_HANDLED;
  581. }
  582. /*
  583. * -------------------------------------------------------------------
  584. * Here ends the serial interrupt routines.
  585. * -------------------------------------------------------------------
  586. */
  587. /*
  588. * ---------------------------------------------------------------
  589. * Low level utility subroutines for the serial driver: routines to
  590. * figure out the appropriate timeout for an interrupt chain, routines
  591. * to initialize and startup a serial port, and routines to shutdown a
  592. * serial port. Useful stuff like that.
  593. *
  594. * Caller should hold lock
  595. * ---------------------------------------------------------------
  596. */
  597. static void esp_basic_init(struct esp_struct *info)
  598. {
  599. /* put ESPC in enhanced mode */
  600. serial_out(info, UART_ESI_CMD1, ESI_SET_MODE);
  601. if (info->stat_flags & ESP_STAT_NEVER_DMA)
  602. serial_out(info, UART_ESI_CMD2, 0x01);
  603. else
  604. serial_out(info, UART_ESI_CMD2, 0x31);
  605. /* disable interrupts for now */
  606. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  607. serial_out(info, UART_ESI_CMD2, 0x00);
  608. /* set interrupt and DMA channel */
  609. serial_out(info, UART_ESI_CMD1, ESI_SET_IRQ);
  610. if (info->stat_flags & ESP_STAT_NEVER_DMA)
  611. serial_out(info, UART_ESI_CMD2, 0x01);
  612. else
  613. serial_out(info, UART_ESI_CMD2, (dma << 4) | 0x01);
  614. serial_out(info, UART_ESI_CMD1, ESI_SET_ENH_IRQ);
  615. if (info->line % 8) /* secondary port */
  616. serial_out(info, UART_ESI_CMD2, 0x0d); /* shared */
  617. else if (info->irq == 9)
  618. serial_out(info, UART_ESI_CMD2, 0x02);
  619. else
  620. serial_out(info, UART_ESI_CMD2, info->irq);
  621. /* set error status mask (check this) */
  622. serial_out(info, UART_ESI_CMD1, ESI_SET_ERR_MASK);
  623. if (info->stat_flags & ESP_STAT_NEVER_DMA)
  624. serial_out(info, UART_ESI_CMD2, 0xa1);
  625. else
  626. serial_out(info, UART_ESI_CMD2, 0xbd);
  627. serial_out(info, UART_ESI_CMD2, 0x00);
  628. /* set DMA timeout */
  629. serial_out(info, UART_ESI_CMD1, ESI_SET_DMA_TMOUT);
  630. serial_out(info, UART_ESI_CMD2, 0xff);
  631. /* set FIFO trigger levels */
  632. serial_out(info, UART_ESI_CMD1, ESI_SET_TRIGGER);
  633. serial_out(info, UART_ESI_CMD2, info->config.rx_trigger >> 8);
  634. serial_out(info, UART_ESI_CMD2, info->config.rx_trigger);
  635. serial_out(info, UART_ESI_CMD2, info->config.tx_trigger >> 8);
  636. serial_out(info, UART_ESI_CMD2, info->config.tx_trigger);
  637. /* Set clock scaling and wait states */
  638. serial_out(info, UART_ESI_CMD1, ESI_SET_PRESCALAR);
  639. serial_out(info, UART_ESI_CMD2, 0x04 | ESPC_SCALE);
  640. /* set reinterrupt pacing */
  641. serial_out(info, UART_ESI_CMD1, ESI_SET_REINTR);
  642. serial_out(info, UART_ESI_CMD2, 0xff);
  643. }
  644. static int startup(struct esp_struct *info)
  645. {
  646. unsigned long flags;
  647. int retval = 0;
  648. unsigned int num_chars;
  649. spin_lock_irqsave(&info->lock, flags);
  650. if (info->flags & ASYNC_INITIALIZED)
  651. goto out;
  652. if (!info->xmit_buf) {
  653. info->xmit_buf = (unsigned char *)get_zeroed_page(GFP_ATOMIC);
  654. retval = -ENOMEM;
  655. if (!info->xmit_buf)
  656. goto out;
  657. }
  658. #ifdef SERIAL_DEBUG_OPEN
  659. printk(KERN_DEBUG "starting up ttys%d (irq %d)...",
  660. info->line, info->irq);
  661. #endif
  662. /* Flush the RX buffer. Using the ESI flush command may cause */
  663. /* wild interrupts, so read all the data instead. */
  664. serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
  665. serial_out(info, UART_ESI_CMD1, ESI_GET_RX_AVAIL);
  666. num_chars = serial_in(info, UART_ESI_STAT1) << 8;
  667. num_chars |= serial_in(info, UART_ESI_STAT2);
  668. while (num_chars > 1) {
  669. inw(info->port + UART_ESI_RX);
  670. num_chars -= 2;
  671. }
  672. if (num_chars)
  673. serial_in(info, UART_ESI_RX);
  674. /* set receive character timeout */
  675. serial_out(info, UART_ESI_CMD1, ESI_SET_RX_TIMEOUT);
  676. serial_out(info, UART_ESI_CMD2, info->config.rx_timeout);
  677. /* clear all flags except the "never DMA" flag */
  678. info->stat_flags &= ESP_STAT_NEVER_DMA;
  679. if (info->stat_flags & ESP_STAT_NEVER_DMA)
  680. info->stat_flags |= ESP_STAT_USE_PIO;
  681. spin_unlock_irqrestore(&info->lock, flags);
  682. /*
  683. * Allocate the IRQ
  684. */
  685. retval = request_irq(info->irq, rs_interrupt_single, IRQF_SHARED,
  686. "esp serial", info);
  687. if (retval) {
  688. if (capable(CAP_SYS_ADMIN)) {
  689. if (info->tty)
  690. set_bit(TTY_IO_ERROR,
  691. &info->tty->flags);
  692. retval = 0;
  693. }
  694. goto out_unlocked;
  695. }
  696. if (!(info->stat_flags & ESP_STAT_USE_PIO) && !dma_buffer) {
  697. dma_buffer = (char *)__get_dma_pages(
  698. GFP_KERNEL, get_order(DMA_BUFFER_SZ));
  699. /* use PIO mode if DMA buf/chan cannot be allocated */
  700. if (!dma_buffer)
  701. info->stat_flags |= ESP_STAT_USE_PIO;
  702. else if (request_dma(dma, "esp serial")) {
  703. free_pages((unsigned long)dma_buffer,
  704. get_order(DMA_BUFFER_SZ));
  705. dma_buffer = NULL;
  706. info->stat_flags |= ESP_STAT_USE_PIO;
  707. }
  708. }
  709. info->MCR = UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2;
  710. spin_lock_irqsave(&info->lock, flags);
  711. serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
  712. serial_out(info, UART_ESI_CMD2, UART_MCR);
  713. serial_out(info, UART_ESI_CMD2, info->MCR);
  714. /*
  715. * Finally, enable interrupts
  716. */
  717. /* info->IER = UART_IER_MSI | UART_IER_RLSI | UART_IER_RDI; */
  718. info->IER = UART_IER_RLSI | UART_IER_RDI | UART_IER_DMA_TMOUT |
  719. UART_IER_DMA_TC;
  720. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  721. serial_out(info, UART_ESI_CMD2, info->IER);
  722. if (info->tty)
  723. clear_bit(TTY_IO_ERROR, &info->tty->flags);
  724. info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
  725. spin_unlock_irqrestore(&info->lock, flags);
  726. /*
  727. * Set up the tty->alt_speed kludge
  728. */
  729. if (info->tty) {
  730. if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
  731. info->tty->alt_speed = 57600;
  732. if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
  733. info->tty->alt_speed = 115200;
  734. if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
  735. info->tty->alt_speed = 230400;
  736. if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
  737. info->tty->alt_speed = 460800;
  738. }
  739. /*
  740. * set the speed of the serial port
  741. */
  742. change_speed(info);
  743. info->flags |= ASYNC_INITIALIZED;
  744. return 0;
  745. out:
  746. spin_unlock_irqrestore(&info->lock, flags);
  747. out_unlocked:
  748. return retval;
  749. }
  750. /*
  751. * This routine will shutdown a serial port; interrupts are disabled, and
  752. * DTR is dropped if the hangup on close termio flag is on.
  753. */
  754. static void shutdown(struct esp_struct *info)
  755. {
  756. unsigned long flags, f;
  757. if (!(info->flags & ASYNC_INITIALIZED))
  758. return;
  759. #ifdef SERIAL_DEBUG_OPEN
  760. printk("Shutting down serial port %d (irq %d)....", info->line,
  761. info->irq);
  762. #endif
  763. spin_lock_irqsave(&info->lock, flags);
  764. /*
  765. * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
  766. * here so the queue might never be waken up
  767. */
  768. wake_up_interruptible(&info->delta_msr_wait);
  769. wake_up_interruptible(&info->break_wait);
  770. /* stop a DMA transfer on the port being closed */
  771. /* DMA lock is higher priority always */
  772. if (info->stat_flags & (ESP_STAT_DMA_RX | ESP_STAT_DMA_TX)) {
  773. f = claim_dma_lock();
  774. disable_dma(dma);
  775. clear_dma_ff(dma);
  776. release_dma_lock(f);
  777. dma_bytes = 0;
  778. }
  779. /*
  780. * Free the IRQ
  781. */
  782. free_irq(info->irq, info);
  783. if (dma_buffer) {
  784. struct esp_struct *current_port = ports;
  785. while (current_port) {
  786. if ((current_port != info) &&
  787. (current_port->flags & ASYNC_INITIALIZED))
  788. break;
  789. current_port = current_port->next_port;
  790. }
  791. if (!current_port) {
  792. free_dma(dma);
  793. free_pages((unsigned long)dma_buffer,
  794. get_order(DMA_BUFFER_SZ));
  795. dma_buffer = NULL;
  796. }
  797. }
  798. if (info->xmit_buf) {
  799. free_page((unsigned long) info->xmit_buf);
  800. info->xmit_buf = NULL;
  801. }
  802. info->IER = 0;
  803. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  804. serial_out(info, UART_ESI_CMD2, 0x00);
  805. if (!info->tty || (info->tty->termios->c_cflag & HUPCL))
  806. info->MCR &= ~(UART_MCR_DTR|UART_MCR_RTS);
  807. info->MCR &= ~UART_MCR_OUT2;
  808. serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
  809. serial_out(info, UART_ESI_CMD2, UART_MCR);
  810. serial_out(info, UART_ESI_CMD2, info->MCR);
  811. if (info->tty)
  812. set_bit(TTY_IO_ERROR, &info->tty->flags);
  813. info->flags &= ~ASYNC_INITIALIZED;
  814. spin_unlock_irqrestore(&info->lock, flags);
  815. }
  816. /*
  817. * This routine is called to set the UART divisor registers to match
  818. * the specified baud rate for a serial port.
  819. */
  820. static void change_speed(struct esp_struct *info)
  821. {
  822. unsigned short port;
  823. int quot = 0;
  824. unsigned cflag, cval;
  825. int baud, bits;
  826. unsigned char flow1 = 0, flow2 = 0;
  827. unsigned long flags;
  828. if (!info->tty || !info->tty->termios)
  829. return;
  830. cflag = info->tty->termios->c_cflag;
  831. port = info->port;
  832. /* byte size and parity */
  833. switch (cflag & CSIZE) {
  834. case CS5: cval = 0x00; bits = 7; break;
  835. case CS6: cval = 0x01; bits = 8; break;
  836. case CS7: cval = 0x02; bits = 9; break;
  837. case CS8: cval = 0x03; bits = 10; break;
  838. default: cval = 0x00; bits = 7; break;
  839. }
  840. if (cflag & CSTOPB) {
  841. cval |= 0x04;
  842. bits++;
  843. }
  844. if (cflag & PARENB) {
  845. cval |= UART_LCR_PARITY;
  846. bits++;
  847. }
  848. if (!(cflag & PARODD))
  849. cval |= UART_LCR_EPAR;
  850. #ifdef CMSPAR
  851. if (cflag & CMSPAR)
  852. cval |= UART_LCR_SPAR;
  853. #endif
  854. baud = tty_get_baud_rate(info->tty);
  855. if (baud == 38400 &&
  856. ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST))
  857. quot = info->custom_divisor;
  858. else {
  859. if (baud == 134) /* Special case since 134 is really 134.5 */
  860. quot = (2*BASE_BAUD / 269);
  861. else if (baud)
  862. quot = BASE_BAUD / baud;
  863. }
  864. /* If the quotient is ever zero, default to 9600 bps */
  865. if (!quot)
  866. quot = BASE_BAUD / 9600;
  867. if (baud) {
  868. /* Actual rate */
  869. baud = BASE_BAUD/quot;
  870. tty_encode_baud_rate(info->tty, baud, baud);
  871. }
  872. info->timeout = ((1024 * HZ * bits * quot) / BASE_BAUD) + (HZ / 50);
  873. /* CTS flow control flag and modem status interrupts */
  874. /* info->IER &= ~UART_IER_MSI; */
  875. if (cflag & CRTSCTS) {
  876. info->flags |= ASYNC_CTS_FLOW;
  877. /* info->IER |= UART_IER_MSI; */
  878. flow1 = 0x04;
  879. flow2 = 0x10;
  880. } else
  881. info->flags &= ~ASYNC_CTS_FLOW;
  882. if (cflag & CLOCAL)
  883. info->flags &= ~ASYNC_CHECK_CD;
  884. else
  885. info->flags |= ASYNC_CHECK_CD;
  886. /*
  887. * Set up parity check flag
  888. */
  889. info->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
  890. if (I_INPCK(info->tty))
  891. info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
  892. if (I_BRKINT(info->tty) || I_PARMRK(info->tty))
  893. info->read_status_mask |= UART_LSR_BI;
  894. info->ignore_status_mask = 0;
  895. #if 0
  896. /* This should be safe, but for some broken bits of hardware... */
  897. if (I_IGNPAR(info->tty)) {
  898. info->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
  899. info->read_status_mask |= UART_LSR_PE | UART_LSR_FE;
  900. }
  901. #endif
  902. if (I_IGNBRK(info->tty)) {
  903. info->ignore_status_mask |= UART_LSR_BI;
  904. info->read_status_mask |= UART_LSR_BI;
  905. /*
  906. * If we're ignore parity and break indicators, ignore
  907. * overruns too. (For real raw support).
  908. */
  909. if (I_IGNPAR(info->tty)) {
  910. info->ignore_status_mask |= UART_LSR_OE | \
  911. UART_LSR_PE | UART_LSR_FE;
  912. info->read_status_mask |= UART_LSR_OE | \
  913. UART_LSR_PE | UART_LSR_FE;
  914. }
  915. }
  916. if (I_IXOFF(info->tty))
  917. flow1 |= 0x81;
  918. spin_lock_irqsave(&info->lock, flags);
  919. /* set baud */
  920. serial_out(info, UART_ESI_CMD1, ESI_SET_BAUD);
  921. serial_out(info, UART_ESI_CMD2, quot >> 8);
  922. serial_out(info, UART_ESI_CMD2, quot & 0xff);
  923. /* set data bits, parity, etc. */
  924. serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
  925. serial_out(info, UART_ESI_CMD2, UART_LCR);
  926. serial_out(info, UART_ESI_CMD2, cval);
  927. /* Enable flow control */
  928. serial_out(info, UART_ESI_CMD1, ESI_SET_FLOW_CNTL);
  929. serial_out(info, UART_ESI_CMD2, flow1);
  930. serial_out(info, UART_ESI_CMD2, flow2);
  931. /* set flow control characters (XON/XOFF only) */
  932. if (I_IXOFF(info->tty)) {
  933. serial_out(info, UART_ESI_CMD1, ESI_SET_FLOW_CHARS);
  934. serial_out(info, UART_ESI_CMD2, START_CHAR(info->tty));
  935. serial_out(info, UART_ESI_CMD2, STOP_CHAR(info->tty));
  936. serial_out(info, UART_ESI_CMD2, 0x10);
  937. serial_out(info, UART_ESI_CMD2, 0x21);
  938. switch (cflag & CSIZE) {
  939. case CS5:
  940. serial_out(info, UART_ESI_CMD2, 0x1f);
  941. break;
  942. case CS6:
  943. serial_out(info, UART_ESI_CMD2, 0x3f);
  944. break;
  945. case CS7:
  946. case CS8:
  947. serial_out(info, UART_ESI_CMD2, 0x7f);
  948. break;
  949. default:
  950. serial_out(info, UART_ESI_CMD2, 0xff);
  951. break;
  952. }
  953. }
  954. /* Set high/low water */
  955. serial_out(info, UART_ESI_CMD1, ESI_SET_FLOW_LVL);
  956. serial_out(info, UART_ESI_CMD2, info->config.flow_off >> 8);
  957. serial_out(info, UART_ESI_CMD2, info->config.flow_off);
  958. serial_out(info, UART_ESI_CMD2, info->config.flow_on >> 8);
  959. serial_out(info, UART_ESI_CMD2, info->config.flow_on);
  960. spin_unlock_irqrestore(&info->lock, flags);
  961. }
  962. static int rs_put_char(struct tty_struct *tty, unsigned char ch)
  963. {
  964. struct esp_struct *info = tty->driver_data;
  965. unsigned long flags;
  966. int ret = 0;
  967. if (serial_paranoia_check(info, tty->name, "rs_put_char"))
  968. return 0;
  969. if (!info->xmit_buf)
  970. return 0;
  971. spin_lock_irqsave(&info->lock, flags);
  972. if (info->xmit_cnt < ESP_XMIT_SIZE - 1) {
  973. info->xmit_buf[info->xmit_head++] = ch;
  974. info->xmit_head &= ESP_XMIT_SIZE-1;
  975. info->xmit_cnt++;
  976. ret = 1;
  977. }
  978. spin_unlock_irqrestore(&info->lock, flags);
  979. return ret;
  980. }
  981. static void rs_flush_chars(struct tty_struct *tty)
  982. {
  983. struct esp_struct *info = tty->driver_data;
  984. unsigned long flags;
  985. if (serial_paranoia_check(info, tty->name, "rs_flush_chars"))
  986. return;
  987. spin_lock_irqsave(&info->lock, flags);
  988. if (info->xmit_cnt <= 0 || tty->stopped || !info->xmit_buf)
  989. goto out;
  990. if (!(info->IER & UART_IER_THRI)) {
  991. info->IER |= UART_IER_THRI;
  992. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  993. serial_out(info, UART_ESI_CMD2, info->IER);
  994. }
  995. out:
  996. spin_unlock_irqrestore(&info->lock, flags);
  997. }
  998. static int rs_write(struct tty_struct *tty,
  999. const unsigned char *buf, int count)
  1000. {
  1001. int c, t, ret = 0;
  1002. struct esp_struct *info = tty->driver_data;
  1003. unsigned long flags;
  1004. if (serial_paranoia_check(info, tty->name, "rs_write"))
  1005. return 0;
  1006. if (!info->xmit_buf)
  1007. return 0;
  1008. while (1) {
  1009. /* Thanks to R. Wolff for suggesting how to do this with */
  1010. /* interrupts enabled */
  1011. c = count;
  1012. t = ESP_XMIT_SIZE - info->xmit_cnt - 1;
  1013. if (t < c)
  1014. c = t;
  1015. t = ESP_XMIT_SIZE - info->xmit_head;
  1016. if (t < c)
  1017. c = t;
  1018. if (c <= 0)
  1019. break;
  1020. memcpy(info->xmit_buf + info->xmit_head, buf, c);
  1021. info->xmit_head = (info->xmit_head + c) & (ESP_XMIT_SIZE-1);
  1022. info->xmit_cnt += c;
  1023. buf += c;
  1024. count -= c;
  1025. ret += c;
  1026. }
  1027. spin_lock_irqsave(&info->lock, flags);
  1028. if (info->xmit_cnt && !tty->stopped && !(info->IER & UART_IER_THRI)) {
  1029. info->IER |= UART_IER_THRI;
  1030. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  1031. serial_out(info, UART_ESI_CMD2, info->IER);
  1032. }
  1033. spin_unlock_irqrestore(&info->lock, flags);
  1034. return ret;
  1035. }
  1036. static int rs_write_room(struct tty_struct *tty)
  1037. {
  1038. struct esp_struct *info = tty->driver_data;
  1039. int ret;
  1040. unsigned long flags;
  1041. if (serial_paranoia_check(info, tty->name, "rs_write_room"))
  1042. return 0;
  1043. spin_lock_irqsave(&info->lock, flags);
  1044. ret = ESP_XMIT_SIZE - info->xmit_cnt - 1;
  1045. if (ret < 0)
  1046. ret = 0;
  1047. spin_unlock_irqrestore(&info->lock, flags);
  1048. return ret;
  1049. }
  1050. static int rs_chars_in_buffer(struct tty_struct *tty)
  1051. {
  1052. struct esp_struct *info = tty->driver_data;
  1053. if (serial_paranoia_check(info, tty->name, "rs_chars_in_buffer"))
  1054. return 0;
  1055. return info->xmit_cnt;
  1056. }
  1057. static void rs_flush_buffer(struct tty_struct *tty)
  1058. {
  1059. struct esp_struct *info = tty->driver_data;
  1060. unsigned long flags;
  1061. if (serial_paranoia_check(info, tty->name, "rs_flush_buffer"))
  1062. return;
  1063. spin_lock_irqsave(&info->lock, flags);
  1064. info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
  1065. spin_unlock_irqrestore(&info->lock, flags);
  1066. tty_wakeup(tty);
  1067. }
  1068. /*
  1069. * ------------------------------------------------------------
  1070. * rs_throttle()
  1071. *
  1072. * This routine is called by the upper-layer tty layer to signal that
  1073. * incoming characters should be throttled.
  1074. * ------------------------------------------------------------
  1075. */
  1076. static void rs_throttle(struct tty_struct *tty)
  1077. {
  1078. struct esp_struct *info = tty->driver_data;
  1079. unsigned long flags;
  1080. #ifdef SERIAL_DEBUG_THROTTLE
  1081. char buf[64];
  1082. printk("throttle %s: %d....\n", tty_name(tty, buf),
  1083. tty_chars_in_buffer(tty));
  1084. #endif
  1085. if (serial_paranoia_check(info, tty->name, "rs_throttle"))
  1086. return;
  1087. spin_lock_irqsave(&info->lock, flags);
  1088. info->IER &= ~UART_IER_RDI;
  1089. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  1090. serial_out(info, UART_ESI_CMD2, info->IER);
  1091. serial_out(info, UART_ESI_CMD1, ESI_SET_RX_TIMEOUT);
  1092. serial_out(info, UART_ESI_CMD2, 0x00);
  1093. spin_unlock_irqrestore(&info->lock, flags);
  1094. }
  1095. static void rs_unthrottle(struct tty_struct *tty)
  1096. {
  1097. struct esp_struct *info = tty->driver_data;
  1098. unsigned long flags;
  1099. #ifdef SERIAL_DEBUG_THROTTLE
  1100. char buf[64];
  1101. printk(KERN_DEBUG "unthrottle %s: %d....\n", tty_name(tty, buf),
  1102. tty_chars_in_buffer(tty));
  1103. #endif
  1104. if (serial_paranoia_check(info, tty->name, "rs_unthrottle"))
  1105. return;
  1106. spin_lock_irqsave(&info->lock, flags);
  1107. info->IER |= UART_IER_RDI;
  1108. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  1109. serial_out(info, UART_ESI_CMD2, info->IER);
  1110. serial_out(info, UART_ESI_CMD1, ESI_SET_RX_TIMEOUT);
  1111. serial_out(info, UART_ESI_CMD2, info->config.rx_timeout);
  1112. spin_unlock_irqrestore(&info->lock, flags);
  1113. }
  1114. /*
  1115. * ------------------------------------------------------------
  1116. * rs_ioctl() and friends
  1117. * ------------------------------------------------------------
  1118. */
  1119. static int get_serial_info(struct esp_struct *info,
  1120. struct serial_struct __user *retinfo)
  1121. {
  1122. struct serial_struct tmp;
  1123. lock_kernel();
  1124. memset(&tmp, 0, sizeof(tmp));
  1125. tmp.type = PORT_16550A;
  1126. tmp.line = info->line;
  1127. tmp.port = info->port;
  1128. tmp.irq = info->irq;
  1129. tmp.flags = info->flags;
  1130. tmp.xmit_fifo_size = 1024;
  1131. tmp.baud_base = BASE_BAUD;
  1132. tmp.close_delay = info->close_delay;
  1133. tmp.closing_wait = info->closing_wait;
  1134. tmp.custom_divisor = info->custom_divisor;
  1135. tmp.hub6 = 0;
  1136. unlock_kernel();
  1137. if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
  1138. return -EFAULT;
  1139. return 0;
  1140. }
  1141. static int get_esp_config(struct esp_struct *info,
  1142. struct hayes_esp_config __user *retinfo)
  1143. {
  1144. struct hayes_esp_config tmp;
  1145. if (!retinfo)
  1146. return -EFAULT;
  1147. memset(&tmp, 0, sizeof(tmp));
  1148. lock_kernel();
  1149. tmp.rx_timeout = info->config.rx_timeout;
  1150. tmp.rx_trigger = info->config.rx_trigger;
  1151. tmp.tx_trigger = info->config.tx_trigger;
  1152. tmp.flow_off = info->config.flow_off;
  1153. tmp.flow_on = info->config.flow_on;
  1154. tmp.pio_threshold = info->config.pio_threshold;
  1155. tmp.dma_channel = (info->stat_flags & ESP_STAT_NEVER_DMA ? 0 : dma);
  1156. unlock_kernel();
  1157. return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
  1158. }
  1159. static int set_serial_info(struct esp_struct *info,
  1160. struct serial_struct __user *new_info)
  1161. {
  1162. struct serial_struct new_serial;
  1163. struct esp_struct old_info;
  1164. unsigned int change_irq;
  1165. int retval = 0;
  1166. struct esp_struct *current_async;
  1167. if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
  1168. return -EFAULT;
  1169. old_info = *info;
  1170. if ((new_serial.type != PORT_16550A) ||
  1171. (new_serial.hub6) ||
  1172. (info->port != new_serial.port) ||
  1173. (new_serial.baud_base != BASE_BAUD) ||
  1174. (new_serial.irq > 15) ||
  1175. (new_serial.irq < 2) ||
  1176. (new_serial.irq == 6) ||
  1177. (new_serial.irq == 8) ||
  1178. (new_serial.irq == 13))
  1179. return -EINVAL;
  1180. change_irq = new_serial.irq != info->irq;
  1181. if (change_irq && (info->line % 8))
  1182. return -EINVAL;
  1183. if (!capable(CAP_SYS_ADMIN)) {
  1184. if (change_irq ||
  1185. (new_serial.close_delay != info->close_delay) ||
  1186. ((new_serial.flags & ~ASYNC_USR_MASK) !=
  1187. (info->flags & ~ASYNC_USR_MASK)))
  1188. return -EPERM;
  1189. info->flags = ((info->flags & ~ASYNC_USR_MASK) |
  1190. (new_serial.flags & ASYNC_USR_MASK));
  1191. info->custom_divisor = new_serial.custom_divisor;
  1192. } else {
  1193. if (new_serial.irq == 2)
  1194. new_serial.irq = 9;
  1195. if (change_irq) {
  1196. current_async = ports;
  1197. while (current_async) {
  1198. if ((current_async->line >= info->line) &&
  1199. (current_async->line < (info->line + 8))) {
  1200. if (current_async == info) {
  1201. if (current_async->count > 1)
  1202. return -EBUSY;
  1203. } else if (current_async->count)
  1204. return -EBUSY;
  1205. }
  1206. current_async = current_async->next_port;
  1207. }
  1208. }
  1209. /*
  1210. * OK, past this point, all the error checking has been done.
  1211. * At this point, we start making changes.....
  1212. */
  1213. info->flags = ((info->flags & ~ASYNC_FLAGS) |
  1214. (new_serial.flags & ASYNC_FLAGS));
  1215. info->custom_divisor = new_serial.custom_divisor;
  1216. info->close_delay = new_serial.close_delay * HZ/100;
  1217. info->closing_wait = new_serial.closing_wait * HZ/100;
  1218. if (change_irq) {
  1219. /*
  1220. * We need to shutdown the serial port at the old
  1221. * port/irq combination.
  1222. */
  1223. shutdown(info);
  1224. current_async = ports;
  1225. while (current_async) {
  1226. if ((current_async->line >= info->line) &&
  1227. (current_async->line < (info->line + 8)))
  1228. current_async->irq = new_serial.irq;
  1229. current_async = current_async->next_port;
  1230. }
  1231. serial_out(info, UART_ESI_CMD1, ESI_SET_ENH_IRQ);
  1232. if (info->irq == 9)
  1233. serial_out(info, UART_ESI_CMD2, 0x02);
  1234. else
  1235. serial_out(info, UART_ESI_CMD2, info->irq);
  1236. }
  1237. }
  1238. if (info->flags & ASYNC_INITIALIZED) {
  1239. if (((old_info.flags & ASYNC_SPD_MASK) !=
  1240. (info->flags & ASYNC_SPD_MASK)) ||
  1241. (old_info.custom_divisor != info->custom_divisor)) {
  1242. if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
  1243. info->tty->alt_speed = 57600;
  1244. if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
  1245. info->tty->alt_speed = 115200;
  1246. if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
  1247. info->tty->alt_speed = 230400;
  1248. if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
  1249. info->tty->alt_speed = 460800;
  1250. change_speed(info);
  1251. }
  1252. } else
  1253. retval = startup(info);
  1254. return retval;
  1255. }
  1256. static int set_esp_config(struct esp_struct *info,
  1257. struct hayes_esp_config __user *new_info)
  1258. {
  1259. struct hayes_esp_config new_config;
  1260. unsigned int change_dma;
  1261. int retval = 0;
  1262. struct esp_struct *current_async;
  1263. unsigned long flags;
  1264. /* Perhaps a non-sysadmin user should be able to do some of these */
  1265. /* operations. I haven't decided yet. */
  1266. if (!capable(CAP_SYS_ADMIN))
  1267. return -EPERM;
  1268. if (copy_from_user(&new_config, new_info, sizeof(new_config)))
  1269. return -EFAULT;
  1270. if ((new_config.flow_on >= new_config.flow_off) ||
  1271. (new_config.rx_trigger < 1) ||
  1272. (new_config.tx_trigger < 1) ||
  1273. (new_config.flow_off < 1) ||
  1274. (new_config.flow_on < 1) ||
  1275. (new_config.rx_trigger > 1023) ||
  1276. (new_config.tx_trigger > 1023) ||
  1277. (new_config.flow_off > 1023) ||
  1278. (new_config.flow_on > 1023) ||
  1279. (new_config.pio_threshold < 0) ||
  1280. (new_config.pio_threshold > 1024))
  1281. return -EINVAL;
  1282. if ((new_config.dma_channel != 1) && (new_config.dma_channel != 3))
  1283. new_config.dma_channel = 0;
  1284. if (info->stat_flags & ESP_STAT_NEVER_DMA)
  1285. change_dma = new_config.dma_channel;
  1286. else
  1287. change_dma = (new_config.dma_channel != dma);
  1288. if (change_dma) {
  1289. if (new_config.dma_channel) {
  1290. /* PIO mode to DMA mode transition OR */
  1291. /* change current DMA channel */
  1292. current_async = ports;
  1293. while (current_async) {
  1294. if (current_async == info) {
  1295. if (current_async->count > 1)
  1296. return -EBUSY;
  1297. } else if (current_async->count)
  1298. return -EBUSY;
  1299. current_async = current_async->next_port;
  1300. }
  1301. shutdown(info);
  1302. dma = new_config.dma_channel;
  1303. info->stat_flags &= ~ESP_STAT_NEVER_DMA;
  1304. /* all ports must use the same DMA channel */
  1305. spin_lock_irqsave(&info->lock, flags);
  1306. current_async = ports;
  1307. while (current_async) {
  1308. esp_basic_init(current_async);
  1309. current_async = current_async->next_port;
  1310. }
  1311. spin_unlock_irqrestore(&info->lock, flags);
  1312. } else {
  1313. /* DMA mode to PIO mode only */
  1314. if (info->count > 1)
  1315. return -EBUSY;
  1316. shutdown(info);
  1317. spin_lock_irqsave(&info->lock, flags);
  1318. info->stat_flags |= ESP_STAT_NEVER_DMA;
  1319. esp_basic_init(info);
  1320. spin_unlock_irqrestore(&info->lock, flags);
  1321. }
  1322. }
  1323. info->config.pio_threshold = new_config.pio_threshold;
  1324. if ((new_config.flow_off != info->config.flow_off) ||
  1325. (new_config.flow_on != info->config.flow_on)) {
  1326. info->config.flow_off = new_config.flow_off;
  1327. info->config.flow_on = new_config.flow_on;
  1328. spin_lock_irqsave(&info->lock, flags);
  1329. serial_out(info, UART_ESI_CMD1, ESI_SET_FLOW_LVL);
  1330. serial_out(info, UART_ESI_CMD2, new_config.flow_off >> 8);
  1331. serial_out(info, UART_ESI_CMD2, new_config.flow_off);
  1332. serial_out(info, UART_ESI_CMD2, new_config.flow_on >> 8);
  1333. serial_out(info, UART_ESI_CMD2, new_config.flow_on);
  1334. spin_unlock_irqrestore(&info->lock, flags);
  1335. }
  1336. if ((new_config.rx_trigger != info->config.rx_trigger) ||
  1337. (new_config.tx_trigger != info->config.tx_trigger)) {
  1338. info->config.rx_trigger = new_config.rx_trigger;
  1339. info->config.tx_trigger = new_config.tx_trigger;
  1340. spin_lock_irqsave(&info->lock, flags);
  1341. serial_out(info, UART_ESI_CMD1, ESI_SET_TRIGGER);
  1342. serial_out(info, UART_ESI_CMD2,
  1343. new_config.rx_trigger >> 8);
  1344. serial_out(info, UART_ESI_CMD2, new_config.rx_trigger);
  1345. serial_out(info, UART_ESI_CMD2,
  1346. new_config.tx_trigger >> 8);
  1347. serial_out(info, UART_ESI_CMD2, new_config.tx_trigger);
  1348. spin_unlock_irqrestore(&info->lock, flags);
  1349. }
  1350. if (new_config.rx_timeout != info->config.rx_timeout) {
  1351. info->config.rx_timeout = new_config.rx_timeout;
  1352. spin_lock_irqsave(&info->lock, flags);
  1353. if (info->IER & UART_IER_RDI) {
  1354. serial_out(info, UART_ESI_CMD1,
  1355. ESI_SET_RX_TIMEOUT);
  1356. serial_out(info, UART_ESI_CMD2,
  1357. new_config.rx_timeout);
  1358. }
  1359. spin_unlock_irqrestore(&info->lock, flags);
  1360. }
  1361. if (!(info->flags & ASYNC_INITIALIZED))
  1362. retval = startup(info);
  1363. return retval;
  1364. }
  1365. /*
  1366. * get_lsr_info - get line status register info
  1367. *
  1368. * Purpose: Let user call ioctl() to get info when the UART physically
  1369. * is emptied. On bus types like RS485, the transmitter must
  1370. * release the bus after transmitting. This must be done when
  1371. * the transmit shift register is empty, not be done when the
  1372. * transmit holding register is empty. This functionality
  1373. * allows an RS485 driver to be written in user space.
  1374. */
  1375. static int get_lsr_info(struct esp_struct *info, unsigned int __user *value)
  1376. {
  1377. unsigned char status;
  1378. unsigned int result;
  1379. unsigned long flags;
  1380. spin_lock_irqsave(&info->lock, flags);
  1381. serial_out(info, UART_ESI_CMD1, ESI_GET_UART_STAT);
  1382. status = serial_in(info, UART_ESI_STAT1);
  1383. spin_unlock_irqrestore(&info->lock, flags);
  1384. result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
  1385. return put_user(result, value);
  1386. }
  1387. static int esp_tiocmget(struct tty_struct *tty, struct file *file)
  1388. {
  1389. struct esp_struct *info = tty->driver_data;
  1390. unsigned char control, status;
  1391. unsigned long flags;
  1392. if (serial_paranoia_check(info, tty->name, __func__))
  1393. return -ENODEV;
  1394. if (tty->flags & (1 << TTY_IO_ERROR))
  1395. return -EIO;
  1396. control = info->MCR;
  1397. spin_lock_irqsave(&info->lock, flags);
  1398. serial_out(info, UART_ESI_CMD1, ESI_GET_UART_STAT);
  1399. status = serial_in(info, UART_ESI_STAT2);
  1400. spin_unlock_irqrestore(&info->lock, flags);
  1401. return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0)
  1402. | ((control & UART_MCR_DTR) ? TIOCM_DTR : 0)
  1403. | ((status & UART_MSR_DCD) ? TIOCM_CAR : 0)
  1404. | ((status & UART_MSR_RI) ? TIOCM_RNG : 0)
  1405. | ((status & UART_MSR_DSR) ? TIOCM_DSR : 0)
  1406. | ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
  1407. }
  1408. static int esp_tiocmset(struct tty_struct *tty, struct file *file,
  1409. unsigned int set, unsigned int clear)
  1410. {
  1411. struct esp_struct *info = tty->driver_data;
  1412. unsigned long flags;
  1413. if (serial_paranoia_check(info, tty->name, __func__))
  1414. return -ENODEV;
  1415. if (tty->flags & (1 << TTY_IO_ERROR))
  1416. return -EIO;
  1417. spin_lock_irqsave(&info->lock, flags);
  1418. if (set & TIOCM_RTS)
  1419. info->MCR |= UART_MCR_RTS;
  1420. if (set & TIOCM_DTR)
  1421. info->MCR |= UART_MCR_DTR;
  1422. if (clear & TIOCM_RTS)
  1423. info->MCR &= ~UART_MCR_RTS;
  1424. if (clear & TIOCM_DTR)
  1425. info->MCR &= ~UART_MCR_DTR;
  1426. serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
  1427. serial_out(info, UART_ESI_CMD2, UART_MCR);
  1428. serial_out(info, UART_ESI_CMD2, info->MCR);
  1429. spin_unlock_irqrestore(&info->lock, flags);
  1430. return 0;
  1431. }
  1432. /*
  1433. * rs_break() --- routine which turns the break handling on or off
  1434. */
  1435. static void esp_break(struct tty_struct *tty, int break_state)
  1436. {
  1437. struct esp_struct *info = tty->driver_data;
  1438. unsigned long flags;
  1439. if (serial_paranoia_check(info, tty->name, "esp_break"))
  1440. return;
  1441. if (break_state == -1) {
  1442. spin_lock_irqsave(&info->lock, flags);
  1443. serial_out(info, UART_ESI_CMD1, ESI_ISSUE_BREAK);
  1444. serial_out(info, UART_ESI_CMD2, 0x01);
  1445. spin_unlock_irqrestore(&info->lock, flags);
  1446. /* FIXME - new style wait needed here */
  1447. interruptible_sleep_on(&info->break_wait);
  1448. } else {
  1449. spin_lock_irqsave(&info->lock, flags);
  1450. serial_out(info, UART_ESI_CMD1, ESI_ISSUE_BREAK);
  1451. serial_out(info, UART_ESI_CMD2, 0x00);
  1452. spin_unlock_irqrestore(&info->lock, flags);
  1453. }
  1454. }
  1455. static int rs_ioctl(struct tty_struct *tty, struct file *file,
  1456. unsigned int cmd, unsigned long arg)
  1457. {
  1458. struct esp_struct *info = tty->driver_data;
  1459. struct async_icount cprev, cnow; /* kernel counter temps */
  1460. struct serial_icounter_struct __user *p_cuser; /* user space */
  1461. void __user *argp = (void __user *)arg;
  1462. unsigned long flags;
  1463. int ret;
  1464. if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
  1465. return -ENODEV;
  1466. if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
  1467. (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGWILD) &&
  1468. (cmd != TIOCSERSWILD) && (cmd != TIOCSERGSTRUCT) &&
  1469. (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT) &&
  1470. (cmd != TIOCGHAYESESP) && (cmd != TIOCSHAYESESP)) {
  1471. if (tty->flags & (1 << TTY_IO_ERROR))
  1472. return -EIO;
  1473. }
  1474. switch (cmd) {
  1475. case TIOCGSERIAL:
  1476. return get_serial_info(info, argp);
  1477. case TIOCSSERIAL:
  1478. lock_kernel();
  1479. ret = set_serial_info(info, argp);
  1480. unlock_kernel();
  1481. return ret;
  1482. case TIOCSERGWILD:
  1483. return put_user(0L, (unsigned long __user *)argp);
  1484. case TIOCSERGETLSR: /* Get line status register */
  1485. return get_lsr_info(info, argp);
  1486. case TIOCSERSWILD:
  1487. if (!capable(CAP_SYS_ADMIN))
  1488. return -EPERM;
  1489. return 0;
  1490. /*
  1491. * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
  1492. * - mask passed in arg for lines of interest
  1493. * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
  1494. * Caller should use TIOCGICOUNT to see which one it was
  1495. */
  1496. case TIOCMIWAIT:
  1497. spin_lock_irqsave(&info->lock, flags);
  1498. cprev = info->icount; /* note the counters on entry */
  1499. spin_unlock_irqrestore(&info->lock, flags);
  1500. while (1) {
  1501. /* FIXME: convert to new style wakeup */
  1502. interruptible_sleep_on(&info->delta_msr_wait);
  1503. /* see if a signal did it */
  1504. if (signal_pending(current))
  1505. return -ERESTARTSYS;
  1506. spin_lock_irqsave(&info->lock, flags);
  1507. cnow = info->icount; /* atomic copy */
  1508. spin_unlock_irqrestore(&info->lock, flags);
  1509. if (cnow.rng == cprev.rng &&
  1510. cnow.dsr == cprev.dsr &&
  1511. cnow.dcd == cprev.dcd &&
  1512. cnow.cts == cprev.cts)
  1513. return -EIO; /* no change => error */
  1514. if (((arg & TIOCM_RNG) &&
  1515. (cnow.rng != cprev.rng)) ||
  1516. ((arg & TIOCM_DSR) &&
  1517. (cnow.dsr != cprev.dsr)) ||
  1518. ((arg & TIOCM_CD) &&
  1519. (cnow.dcd != cprev.dcd)) ||
  1520. ((arg & TIOCM_CTS) &&
  1521. (cnow.cts != cprev.cts))) {
  1522. return 0;
  1523. }
  1524. cprev = cnow;
  1525. }
  1526. /* NOTREACHED */
  1527. /*
  1528. * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
  1529. * Return: write counters to the user passed counter struct
  1530. * NB: both 1->0 and 0->1 transitions are counted except for
  1531. * RI where only 0->1 is counted.
  1532. */
  1533. case TIOCGICOUNT:
  1534. spin_lock_irqsave(&info->lock, flags);
  1535. cnow = info->icount;
  1536. spin_unlock_irqrestore(&info->lock, flags);
  1537. p_cuser = argp;
  1538. if (put_user(cnow.cts, &p_cuser->cts) ||
  1539. put_user(cnow.dsr, &p_cuser->dsr) ||
  1540. put_user(cnow.rng, &p_cuser->rng) ||
  1541. put_user(cnow.dcd, &p_cuser->dcd))
  1542. return -EFAULT;
  1543. return 0;
  1544. case TIOCGHAYESESP:
  1545. return get_esp_config(info, argp);
  1546. case TIOCSHAYESESP:
  1547. lock_kernel();
  1548. ret = set_esp_config(info, argp);
  1549. unlock_kernel();
  1550. return ret;
  1551. default:
  1552. return -ENOIOCTLCMD;
  1553. }
  1554. return 0;
  1555. }
  1556. static void rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
  1557. {
  1558. struct esp_struct *info = tty->driver_data;
  1559. unsigned long flags;
  1560. change_speed(info);
  1561. spin_lock_irqsave(&info->lock, flags);
  1562. /* Handle transition to B0 status */
  1563. if ((old_termios->c_cflag & CBAUD) &&
  1564. !(tty->termios->c_cflag & CBAUD)) {
  1565. info->MCR &= ~(UART_MCR_DTR|UART_MCR_RTS);
  1566. serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
  1567. serial_out(info, UART_ESI_CMD2, UART_MCR);
  1568. serial_out(info, UART_ESI_CMD2, info->MCR);
  1569. }
  1570. /* Handle transition away from B0 status */
  1571. if (!(old_termios->c_cflag & CBAUD) &&
  1572. (tty->termios->c_cflag & CBAUD)) {
  1573. info->MCR |= (UART_MCR_DTR | UART_MCR_RTS);
  1574. serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
  1575. serial_out(info, UART_ESI_CMD2, UART_MCR);
  1576. serial_out(info, UART_ESI_CMD2, info->MCR);
  1577. }
  1578. spin_unlock_irqrestore(&info->lock, flags);
  1579. /* Handle turning of CRTSCTS */
  1580. if ((old_termios->c_cflag & CRTSCTS) &&
  1581. !(tty->termios->c_cflag & CRTSCTS)) {
  1582. rs_start(tty);
  1583. }
  1584. }
  1585. /*
  1586. * ------------------------------------------------------------
  1587. * rs_close()
  1588. *
  1589. * This routine is called when the serial port gets closed. First, we
  1590. * wait for the last remaining data to be sent. Then, we unlink its
  1591. * async structure from the interrupt chain if necessary, and we free
  1592. * that IRQ if nothing is left in the chain.
  1593. * ------------------------------------------------------------
  1594. */
  1595. static void rs_close(struct tty_struct *tty, struct file *filp)
  1596. {
  1597. struct esp_struct *info = tty->driver_data;
  1598. unsigned long flags;
  1599. if (!info || serial_paranoia_check(info, tty->name, "rs_close"))
  1600. return;
  1601. spin_lock_irqsave(&info->lock, flags);
  1602. if (tty_hung_up_p(filp)) {
  1603. DBG_CNT("before DEC-hung");
  1604. goto out;
  1605. }
  1606. #ifdef SERIAL_DEBUG_OPEN
  1607. printk(KERN_DEBUG "rs_close ttys%d, count = %d\n",
  1608. info->line, info->count);
  1609. #endif
  1610. if (tty->count == 1 && info->count != 1) {
  1611. /*
  1612. * Uh, oh. tty->count is 1, which means that the tty
  1613. * structure will be freed. Info->count should always
  1614. * be one in these conditions. If it's greater than
  1615. * one, we've got real problems, since it means the
  1616. * serial port won't be shutdown.
  1617. */
  1618. printk(KERN_DEBUG "rs_close: bad serial port count; tty->count is 1, info->count is %d\n", info->count);
  1619. info->count = 1;
  1620. }
  1621. if (--info->count < 0) {
  1622. printk(KERN_ERR "rs_close: bad serial port count for ttys%d: %d\n",
  1623. info->line, info->count);
  1624. info->count = 0;
  1625. }
  1626. if (info->count) {
  1627. DBG_CNT("before DEC-2");
  1628. goto out;
  1629. }
  1630. info->flags |= ASYNC_CLOSING;
  1631. spin_unlock_irqrestore(&info->lock, flags);
  1632. /*
  1633. * Now we wait for the transmit buffer to clear; and we notify
  1634. * the line discipline to only process XON/XOFF characters.
  1635. */
  1636. tty->closing = 1;
  1637. if (info->closing_wait != ASYNC_CLOSING_WAIT_NONE)
  1638. tty_wait_until_sent(tty, info->closing_wait);
  1639. /*
  1640. * At this point we stop accepting input. To do this, we
  1641. * disable the receive line status interrupts, and tell the
  1642. * interrupt driver to stop checking the data ready bit in the
  1643. * line status register.
  1644. */
  1645. /* info->IER &= ~UART_IER_RLSI; */
  1646. info->IER &= ~UART_IER_RDI;
  1647. info->read_status_mask &= ~UART_LSR_DR;
  1648. if (info->flags & ASYNC_INITIALIZED) {
  1649. spin_lock_irqsave(&info->lock, flags);
  1650. serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
  1651. serial_out(info, UART_ESI_CMD2, info->IER);
  1652. /* disable receive timeout */
  1653. serial_out(info, UART_ESI_CMD1, ESI_SET_RX_TIMEOUT);
  1654. serial_out(info, UART_ESI_CMD2, 0x00);
  1655. spin_unlock_irqrestore(&info->lock, flags);
  1656. /*
  1657. * Before we drop DTR, make sure the UART transmitter
  1658. * has completely drained; this is especially
  1659. * important if there is a transmit FIFO!
  1660. */
  1661. rs_wait_until_sent(tty, info->timeout);
  1662. }
  1663. shutdown(info);
  1664. rs_flush_buffer(tty);
  1665. tty_ldisc_flush(tty);
  1666. tty->closing = 0;
  1667. info->tty = NULL;
  1668. if (info->blocked_open) {
  1669. if (info->close_delay)
  1670. msleep_interruptible(jiffies_to_msecs(info->close_delay));
  1671. wake_up_interruptible(&info->open_wait);
  1672. }
  1673. info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
  1674. wake_up_interruptible(&info->close_wait);
  1675. return;
  1676. out:
  1677. spin_unlock_irqrestore(&info->lock, flags);
  1678. }
  1679. static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
  1680. {
  1681. struct esp_struct *info = tty->driver_data;
  1682. unsigned long orig_jiffies, char_time;
  1683. unsigned long flags;
  1684. if (serial_paranoia_check(info, tty->name, "rs_wait_until_sent"))
  1685. return;
  1686. orig_jiffies = jiffies;
  1687. char_time = ((info->timeout - HZ / 50) / 1024) / 5;
  1688. if (!char_time)
  1689. char_time = 1;
  1690. spin_lock_irqsave(&info->lock, flags);
  1691. serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
  1692. serial_out(info, UART_ESI_CMD1, ESI_GET_TX_AVAIL);
  1693. while ((serial_in(info, UART_ESI_STAT1) != 0x03) ||
  1694. (serial_in(info, UART_ESI_STAT2) != 0xff)) {
  1695. spin_unlock_irqrestore(&info->lock, flags);
  1696. msleep_interruptible(jiffies_to_msecs(char_time));
  1697. if (signal_pending(current))
  1698. return;
  1699. if (timeout && time_after(jiffies, orig_jiffies + timeout))
  1700. return;
  1701. spin_lock_irqsave(&info->lock, flags);
  1702. serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
  1703. serial_out(info, UART_ESI_CMD1, ESI_GET_TX_AVAIL);
  1704. }
  1705. spin_unlock_irqrestore(&info->lock, flags);
  1706. set_current_state(TASK_RUNNING);
  1707. }
  1708. /*
  1709. * esp_hangup() --- called by tty_hangup() when a hangup is signaled.
  1710. */
  1711. static void esp_hangup(struct tty_struct *tty)
  1712. {
  1713. struct esp_struct *info = tty->driver_data;
  1714. if (serial_paranoia_check(info, tty->name, "esp_hangup"))
  1715. return;
  1716. rs_flush_buffer(tty);
  1717. shutdown(info);
  1718. info->count = 0;
  1719. info->flags &= ~ASYNC_NORMAL_ACTIVE;
  1720. info->tty = NULL;
  1721. wake_up_interruptible(&info->open_wait);
  1722. }
  1723. /*
  1724. * ------------------------------------------------------------
  1725. * esp_open() and friends
  1726. * ------------------------------------------------------------
  1727. */
  1728. static int block_til_ready(struct tty_struct *tty, struct file *filp,
  1729. struct esp_struct *info)
  1730. {
  1731. DECLARE_WAITQUEUE(wait, current);
  1732. int retval;
  1733. int do_clocal = 0;
  1734. unsigned long flags;
  1735. /*
  1736. * If the device is in the middle of being closed, then block
  1737. * until it's done, and then try again.
  1738. */
  1739. if (tty_hung_up_p(filp) ||
  1740. (info->flags & ASYNC_CLOSING)) {
  1741. if (info->flags & ASYNC_CLOSING)
  1742. interruptible_sleep_on(&info->close_wait);
  1743. #ifdef SERIAL_DO_RESTART
  1744. if (info->flags & ASYNC_HUP_NOTIFY)
  1745. return -EAGAIN;
  1746. else
  1747. return -ERESTARTSYS;
  1748. #else
  1749. return -EAGAIN;
  1750. #endif
  1751. }
  1752. /*
  1753. * If non-blocking mode is set, or the port is not enabled,
  1754. * then make the check up front and then exit.
  1755. */
  1756. if ((filp->f_flags & O_NONBLOCK) ||
  1757. (tty->flags & (1 << TTY_IO_ERROR))) {
  1758. info->flags |= ASYNC_NORMAL_ACTIVE;
  1759. return 0;
  1760. }
  1761. if (tty->termios->c_cflag & CLOCAL)
  1762. do_clocal = 1;
  1763. /*
  1764. * Block waiting for the carrier detect and the line to become
  1765. * free (i.e., not in use by the callout). While we are in
  1766. * this loop, info->count is dropped by one, so that
  1767. * rs_close() knows when to free things. We restore it upon
  1768. * exit, either normal or abnormal.
  1769. */
  1770. retval = 0;
  1771. add_wait_queue(&info->open_wait, &wait);
  1772. #ifdef SERIAL_DEBUG_OPEN
  1773. printk(KERN_DEBUG "block_til_ready before block: ttys%d, count = %d\n",
  1774. info->line, info->count);
  1775. #endif
  1776. spin_lock_irqsave(&info->lock, flags);
  1777. if (!tty_hung_up_p(filp))
  1778. info->count--;
  1779. info->blocked_open++;
  1780. while (1) {
  1781. if ((tty->termios->c_cflag & CBAUD)) {
  1782. unsigned int scratch;
  1783. serial_out(info, UART_ESI_CMD1, ESI_READ_UART);
  1784. serial_out(info, UART_ESI_CMD2, UART_MCR);
  1785. scratch = serial_in(info, UART_ESI_STAT1);
  1786. serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
  1787. serial_out(info, UART_ESI_CMD2, UART_MCR);
  1788. serial_out(info, UART_ESI_CMD2,
  1789. scratch | UART_MCR_DTR | UART_MCR_RTS);
  1790. }
  1791. set_current_state(TASK_INTERRUPTIBLE);
  1792. if (tty_hung_up_p(filp) ||
  1793. !(info->flags & ASYNC_INITIALIZED)) {
  1794. #ifdef SERIAL_DO_RESTART
  1795. if (info->flags & ASYNC_HUP_NOTIFY)
  1796. retval = -EAGAIN;
  1797. else
  1798. retval = -ERESTARTSYS;
  1799. #else
  1800. retval = -EAGAIN;
  1801. #endif
  1802. break;
  1803. }
  1804. serial_out(info, UART_ESI_CMD1, ESI_GET_UART_STAT);
  1805. if (serial_in(info, UART_ESI_STAT2) & UART_MSR_DCD)
  1806. do_clocal = 1;
  1807. if (!(info->flags & ASYNC_CLOSING) &&
  1808. (do_clocal))
  1809. break;
  1810. if (signal_pending(current)) {
  1811. retval = -ERESTARTSYS;
  1812. break;
  1813. }
  1814. #ifdef SERIAL_DEBUG_OPEN
  1815. printk(KERN_DEBUG "block_til_ready blocking: ttys%d, count = %d\n",
  1816. info->line, info->count);
  1817. #endif
  1818. spin_unlock_irqrestore(&info->lock, flags);
  1819. schedule();
  1820. spin_lock_irqsave(&info->lock, flags);
  1821. }
  1822. set_current_state(TASK_RUNNING);
  1823. remove_wait_queue(&info->open_wait, &wait);
  1824. if (!tty_hung_up_p(filp))
  1825. info->count++;
  1826. info->blocked_open--;
  1827. spin_unlock_irqrestore(&info->lock, flags);
  1828. #ifdef SERIAL_DEBUG_OPEN
  1829. printk(KERN_DEBUG "block_til_ready after blocking: ttys%d, count = %d\n",
  1830. info->line, info->count);
  1831. #endif
  1832. if (retval)
  1833. return retval;
  1834. info->flags |= ASYNC_NORMAL_ACTIVE;
  1835. return 0;
  1836. }
  1837. /*
  1838. * This routine is called whenever a serial port is opened. It
  1839. * enables interrupts for a serial port, linking in its async structure into
  1840. * the IRQ chain. It also performs the serial-specific
  1841. * initialization for the tty structure.
  1842. */
  1843. static int esp_open(struct tty_struct *tty, struct file *filp)
  1844. {
  1845. struct esp_struct *info;
  1846. int retval, line;
  1847. unsigned long flags;
  1848. line = tty->index;
  1849. if ((line < 0) || (line >= NR_PORTS))
  1850. return -ENODEV;
  1851. /* find the port in the chain */
  1852. info = ports;
  1853. while (info && (info->line != line))
  1854. info = info->next_port;
  1855. if (!info) {
  1856. serial_paranoia_check(info, tty->name, "esp_open");
  1857. return -ENODEV;
  1858. }
  1859. #ifdef SERIAL_DEBUG_OPEN
  1860. printk(KERN_DEBUG "esp_open %s, count = %d\n", tty->name, info->count);
  1861. #endif
  1862. spin_lock_irqsave(&info->lock, flags);
  1863. info->count++;
  1864. tty->driver_data = info;
  1865. info->tty = tty;
  1866. spin_unlock_irqrestore(&info->lock, flags);
  1867. /*
  1868. * Start up serial port
  1869. */
  1870. retval = startup(info);
  1871. if (retval)
  1872. return retval;
  1873. retval = block_til_ready(tty, filp, info);
  1874. if (retval) {
  1875. #ifdef SERIAL_DEBUG_OPEN
  1876. printk(KERN_DEBUG "esp_open returning after block_til_ready with %d\n",
  1877. retval);
  1878. #endif
  1879. return retval;
  1880. }
  1881. #ifdef SERIAL_DEBUG_OPEN
  1882. printk(KERN_DEBUG "esp_open %s successful...", tty->name);
  1883. #endif
  1884. return 0;
  1885. }
  1886. /*
  1887. * ---------------------------------------------------------------------
  1888. * espserial_init() and friends
  1889. *
  1890. * espserial_init() is called at boot-time to initialize the serial driver.
  1891. * ---------------------------------------------------------------------
  1892. */
  1893. /*
  1894. * This routine prints out the appropriate serial driver version
  1895. * number, and identifies which options were configured into this
  1896. * driver.
  1897. */
  1898. static void show_serial_version(void)
  1899. {
  1900. printk(KERN_INFO "%s version %s (DMA %u)\n",
  1901. serial_name, serial_version, dma);
  1902. }
  1903. /*
  1904. * This routine is called by espserial_init() to initialize a specific serial
  1905. * port.
  1906. */
  1907. static int autoconfig(struct esp_struct *info)
  1908. {
  1909. int port_detected = 0;
  1910. unsigned long flags;
  1911. if (!request_region(info->port, REGION_SIZE, "esp serial"))
  1912. return -EIO;
  1913. spin_lock_irqsave(&info->lock, flags);
  1914. /*
  1915. * Check for ESP card
  1916. */
  1917. if (serial_in(info, UART_ESI_BASE) == 0xf3) {
  1918. serial_out(info, UART_ESI_CMD1, 0x00);
  1919. serial_out(info, UART_ESI_CMD1, 0x01);
  1920. if ((serial_in(info, UART_ESI_STAT2) & 0x70) == 0x20) {
  1921. port_detected = 1;
  1922. if (!(info->irq)) {
  1923. serial_out(info, UART_ESI_CMD1, 0x02);
  1924. if (serial_in(info, UART_ESI_STAT1) & 0x01)
  1925. info->irq = 3;
  1926. else
  1927. info->irq = 4;
  1928. }
  1929. /* put card in enhanced mode */
  1930. /* this prevents access through */
  1931. /* the "old" IO ports */
  1932. esp_basic_init(info);
  1933. /* clear out MCR */
  1934. serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
  1935. serial_out(info, UART_ESI_CMD2, UART_MCR);
  1936. serial_out(info, UART_ESI_CMD2, 0x00);
  1937. }
  1938. }
  1939. if (!port_detected)
  1940. release_region(info->port, REGION_SIZE);
  1941. spin_unlock_irqrestore(&info->lock, flags);
  1942. return (port_detected);
  1943. }
  1944. static const struct tty_operations esp_ops = {
  1945. .open = esp_open,
  1946. .close = rs_close,
  1947. .write = rs_write,
  1948. .put_char = rs_put_char,
  1949. .flush_chars = rs_flush_chars,
  1950. .write_room = rs_write_room,
  1951. .chars_in_buffer = rs_chars_in_buffer,
  1952. .flush_buffer = rs_flush_buffer,
  1953. .ioctl = rs_ioctl,
  1954. .throttle = rs_throttle,
  1955. .unthrottle = rs_unthrottle,
  1956. .set_termios = rs_set_termios,
  1957. .stop = rs_stop,
  1958. .start = rs_start,
  1959. .hangup = esp_hangup,
  1960. .break_ctl = esp_break,
  1961. .wait_until_sent = rs_wait_until_sent,
  1962. .tiocmget = esp_tiocmget,
  1963. .tiocmset = esp_tiocmset,
  1964. };
  1965. /*
  1966. * The serial driver boot-time initialization code!
  1967. */
  1968. static int __init espserial_init(void)
  1969. {
  1970. int i, offset;
  1971. struct esp_struct *info;
  1972. struct esp_struct *last_primary = NULL;
  1973. int esp[] = { 0x100, 0x140, 0x180, 0x200, 0x240, 0x280, 0x300, 0x380 };
  1974. esp_driver = alloc_tty_driver(NR_PORTS);
  1975. if (!esp_driver)
  1976. return -ENOMEM;
  1977. for (i = 0; i < NR_PRIMARY; i++) {
  1978. if (irq[i] != 0) {
  1979. if ((irq[i] < 2) || (irq[i] > 15) || (irq[i] == 6) ||
  1980. (irq[i] == 8) || (irq[i] == 13))
  1981. irq[i] = 0;
  1982. else if (irq[i] == 2)
  1983. irq[i] = 9;
  1984. }
  1985. }
  1986. if ((dma != 1) && (dma != 3))
  1987. dma = 0;
  1988. if ((rx_trigger < 1) || (rx_trigger > 1023))
  1989. rx_trigger = 768;
  1990. if ((tx_trigger < 1) || (tx_trigger > 1023))
  1991. tx_trigger = 768;
  1992. if ((flow_off < 1) || (flow_off > 1023))
  1993. flow_off = 1016;
  1994. if ((flow_on < 1) || (flow_on > 1023))
  1995. flow_on = 944;
  1996. if ((rx_timeout < 0) || (rx_timeout > 255))
  1997. rx_timeout = 128;
  1998. if (flow_on >= flow_off)
  1999. flow_on = flow_off - 1;
  2000. show_serial_version();
  2001. /* Initialize the tty_driver structure */
  2002. esp_driver->owner = THIS_MODULE;
  2003. esp_driver->name = "ttyP";
  2004. esp_driver->major = ESP_IN_MAJOR;
  2005. esp_driver->minor_start = 0;
  2006. esp_driver->type = TTY_DRIVER_TYPE_SERIAL;
  2007. esp_driver->subtype = SERIAL_TYPE_NORMAL;
  2008. esp_driver->init_termios = tty_std_termios;
  2009. esp_driver->init_termios.c_cflag =
  2010. B9600 | CS8 | CREAD | HUPCL | CLOCAL;
  2011. esp_driver->init_termios.c_ispeed = 9600;
  2012. esp_driver->init_termios.c_ospeed = 9600;
  2013. esp_driver->flags = TTY_DRIVER_REAL_RAW;
  2014. tty_set_operations(esp_driver, &esp_ops);
  2015. if (tty_register_driver(esp_driver)) {
  2016. printk(KERN_ERR "Couldn't register esp serial driver");
  2017. put_tty_driver(esp_driver);
  2018. return 1;
  2019. }
  2020. info = kzalloc(sizeof(struct esp_struct), GFP_KERNEL);
  2021. if (!info) {
  2022. printk(KERN_ERR "Couldn't allocate memory for esp serial device information\n");
  2023. tty_unregister_driver(esp_driver);
  2024. put_tty_driver(esp_driver);
  2025. return 1;
  2026. }
  2027. spin_lock_init(&info->lock);
  2028. /* rx_trigger, tx_trigger are needed by autoconfig */
  2029. info->config.rx_trigger = rx_trigger;
  2030. info->config.tx_trigger = tx_trigger;
  2031. i = 0;
  2032. offset = 0;
  2033. do {
  2034. info->port = esp[i] + offset;
  2035. info->irq = irq[i];
  2036. info->line = (i * 8) + (offset / 8);
  2037. if (!autoconfig(info)) {
  2038. i++;
  2039. offset = 0;
  2040. continue;
  2041. }
  2042. info->custom_divisor = (divisor[i] >> (offset / 2)) & 0xf;
  2043. info->flags = STD_COM_FLAGS;
  2044. if (info->custom_divisor)
  2045. info->flags |= ASYNC_SPD_CUST;
  2046. info->magic = ESP_MAGIC;
  2047. info->close_delay = 5*HZ/10;
  2048. info->closing_wait = 30*HZ;
  2049. info->config.rx_timeout = rx_timeout;
  2050. info->config.flow_on = flow_on;
  2051. info->config.flow_off = flow_off;
  2052. info->config.pio_threshold = pio_threshold;
  2053. info->next_port = ports;
  2054. init_waitqueue_head(&info->open_wait);
  2055. init_waitqueue_head(&info->close_wait);
  2056. init_waitqueue_head(&info->delta_msr_wait);
  2057. init_waitqueue_head(&info->break_wait);
  2058. ports = info;
  2059. printk(KERN_INFO "ttyP%d at 0x%04x (irq = %d) is an ESP ",
  2060. info->line, info->port, info->irq);
  2061. if (info->line % 8) {
  2062. printk("secondary port\n");
  2063. /* 8 port cards can't do DMA */
  2064. info->stat_flags |= ESP_STAT_NEVER_DMA;
  2065. if (last_primary)
  2066. last_primary->stat_flags |= ESP_STAT_NEVER_DMA;
  2067. } else {
  2068. printk("primary port\n");
  2069. last_primary = info;
  2070. irq[i] = info->irq;
  2071. }
  2072. if (!dma)
  2073. info->stat_flags |= ESP_STAT_NEVER_DMA;
  2074. info = kzalloc(sizeof(struct esp_struct), GFP_KERNEL);
  2075. if (!info) {
  2076. printk(KERN_ERR "Couldn't allocate memory for esp serial device information\n");
  2077. /* allow use of the already detected ports */
  2078. return 0;
  2079. }
  2080. spin_lock_init(&info->lock);
  2081. /* rx_trigger, tx_trigger are needed by autoconfig */
  2082. info->config.rx_trigger = rx_trigger;
  2083. info->config.tx_trigger = tx_trigger;
  2084. if (offset == 56) {
  2085. i++;
  2086. offset = 0;
  2087. } else {
  2088. offset += 8;
  2089. }
  2090. } while (i < NR_PRIMARY);
  2091. /* free the last port memory allocation */
  2092. kfree(info);
  2093. return 0;
  2094. }
  2095. static void __exit espserial_exit(void)
  2096. {
  2097. int e1;
  2098. struct esp_struct *temp_async;
  2099. struct esp_pio_buffer *pio_buf;
  2100. e1 = tty_unregister_driver(esp_driver);
  2101. if (e1)
  2102. printk(KERN_ERR "esp: failed to unregister driver (%d)\n", e1);
  2103. put_tty_driver(esp_driver);
  2104. while (ports) {
  2105. if (ports->port)
  2106. release_region(ports->port, REGION_SIZE);
  2107. temp_async = ports->next_port;
  2108. kfree(ports);
  2109. ports = temp_async;
  2110. }
  2111. if (dma_buffer)
  2112. free_pages((unsigned long)dma_buffer,
  2113. get_order(DMA_BUFFER_SZ));
  2114. while (free_pio_buf) {
  2115. pio_buf = free_pio_buf->next;
  2116. kfree(free_pio_buf);
  2117. free_pio_buf = pio_buf;
  2118. }
  2119. }
  2120. module_init(espserial_init);
  2121. module_exit(espserial_exit);