Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or |
| 3 | * modify it under the terms of the GNU General Public License |
| 4 | * as published by the Free Software Foundation; either version |
| 5 | * 2 of the License, or (at your option) any later version. |
| 6 | * |
| 7 | * Original driver code supplied by Multi-Tech |
| 8 | * |
| 9 | * Changes |
| 10 | * 1/9/98 alan@redhat.com Merge to 2.0.x kernel tree |
| 11 | * Obtain and use official major/minors |
| 12 | * Loader switched to a misc device |
| 13 | * (fixed range check bug as a side effect) |
| 14 | * Printk clean up |
| 15 | * 9/12/98 alan@redhat.com Rough port to 2.1.x |
| 16 | * |
| 17 | * 10/6/99 sameer Merged the ISA and PCI drivers to |
| 18 | * a new unified driver. |
| 19 | * |
| 20 | * 3/9/99 sameer Added support for ISI4616 cards. |
| 21 | * |
| 22 | * 16/9/99 sameer We do not force RTS low anymore. |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 23 | * This is to prevent the firmware |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | * from getting confused. |
| 25 | * |
| 26 | * 26/10/99 sameer Cosmetic changes:The driver now |
| 27 | * dumps the Port Count information |
| 28 | * along with I/O address and IRQ. |
| 29 | * |
| 30 | * 13/12/99 sameer Fixed the problem with IRQ sharing. |
| 31 | * |
| 32 | * 10/5/00 sameer Fixed isicom_shutdown_board() |
| 33 | * to not lower DTR on all the ports |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 34 | * when the last port on the card is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | * closed. |
| 36 | * |
| 37 | * 10/5/00 sameer Signal mask setup command added |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 38 | * to isicom_setup_port and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | * isicom_shutdown_port. |
| 40 | * |
| 41 | * 24/5/00 sameer The driver is now SMP aware. |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 42 | * |
| 43 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | * 27/11/00 Vinayak P Risbud Fixed the Driver Crash Problem |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 45 | * |
| 46 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | * 03/01/01 anil .s Added support for resetting the |
| 48 | * internal modems on ISI cards. |
| 49 | * |
| 50 | * 08/02/01 anil .s Upgraded the driver for kernel |
| 51 | * 2.4.x |
| 52 | * |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 53 | * 11/04/01 Kevin Fixed firmware load problem with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | * ISIHP-4X card |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 55 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | * 30/04/01 anil .s Fixed the remote login through |
| 57 | * ISI port problem. Now the link |
| 58 | * does not go down before password |
| 59 | * prompt. |
| 60 | * |
| 61 | * 03/05/01 anil .s Fixed the problem with IRQ sharing |
| 62 | * among ISI-PCI cards. |
| 63 | * |
| 64 | * 03/05/01 anil .s Added support to display the version |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 65 | * info during insmod as well as module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | * listing by lsmod. |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 67 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | * 10/05/01 anil .s Done the modifications to the source |
| 69 | * file and Install script so that the |
| 70 | * same installation can be used for |
| 71 | * 2.2.x and 2.4.x kernel. |
| 72 | * |
| 73 | * 06/06/01 anil .s Now we drop both dtr and rts during |
| 74 | * shutdown_port as well as raise them |
| 75 | * during isicom_config_port. |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 76 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | * 09/06/01 acme@conectiva.com.br use capable, not suser, do |
| 78 | * restore_flags on failure in |
| 79 | * isicom_send_break, verify put_user |
| 80 | * result |
| 81 | * |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 82 | * 11/02/03 ranjeeth Added support for 230 Kbps and 460 Kbps |
| 83 | * Baud index extended to 21 |
| 84 | * |
| 85 | * 20/03/03 ranjeeth Made to work for Linux Advanced server. |
| 86 | * Taken care of license warning. |
| 87 | * |
| 88 | * 10/12/03 Ravindra Made to work for Fedora Core 1 of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | * Red Hat Distribution |
| 90 | * |
| 91 | * 06/01/05 Alan Cox Merged the ISI and base kernel strands |
| 92 | * into a single 2.6 driver |
| 93 | * |
| 94 | * *********************************************************** |
| 95 | * |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 96 | * To use this driver you also need the support package. You |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | * can find this in RPM format on |
| 98 | * ftp://ftp.linux.org.uk/pub/linux/alan |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 99 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | * You can find the original tools for this direct from Multitech |
| 101 | * ftp://ftp.multitech.com/ISI-Cards/ |
| 102 | * |
| 103 | * Having installed the cards the module options (/etc/modprobe.conf) |
| 104 | * |
| 105 | * options isicom io=card1,card2,card3,card4 irq=card1,card2,card3,card4 |
| 106 | * |
| 107 | * Omit those entries for boards you don't have installed. |
| 108 | * |
| 109 | * TODO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | * Merge testing |
| 111 | * 64-bit verification |
| 112 | */ |
| 113 | |
| 114 | #include <linux/module.h> |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 115 | #include <linux/firmware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | #include <linux/kernel.h> |
| 117 | #include <linux/tty.h> |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 118 | #include <linux/tty_flip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | #include <linux/termios.h> |
| 120 | #include <linux/fs.h> |
| 121 | #include <linux/sched.h> |
| 122 | #include <linux/serial.h> |
| 123 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | #include <linux/interrupt.h> |
| 125 | #include <linux/timer.h> |
| 126 | #include <linux/delay.h> |
| 127 | #include <linux/ioport.h> |
| 128 | |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 129 | #include <linux/uaccess.h> |
| 130 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | #include <asm/system.h> |
| 132 | |
| 133 | #include <linux/pci.h> |
| 134 | |
| 135 | #include <linux/isicom.h> |
| 136 | |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 137 | #define InterruptTheCard(base) outw(0, (base) + 0xc) |
| 138 | #define ClearInterrupt(base) inw((base) + 0x0a) |
| 139 | |
Jiri Slaby | 73b5257 | 2007-05-08 00:36:29 -0700 | [diff] [blame] | 140 | #define pr_dbg(str...) pr_debug("ISICOM: " str) |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 141 | #ifdef DEBUG |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 142 | #define isicom_paranoia_check(a, b, c) __isicom_paranoia_check((a), (b), (c)) |
| 143 | #else |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 144 | #define isicom_paranoia_check(a, b, c) 0 |
| 145 | #endif |
| 146 | |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 147 | static int isicom_probe(struct pci_dev *, const struct pci_device_id *); |
| 148 | static void __devexit isicom_remove(struct pci_dev *); |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | static struct pci_device_id isicom_pci_tbl[] = { |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 151 | { PCI_DEVICE(VENDOR_ID, 0x2028) }, |
| 152 | { PCI_DEVICE(VENDOR_ID, 0x2051) }, |
| 153 | { PCI_DEVICE(VENDOR_ID, 0x2052) }, |
| 154 | { PCI_DEVICE(VENDOR_ID, 0x2053) }, |
| 155 | { PCI_DEVICE(VENDOR_ID, 0x2054) }, |
| 156 | { PCI_DEVICE(VENDOR_ID, 0x2055) }, |
| 157 | { PCI_DEVICE(VENDOR_ID, 0x2056) }, |
| 158 | { PCI_DEVICE(VENDOR_ID, 0x2057) }, |
| 159 | { PCI_DEVICE(VENDOR_ID, 0x2058) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { 0 } |
| 161 | }; |
| 162 | MODULE_DEVICE_TABLE(pci, isicom_pci_tbl); |
| 163 | |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 164 | static struct pci_driver isicom_driver = { |
| 165 | .name = "isicom", |
| 166 | .id_table = isicom_pci_tbl, |
| 167 | .probe = isicom_probe, |
| 168 | .remove = __devexit_p(isicom_remove) |
| 169 | }; |
| 170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | static int prev_card = 3; /* start servicing isi_card[0] */ |
| 172 | static struct tty_driver *isicom_normal; |
| 173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | static void isicom_tx(unsigned long _data); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 175 | static void isicom_start(struct tty_struct *tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
Jiri Slaby | 34b55b8 | 2006-12-08 02:38:55 -0800 | [diff] [blame] | 177 | static DEFINE_TIMER(tx, isicom_tx, 0, 0); |
| 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | /* baud index mappings from linux defns to isi */ |
| 180 | |
| 181 | static signed char linuxb_to_isib[] = { |
Jiri Slaby | 7edc136 | 2007-02-10 01:44:54 -0800 | [diff] [blame] | 182 | -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 16, 17, 18, 19, 20, 21 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | }; |
| 184 | |
| 185 | struct isi_board { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 186 | unsigned long base; |
Jiri Slaby | 4969b3a | 2007-07-17 04:05:18 -0700 | [diff] [blame] | 187 | int irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | unsigned char port_count; |
| 189 | unsigned short status; |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 190 | unsigned short port_status; /* each bit for each port */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | unsigned short shift_count; |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 192 | struct isi_port *ports; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | signed char count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | spinlock_t card_lock; /* Card wide lock 11/5/00 -sameer */ |
| 195 | unsigned long flags; |
Jiri Slaby | 938a702 | 2006-12-08 02:38:52 -0800 | [diff] [blame] | 196 | unsigned int index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | }; |
| 198 | |
| 199 | struct isi_port { |
| 200 | unsigned short magic; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 201 | struct tty_port port; |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 202 | u16 channel; |
| 203 | u16 status; |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 204 | struct isi_board *card; |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 205 | unsigned char *xmit_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | int xmit_head; |
| 207 | int xmit_tail; |
| 208 | int xmit_cnt; |
| 209 | }; |
| 210 | |
| 211 | static struct isi_board isi_card[BOARD_COUNT]; |
| 212 | static struct isi_port isi_ports[PORT_COUNT]; |
| 213 | |
| 214 | /* |
| 215 | * Locking functions for card level locking. We need to own both |
| 216 | * the kernel lock for the card and have the card in a position that |
| 217 | * it wants to talk. |
| 218 | */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 219 | |
Jiri Slaby | 4969b3a | 2007-07-17 04:05:18 -0700 | [diff] [blame] | 220 | static inline int WaitTillCardIsFree(unsigned long base) |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 221 | { |
| 222 | unsigned int count = 0; |
| 223 | unsigned int a = in_atomic(); /* do we run under spinlock? */ |
| 224 | |
| 225 | while (!(inw(base + 0xe) & 0x1) && count++ < 100) |
| 226 | if (a) |
| 227 | mdelay(1); |
| 228 | else |
| 229 | msleep(1); |
| 230 | |
| 231 | return !(inw(base + 0xe) & 0x1); |
| 232 | } |
| 233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | static int lock_card(struct isi_board *card) |
| 235 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 236 | unsigned long base = card->base; |
Jiri Slaby | 5b21f9d | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 237 | unsigned int retries, a; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Jiri Slaby | 5b21f9d | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 239 | for (retries = 0; retries < 10; retries++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | spin_lock_irqsave(&card->card_lock, card->flags); |
Jiri Slaby | 5b21f9d | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 241 | for (a = 0; a < 10; a++) { |
| 242 | if (inw(base + 0xe) & 0x1) |
| 243 | return 1; |
| 244 | udelay(10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | } |
Jiri Slaby | 5b21f9d | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 246 | spin_unlock_irqrestore(&card->card_lock, card->flags); |
| 247 | msleep(10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | } |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 249 | printk(KERN_WARNING "ISICOM: Failed to lock Card (0x%lx)\n", |
| 250 | card->base); |
| 251 | |
Adrian Bunk | 0418726 | 2006-06-30 18:23:04 +0200 | [diff] [blame] | 252 | return 0; /* Failed to acquire the card! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } |
| 254 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | static void unlock_card(struct isi_board *card) |
| 256 | { |
| 257 | spin_unlock_irqrestore(&card->card_lock, card->flags); |
| 258 | } |
| 259 | |
| 260 | /* |
| 261 | * ISI Card specific ops ... |
| 262 | */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 263 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 264 | /* card->lock HAS to be held */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 265 | static void raise_dtr(struct isi_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 267 | struct isi_board *card = port->card; |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 268 | unsigned long base = card->base; |
| 269 | u16 channel = port->channel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 271 | if (WaitTillCardIsFree(base)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | return; |
| 273 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 274 | outw(0x8000 | (channel << card->shift_count) | 0x02, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | outw(0x0504, base); |
| 276 | InterruptTheCard(base); |
| 277 | port->status |= ISI_DTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | } |
| 279 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 280 | /* card->lock HAS to be held */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 281 | static inline void drop_dtr(struct isi_port *port) |
| 282 | { |
| 283 | struct isi_board *card = port->card; |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 284 | unsigned long base = card->base; |
| 285 | u16 channel = port->channel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 287 | if (WaitTillCardIsFree(base)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | return; |
| 289 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 290 | outw(0x8000 | (channel << card->shift_count) | 0x02, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | outw(0x0404, base); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 292 | InterruptTheCard(base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | port->status &= ~ISI_DTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |
| 295 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 296 | /* card->lock HAS to be held */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 297 | static inline void raise_rts(struct isi_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 299 | struct isi_board *card = port->card; |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 300 | unsigned long base = card->base; |
| 301 | u16 channel = port->channel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 303 | if (WaitTillCardIsFree(base)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | return; |
| 305 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 306 | outw(0x8000 | (channel << card->shift_count) | 0x02, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | outw(0x0a04, base); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 308 | InterruptTheCard(base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | port->status |= ISI_RTS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 311 | |
| 312 | /* card->lock HAS to be held */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 313 | static inline void drop_rts(struct isi_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 315 | struct isi_board *card = port->card; |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 316 | unsigned long base = card->base; |
| 317 | u16 channel = port->channel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 319 | if (WaitTillCardIsFree(base)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | return; |
| 321 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 322 | outw(0x8000 | (channel << card->shift_count) | 0x02, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | outw(0x0804, base); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 324 | InterruptTheCard(base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | port->status &= ~ISI_RTS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 328 | /* card->lock MUST NOT be held */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 329 | static inline void raise_dtr_rts(struct isi_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 331 | struct isi_board *card = port->card; |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 332 | unsigned long base = card->base; |
| 333 | u16 channel = port->channel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
| 335 | if (!lock_card(card)) |
| 336 | return; |
| 337 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 338 | outw(0x8000 | (channel << card->shift_count) | 0x02, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | outw(0x0f04, base); |
| 340 | InterruptTheCard(base); |
| 341 | port->status |= (ISI_DTR | ISI_RTS); |
| 342 | unlock_card(card); |
| 343 | } |
| 344 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 345 | /* card->lock HAS to be held */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 346 | static void drop_dtr_rts(struct isi_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 348 | struct isi_board *card = port->card; |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 349 | unsigned long base = card->base; |
| 350 | u16 channel = port->channel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 352 | if (WaitTillCardIsFree(base)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | return; |
| 354 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 355 | outw(0x8000 | (channel << card->shift_count) | 0x02, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | outw(0x0c04, base); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 357 | InterruptTheCard(base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | port->status &= ~(ISI_RTS | ISI_DTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | } |
| 360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | /* |
| 362 | * ISICOM Driver specific routines ... |
| 363 | * |
| 364 | */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 365 | |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 366 | static inline int __isicom_paranoia_check(struct isi_port const *port, |
| 367 | char *name, const char *routine) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | if (!port) { |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 370 | printk(KERN_WARNING "ISICOM: Warning: bad isicom magic for " |
| 371 | "dev %s in %s.\n", name, routine); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | return 1; |
| 373 | } |
| 374 | if (port->magic != ISICOM_MAGIC) { |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 375 | printk(KERN_WARNING "ISICOM: Warning: NULL isicom port for " |
| 376 | "dev %s in %s.\n", name, routine); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | return 1; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 378 | } |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | return 0; |
| 381 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | /* |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 384 | * Transmitter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | * |
| 386 | * We shovel data into the card buffers on a regular basis. The card |
| 387 | * will do the rest of the work for us. |
| 388 | */ |
| 389 | |
| 390 | static void isicom_tx(unsigned long _data) |
| 391 | { |
Jiri Slaby | 4969b3a | 2007-07-17 04:05:18 -0700 | [diff] [blame] | 392 | unsigned long flags, base; |
Jiri Slaby | 5b21f9d | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 393 | unsigned int retries; |
Jiri Slaby | 4969b3a | 2007-07-17 04:05:18 -0700 | [diff] [blame] | 394 | short count = (BOARD_COUNT-1), card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | short txcount, wrd, residue, word_count, cnt; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 396 | struct isi_port *port; |
| 397 | struct tty_struct *tty; |
| 398 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | /* find next active board */ |
| 400 | card = (prev_card + 1) & 0x0003; |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 401 | while (count-- > 0) { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 402 | if (isi_card[card].status & BOARD_ACTIVE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | break; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 404 | card = (card + 1) & 0x0003; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | } |
| 406 | if (!(isi_card[card].status & BOARD_ACTIVE)) |
| 407 | goto sched_again; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | prev_card = card; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | count = isi_card[card].port_count; |
| 412 | port = isi_card[card].ports; |
| 413 | base = isi_card[card].base; |
Jiri Slaby | 5b21f9d | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 414 | |
| 415 | spin_lock_irqsave(&isi_card[card].card_lock, flags); |
| 416 | for (retries = 0; retries < 100; retries++) { |
| 417 | if (inw(base + 0xe) & 0x1) |
| 418 | break; |
| 419 | udelay(2); |
| 420 | } |
| 421 | if (retries >= 100) |
| 422 | goto unlock; |
| 423 | |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 424 | tty = tty_port_tty_get(&port->port); |
| 425 | if (tty == NULL) |
| 426 | goto put_unlock; |
| 427 | |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 428 | for (; count > 0; count--, port++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | /* port not active or tx disabled to force flow control */ |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 430 | if (!(port->port.flags & ASYNC_INITIALIZED) || |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 431 | !(port->status & ISI_TXOK)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | continue; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | txcount = min_t(short, TX_SIZE, port->xmit_cnt); |
Jiri Slaby | 5b21f9d | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 435 | if (txcount <= 0 || tty->stopped || tty->hw_stopped) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | continue; |
Jiri Slaby | 5b21f9d | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 437 | |
| 438 | if (!(inw(base + 0x02) & (1 << port->channel))) |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 439 | continue; |
Jiri Slaby | 5b21f9d | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 440 | |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 441 | pr_dbg("txing %d bytes, port%d.\n", txcount, |
| 442 | port->channel + 1); |
| 443 | outw((port->channel << isi_card[card].shift_count) | txcount, |
| 444 | base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | residue = NO; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 446 | wrd = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | while (1) { |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 448 | cnt = min_t(int, txcount, (SERIAL_XMIT_SIZE |
| 449 | - port->xmit_tail)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | if (residue == YES) { |
| 451 | residue = NO; |
| 452 | if (cnt > 0) { |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 453 | wrd |= (port->port.xmit_buf[port->xmit_tail] |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 454 | << 8); |
| 455 | port->xmit_tail = (port->xmit_tail + 1) |
| 456 | & (SERIAL_XMIT_SIZE - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | port->xmit_cnt--; |
| 458 | txcount--; |
| 459 | cnt--; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 460 | outw(wrd, base); |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 461 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | outw(wrd, base); |
| 463 | break; |
| 464 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 465 | } |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 466 | if (cnt <= 0) |
| 467 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | word_count = cnt >> 1; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 469 | outsw(base, port->port.xmit_buf+port->xmit_tail, word_count); |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 470 | port->xmit_tail = (port->xmit_tail |
| 471 | + (word_count << 1)) & (SERIAL_XMIT_SIZE - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | txcount -= (word_count << 1); |
| 473 | port->xmit_cnt -= (word_count << 1); |
| 474 | if (cnt & 0x0001) { |
| 475 | residue = YES; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 476 | wrd = port->port.xmit_buf[port->xmit_tail]; |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 477 | port->xmit_tail = (port->xmit_tail + 1) |
| 478 | & (SERIAL_XMIT_SIZE - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | port->xmit_cnt--; |
| 480 | txcount--; |
| 481 | } |
| 482 | } |
| 483 | |
| 484 | InterruptTheCard(base); |
| 485 | if (port->xmit_cnt <= 0) |
| 486 | port->status &= ~ISI_TXOK; |
| 487 | if (port->xmit_cnt <= WAKEUP_CHARS) |
Jiri Slaby | 0aa5de8 | 2007-02-10 01:44:47 -0800 | [diff] [blame] | 488 | tty_wakeup(tty); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 489 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 491 | put_unlock: |
| 492 | tty_kref_put(tty); |
Jiri Slaby | 5b21f9d | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 493 | unlock: |
| 494 | spin_unlock_irqrestore(&isi_card[card].card_lock, flags); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 495 | /* schedule another tx for hopefully in about 10ms */ |
| 496 | sched_again: |
Jiri Slaby | 34b55b8 | 2006-12-08 02:38:55 -0800 | [diff] [blame] | 497 | mod_timer(&tx, jiffies + msecs_to_jiffies(10)); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 498 | } |
| 499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | /* |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 501 | * Main interrupt handler routine |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 503 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 504 | static irqreturn_t isicom_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 506 | struct isi_board *card = dev_id; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 507 | struct isi_port *port; |
| 508 | struct tty_struct *tty; |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 509 | unsigned long base; |
| 510 | u16 header, word_count, count, channel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | short byte_count; |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 512 | unsigned char *rp; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 513 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | if (!card || !(card->status & FIRMWARE_LOADED)) |
| 515 | return IRQ_NONE; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | base = card->base; |
Jiri Slaby | cb4a10c | 2007-02-10 01:44:53 -0800 | [diff] [blame] | 518 | |
| 519 | /* did the card interrupt us? */ |
| 520 | if (!(inw(base + 0x0e) & 0x02)) |
| 521 | return IRQ_NONE; |
| 522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | spin_lock(&card->card_lock); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 524 | |
Jiri Slaby | 18234f8 | 2006-12-08 02:38:51 -0800 | [diff] [blame] | 525 | /* |
| 526 | * disable any interrupts from the PCI card and lower the |
| 527 | * interrupt line |
| 528 | */ |
| 529 | outw(0x8000, base+0x04); |
| 530 | ClearInterrupt(base); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 531 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | inw(base); /* get the dummy word out */ |
| 533 | header = inw(base); |
| 534 | channel = (header & 0x7800) >> card->shift_count; |
| 535 | byte_count = header & 0xff; |
| 536 | |
| 537 | if (channel + 1 > card->port_count) { |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 538 | printk(KERN_WARNING "ISICOM: isicom_interrupt(0x%lx): " |
| 539 | "%d(channel) > port_count.\n", base, channel+1); |
Jiri Slaby | 18234f8 | 2006-12-08 02:38:51 -0800 | [diff] [blame] | 540 | outw(0x0000, base+0x04); /* enable interrupts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | spin_unlock(&card->card_lock); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 542 | return IRQ_HANDLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | } |
| 544 | port = card->ports + channel; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 545 | if (!(port->port.flags & ASYNC_INITIALIZED)) { |
Jiri Slaby | 18234f8 | 2006-12-08 02:38:51 -0800 | [diff] [blame] | 546 | outw(0x0000, base+0x04); /* enable interrupts */ |
Jiri Slaby | 174f130 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 547 | spin_unlock(&card->card_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | return IRQ_HANDLED; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 549 | } |
| 550 | |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 551 | tty = tty_port_tty_get(&port->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | if (tty == NULL) { |
| 553 | word_count = byte_count >> 1; |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 554 | while (byte_count > 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | inw(base); |
| 556 | byte_count -= 2; |
| 557 | } |
| 558 | if (byte_count & 0x01) |
| 559 | inw(base); |
Jiri Slaby | 18234f8 | 2006-12-08 02:38:51 -0800 | [diff] [blame] | 560 | outw(0x0000, base+0x04); /* enable interrupts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | spin_unlock(&card->card_lock); |
| 562 | return IRQ_HANDLED; |
| 563 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | if (header & 0x8000) { /* Status Packet */ |
| 566 | header = inw(base); |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 567 | switch (header & 0xff) { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 568 | case 0: /* Change in EIA signals */ |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 569 | if (port->port.flags & ASYNC_CHECK_CD) { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 570 | if (port->status & ISI_DCD) { |
| 571 | if (!(header & ISI_DCD)) { |
| 572 | /* Carrier has been lost */ |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 573 | pr_dbg("interrupt: DCD->low.\n" |
| 574 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | port->status &= ~ISI_DCD; |
Jiri Slaby | 0aa5de8 | 2007-02-10 01:44:47 -0800 | [diff] [blame] | 576 | tty_hangup(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | } |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 578 | } else if (header & ISI_DCD) { |
| 579 | /* Carrier has been detected */ |
| 580 | pr_dbg("interrupt: DCD->high.\n"); |
| 581 | port->status |= ISI_DCD; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 582 | wake_up_interruptible(&port->port.open_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | } |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 584 | } else { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 585 | if (header & ISI_DCD) |
| 586 | port->status |= ISI_DCD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | else |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 588 | port->status &= ~ISI_DCD; |
| 589 | } |
| 590 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 591 | if (port->port.flags & ASYNC_CTS_FLOW) { |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 592 | if (tty->hw_stopped) { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 593 | if (header & ISI_CTS) { |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 594 | port->port.tty->hw_stopped = 0; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 595 | /* start tx ing */ |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 596 | port->status |= (ISI_TXOK |
| 597 | | ISI_CTS); |
Jiri Slaby | 0aa5de8 | 2007-02-10 01:44:47 -0800 | [diff] [blame] | 598 | tty_wakeup(tty); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 599 | } |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 600 | } else if (!(header & ISI_CTS)) { |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 601 | tty->hw_stopped = 1; |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 602 | /* stop tx ing */ |
| 603 | port->status &= ~(ISI_TXOK | ISI_CTS); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 604 | } |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 605 | } else { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 606 | if (header & ISI_CTS) |
| 607 | port->status |= ISI_CTS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | else |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 609 | port->status &= ~ISI_CTS; |
| 610 | } |
| 611 | |
| 612 | if (header & ISI_DSR) |
| 613 | port->status |= ISI_DSR; |
| 614 | else |
| 615 | port->status &= ~ISI_DSR; |
| 616 | |
| 617 | if (header & ISI_RI) |
| 618 | port->status |= ISI_RI; |
| 619 | else |
| 620 | port->status &= ~ISI_RI; |
| 621 | |
| 622 | break; |
| 623 | |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 624 | case 1: /* Received Break !!! */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 625 | tty_insert_flip_char(tty, 0, TTY_BREAK); |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 626 | if (port->port.flags & ASYNC_SAK) |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 627 | do_SAK(tty); |
| 628 | tty_flip_buffer_push(tty); |
| 629 | break; |
| 630 | |
| 631 | case 2: /* Statistics */ |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 632 | pr_dbg("isicom_interrupt: stats!!!.\n"); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 633 | break; |
| 634 | |
| 635 | default: |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 636 | pr_dbg("Intr: Unknown code in status packet.\n"); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 637 | break; |
| 638 | } |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 639 | } else { /* Data Packet */ |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 640 | |
| 641 | count = tty_prepare_flip_string(tty, &rp, byte_count & ~1); |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 642 | pr_dbg("Intr: Can rx %d of %d bytes.\n", count, byte_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | word_count = count >> 1; |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 644 | insw(base, rp, word_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | byte_count -= (word_count << 1); |
| 646 | if (count & 0x0001) { |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 647 | tty_insert_flip_char(tty, inw(base) & 0xff, |
| 648 | TTY_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | byte_count -= 2; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 650 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | if (byte_count > 0) { |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 652 | pr_dbg("Intr(0x%lx:%d): Flip buffer overflow! dropping " |
| 653 | "bytes...\n", base, channel + 1); |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 654 | /* drain out unread xtra data */ |
| 655 | while (byte_count > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | inw(base); |
| 657 | byte_count -= 2; |
| 658 | } |
| 659 | } |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 660 | tty_flip_buffer_push(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | } |
Jiri Slaby | 18234f8 | 2006-12-08 02:38:51 -0800 | [diff] [blame] | 662 | outw(0x0000, base+0x04); /* enable interrupts */ |
Jiri Slaby | 174f130 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 663 | spin_unlock(&card->card_lock); |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 664 | tty_kref_put(tty); |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | return IRQ_HANDLED; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 667 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 669 | static void isicom_config_port(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | { |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 671 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 672 | struct isi_board *card = port->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | unsigned long baud; |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 674 | unsigned long base = card->base; |
| 675 | u16 channel_setup, channel = port->channel, |
| 676 | shift_count = card->shift_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | unsigned char flow_ctrl; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 678 | |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 679 | /* FIXME: Switch to new tty baud API */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | baud = C_BAUD(tty); |
| 681 | if (baud & CBAUDEX) { |
| 682 | baud &= ~CBAUDEX; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | /* if CBAUDEX bit is on and the baud is set to either 50 or 75 |
| 685 | * then the card is programmed for 57.6Kbps or 115Kbps |
| 686 | * respectively. |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 687 | */ |
| 688 | |
Jiri Slaby | 7edc136 | 2007-02-10 01:44:54 -0800 | [diff] [blame] | 689 | /* 1,2,3,4 => 57.6, 115.2, 230, 460 kbps resp. */ |
| 690 | if (baud < 1 || baud > 4) |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 691 | tty->termios->c_cflag &= ~CBAUDEX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | else |
| 693 | baud += 15; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 694 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | if (baud == 15) { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 696 | |
| 697 | /* the ASYNC_SPD_HI and ASYNC_SPD_VHI options are set |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | * by the set_serial_info ioctl ... this is done by |
| 699 | * the 'setserial' utility. |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 700 | */ |
| 701 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 702 | if ((port->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI) |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 703 | baud++; /* 57.6 Kbps */ |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 704 | if ((port->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI) |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 705 | baud += 2; /* 115 Kbps */ |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 706 | if ((port->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI) |
Jiri Slaby | 7edc136 | 2007-02-10 01:44:54 -0800 | [diff] [blame] | 707 | baud += 3; /* 230 kbps*/ |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 708 | if ((port->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP) |
Jiri Slaby | 7edc136 | 2007-02-10 01:44:54 -0800 | [diff] [blame] | 709 | baud += 4; /* 460 kbps*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | } |
| 711 | if (linuxb_to_isib[baud] == -1) { |
| 712 | /* hang up */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 713 | drop_dtr(port); |
| 714 | return; |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 715 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | raise_dtr(port); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 717 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 718 | if (WaitTillCardIsFree(base) == 0) { |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 719 | outw(0x8000 | (channel << shift_count) | 0x03, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | outw(linuxb_to_isib[baud] << 8 | 0x03, base); |
| 721 | channel_setup = 0; |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 722 | switch (C_CSIZE(tty)) { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 723 | case CS5: |
| 724 | channel_setup |= ISICOM_CS5; |
| 725 | break; |
| 726 | case CS6: |
| 727 | channel_setup |= ISICOM_CS6; |
| 728 | break; |
| 729 | case CS7: |
| 730 | channel_setup |= ISICOM_CS7; |
| 731 | break; |
| 732 | case CS8: |
| 733 | channel_setup |= ISICOM_CS8; |
| 734 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 736 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | if (C_CSTOPB(tty)) |
| 738 | channel_setup |= ISICOM_2SB; |
| 739 | if (C_PARENB(tty)) { |
| 740 | channel_setup |= ISICOM_EVPAR; |
| 741 | if (C_PARODD(tty)) |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 742 | channel_setup |= ISICOM_ODPAR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 744 | outw(channel_setup, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | InterruptTheCard(base); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 746 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | if (C_CLOCAL(tty)) |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 748 | port->port.flags &= ~ASYNC_CHECK_CD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | else |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 750 | port->port.flags |= ASYNC_CHECK_CD; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 751 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | /* flow control settings ...*/ |
| 753 | flow_ctrl = 0; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 754 | port->port.flags &= ~ASYNC_CTS_FLOW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | if (C_CRTSCTS(tty)) { |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 756 | port->port.flags |= ASYNC_CTS_FLOW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | flow_ctrl |= ISICOM_CTSRTS; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 758 | } |
| 759 | if (I_IXON(tty)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | flow_ctrl |= ISICOM_RESPOND_XONXOFF; |
| 761 | if (I_IXOFF(tty)) |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 762 | flow_ctrl |= ISICOM_INITIATE_XONXOFF; |
| 763 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 764 | if (WaitTillCardIsFree(base) == 0) { |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 765 | outw(0x8000 | (channel << shift_count) | 0x04, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | outw(flow_ctrl << 8 | 0x05, base); |
| 767 | outw((STOP_CHAR(tty)) << 8 | (START_CHAR(tty)), base); |
| 768 | InterruptTheCard(base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 770 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | /* rx enabled -> enable port for rx on the card */ |
| 772 | if (C_CREAD(tty)) { |
| 773 | card->port_status |= (1 << channel); |
| 774 | outw(card->port_status, base + 0x02); |
| 775 | } |
| 776 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 778 | /* open et all */ |
| 779 | |
| 780 | static inline void isicom_setup_board(struct isi_board *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | { |
| 782 | int channel; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 783 | struct isi_port *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | unsigned long flags; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | spin_lock_irqsave(&bp->card_lock, flags); |
| 787 | if (bp->status & BOARD_ACTIVE) { |
| 788 | spin_unlock_irqrestore(&bp->card_lock, flags); |
| 789 | return; |
| 790 | } |
| 791 | port = bp->ports; |
| 792 | bp->status |= BOARD_ACTIVE; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 793 | for (channel = 0; channel < bp->port_count; channel++, port++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | drop_dtr_rts(port); |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 795 | spin_unlock_irqrestore(&bp->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 797 | |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 798 | static int isicom_setup_port(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | { |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 800 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 801 | struct isi_board *card = port->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | unsigned long flags; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 803 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 804 | if (port->port.flags & ASYNC_INITIALIZED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | return 0; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 806 | if (tty_port_alloc_xmit_buf(&port->port) < 0) |
| 807 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | |
| 809 | spin_lock_irqsave(&card->card_lock, flags); |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 810 | clear_bit(TTY_IO_ERROR, &tty->flags); |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 811 | if (port->port.count == 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | card->count++; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 813 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | port->xmit_cnt = port->xmit_head = port->xmit_tail = 0; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 815 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | /* discard any residual data */ |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 817 | if (WaitTillCardIsFree(card->base) == 0) { |
| 818 | outw(0x8000 | (port->channel << card->shift_count) | 0x02, |
| 819 | card->base); |
| 820 | outw(((ISICOM_KILLTX | ISICOM_KILLRX) << 8) | 0x06, card->base); |
| 821 | InterruptTheCard(card->base); |
| 822 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 823 | |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 824 | isicom_config_port(tty); |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 825 | port->port.flags |= ASYNC_INITIALIZED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 827 | |
| 828 | return 0; |
| 829 | } |
| 830 | |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 831 | static int block_til_ready(struct tty_struct *tty, struct file *filp, |
| 832 | struct isi_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 834 | struct isi_board *card = port->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | int do_clocal = 0, retval; |
| 836 | unsigned long flags; |
| 837 | DECLARE_WAITQUEUE(wait, current); |
| 838 | |
| 839 | /* block if port is in the process of being closed */ |
| 840 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 841 | if (tty_hung_up_p(filp) || port->port.flags & ASYNC_CLOSING) { |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 842 | pr_dbg("block_til_ready: close in progress.\n"); |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 843 | interruptible_sleep_on(&port->port.close_wait); |
| 844 | if (port->port.flags & ASYNC_HUP_NOTIFY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | return -EAGAIN; |
| 846 | else |
| 847 | return -ERESTARTSYS; |
| 848 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 849 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | /* if non-blocking mode is set ... */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 851 | |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 852 | if ((filp->f_flags & O_NONBLOCK) || |
| 853 | (tty->flags & (1 << TTY_IO_ERROR))) { |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 854 | pr_dbg("block_til_ready: non-block mode.\n"); |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 855 | port->port.flags |= ASYNC_NORMAL_ACTIVE; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 856 | return 0; |
| 857 | } |
| 858 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | if (C_CLOCAL(tty)) |
| 860 | do_clocal = 1; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 861 | |
| 862 | /* block waiting for DCD to be asserted, and while |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | callout dev is busy */ |
| 864 | retval = 0; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 865 | add_wait_queue(&port->port.open_wait, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | |
| 867 | spin_lock_irqsave(&card->card_lock, flags); |
| 868 | if (!tty_hung_up_p(filp)) |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 869 | port->port.count--; |
| 870 | port->port.blocked_open++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 872 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | while (1) { |
| 874 | raise_dtr_rts(port); |
| 875 | |
| 876 | set_current_state(TASK_INTERRUPTIBLE); |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 877 | if (tty_hung_up_p(filp) || !(port->port.flags & ASYNC_INITIALIZED)) { |
| 878 | if (port->port.flags & ASYNC_HUP_NOTIFY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | retval = -EAGAIN; |
| 880 | else |
| 881 | retval = -ERESTARTSYS; |
| 882 | break; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 883 | } |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 884 | if (!(port->port.flags & ASYNC_CLOSING) && |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 885 | (do_clocal || (port->status & ISI_DCD))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | break; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 887 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | if (signal_pending(current)) { |
| 889 | retval = -ERESTARTSYS; |
| 890 | break; |
| 891 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 892 | schedule(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | } |
| 894 | set_current_state(TASK_RUNNING); |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 895 | remove_wait_queue(&port->port.open_wait, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | spin_lock_irqsave(&card->card_lock, flags); |
| 897 | if (!tty_hung_up_p(filp)) |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 898 | port->port.count++; |
| 899 | port->port.blocked_open--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | spin_unlock_irqrestore(&card->card_lock, flags); |
| 901 | if (retval) |
| 902 | return retval; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 903 | port->port.flags |= ASYNC_NORMAL_ACTIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | return 0; |
| 905 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 906 | |
| 907 | static int isicom_open(struct tty_struct *tty, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 909 | struct isi_port *port; |
| 910 | struct isi_board *card; |
Jiri Slaby | 17c4edf | 2006-12-08 02:38:57 -0800 | [diff] [blame] | 911 | unsigned int board; |
| 912 | int error, line; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | |
| 914 | line = tty->index; |
| 915 | if (line < 0 || line > PORT_COUNT-1) |
| 916 | return -ENODEV; |
| 917 | board = BOARD(line); |
| 918 | card = &isi_card[board]; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 919 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | if (!(card->status & FIRMWARE_LOADED)) |
| 921 | return -ENODEV; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 922 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | /* open on a port greater than the port count for the card !!! */ |
| 924 | if (line > ((board * 16) + card->port_count - 1)) |
| 925 | return -ENODEV; |
| 926 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 927 | port = &isi_ports[line]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | if (isicom_paranoia_check(port, tty->name, "isicom_open")) |
| 929 | return -ENODEV; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 930 | |
| 931 | isicom_setup_board(card); |
| 932 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 933 | port->port.count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | tty->driver_data = port; |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 935 | tty_port_tty_set(&port->port, tty); |
| 936 | error = isicom_setup_port(tty); |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 937 | if (error == 0) |
| 938 | error = block_til_ready(tty, filp, port); |
| 939 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 941 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | /* close et all */ |
| 943 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 944 | static inline void isicom_shutdown_board(struct isi_board *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | { |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 946 | if (bp->status & BOARD_ACTIVE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | bp->status &= ~BOARD_ACTIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | } |
| 949 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 950 | /* card->lock HAS to be held */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 951 | static void isicom_shutdown_port(struct isi_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 953 | struct isi_board *card = port->card; |
| 954 | struct tty_struct *tty; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 955 | |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 956 | tty = tty_port_tty_get(&port->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 958 | if (!(port->port.flags & ASYNC_INITIALIZED)) { |
| 959 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | return; |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 961 | } |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 962 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 963 | tty_port_free_xmit_buf(&port->port); |
| 964 | port->port.flags &= ~ASYNC_INITIALIZED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | /* 3rd October 2000 : Vinayak P Risbud */ |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 966 | tty_port_tty_set(&port->port, NULL); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | /*Fix done by Anil .S on 30-04-2001 |
| 969 | remote login through isi port has dtr toggle problem |
| 970 | due to which the carrier drops before the password prompt |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 971 | appears on the remote end. Now we drop the dtr only if the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | HUPCL(Hangup on close) flag is set for the tty*/ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 973 | |
| 974 | if (C_HUPCL(tty)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | /* drop dtr on this port */ |
| 976 | drop_dtr(port); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 977 | |
| 978 | /* any other port uninits */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | if (tty) |
| 980 | set_bit(TTY_IO_ERROR, &tty->flags); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 981 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | if (--card->count < 0) { |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 983 | pr_dbg("isicom_shutdown_port: bad board(0x%lx) count %d.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | card->base, card->count); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 985 | card->count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 987 | |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 988 | /* last port was closed, shutdown that boad too */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 989 | if (C_HUPCL(tty)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | if (!card->count) |
| 991 | isicom_shutdown_board(card); |
| 992 | } |
| 993 | } |
| 994 | |
Alan Cox | 978e595 | 2008-04-30 00:53:59 -0700 | [diff] [blame] | 995 | static void isicom_flush_buffer(struct tty_struct *tty) |
| 996 | { |
| 997 | struct isi_port *port = tty->driver_data; |
| 998 | struct isi_board *card = port->card; |
| 999 | unsigned long flags; |
| 1000 | |
| 1001 | if (isicom_paranoia_check(port, tty->name, "isicom_flush_buffer")) |
| 1002 | return; |
| 1003 | |
| 1004 | spin_lock_irqsave(&card->card_lock, flags); |
| 1005 | port->xmit_cnt = port->xmit_head = port->xmit_tail = 0; |
| 1006 | spin_unlock_irqrestore(&card->card_lock, flags); |
| 1007 | |
| 1008 | tty_wakeup(tty); |
| 1009 | } |
| 1010 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1011 | static void isicom_close(struct tty_struct *tty, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1013 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | c387fd8 | 2006-11-15 00:30:17 +0100 | [diff] [blame] | 1014 | struct isi_board *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | unsigned long flags; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | if (!port) |
| 1018 | return; |
Jiri Slaby | c387fd8 | 2006-11-15 00:30:17 +0100 | [diff] [blame] | 1019 | card = port->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | if (isicom_paranoia_check(port, tty->name, "isicom_close")) |
| 1021 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1022 | |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 1023 | pr_dbg("Close start!!!.\n"); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1024 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | spin_lock_irqsave(&card->card_lock, flags); |
| 1026 | if (tty_hung_up_p(filp)) { |
| 1027 | spin_unlock_irqrestore(&card->card_lock, flags); |
| 1028 | return; |
| 1029 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1030 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1031 | if (tty->count == 1 && port->port.count != 1) { |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 1032 | printk(KERN_WARNING "ISICOM:(0x%lx) isicom_close: bad port " |
| 1033 | "count tty->count = 1 port count = %d.\n", |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1034 | card->base, port->port.count); |
| 1035 | port->port.count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | } |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1037 | if (--port->port.count < 0) { |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 1038 | printk(KERN_WARNING "ISICOM:(0x%lx) isicom_close: bad port " |
| 1039 | "count for channel%d = %d", card->base, port->channel, |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1040 | port->port.count); |
| 1041 | port->port.count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1043 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1044 | if (port->port.count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | spin_unlock_irqrestore(&card->card_lock, flags); |
| 1046 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1047 | } |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1048 | port->port.flags |= ASYNC_CLOSING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | tty->closing = 1; |
| 1050 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1051 | |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 1052 | if (port->port.closing_wait != ASYNC_CLOSING_WAIT_NONE) |
| 1053 | tty_wait_until_sent(tty, port->port.closing_wait); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1054 | /* indicate to the card that no more data can be received |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | on this port */ |
| 1056 | spin_lock_irqsave(&card->card_lock, flags); |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1057 | if (port->port.flags & ASYNC_INITIALIZED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | card->port_status &= ~(1 << port->channel); |
| 1059 | outw(card->port_status, card->base + 0x02); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1060 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | isicom_shutdown_port(port); |
| 1062 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1063 | |
Alan Cox | 978e595 | 2008-04-30 00:53:59 -0700 | [diff] [blame] | 1064 | isicom_flush_buffer(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | tty_ldisc_flush(tty); |
| 1066 | |
| 1067 | spin_lock_irqsave(&card->card_lock, flags); |
| 1068 | tty->closing = 0; |
| 1069 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1070 | if (port->port.blocked_open) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | spin_unlock_irqrestore(&card->card_lock, flags); |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 1072 | if (port->port.close_delay) { |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 1073 | pr_dbg("scheduling until time out.\n"); |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 1074 | msleep_interruptible( |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 1075 | jiffies_to_msecs(port->port.close_delay)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | } |
| 1077 | spin_lock_irqsave(&card->card_lock, flags); |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1078 | wake_up_interruptible(&port->port.open_wait); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1079 | } |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1080 | port->port.flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING); |
| 1081 | wake_up_interruptible(&port->port.close_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | spin_unlock_irqrestore(&card->card_lock, flags); |
| 1083 | } |
| 1084 | |
| 1085 | /* write et all */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1086 | static int isicom_write(struct tty_struct *tty, const unsigned char *buf, |
| 1087 | int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1089 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1090 | struct isi_board *card = port->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | unsigned long flags; |
| 1092 | int cnt, total = 0; |
| 1093 | |
| 1094 | if (isicom_paranoia_check(port, tty->name, "isicom_write")) |
| 1095 | return 0; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1096 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1098 | |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1099 | while (1) { |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 1100 | cnt = min_t(int, count, min(SERIAL_XMIT_SIZE - port->xmit_cnt |
| 1101 | - 1, SERIAL_XMIT_SIZE - port->xmit_head)); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1102 | if (cnt <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | break; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1104 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1105 | memcpy(port->port.xmit_buf + port->xmit_head, buf, cnt); |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 1106 | port->xmit_head = (port->xmit_head + cnt) & (SERIAL_XMIT_SIZE |
| 1107 | - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | port->xmit_cnt += cnt; |
| 1109 | buf += cnt; |
| 1110 | count -= cnt; |
| 1111 | total += cnt; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1112 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | if (port->xmit_cnt && !tty->stopped && !tty->hw_stopped) |
| 1114 | port->status |= ISI_TXOK; |
| 1115 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1116 | return total; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | } |
| 1118 | |
| 1119 | /* put_char et all */ |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1120 | static int isicom_put_char(struct tty_struct *tty, unsigned char ch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1122 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1123 | struct isi_board *card = port->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | unsigned long flags; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | if (isicom_paranoia_check(port, tty->name, "isicom_put_char")) |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1127 | return 0; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | spin_lock_irqsave(&card->card_lock, flags); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1130 | if (port->xmit_cnt >= SERIAL_XMIT_SIZE - 1) { |
| 1131 | spin_unlock_irqrestore(&card->card_lock, flags); |
| 1132 | return 0; |
| 1133 | } |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1134 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1135 | port->port.xmit_buf[port->xmit_head++] = ch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | port->xmit_head &= (SERIAL_XMIT_SIZE - 1); |
| 1137 | port->xmit_cnt++; |
| 1138 | spin_unlock_irqrestore(&card->card_lock, flags); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1139 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | /* flush_chars et all */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1143 | static void isicom_flush_chars(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1145 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | if (isicom_paranoia_check(port, tty->name, "isicom_flush_chars")) |
| 1148 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1149 | |
Jiri Slaby | a547dfe | 2006-01-09 20:54:26 -0800 | [diff] [blame] | 1150 | if (port->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped || |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1151 | !port->port.xmit_buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | /* this tells the transmitter to consider this port for |
| 1155 | data output to the card ... that's the best we can do. */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1156 | port->status |= ISI_TXOK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | } |
| 1158 | |
| 1159 | /* write_room et all */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1160 | static int isicom_write_room(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1162 | struct isi_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | int free; |
| 1164 | |
| 1165 | if (isicom_paranoia_check(port, tty->name, "isicom_write_room")) |
| 1166 | return 0; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | free = SERIAL_XMIT_SIZE - port->xmit_cnt - 1; |
| 1169 | if (free < 0) |
| 1170 | free = 0; |
| 1171 | return free; |
| 1172 | } |
| 1173 | |
| 1174 | /* chars_in_buffer et all */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1175 | static int isicom_chars_in_buffer(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1177 | struct isi_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | if (isicom_paranoia_check(port, tty->name, "isicom_chars_in_buffer")) |
| 1179 | return 0; |
| 1180 | return port->xmit_cnt; |
| 1181 | } |
| 1182 | |
| 1183 | /* ioctl et all */ |
Alan Cox | 6d88972 | 2008-07-22 11:18:21 +0100 | [diff] [blame] | 1184 | static int isicom_send_break(struct tty_struct *tty, int length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | { |
Alan Cox | 6d88972 | 2008-07-22 11:18:21 +0100 | [diff] [blame] | 1186 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1187 | struct isi_board *card = port->card; |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1188 | unsigned long base = card->base; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1189 | |
Alan Cox | 6d88972 | 2008-07-22 11:18:21 +0100 | [diff] [blame] | 1190 | if (length == -1) |
| 1191 | return -EOPNOTSUPP; |
| 1192 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1193 | if (!lock_card(card)) |
Alan Cox | 6d88972 | 2008-07-22 11:18:21 +0100 | [diff] [blame] | 1194 | return -EINVAL; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | outw(0x8000 | ((port->channel) << (card->shift_count)) | 0x3, base); |
| 1197 | outw((length & 0xff) << 8 | 0x00, base); |
| 1198 | outw((length & 0xff00), base); |
| 1199 | InterruptTheCard(base); |
| 1200 | |
| 1201 | unlock_card(card); |
Alan Cox | 6d88972 | 2008-07-22 11:18:21 +0100 | [diff] [blame] | 1202 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | } |
| 1204 | |
| 1205 | static int isicom_tiocmget(struct tty_struct *tty, struct file *file) |
| 1206 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1207 | struct isi_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | /* just send the port status */ |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1209 | u16 status = port->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | |
| 1211 | if (isicom_paranoia_check(port, tty->name, "isicom_ioctl")) |
| 1212 | return -ENODEV; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | return ((status & ISI_RTS) ? TIOCM_RTS : 0) | |
| 1215 | ((status & ISI_DTR) ? TIOCM_DTR : 0) | |
| 1216 | ((status & ISI_DCD) ? TIOCM_CAR : 0) | |
| 1217 | ((status & ISI_DSR) ? TIOCM_DSR : 0) | |
| 1218 | ((status & ISI_CTS) ? TIOCM_CTS : 0) | |
| 1219 | ((status & ISI_RI ) ? TIOCM_RI : 0); |
| 1220 | } |
| 1221 | |
| 1222 | static int isicom_tiocmset(struct tty_struct *tty, struct file *file, |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1223 | unsigned int set, unsigned int clear) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1225 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1226 | unsigned long flags; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | if (isicom_paranoia_check(port, tty->name, "isicom_ioctl")) |
| 1229 | return -ENODEV; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1230 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1231 | spin_lock_irqsave(&port->card->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | if (set & TIOCM_RTS) |
| 1233 | raise_rts(port); |
| 1234 | if (set & TIOCM_DTR) |
| 1235 | raise_dtr(port); |
| 1236 | |
| 1237 | if (clear & TIOCM_RTS) |
| 1238 | drop_rts(port); |
| 1239 | if (clear & TIOCM_DTR) |
| 1240 | drop_dtr(port); |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1241 | spin_unlock_irqrestore(&port->card->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | |
| 1243 | return 0; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1244 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 1246 | static int isicom_set_serial_info(struct tty_struct *tty, |
| 1247 | struct serial_struct __user *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | { |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 1249 | struct isi_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | struct serial_struct newinfo; |
| 1251 | int reconfig_port; |
| 1252 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1253 | if (copy_from_user(&newinfo, info, sizeof(newinfo))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | return -EFAULT; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1255 | |
Alan Cox | 1eac494 | 2008-04-30 00:53:19 -0700 | [diff] [blame] | 1256 | lock_kernel(); |
| 1257 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1258 | reconfig_port = ((port->port.flags & ASYNC_SPD_MASK) != |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1259 | (newinfo.flags & ASYNC_SPD_MASK)); |
| 1260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | if (!capable(CAP_SYS_ADMIN)) { |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 1262 | if ((newinfo.close_delay != port->port.close_delay) || |
| 1263 | (newinfo.closing_wait != port->port.closing_wait) || |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1264 | ((newinfo.flags & ~ASYNC_USR_MASK) != |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1265 | (port->port.flags & ~ASYNC_USR_MASK))) { |
Alan Cox | 1eac494 | 2008-04-30 00:53:19 -0700 | [diff] [blame] | 1266 | unlock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | return -EPERM; |
Alan Cox | 1eac494 | 2008-04-30 00:53:19 -0700 | [diff] [blame] | 1268 | } |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1269 | port->port.flags = ((port->port.flags & ~ASYNC_USR_MASK) | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | (newinfo.flags & ASYNC_USR_MASK)); |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1271 | } else { |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 1272 | port->port.close_delay = newinfo.close_delay; |
| 1273 | port->port.closing_wait = newinfo.closing_wait; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1274 | port->port.flags = ((port->port.flags & ~ASYNC_FLAGS) | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | (newinfo.flags & ASYNC_FLAGS)); |
| 1276 | } |
| 1277 | if (reconfig_port) { |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1278 | unsigned long flags; |
| 1279 | spin_lock_irqsave(&port->card->card_lock, flags); |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 1280 | isicom_config_port(tty); |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1281 | spin_unlock_irqrestore(&port->card->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | } |
Alan Cox | 1eac494 | 2008-04-30 00:53:19 -0700 | [diff] [blame] | 1283 | unlock_kernel(); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1284 | return 0; |
| 1285 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1287 | static int isicom_get_serial_info(struct isi_port *port, |
| 1288 | struct serial_struct __user *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | { |
| 1290 | struct serial_struct out_info; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1291 | |
Alan Cox | 1eac494 | 2008-04-30 00:53:19 -0700 | [diff] [blame] | 1292 | lock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | memset(&out_info, 0, sizeof(out_info)); |
| 1294 | /* out_info.type = ? */ |
| 1295 | out_info.line = port - isi_ports; |
| 1296 | out_info.port = port->card->base; |
| 1297 | out_info.irq = port->card->irq; |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1298 | out_info.flags = port->port.flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | /* out_info.baud_base = ? */ |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 1300 | out_info.close_delay = port->port.close_delay; |
| 1301 | out_info.closing_wait = port->port.closing_wait; |
Alan Cox | 1eac494 | 2008-04-30 00:53:19 -0700 | [diff] [blame] | 1302 | unlock_kernel(); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1303 | if (copy_to_user(info, &out_info, sizeof(out_info))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | return -EFAULT; |
| 1305 | return 0; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1306 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1308 | static int isicom_ioctl(struct tty_struct *tty, struct file *filp, |
| 1309 | unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1311 | struct isi_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | void __user *argp = (void __user *)arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | |
| 1314 | if (isicom_paranoia_check(port, tty->name, "isicom_ioctl")) |
| 1315 | return -ENODEV; |
| 1316 | |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1317 | switch (cmd) { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1318 | case TIOCGSERIAL: |
| 1319 | return isicom_get_serial_info(port, argp); |
| 1320 | |
| 1321 | case TIOCSSERIAL: |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 1322 | return isicom_set_serial_info(tty, argp); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1323 | |
| 1324 | default: |
| 1325 | return -ENOIOCTLCMD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | } |
| 1327 | return 0; |
| 1328 | } |
| 1329 | |
| 1330 | /* set_termios et all */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1331 | static void isicom_set_termios(struct tty_struct *tty, |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 1332 | struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1334 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1335 | unsigned long flags; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | if (isicom_paranoia_check(port, tty->name, "isicom_set_termios")) |
| 1338 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | if (tty->termios->c_cflag == old_termios->c_cflag && |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1341 | tty->termios->c_iflag == old_termios->c_iflag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1343 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1344 | spin_lock_irqsave(&port->card->card_lock, flags); |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 1345 | isicom_config_port(tty); |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1346 | spin_unlock_irqrestore(&port->card->card_lock, flags); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | if ((old_termios->c_cflag & CRTSCTS) && |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1349 | !(tty->termios->c_cflag & CRTSCTS)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | tty->hw_stopped = 0; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1351 | isicom_start(tty); |
| 1352 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | } |
| 1354 | |
| 1355 | /* throttle et all */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1356 | static void isicom_throttle(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1358 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1359 | struct isi_board *card = port->card; |
| 1360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | if (isicom_paranoia_check(port, tty->name, "isicom_throttle")) |
| 1362 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1363 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | /* tell the card that this port cannot handle any more data for now */ |
| 1365 | card->port_status &= ~(1 << port->channel); |
| 1366 | outw(card->port_status, card->base + 0x02); |
| 1367 | } |
| 1368 | |
| 1369 | /* unthrottle et all */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1370 | static void isicom_unthrottle(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1372 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1373 | struct isi_board *card = port->card; |
| 1374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | if (isicom_paranoia_check(port, tty->name, "isicom_unthrottle")) |
| 1376 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | /* tell the card that this port is ready to accept more data */ |
| 1379 | card->port_status |= (1 << port->channel); |
| 1380 | outw(card->port_status, card->base + 0x02); |
| 1381 | } |
| 1382 | |
| 1383 | /* stop et all */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1384 | static void isicom_stop(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1386 | struct isi_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | |
| 1388 | if (isicom_paranoia_check(port, tty->name, "isicom_stop")) |
| 1389 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | /* this tells the transmitter not to consider this port for |
| 1392 | data output to the card. */ |
| 1393 | port->status &= ~ISI_TXOK; |
| 1394 | } |
| 1395 | |
| 1396 | /* start et all */ |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1397 | static void isicom_start(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1399 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1400 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | if (isicom_paranoia_check(port, tty->name, "isicom_start")) |
| 1402 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 | /* this tells the transmitter to consider this port for |
| 1405 | data output to the card. */ |
| 1406 | port->status |= ISI_TXOK; |
| 1407 | } |
| 1408 | |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1409 | static void isicom_hangup(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | { |
Jiri Slaby | 8070e35 | 2006-01-09 20:54:22 -0800 | [diff] [blame] | 1411 | struct isi_port *port = tty->driver_data; |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1412 | unsigned long flags; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | if (isicom_paranoia_check(port, tty->name, "isicom_hangup")) |
| 1415 | return; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1416 | |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1417 | spin_lock_irqsave(&port->card->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | isicom_shutdown_port(port); |
Jiri Slaby | cfe7c09 | 2006-12-29 16:48:00 -0800 | [diff] [blame] | 1419 | spin_unlock_irqrestore(&port->card->card_lock, flags); |
| 1420 | |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1421 | port->port.count = 0; |
| 1422 | port->port.flags &= ~ASYNC_NORMAL_ACTIVE; |
Alan Cox | d450b5a | 2008-10-13 10:39:58 +0100 | [diff] [blame] | 1423 | tty_port_tty_set(&port->port, NULL); |
Alan Cox | f1d0322 | 2008-07-16 21:55:45 +0100 | [diff] [blame] | 1424 | wake_up_interruptible(&port->port.open_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | } |
| 1426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1428 | /* |
| 1429 | * Driver init and deinit functions |
| 1430 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | |
Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 1432 | static const struct tty_operations isicom_ops = { |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1433 | .open = isicom_open, |
| 1434 | .close = isicom_close, |
| 1435 | .write = isicom_write, |
| 1436 | .put_char = isicom_put_char, |
| 1437 | .flush_chars = isicom_flush_chars, |
| 1438 | .write_room = isicom_write_room, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | .chars_in_buffer = isicom_chars_in_buffer, |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1440 | .ioctl = isicom_ioctl, |
| 1441 | .set_termios = isicom_set_termios, |
| 1442 | .throttle = isicom_throttle, |
| 1443 | .unthrottle = isicom_unthrottle, |
| 1444 | .stop = isicom_stop, |
| 1445 | .start = isicom_start, |
| 1446 | .hangup = isicom_hangup, |
| 1447 | .flush_buffer = isicom_flush_buffer, |
| 1448 | .tiocmget = isicom_tiocmget, |
| 1449 | .tiocmset = isicom_tiocmset, |
Alan Cox | 6d88972 | 2008-07-22 11:18:21 +0100 | [diff] [blame] | 1450 | .break_ctl = isicom_send_break, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | }; |
| 1452 | |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1453 | static int __devinit reset_card(struct pci_dev *pdev, |
| 1454 | const unsigned int card, unsigned int *signature) |
| 1455 | { |
| 1456 | struct isi_board *board = pci_get_drvdata(pdev); |
| 1457 | unsigned long base = board->base; |
Jiri Slaby | f0a0ba6 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 1458 | unsigned int sig, portcount = 0; |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1459 | int retval = 0; |
| 1460 | |
| 1461 | dev_dbg(&pdev->dev, "ISILoad:Resetting Card%d at 0x%lx\n", card + 1, |
| 1462 | base); |
| 1463 | |
| 1464 | inw(base + 0x8); |
| 1465 | |
Jiri Slaby | f0a0ba6 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 1466 | msleep(10); |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1467 | |
| 1468 | outw(0, base + 0x8); /* Reset */ |
| 1469 | |
Jiri Slaby | f0a0ba6 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 1470 | msleep(1000); |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1471 | |
Jiri Slaby | f0a0ba6 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 1472 | sig = inw(base + 0x4) & 0xff; |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1473 | |
Jiri Slaby | f0a0ba6 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 1474 | if (sig != 0xa5 && sig != 0xbb && sig != 0xcc && sig != 0xdd && |
| 1475 | sig != 0xee) { |
| 1476 | dev_warn(&pdev->dev, "ISILoad:Card%u reset failure (Possible " |
| 1477 | "bad I/O Port Address 0x%lx).\n", card + 1, base); |
| 1478 | dev_dbg(&pdev->dev, "Sig=0x%x\n", sig); |
Jiri Slaby | 18234f8 | 2006-12-08 02:38:51 -0800 | [diff] [blame] | 1479 | retval = -EIO; |
| 1480 | goto end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | |
Jiri Slaby | f0a0ba6 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 1483 | msleep(10); |
| 1484 | |
| 1485 | portcount = inw(base + 0x2); |
Julia Lawall | 07fb6f2 | 2008-03-04 14:29:17 -0800 | [diff] [blame] | 1486 | if (!(inw(base + 0xe) & 0x1) || (portcount != 0 && portcount != 4 && |
Jiri Slaby | f0a0ba6 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 1487 | portcount != 8 && portcount != 16)) { |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1488 | dev_err(&pdev->dev, "ISILoad:PCI Card%d reset failure.\n", |
Jiri Slaby | f0a0ba6 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 1489 | card + 1); |
| 1490 | retval = -EIO; |
| 1491 | goto end; |
| 1492 | } |
| 1493 | |
| 1494 | switch (sig) { |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1495 | case 0xa5: |
| 1496 | case 0xbb: |
| 1497 | case 0xdd: |
Jiri Slaby | 18234f8 | 2006-12-08 02:38:51 -0800 | [diff] [blame] | 1498 | board->port_count = (portcount == 4) ? 4 : 8; |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1499 | board->shift_count = 12; |
| 1500 | break; |
| 1501 | case 0xcc: |
Jiri Slaby | f0a0ba6 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 1502 | case 0xee: |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1503 | board->port_count = 16; |
| 1504 | board->shift_count = 11; |
| 1505 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | } |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1507 | dev_info(&pdev->dev, "-Done\n"); |
Jiri Slaby | f0a0ba6 | 2007-02-10 01:44:52 -0800 | [diff] [blame] | 1508 | *signature = sig; |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1509 | |
| 1510 | end: |
| 1511 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | } |
| 1513 | |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1514 | static int __devinit load_firmware(struct pci_dev *pdev, |
| 1515 | const unsigned int index, const unsigned int signature) |
| 1516 | { |
| 1517 | struct isi_board *board = pci_get_drvdata(pdev); |
| 1518 | const struct firmware *fw; |
| 1519 | unsigned long base = board->base; |
| 1520 | unsigned int a; |
| 1521 | u16 word_count, status; |
| 1522 | int retval = -EIO; |
| 1523 | char *name; |
| 1524 | u8 *data; |
| 1525 | |
| 1526 | struct stframe { |
| 1527 | u16 addr; |
| 1528 | u16 count; |
| 1529 | u8 data[0]; |
| 1530 | } *frame; |
| 1531 | |
| 1532 | switch (signature) { |
| 1533 | case 0xa5: |
| 1534 | name = "isi608.bin"; |
| 1535 | break; |
| 1536 | case 0xbb: |
| 1537 | name = "isi608em.bin"; |
| 1538 | break; |
| 1539 | case 0xcc: |
| 1540 | name = "isi616em.bin"; |
| 1541 | break; |
| 1542 | case 0xdd: |
| 1543 | name = "isi4608.bin"; |
| 1544 | break; |
| 1545 | case 0xee: |
| 1546 | name = "isi4616.bin"; |
| 1547 | break; |
| 1548 | default: |
| 1549 | dev_err(&pdev->dev, "Unknown signature.\n"); |
| 1550 | goto end; |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1551 | } |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1552 | |
| 1553 | retval = request_firmware(&fw, name, &pdev->dev); |
| 1554 | if (retval) |
| 1555 | goto end; |
| 1556 | |
Jiri Slaby | e4e0408 | 2006-09-30 23:27:50 -0700 | [diff] [blame] | 1557 | retval = -EIO; |
| 1558 | |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1559 | for (frame = (struct stframe *)fw->data; |
| 1560 | frame < (struct stframe *)(fw->data + fw->size); |
Jiri Slaby | e4e0408 | 2006-09-30 23:27:50 -0700 | [diff] [blame] | 1561 | frame = (struct stframe *)((u8 *)(frame + 1) + |
| 1562 | frame->count)) { |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1563 | if (WaitTillCardIsFree(base)) |
| 1564 | goto errrelfw; |
| 1565 | |
| 1566 | outw(0xf0, base); /* start upload sequence */ |
| 1567 | outw(0x00, base); |
| 1568 | outw(frame->addr, base); /* lsb of address */ |
| 1569 | |
| 1570 | word_count = frame->count / 2 + frame->count % 2; |
| 1571 | outw(word_count, base); |
| 1572 | InterruptTheCard(base); |
| 1573 | |
| 1574 | udelay(100); /* 0x2f */ |
| 1575 | |
| 1576 | if (WaitTillCardIsFree(base)) |
| 1577 | goto errrelfw; |
| 1578 | |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1579 | status = inw(base + 0x4); |
| 1580 | if (status != 0) { |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1581 | dev_warn(&pdev->dev, "Card%d rejected load header:\n" |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1582 | KERN_WARNING "Address:0x%x\n" |
| 1583 | KERN_WARNING "Count:0x%x\n" |
| 1584 | KERN_WARNING "Status:0x%x\n", |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1585 | index + 1, frame->addr, frame->count, status); |
| 1586 | goto errrelfw; |
| 1587 | } |
| 1588 | outsw(base, frame->data, word_count); |
| 1589 | |
| 1590 | InterruptTheCard(base); |
| 1591 | |
| 1592 | udelay(50); /* 0x0f */ |
| 1593 | |
| 1594 | if (WaitTillCardIsFree(base)) |
| 1595 | goto errrelfw; |
| 1596 | |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1597 | status = inw(base + 0x4); |
| 1598 | if (status != 0) { |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1599 | dev_err(&pdev->dev, "Card%d got out of sync.Card " |
| 1600 | "Status:0x%x\n", index + 1, status); |
| 1601 | goto errrelfw; |
| 1602 | } |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1603 | } |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1604 | |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1605 | /* XXX: should we test it by reading it back and comparing with original like |
| 1606 | * in load firmware package? */ |
Jiri Slaby | e4e0408 | 2006-09-30 23:27:50 -0700 | [diff] [blame] | 1607 | for (frame = (struct stframe *)fw->data; |
| 1608 | frame < (struct stframe *)(fw->data + fw->size); |
| 1609 | frame = (struct stframe *)((u8 *)(frame + 1) + |
| 1610 | frame->count)) { |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1611 | if (WaitTillCardIsFree(base)) |
| 1612 | goto errrelfw; |
| 1613 | |
| 1614 | outw(0xf1, base); /* start download sequence */ |
| 1615 | outw(0x00, base); |
| 1616 | outw(frame->addr, base); /* lsb of address */ |
| 1617 | |
| 1618 | word_count = (frame->count >> 1) + frame->count % 2; |
| 1619 | outw(word_count + 1, base); |
| 1620 | InterruptTheCard(base); |
| 1621 | |
| 1622 | udelay(50); /* 0xf */ |
| 1623 | |
| 1624 | if (WaitTillCardIsFree(base)) |
| 1625 | goto errrelfw; |
| 1626 | |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1627 | status = inw(base + 0x4); |
| 1628 | if (status != 0) { |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1629 | dev_warn(&pdev->dev, "Card%d rejected verify header:\n" |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1630 | KERN_WARNING "Address:0x%x\n" |
| 1631 | KERN_WARNING "Count:0x%x\n" |
| 1632 | KERN_WARNING "Status: 0x%x\n", |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1633 | index + 1, frame->addr, frame->count, status); |
| 1634 | goto errrelfw; |
| 1635 | } |
| 1636 | |
| 1637 | data = kmalloc(word_count * 2, GFP_KERNEL); |
Jiri Slaby | f067137 | 2006-12-08 02:38:54 -0800 | [diff] [blame] | 1638 | if (data == NULL) { |
| 1639 | dev_err(&pdev->dev, "Card%d, firmware upload " |
| 1640 | "failed, not enough memory\n", index + 1); |
| 1641 | goto errrelfw; |
| 1642 | } |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1643 | inw(base); |
| 1644 | insw(base, data, word_count); |
| 1645 | InterruptTheCard(base); |
| 1646 | |
| 1647 | for (a = 0; a < frame->count; a++) |
| 1648 | if (data[a] != frame->data[a]) { |
| 1649 | kfree(data); |
| 1650 | dev_err(&pdev->dev, "Card%d, firmware upload " |
| 1651 | "failed\n", index + 1); |
| 1652 | goto errrelfw; |
| 1653 | } |
| 1654 | kfree(data); |
| 1655 | |
| 1656 | udelay(50); /* 0xf */ |
| 1657 | |
| 1658 | if (WaitTillCardIsFree(base)) |
| 1659 | goto errrelfw; |
| 1660 | |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1661 | status = inw(base + 0x4); |
| 1662 | if (status != 0) { |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1663 | dev_err(&pdev->dev, "Card%d verify got out of sync. " |
| 1664 | "Card Status:0x%x\n", index + 1, status); |
| 1665 | goto errrelfw; |
| 1666 | } |
| 1667 | } |
| 1668 | |
Jiri Slaby | e4e0408 | 2006-09-30 23:27:50 -0700 | [diff] [blame] | 1669 | /* xfer ctrl */ |
| 1670 | if (WaitTillCardIsFree(base)) |
| 1671 | goto errrelfw; |
| 1672 | |
| 1673 | outw(0xf2, base); |
| 1674 | outw(0x800, base); |
| 1675 | outw(0x0, base); |
| 1676 | outw(0x0, base); |
| 1677 | InterruptTheCard(base); |
| 1678 | outw(0x0, base + 0x4); /* for ISI4608 cards */ |
| 1679 | |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1680 | board->status |= FIRMWARE_LOADED; |
| 1681 | retval = 0; |
| 1682 | |
| 1683 | errrelfw: |
| 1684 | release_firmware(fw); |
| 1685 | end: |
| 1686 | return retval; |
| 1687 | } |
| 1688 | |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1689 | /* |
| 1690 | * Insmod can set static symbols so keep these static |
| 1691 | */ |
Jiri Slaby | 1ed0c0b | 2007-02-10 01:44:55 -0800 | [diff] [blame] | 1692 | static unsigned int card_count; |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1693 | |
| 1694 | static int __devinit isicom_probe(struct pci_dev *pdev, |
| 1695 | const struct pci_device_id *ent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | { |
Jiri Slaby | 4969b3a | 2007-07-17 04:05:18 -0700 | [diff] [blame] | 1697 | unsigned int signature, index; |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1698 | int retval = -EPERM; |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1699 | struct isi_board *board = NULL; |
| 1700 | |
Jiri Slaby | 1ed0c0b | 2007-02-10 01:44:55 -0800 | [diff] [blame] | 1701 | if (card_count >= BOARD_COUNT) |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1702 | goto err; |
| 1703 | |
Jiri Slaby | e1e5770 | 2008-07-16 21:52:56 +0100 | [diff] [blame] | 1704 | retval = pci_enable_device(pdev); |
| 1705 | if (retval) { |
| 1706 | dev_err(&pdev->dev, "failed to enable\n"); |
| 1707 | goto err; |
| 1708 | } |
| 1709 | |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1710 | dev_info(&pdev->dev, "ISI PCI Card(Device ID 0x%x)\n", ent->device); |
| 1711 | |
| 1712 | /* allot the first empty slot in the array */ |
| 1713 | for (index = 0; index < BOARD_COUNT; index++) |
| 1714 | if (isi_card[index].base == 0) { |
| 1715 | board = &isi_card[index]; |
| 1716 | break; |
| 1717 | } |
| 1718 | |
Jiri Slaby | 938a702 | 2006-12-08 02:38:52 -0800 | [diff] [blame] | 1719 | board->index = index; |
Jiri Slaby | 4969b3a | 2007-07-17 04:05:18 -0700 | [diff] [blame] | 1720 | board->base = pci_resource_start(pdev, 3); |
| 1721 | board->irq = pdev->irq; |
Jiri Slaby | 1ed0c0b | 2007-02-10 01:44:55 -0800 | [diff] [blame] | 1722 | card_count++; |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1723 | |
| 1724 | pci_set_drvdata(pdev, board); |
| 1725 | |
Jiri Slaby | 78028da | 2006-12-08 02:38:53 -0800 | [diff] [blame] | 1726 | retval = pci_request_region(pdev, 3, ISICOM_NAME); |
| 1727 | if (retval) { |
Jiri Slaby | 09a4a11 | 2006-12-08 02:38:49 -0800 | [diff] [blame] | 1728 | dev_err(&pdev->dev, "I/O Region 0x%lx-0x%lx is busy. Card%d " |
| 1729 | "will be disabled.\n", board->base, board->base + 15, |
| 1730 | index + 1); |
| 1731 | retval = -EBUSY; |
Jiri Slaby | 1ed0c0b | 2007-02-10 01:44:55 -0800 | [diff] [blame] | 1732 | goto errdec; |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1733 | } |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1734 | |
Jiri Slaby | 09a4a11 | 2006-12-08 02:38:49 -0800 | [diff] [blame] | 1735 | retval = request_irq(board->irq, isicom_interrupt, |
| 1736 | IRQF_SHARED | IRQF_DISABLED, ISICOM_NAME, board); |
| 1737 | if (retval < 0) { |
| 1738 | dev_err(&pdev->dev, "Could not install handler at Irq %d. " |
| 1739 | "Card%d will be disabled.\n", board->irq, index + 1); |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1740 | goto errunrr; |
Jiri Slaby | 09a4a11 | 2006-12-08 02:38:49 -0800 | [diff] [blame] | 1741 | } |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1742 | |
| 1743 | retval = reset_card(pdev, index, &signature); |
| 1744 | if (retval < 0) |
| 1745 | goto errunri; |
| 1746 | |
Jiri Slaby | e65c1db | 2006-01-09 20:54:25 -0800 | [diff] [blame] | 1747 | retval = load_firmware(pdev, index, signature); |
| 1748 | if (retval < 0) |
| 1749 | goto errunri; |
| 1750 | |
Jiri Slaby | 938a702 | 2006-12-08 02:38:52 -0800 | [diff] [blame] | 1751 | for (index = 0; index < board->port_count; index++) |
| 1752 | tty_register_device(isicom_normal, board->index * 16 + index, |
| 1753 | &pdev->dev); |
| 1754 | |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1755 | return 0; |
| 1756 | |
| 1757 | errunri: |
| 1758 | free_irq(board->irq, board); |
| 1759 | errunrr: |
Jiri Slaby | 78028da | 2006-12-08 02:38:53 -0800 | [diff] [blame] | 1760 | pci_release_region(pdev, 3); |
Jiri Slaby | 1ed0c0b | 2007-02-10 01:44:55 -0800 | [diff] [blame] | 1761 | errdec: |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1762 | board->base = 0; |
Jiri Slaby | 1ed0c0b | 2007-02-10 01:44:55 -0800 | [diff] [blame] | 1763 | card_count--; |
Jiri Slaby | e1e5770 | 2008-07-16 21:52:56 +0100 | [diff] [blame] | 1764 | pci_disable_device(pdev); |
Jiri Slaby | 1ed0c0b | 2007-02-10 01:44:55 -0800 | [diff] [blame] | 1765 | err: |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1766 | return retval; |
| 1767 | } |
| 1768 | |
| 1769 | static void __devexit isicom_remove(struct pci_dev *pdev) |
| 1770 | { |
| 1771 | struct isi_board *board = pci_get_drvdata(pdev); |
Jiri Slaby | 938a702 | 2006-12-08 02:38:52 -0800 | [diff] [blame] | 1772 | unsigned int i; |
| 1773 | |
| 1774 | for (i = 0; i < board->port_count; i++) |
| 1775 | tty_unregister_device(isicom_normal, board->index * 16 + i); |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1776 | |
| 1777 | free_irq(board->irq, board); |
Jiri Slaby | 78028da | 2006-12-08 02:38:53 -0800 | [diff] [blame] | 1778 | pci_release_region(pdev, 3); |
Jiri Slaby | 1ed0c0b | 2007-02-10 01:44:55 -0800 | [diff] [blame] | 1779 | board->base = 0; |
| 1780 | card_count--; |
Jiri Slaby | e1e5770 | 2008-07-16 21:52:56 +0100 | [diff] [blame] | 1781 | pci_disable_device(pdev); |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1782 | } |
| 1783 | |
Jiri Slaby | ca26200 | 2006-12-08 02:38:50 -0800 | [diff] [blame] | 1784 | static int __init isicom_init(void) |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1785 | { |
| 1786 | int retval, idx, channel; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1787 | struct isi_port *port; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1788 | |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1789 | for (idx = 0; idx < BOARD_COUNT; idx++) { |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1790 | port = &isi_ports[idx * 16]; |
| 1791 | isi_card[idx].ports = port; |
| 1792 | spin_lock_init(&isi_card[idx].card_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | for (channel = 0; channel < 16; channel++, port++) { |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 1794 | tty_port_init(&port->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | port->magic = ISICOM_MAGIC; |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1796 | port->card = &isi_card[idx]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | port->channel = channel; |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 1798 | port->port.close_delay = 50 * HZ/100; |
| 1799 | port->port.closing_wait = 3000 * HZ/100; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1800 | port->status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1801 | /* . . . */ |
Alan Cox | 251b8dd | 2008-04-30 00:54:12 -0700 | [diff] [blame] | 1802 | } |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1803 | isi_card[idx].base = 0; |
| 1804 | isi_card[idx].irq = 0; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1805 | } |
| 1806 | |
Jiri Slaby | 09a4a11 | 2006-12-08 02:38:49 -0800 | [diff] [blame] | 1807 | /* tty driver structure initialization */ |
| 1808 | isicom_normal = alloc_tty_driver(PORT_COUNT); |
| 1809 | if (!isicom_normal) { |
| 1810 | retval = -ENOMEM; |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1811 | goto error; |
Jiri Slaby | 09a4a11 | 2006-12-08 02:38:49 -0800 | [diff] [blame] | 1812 | } |
| 1813 | |
| 1814 | isicom_normal->owner = THIS_MODULE; |
| 1815 | isicom_normal->name = "ttyM"; |
| 1816 | isicom_normal->major = ISICOM_NMAJOR; |
| 1817 | isicom_normal->minor_start = 0; |
| 1818 | isicom_normal->type = TTY_DRIVER_TYPE_SERIAL; |
| 1819 | isicom_normal->subtype = SERIAL_TYPE_NORMAL; |
| 1820 | isicom_normal->init_termios = tty_std_termios; |
| 1821 | isicom_normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | |
| 1822 | CLOCAL; |
Jiri Slaby | 938a702 | 2006-12-08 02:38:52 -0800 | [diff] [blame] | 1823 | isicom_normal->flags = TTY_DRIVER_REAL_RAW | |
Alan Cox | 6d88972 | 2008-07-22 11:18:21 +0100 | [diff] [blame] | 1824 | TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_HARDWARE_BREAK; |
Jiri Slaby | 09a4a11 | 2006-12-08 02:38:49 -0800 | [diff] [blame] | 1825 | tty_set_operations(isicom_normal, &isicom_ops); |
| 1826 | |
| 1827 | retval = tty_register_driver(isicom_normal); |
| 1828 | if (retval) { |
| 1829 | pr_dbg("Couldn't register the dialin driver\n"); |
| 1830 | goto err_puttty; |
| 1831 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1833 | retval = pci_register_driver(&isicom_driver); |
| 1834 | if (retval < 0) { |
| 1835 | printk(KERN_ERR "ISICOM: Unable to register pci driver.\n"); |
Jiri Slaby | 09a4a11 | 2006-12-08 02:38:49 -0800 | [diff] [blame] | 1836 | goto err_unrtty; |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1837 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | |
Jiri Slaby | 34b55b8 | 2006-12-08 02:38:55 -0800 | [diff] [blame] | 1839 | mod_timer(&tx, jiffies + 1); |
Jiri Slaby | d8d16e4 | 2006-01-09 20:54:21 -0800 | [diff] [blame] | 1840 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | return 0; |
Jiri Slaby | 09a4a11 | 2006-12-08 02:38:49 -0800 | [diff] [blame] | 1842 | err_unrtty: |
| 1843 | tty_unregister_driver(isicom_normal); |
| 1844 | err_puttty: |
| 1845 | put_tty_driver(isicom_normal); |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1846 | error: |
| 1847 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | } |
| 1849 | |
| 1850 | static void __exit isicom_exit(void) |
| 1851 | { |
Jiri Slaby | e327325 | 2007-07-17 04:05:18 -0700 | [diff] [blame] | 1852 | del_timer_sync(&tx); |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 1853 | |
Jiri Slaby | 9ac0948 | 2006-01-09 20:54:24 -0800 | [diff] [blame] | 1854 | pci_unregister_driver(&isicom_driver); |
Jiri Slaby | 09a4a11 | 2006-12-08 02:38:49 -0800 | [diff] [blame] | 1855 | tty_unregister_driver(isicom_normal); |
| 1856 | put_tty_driver(isicom_normal); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | } |
| 1858 | |
Jiri Slaby | ca26200 | 2006-12-08 02:38:50 -0800 | [diff] [blame] | 1859 | module_init(isicom_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | module_exit(isicom_exit); |
Jiri Slaby | aaa246e | 2006-01-09 20:54:23 -0800 | [diff] [blame] | 1861 | |
| 1862 | MODULE_AUTHOR("MultiTech"); |
| 1863 | MODULE_DESCRIPTION("Driver for the ISI series of cards by MultiTech"); |
| 1864 | MODULE_LICENSE("GPL"); |