3 * (c) 1999 by Computone Corporation
5 ********************************************************************************
7 * PACKAGE: Linux tty Device Driver for IntelliPort family of multiport
8 * serial I/O controllers.
10 * DESCRIPTION: Mainline code for the device driver
12 *******************************************************************************/
15 // Fix the immediate DSS_NOW problem.
16 // Work over the channel stats return logic in ip2_ipl_ioctl so they
17 // make sense for all 256 possible channels and so the user space
18 // utilities will compile and work properly.
22 // 1.2.14 /\/\|=mhw=|\/\/
23 // Added bounds checking to ip2_ipl_ioctl to avoid potential terroristic acts.
24 // Changed the definition of ip2trace to be more consistent with kernel style
25 // Thanks to Andreas Dilger <adilger@turbolabs.com> for these updates
27 // 1.2.13 /\/\|=mhw=|\/\/
28 // DEVFS: Renamed ttf/{n} to tts/F{n} and cuf/{n} to cua/F{n} to conform
29 // to agreed devfs serial device naming convention.
31 // 1.2.12 /\/\|=mhw=|\/\/
32 // Cleaned up some remove queue cut and paste errors
34 // 1.2.11 /\/\|=mhw=|\/\/
35 // Clean up potential NULL pointer dereferences
36 // Clean up devfs registration
37 // Add kernel command line parsing for io and irq
38 // Compile defaults for io and irq are now set in ip2.c not ip2.h!
39 // Reworked poll_only hack for explicit parameter setting
40 // You must now EXPLICITLY set poll_only = 1 or set all irqs to 0
41 // Merged ip2_loadmain and old_ip2_init
42 // Converted all instances of interruptible_sleep_on into queue calls
43 // Most of these had no race conditions but better to clean up now
45 // 1.2.10 /\/\|=mhw=|\/\/
46 // Fixed the bottom half interrupt handler and enabled USE_IQI
47 // to split the interrupt handler into a formal top-half / bottom-half
48 // Fixed timing window on high speed processors that queued messages to
49 // the outbound mail fifo faster than the board could handle.
52 // Four box EX was barfing on >128k kmalloc, made structure smaller by
53 // reducing output buffer size
56 // Device file system support (MHW)
60 // Reload of ip2 without unloading ip2main hangs system on cat of /proc/modules
64 // DCD was not reported when CLOCAL was set on call to TIOCMGET
67 // TIOCMGET requests and waits for status return
68 // No DSS interrupts enabled except for DCD when needed
70 // For internal use only
72 //#define IP2DEBUG_INIT
73 //#define IP2DEBUG_OPEN
74 //#define IP2DEBUG_WRITE
75 //#define IP2DEBUG_READ
76 //#define IP2DEBUG_IOCTL
77 //#define IP2DEBUG_IPL
79 //#define IP2DEBUG_TRACE
86 #include <linux/ctype.h>
87 #include <linux/string.h>
88 #include <linux/fcntl.h>
89 #include <linux/errno.h>
90 #include <linux/module.h>
91 #include <linux/signal.h>
92 #include <linux/sched.h>
93 #include <linux/timer.h>
94 #include <linux/interrupt.h>
95 #include <linux/pci.h>
97 #include <linux/slab.h>
98 #include <linux/major.h>
99 #include <linux/wait.h>
100 #include <linux/device.h>
101 #include <linux/smp_lock.h>
102 #include <linux/firmware.h>
103 #include <linux/platform_device.h>
105 #include <linux/tty.h>
106 #include <linux/tty_flip.h>
107 #include <linux/termios.h>
108 #include <linux/tty_driver.h>
109 #include <linux/serial.h>
110 #include <linux/ptrace.h>
111 #include <linux/ioport.h>
113 #include <linux/cdk.h>
114 #include <linux/comstats.h>
115 #include <linux/delay.h>
116 #include <linux/bitops.h>
118 #include <asm/system.h>
122 #include <linux/vmalloc.h>
123 #include <linux/init.h>
125 #include <asm/uaccess.h>
127 #include "ip2types.h"
128 #include "ip2trace.h"
129 #include "ip2ioctl.h"
138 #include <linux/proc_fs.h>
139 #include <linux/seq_file.h>
141 static const struct file_operations ip2mem_proc_fops;
142 static int ip2_read_proc(char *, char **, off_t, int, int *, void * );
144 /********************/
145 /* Type Definitions */
146 /********************/
152 /* String constants to identify ourselves */
153 static const char pcName[] = "Computone IntelliPort Plus multiport driver";
154 static const char pcVersion[] = "1.2.14";
156 /* String constants for port names */
157 static const char pcDriver_name[] = "ip2";
158 static const char pcIpl[] = "ip2ipl";
160 /***********************/
161 /* Function Prototypes */
162 /***********************/
164 /* Global module entry functions */
166 /* Private (static) functions */
167 static int ip2_open(PTTY, struct file *);
168 static void ip2_close(PTTY, struct file *);
169 static int ip2_write(PTTY, const unsigned char *, int);
170 static int ip2_putchar(PTTY, unsigned char);
171 static void ip2_flush_chars(PTTY);
172 static int ip2_write_room(PTTY);
173 static int ip2_chars_in_buf(PTTY);
174 static void ip2_flush_buffer(PTTY);
175 static int ip2_ioctl(PTTY, struct file *, UINT, ULONG);
176 static void ip2_set_termios(PTTY, struct ktermios *);
177 static void ip2_set_line_discipline(PTTY);
178 static void ip2_throttle(PTTY);
179 static void ip2_unthrottle(PTTY);
180 static void ip2_stop(PTTY);
181 static void ip2_start(PTTY);
182 static void ip2_hangup(PTTY);
183 static int ip2_tiocmget(struct tty_struct *tty, struct file *file);
184 static int ip2_tiocmset(struct tty_struct *tty, struct file *file,
185 unsigned int set, unsigned int clear);
187 static void set_irq(int, int);
188 static void ip2_interrupt_bh(struct work_struct *work);
189 static irqreturn_t ip2_interrupt(int irq, void *dev_id);
190 static void ip2_poll(unsigned long arg);
191 static inline void service_all_boards(void);
192 static void do_input(struct work_struct *);
193 static void do_status(struct work_struct *);
195 static void ip2_wait_until_sent(PTTY,int);
197 static void set_params (i2ChanStrPtr, struct ktermios *);
198 static int get_serial_info(i2ChanStrPtr, struct serial_struct __user *);
199 static int set_serial_info(i2ChanStrPtr, struct serial_struct __user *);
201 static ssize_t ip2_ipl_read(struct file *, char __user *, size_t, loff_t *);
202 static ssize_t ip2_ipl_write(struct file *, const char __user *, size_t, loff_t *);
203 static long ip2_ipl_ioctl(struct file *, UINT, ULONG);
204 static int ip2_ipl_open(struct inode *, struct file *);
206 static int DumpTraceBuffer(char __user *, int);
207 static int DumpFifoBuffer( char __user *, int);
209 static void ip2_init_board(int, const struct firmware *);
210 static unsigned short find_eisa_board(int);
216 static struct tty_driver *ip2_tty_driver;
218 /* Here, then is a table of board pointers which the interrupt routine should
219 * scan through to determine who it must service.
221 static unsigned short i2nBoards; // Number of boards here
223 static i2eBordStrPtr i2BoardPtrTable[IP2_MAX_BOARDS];
225 static i2ChanStrPtr DevTable[IP2_MAX_PORTS];
226 //DevTableMem just used to save addresses for kfree
227 static void *DevTableMem[IP2_MAX_BOARDS];
229 /* This is the driver descriptor for the ip2ipl device, which is used to
230 * download the loadware to the boards.
232 static const struct file_operations ip2_ipl = {
233 .owner = THIS_MODULE,
234 .read = ip2_ipl_read,
235 .write = ip2_ipl_write,
236 .unlocked_ioctl = ip2_ipl_ioctl,
237 .open = ip2_ipl_open,
240 static unsigned long irq_counter;
241 static unsigned long bh_counter;
243 // Use immediate queue to service interrupts
245 //#define USE_IQ // PCI&2.2 needs work
247 /* The timer_list entry for our poll routine. If interrupt operation is not
248 * selected, the board is serviced periodically to see if anything needs doing.
250 #define POLL_TIMEOUT (jiffies + 1)
251 static DEFINE_TIMER(PollTimer, ip2_poll, 0, 0);
254 #ifdef IP2DEBUG_TRACE
255 /* Trace (debug) buffer data */
256 #define TRACEMAX 1000
257 static unsigned long tracebuf[TRACEMAX];
258 static int tracestuff;
259 static int tracestrip;
260 static int tracewrap;
267 #if defined(MODULE) && defined(IP2DEBUG_OPEN)
268 #define DBG_CNT(s) printk(KERN_DEBUG "(%s): [%x] refc=%d, ttyc=%d, modc=%x -> %s\n", \
269 tty->name,(pCh->flags),ip2_tty_driver->refcount, \
270 tty->count,/*GET_USE_COUNT(module)*/0,s)
279 #include "i2ellis.c" /* Extremely low-level interface services */
280 #include "i2cmd.c" /* Standard loadware command definitions */
281 #include "i2lib.c" /* High level interface services */
283 /* Configuration area for modprobe */
285 MODULE_AUTHOR("Doug McNash");
286 MODULE_DESCRIPTION("Computone IntelliPort Plus Driver");
287 MODULE_LICENSE("GPL");
289 static int poll_only;
292 static int Eisa_slot;
295 static char rirqs[IP2_MAX_BOARDS];
296 static int Valid_Irqs[] = { 3, 4, 5, 7, 10, 11, 12, 15, 0};
298 /* Note: Add compiled in defaults to these arrays, not to the structure
299 in ip2.h any longer. That structure WILL get overridden
300 by these values, or command line values, or insmod values!!! =mhw=
302 static int io[IP2_MAX_BOARDS];
303 static int irq[IP2_MAX_BOARDS] = { -1, -1, -1, -1 };
305 MODULE_AUTHOR("Doug McNash");
306 MODULE_DESCRIPTION("Computone IntelliPort Plus Driver");
307 module_param_array(irq, int, NULL, 0);
308 MODULE_PARM_DESC(irq, "Interrupts for IntelliPort Cards");
309 module_param_array(io, int, NULL, 0);
310 MODULE_PARM_DESC(io, "I/O ports for IntelliPort Cards");
311 module_param(poll_only, bool, 0);
312 MODULE_PARM_DESC(poll_only, "Do not use card interrupts");
314 /* for sysfs class support */
315 static struct class *ip2_class;
317 // Some functions to keep track of what irq's we have
320 is_valid_irq(int irq)
324 while ((*i != 0) && (*i != irq)) {
331 mark_requested_irq( char irq )
333 rirqs[iindx++] = irq;
338 clear_requested_irq( char irq )
341 for ( i = 0; i < IP2_MAX_BOARDS; ++i ) {
342 if (rirqs[i] == irq) {
352 have_requested_irq( char irq )
354 // array init to zeros so 0 irq will not be requested as a side effect
356 for ( i = 0; i < IP2_MAX_BOARDS; ++i ) {
363 /******************************************************************************/
364 /* Function: cleanup_module() */
365 /* Parameters: None */
366 /* Returns: Nothing */
369 /* This is a required entry point for an installable module. It has to return */
370 /* the device and the driver to a passive state. It should not be necessary */
371 /* to reset the board fully, especially as the loadware is downloaded */
372 /* externally rather than in the driver. We just want to disable the board */
373 /* and clear the loadware to a reset state. To allow this there has to be a */
374 /* way to detect whether the board has the loadware running at init time to */
375 /* handle subsequent installations of the driver. All memory allocated by the */
376 /* driver should be returned since it may be unloaded from memory. */
377 /******************************************************************************/
378 static void __exit ip2_cleanup_module(void)
384 printk (KERN_DEBUG "Unloading %s: version %s\n", pcName, pcVersion );
386 /* Stop poll timer if we had one. */
388 del_timer ( &PollTimer );
392 /* Reset the boards we have. */
393 for( i = 0; i < IP2_MAX_BOARDS; ++i ) {
394 if ( i2BoardPtrTable[i] ) {
395 iiReset( i2BoardPtrTable[i] );
399 /* The following is done at most once, if any boards were installed. */
400 for ( i = 0; i < IP2_MAX_BOARDS; ++i ) {
401 if ( i2BoardPtrTable[i] ) {
402 iiResetDelay( i2BoardPtrTable[i] );
403 /* free io addresses and Tibet */
404 release_region( ip2config.addr[i], 8 );
405 device_destroy(ip2_class, MKDEV(IP2_IPL_MAJOR, 4 * i));
406 device_destroy(ip2_class, MKDEV(IP2_IPL_MAJOR, 4 * i + 1));
408 /* Disable and remove interrupt handler. */
409 if ( (ip2config.irq[i] > 0) && have_requested_irq(ip2config.irq[i]) ) {
410 free_irq ( ip2config.irq[i], (void *)&pcName);
411 clear_requested_irq( ip2config.irq[i]);
414 class_destroy(ip2_class);
415 if ( ( err = tty_unregister_driver ( ip2_tty_driver ) ) ) {
416 printk(KERN_ERR "IP2: failed to unregister tty driver (%d)\n", err);
418 put_tty_driver(ip2_tty_driver);
419 unregister_chrdev(IP2_IPL_MAJOR, pcIpl);
420 remove_proc_entry("ip2mem", NULL);
423 for (i = 0; i < IP2_MAX_BOARDS; i++) {
426 if (ip2config.type[i] == PCI && ip2config.pci_dev[i]) {
427 pci_disable_device(ip2config.pci_dev[i]);
428 pci_dev_put(ip2config.pci_dev[i]);
429 ip2config.pci_dev[i] = NULL;
432 pB = i2BoardPtrTable[i];
435 i2BoardPtrTable[i] = NULL;
437 if ((DevTableMem[i]) != NULL ) {
438 kfree ( DevTableMem[i] );
439 DevTableMem[i] = NULL;
443 /* Cleanup the iiEllis subsystem. */
446 printk (KERN_DEBUG "IP2 Unloaded\n" );
449 module_exit(ip2_cleanup_module);
451 static const struct tty_operations ip2_ops = {
455 .put_char = ip2_putchar,
456 .flush_chars = ip2_flush_chars,
457 .write_room = ip2_write_room,
458 .chars_in_buffer = ip2_chars_in_buf,
459 .flush_buffer = ip2_flush_buffer,
461 .throttle = ip2_throttle,
462 .unthrottle = ip2_unthrottle,
463 .set_termios = ip2_set_termios,
464 .set_ldisc = ip2_set_line_discipline,
467 .hangup = ip2_hangup,
468 .read_proc = ip2_read_proc,
469 .tiocmget = ip2_tiocmget,
470 .tiocmset = ip2_tiocmset,
473 /******************************************************************************/
474 /* Function: ip2_loadmain() */
475 /* Parameters: irq, io from command line of insmod et. al. */
476 /* pointer to fip firmware and firmware size for boards */
477 /* Returns: Success (0) */
480 /* This was the required entry point for all drivers (now in ip2.c) */
481 /* It performs all */
482 /* initialisation of the devices and driver structures, and registers itself */
483 /* with the relevant kernel modules. */
484 /******************************************************************************/
485 /* IRQF_DISABLED - if set blocks all interrupts else only this line */
486 /* IRQF_SHARED - for shared irq PCI or maybe EISA only */
487 /* SA_RANDOM - can be source for cert. random number generators */
488 #define IP2_SA_FLAGS 0
491 static const struct firmware *ip2_request_firmware(void)
493 struct platform_device *pdev;
494 const struct firmware *fw;
496 pdev = platform_device_register_simple("ip2", 0, NULL, 0);
498 printk(KERN_ERR "Failed to register platform device for ip2\n");
501 if (request_firmware(&fw, "intelliport2.bin", &pdev->dev)) {
502 printk(KERN_ERR "Failed to load firmware 'intelliport2.bin'\n");
505 platform_device_unregister(pdev);
510 /******************************************************************************
512 * str: kernel command line string
514 * Can't autoprobe the boards so user must specify configuration on
515 * kernel command line. Sane people build it modular but the others
518 * Alternating pairs of io,irq for up to 4 boards.
519 * ip2=io0,irq0,io1,irq1,io2,irq2,io3,irq3
524 * else => ISA I/O address
526 * irq=0 or invalid for ISA will revert to polling mode
528 * Any value = -1, do not overwrite compiled in value.
530 ******************************************************************************/
531 static int __init ip2_setup(char *str)
533 int j, ints[10]; /* 4 boards, 2 parameters + 2 */
536 str = get_options(str, ARRAY_SIZE(ints), ints);
538 for (i = 0, j = 1; i < 4; i++) {
552 __setup("ip2=", ip2_setup);
555 static int ip2_loadmain(void)
560 i2eBordStrPtr pB = NULL;
562 static struct pci_dev *pci_dev_i = NULL;
563 const struct firmware *fw = NULL;
566 /* Hard lock the interrupts to zero */
567 irq[0] = irq[1] = irq[2] = irq[3] = poll_only = 0;
570 ip2trace (ITRC_NO_PORT, ITRC_INIT, ITRC_ENTER, 0 );
572 /* process command line arguments to modprobe or
573 insmod i.e. iop & irqp */
574 /* irqp and iop should ALWAYS be specified now... But we check
575 them individually just to be sure, anyways... */
576 for ( i = 0; i < IP2_MAX_BOARDS; ++i ) {
577 ip2config.addr[i] = io[i];
579 ip2config.irq[i] = irq[i];
581 ip2config.irq[i] = 0;
582 // This is a little bit of a hack. If poll_only=1 on command
583 // line back in ip2.c OR all IRQs on all specified boards are
584 // explicitly set to 0, then drop to poll only mode and override
585 // PCI or EISA interrupts. This superceeds the old hack of
586 // triggering if all interrupts were zero (like da default).
587 // Still a hack but less prone to random acts of terrorism.
589 // What we really should do, now that the IRQ default is set
590 // to -1, is to use 0 as a hard coded, do not probe.
595 poll_only = !poll_only;
597 /* Announce our presence */
598 printk( KERN_INFO "%s version %s\n", pcName, pcVersion );
600 // ip2 can be unloaded and reloaded for no good reason
601 // we can't let that happen here or bad things happen
602 // second load hoses board but not system - fixme later
604 printk( KERN_INFO "Still loaded\n" );
609 ip2_tty_driver = alloc_tty_driver(IP2_MAX_PORTS);
613 /* Initialise the iiEllis subsystem. */
616 /* Initialise all the boards we can find (up to the maximum). */
617 for ( i = 0; i < IP2_MAX_BOARDS; ++i ) {
618 switch ( ip2config.addr[i] ) {
619 case 0: /* skip this slot even if card is present */
622 /* ISA address must be specified */
623 if ( (ip2config.addr[i] < 0x100) || (ip2config.addr[i] > 0x3f8) ) {
624 printk ( KERN_ERR "IP2: Bad ISA board %d address %x\n",
625 i, ip2config.addr[i] );
626 ip2config.addr[i] = 0;
628 ip2config.type[i] = ISA;
630 /* Check for valid irq argument, set for polling if invalid */
631 if (ip2config.irq[i] && !is_valid_irq(ip2config.irq[i])) {
632 printk(KERN_ERR "IP2: Bad IRQ(%d) specified\n",ip2config.irq[i]);
633 ip2config.irq[i] = 0;// 0 is polling and is valid in that sense
642 pci_dev_i = pci_get_device(PCI_VENDOR_ID_COMPUTONE,
643 PCI_DEVICE_ID_COMPUTONE_IP2EX, pci_dev_i);
644 if (pci_dev_i != NULL) {
647 if (pci_enable_device(pci_dev_i)) {
648 printk( KERN_ERR "IP2: can't enable PCI device at %s\n",
649 pci_name(pci_dev_i));
652 ip2config.type[i] = PCI;
653 ip2config.pci_dev[i] = pci_dev_get(pci_dev_i);
655 pci_read_config_dword(pci_dev_i, PCI_BASE_ADDRESS_1, &addr);
657 ip2config.addr[i]=(USHORT)(addr&0xfffe);
659 printk( KERN_ERR "IP2: PCI I/O address error\n");
662 // If the PCI BIOS assigned it, lets try and use it. If we
663 // can't acquire it or it screws up, deal with it then.
665 // if (!is_valid_irq(pci_irq)) {
666 // printk( KERN_ERR "IP2: Bad PCI BIOS IRQ(%d)\n",pci_irq);
669 ip2config.irq[i] = pci_dev_i->irq;
670 } else { // ann error
671 ip2config.addr[i] = 0;
672 printk(KERN_ERR "IP2: PCI board %d not found\n", i);
676 printk( KERN_ERR "IP2: PCI card specified but PCI support not\n");
677 printk( KERN_ERR "IP2: configured in this kernel.\n");
678 printk( KERN_ERR "IP2: Recompile kernel with CONFIG_PCI defined!\n");
679 #endif /* CONFIG_PCI */
682 if ( (ip2config.addr[i] = find_eisa_board( Eisa_slot + 1 )) != 0) {
683 /* Eisa_irq set as side effect, boo */
684 ip2config.type[i] = EISA;
686 ip2config.irq[i] = Eisa_irq;
691 pci_dev_put(pci_dev_i);
693 for ( i = 0; i < IP2_MAX_BOARDS; ++i ) {
694 if ( ip2config.addr[i] ) {
695 pB = kzalloc(sizeof(i2eBordStr), GFP_KERNEL);
697 i2BoardPtrTable[i] = pB;
698 iiSetAddress( pB, ip2config.addr[i], ii2DelayTimer );
701 printk(KERN_ERR "IP2: board memory allocation error\n");
705 for ( i = 0; i < IP2_MAX_BOARDS; ++i ) {
706 if ( ( pB = i2BoardPtrTable[i] ) != NULL ) {
711 for ( i = 0; i < IP2_MAX_BOARDS; ++i ) {
712 /* We don't want to request the firmware unless we have at
714 if ( i2BoardPtrTable[i] != NULL ) {
716 fw = ip2_request_firmware();
719 ip2_init_board(i, fw);
723 release_firmware(fw);
725 ip2trace (ITRC_NO_PORT, ITRC_INIT, 2, 0 );
727 ip2_tty_driver->owner = THIS_MODULE;
728 ip2_tty_driver->name = "ttyF";
729 ip2_tty_driver->driver_name = pcDriver_name;
730 ip2_tty_driver->major = IP2_TTY_MAJOR;
731 ip2_tty_driver->minor_start = 0;
732 ip2_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
733 ip2_tty_driver->subtype = SERIAL_TYPE_NORMAL;
734 ip2_tty_driver->init_termios = tty_std_termios;
735 ip2_tty_driver->init_termios.c_cflag = B9600|CS8|CREAD|HUPCL|CLOCAL;
736 ip2_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
737 tty_set_operations(ip2_tty_driver, &ip2_ops);
739 ip2trace (ITRC_NO_PORT, ITRC_INIT, 3, 0 );
741 /* Register the tty devices. */
742 if ( ( err = tty_register_driver ( ip2_tty_driver ) ) ) {
743 printk(KERN_ERR "IP2: failed to register tty driver (%d)\n", err);
744 put_tty_driver(ip2_tty_driver);
747 /* Register the IPL driver. */
748 if ( ( err = register_chrdev ( IP2_IPL_MAJOR, pcIpl, &ip2_ipl ) ) ) {
749 printk(KERN_ERR "IP2: failed to register IPL device (%d)\n", err );
751 /* create the sysfs class */
752 ip2_class = class_create(THIS_MODULE, "ip2");
753 if (IS_ERR(ip2_class)) {
754 err = PTR_ERR(ip2_class);
758 /* Register the read_procmem thing */
759 if (!proc_create("ip2mem",0,NULL,&ip2mem_proc_fops)) {
760 printk(KERN_ERR "IP2: failed to register read_procmem\n");
763 ip2trace (ITRC_NO_PORT, ITRC_INIT, 4, 0 );
764 /* Register the interrupt handler or poll handler, depending upon the
765 * specified interrupt.
768 for( i = 0; i < IP2_MAX_BOARDS; ++i ) {
769 if ( 0 == ip2config.addr[i] ) {
773 if ( NULL != ( pB = i2BoardPtrTable[i] ) ) {
774 device_create_drvdata(ip2_class, NULL,
775 MKDEV(IP2_IPL_MAJOR, 4 * i),
777 device_create_drvdata(ip2_class, NULL,
778 MKDEV(IP2_IPL_MAJOR, 4 * i + 1),
781 for ( box = 0; box < ABS_MAX_BOXES; ++box )
783 for ( j = 0; j < ABS_BIGGEST_BOX; ++j )
785 if ( pB->i2eChannelMap[box] & (1 << j) )
787 tty_register_device(ip2_tty_driver,
788 j + ABS_BIGGEST_BOX *
789 (box+i*ABS_MAX_BOXES), NULL);
796 // Poll only forces driver to only use polling and
797 // to ignore the probed PCI or EISA interrupts.
798 ip2config.irq[i] = CIR_POLL;
800 if ( ip2config.irq[i] == CIR_POLL ) {
803 PollTimer.expires = POLL_TIMEOUT;
804 add_timer ( &PollTimer );
806 printk( KERN_INFO "IP2: polling\n");
809 if (have_requested_irq(ip2config.irq[i]))
811 rc = request_irq( ip2config.irq[i], ip2_interrupt,
812 IP2_SA_FLAGS | (ip2config.type[i] == PCI ? IRQF_SHARED : 0),
813 pcName, i2BoardPtrTable[i]);
815 printk(KERN_ERR "IP2: an request_irq failed: error %d\n",rc);
816 ip2config.irq[i] = CIR_POLL;
817 printk( KERN_INFO "IP2: Polling %ld/sec.\n",
818 (POLL_TIMEOUT - jiffies));
821 mark_requested_irq(ip2config.irq[i]);
822 /* Initialise the interrupt handler bottom half (aka slih). */
825 for( i = 0; i < IP2_MAX_BOARDS; ++i ) {
826 if ( i2BoardPtrTable[i] ) {
827 set_irq( i, ip2config.irq[i] ); /* set and enable board interrupt */
831 ip2trace (ITRC_NO_PORT, ITRC_INIT, ITRC_RETURN, 0 );
835 unregister_chrdev(IP2_IPL_MAJOR, "ip2");
839 module_init(ip2_loadmain);
841 /******************************************************************************/
842 /* Function: ip2_init_board() */
843 /* Parameters: Index of board in configuration structure */
844 /* Returns: Success (0) */
847 /* This function initializes the specified board. The loadware is copied to */
848 /* the board, the channel structures are initialized, and the board details */
849 /* are reported on the console. */
850 /******************************************************************************/
852 ip2_init_board(int boardnum, const struct firmware *fw)
855 int nports = 0, nboxes = 0;
857 i2eBordStrPtr pB = i2BoardPtrTable[boardnum];
859 if ( !iiInitialize ( pB ) ) {
860 printk ( KERN_ERR "IP2: Failed to initialize board at 0x%x, error %d\n",
861 pB->i2eBase, pB->i2eError );
864 printk(KERN_INFO "IP2: Board %d: addr=0x%x irq=%d\n", boardnum + 1,
865 ip2config.addr[boardnum], ip2config.irq[boardnum] );
867 if (!request_region( ip2config.addr[boardnum], 8, pcName )) {
868 printk(KERN_ERR "IP2: bad addr=0x%x\n", ip2config.addr[boardnum]);
872 if ( iiDownloadAll ( pB, (loadHdrStrPtr)fw->data, 1, fw->size )
874 printk ( KERN_ERR "IP2: failed to download loadware\n" );
875 goto err_release_region;
877 printk ( KERN_INFO "IP2: fv=%d.%d.%d lv=%d.%d.%d\n",
878 pB->i2ePom.e.porVersion,
879 pB->i2ePom.e.porRevision,
880 pB->i2ePom.e.porSubRev, pB->i2eLVersion,
881 pB->i2eLRevision, pB->i2eLSub );
884 switch ( pB->i2ePom.e.porID & ~POR_ID_RESERVED ) {
887 printk( KERN_ERR "IP2: Unknown board type, ID = %x\n",
888 pB->i2ePom.e.porID );
890 goto err_release_region;
893 case POR_ID_II_4: /* IntelliPort-II, ISA-4 (4xRJ45) */
894 printk ( KERN_INFO "IP2: ISA-4\n" );
898 case POR_ID_II_8: /* IntelliPort-II, 8-port using standard brick. */
899 printk ( KERN_INFO "IP2: ISA-8 std\n" );
903 case POR_ID_II_8R: /* IntelliPort-II, 8-port using RJ11's (no CTS) */
904 printk ( KERN_INFO "IP2: ISA-8 RJ11\n" );
908 case POR_ID_FIIEX: /* IntelliPort IIEX */
910 int portnum = IP2_PORTS_PER_BOARD * boardnum;
913 for( box = 0; box < ABS_MAX_BOXES; ++box ) {
914 if ( pB->i2eChannelMap[box] != 0 ) {
917 for( i = 0; i < ABS_BIGGEST_BOX; ++i ) {
918 if ( pB->i2eChannelMap[box] & 1<< i ) {
923 DevTableMem[boardnum] = pCh =
924 kmalloc( sizeof(i2ChanStr) * nports, GFP_KERNEL );
926 printk ( KERN_ERR "IP2: (i2_init_channel:) Out of memory.\n");
927 goto err_release_region;
929 if ( !i2InitChannels( pB, nports, pCh ) ) {
930 printk(KERN_ERR "IP2: i2InitChannels failed: %d\n",pB->i2eError);
932 goto err_release_region;
934 pB->i2eChannelPtr = &DevTable[portnum];
935 pB->i2eChannelCnt = ABS_MOST_PORTS;
937 for( box = 0; box < ABS_MAX_BOXES; ++box, portnum += ABS_BIGGEST_BOX ) {
938 for( i = 0; i < ABS_BIGGEST_BOX; ++i ) {
939 if ( pB->i2eChannelMap[box] & (1 << i) ) {
940 DevTable[portnum + i] = pCh;
941 pCh->port_index = portnum + i;
946 printk(KERN_INFO "IP2: EX box=%d ports=%d %d bit\n",
947 nboxes, nports, pB->i2eDataWidth16 ? 16 : 8 );
951 DevTableMem[boardnum] = pCh =
952 kmalloc ( sizeof (i2ChanStr) * nports, GFP_KERNEL );
954 printk ( KERN_ERR "IP2: (i2_init_channel:) Out of memory.\n");
955 goto err_release_region;
957 pB->i2eChannelPtr = pCh;
958 pB->i2eChannelCnt = nports;
959 if ( !i2InitChannels( pB, nports, pCh ) ) {
960 printk(KERN_ERR "IP2: i2InitChannels failed: %d\n",pB->i2eError);
962 goto err_release_region;
964 pB->i2eChannelPtr = &DevTable[IP2_PORTS_PER_BOARD * boardnum];
966 for( i = 0; i < pB->i2eChannelCnt; ++i ) {
967 DevTable[IP2_PORTS_PER_BOARD * boardnum + i] = pCh;
968 pCh->port_index = (IP2_PORTS_PER_BOARD * boardnum) + i;
972 INIT_WORK(&pB->tqueue_interrupt, ip2_interrupt_bh);
976 release_region(ip2config.addr[boardnum], 8);
979 i2BoardPtrTable[boardnum] = NULL;
983 /******************************************************************************/
984 /* Function: find_eisa_board ( int start_slot ) */
985 /* Parameters: First slot to check */
986 /* Returns: Address of EISA IntelliPort II controller */
989 /* This function searches for an EISA IntelliPort controller, starting */
990 /* from the specified slot number. If the motherboard is not identified as an */
991 /* EISA motherboard, or no valid board ID is selected it returns 0. Otherwise */
992 /* it returns the base address of the controller. */
993 /******************************************************************************/
994 static unsigned short
995 find_eisa_board( int start_slot )
998 unsigned int idm = 0;
999 unsigned int idp = 0;
1000 unsigned int base = 0;
1007 * First a check for an EISA motherboard, which we do by comparing the
1008 * EISA ID registers for the system board and the first couple of slots.
1009 * No slot ID should match the system board ID, but on an ISA or PCI
1010 * machine the odds are that an empty bus will return similar values for
1014 value = (inb(i) << 24) + (inb(i+1) << 16) + (inb(i+2) << 8) + inb(i+3);
1015 for( i = 0x1c80; i <= 0x4c80; i += 0x1000 ) {
1016 j = (inb(i)<<24)+(inb(i+1)<<16)+(inb(i+2)<<8)+inb(i+3);
1022 * OK, so we are inclined to believe that this is an EISA machine. Find
1023 * an IntelliPort controller.
1025 for( i = start_slot; i < 16; i++ ) {
1027 idm = (inb(base + 0xc80) << 8) | (inb(base + 0xc81) & 0xff);
1028 idp = (inb(base + 0xc82) << 8) | (inb(base + 0xc83) & 0xff);
1030 if ( idm == 0x0e8e ) {
1031 if ( idp == 0x0281 || idp == 0x0218 ) {
1033 } else if ( idp == 0x0282 || idp == 0x0283 ) {
1034 ismine = 3; /* Can do edge-trigger */
1045 /* It's some sort of EISA card, but at what address is it configured? */
1047 setup_address = base + 0xc88;
1048 value = inb(base + 0xc86);
1049 setup_irq = (value & 8) ? Valid_Irqs[value & 7] : 0;
1051 if ( (ismine & 2) && !(value & 0x10) ) {
1052 ismine = 1; /* Could be edging, but not */
1055 if ( Eisa_irq == 0 ) {
1056 Eisa_irq = setup_irq;
1057 } else if ( Eisa_irq != setup_irq ) {
1058 printk ( KERN_ERR "IP2: EISA irq mismatch between EISA controllers\n" );
1061 #ifdef IP2DEBUG_INIT
1062 printk(KERN_DEBUG "Computone EISA board in slot %d, I.D. 0x%x%x, Address 0x%x",
1063 base >> 12, idm, idp, setup_address);
1065 printk(KERN_DEBUG ", Interrupt %d %s\n",
1066 setup_irq, (ismine & 2) ? "(edge)" : "(level)");
1068 printk(KERN_DEBUG ", (polled)\n");
1071 return setup_address;
1074 /******************************************************************************/
1075 /* Function: set_irq() */
1076 /* Parameters: index to board in board table */
1078 /* Returns: Success (0) */
1081 /******************************************************************************/
1083 set_irq( int boardnum, int boardIrq )
1085 unsigned char tempCommand[16];
1086 i2eBordStrPtr pB = i2BoardPtrTable[boardnum];
1087 unsigned long flags;
1090 * Notify the boards they may generate interrupts. This is done by
1091 * sending an in-line command to channel 0 on each board. This is why
1092 * the channels have to be defined already. For each board, if the
1093 * interrupt has never been defined, we must do so NOW, directly, since
1094 * board will not send flow control or even give an interrupt until this
1095 * is done. If polling we must send 0 as the interrupt parameter.
1098 // We will get an interrupt here at the end of this function
1100 iiDisableMailIrq(pB);
1102 /* We build up the entire packet header. */
1103 CHANNEL_OF(tempCommand) = 0;
1104 PTYPE_OF(tempCommand) = PTYPE_INLINE;
1105 CMD_COUNT_OF(tempCommand) = 2;
1106 (CMD_OF(tempCommand))[0] = CMDVALUE_IRQ;
1107 (CMD_OF(tempCommand))[1] = boardIrq;
1109 * Write to FIFO; don't bother to adjust fifo capacity for this, since
1110 * board will respond almost immediately after SendMail hit.
1112 write_lock_irqsave(&pB->write_fifo_spinlock, flags);
1113 iiWriteBuf(pB, tempCommand, 4);
1114 write_unlock_irqrestore(&pB->write_fifo_spinlock, flags);
1115 pB->i2eUsingIrq = boardIrq;
1116 pB->i2eOutMailWaiting |= MB_OUT_STUFFED;
1118 /* Need to update number of boards before you enable mailbox int */
1121 CHANNEL_OF(tempCommand) = 0;
1122 PTYPE_OF(tempCommand) = PTYPE_BYPASS;
1123 CMD_COUNT_OF(tempCommand) = 6;
1124 (CMD_OF(tempCommand))[0] = 88; // SILO
1125 (CMD_OF(tempCommand))[1] = 64; // chars
1126 (CMD_OF(tempCommand))[2] = 32; // ms
1128 (CMD_OF(tempCommand))[3] = 28; // MAX_BLOCK
1129 (CMD_OF(tempCommand))[4] = 64; // chars
1131 (CMD_OF(tempCommand))[5] = 87; // HW_TEST
1132 write_lock_irqsave(&pB->write_fifo_spinlock, flags);
1133 iiWriteBuf(pB, tempCommand, 8);
1134 write_unlock_irqrestore(&pB->write_fifo_spinlock, flags);
1136 CHANNEL_OF(tempCommand) = 0;
1137 PTYPE_OF(tempCommand) = PTYPE_BYPASS;
1138 CMD_COUNT_OF(tempCommand) = 1;
1139 (CMD_OF(tempCommand))[0] = 84; /* get BOX_IDS */
1140 iiWriteBuf(pB, tempCommand, 3);
1143 // enable heartbeat for test porpoises
1144 CHANNEL_OF(tempCommand) = 0;
1145 PTYPE_OF(tempCommand) = PTYPE_BYPASS;
1146 CMD_COUNT_OF(tempCommand) = 2;
1147 (CMD_OF(tempCommand))[0] = 44; /* get ping */
1148 (CMD_OF(tempCommand))[1] = 200; /* 200 ms */
1149 write_lock_irqsave(&pB->write_fifo_spinlock, flags);
1150 iiWriteBuf(pB, tempCommand, 4);
1151 write_unlock_irqrestore(&pB->write_fifo_spinlock, flags);
1154 iiEnableMailIrq(pB);
1155 iiSendPendingMail(pB);
1158 /******************************************************************************/
1159 /* Interrupt Handler Section */
1160 /******************************************************************************/
1163 service_all_boards(void)
1168 /* Service every board on the list */
1169 for( i = 0; i < IP2_MAX_BOARDS; ++i ) {
1170 pB = i2BoardPtrTable[i];
1172 i2ServiceBoard( pB );
1178 /******************************************************************************/
1179 /* Function: ip2_interrupt_bh(work) */
1180 /* Parameters: work - pointer to the board structure */
1181 /* Returns: Nothing */
1184 /* Service the board in a bottom half interrupt handler and then */
1185 /* reenable the board's interrupts if it has an IRQ number */
1187 /******************************************************************************/
1189 ip2_interrupt_bh(struct work_struct *work)
1191 i2eBordStrPtr pB = container_of(work, i2eBordStr, tqueue_interrupt);
1192 // pB better well be set or we have a problem! We can only get
1193 // here from the IMMEDIATE queue. Here, we process the boards.
1194 // Checking pB doesn't cost much and it saves us from the sanity checkers.
1199 i2ServiceBoard( pB );
1200 if( pB->i2eUsingIrq ) {
1201 // Re-enable his interrupts
1202 iiEnableMailIrq(pB);
1208 /******************************************************************************/
1209 /* Function: ip2_interrupt(int irq, void *dev_id) */
1210 /* Parameters: irq - interrupt number */
1211 /* pointer to optional device ID structure */
1212 /* Returns: Nothing */
1216 /* Our task here is simply to identify each board which needs servicing. */
1217 /* If we are queuing then, queue it to be serviced, and disable its irq */
1218 /* mask otherwise process the board directly. */
1220 /* We could queue by IRQ but that just complicates things on both ends */
1221 /* with very little gain in performance (how many instructions does */
1222 /* it take to iterate on the immediate queue). */
1225 /******************************************************************************/
1227 ip2_irq_work(i2eBordStrPtr pB)
1230 if (NO_MAIL_HERE != ( pB->i2eStartMail = iiGetMail(pB))) {
1231 // Disable his interrupt (will be enabled when serviced)
1232 // This is mostly to protect from reentrancy.
1233 iiDisableMailIrq(pB);
1235 // Park the board on the immediate queue for processing.
1236 schedule_work(&pB->tqueue_interrupt);
1238 // Make sure the immediate queue is flagged to fire.
1242 // We are using immediate servicing here. This sucks and can
1243 // cause all sorts of havoc with ppp and others. The failsafe
1244 // check on iiSendPendingMail could also throw a hairball.
1246 i2ServiceBoard( pB );
1248 #endif /* USE_IQI */
1252 ip2_polled_interrupt(void)
1257 ip2trace(ITRC_NO_PORT, ITRC_INTR, 99, 1, 0);
1259 /* Service just the boards on the list using this irq */
1260 for( i = 0; i < i2nBoards; ++i ) {
1261 pB = i2BoardPtrTable[i];
1263 // Only process those boards which match our IRQ.
1264 // IRQ = 0 for polled boards, we won't poll "IRQ" boards
1266 if (pB && pB->i2eUsingIrq == 0)
1272 ip2trace (ITRC_NO_PORT, ITRC_INTR, ITRC_RETURN, 0 );
1276 ip2_interrupt(int irq, void *dev_id)
1278 i2eBordStrPtr pB = dev_id;
1280 ip2trace (ITRC_NO_PORT, ITRC_INTR, 99, 1, pB->i2eUsingIrq );
1286 ip2trace (ITRC_NO_PORT, ITRC_INTR, ITRC_RETURN, 0 );
1290 /******************************************************************************/
1291 /* Function: ip2_poll(unsigned long arg) */
1293 /* Returns: Nothing */
1296 /* This function calls the library routine i2ServiceBoard for each board in */
1297 /* the board table. This is used instead of the interrupt routine when polled */
1298 /* mode is specified. */
1299 /******************************************************************************/
1301 ip2_poll(unsigned long arg)
1303 ip2trace (ITRC_NO_PORT, ITRC_INTR, 100, 0 );
1305 TimerOn = 0; // it's the truth but not checked in service
1307 // Just polled boards, IRQ = 0 will hit all non-interrupt boards.
1308 // It will NOT poll boards handled by hard interrupts.
1309 // The issue of queued BH interrupts is handled in ip2_interrupt().
1310 ip2_polled_interrupt();
1312 PollTimer.expires = POLL_TIMEOUT;
1313 add_timer( &PollTimer );
1316 ip2trace (ITRC_NO_PORT, ITRC_INTR, ITRC_RETURN, 0 );
1319 static void do_input(struct work_struct *work)
1321 i2ChanStrPtr pCh = container_of(work, i2ChanStr, tqueue_input);
1322 unsigned long flags;
1324 ip2trace(CHANN, ITRC_INPUT, 21, 0 );
1327 if ( pCh->pTTY != NULL ) {
1328 read_lock_irqsave(&pCh->Ibuf_spinlock, flags);
1329 if (!pCh->throttled && (pCh->Ibuf_stuff != pCh->Ibuf_strip)) {
1330 read_unlock_irqrestore(&pCh->Ibuf_spinlock, flags);
1333 read_unlock_irqrestore(&pCh->Ibuf_spinlock, flags);
1335 ip2trace(CHANN, ITRC_INPUT, 22, 0 );
1337 i2InputFlush( pCh );
1341 // code duplicated from n_tty (ldisc)
1342 static inline void isig(int sig, struct tty_struct *tty, int flush)
1344 /* FIXME: This is completely bogus */
1346 kill_pgrp(tty->pgrp, sig, 1);
1347 if (flush || !L_NOFLSH(tty)) {
1348 if ( tty->ldisc.ops->flush_buffer )
1349 tty->ldisc.ops->flush_buffer(tty);
1350 i2InputFlush( tty->driver_data );
1354 static void do_status(struct work_struct *work)
1356 i2ChanStrPtr pCh = container_of(work, i2ChanStr, tqueue_status);
1359 status = i2GetStatus( pCh, (I2_BRK|I2_PAR|I2_FRA|I2_OVR) );
1361 ip2trace (CHANN, ITRC_STATUS, 21, 1, status );
1363 if (pCh->pTTY && (status & (I2_BRK|I2_PAR|I2_FRA|I2_OVR)) ) {
1364 if ( (status & I2_BRK) ) {
1365 // code duplicated from n_tty (ldisc)
1366 if (I_IGNBRK(pCh->pTTY))
1368 if (I_BRKINT(pCh->pTTY)) {
1369 isig(SIGINT, pCh->pTTY, 1);
1372 wake_up_interruptible(&pCh->pTTY->read_wait);
1374 #ifdef NEVER_HAPPENS_AS_SETUP_XXX
1375 // and can't work because we don't know the_char
1376 // as the_char is reported on a separate path
1377 // The intelligent board does this stuff as setup
1379 char brkf = TTY_NORMAL;
1380 unsigned char brkc = '\0';
1382 if ( (status & I2_BRK) ) {
1386 else if (status & I2_PAR) {
1389 } else if (status & I2_FRA) {
1392 } else if (status & I2_OVR) {
1396 tmp = pCh->pTTY->real_raw;
1397 pCh->pTTY->real_raw = 0;
1398 pCh->pTTY->ldisc->ops.receive_buf( pCh->pTTY, &brkc, &brkf, 1 );
1399 pCh->pTTY->real_raw = tmp;
1401 #endif /* NEVER_HAPPENS_AS_SETUP_XXX */
1405 if ( status & (I2_DDCD | I2_DDSR | I2_DCTS | I2_DRI) ) {
1406 wake_up_interruptible(&pCh->delta_msr_wait);
1408 if ( (pCh->flags & ASYNC_CHECK_CD) && (status & I2_DDCD) ) {
1409 if ( status & I2_DCD ) {
1411 wake_up_interruptible ( &pCh->open_wait );
1414 if (pCh->pTTY && (!(pCh->pTTY->termios->c_cflag & CLOCAL)) ) {
1415 tty_hangup( pCh->pTTY );
1421 ip2trace (CHANN, ITRC_STATUS, 26, 0 );
1424 /******************************************************************************/
1425 /* Device Open/Close/Ioctl Entry Point Section */
1426 /******************************************************************************/
1428 /******************************************************************************/
1429 /* Function: open_sanity_check() */
1430 /* Parameters: Pointer to tty structure */
1431 /* Pointer to file structure */
1432 /* Returns: Success or failure */
1435 /* Verifies the structure magic numbers and cross links. */
1436 /******************************************************************************/
1437 #ifdef IP2DEBUG_OPEN
1439 open_sanity_check( i2ChanStrPtr pCh, i2eBordStrPtr pBrd )
1441 if ( pBrd->i2eValid != I2E_MAGIC ) {
1442 printk(KERN_ERR "IP2: invalid board structure\n" );
1443 } else if ( pBrd != pCh->pMyBord ) {
1444 printk(KERN_ERR "IP2: board structure pointer mismatch (%p)\n",
1446 } else if ( pBrd->i2eChannelCnt < pCh->port_index ) {
1447 printk(KERN_ERR "IP2: bad device index (%d)\n", pCh->port_index );
1448 } else if (&((i2ChanStrPtr)pBrd->i2eChannelPtr)[pCh->port_index] != pCh) {
1450 printk(KERN_INFO "IP2: all pointers check out!\n" );
1456 /******************************************************************************/
1457 /* Function: ip2_open() */
1458 /* Parameters: Pointer to tty structure */
1459 /* Pointer to file structure */
1460 /* Returns: Success or failure */
1462 /* Description: (MANDATORY) */
1463 /* A successful device open has to run a gauntlet of checks before it */
1464 /* completes. After some sanity checking and pointer setup, the function */
1465 /* blocks until all conditions are satisfied. It then initialises the port to */
1466 /* the default characteristics and returns. */
1467 /******************************************************************************/
1469 ip2_open( PTTY tty, struct file *pFile )
1474 i2ChanStrPtr pCh = DevTable[tty->index];
1476 ip2trace (tty->index, ITRC_OPEN, ITRC_ENTER, 0 );
1478 if ( pCh == NULL ) {
1481 /* Setup pointer links in device and tty structures */
1483 tty->driver_data = pCh;
1485 #ifdef IP2DEBUG_OPEN
1487 "IP2:open(tty=%p,pFile=%p):dev=%s,ch=%d,idx=%d\n",
1488 tty, pFile, tty->name, pCh->infl.hd.i2sChannel, pCh->port_index);
1489 open_sanity_check ( pCh, pCh->pMyBord );
1492 i2QueueCommands(PTYPE_INLINE, pCh, 100, 3, CMD_DTRUP,CMD_RTSUP,CMD_DCD_REP);
1493 pCh->dataSetOut |= (I2_DTR | I2_RTS);
1494 serviceOutgoingFifo( pCh->pMyBord );
1496 /* Block here until the port is ready (per serial and istallion) */
1498 * 1. If the port is in the middle of closing wait for the completion
1499 * and then return the appropriate error.
1501 init_waitqueue_entry(&wait, current);
1502 add_wait_queue(&pCh->close_wait, &wait);
1503 set_current_state( TASK_INTERRUPTIBLE );
1505 if ( tty_hung_up_p(pFile) || ( pCh->flags & ASYNC_CLOSING )) {
1506 if ( pCh->flags & ASYNC_CLOSING ) {
1509 if ( tty_hung_up_p(pFile) ) {
1510 set_current_state( TASK_RUNNING );
1511 remove_wait_queue(&pCh->close_wait, &wait);
1512 return( pCh->flags & ASYNC_HUP_NOTIFY ) ? -EAGAIN : -ERESTARTSYS;
1515 set_current_state( TASK_RUNNING );
1516 remove_wait_queue(&pCh->close_wait, &wait);
1519 * 3. Handle a non-blocking open of a normal port.
1521 if ( (pFile->f_flags & O_NONBLOCK) || (tty->flags & (1<<TTY_IO_ERROR) )) {
1522 pCh->flags |= ASYNC_NORMAL_ACTIVE;
1526 * 4. Now loop waiting for the port to be free and carrier present
1529 if ( tty->termios->c_cflag & CLOCAL )
1532 #ifdef IP2DEBUG_OPEN
1533 printk(KERN_DEBUG "OpenBlock: do_clocal = %d\n", do_clocal);
1538 init_waitqueue_entry(&wait, current);
1539 add_wait_queue(&pCh->open_wait, &wait);
1542 i2QueueCommands(PTYPE_INLINE, pCh, 100, 2, CMD_DTRUP, CMD_RTSUP);
1543 pCh->dataSetOut |= (I2_DTR | I2_RTS);
1544 set_current_state( TASK_INTERRUPTIBLE );
1545 serviceOutgoingFifo( pCh->pMyBord );
1546 if ( tty_hung_up_p(pFile) ) {
1547 set_current_state( TASK_RUNNING );
1548 remove_wait_queue(&pCh->open_wait, &wait);
1549 return ( pCh->flags & ASYNC_HUP_NOTIFY ) ? -EBUSY : -ERESTARTSYS;
1551 if (!(pCh->flags & ASYNC_CLOSING) &&
1552 (do_clocal || (pCh->dataSetIn & I2_DCD) )) {
1557 #ifdef IP2DEBUG_OPEN
1558 printk(KERN_DEBUG "ASYNC_CLOSING = %s\n",
1559 (pCh->flags & ASYNC_CLOSING)?"True":"False");
1560 printk(KERN_DEBUG "OpenBlock: waiting for CD or signal\n");
1562 ip2trace (CHANN, ITRC_OPEN, 3, 2, 0,
1563 (pCh->flags & ASYNC_CLOSING) );
1564 /* check for signal */
1565 if (signal_pending(current)) {
1566 rc = (( pCh->flags & ASYNC_HUP_NOTIFY ) ? -EAGAIN : -ERESTARTSYS);
1571 set_current_state( TASK_RUNNING );
1572 remove_wait_queue(&pCh->open_wait, &wait);
1574 --pCh->wopen; //why count?
1576 ip2trace (CHANN, ITRC_OPEN, 4, 0 );
1581 pCh->flags |= ASYNC_NORMAL_ACTIVE;
1585 /* first open - Assign termios structure to port */
1586 if ( tty->count == 1 ) {
1587 i2QueueCommands(PTYPE_INLINE, pCh, 0, 2, CMD_CTSFL_DSAB, CMD_RTSFL_DSAB);
1588 /* Now we must send the termios settings to the loadware */
1589 set_params( pCh, NULL );
1593 * Now set any i2lib options. These may go away if the i2lib code ends
1594 * up rolled into the mainline.
1596 pCh->channelOptions |= CO_NBLOCK_WRITE;
1598 #ifdef IP2DEBUG_OPEN
1599 printk (KERN_DEBUG "IP2: open completed\n" );
1601 serviceOutgoingFifo( pCh->pMyBord );
1603 ip2trace (CHANN, ITRC_OPEN, ITRC_RETURN, 0 );
1608 /******************************************************************************/
1609 /* Function: ip2_close() */
1610 /* Parameters: Pointer to tty structure */
1611 /* Pointer to file structure */
1612 /* Returns: Nothing */
1617 /******************************************************************************/
1619 ip2_close( PTTY tty, struct file *pFile )
1621 i2ChanStrPtr pCh = tty->driver_data;
1627 ip2trace (CHANN, ITRC_CLOSE, ITRC_ENTER, 0 );
1629 #ifdef IP2DEBUG_OPEN
1630 printk(KERN_DEBUG "IP2:close %s:\n",tty->name);
1633 if ( tty_hung_up_p ( pFile ) ) {
1635 ip2trace (CHANN, ITRC_CLOSE, 2, 1, 2 );
1639 if ( tty->count > 1 ) { /* not the last close */
1641 ip2trace (CHANN, ITRC_CLOSE, 2, 1, 3 );
1645 pCh->flags |= ASYNC_CLOSING; // last close actually
1649 if (pCh->ClosingWaitTime != ASYNC_CLOSING_WAIT_NONE) {
1651 * Before we drop DTR, make sure the transmitter has completely drained.
1652 * This uses an timeout, after which the close
1655 ip2_wait_until_sent(tty, pCh->ClosingWaitTime );
1658 * At this point we stop accepting input. Here we flush the channel
1659 * input buffer which will allow the board to send up more data. Any
1660 * additional input is tossed at interrupt/poll time.
1662 i2InputFlush( pCh );
1664 /* disable DSS reporting */
1665 i2QueueCommands(PTYPE_INLINE, pCh, 100, 4,
1666 CMD_DCD_NREP, CMD_CTS_NREP, CMD_DSR_NREP, CMD_RI_NREP);
1667 if ( !tty || (tty->termios->c_cflag & HUPCL) ) {
1668 i2QueueCommands(PTYPE_INLINE, pCh, 100, 2, CMD_RTSDN, CMD_DTRDN);
1669 pCh->dataSetOut &= ~(I2_DTR | I2_RTS);
1670 i2QueueCommands( PTYPE_INLINE, pCh, 100, 1, CMD_PAUSE(25));
1673 serviceOutgoingFifo ( pCh->pMyBord );
1675 tty_ldisc_flush(tty);
1676 tty_driver_flush_buffer(tty);
1682 if (pCh->ClosingDelay) {
1683 msleep_interruptible(jiffies_to_msecs(pCh->ClosingDelay));
1685 wake_up_interruptible(&pCh->open_wait);
1688 pCh->flags &=~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
1689 wake_up_interruptible(&pCh->close_wait);
1691 #ifdef IP2DEBUG_OPEN
1692 DBG_CNT("ip2_close: after wakeups--");
1696 ip2trace (CHANN, ITRC_CLOSE, ITRC_RETURN, 1, 1 );
1701 /******************************************************************************/
1702 /* Function: ip2_hangup() */
1703 /* Parameters: Pointer to tty structure */
1704 /* Returns: Nothing */
1709 /******************************************************************************/
1711 ip2_hangup ( PTTY tty )
1713 i2ChanStrPtr pCh = tty->driver_data;
1719 ip2trace (CHANN, ITRC_HANGUP, ITRC_ENTER, 0 );
1721 ip2_flush_buffer(tty);
1723 /* disable DSS reporting */
1725 i2QueueCommands(PTYPE_BYPASS, pCh, 0, 1, CMD_DCD_NREP);
1726 i2QueueCommands(PTYPE_INLINE, pCh, 0, 2, CMD_CTSFL_DSAB, CMD_RTSFL_DSAB);
1727 if ( (tty->termios->c_cflag & HUPCL) ) {
1728 i2QueueCommands(PTYPE_BYPASS, pCh, 0, 2, CMD_RTSDN, CMD_DTRDN);
1729 pCh->dataSetOut &= ~(I2_DTR | I2_RTS);
1730 i2QueueCommands( PTYPE_INLINE, pCh, 100, 1, CMD_PAUSE(25));
1732 i2QueueCommands(PTYPE_INLINE, pCh, 1, 3,
1733 CMD_CTS_NREP, CMD_DSR_NREP, CMD_RI_NREP);
1734 serviceOutgoingFifo ( pCh->pMyBord );
1736 wake_up_interruptible ( &pCh->delta_msr_wait );
1738 pCh->flags &= ~ASYNC_NORMAL_ACTIVE;
1740 wake_up_interruptible ( &pCh->open_wait );
1742 ip2trace (CHANN, ITRC_HANGUP, ITRC_RETURN, 0 );
1745 /******************************************************************************/
1746 /******************************************************************************/
1747 /* Device Output Section */
1748 /******************************************************************************/
1749 /******************************************************************************/
1751 /******************************************************************************/
1752 /* Function: ip2_write() */
1753 /* Parameters: Pointer to tty structure */
1754 /* Flag denoting data is in user (1) or kernel (0) space */
1755 /* Pointer to data */
1756 /* Number of bytes to write */
1757 /* Returns: Number of bytes actually written */
1759 /* Description: (MANDATORY) */
1762 /******************************************************************************/
1764 ip2_write( PTTY tty, const unsigned char *pData, int count)
1766 i2ChanStrPtr pCh = tty->driver_data;
1768 unsigned long flags;
1770 ip2trace (CHANN, ITRC_WRITE, ITRC_ENTER, 2, count, -1 );
1772 /* Flush out any buffered data left over from ip2_putchar() calls. */
1773 ip2_flush_chars( tty );
1775 /* This is the actual move bit. Make sure it does what we need!!!!! */
1776 write_lock_irqsave(&pCh->Pbuf_spinlock, flags);
1777 bytesSent = i2Output( pCh, pData, count);
1778 write_unlock_irqrestore(&pCh->Pbuf_spinlock, flags);
1780 ip2trace (CHANN, ITRC_WRITE, ITRC_RETURN, 1, bytesSent );
1782 return bytesSent > 0 ? bytesSent : 0;
1785 /******************************************************************************/
1786 /* Function: ip2_putchar() */
1787 /* Parameters: Pointer to tty structure */
1788 /* Character to write */
1789 /* Returns: Nothing */
1794 /******************************************************************************/
1796 ip2_putchar( PTTY tty, unsigned char ch )
1798 i2ChanStrPtr pCh = tty->driver_data;
1799 unsigned long flags;
1801 // ip2trace (CHANN, ITRC_PUTC, ITRC_ENTER, 1, ch );
1803 write_lock_irqsave(&pCh->Pbuf_spinlock, flags);
1804 pCh->Pbuf[pCh->Pbuf_stuff++] = ch;
1805 if ( pCh->Pbuf_stuff == sizeof pCh->Pbuf ) {
1806 write_unlock_irqrestore(&pCh->Pbuf_spinlock, flags);
1807 ip2_flush_chars( tty );
1809 write_unlock_irqrestore(&pCh->Pbuf_spinlock, flags);
1812 // ip2trace (CHANN, ITRC_PUTC, ITRC_RETURN, 1, ch );
1815 /******************************************************************************/
1816 /* Function: ip2_flush_chars() */
1817 /* Parameters: Pointer to tty structure */
1818 /* Returns: Nothing */
1822 /******************************************************************************/
1824 ip2_flush_chars( PTTY tty )
1827 i2ChanStrPtr pCh = tty->driver_data;
1828 unsigned long flags;
1830 write_lock_irqsave(&pCh->Pbuf_spinlock, flags);
1831 if ( pCh->Pbuf_stuff ) {
1833 // ip2trace (CHANN, ITRC_PUTC, 10, 1, strip );
1836 // We may need to restart i2Output if it does not fullfill this request
1838 strip = i2Output( pCh, pCh->Pbuf, pCh->Pbuf_stuff);
1839 if ( strip != pCh->Pbuf_stuff ) {
1840 memmove( pCh->Pbuf, &pCh->Pbuf[strip], pCh->Pbuf_stuff - strip );
1842 pCh->Pbuf_stuff -= strip;
1844 write_unlock_irqrestore(&pCh->Pbuf_spinlock, flags);
1847 /******************************************************************************/
1848 /* Function: ip2_write_room() */
1849 /* Parameters: Pointer to tty structure */
1850 /* Returns: Number of bytes that the driver can accept */
1854 /******************************************************************************/
1856 ip2_write_room ( PTTY tty )
1859 i2ChanStrPtr pCh = tty->driver_data;
1860 unsigned long flags;
1862 read_lock_irqsave(&pCh->Pbuf_spinlock, flags);
1863 bytesFree = i2OutputFree( pCh ) - pCh->Pbuf_stuff;
1864 read_unlock_irqrestore(&pCh->Pbuf_spinlock, flags);
1866 ip2trace (CHANN, ITRC_WRITE, 11, 1, bytesFree );
1868 return ((bytesFree > 0) ? bytesFree : 0);
1871 /******************************************************************************/
1872 /* Function: ip2_chars_in_buf() */
1873 /* Parameters: Pointer to tty structure */
1874 /* Returns: Number of bytes queued for transmission */
1879 /******************************************************************************/
1881 ip2_chars_in_buf ( PTTY tty )
1883 i2ChanStrPtr pCh = tty->driver_data;
1885 unsigned long flags;
1887 ip2trace (CHANN, ITRC_WRITE, 12, 1, pCh->Obuf_char_count + pCh->Pbuf_stuff );
1889 #ifdef IP2DEBUG_WRITE
1890 printk (KERN_DEBUG "IP2: chars in buffer = %d (%d,%d)\n",
1891 pCh->Obuf_char_count + pCh->Pbuf_stuff,
1892 pCh->Obuf_char_count, pCh->Pbuf_stuff );
1894 read_lock_irqsave(&pCh->Obuf_spinlock, flags);
1895 rc = pCh->Obuf_char_count;
1896 read_unlock_irqrestore(&pCh->Obuf_spinlock, flags);
1897 read_lock_irqsave(&pCh->Pbuf_spinlock, flags);
1898 rc += pCh->Pbuf_stuff;
1899 read_unlock_irqrestore(&pCh->Pbuf_spinlock, flags);
1903 /******************************************************************************/
1904 /* Function: ip2_flush_buffer() */
1905 /* Parameters: Pointer to tty structure */
1906 /* Returns: Nothing */
1911 /******************************************************************************/
1913 ip2_flush_buffer( PTTY tty )
1915 i2ChanStrPtr pCh = tty->driver_data;
1916 unsigned long flags;
1918 ip2trace (CHANN, ITRC_FLUSH, ITRC_ENTER, 0 );
1920 #ifdef IP2DEBUG_WRITE
1921 printk (KERN_DEBUG "IP2: flush buffer\n" );
1923 write_lock_irqsave(&pCh->Pbuf_spinlock, flags);
1924 pCh->Pbuf_stuff = 0;
1925 write_unlock_irqrestore(&pCh->Pbuf_spinlock, flags);
1926 i2FlushOutput( pCh );
1929 ip2trace (CHANN, ITRC_FLUSH, ITRC_RETURN, 0 );
1933 /******************************************************************************/
1934 /* Function: ip2_wait_until_sent() */
1935 /* Parameters: Pointer to tty structure */
1936 /* Timeout for wait. */
1937 /* Returns: Nothing */
1940 /* This function is used in place of the normal tty_wait_until_sent, which */
1941 /* only waits for the driver buffers to be empty (or rather, those buffers */
1942 /* reported by chars_in_buffer) which doesn't work for IP2 due to the */
1943 /* indeterminate number of bytes buffered on the board. */
1944 /******************************************************************************/
1946 ip2_wait_until_sent ( PTTY tty, int timeout )
1949 i2ChanStrPtr pCh = tty->driver_data;
1951 tty_wait_until_sent(tty, timeout );
1952 if ( (i = timeout - (jiffies -i)) > 0)
1953 i2DrainOutput( pCh, i );
1956 /******************************************************************************/
1957 /******************************************************************************/
1958 /* Device Input Section */
1959 /******************************************************************************/
1960 /******************************************************************************/
1962 /******************************************************************************/
1963 /* Function: ip2_throttle() */
1964 /* Parameters: Pointer to tty structure */
1965 /* Returns: Nothing */
1970 /******************************************************************************/
1972 ip2_throttle ( PTTY tty )
1974 i2ChanStrPtr pCh = tty->driver_data;
1976 #ifdef IP2DEBUG_READ
1977 printk (KERN_DEBUG "IP2: throttle\n" );
1980 * Signal the poll/interrupt handlers not to forward incoming data to
1981 * the line discipline. This will cause the buffers to fill up in the
1982 * library and thus cause the library routines to send the flow control
1988 /******************************************************************************/
1989 /* Function: ip2_unthrottle() */
1990 /* Parameters: Pointer to tty structure */
1991 /* Returns: Nothing */
1996 /******************************************************************************/
1998 ip2_unthrottle ( PTTY tty )
2000 i2ChanStrPtr pCh = tty->driver_data;
2001 unsigned long flags;
2003 #ifdef IP2DEBUG_READ
2004 printk (KERN_DEBUG "IP2: unthrottle\n" );
2007 /* Pass incoming data up to the line discipline again. */
2009 i2QueueCommands(PTYPE_BYPASS, pCh, 0, 1, CMD_RESUME);
2010 serviceOutgoingFifo( pCh->pMyBord );
2011 read_lock_irqsave(&pCh->Ibuf_spinlock, flags);
2012 if ( pCh->Ibuf_stuff != pCh->Ibuf_strip ) {
2013 read_unlock_irqrestore(&pCh->Ibuf_spinlock, flags);
2014 #ifdef IP2DEBUG_READ
2015 printk (KERN_DEBUG "i2Input called from unthrottle\n" );
2019 read_unlock_irqrestore(&pCh->Ibuf_spinlock, flags);
2023 ip2_start ( PTTY tty )
2025 i2ChanStrPtr pCh = DevTable[tty->index];
2027 i2QueueCommands(PTYPE_BYPASS, pCh, 0, 1, CMD_RESUME);
2028 i2QueueCommands(PTYPE_BYPASS, pCh, 100, 1, CMD_UNSUSPEND);
2029 i2QueueCommands(PTYPE_BYPASS, pCh, 100, 1, CMD_RESUME);
2030 #ifdef IP2DEBUG_WRITE
2031 printk (KERN_DEBUG "IP2: start tx\n" );
2036 ip2_stop ( PTTY tty )
2038 i2ChanStrPtr pCh = DevTable[tty->index];
2040 i2QueueCommands(PTYPE_BYPASS, pCh, 100, 1, CMD_SUSPEND);
2041 #ifdef IP2DEBUG_WRITE
2042 printk (KERN_DEBUG "IP2: stop tx\n" );
2046 /******************************************************************************/
2047 /* Device Ioctl Section */
2048 /******************************************************************************/
2050 static int ip2_tiocmget(struct tty_struct *tty, struct file *file)
2052 i2ChanStrPtr pCh = DevTable[tty->index];
2053 #ifdef ENABLE_DSSNOW
2061 FIXME - the following code is causing a NULL pointer dereference in
2062 2.3.51 in an interrupt handler. It's suppose to prompt the board
2063 to return the DSS signal status immediately. Why doesn't it do
2064 the same thing in 2.2.14?
2067 /* This thing is still busted in the 1.2.12 driver on 2.4.x
2068 and even hoses the serial console so the oops can be trapped.
2071 #ifdef ENABLE_DSSNOW
2072 i2QueueCommands(PTYPE_BYPASS, pCh, 100, 1, CMD_DSS_NOW);
2074 init_waitqueue_entry(&wait, current);
2075 add_wait_queue(&pCh->dss_now_wait, &wait);
2076 set_current_state( TASK_INTERRUPTIBLE );
2078 serviceOutgoingFifo( pCh->pMyBord );
2082 set_current_state( TASK_RUNNING );
2083 remove_wait_queue(&pCh->dss_now_wait, &wait);
2085 if (signal_pending(current)) {
2089 return ((pCh->dataSetOut & I2_RTS) ? TIOCM_RTS : 0)
2090 | ((pCh->dataSetOut & I2_DTR) ? TIOCM_DTR : 0)
2091 | ((pCh->dataSetIn & I2_DCD) ? TIOCM_CAR : 0)
2092 | ((pCh->dataSetIn & I2_RI) ? TIOCM_RNG : 0)
2093 | ((pCh->dataSetIn & I2_DSR) ? TIOCM_DSR : 0)
2094 | ((pCh->dataSetIn & I2_CTS) ? TIOCM_CTS : 0);
2097 static int ip2_tiocmset(struct tty_struct *tty, struct file *file,
2098 unsigned int set, unsigned int clear)
2100 i2ChanStrPtr pCh = DevTable[tty->index];
2105 if (set & TIOCM_RTS) {
2106 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_RTSUP);
2107 pCh->dataSetOut |= I2_RTS;
2109 if (set & TIOCM_DTR) {
2110 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_DTRUP);
2111 pCh->dataSetOut |= I2_DTR;
2114 if (clear & TIOCM_RTS) {
2115 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_RTSDN);
2116 pCh->dataSetOut &= ~I2_RTS;
2118 if (clear & TIOCM_DTR) {
2119 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_DTRDN);
2120 pCh->dataSetOut &= ~I2_DTR;
2122 serviceOutgoingFifo( pCh->pMyBord );
2126 /******************************************************************************/
2127 /* Function: ip2_ioctl() */
2128 /* Parameters: Pointer to tty structure */
2129 /* Pointer to file structure */
2132 /* Returns: Success or failure */
2137 /******************************************************************************/
2139 ip2_ioctl ( PTTY tty, struct file *pFile, UINT cmd, ULONG arg )
2142 i2ChanStrPtr pCh = DevTable[tty->index];
2144 struct async_icount cprev, cnow; /* kernel counter temps */
2145 struct serial_icounter_struct __user *p_cuser;
2147 unsigned long flags;
2148 void __user *argp = (void __user *)arg;
2155 ip2trace (CHANN, ITRC_IOCTL, ITRC_ENTER, 2, cmd, arg );
2157 #ifdef IP2DEBUG_IOCTL
2158 printk(KERN_DEBUG "IP2: ioctl cmd (%x), arg (%lx)\n", cmd, arg );
2164 ip2trace (CHANN, ITRC_IOCTL, 2, 1, rc );
2166 rc = get_serial_info(pCh, argp);
2173 ip2trace (CHANN, ITRC_IOCTL, 3, 1, rc );
2175 rc = set_serial_info(pCh, argp);
2181 rc = tty_check_change(tty);
2186 //return -ENOIOCTLCMD;
2189 //return -ENOIOCTLCMD;
2192 if (STOP_CHAR(tty) != __DISABLED_CHAR) {
2193 i2QueueCommands( PTYPE_BYPASS, pCh, 100, 1,
2194 CMD_XMIT_NOW(STOP_CHAR(tty)));
2198 if (START_CHAR(tty) != __DISABLED_CHAR) {
2199 i2QueueCommands( PTYPE_BYPASS, pCh, 100, 1,
2200 CMD_XMIT_NOW(START_CHAR(tty)));
2208 case TCSBRK: /* SVID version: non-zero arg --> no break */
2209 rc = tty_check_change(tty);
2211 ip2trace (CHANN, ITRC_IOCTL, 4, 1, rc );
2214 ip2_wait_until_sent(tty,0);
2216 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_SEND_BRK(250));
2217 serviceOutgoingFifo( pCh->pMyBord );
2222 case TCSBRKP: /* support for POSIX tcsendbreak() */
2223 rc = tty_check_change(tty);
2225 ip2trace (CHANN, ITRC_IOCTL, 5, 1, rc );
2228 ip2_wait_until_sent(tty,0);
2229 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1,
2230 CMD_SEND_BRK(arg ? arg*100 : 250));
2231 serviceOutgoingFifo ( pCh->pMyBord );
2237 ip2trace (CHANN, ITRC_IOCTL, 6, 1, rc );
2239 rc = put_user(C_CLOCAL(tty) ? 1 : 0, (unsigned long __user *)argp);
2246 ip2trace (CHANN, ITRC_IOCTL, 7, 1, rc );
2248 rc = get_user(arg,(unsigned long __user *) argp);
2251 tty->termios->c_cflag = ((tty->termios->c_cflag & ~CLOCAL)
2252 | (arg ? CLOCAL : 0));
2257 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change - mask
2258 * passed in arg for lines of interest (use |'ed TIOCM_RNG/DSR/CD/CTS
2259 * for masking). Caller should use TIOCGICOUNT to see which one it was
2262 write_lock_irqsave(&pB->read_fifo_spinlock, flags);
2263 cprev = pCh->icount; /* note the counters on entry */
2264 write_unlock_irqrestore(&pB->read_fifo_spinlock, flags);
2265 i2QueueCommands(PTYPE_BYPASS, pCh, 100, 4,
2266 CMD_DCD_REP, CMD_CTS_REP, CMD_DSR_REP, CMD_RI_REP);
2267 init_waitqueue_entry(&wait, current);
2268 add_wait_queue(&pCh->delta_msr_wait, &wait);
2269 set_current_state( TASK_INTERRUPTIBLE );
2271 serviceOutgoingFifo( pCh->pMyBord );
2273 ip2trace (CHANN, ITRC_IOCTL, 10, 0 );
2277 ip2trace (CHANN, ITRC_IOCTL, 11, 0 );
2279 /* see if a signal did it */
2280 if (signal_pending(current)) {
2284 write_lock_irqsave(&pB->read_fifo_spinlock, flags);
2285 cnow = pCh->icount; /* atomic copy */
2286 write_unlock_irqrestore(&pB->read_fifo_spinlock, flags);
2287 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2288 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
2289 rc = -EIO; /* no change => rc */
2292 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2293 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2294 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2295 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) {
2301 set_current_state( TASK_RUNNING );
2302 remove_wait_queue(&pCh->delta_msr_wait, &wait);
2304 i2QueueCommands(PTYPE_BYPASS, pCh, 100, 3,
2305 CMD_CTS_NREP, CMD_DSR_NREP, CMD_RI_NREP);
2306 if ( ! (pCh->flags & ASYNC_CHECK_CD)) {
2307 i2QueueCommands(PTYPE_BYPASS, pCh, 100, 1, CMD_DCD_NREP);
2309 serviceOutgoingFifo( pCh->pMyBord );
2314 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
2315 * Return: write counters to the user passed counter struct
2316 * NB: both 1->0 and 0->1 transitions are counted except for RI where
2317 * only 0->1 is counted. The controller is quite capable of counting
2318 * both, but this done to preserve compatibility with the standard
2322 ip2trace (CHANN, ITRC_IOCTL, 11, 1, rc );
2324 write_lock_irqsave(&pB->read_fifo_spinlock, flags);
2326 write_unlock_irqrestore(&pB->read_fifo_spinlock, flags);
2328 rc = put_user(cnow.cts, &p_cuser->cts);
2329 rc = put_user(cnow.dsr, &p_cuser->dsr);
2330 rc = put_user(cnow.rng, &p_cuser->rng);
2331 rc = put_user(cnow.dcd, &p_cuser->dcd);
2332 rc = put_user(cnow.rx, &p_cuser->rx);
2333 rc = put_user(cnow.tx, &p_cuser->tx);
2334 rc = put_user(cnow.frame, &p_cuser->frame);
2335 rc = put_user(cnow.overrun, &p_cuser->overrun);
2336 rc = put_user(cnow.parity, &p_cuser->parity);
2337 rc = put_user(cnow.brk, &p_cuser->brk);
2338 rc = put_user(cnow.buf_overrun, &p_cuser->buf_overrun);
2342 * The rest are not supported by this driver. By returning -ENOIOCTLCMD they
2343 * will be passed to the line discipline for it to handle.
2349 case TIOCSERGSTRUCT:
2350 case TIOCSERGETMULTI:
2351 case TIOCSERSETMULTI:
2354 ip2trace (CHANN, ITRC_IOCTL, 12, 0 );
2360 ip2trace (CHANN, ITRC_IOCTL, ITRC_RETURN, 0 );
2365 /******************************************************************************/
2366 /* Function: GetSerialInfo() */
2367 /* Parameters: Pointer to channel structure */
2368 /* Pointer to old termios structure */
2369 /* Returns: Nothing */
2372 /* This is to support the setserial command, and requires processing of the */
2373 /* standard Linux serial structure. */
2374 /******************************************************************************/
2376 get_serial_info ( i2ChanStrPtr pCh, struct serial_struct __user *retinfo )
2378 struct serial_struct tmp;
2380 memset ( &tmp, 0, sizeof(tmp) );
2381 tmp.type = pCh->pMyBord->channelBtypes.bid_value[(pCh->port_index & (IP2_PORTS_PER_BOARD-1))/16];
2382 if (BID_HAS_654(tmp.type)) {
2383 tmp.type = PORT_16650;
2385 tmp.type = PORT_CIRRUS;
2387 tmp.line = pCh->port_index;
2388 tmp.port = pCh->pMyBord->i2eBase;
2389 tmp.irq = ip2config.irq[pCh->port_index/64];
2390 tmp.flags = pCh->flags;
2391 tmp.baud_base = pCh->BaudBase;
2392 tmp.close_delay = pCh->ClosingDelay;
2393 tmp.closing_wait = pCh->ClosingWaitTime;
2394 tmp.custom_divisor = pCh->BaudDivisor;
2395 return copy_to_user(retinfo,&tmp,sizeof(*retinfo));
2398 /******************************************************************************/
2399 /* Function: SetSerialInfo() */
2400 /* Parameters: Pointer to channel structure */
2401 /* Pointer to old termios structure */
2402 /* Returns: Nothing */
2405 /* This function provides support for setserial, which uses the TIOCSSERIAL */
2406 /* ioctl. Not all setserial parameters are relevant. If the user attempts to */
2407 /* change the IRQ, address or type of the port the ioctl fails. */
2408 /******************************************************************************/
2410 set_serial_info( i2ChanStrPtr pCh, struct serial_struct __user *new_info )
2412 struct serial_struct ns;
2413 int old_flags, old_baud_divisor;
2415 if (copy_from_user(&ns, new_info, sizeof (ns)))
2419 * We don't allow setserial to change IRQ, board address, type or baud
2420 * base. Also line nunber as such is meaningless but we use it for our
2421 * array index so it is fixed also.
2423 if ( (ns.irq != ip2config.irq[pCh->port_index])
2424 || ((int) ns.port != ((int) (pCh->pMyBord->i2eBase)))
2425 || (ns.baud_base != pCh->BaudBase)
2426 || (ns.line != pCh->port_index) ) {
2430 old_flags = pCh->flags;
2431 old_baud_divisor = pCh->BaudDivisor;
2433 if ( !capable(CAP_SYS_ADMIN) ) {
2434 if ( ( ns.close_delay != pCh->ClosingDelay ) ||
2435 ( (ns.flags & ~ASYNC_USR_MASK) !=
2436 (pCh->flags & ~ASYNC_USR_MASK) ) ) {
2440 pCh->flags = (pCh->flags & ~ASYNC_USR_MASK) |
2441 (ns.flags & ASYNC_USR_MASK);
2442 pCh->BaudDivisor = ns.custom_divisor;
2444 pCh->flags = (pCh->flags & ~ASYNC_FLAGS) |
2445 (ns.flags & ASYNC_FLAGS);
2446 pCh->BaudDivisor = ns.custom_divisor;
2447 pCh->ClosingDelay = ns.close_delay * HZ/100;
2448 pCh->ClosingWaitTime = ns.closing_wait * HZ/100;
2451 if ( ( (old_flags & ASYNC_SPD_MASK) != (pCh->flags & ASYNC_SPD_MASK) )
2452 || (old_baud_divisor != pCh->BaudDivisor) ) {
2453 // Invalidate speed and reset parameters
2454 set_params( pCh, NULL );
2460 /******************************************************************************/
2461 /* Function: ip2_set_termios() */
2462 /* Parameters: Pointer to tty structure */
2463 /* Pointer to old termios structure */
2464 /* Returns: Nothing */
2469 /******************************************************************************/
2471 ip2_set_termios( PTTY tty, struct ktermios *old_termios )
2473 i2ChanStrPtr pCh = (i2ChanStrPtr)tty->driver_data;
2475 #ifdef IP2DEBUG_IOCTL
2476 printk (KERN_DEBUG "IP2: set termios %p\n", old_termios );
2479 set_params( pCh, old_termios );
2482 /******************************************************************************/
2483 /* Function: ip2_set_line_discipline() */
2484 /* Parameters: Pointer to tty structure */
2485 /* Returns: Nothing */
2487 /* Description: Does nothing */
2490 /******************************************************************************/
2492 ip2_set_line_discipline ( PTTY tty )
2494 #ifdef IP2DEBUG_IOCTL
2495 printk (KERN_DEBUG "IP2: set line discipline\n" );
2498 ip2trace (((i2ChanStrPtr)tty->driver_data)->port_index, ITRC_IOCTL, 16, 0 );
2502 /******************************************************************************/
2503 /* Function: SetLine Characteristics() */
2504 /* Parameters: Pointer to channel structure */
2505 /* Returns: Nothing */
2508 /* This routine is called to update the channel structure with the new line */
2509 /* characteristics, and send the appropriate commands to the board when they */
2511 /******************************************************************************/
2513 set_params( i2ChanStrPtr pCh, struct ktermios *o_tios )
2515 tcflag_t cflag, iflag, lflag;
2516 char stop_char, start_char;
2517 struct ktermios dummy;
2519 lflag = pCh->pTTY->termios->c_lflag;
2520 cflag = pCh->pTTY->termios->c_cflag;
2521 iflag = pCh->pTTY->termios->c_iflag;
2523 if (o_tios == NULL) {
2524 dummy.c_lflag = ~lflag;
2525 dummy.c_cflag = ~cflag;
2526 dummy.c_iflag = ~iflag;
2531 switch ( cflag & CBAUD ) {
2533 i2QueueCommands( PTYPE_BYPASS, pCh, 100, 2, CMD_RTSDN, CMD_DTRDN);
2534 pCh->dataSetOut &= ~(I2_DTR | I2_RTS);
2535 i2QueueCommands( PTYPE_INLINE, pCh, 100, 1, CMD_PAUSE(25));
2536 pCh->pTTY->termios->c_cflag |= (CBAUD & o_tios->c_cflag);
2541 * This is the speed that is overloaded with all the other high
2542 * speeds, depending upon the flag settings.
2544 if ( ( pCh->flags & ASYNC_SPD_MASK ) == ASYNC_SPD_HI ) {
2545 pCh->speed = CBR_57600;
2546 } else if ( (pCh->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI ) {
2547 pCh->speed = CBR_115200;
2548 } else if ( (pCh->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST ) {
2549 pCh->speed = CBR_C1;
2551 pCh->speed = CBR_38400;
2554 case B50: pCh->speed = CBR_50; break;
2555 case B75: pCh->speed = CBR_75; break;
2556 case B110: pCh->speed = CBR_110; break;
2557 case B134: pCh->speed = CBR_134; break;
2558 case B150: pCh->speed = CBR_150; break;
2559 case B200: pCh->speed = CBR_200; break;
2560 case B300: pCh->speed = CBR_300; break;
2561 case B600: pCh->speed = CBR_600; break;
2562 case B1200: pCh->speed = CBR_1200; break;
2563 case B1800: pCh->speed = CBR_1800; break;
2564 case B2400: pCh->speed = CBR_2400; break;
2565 case B4800: pCh->speed = CBR_4800; break;
2566 case B9600: pCh->speed = CBR_9600; break;
2567 case B19200: pCh->speed = CBR_19200; break;
2568 case B57600: pCh->speed = CBR_57600; break;
2569 case B115200: pCh->speed = CBR_115200; break;
2570 case B153600: pCh->speed = CBR_153600; break;
2571 case B230400: pCh->speed = CBR_230400; break;
2572 case B307200: pCh->speed = CBR_307200; break;
2573 case B460800: pCh->speed = CBR_460800; break;
2574 case B921600: pCh->speed = CBR_921600; break;
2575 default: pCh->speed = CBR_9600; break;
2577 if ( pCh->speed == CBR_C1 ) {
2578 // Process the custom speed parameters.
2579 int bps = pCh->BaudBase / pCh->BaudDivisor;
2580 if ( bps == 921600 ) {
2581 pCh->speed = CBR_921600;
2584 i2QueueCommands( PTYPE_INLINE, pCh, 100, 1, CMD_BAUD_DEF1(bps) );
2587 i2QueueCommands( PTYPE_INLINE, pCh, 100, 1, CMD_SETBAUD(pCh->speed));
2589 i2QueueCommands ( PTYPE_INLINE, pCh, 100, 2, CMD_DTRUP, CMD_RTSUP);
2590 pCh->dataSetOut |= (I2_DTR | I2_RTS);
2592 if ( (CSTOPB & cflag) ^ (CSTOPB & o_tios->c_cflag))
2594 i2QueueCommands ( PTYPE_INLINE, pCh, 100, 1,
2595 CMD_SETSTOP( ( cflag & CSTOPB ) ? CST_2 : CST_1));
2597 if (((PARENB|PARODD) & cflag) ^ ((PARENB|PARODD) & o_tios->c_cflag))
2599 i2QueueCommands ( PTYPE_INLINE, pCh, 100, 1,
2601 (cflag & PARENB ? (cflag & PARODD ? CSP_OD : CSP_EV) : CSP_NP)
2605 /* byte size and parity */
2606 if ( (CSIZE & cflag)^(CSIZE & o_tios->c_cflag))
2609 switch ( cflag & CSIZE ) {
2610 case CS5: datasize = CSZ_5; break;
2611 case CS6: datasize = CSZ_6; break;
2612 case CS7: datasize = CSZ_7; break;
2613 case CS8: datasize = CSZ_8; break;
2614 default: datasize = CSZ_5; break; /* as per serial.c */
2616 i2QueueCommands ( PTYPE_INLINE, pCh, 100, 1, CMD_SETBITS(datasize) );
2618 /* Process CTS flow control flag setting */
2619 if ( (cflag & CRTSCTS) ) {
2620 i2QueueCommands(PTYPE_INLINE, pCh, 100,
2621 2, CMD_CTSFL_ENAB, CMD_RTSFL_ENAB);
2623 i2QueueCommands(PTYPE_INLINE, pCh, 100,
2624 2, CMD_CTSFL_DSAB, CMD_RTSFL_DSAB);
2627 // Process XON/XOFF flow control flags settings
2629 stop_char = STOP_CHAR(pCh->pTTY);
2630 start_char = START_CHAR(pCh->pTTY);
2632 //////////// can't be \000
2633 if (stop_char == __DISABLED_CHAR )
2635 stop_char = ~__DISABLED_CHAR;
2637 if (start_char == __DISABLED_CHAR )
2639 start_char = ~__DISABLED_CHAR;
2641 /////////////////////////////////
2643 if ( o_tios->c_cc[VSTART] != start_char )
2645 i2QueueCommands(PTYPE_BYPASS, pCh, 100, 1, CMD_DEF_IXON(start_char));
2646 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_DEF_OXON(start_char));
2648 if ( o_tios->c_cc[VSTOP] != stop_char )
2650 i2QueueCommands(PTYPE_BYPASS, pCh, 100, 1, CMD_DEF_IXOFF(stop_char));
2651 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_DEF_OXOFF(stop_char));
2653 if (stop_char == __DISABLED_CHAR )
2655 stop_char = ~__DISABLED_CHAR; //TEST123
2658 if ((iflag & (IXOFF))^(o_tios->c_iflag & (IXOFF)))
2660 if ( iflag & IXOFF ) { // Enable XOFF output flow control
2661 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_OXON_OPT(COX_XON));
2662 } else { // Disable XOFF output flow control
2664 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_OXON_OPT(COX_NONE));
2667 if (start_char == __DISABLED_CHAR )
2671 if ((iflag & (IXON|IXANY)) ^ (o_tios->c_iflag & (IXON|IXANY)))
2673 if ( iflag & IXON ) {
2674 if ( iflag & IXANY ) { // Enable XON/XANY output flow control
2675 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_IXON_OPT(CIX_XANY));
2676 } else { // Enable XON output flow control
2677 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_IXON_OPT(CIX_XON));
2679 } else { // Disable XON output flow control
2681 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_IXON_OPT(CIX_NONE));
2684 if ( (iflag & ISTRIP) ^ ( o_tios->c_iflag & (ISTRIP)) )
2686 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1,
2687 CMD_ISTRIP_OPT((iflag & ISTRIP ? 1 : 0)));
2689 if ( (iflag & INPCK) ^ ( o_tios->c_iflag & (INPCK)) )
2691 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1,
2692 CMD_PARCHK((iflag & INPCK) ? CPK_ENAB : CPK_DSAB));
2695 if ( (iflag & (IGNBRK|PARMRK|BRKINT|IGNPAR))
2696 ^ ( o_tios->c_iflag & (IGNBRK|PARMRK|BRKINT|IGNPAR)) )
2701 if ( iflag & IGNBRK ) { /* Ignore breaks altogether */
2702 /* Ignore breaks altogether */
2703 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_BRK_NREP);
2705 if ( iflag & BRKINT ) {
2706 if ( iflag & PARMRK ) {
2707 brkrpt = 0x0a; // exception an inline triple
2709 brkrpt = 0x1a; // exception and NULL
2711 brkrpt |= 0x04; // flush input
2713 if ( iflag & PARMRK ) {
2714 brkrpt = 0x0b; //POSIX triple \0377 \0 \0
2716 brkrpt = 0x01; // Null only
2719 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_BRK_REP(brkrpt));
2722 if (iflag & IGNPAR) {
2724 /* would be 2 for not cirrus bug */
2725 /* would be 0x20 cept for cirrus bug */
2727 if ( iflag & PARMRK ) {
2729 * Replace error characters with 3-byte sequence (\0377,\0,char)
2732 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_ISTRIP_OPT((char)0));
2737 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_SET_ERROR(parrpt));
2739 if (cflag & CLOCAL) {
2740 // Status reporting fails for DCD if this is off
2741 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_DCD_NREP);
2742 pCh->flags &= ~ASYNC_CHECK_CD;
2744 i2QueueCommands(PTYPE_INLINE, pCh, 100, 1, CMD_DCD_REP);
2745 pCh->flags |= ASYNC_CHECK_CD;
2749 i2DrainOutput( pCh, 100 );
2752 /******************************************************************************/
2753 /* IPL Device Section */
2754 /******************************************************************************/
2756 /******************************************************************************/
2757 /* Function: ip2_ipl_read() */
2758 /* Parameters: Pointer to device inode */
2759 /* Pointer to file structure */
2760 /* Pointer to data */
2761 /* Number of bytes to read */
2762 /* Returns: Success or failure */
2764 /* Description: Ugly */
2767 /******************************************************************************/
2771 ip2_ipl_read(struct file *pFile, char __user *pData, size_t count, loff_t *off )
2773 unsigned int minor = iminor(pFile->f_path.dentry->d_inode);
2777 printk (KERN_DEBUG "IP2IPL: read %p, %d bytes\n", pData, count );
2781 case 0: // IPL device
2784 case 1: // Status dump
2787 case 2: // Ping device
2790 case 3: // Trace device
2791 rc = DumpTraceBuffer ( pData, count );
2793 case 4: // Trace device
2794 rc = DumpFifoBuffer ( pData, count );
2804 DumpFifoBuffer ( char __user *pData, int count )
2808 rc = copy_to_user(pData, DBGBuf, count);
2810 printk(KERN_DEBUG "Last index %d\n", I );
2813 #endif /* DEBUG_FIFO */
2818 DumpTraceBuffer ( char __user *pData, int count )
2820 #ifdef IP2DEBUG_TRACE
2824 int *pIndex = (int __user *)pData;
2826 if ( count < (sizeof(int) * 6) ) {
2829 rc = put_user(tracewrap, pIndex );
2830 rc = put_user(TRACEMAX, ++pIndex );
2831 rc = put_user(tracestrip, ++pIndex );
2832 rc = put_user(tracestuff, ++pIndex );
2833 pData += sizeof(int) * 6;
2834 count -= sizeof(int) * 6;
2836 dumpcount = tracestuff - tracestrip;
2837 if ( dumpcount < 0 ) {
2838 dumpcount += TRACEMAX;
2840 if ( dumpcount > count ) {
2843 chunk = TRACEMAX - tracestrip;
2844 if ( dumpcount > chunk ) {
2845 rc = copy_to_user(pData, &tracebuf[tracestrip],
2846 chunk * sizeof(tracebuf[0]) );
2847 pData += chunk * sizeof(tracebuf[0]);
2849 chunk = dumpcount - chunk;
2853 rc = copy_to_user(pData, &tracebuf[tracestrip],
2854 chunk * sizeof(tracebuf[0]) );
2855 tracestrip += chunk;
2858 rc = put_user(tracestrip, ++pIndex );
2859 rc = put_user(tracestuff, ++pIndex );
2867 /******************************************************************************/
2868 /* Function: ip2_ipl_write() */
2870 /* Pointer to file structure */
2871 /* Pointer to data */
2872 /* Number of bytes to write */
2873 /* Returns: Success or failure */
2878 /******************************************************************************/
2880 ip2_ipl_write(struct file *pFile, const char __user *pData, size_t count, loff_t *off)
2883 printk (KERN_DEBUG "IP2IPL: write %p, %d bytes\n", pData, count );
2888 /******************************************************************************/
2889 /* Function: ip2_ipl_ioctl() */
2890 /* Parameters: Pointer to device inode */
2891 /* Pointer to file structure */
2894 /* Returns: Success or failure */
2899 /******************************************************************************/
2901 ip2_ipl_ioctl (struct file *pFile, UINT cmd, ULONG arg )
2903 unsigned int iplminor = iminor(pFile->f_path.dentry->d_inode);
2905 void __user *argp = (void __user *)arg;
2906 ULONG __user *pIndex = argp;
2907 i2eBordStrPtr pB = i2BoardPtrTable[iplminor / 4];
2911 printk (KERN_DEBUG "IP2IPL: ioctl cmd %d, arg %ld\n", cmd, arg );
2916 switch ( iplminor ) {
2917 case 0: // IPL device
2920 case 1: // Status dump
2925 case 64: /* Driver - ip2stat */
2926 rc = put_user(ip2_tty_driver->refcount, pIndex++ );
2927 rc = put_user(irq_counter, pIndex++ );
2928 rc = put_user(bh_counter, pIndex++ );
2931 case 65: /* Board - ip2stat */
2933 rc = copy_to_user(argp, pB, sizeof(i2eBordStr));
2934 rc = put_user(inb(pB->i2eStatus),
2935 (ULONG __user *)(arg + (ULONG)(&pB->i2eStatus) - (ULONG)pB ) );
2942 if (cmd < IP2_MAX_PORTS) {
2943 pCh = DevTable[cmd];
2946 rc = copy_to_user(argp, pCh, sizeof(i2ChanStr));
2956 case 2: // Ping device
2959 case 3: // Trace device
2961 * akpm: This used to write a whole bunch of function addresses
2962 * to userspace, which generated lots of put_user() warnings.
2963 * I killed it all. Just return "success" and don't do
2980 /******************************************************************************/
2981 /* Function: ip2_ipl_open() */
2982 /* Parameters: Pointer to device inode */
2983 /* Pointer to file structure */
2984 /* Returns: Success or failure */
2989 /******************************************************************************/
2991 ip2_ipl_open( struct inode *pInode, struct file *pFile )
2995 printk (KERN_DEBUG "IP2IPL: open\n" );
2997 cycle_kernel_lock();
3002 proc_ip2mem_show(struct seq_file *m, void *v)
3009 #define FMTLINE "%3d: 0x%08x 0x%08x 0%011o 0%011o\n"
3010 #define FMTLIN2 " 0x%04x 0x%04x tx flow 0x%x\n"
3011 #define FMTLIN3 " 0x%04x 0x%04x rc flow\n"
3015 for( i = 0; i < IP2_MAX_BOARDS; ++i ) {
3016 pB = i2BoardPtrTable[i];
3018 seq_printf(m,"board %d:\n",i);
3019 seq_printf(m,"\tFifo rem: %d mty: %x outM %x\n",
3020 pB->i2eFifoRemains,pB->i2eWaitingForEmptyFifo,pB->i2eOutMailWaiting);
3024 seq_printf(m,"#: tty flags, port flags, cflags, iflags\n");
3025 for (i=0; i < IP2_MAX_PORTS; i++) {
3029 if (tty && tty->count) {
3030 seq_printf(m,FMTLINE,i,(int)tty->flags,pCh->flags,
3031 tty->termios->c_cflag,tty->termios->c_iflag);
3033 seq_printf(m,FMTLIN2,
3034 pCh->outfl.asof,pCh->outfl.room,pCh->channelNeeds);
3035 seq_printf(m,FMTLIN3,pCh->infl.asof,pCh->infl.room);
3042 static int proc_ip2mem_open(struct inode *inode, struct file *file)
3044 return single_open(file, proc_ip2mem_show, NULL);
3047 static const struct file_operations ip2mem_proc_fops = {
3048 .owner = THIS_MODULE,
3049 .open = proc_ip2mem_open,
3051 .llseek = seq_lseek,
3052 .release = single_release,
3056 * This is the handler for /proc/tty/driver/ip2
3058 * This stretch of code has been largely plagerized from at least three
3059 * different sources including ip2mkdev.c and a couple of other drivers.
3060 * The bugs are all mine. :-) =mhw=
3062 static int ip2_read_proc(char *page, char **start, off_t off,
3063 int count, int *eof, void *data)
3073 len += sprintf(page, "ip2info: 1.0 driver: %s\n", pcVersion );
3074 len += sprintf(page+len, "Driver: SMajor=%d CMajor=%d IMajor=%d MaxBoards=%d MaxBoxes=%d MaxPorts=%d\n",
3075 IP2_TTY_MAJOR, IP2_CALLOUT_MAJOR, IP2_IPL_MAJOR,
3076 IP2_MAX_BOARDS, ABS_MAX_BOXES, ABS_BIGGEST_BOX);
3078 for( i = 0; i < IP2_MAX_BOARDS; ++i ) {
3079 /* This need to be reset for a board by board count... */
3081 pB = i2BoardPtrTable[i];
3083 switch( pB->i2ePom.e.porID & ~POR_ID_RESERVED )
3086 len += sprintf( page+len, "Board %d: EX ports=", i );
3087 for( box = 0; box < ABS_MAX_BOXES; ++box )
3091 if( pB->i2eChannelMap[box] != 0 ) ++boxes;
3092 for( j = 0; j < ABS_BIGGEST_BOX; ++j )
3094 if( pB->i2eChannelMap[box] & 1<< j ) {
3098 len += sprintf( page+len, "%d,", ports );
3102 --len; /* Backup over that last comma */
3104 len += sprintf( page+len, " boxes=%d width=%d", boxes, pB->i2eDataWidth16 ? 16 : 8 );
3108 len += sprintf(page+len, "Board %d: ISA-4 ports=4 boxes=1", i );
3113 len += sprintf(page+len, "Board %d: ISA-8-std ports=8 boxes=1", i );
3118 len += sprintf(page+len, "Board %d: ISA-8-RJ11 ports=8 boxes=1", i );
3123 len += sprintf(page+len, "Board %d: unknown", i );
3124 /* Don't try and probe for minor numbers */
3129 /* Don't try and probe for minor numbers */
3130 len += sprintf(page+len, "Board %d: vacant", i );
3135 len += sprintf(page+len, " minors=" );
3137 for ( box = 0; box < ABS_MAX_BOXES; ++box )
3139 for ( j = 0; j < ABS_BIGGEST_BOX; ++j )
3141 if ( pB->i2eChannelMap[box] & (1 << j) )
3143 len += sprintf (page+len,"%d,",
3144 j + ABS_BIGGEST_BOX *
3145 (box+i*ABS_MAX_BOXES));
3150 page[ len - 1 ] = '\n'; /* Overwrite that last comma */
3152 len += sprintf (page+len,"\n" );
3155 if (len+begin > off+count)
3157 if (len+begin < off) {
3163 if (i >= IP2_MAX_BOARDS)
3165 if (off >= len+begin)
3168 *start = page + (off-begin);
3169 return ((count < begin+len-off) ? count : begin+len-off);
3172 /******************************************************************************/
3173 /* Function: ip2trace() */
3174 /* Parameters: Value to add to trace buffer */
3175 /* Returns: Nothing */
3180 /******************************************************************************/
3181 #ifdef IP2DEBUG_TRACE
3183 ip2trace (unsigned short pn, unsigned char cat, unsigned char label, unsigned long codes, ...)
3186 unsigned long *pCode = &codes;
3187 union ip2breadcrumb bc;
3191 tracebuf[tracestuff++] = jiffies;
3192 if ( tracestuff == TRACEMAX ) {
3195 if ( tracestuff == tracestrip ) {
3196 if ( ++tracestrip == TRACEMAX ) {
3202 bc.hdr.port = 0xff & pn;
3204 bc.hdr.codes = (unsigned char)( codes & 0xff );
3205 bc.hdr.label = label;
3206 tracebuf[tracestuff++] = bc.value;
3209 if ( tracestuff == TRACEMAX ) {
3212 if ( tracestuff == tracestrip ) {
3213 if ( ++tracestrip == TRACEMAX ) {
3222 tracebuf[tracestuff++] = *++pCode;
3228 MODULE_LICENSE("GPL");
3230 static struct pci_device_id ip2main_pci_tbl[] __devinitdata = {
3231 { PCI_DEVICE(PCI_VENDOR_ID_COMPUTONE, PCI_DEVICE_ID_COMPUTONE_IP2EX) },
3235 MODULE_DEVICE_TABLE(pci, ip2main_pci_tbl);