pcxx.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:57k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/char/pcxx.c
  3.  * 
  4.  *  Written by Troy De Jongh, November, 1994
  5.  *
  6.  *  Copyright (C) 1994,1995 Troy De Jongh
  7.  *  This software may be used and distributed according to the terms 
  8.  *  of the GNU General Public License.
  9.  *
  10.  *  This driver is for the DigiBoard PC/Xe and PC/Xi line of products.
  11.  *
  12.  *  This driver does NOT support DigiBoard's fastcook FEP option and
  13.  *  does not support the transparent print (i.e. digiprint) option.
  14.  *
  15.  * This Driver is currently maintained by Christoph Lameter (christoph@lameter.com)
  16.  *
  17.  * Please contact digi for support issues at digilnux@dgii.com.
  18.  * Some more information can be found at
  19.  * http://lameter.com/digi.
  20.  *
  21.  *  1.5.2 Fall 1995 Bug fixes by David Nugent
  22.  *  1.5.3 March 9, 1996 Christoph Lameter: Fixed 115.2K Support. Memory
  23.  * allocation harmonized with 1.3.X Series.
  24.  *  1.5.4 March 30, 1996 Christoph Lameter: Fixup for 1.3.81. Use init_bh
  25.  * instead of direct assignment to kernel arrays.
  26.  *  1.5.5 April 5, 1996 Major device numbers corrected.
  27.  *              Mike McLagan<mike.mclagan@linux.org>: Add setup
  28.  *              variable handling, instead of using the old pcxxconfig.h
  29.  *  1.5.6 April 16, 1996 Christoph Lameter: Pointer cleanup, macro cleanup.
  30.  * Call out devices changed to /dev/cudxx.
  31.  *  1.5.7 July 22, 1996 Martin Mares: CLOCAL fix, pcxe_table clearing.
  32.  * David Nugent: Bug in pcxe_open.
  33.  * Brian J. Murrell: Modem Control fixes, Majors correctly assigned
  34.  *  1.6.1 April 6, 1997 Bernhard Kaindl: fixed virtual memory access for 2.1
  35.  *              i386-kernels and use on other archtitectures, Allowing use
  36.  *              as module, added module parameters, added switch to enable
  37.  *              verbose messages to assist user during card configuration.
  38.  *              Currently only tested on a PC/Xi card, but should work on Xe
  39.  *              and Xeve also.
  40.  *  1.6.2 August, 7, 2000: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  41.  *   get rid of panics, release previously allocated resources
  42.  *  1.6.3 August, 23, 2000: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  43.  *   cleaned up wrt verify_area.
  44.  *              Christoph Lameter: Update documentation, email addresses
  45.  *              and URLs. Remove some obsolete code.
  46.  *
  47.  */
  48. #include <linux/module.h>
  49. #include <linux/mm.h>
  50. #include <linux/ioport.h>
  51. #include <linux/errno.h>
  52. #include <linux/signal.h>
  53. #include <linux/sched.h>
  54. #include <linux/timer.h>
  55. #include <linux/interrupt.h>
  56. #include <linux/tty.h>
  57. #include <linux/tty_flip.h>
  58. #include <linux/major.h>
  59. #include <linux/string.h>
  60. #include <linux/fcntl.h>
  61. #include <linux/ptrace.h>
  62. #include <linux/delay.h>
  63. #include <linux/serial.h>
  64. #include <linux/tty_driver.h>
  65. #include <linux/slab.h>
  66. #include <linux/init.h>
  67. #include <linux/version.h>
  68. #ifndef MODULE
  69. #include <linux/ctype.h> /* We only need it for parsing the "digi="-line */
  70. #endif
  71. #include <asm/system.h>
  72. #include <asm/io.h>
  73. #include <asm/uaccess.h>
  74. #include <asm/bitops.h>
  75. #include <asm/semaphore.h>
  76. #define VERSION  "1.6.3"
  77. #include "digi.h"
  78. #include "fep.h"
  79. #include "pcxx.h"
  80. #include "digi_fep.h"
  81. #include "digi_bios.h"
  82. /*
  83.  * Define one default setting if no digi= config line is used.
  84.  * Default is altpin = disabled, 16 ports, I/O 200h, Memory 0D0000h
  85.  */
  86. static struct board_info boards[MAX_DIGI_BOARDS] = { {
  87. /* Board is enabled       */ ENABLED,
  88. /* Type is auto-detected  */ 0,
  89. /* altping is disabled    */    DISABLED,
  90. /* number of ports = 16   */ 16,
  91. /* io address is 0x200    */ 0x200,
  92. /* card memory at 0xd0000 */ 0xd0000,
  93. /* first minor device no. */ 0
  94. } };
  95.  
  96. static int verbose = 0;
  97. static int debug   = 0;
  98. #ifdef MODULE
  99. /* Variables for insmod */
  100. static int io[]           = {0, 0, 0, 0};
  101. static int membase[]      = {0, 0, 0, 0};
  102. static int memsize[]      = {0, 0, 0, 0};
  103. static int altpin[]       = {0, 0, 0, 0};
  104. static int numports[]     = {0, 0, 0, 0};
  105. # if (LINUX_VERSION_CODE > 0x020111)
  106. MODULE_AUTHOR("Bernhard Kaindl");
  107. MODULE_DESCRIPTION("Digiboard PC/X{i,e,eve} driver");
  108. MODULE_LICENSE("GPL");
  109. MODULE_PARM(verbose,     "i");
  110. MODULE_PARM(debug,       "i");
  111. MODULE_PARM(io,          "1-4i");
  112. MODULE_PARM(membase,     "1-4i");
  113. MODULE_PARM(memsize,     "1-4i");
  114. MODULE_PARM(altpin,      "1-4i");
  115. MODULE_PARM(numports,    "1-4i");
  116. # endif
  117. #endif MODULE
  118. static int numcards = 1;
  119. static int nbdevs = 0;
  120.  
  121. static struct channel    *digi_channels;
  122. static struct tty_struct **pcxe_table;
  123. static struct termios    **pcxe_termios;
  124. static struct termios    **pcxe_termios_locked;
  125.  
  126. int pcxx_ncook=sizeof(pcxx_cook);
  127. int pcxx_nbios=sizeof(pcxx_bios);
  128. #define MIN(a,b) ((a) < (b) ? (a) : (b))
  129. #define pcxxassert(x, msg)  if(!(x)) pcxx_error(__LINE__, msg)
  130. #define FEPTIMEOUT 200000  
  131. #define SERIAL_TYPE_NORMAL 1
  132. #define SERIAL_TYPE_CALLOUT 2
  133. #define PCXE_EVENT_HANGUP   1
  134. struct tty_driver pcxe_driver;
  135. struct tty_driver pcxe_callout;
  136. static int pcxe_refcount;
  137. static struct timer_list pcxx_timer;
  138. DECLARE_TASK_QUEUE(tq_pcxx);
  139. static void pcxxpoll(unsigned long dummy);
  140. static void fepcmd(struct channel *, int, int, int, int, int);
  141. static void pcxe_put_char(struct tty_struct *, unsigned char);
  142. static void pcxe_flush_chars(struct tty_struct *);
  143. static void pcxx_error(int, char *);
  144. static void pcxe_close(struct tty_struct *, struct file *);
  145. static int pcxe_ioctl(struct tty_struct *, struct file *, unsigned int, unsigned long);
  146. static void pcxe_set_termios(struct tty_struct *, struct termios *);
  147. static int pcxe_write(struct tty_struct *, int, const unsigned char *, int);
  148. static int pcxe_write_room(struct tty_struct *);
  149. static int pcxe_chars_in_buffer(struct tty_struct *);
  150. static void pcxe_flush_buffer(struct tty_struct *);
  151. static void doevent(int);
  152. static void receive_data(struct channel *);
  153. static void pcxxparam(struct tty_struct *, struct channel *ch);
  154. static void do_softint(void *);
  155. static inline void pcxe_sched_event(struct channel *, int);
  156. static void do_pcxe_bh(void);
  157. static void pcxe_start(struct tty_struct *);
  158. static void pcxe_stop(struct tty_struct *);
  159. static void pcxe_throttle(struct tty_struct *);
  160. static void pcxe_unthrottle(struct tty_struct *);
  161. static void digi_send_break(struct channel *ch, int msec);
  162. static void shutdown(struct channel *);
  163. static void setup_empty_event(struct tty_struct *tty, struct channel *ch);
  164. static inline void memwinon(struct board_info *b, unsigned int win);
  165. static inline void memwinoff(struct board_info *b, unsigned int win);
  166. static inline void globalwinon(struct channel *ch);
  167. static inline void rxwinon(struct channel *ch);
  168. static inline void txwinon(struct channel *ch);
  169. static inline void memoff(struct channel *ch);
  170. static inline void assertgwinon(struct channel *ch);
  171. static inline void assertmemoff(struct channel *ch);
  172. #define TZ_BUFSZ 4096
  173. /* function definitions */
  174. /*****************************************************************************/
  175. static void cleanup_board_resources(void)
  176. {
  177. int crd, i;
  178. struct board_info *bd;
  179. struct channel *ch;
  180.         for(crd = 0; crd < numcards; crd++) {
  181.                 bd = &boards[crd];
  182. ch = digi_channels + bd->first_minor;
  183. if (bd->region)
  184. release_region(bd->port, 4);
  185. for(i = 0; i < bd->numports; i++, ch++)
  186. if (ch->tmp_buf)
  187. kfree(ch->tmp_buf);
  188. }
  189. }
  190. /*****************************************************************************/
  191. #ifdef MODULE
  192. /*
  193.  * pcxe_init() is our init_module():
  194.  */
  195. #define pcxe_init init_module
  196. void cleanup_module(void);
  197. /*****************************************************************************/
  198. void cleanup_module()
  199. {
  200. unsigned long flags;
  201. int e1, e2;
  202. printk(KERN_NOTICE "Unloading PC/Xx version %sn", VERSION);
  203. save_flags(flags);
  204. cli();
  205. del_timer_sync(&pcxx_timer);
  206. remove_bh(DIGI_BH);
  207. if ((e1 = tty_unregister_driver(&pcxe_driver)))
  208. printk("SERIAL: failed to unregister serial driver (%d)n", e1);
  209. if ((e2 = tty_unregister_driver(&pcxe_callout)))
  210. printk("SERIAL: failed to unregister callout driver (%d)n",e2);
  211. cleanup_board_resources();
  212. kfree(digi_channels);
  213. kfree(pcxe_termios_locked);
  214. kfree(pcxe_termios);
  215. kfree(pcxe_table);
  216. restore_flags(flags);
  217. }
  218. #endif
  219. static inline struct channel *chan(register struct tty_struct *tty)
  220. {
  221. if (tty) {
  222. register struct channel *ch=(struct channel *)tty->driver_data;
  223. if (ch >= digi_channels && ch < digi_channels+nbdevs) {
  224. if (ch->magic==PCXX_MAGIC)
  225. return ch;
  226. }
  227. }
  228. return NULL;
  229. }
  230. /* These inline routines are to turn board memory on and off */
  231. static inline void memwinon(struct board_info *b, unsigned int win)
  232. {
  233. if(b->type == PCXEVE)
  234. outb_p(FEPWIN|win, b->port+1);
  235. else
  236. outb_p(inb(b->port)|FEPMEM, b->port);
  237. }
  238. static inline void memwinoff(struct board_info *b, unsigned int win)
  239. {
  240. outb_p(inb(b->port)&~FEPMEM, b->port);
  241. if(b->type == PCXEVE)
  242. outb_p(0, b->port + 1);
  243. }
  244. static inline void globalwinon(struct channel *ch)
  245. {
  246. if(ch->board->type == PCXEVE)
  247. outb_p(FEPWIN, ch->board->port+1);
  248. else
  249. outb_p(FEPMEM, ch->board->port);
  250. }
  251. static inline void rxwinon(struct channel *ch)
  252. {
  253. if(ch->rxwin == 0)
  254. outb_p(FEPMEM, ch->board->port);
  255. else 
  256. outb_p(ch->rxwin, ch->board->port+1);
  257. }
  258. static inline void txwinon(struct channel *ch)
  259. {
  260. if(ch->txwin == 0)
  261. outb_p(FEPMEM, ch->board->port);
  262. else
  263. outb_p(ch->txwin, ch->board->port+1);
  264. }
  265. static inline void memoff(struct channel *ch)
  266. {
  267. outb_p(0, ch->board->port);
  268. if(ch->board->type == PCXEVE)
  269. outb_p(0, ch->board->port+1);
  270. }
  271. static inline void assertgwinon(struct channel *ch)
  272. {
  273. if(ch->board->type != PCXEVE)
  274. pcxxassert(inb(ch->board->port) & FEPMEM, "Global memory off");
  275. }
  276. static inline void assertmemoff(struct channel *ch)
  277. {
  278. if(ch->board->type != PCXEVE)
  279. pcxxassert(!(inb(ch->board->port) & FEPMEM), "Memory on");
  280. }
  281. static inline void pcxe_sched_event(struct channel *info, int event)
  282. {
  283. info->event |= 1 << event;
  284. queue_task(&info->tqueue, &tq_pcxx);
  285. mark_bh(DIGI_BH);
  286. }
  287. static void pcxx_error(int line, char *msg)
  288. {
  289. printk("pcxx_error (DigiBoard): line=%d %sn", line, msg);
  290. }
  291. static int pcxx_waitcarrier(struct tty_struct *tty,struct file *filp,struct channel *info)
  292. {
  293. DECLARE_WAITQUEUE(wait, current);
  294. int retval = 0;
  295. int do_clocal = 0;
  296. if (info->asyncflags & ASYNC_CALLOUT_ACTIVE) {
  297. if (info->normal_termios.c_cflag & CLOCAL)
  298. do_clocal = 1;
  299. } else {
  300. if (tty->termios->c_cflag & CLOCAL)
  301. do_clocal = 1;
  302. }
  303. /*
  304.  * Block waiting for the carrier detect and the line to become free
  305.  */
  306. retval = 0;
  307. add_wait_queue(&info->open_wait, &wait);
  308. info->count--;
  309. info->blocked_open++;
  310. for (;;) {
  311. cli();
  312. if ((info->asyncflags & ASYNC_CALLOUT_ACTIVE) == 0) {
  313. globalwinon(info);
  314. info->omodem |= DTR|RTS;
  315. fepcmd(info, SETMODEM, DTR|RTS, 0, 10, 1);
  316. memoff(info);
  317. }
  318. sti();
  319. set_current_state(TASK_INTERRUPTIBLE);
  320. if(tty_hung_up_p(filp) || (info->asyncflags & ASYNC_INITIALIZED) == 0) {
  321. if(info->asyncflags & ASYNC_HUP_NOTIFY)
  322. retval = -EAGAIN;
  323. else
  324. retval = -ERESTARTSYS;
  325. break;
  326. }
  327. if ((info->asyncflags & ASYNC_CALLOUT_ACTIVE) == 0 &&
  328.     (info->asyncflags & ASYNC_CLOSING) == 0 &&
  329. (do_clocal || (info->imodem & info->dcd)))
  330. break;
  331. if(signal_pending(current)) {
  332. retval = -ERESTARTSYS;
  333. break;
  334. }
  335. schedule();
  336. }
  337. current->state = TASK_RUNNING;
  338. remove_wait_queue(&info->open_wait, &wait);
  339. if(!tty_hung_up_p(filp))
  340. info->count++;
  341. info->blocked_open--;
  342. return retval;
  343. }
  344. int pcxe_open(struct tty_struct *tty, struct file * filp)
  345. {
  346. volatile struct board_chan *bc;
  347. struct channel *ch;
  348. unsigned long flags;
  349. int line;
  350. int boardnum;
  351. int retval;
  352. line = MINOR(tty->device) - tty->driver.minor_start;
  353. if(line < 0 || line >= nbdevs) {
  354. printk("line out of range in pcxe_openn");
  355. tty->driver_data = NULL;
  356. return(-ENODEV);
  357. }
  358. for(boardnum=0;boardnum<numcards;boardnum++)
  359. if ((line >= boards[boardnum].first_minor) && 
  360. (line < boards[boardnum].first_minor + boards[boardnum].numports))
  361. break;
  362. if(boardnum >= numcards || boards[boardnum].status == DISABLED ||
  363. (line - boards[boardnum].first_minor) >= boards[boardnum].numports) {
  364. tty->driver_data = NULL;   /* Mark this device as 'down' */
  365. return(-ENODEV);
  366. }
  367. ch = digi_channels+line;
  368. if(ch->brdchan == 0) {
  369. tty->driver_data = NULL;
  370. return(-ENODEV);
  371. }
  372. /* flag the kernel that there is somebody using this guy */
  373. MOD_INC_USE_COUNT;
  374. /*
  375.  * If the device is in the middle of being closed, then block
  376.  * until it's done, and then try again.
  377.  */
  378. if(ch->asyncflags & ASYNC_CLOSING) {
  379. interruptible_sleep_on(&ch->close_wait);
  380. if(ch->asyncflags & ASYNC_HUP_NOTIFY)
  381. return -EAGAIN;
  382. else
  383. return -ERESTARTSYS;
  384. }
  385. save_flags(flags);
  386. cli();
  387. ch->count++;
  388. tty->driver_data = ch;
  389. ch->tty = tty;
  390. if ((ch->asyncflags & ASYNC_INITIALIZED) == 0) {
  391. unsigned int head;
  392. globalwinon(ch);
  393. ch->statusflags = 0;
  394. bc=ch->brdchan;
  395. ch->imodem = bc->mstat;
  396. head = bc->rin;
  397. bc->rout = head;
  398. ch->tty = tty;
  399. pcxxparam(tty,ch);
  400. ch->imodem = bc->mstat;
  401. bc->idata = 1;
  402. ch->omodem = DTR|RTS;
  403. fepcmd(ch, SETMODEM, DTR|RTS, 0, 10, 1);
  404. memoff(ch);
  405. ch->asyncflags |= ASYNC_INITIALIZED;
  406. }
  407. restore_flags(flags);
  408. if(ch->asyncflags & ASYNC_CLOSING) {
  409. interruptible_sleep_on(&ch->close_wait);
  410. if(ch->asyncflags & ASYNC_HUP_NOTIFY)
  411. return -EAGAIN;
  412. else
  413. return -ERESTARTSYS;
  414. }
  415. /*
  416.  * If this is a callout device, then just make sure the normal
  417.  * device isn't being used.
  418.  */
  419. if (tty->driver.subtype == SERIAL_TYPE_CALLOUT) {
  420. if (ch->asyncflags & ASYNC_NORMAL_ACTIVE)
  421. return -EBUSY;
  422. if (ch->asyncflags & ASYNC_CALLOUT_ACTIVE) {
  423. if ((ch->asyncflags & ASYNC_SESSION_LOCKOUT) &&
  424.      (ch->session != current->session))
  425.     return -EBUSY;
  426. if((ch->asyncflags & ASYNC_PGRP_LOCKOUT) &&
  427.     (ch->pgrp != current->pgrp))
  428.     return -EBUSY;
  429. }
  430. ch->asyncflags |= ASYNC_CALLOUT_ACTIVE;
  431. }
  432. else {
  433. if (filp->f_flags & O_NONBLOCK) {
  434. if(ch->asyncflags & ASYNC_CALLOUT_ACTIVE)
  435. return -EBUSY;
  436. }
  437. else {
  438. /* this has to be set in order for the "block until
  439.  * CD" code to work correctly.  i'm not sure under
  440.  * what circumstances asyncflags should be set to
  441.  * ASYNC_NORMAL_ACTIVE though
  442.  * brian@ilinx.com
  443.  */
  444. ch->asyncflags |= ASYNC_NORMAL_ACTIVE;
  445. if ((retval = pcxx_waitcarrier(tty, filp, ch)) != 0)
  446. return retval;
  447. }
  448. ch->asyncflags |= ASYNC_NORMAL_ACTIVE;
  449. }
  450.  
  451. save_flags(flags);
  452. cli();
  453. if((ch->count == 1) && (ch->asyncflags & ASYNC_SPLIT_TERMIOS)) {
  454. if(tty->driver.subtype == SERIAL_TYPE_NORMAL)
  455. *tty->termios = ch->normal_termios;
  456. else 
  457. *tty->termios = ch->callout_termios;
  458. globalwinon(ch);
  459. pcxxparam(tty,ch);
  460. memoff(ch);
  461. }
  462. ch->session = current->session;
  463. ch->pgrp = current->pgrp;
  464. restore_flags(flags);
  465. return 0;
  466. static void shutdown(struct channel *info)
  467. {
  468. unsigned long flags;
  469. volatile struct board_chan *bc;
  470. struct tty_struct *tty;
  471. if (!(info->asyncflags & ASYNC_INITIALIZED)) 
  472. return;
  473. save_flags(flags);
  474. cli();
  475. globalwinon(info);
  476. bc = info->brdchan;
  477. if(bc)
  478. bc->idata = 0;
  479. tty = info->tty;
  480. /*
  481.  * If we're a modem control device and HUPCL is on, drop RTS & DTR.
  482.  */
  483. if(tty->termios->c_cflag & HUPCL) {
  484. info->omodem &= ~(RTS|DTR);
  485. fepcmd(info, SETMODEM, 0, DTR|RTS, 10, 1);
  486. }
  487. memoff(info);
  488. info->asyncflags &= ~ASYNC_INITIALIZED;
  489. restore_flags(flags);
  490. }
  491. static void pcxe_close(struct tty_struct * tty, struct file * filp)
  492. {
  493. struct channel *info;
  494. if ((info=chan(tty))!=NULL) {
  495. unsigned long flags;
  496. save_flags(flags);
  497. cli();
  498. if(tty_hung_up_p(filp)) {
  499. /* flag that somebody is done with this module */
  500. MOD_DEC_USE_COUNT;
  501. restore_flags(flags);
  502. return;
  503. }
  504. /* this check is in serial.c, it won't hurt to do it here too */
  505. if ((tty->count == 1) && (info->count != 1)) {
  506. /*
  507.  * Uh, oh.  tty->count is 1, which means that the tty
  508.  * structure will be freed.  Info->count should always
  509.  * be one in these conditions.  If it's greater than
  510.  * one, we've got real problems, since it means the
  511.  * serial port won't be shutdown.
  512.  */
  513. printk("pcxe_close: bad serial port count; tty->count is 1, info->count is %dn", info->count);
  514. info->count = 1;
  515. }
  516. if (info->count-- > 1) {
  517. restore_flags(flags);
  518. MOD_DEC_USE_COUNT;
  519. return;
  520. }
  521. if (info->count < 0) {
  522. info->count = 0;
  523. }
  524. info->asyncflags |= ASYNC_CLOSING;
  525. /*
  526. * Save the termios structure, since this port may have
  527. * separate termios for callout and dialin.
  528. */
  529. if(info->asyncflags & ASYNC_NORMAL_ACTIVE)
  530. info->normal_termios = *tty->termios;
  531. if(info->asyncflags & ASYNC_CALLOUT_ACTIVE)
  532. info->callout_termios = *tty->termios;
  533. tty->closing = 1;
  534. if(info->asyncflags & ASYNC_INITIALIZED) {
  535. setup_empty_event(tty,info);
  536. tty_wait_until_sent(tty, 3000); /* 30 seconds timeout */
  537. }
  538. if(tty->driver.flush_buffer)
  539. tty->driver.flush_buffer(tty);
  540. if(tty->ldisc.flush_buffer)
  541. tty->ldisc.flush_buffer(tty);
  542. shutdown(info);
  543. tty->closing = 0;
  544. info->event = 0;
  545. info->tty = NULL;
  546. #ifndef MODULE
  547. /* ldiscs[] is not available in a MODULE
  548. ** worth noting that while I'm not sure what this hunk of code is supposed
  549. ** to do, it is not present in the serial.c driver.  Hmmm.  If you know,
  550. ** please send me a note.  brian@ilinx.com
  551. ** Don't know either what this is supposed to do christoph@lameter.com.
  552. */
  553. if(tty->ldisc.num != ldiscs[N_TTY].num) {
  554. if(tty->ldisc.close)
  555. (tty->ldisc.close)(tty);
  556. tty->ldisc = ldiscs[N_TTY];
  557. tty->termios->c_line = N_TTY;
  558. if(tty->ldisc.open)
  559. (tty->ldisc.open)(tty);
  560. }
  561. #endif
  562. if(info->blocked_open) {
  563. if(info->close_delay) {
  564. current->state = TASK_INTERRUPTIBLE;
  565. schedule_timeout(info->close_delay);
  566. }
  567. wake_up_interruptible(&info->open_wait);
  568. }
  569. info->asyncflags &= ~(ASYNC_NORMAL_ACTIVE|
  570.   ASYNC_CALLOUT_ACTIVE|ASYNC_CLOSING);
  571. wake_up_interruptible(&info->close_wait);
  572. MOD_DEC_USE_COUNT;
  573. restore_flags(flags);
  574. }
  575. }
  576. void pcxe_hangup(struct tty_struct *tty)
  577. {
  578. struct channel *ch;
  579. if ((ch=chan(tty))!=NULL) {
  580. unsigned long flags;
  581. save_flags(flags);
  582. cli();
  583. shutdown(ch);
  584. ch->event = 0;
  585. ch->count = 0;
  586. ch->tty = NULL;
  587. ch->asyncflags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CALLOUT_ACTIVE);
  588. wake_up_interruptible(&ch->open_wait);
  589. restore_flags(flags);
  590. }
  591. }
  592. static int pcxe_write(struct tty_struct * tty, int from_user, const unsigned char *buf, int count)
  593. {
  594. struct channel *ch;
  595. volatile struct board_chan *bc;
  596. int total, remain, size, stlen;
  597. unsigned int head, tail;
  598. unsigned long flags;
  599. /* printk("Entering pcxe_write()n"); */
  600. if ((ch=chan(tty))==NULL)
  601. return 0;
  602. bc = ch->brdchan;
  603. size = ch->txbufsize;
  604. if (from_user) {
  605. down(&ch->tmp_buf_sem);
  606. save_flags(flags);
  607. cli();
  608. globalwinon(ch);
  609. head = bc->tin & (size - 1);
  610. /* It seems to be necessary to make sure that the value is stable here somehow
  611.    This is a rather odd pice of code here. */
  612. do
  613. {
  614. tail = bc->tout;
  615. } while (tail != bc->tout);
  616. tail &= (size - 1);
  617. stlen = (head >= tail) ? (size - (head - tail) - 1) : (tail - head - 1);
  618. count = MIN(stlen, count);
  619. memoff(ch);
  620. restore_flags(flags);
  621. if (count)
  622. if (copy_from_user(ch->tmp_buf, buf, count))
  623. count = 0;
  624. buf = ch->tmp_buf;
  625. }
  626. /*
  627.  * All data is now local
  628.  */
  629. total = 0;
  630. save_flags(flags);
  631. cli();
  632. globalwinon(ch);
  633. head = bc->tin & (size - 1);
  634. tail = bc->tout;
  635. if (tail != bc->tout)
  636. tail = bc->tout;
  637. tail &= (size - 1);
  638. if (head >= tail) {
  639. remain = size - (head - tail) - 1;
  640. stlen = size - head;
  641. }
  642. else {
  643. remain = tail - head - 1;
  644. stlen = remain;
  645. }
  646. count = MIN(remain, count);
  647. txwinon(ch);
  648. while (count > 0) {
  649. stlen = MIN(count, stlen);
  650. memcpy(ch->txptr + head, buf, stlen);
  651. buf += stlen;
  652. count -= stlen;
  653. total += stlen;
  654. head += stlen;
  655. if (head >= size) {
  656. head = 0;
  657. stlen = tail;
  658. }
  659. }
  660. ch->statusflags |= TXBUSY;
  661. globalwinon(ch);
  662. bc->tin = head;
  663. if ((ch->statusflags & LOWWAIT) == 0) {
  664. ch->statusflags |= LOWWAIT;
  665. bc->ilow = 1;
  666. }
  667. memoff(ch);
  668. restore_flags(flags);
  669. if(from_user)
  670. up(&ch->tmp_buf_sem);
  671. return(total);
  672. }
  673. static void pcxe_put_char(struct tty_struct *tty, unsigned char c)
  674. {
  675. pcxe_write(tty, 0, &c, 1);
  676. return;
  677. }
  678. static int pcxe_write_room(struct tty_struct *tty)
  679. {
  680. struct channel *ch;
  681. int remain;
  682. remain = 0;
  683. if ((ch=chan(tty))!=NULL) {
  684. volatile struct board_chan *bc;
  685. unsigned int head, tail;
  686. unsigned long flags;
  687. save_flags(flags);
  688. cli();
  689. globalwinon(ch);
  690. bc = ch->brdchan;
  691. head = bc->tin & (ch->txbufsize - 1);
  692. tail = bc->tout;
  693. if (tail != bc->tout)
  694. tail = bc->tout;
  695. tail &= (ch->txbufsize - 1);
  696. if((remain = tail - head - 1) < 0 )
  697. remain += ch->txbufsize;
  698. if (remain && (ch->statusflags & LOWWAIT) == 0) {
  699. ch->statusflags |= LOWWAIT;
  700. bc->ilow = 1;
  701. }
  702. memoff(ch);
  703. restore_flags(flags);
  704. }
  705. return remain;
  706. }
  707. static int pcxe_chars_in_buffer(struct tty_struct *tty)
  708. {
  709. int chars;
  710. unsigned int ctail, head, tail;
  711. int remain;
  712. unsigned long flags;
  713. struct channel *ch;
  714. volatile struct board_chan *bc;
  715. if ((ch=chan(tty))==NULL)
  716. return(0);
  717. save_flags(flags);
  718. cli();
  719. globalwinon(ch);
  720. bc = ch->brdchan;
  721. tail = bc->tout;
  722. head = bc->tin;
  723. ctail = ch->mailbox->cout;
  724. if(tail == head && ch->mailbox->cin == ctail && bc->tbusy == 0)
  725. chars = 0;
  726. else {
  727. head = bc->tin & (ch->txbufsize - 1);
  728. tail &= (ch->txbufsize - 1);
  729. if((remain = tail - head - 1) < 0 )
  730. remain += ch->txbufsize;
  731. chars = (int)(ch->txbufsize - remain);
  732. /* 
  733.  * Make it possible to wakeup anything waiting for output
  734.  * in tty_ioctl.c, etc.
  735.  */
  736. if(!(ch->statusflags & EMPTYWAIT))
  737. setup_empty_event(tty,ch);
  738. }
  739. memoff(ch);
  740. restore_flags(flags);
  741. return(chars);
  742. }
  743. static void pcxe_flush_buffer(struct tty_struct *tty)
  744. {
  745. unsigned int tail;
  746. volatile struct board_chan *bc;
  747. struct channel *ch;
  748. unsigned long flags;
  749. if ((ch=chan(tty))==NULL)
  750. return;
  751. save_flags(flags);
  752. cli();
  753. globalwinon(ch);
  754. bc = ch->brdchan;
  755. tail = bc->tout;
  756. fepcmd(ch, STOUT, (unsigned) tail, 0, 0, 0);
  757. memoff(ch);
  758. restore_flags(flags);
  759. wake_up_interruptible(&tty->write_wait);
  760. if((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) && tty->ldisc.write_wakeup)
  761. (tty->ldisc.write_wakeup)(tty);
  762. }
  763. static void pcxe_flush_chars(struct tty_struct *tty)
  764. {
  765. struct channel * ch;
  766. if ((ch=chan(tty))!=NULL) {
  767. unsigned long flags;
  768. save_flags(flags);
  769. cli();
  770. if ((ch->statusflags & TXBUSY) && !(ch->statusflags & EMPTYWAIT))
  771. setup_empty_event(tty,ch);
  772. restore_flags(flags);
  773. }
  774. }
  775. #ifndef MODULE
  776. /*
  777.  * Driver setup function when linked into the kernel to optionally parse multible
  778.  * "digi="-lines and initialize the driver at boot time. No probing.
  779.  */
  780. void __init pcxx_setup(char *str, int *ints)
  781. {
  782. struct board_info board;
  783. int               i, j, last;
  784. char              *temp, *t2;
  785. unsigned          len;
  786. numcards=0;
  787. memset(&board, 0, sizeof(board));
  788. for(last=0,i=1;i<=ints[0];i++)
  789. switch(i)
  790. {
  791. case 1:
  792. board.status = ints[i];
  793. last = i;
  794. break;
  795. case 2:
  796. board.type = ints[i];
  797. last = i;
  798. break;
  799. case 3:
  800. board.altpin = ints[i];
  801. last = i;
  802. break;
  803. case 4:
  804. board.numports = ints[i];
  805. last = i;
  806. break;
  807. case 5:
  808. board.port = ints[i];
  809. last = i;
  810. break;
  811. case 6:
  812. board.membase = ints[i];
  813. last = i;
  814. break;
  815. default:
  816. printk("PC/Xx: Too many integer parmsn");
  817. return;
  818. }
  819. while (str && *str) 
  820. {
  821. /* find the next comma or terminator */
  822. temp = str;
  823. while (*temp && (*temp != ','))
  824. temp++;
  825. if (!*temp)
  826. temp = NULL;
  827. else
  828. *temp++ = 0;
  829. i = last + 1;
  830. switch(i)
  831. {
  832. case 1:
  833. len = strlen(str);
  834. if (strncmp("Disable", str, len) == 0) 
  835. board.status = 0;
  836. else
  837. if (strncmp("Enable", str, len) == 0)
  838. board.status = 1;
  839. else
  840. {
  841. printk("PC/Xx: Invalid status %sn", str);
  842. return;
  843. }
  844. last = i;
  845. break;
  846. case 2:
  847. for(j=0;j<PCXX_NUM_TYPES;j++)
  848. if (strcmp(board_desc[j], str) == 0)
  849. break;
  850. if (i<PCXX_NUM_TYPES) 
  851. board.type = j;
  852. else
  853. {
  854. printk("PC/Xx: Invalid board name: %sn", str);
  855. return;
  856. }
  857. last = i;
  858. break;
  859. case 3:
  860. len = strlen(str);
  861. if (strncmp("Disable", str, len) == 0) 
  862. board.altpin = 0;
  863. else
  864. if (strncmp("Enable", str, len) == 0)
  865. board.altpin = 1;
  866. else
  867. {
  868. printk("PC/Xx: Invalid altpin %sn", str);
  869. return;
  870. }
  871. last = i;
  872. break;
  873. case 4:
  874. t2 = str;
  875. while (isdigit(*t2))
  876. t2++;
  877. if (*t2)
  878. {
  879. printk("PC/Xx: Invalid port count %sn", str);
  880. return;
  881. }
  882. board.numports = simple_strtoul(str, NULL, 0);
  883. last = i;
  884. break;
  885. case 5:
  886. t2 = str;
  887. while (isxdigit(*t2))
  888. t2++;
  889. if (*t2)
  890. {
  891. printk("PC/Xx: Invalid io port address %sn", str);
  892. return;
  893. }
  894. board.port = simple_strtoul(str, NULL, 16);
  895. last = i;
  896. break;
  897. case 6:
  898. t2 = str;
  899. while (isxdigit(*t2))
  900. t2++;
  901. if (*t2)
  902. {
  903. printk("PC/Xx: Invalid memory base %sn", str);
  904. return;
  905. }
  906. board.membase = simple_strtoul(str, NULL, 16);
  907. last = i;
  908. break;
  909. default:
  910. printk("PC/Xx: Too many string parmsn");
  911. return;
  912. }
  913. str = temp;
  914. }
  915. if (last < 6)  
  916. {
  917. printk("PC/Xx: Insufficient parms specifiedn");
  918. return;
  919. }
  920.  
  921.         /* I should REALLY validate the stuff here */
  922. memcpy(&boards[numcards],&board, sizeof(board));
  923. printk("PC/Xx: Added board %i, %s %s %i ports at 0x%4.4X base 0x%6.6Xn", 
  924. numcards, board_desc[board.type], board_mem[board.type], 
  925. board.numports, board.port, (unsigned int) board.membase);
  926. /* keep track of my initial minor number */
  927.         if (numcards)
  928. boards[numcards].first_minor = boards[numcards-1].first_minor + boards[numcards-1].numports;
  929. else
  930. boards[numcards].first_minor = 0;
  931. /* yeha!  string parameter was successful! */
  932. numcards++;
  933. }
  934. #endif
  935. /*
  936.  * function to initialize the driver with the given parameters, which are either
  937.  * the default values from this file or the parameters given at boot.
  938.  */
  939. int __init pcxe_init(void)
  940. {
  941. ulong memory_seg=0, memory_size=0;
  942. int lowwater, enabled_cards=0, i, crd, shrinkmem=0, topwin = 0xff00L, botwin=0x100L;
  943. int ret = -ENOMEM;
  944. unchar *fepos, *memaddr, *bios, v;
  945. volatile struct global_data *gd;
  946. volatile struct board_chan *bc;
  947. struct board_info *bd;
  948. struct channel *ch;
  949. printk(KERN_NOTICE "Digiboard PC/X{i,e,eve} driver v%sn", VERSION);
  950. #ifdef MODULE
  951. for (i = 0; i < MAX_DIGI_BOARDS; i++) {
  952. if (io[i]) {
  953. numcards = 0;
  954. break;
  955. }
  956. }
  957. if (numcards == 0) {
  958. int first_minor = 0;
  959. for (i = 0; i < MAX_DIGI_BOARDS; i++) {
  960. if (io[i] == 0) {
  961. boards[i].port    = 0;
  962. boards[i].status  = DISABLED;
  963. }
  964. else {
  965. boards[i].port         = (ushort)io[i];
  966. boards[i].status       = ENABLED;
  967. boards[i].first_minor  = first_minor;
  968. numcards=i+1;
  969. }
  970. if (membase[i])
  971. boards[i].membase = (ulong)membase[i];
  972. else
  973. boards[i].membase = 0xD0000;
  974. if (memsize[i])
  975. boards[i].memsize = (ulong)(memsize[i] * 1024);
  976. else
  977. boards[i].memsize = 0;
  978. if (altpin[i])
  979. boards[i].altpin  = ON;
  980. else
  981. boards[i].altpin  = OFF;
  982. if (numports[i])
  983. boards[i].numports  = (ushort)numports[i];
  984. else
  985. boards[i].numports  = 16;
  986. boards[i].region = NULL;
  987. first_minor += boards[i].numports;
  988. }
  989. }
  990. #endif
  991. if (numcards <= 0)
  992. {
  993. printk("PC/Xx: No cards configured, driver not active.n");
  994. return -EIO;
  995. }
  996. #if 1
  997. if (debug)
  998.     for (i = 0; i < numcards; i++) {
  999.     printk("Card %d:status=%d, port=0x%x, membase=0x%lx, memsize=0x%lx, altpin=%d, numports=%d, first_minor=%dn",
  1000.     i+1,
  1001.     boards[i].status,
  1002.     boards[i].port,
  1003.     boards[i].membase,
  1004.     boards[i].memsize,
  1005.     boards[i].altpin,
  1006.     boards[i].numports,
  1007.     boards[i].first_minor);
  1008.     }
  1009. #endif
  1010. for (i=0;i<numcards;i++)
  1011. nbdevs += boards[i].numports;
  1012. if (nbdevs <= 0)
  1013. {
  1014. printk("PC/Xx: No devices activated, driver not active.n");
  1015. return -EIO;
  1016. }
  1017. /*
  1018.  * this turns out to be more memory efficient, as there are no 
  1019.  * unused spaces.
  1020.  */
  1021. digi_channels = kmalloc(sizeof(struct channel) * nbdevs, GFP_KERNEL);
  1022. if (!digi_channels) {
  1023. printk(KERN_ERR "Unable to allocate digi_channel structn");
  1024. return -ENOMEM;
  1025. }
  1026. memset(digi_channels, 0, sizeof(struct channel) * nbdevs);
  1027. pcxe_table =  kmalloc(sizeof(struct tty_struct *) * nbdevs, GFP_KERNEL);
  1028. if (!pcxe_table) {
  1029. printk(KERN_ERR "Unable to allocate pcxe_table structn");
  1030. goto cleanup_digi_channels;
  1031. }
  1032. memset(pcxe_table, 0, sizeof(struct tty_struct *) * nbdevs);
  1033. pcxe_termios = kmalloc(sizeof(struct termios *) * nbdevs, GFP_KERNEL);
  1034. if (!pcxe_termios) {
  1035. printk(KERN_ERR "Unable to allocate pcxe_termios structn");
  1036. goto cleanup_pcxe_table;
  1037. }
  1038. memset(pcxe_termios,0,sizeof(struct termios *)*nbdevs);
  1039. pcxe_termios_locked = kmalloc(sizeof(struct termios *) * nbdevs, GFP_KERNEL);
  1040. if (!pcxe_termios_locked) {
  1041. printk(KERN_ERR "Unable to allocate pcxe_termios_locked structn");
  1042. goto cleanup_pcxe_termios;
  1043. }
  1044. memset(pcxe_termios_locked,0,sizeof(struct termios *)*nbdevs);
  1045. init_bh(DIGI_BH,do_pcxe_bh);
  1046. init_timer(&pcxx_timer);
  1047. pcxx_timer.function = pcxxpoll;
  1048. memset(&pcxe_driver, 0, sizeof(struct tty_driver));
  1049. pcxe_driver.magic = TTY_DRIVER_MAGIC;
  1050. pcxe_driver.name = "ttyD";
  1051. pcxe_driver.major = DIGI_MAJOR; 
  1052. pcxe_driver.minor_start = 0;
  1053. pcxe_driver.num = nbdevs;
  1054. pcxe_driver.type = TTY_DRIVER_TYPE_SERIAL;
  1055. pcxe_driver.subtype = SERIAL_TYPE_NORMAL;
  1056. pcxe_driver.init_termios = tty_std_termios;
  1057. pcxe_driver.init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL;
  1058. pcxe_driver.flags = TTY_DRIVER_REAL_RAW;
  1059. pcxe_driver.refcount = &pcxe_refcount;
  1060. pcxe_driver.table = pcxe_table;
  1061. pcxe_driver.termios = pcxe_termios;
  1062. pcxe_driver.termios_locked = pcxe_termios_locked;
  1063. pcxe_driver.open = pcxe_open;
  1064. pcxe_driver.close = pcxe_close;
  1065. pcxe_driver.write = pcxe_write;
  1066. pcxe_driver.put_char = pcxe_put_char;
  1067. pcxe_driver.flush_chars = pcxe_flush_chars;
  1068. pcxe_driver.write_room = pcxe_write_room;
  1069. pcxe_driver.chars_in_buffer = pcxe_chars_in_buffer;
  1070. pcxe_driver.flush_buffer = pcxe_flush_buffer;
  1071. pcxe_driver.ioctl = pcxe_ioctl;
  1072. pcxe_driver.throttle = pcxe_throttle;
  1073. pcxe_driver.unthrottle = pcxe_unthrottle;
  1074. pcxe_driver.set_termios = pcxe_set_termios;
  1075. pcxe_driver.stop = pcxe_stop;
  1076. pcxe_driver.start = pcxe_start;
  1077. pcxe_driver.hangup = pcxe_hangup;
  1078. pcxe_callout = pcxe_driver;
  1079. pcxe_callout.name = "cud";
  1080. pcxe_callout.major = DIGICU_MAJOR;
  1081. pcxe_callout.subtype = SERIAL_TYPE_CALLOUT;
  1082. pcxe_callout.init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
  1083. for(crd=0; crd < numcards; crd++) {
  1084. bd = &boards[crd];
  1085. outb(FEPRST, bd->port);
  1086. mdelay(1);
  1087. for(i=0; (inb(bd->port) & FEPMASK) != FEPRST; i++) {
  1088. if(i > 100) {
  1089. printk("PC/Xx: Board not found at port 0x%x! Check switch settings.n",
  1090. bd->port);
  1091. bd->status = DISABLED;
  1092. break;
  1093. }
  1094. #ifdef MODULE
  1095. schedule();
  1096. #endif
  1097. mdelay(10);
  1098. }
  1099. if(bd->status == DISABLED)
  1100. continue;
  1101. v = inb(bd->port);
  1102. if((v & 0x1) == 0x1) {
  1103. if((v & 0x30) == 0) {        /* PC/Xi 64K card */
  1104. memory_seg = 0xf000;
  1105. memory_size = 0x10000;
  1106. if((v & 0x30) == 0x10) {     /* PC/Xi 128K card */
  1107. memory_seg = 0xe000;
  1108. memory_size = 0x20000;
  1109. }
  1110. if((v & 0x30) == 0x20) {     /* PC/Xi 256K card */
  1111. memory_seg = 0xc000;
  1112. memory_size = 0x40000;
  1113. }
  1114. if((v & 0x30) == 0x30) {     /* PC/Xi 512K card */
  1115. memory_seg = 0x8000;
  1116. memory_size = 0x80000;
  1117. }
  1118. bd->type = PCXI;
  1119. } else {
  1120. if((v & 0x1) == 0x1) {
  1121. bd->status = DISABLED;   /* PC/Xm unsupported card */
  1122. printk("PC/Xx: PC/Xm at 0x%x not supported!!n", bd->port);
  1123. continue;
  1124. } else {
  1125. if(v & 0xC0) {    
  1126. topwin = 0x1f00L;
  1127. outb((((ulong)bd->membase>>8) & 0xe0) | 0x10, bd->port+2);
  1128. outb(((ulong)bd->membase>>16) & 0xff, bd->port+3);
  1129. bd->type = PCXEVE; /* PC/Xe 8K card */
  1130. } else { 
  1131. bd->type = PCXE;    /* PC/Xe 64K card */
  1132. }
  1133. memory_seg = 0xf000;
  1134. memory_size = 0x10000;
  1135. }
  1136. }
  1137. if (verbose)
  1138. printk("Configuring card %d as a %s %ldK card. io=0x%x, mem=%lx-%lxn",
  1139. crd+1, board_desc[bd->type], memory_size/1024,
  1140. bd->port,bd->membase,bd->membase+memory_size-1);
  1141. if (boards[crd].memsize == 0)
  1142. boards[crd].memsize = memory_size;
  1143. else
  1144. if (boards[crd].memsize != memory_size) {
  1145.     printk("PC/Xx: memory size mismatch:supplied=%lx(%ldK) probed=%ld(%ldK)n",
  1146.     boards[crd].memsize, boards[crd].memsize / 1024,
  1147.     memory_size, memory_size / 1024);
  1148.     continue;
  1149. }
  1150. memaddr = (unchar *)phys_to_virt(bd->membase);
  1151. if (verbose)
  1152. printk("Resetting board and testing memory access:");
  1153. outb(FEPRST|FEPMEM, bd->port);
  1154. for(i=0; (inb(bd->port) & FEPMASK) != (FEPRST|FEPMEM); i++) {
  1155. if(i > 1000) {
  1156. printk("nPC/Xx: %s not resetting at port 0x%x! Check switch settings.n",
  1157. board_desc[bd->type], bd->port);
  1158. bd->status = DISABLED;
  1159. break;
  1160. }
  1161. #ifdef MODULE
  1162. schedule();
  1163. #endif
  1164. mdelay(1);
  1165. }
  1166. if(bd->status == DISABLED)
  1167. continue;
  1168. memwinon(bd,0);
  1169. *(ulong *)(memaddr + botwin) = 0xa55a3cc3;
  1170. *(ulong *)(memaddr + topwin) = 0x5aa5c33c;
  1171. if(*(ulong *)(memaddr + botwin) != 0xa55a3cc3 ||
  1172. *(ulong *)(memaddr + topwin) != 0x5aa5c33c) {
  1173. printk("PC/Xx: Failed memory test at %lx for %s at port %x, check switch settings.n",
  1174. bd->membase, board_desc[bd->type], bd->port);
  1175. bd->status = DISABLED;
  1176. continue;
  1177. }
  1178. if (verbose)
  1179. printk(" done.n");
  1180. for(i=0; i < 16; i++) {
  1181. memaddr[MISCGLOBAL+i] = 0;
  1182. }
  1183. if(bd->type == PCXI || bd->type == PCXE) {
  1184. bios = memaddr + BIOSCODE + ((0xf000 - memory_seg) << 4);
  1185. if (verbose)
  1186. printk("Downloading BIOS to 0x%lx:", virt_to_phys(bios));
  1187. memcpy(bios, pcxx_bios, pcxx_nbios);
  1188. if (verbose)
  1189. printk(" done.n");
  1190. outb(FEPMEM, bd->port);
  1191. if (verbose)
  1192. printk("Waiting for BIOS to become ready");
  1193. for(i=1; i <= 30; i++) {
  1194. if(*(ushort *)((ulong)memaddr + MISCGLOBAL) == *(ushort *)"GD" ) {
  1195. goto load_fep;
  1196. }
  1197. if (verbose) {
  1198. printk(".");
  1199. if (i % 50 == 0)
  1200. printk("n");
  1201. }
  1202. #ifdef MODULE
  1203. schedule();
  1204. #endif
  1205. mdelay(50);
  1206. }
  1207. printk("nPC/Xx: BIOS download failed for board at 0x%x(addr=%lx-%lx)!n",
  1208. bd->port, bd->membase, bd->membase+bd->memsize);
  1209. bd->status = DISABLED;
  1210. continue;
  1211. }
  1212. if(bd->type == PCXEVE) {
  1213. bios = memaddr + (BIOSCODE & 0x1fff);
  1214. memwinon(bd,0xff);
  1215. memcpy(bios, pcxx_bios, pcxx_nbios);
  1216. outb(FEPCLR, bd->port);
  1217. memwinon(bd,0);
  1218. for(i=0; i <= 1000; i++) {
  1219. if(*(ushort *)((ulong)memaddr + MISCGLOBAL) == *(ushort *)"GD" ) {
  1220. goto load_fep;
  1221. }
  1222. if (verbose) {
  1223. printk(".");
  1224. if (i % 50 == 0)
  1225. printk("n");
  1226. }
  1227. #ifdef MODULE
  1228. schedule();
  1229. #endif
  1230. mdelay(10);
  1231. }
  1232. printk("nPC/Xx: BIOS download failed on the %s at 0x%x!n",
  1233. board_desc[bd->type], bd->port);
  1234. bd->status = DISABLED;
  1235. continue;
  1236. }
  1237. load_fep:
  1238. fepos = memaddr + FEPCODE;
  1239. if(bd->type == PCXEVE)
  1240. fepos = memaddr + (FEPCODE & 0x1fff);
  1241. if (verbose)
  1242. printk(" ok.nDownloading FEP/OS to 0x%lx:", virt_to_phys(fepos));
  1243. memwinon(bd, (FEPCODE >> 13));
  1244. memcpy(fepos, pcxx_cook, pcxx_ncook);
  1245. memwinon(bd, 0);
  1246. if (verbose)
  1247. printk(" done.n");
  1248. *(ushort *)((ulong)memaddr + MBOX +  0) = 2;
  1249. *(ushort *)((ulong)memaddr + MBOX +  2) = memory_seg + FEPCODESEG;
  1250. *(ushort *)((ulong)memaddr + MBOX +  4) = 0;
  1251. *(ushort *)((ulong)memaddr + MBOX +  6) = FEPCODESEG;
  1252. *(ushort *)((ulong)memaddr + MBOX +  8) = 0;
  1253. *(ushort *)((ulong)memaddr + MBOX + 10) = pcxx_ncook;
  1254. outb(FEPMEM|FEPINT, bd->port);
  1255. outb(FEPMEM, bd->port);
  1256. for(i=0; *(ushort *)((ulong)memaddr + MBOX); i++) {
  1257. if(i > 2000) {
  1258. printk("PC/Xx: Command failed for the %s at 0x%x!n",
  1259. board_desc[bd->type], bd->port);
  1260. bd->status = DISABLED;
  1261. break;
  1262. }
  1263. #ifdef MODULE
  1264. schedule();
  1265. #endif
  1266. mdelay(1);
  1267. }
  1268. if(bd->status == DISABLED)
  1269. continue;
  1270. if (verbose)
  1271. printk("Waiting for FEP/OS to become ready");
  1272. *(ushort *)(memaddr + FEPSTAT) = 0;
  1273. *(ushort *)(memaddr + MBOX + 0) = 1;
  1274. *(ushort *)(memaddr + MBOX + 2) = FEPCODESEG;
  1275. *(ushort *)(memaddr + MBOX + 4) = 0x4L;
  1276. outb(FEPINT, bd->port);
  1277. outb(FEPCLR, bd->port);
  1278. memwinon(bd, 0);
  1279. for(i=1; *(ushort *)((ulong)memaddr + FEPSTAT) != *(ushort *)"OS"; i++) {
  1280. if(i > 1000) {
  1281. printk("nPC/Xx: FEP/OS download failed on the %s at 0x%x!n",
  1282. board_desc[bd->type], bd->port);
  1283. bd->status = DISABLED;
  1284. break;
  1285. }
  1286. if (verbose) {
  1287. printk(".");
  1288. if (i % 50 == 0)
  1289. printk("n%5d",i/50);
  1290. }
  1291. #ifdef MODULE
  1292. schedule();
  1293. #endif
  1294. mdelay(1);
  1295. }
  1296. if(bd->status == DISABLED)
  1297. continue;
  1298. if (verbose)
  1299. printk(" ok.n");
  1300. ch = digi_channels+bd->first_minor;
  1301. pcxxassert(ch < digi_channels+nbdevs, "ch out of range");
  1302. bc = (volatile struct board_chan *)((ulong)memaddr + CHANSTRUCT);
  1303. gd = (volatile struct global_data *)((ulong)memaddr + GLOBAL);
  1304. if((bd->type == PCXEVE) && (*(ushort *)((ulong)memaddr+NPORT) < 3))
  1305. shrinkmem = 1;
  1306. bd->region = request_region(bd->port, 4, "PC/Xx");
  1307. if (!bd->region) {
  1308. printk(KERN_ERR "I/O port 0x%x is already usedn", bd->port);
  1309. ret = -EBUSY;
  1310. goto cleanup_boards;
  1311. }
  1312. for(i=0; i < bd->numports; i++, ch++, bc++) {
  1313. if(((ushort *)((ulong)memaddr + PORTBASE))[i] == 0) {
  1314. ch->brdchan = 0;
  1315. continue;
  1316. }
  1317. ch->brdchan = bc;
  1318. ch->mailbox = gd;
  1319. ch->tqueue.routine = do_softint;
  1320. ch->tqueue.data = ch;
  1321. ch->board = &boards[crd];
  1322. #ifdef DEFAULT_HW_FLOW
  1323. ch->digiext.digi_flags = RTSPACE|CTSPACE;
  1324. #endif
  1325. if(boards[crd].altpin) {
  1326. ch->dsr = CD;
  1327. ch->dcd = DSR;
  1328. ch->digiext.digi_flags |= DIGI_ALTPIN;
  1329. } else { 
  1330. ch->dcd = CD;
  1331. ch->dsr = DSR;
  1332. }
  1333. ch->magic = PCXX_MAGIC;
  1334. ch->boardnum = crd;
  1335. ch->channelnum = i;
  1336. ch->dev = bd->first_minor + i;
  1337. ch->tty = 0;
  1338. if(shrinkmem) {
  1339. fepcmd(ch, SETBUFFER, 32, 0, 0, 0);
  1340. shrinkmem = 0;
  1341. }
  1342. if(bd->type != PCXEVE) {
  1343. ch->txptr = memaddr+((bc->tseg-memory_seg) << 4);
  1344. ch->rxptr = memaddr+((bc->rseg-memory_seg) << 4);
  1345. ch->txwin = ch->rxwin = 0;
  1346. } else {
  1347. ch->txptr = memaddr+(((bc->tseg-memory_seg) << 4) & 0x1fff);
  1348. ch->txwin = FEPWIN | ((bc->tseg-memory_seg) >> 9);
  1349. ch->rxptr = memaddr+(((bc->rseg-memory_seg) << 4) & 0x1fff);
  1350. ch->rxwin = FEPWIN | ((bc->rseg-memory_seg) >>9 );
  1351. }
  1352. ch->txbufsize = bc->tmax + 1;
  1353. ch->rxbufsize = bc->rmax + 1;
  1354. ch->tmp_buf = kmalloc(ch->txbufsize,GFP_KERNEL);
  1355. init_MUTEX(&ch->tmp_buf_sem);
  1356. if (!ch->tmp_buf) {
  1357. printk(KERN_ERR "Unable to allocate memory for temp buffersn");
  1358. goto cleanup_boards;
  1359. }
  1360. lowwater = ch->txbufsize >= 2000 ? 1024 : ch->txbufsize/2;
  1361. fepcmd(ch, STXLWATER, lowwater, 0, 10, 0);
  1362. fepcmd(ch, SRXLWATER, ch->rxbufsize/4, 0, 10, 0);
  1363. fepcmd(ch, SRXHWATER, 3 * ch->rxbufsize/4, 0, 10, 0);
  1364. bc->edelay = 100;
  1365. bc->idata = 1;
  1366. ch->startc = bc->startc;
  1367. ch->stopc = bc->stopc;
  1368. ch->startca = bc->startca;
  1369. ch->stopca = bc->stopca;
  1370. ch->fepcflag = 0;
  1371. ch->fepiflag = 0;
  1372. ch->fepoflag = 0;
  1373. ch->fepstartc = 0;
  1374. ch->fepstopc = 0;
  1375. ch->fepstartca = 0;
  1376. ch->fepstopca = 0;
  1377. ch->close_delay = 50;
  1378. ch->count = 0;
  1379. ch->blocked_open = 0;
  1380. ch->callout_termios = pcxe_callout.init_termios;
  1381. ch->normal_termios = pcxe_driver.init_termios;
  1382. init_waitqueue_head(&ch->open_wait);
  1383. init_waitqueue_head(&ch->close_wait);
  1384. ch->asyncflags = 0;
  1385. }
  1386. if (verbose)
  1387.     printk("Card No. %d ready: %s (%s) I/O=0x%x Mem=0x%lx Ports=%dn", 
  1388.     crd+1, board_desc[bd->type], board_mem[bd->type], bd->port, 
  1389.     bd->membase, bd->numports);
  1390. else
  1391.     printk("PC/Xx: %s (%s) I/O=0x%x Mem=0x%lx Ports=%dn", 
  1392.     board_desc[bd->type], board_mem[bd->type], bd->port, 
  1393.     bd->membase, bd->numports);
  1394. memwinoff(bd, 0);
  1395. enabled_cards++;
  1396. }
  1397. if (enabled_cards <= 0) {
  1398. printk(KERN_NOTICE "PC/Xx: No cards enabled, no driver.n");
  1399. ret = -EIO;
  1400. goto cleanup_boards;
  1401. }
  1402. ret = tty_register_driver(&pcxe_driver);
  1403. if(ret) {
  1404. printk(KERN_ERR "Couldn't register PC/Xe drivern");
  1405. goto cleanup_boards;
  1406. }
  1407. ret = tty_register_driver(&pcxe_callout);
  1408. if(ret) {
  1409. printk(KERN_ERR "Couldn't register PC/Xe calloutn");
  1410. goto cleanup_pcxe_driver;
  1411. }
  1412. /*
  1413.  * Start up the poller to check for events on all enabled boards
  1414.  */
  1415. mod_timer(&pcxx_timer, HZ/25);
  1416. if (verbose)
  1417. printk(KERN_NOTICE "PC/Xx: Driver with %d card(s) ready.n", enabled_cards);
  1418. return 0;
  1419. cleanup_pcxe_driver: tty_unregister_driver(&pcxe_driver);
  1420. cleanup_boards: cleanup_board_resources();
  1421. kfree(pcxe_termios_locked);
  1422. cleanup_pcxe_termios: kfree(pcxe_termios);
  1423. cleanup_pcxe_table: kfree(pcxe_table);
  1424. cleanup_digi_channels: kfree(digi_channels);
  1425. return ret;
  1426. }
  1427. static void pcxxpoll(unsigned long dummy)
  1428. {
  1429. unsigned long flags;
  1430. int crd;
  1431. volatile unsigned int head, tail;
  1432. struct channel *ch;
  1433. struct board_info *bd;
  1434. save_flags(flags);
  1435. cli();
  1436. for(crd=0; crd < numcards; crd++) {
  1437. bd = &boards[crd];
  1438. ch = digi_channels+bd->first_minor;
  1439. if(bd->status == DISABLED)
  1440. continue;
  1441. assertmemoff(ch);
  1442. globalwinon(ch);
  1443. head = ch->mailbox->ein;
  1444. tail = ch->mailbox->eout;
  1445. if(head != tail)
  1446. doevent(crd);
  1447. memoff(ch);
  1448. }
  1449. mod_timer(&pcxx_timer, jiffies + HZ/25);
  1450. restore_flags(flags);
  1451. }
  1452. static void doevent(int crd)
  1453. {
  1454. volatile struct board_info *bd;
  1455. static struct tty_struct *tty;
  1456. volatile struct board_chan *bc;
  1457. volatile unchar *eventbuf;
  1458. volatile unsigned int head;
  1459. volatile unsigned int tail;
  1460. struct channel *ch;
  1461. struct channel *chan0;
  1462. int channel, event, mstat, lstat;
  1463. bd = &boards[crd];
  1464. chan0 = digi_channels+bd->first_minor;
  1465. pcxxassert(chan0 < digi_channels+nbdevs, "ch out of range");
  1466. assertgwinon(chan0);
  1467. while ((tail = chan0->mailbox->eout) != (head = chan0->mailbox->ein)) {
  1468. assertgwinon(chan0);
  1469. eventbuf = (volatile unchar *)phys_to_virt(bd->membase + tail + ISTART);
  1470. channel = eventbuf[0];
  1471. event = eventbuf[1];
  1472. mstat = eventbuf[2];
  1473. lstat = eventbuf[3];
  1474. ch=chan0+channel;
  1475. if ((unsigned)channel >= bd->numports || !ch) { 
  1476. printk("physmem=%lx, tail=%x, head=%xn", bd->membase, tail, head);
  1477. printk("doevent(%x) channel %x, event %x, mstat %x, lstat %xn",
  1478. crd, (unsigned)channel, event, (unsigned)mstat, lstat);
  1479. if(channel >= bd->numports)
  1480. ch = chan0;
  1481. bc = ch->brdchan;
  1482. goto next;
  1483. }
  1484. if ((bc = ch->brdchan) == NULL)
  1485. goto next;
  1486. if (event & DATA_IND) {
  1487. receive_data(ch);
  1488. assertgwinon(ch);
  1489. }
  1490. if (event & MODEMCHG_IND) {
  1491. ch->imodem = mstat;
  1492. if (ch->asyncflags & (ASYNC_NORMAL_ACTIVE|ASYNC_CALLOUT_ACTIVE)) {
  1493. if (ch->asyncflags & ASYNC_CHECK_CD) {
  1494. if (mstat & ch->dcd) {
  1495. wake_up_interruptible(&ch->open_wait);
  1496. } else {
  1497. pcxe_sched_event(ch, PCXE_EVENT_HANGUP);
  1498. }
  1499. }
  1500. }
  1501. }
  1502. tty = ch->tty;
  1503. if (tty) {
  1504. if (event & BREAK_IND) {
  1505. tty->flip.count++;
  1506. *tty->flip.flag_buf_ptr++ = TTY_BREAK;
  1507. *tty->flip.char_buf_ptr++ = 0;
  1508. #if 0
  1509. if (ch->asyncflags & ASYNC_SAK)
  1510. do_SAK(tty);
  1511. #endif
  1512. tty_schedule_flip(tty); 
  1513. }
  1514. if (event & LOWTX_IND) {
  1515. if (ch->statusflags & LOWWAIT) {
  1516. ch->statusflags &= ~LOWWAIT;
  1517. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  1518. tty->ldisc.write_wakeup)
  1519. (tty->ldisc.write_wakeup)(tty);
  1520. wake_up_interruptible(&tty->write_wait);
  1521. }
  1522. }
  1523. if (event & EMPTYTX_IND) {
  1524. ch->statusflags &= ~TXBUSY;
  1525. if (ch->statusflags & EMPTYWAIT) {
  1526. ch->statusflags &= ~EMPTYWAIT;
  1527. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  1528. tty->ldisc.write_wakeup)
  1529. (tty->ldisc.write_wakeup)(tty);
  1530. wake_up_interruptible(&tty->write_wait);
  1531. }
  1532. }
  1533. }
  1534. next:
  1535. globalwinon(ch);
  1536. if(!bc) printk("bc == NULL in doevent!n");
  1537. else bc->idata = 1;
  1538. chan0->mailbox->eout = (tail+4) & (IMAX-ISTART-4);
  1539. globalwinon(chan0);
  1540. }
  1541. }
  1542. static void 
  1543. fepcmd(struct channel *ch, int cmd, int word_or_byte, int byte2, int ncmds,
  1544. int bytecmd)
  1545. {
  1546. unchar *memaddr;
  1547. unsigned int head, tail;
  1548. long count;
  1549. int n;
  1550. if(ch->board->status == DISABLED)
  1551. return;
  1552. assertgwinon(ch);
  1553. memaddr = (unchar *)phys_to_virt(ch->board->membase);
  1554. head = ch->mailbox->cin;
  1555. if(head >= (CMAX-CSTART) || (head & 03)) {
  1556. printk("line %d: Out of range, cmd=%x, head=%xn", __LINE__, cmd, head);
  1557. return;
  1558. }
  1559. if(bytecmd) {
  1560. *(unchar *)(memaddr+head+CSTART+0) = cmd;
  1561. *(unchar *)(memaddr+head+CSTART+1) = ch->dev - ch->board->first_minor;
  1562. *(unchar *)(memaddr+head+CSTART+2) = word_or_byte;
  1563. *(unchar *)(memaddr+head+CSTART+3) = byte2;
  1564. } else {
  1565. *(unchar *)(memaddr+head+CSTART+0) = cmd;
  1566. *(unchar *)(memaddr+head+CSTART+1) = ch->dev - ch->board->first_minor;
  1567. *(ushort*)(memaddr+head+CSTART+2) = word_or_byte;
  1568. }
  1569. head = (head+4) & (CMAX-CSTART-4);
  1570. ch->mailbox->cin = head;
  1571. count = FEPTIMEOUT;
  1572. while(1) {
  1573. count--;
  1574. if(count == 0) {
  1575. printk("Fep not responding in fepcmd()n");
  1576. return;
  1577. }
  1578. head = ch->mailbox->cin;
  1579. tail = ch->mailbox->cout;
  1580. n = (head-tail) & (CMAX-CSTART-4);
  1581. if(n <= ncmds * (sizeof(short)*4))
  1582. break;
  1583. /* Seems not to be good here: schedule(); */
  1584. }
  1585. }
  1586. static unsigned termios2digi_c(struct channel *ch, unsigned cflag)
  1587. {
  1588. unsigned res = 0;
  1589. if (cflag & CBAUDEX)
  1590. {
  1591. ch->digiext.digi_flags |= DIGI_FAST;
  1592. res |= FEP_HUPCL;
  1593. /* This gets strange but if we don't do this we will get 78600
  1594.  * instead of 115200. 57600 is mapped to 50 baud yielding 57600 in
  1595.  * FAST mode. 115200 is mapped to 75. We need to map it to 110 to
  1596.  * do 115K
  1597.  */
  1598. if (cflag & B115200) res|=1;
  1599. }
  1600. else ch->digiext.digi_flags &= ~DIGI_FAST;
  1601. res |= cflag & (CBAUD | PARODD | PARENB | CSTOPB | CSIZE | CLOCAL);
  1602. return res;
  1603. }
  1604. static unsigned termios2digi_i(struct channel *ch, unsigned iflag)
  1605. {
  1606. unsigned res = iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK|ISTRIP|IXON|IXANY|IXOFF);
  1607. if(ch->digiext.digi_flags & DIGI_AIXON)
  1608. res |= IAIXON;
  1609. return res;
  1610. }
  1611. static unsigned termios2digi_h(struct channel *ch, unsigned cflag)
  1612. {
  1613. unsigned res = 0;
  1614. if(cflag & CRTSCTS) {
  1615. ch->digiext.digi_flags |= (RTSPACE|CTSPACE);
  1616. res |= (CTS | RTS);
  1617. }
  1618. if(ch->digiext.digi_flags & RTSPACE)
  1619. res |= RTS;
  1620. if(ch->digiext.digi_flags & DTRPACE)
  1621. res |= DTR;
  1622. if(ch->digiext.digi_flags & CTSPACE)
  1623. res |= CTS;
  1624. if(ch->digiext.digi_flags & DSRPACE)
  1625. res |= ch->dsr;
  1626. if(ch->digiext.digi_flags & DCDPACE)
  1627. res |= ch->dcd;
  1628. if (res & RTS)
  1629. ch->digiext.digi_flags |= RTSPACE;
  1630. if (res & CTS)
  1631. ch->digiext.digi_flags |= CTSPACE;
  1632. return res;
  1633. }
  1634. static void pcxxparam(struct tty_struct *tty, struct channel *ch)
  1635. {
  1636. volatile struct board_chan *bc;
  1637. unsigned int head;
  1638. unsigned mval, hflow, cflag, iflag;
  1639. struct termios *ts;
  1640. bc = ch->brdchan;
  1641. assertgwinon(ch);
  1642. ts = tty->termios;
  1643. if((ts->c_cflag & CBAUD) == 0) {
  1644. head = bc->rin;
  1645. bc->rout = head;
  1646. head = bc->tin;
  1647. fepcmd(ch, STOUT, (unsigned) head, 0, 0, 0);
  1648. mval = 0;
  1649. } else {
  1650. cflag = termios2digi_c(ch, ts->c_cflag);
  1651. if(cflag != ch->fepcflag) {
  1652. ch->fepcflag = cflag;
  1653. fepcmd(ch, SETCTRLFLAGS, (unsigned) cflag, 0, 0, 0);
  1654. }
  1655. if(cflag & CLOCAL)
  1656. ch->asyncflags &= ~ASYNC_CHECK_CD;
  1657. else {
  1658. ch->asyncflags |= ASYNC_CHECK_CD;
  1659. }
  1660. mval = DTR | RTS;
  1661. }
  1662. iflag = termios2digi_i(ch, ts->c_iflag);
  1663. if(iflag != ch->fepiflag) {
  1664. ch->fepiflag = iflag;
  1665. fepcmd(ch, SETIFLAGS, (unsigned int) ch->fepiflag, 0, 0, 0);
  1666. }
  1667. bc->mint = ch->dcd;
  1668. if((ts->c_cflag & CLOCAL) || (ch->digiext.digi_flags & DIGI_FORCEDCD))
  1669. if(ch->digiext.digi_flags & DIGI_FORCEDCD)
  1670. bc->mint = 0;
  1671. ch->imodem = bc->mstat;
  1672. hflow = termios2digi_h(ch, ts->c_cflag);
  1673. if(hflow != ch->hflow) {
  1674. ch->hflow = hflow;
  1675. fepcmd(ch, SETHFLOW, hflow, 0xff, 0, 1);
  1676. }
  1677. /* mval ^= ch->modemfake & (mval ^ ch->modem); */
  1678. if(ch->omodem != mval) {
  1679. ch->omodem = mval;
  1680. fepcmd(ch, SETMODEM, mval, RTS|DTR, 0, 1);
  1681. }
  1682. if(ch->startc != ch->fepstartc || ch->stopc != ch->fepstopc) {
  1683. ch->fepstartc = ch->startc;
  1684. ch->fepstopc = ch->stopc;
  1685. fepcmd(ch, SONOFFC, ch->fepstartc, ch->fepstopc, 0, 1);
  1686. }
  1687. if(ch->startca != ch->fepstartca || ch->stopca != ch->fepstopca) {
  1688. ch->fepstartca = ch->startca;
  1689. ch->fepstopca = ch->stopca;
  1690. fepcmd(ch, SAUXONOFFC, ch->fepstartca, ch->fepstopca, 0, 1);
  1691. }
  1692. }
  1693. static void receive_data(struct channel *ch)
  1694. {
  1695. volatile struct board_chan *bc;
  1696. struct tty_struct *tty;
  1697. unsigned int tail, head, wrapmask;
  1698. int n;
  1699. int piece;
  1700. struct termios *ts=0;
  1701. unchar *rptr;
  1702. int rc;
  1703. int wrapgap;
  1704.     globalwinon(ch);
  1705. if (ch->statusflags & RXSTOPPED)
  1706. return;
  1707. tty = ch->tty;
  1708. if(tty)
  1709. ts = tty->termios;
  1710. bc = ch->brdchan;
  1711. if(!bc) {
  1712. printk("bc is NULL in receive_data!n");
  1713. return;
  1714. }
  1715. wrapmask = ch->rxbufsize - 1;
  1716. head = bc->rin;
  1717. head &= wrapmask;
  1718. tail = bc->rout & wrapmask;
  1719. n = (head-tail) & wrapmask;
  1720. if(n == 0)
  1721. return;
  1722. /*
  1723.  * If CREAD bit is off or device not open, set TX tail to head
  1724.  */
  1725. if(!tty || !ts || !(ts->c_cflag & CREAD)) {
  1726. bc->rout = head;
  1727. return;
  1728. }
  1729. if(tty->flip.count == TTY_FLIPBUF_SIZE) {
  1730. /* printk("tty->flip.count = TTY_FLIPBUF_SIZEn"); */
  1731. return;
  1732. }
  1733. if(bc->orun) {
  1734. bc->orun = 0;
  1735. printk("overrun! DigiBoard device minor=%dn",MINOR(tty->device));
  1736. }
  1737. rxwinon(ch);
  1738. rptr = tty->flip.char_buf_ptr;
  1739. rc = tty->flip.count;
  1740. while(n > 0) {
  1741. wrapgap = (head >= tail) ? head - tail : ch->rxbufsize - tail;
  1742. piece = (wrapgap < n) ? wrapgap : n;
  1743. /*
  1744.  * Make sure we don't overflow the buffer
  1745.  */
  1746. if ((rc + piece) > TTY_FLIPBUF_SIZE)
  1747. piece = TTY_FLIPBUF_SIZE - rc;
  1748. if (piece == 0)
  1749. break;
  1750. memcpy(rptr, ch->rxptr + tail, piece);
  1751. rptr += piece;
  1752. rc += piece;
  1753. tail = (tail + piece) & wrapmask;
  1754. n -= piece;
  1755. }
  1756. tty->flip.count = rc;
  1757. tty->flip.char_buf_ptr = rptr;
  1758.     globalwinon(ch);
  1759. bc->rout = tail;
  1760. /* Must be called with global data */
  1761. tty_schedule_flip(ch->tty); 
  1762. return;
  1763. }
  1764. static int pcxe_ioctl(struct tty_struct *tty, struct file * file,
  1765.     unsigned int cmd, unsigned long arg)
  1766. {
  1767. struct channel *ch = (struct channel *) tty->driver_data;
  1768. volatile struct board_chan *bc;
  1769. int retval;
  1770. unsigned int mflag, mstat;
  1771. unsigned char startc, stopc;
  1772. unsigned long flags;
  1773. digiflow_t dflow;
  1774. if(ch)
  1775. bc = ch->brdchan;
  1776. else {
  1777. printk("ch is NULL in pcxe_ioctl!n");
  1778. return(-EINVAL);
  1779. }
  1780. save_flags(flags);
  1781. switch(cmd) {
  1782. case TCSBRK: /* SVID version: non-zero arg --> no break */
  1783. retval = tty_check_change(tty);
  1784. if(retval)
  1785. return retval;
  1786. setup_empty_event(tty,ch);
  1787. tty_wait_until_sent(tty, 0);
  1788. if(!arg)
  1789. digi_send_break(ch, HZ/4);    /* 1/4 second */
  1790. return 0;
  1791. case TCSBRKP: /* support for POSIX tcsendbreak() */
  1792. retval = tty_check_change(tty);
  1793. if(retval)
  1794. return retval;
  1795. setup_empty_event(tty,ch);
  1796. tty_wait_until_sent(tty, 0);
  1797. digi_send_break(ch, arg ? arg*(HZ/10) : HZ/4);
  1798. return 0;
  1799. case TIOCGSOFTCAR:
  1800. return put_user(C_CLOCAL(tty) ? 1 : 0, (unsigned int *)arg);
  1801. case TIOCSSOFTCAR:
  1802. {
  1803.     unsigned int value;
  1804.     if (get_user(value, (unsigned int *) arg))
  1805.     return -EFAULT;
  1806.     tty->termios->c_cflag = ((tty->termios->c_cflag & ~CLOCAL) | (value ? CLOCAL : 0));
  1807. }
  1808. return 0;
  1809. case TIOCMODG:
  1810. case TIOCMGET:
  1811. mflag = 0;
  1812. cli();
  1813. globalwinon(ch);
  1814. mstat = bc->mstat;
  1815. memoff(ch);
  1816. restore_flags(flags);
  1817. if(mstat & DTR)
  1818. mflag |= TIOCM_DTR;
  1819. if(mstat & RTS)
  1820. mflag |= TIOCM_RTS;
  1821. if(mstat & CTS)
  1822. mflag |= TIOCM_CTS;
  1823. if(mstat & ch->dsr)
  1824. mflag |= TIOCM_DSR;
  1825. if(mstat & RI)
  1826. mflag |= TIOCM_RI;
  1827. if(mstat & ch->dcd)
  1828. mflag |= TIOCM_CD;
  1829. if (put_user(mflag, (unsigned int *) arg))
  1830. return -EFAULT;
  1831. break;
  1832. case TIOCMBIS:
  1833. case TIOCMBIC:
  1834. case TIOCMODS:
  1835. case TIOCMSET:
  1836. if (get_user(mstat, (unsigned int *) arg))
  1837. return -EFAULT;
  1838. mflag = 0;
  1839. if(mstat & TIOCM_DTR)
  1840. mflag |= DTR;
  1841. if(mstat & TIOCM_RTS)
  1842. mflag |= RTS;
  1843. switch(cmd) {
  1844. case TIOCMODS:
  1845. case TIOCMSET:
  1846. ch->modemfake = DTR|RTS;
  1847. ch->modem = mflag;
  1848. break;
  1849. case TIOCMBIS:
  1850. ch->modemfake |= mflag;
  1851. ch->modem |= mflag;
  1852. break;
  1853. case TIOCMBIC:
  1854. ch->modemfake &= ~mflag;
  1855. ch->modem &= ~mflag;
  1856. break;
  1857. }
  1858. cli();
  1859. globalwinon(ch);
  1860. pcxxparam(tty,ch);
  1861. memoff(ch);
  1862. restore_flags(flags);
  1863. break;
  1864. case TIOCSDTR:
  1865. cli();
  1866. ch->omodem |= DTR;
  1867. globalwinon(ch);
  1868. fepcmd(ch, SETMODEM, DTR, 0, 10, 1);
  1869. memoff(ch);
  1870. restore_flags(flags);
  1871. break;
  1872. case TIOCCDTR:
  1873. ch->omodem &= ~DTR;
  1874. cli();
  1875. globalwinon(ch);
  1876. fepcmd(ch, SETMODEM, 0, DTR, 10, 1);
  1877. memoff(ch);
  1878. restore_flags(flags);
  1879. break;
  1880. case DIGI_GETA:
  1881. if (copy_to_user((char*)arg, &ch->digiext, sizeof(digi_t)))
  1882. return -EFAULT;
  1883. break;
  1884. case DIGI_SETAW:
  1885. case DIGI_SETAF:
  1886. if(cmd == DIGI_SETAW) {
  1887. setup_empty_event(tty,ch);
  1888. tty_wait_until_sent(tty, 0);
  1889. }
  1890. else {
  1891. if(tty->ldisc.flush_buffer)
  1892. tty->ldisc.flush_buffer(tty);
  1893. }
  1894. /* Fall Thru */
  1895. case DIGI_SETA:
  1896. if (copy_from_user(&ch->digiext, (char*)arg, sizeof(digi_t)))
  1897. return -EFAULT;
  1898. #ifdef DEBUG_IOCTL
  1899. printk("ioctl(DIGI_SETA): flags = %xn", ch->digiext.digi_flags);
  1900. #endif
  1901. if(ch->digiext.digi_flags & DIGI_ALTPIN) {
  1902. ch->dcd = DSR;
  1903. ch->dsr = CD;
  1904. } else {
  1905. ch->dcd = CD;
  1906. ch->dsr = DSR;
  1907. }
  1908. cli();
  1909. globalwinon(ch);
  1910. pcxxparam(tty,ch);
  1911. memoff(ch);
  1912. restore_flags(flags);
  1913. break;
  1914. case DIGI_GETFLOW:
  1915. case DIGI_GETAFLOW:
  1916. cli();
  1917. globalwinon(ch);
  1918. if(cmd == DIGI_GETFLOW) {
  1919. dflow.startc = bc->startc;
  1920. dflow.stopc = bc->stopc;
  1921. } else {
  1922. dflow.startc = bc->startca;
  1923. dflow.stopc = bc->stopca;
  1924. }
  1925. memoff(ch);
  1926. restore_flags(flags);
  1927. if (copy_to_user((char*)arg, &dflow, sizeof(dflow)))
  1928. return -EFAULT;
  1929. break;
  1930. case DIGI_SETAFLOW:
  1931. case DIGI_SETFLOW:
  1932. if(cmd == DIGI_SETFLOW) {
  1933. startc = ch->startc;
  1934. stopc = ch->stopc;
  1935. } else {
  1936. startc = ch->startca;
  1937. stopc = ch->stopca;
  1938. }
  1939. if (copy_from_user(&dflow, (char*)arg, sizeof(dflow)))
  1940. return -EFAULT;
  1941. if(dflow.startc != startc || dflow.stopc != stopc) {
  1942. cli();
  1943. globalwinon(ch);
  1944. if(cmd == DIGI_SETFLOW) {
  1945. ch->fepstartc = ch->startc = dflow.startc;
  1946. ch->fepstopc = ch->stopc = dflow.stopc;
  1947. fepcmd(ch,SONOFFC,ch->fepstartc,ch->fepstopc,0, 1);
  1948. } else {
  1949. ch->fepstartca = ch->startca = dflow.startc;
  1950. ch->fepstopca  = ch->stopca = dflow.stopc;
  1951. fepcmd(ch, SAUXONOFFC, ch->fepstartca, ch->fepstopca, 0, 1);
  1952. }
  1953. if(ch->statusflags & TXSTOPPED)
  1954. pcxe_start(tty);
  1955. memoff(ch);
  1956. restore_flags(flags);
  1957. }
  1958. break;
  1959. default:
  1960. return -ENOIOCTLCMD;
  1961. }
  1962. return 0;
  1963. }
  1964. static void pcxe_set_termios(struct tty_struct *tty, struct termios *old_termios)
  1965. {
  1966. struct channel *info;
  1967. if ((info=chan(tty))!=NULL) {
  1968. unsigned long flags;
  1969. save_flags(flags);
  1970. cli();
  1971. globalwinon(info);
  1972. pcxxparam(tty,info);
  1973. memoff(info);
  1974. if ((old_termios->c_cflag & CRTSCTS) &&
  1975. ((tty->termios->c_cflag & CRTSCTS) == 0))
  1976. tty->hw_stopped = 0;
  1977. if(!(old_termios->c_cflag & CLOCAL) &&
  1978. (tty->termios->c_cflag & CLOCAL))
  1979. wake_up_interruptible(&info->open_wait);
  1980. restore_flags(flags);
  1981. }
  1982. }
  1983. static void do_pcxe_bh(void)
  1984. {
  1985. run_task_queue(&tq_pcxx);
  1986. }
  1987. static void do_softint(void *private_)
  1988. {
  1989. struct channel *info = (struct channel *) private_;
  1990. if(info && info->magic == PCXX_MAGIC) {
  1991. struct tty_struct *tty = info->tty;
  1992. if (tty && tty->driver_data) {
  1993. if(test_and_clear_bit(PCXE_EVENT_HANGUP, &info->event)) {
  1994. tty_hangup(tty);
  1995. wake_up_interruptible(&info->open_wait);
  1996. info->asyncflags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CALLOUT_ACTIVE);
  1997. }
  1998. }
  1999. }
  2000. }
  2001. static void pcxe_stop(struct tty_struct *tty)
  2002. {
  2003. struct channel *info;
  2004. if ((info=chan(tty))!=NULL) {
  2005. unsigned long flags;
  2006. save_flags(flags); 
  2007. cli();
  2008. if ((info->statusflags & TXSTOPPED) == 0) {
  2009. globalwinon(info);
  2010. fepcmd(info, PAUSETX, 0, 0, 0, 0);
  2011. info->statusflags |= TXSTOPPED;
  2012. memoff(info);
  2013. }
  2014. restore_flags(flags);
  2015. }
  2016. }
  2017. static void pcxe_throttle(struct tty_struct * tty)
  2018. {
  2019. struct channel *info;
  2020. if ((info=chan(tty))!=NULL) {
  2021. unsigned long flags;
  2022. save_flags(flags);
  2023. cli();
  2024. if ((info->statusflags & RXSTOPPED) == 0) {
  2025. globalwinon(info);
  2026. fepcmd(info, PAUSERX, 0, 0, 0, 0);
  2027. info->statusflags |= RXSTOPPED;
  2028. memoff(info);
  2029. }
  2030. restore_flags(flags);
  2031. }
  2032. }
  2033. static void pcxe_unthrottle(struct tty_struct *tty)
  2034. {
  2035. struct channel *info;
  2036. if ((info=chan(tty)) != NULL) {
  2037. unsigned long flags;
  2038. /* Just in case output was resumed because of a change in Digi-flow */
  2039. save_flags(flags);
  2040. cli();
  2041. if(info->statusflags & RXSTOPPED) {
  2042. volatile struct board_chan *bc;
  2043. globalwinon(info);
  2044. bc = info->brdchan;
  2045. fepcmd(info, RESUMERX, 0, 0, 0, 0);
  2046. info->statusflags &= ~RXSTOPPED;
  2047. memoff(info);
  2048. }
  2049. restore_flags(flags);
  2050. }
  2051. }
  2052. static void pcxe_start(struct tty_struct *tty)
  2053. {
  2054. struct channel *info;
  2055. if ((info=chan(tty))!=NULL) {
  2056. unsigned long flags;
  2057. save_flags(flags);
  2058. cli();
  2059. /* Just in case output was resumed because of a change in Digi-flow */
  2060. if(info->statusflags & TXSTOPPED) {
  2061. volatile struct board_chan *bc;
  2062. globalwinon(info);
  2063. bc = info->brdchan;
  2064. if(info->statusflags & LOWWAIT)
  2065. bc->ilow = 1;
  2066. fepcmd(info, RESUMETX, 0, 0, 0, 0);
  2067. info->statusflags &= ~TXSTOPPED;
  2068. memoff(info);
  2069. }
  2070. restore_flags(flags);
  2071. }
  2072. }
  2073. void digi_send_break(struct channel *ch, int msec)
  2074. {
  2075. unsigned long flags;
  2076. save_flags(flags);
  2077. cli();
  2078. globalwinon(ch);
  2079. /* 
  2080.  * Maybe I should send an infinite break here, schedule() for
  2081.  * msec amount of time, and then stop the break.  This way,
  2082.  * the user can't screw up the FEP by causing digi_send_break()
  2083.  * to be called (i.e. via an ioctl()) more than once in msec amount 
  2084.  * of time.  Try this for now...
  2085.  */
  2086. fepcmd(ch, SENDBREAK, msec, 0, 10, 0);
  2087. memoff(ch);
  2088. restore_flags(flags);
  2089. }
  2090. static void setup_empty_event(struct tty_struct *tty, struct channel *ch)
  2091. {
  2092. volatile struct board_chan *bc;
  2093. unsigned long flags;
  2094. save_flags(flags);
  2095. cli();
  2096. globalwinon(ch);
  2097. ch->statusflags |= EMPTYWAIT;
  2098. bc = ch->brdchan;
  2099. bc->iempty = 1;
  2100. memoff(ch);
  2101. restore_flags(flags);
  2102. }