Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #undef BLOCKMOVE |
| 2 | #define Z_WAKE |
| 3 | #undef Z_EXT_CHARS_IN_BUFFER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
| 5 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * This file contains the driver for the Cyclades async multiport |
| 7 | * serial boards. |
| 8 | * |
| 9 | * Initially written by Randolph Bentson <bentson@grieg.seaslug.org>. |
| 10 | * Modified and maintained by Marcio Saito <marcio@cyclades.com>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 12 | * Copyright (C) 2007-2009 Jiri Slaby <jirislaby@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
| 14 | * Much of the design and some of the code came from serial.c |
| 15 | * which was copyright (C) 1991, 1992 Linus Torvalds. It was |
| 16 | * extensively rewritten by Theodore Ts'o, 8/16/92 -- 9/14/92, |
| 17 | * and then fixed as suggested by Michael K. Johnson 12/12/92. |
Jiri Slaby | c8e1693 | 2007-05-08 00:37:05 -0700 | [diff] [blame] | 18 | * Converted to pci probing and cleaned up by Jiri Slaby. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 22 | #define CY_VERSION "2.6" |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | /* If you need to install more boards than NR_CARDS, change the constant |
| 25 | in the definition below. No other change is necessary to support up to |
| 26 | eight boards. Beyond that you'll have to extend cy_isa_addresses. */ |
| 27 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 28 | #define NR_CARDS 4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | /* |
| 31 | If the total number of ports is larger than NR_PORTS, change this |
| 32 | constant in the definition below. No other change is necessary to |
| 33 | support more boards/ports. */ |
| 34 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 35 | #define NR_PORTS 256 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #define ZO_V1 0 |
| 38 | #define ZO_V2 1 |
| 39 | #define ZE_V1 2 |
| 40 | |
| 41 | #define SERIAL_PARANOIA_CHECK |
| 42 | #undef CY_DEBUG_OPEN |
| 43 | #undef CY_DEBUG_THROTTLE |
| 44 | #undef CY_DEBUG_OTHER |
| 45 | #undef CY_DEBUG_IO |
| 46 | #undef CY_DEBUG_COUNT |
| 47 | #undef CY_DEBUG_DTR |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #undef CY_DEBUG_INTERRUPTS |
| 49 | #undef CY_16Y_HACK |
| 50 | #undef CY_ENABLE_MONITORING |
| 51 | #undef CY_PCI_DEBUG |
| 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | /* |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 54 | * Include section |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <linux/module.h> |
| 57 | #include <linux/errno.h> |
| 58 | #include <linux/signal.h> |
| 59 | #include <linux/sched.h> |
| 60 | #include <linux/timer.h> |
| 61 | #include <linux/interrupt.h> |
| 62 | #include <linux/tty.h> |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 63 | #include <linux/tty_flip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #include <linux/serial.h> |
| 65 | #include <linux/major.h> |
| 66 | #include <linux/string.h> |
| 67 | #include <linux/fcntl.h> |
| 68 | #include <linux/ptrace.h> |
| 69 | #include <linux/cyclades.h> |
| 70 | #include <linux/mm.h> |
| 71 | #include <linux/ioport.h> |
| 72 | #include <linux/init.h> |
| 73 | #include <linux/delay.h> |
| 74 | #include <linux/spinlock.h> |
| 75 | #include <linux/bitops.h> |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 76 | #include <linux/firmware.h> |
Scott James Remnant | 9f56fad7 | 2009-04-06 17:33:04 +0100 | [diff] [blame] | 77 | #include <linux/device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 78 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 80 | #include <linux/io.h> |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 81 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | #include <linux/kernel.h> |
| 84 | #include <linux/pci.h> |
| 85 | |
| 86 | #include <linux/stat.h> |
| 87 | #include <linux/proc_fs.h> |
Alexey Dobriyan | 444697d | 2009-03-31 15:19:15 -0700 | [diff] [blame] | 88 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 90 | static void cy_send_xchar(struct tty_struct *tty, char ch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | #ifndef SERIAL_XMIT_SIZE |
| 93 | #define SERIAL_XMIT_SIZE (min(PAGE_SIZE, 4096)) |
| 94 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | #define STD_COM_FLAGS (0) |
| 97 | |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 98 | /* firmware stuff */ |
| 99 | #define ZL_MAX_BLOCKS 16 |
| 100 | #define DRIVER_VERSION 0x02010203 |
| 101 | #define RAM_SIZE 0x80000 |
| 102 | |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 103 | enum zblock_type { |
| 104 | ZBLOCK_PRG = 0, |
| 105 | ZBLOCK_FPGA = 1 |
| 106 | }; |
| 107 | |
| 108 | struct zfile_header { |
| 109 | char name[64]; |
| 110 | char date[32]; |
| 111 | char aux[32]; |
| 112 | u32 n_config; |
| 113 | u32 config_offset; |
| 114 | u32 n_blocks; |
| 115 | u32 block_offset; |
| 116 | u32 reserved[9]; |
| 117 | } __attribute__ ((packed)); |
| 118 | |
| 119 | struct zfile_config { |
| 120 | char name[64]; |
| 121 | u32 mailbox; |
| 122 | u32 function; |
| 123 | u32 n_blocks; |
| 124 | u32 block_list[ZL_MAX_BLOCKS]; |
| 125 | } __attribute__ ((packed)); |
| 126 | |
| 127 | struct zfile_block { |
| 128 | u32 type; |
| 129 | u32 file_offset; |
| 130 | u32 ram_offset; |
| 131 | u32 size; |
| 132 | } __attribute__ ((packed)); |
| 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | static struct tty_driver *cy_serial_driver; |
| 135 | |
| 136 | #ifdef CONFIG_ISA |
| 137 | /* This is the address lookup table. The driver will probe for |
| 138 | Cyclom-Y/ISA boards at all addresses in here. If you want the |
| 139 | driver to probe addresses at a different address, add it to |
| 140 | this table. If the driver is probing some other board and |
| 141 | causing problems, remove the offending address from this table. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | */ |
| 143 | |
| 144 | static unsigned int cy_isa_addresses[] = { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 145 | 0xD0000, |
| 146 | 0xD2000, |
| 147 | 0xD4000, |
| 148 | 0xD6000, |
| 149 | 0xD8000, |
| 150 | 0xDA000, |
| 151 | 0xDC000, |
| 152 | 0xDE000, |
| 153 | 0, 0, 0, 0, 0, 0, 0, 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | }; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 155 | |
Tobias Klauser | fe97107 | 2006-01-09 20:54:02 -0800 | [diff] [blame] | 156 | #define NR_ISA_ADDRS ARRAY_SIZE(cy_isa_addresses) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 158 | static long maddr[NR_CARDS]; |
| 159 | static int irq[NR_CARDS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | module_param_array(maddr, long, NULL, 0); |
| 162 | module_param_array(irq, int, NULL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 164 | #endif /* CONFIG_ISA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
| 166 | /* This is the per-card data structure containing address, irq, number of |
| 167 | channels, etc. This driver supports a maximum of NR_CARDS cards. |
| 168 | */ |
| 169 | static struct cyclades_card cy_card[NR_CARDS]; |
| 170 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 171 | static int cy_next_channel; /* next minor available */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | * This is used to look up the divisor speeds and the timeouts |
| 175 | * We're normally limited to 15 distinct baud rates. The extra |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 176 | * are accessed via settings in info->port.flags. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, |
| 178 | * 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, |
| 179 | * HI VHI |
| 180 | * 20 |
| 181 | */ |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 182 | static const int baud_table[] = { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 183 | 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, |
| 184 | 1800, 2400, 4800, 9600, 19200, 38400, 57600, 76800, 115200, 150000, |
| 185 | 230400, 0 |
| 186 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 188 | static const char baud_co_25[] = { /* 25 MHz clock option table */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 189 | /* value => 00 01 02 03 04 */ |
| 190 | /* divide by 8 32 128 512 2048 */ |
| 191 | 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x02, |
| 192 | 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
| 193 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 195 | static const char baud_bpr_25[] = { /* 25 MHz baud rate period table */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 196 | 0x00, 0xf5, 0xa3, 0x6f, 0x5c, 0x51, 0xf5, 0xa3, 0x51, 0xa3, |
| 197 | 0x6d, 0x51, 0xa3, 0x51, 0xa3, 0x51, 0x36, 0x29, 0x1b, 0x15 |
| 198 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 200 | static const char baud_co_60[] = { /* 60 MHz clock option table (CD1400 J) */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 201 | /* value => 00 01 02 03 04 */ |
| 202 | /* divide by 8 32 128 512 2048 */ |
| 203 | 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, |
| 204 | 0x03, 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 205 | 0x00 |
| 206 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 208 | static const char baud_bpr_60[] = { /* 60 MHz baud rate period table (CD1400 J) */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 209 | 0x00, 0x82, 0x21, 0xff, 0xdb, 0xc3, 0x92, 0x62, 0xc3, 0x62, |
| 210 | 0x41, 0xc3, 0x62, 0xc3, 0x62, 0xc3, 0x82, 0x62, 0x41, 0x32, |
| 211 | 0x21 |
| 212 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 214 | static const char baud_cor3[] = { /* receive threshold */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 215 | 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, |
| 216 | 0x0a, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x07, |
| 217 | 0x07 |
| 218 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
| 220 | /* |
| 221 | * The Cyclades driver implements HW flow control as any serial driver. |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 222 | * The cyclades_port structure member rflow and the vector rflow_thr |
| 223 | * allows us to take advantage of a special feature in the CD1400 to avoid |
| 224 | * data loss even when the system interrupt latency is too high. These flags |
| 225 | * are to be used only with very special applications. Setting these flags |
| 226 | * requires the use of a special cable (DTR and RTS reversed). In the new |
| 227 | * CD1400-based boards (rev. 6.00 or later), there is no need for special |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | * cables. |
| 229 | */ |
| 230 | |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 231 | static const char rflow_thr[] = { /* rflow threshold */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 232 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 233 | 0x00, 0x00, 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, |
| 234 | 0x0a |
| 235 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
| 237 | /* The Cyclom-Ye has placed the sequential chips in non-sequential |
| 238 | * address order. This look-up table overcomes that problem. |
| 239 | */ |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 240 | static const unsigned int cy_chip_offset[] = { 0x0000, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 241 | 0x0400, |
| 242 | 0x0800, |
| 243 | 0x0C00, |
| 244 | 0x0200, |
| 245 | 0x0600, |
| 246 | 0x0A00, |
| 247 | 0x0E00 |
| 248 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
| 250 | /* PCI related definitions */ |
| 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | #ifdef CONFIG_PCI |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 253 | static const struct pci_device_id cy_pci_dev_id[] = { |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 254 | /* PCI < 1Mb */ |
| 255 | { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Lo) }, |
| 256 | /* PCI > 1Mb */ |
| 257 | { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Hi) }, |
| 258 | /* 4Y PCI < 1Mb */ |
| 259 | { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Lo) }, |
| 260 | /* 4Y PCI > 1Mb */ |
| 261 | { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Hi) }, |
| 262 | /* 8Y PCI < 1Mb */ |
| 263 | { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Lo) }, |
| 264 | /* 8Y PCI > 1Mb */ |
| 265 | { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Hi) }, |
| 266 | /* Z PCI < 1Mb */ |
| 267 | { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Lo) }, |
| 268 | /* Z PCI > 1Mb */ |
| 269 | { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Hi) }, |
Jiri Slaby | 893de2d | 2007-02-12 00:51:49 -0800 | [diff] [blame] | 270 | { } /* end of table */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 271 | }; |
Jiri Slaby | 893de2d | 2007-02-12 00:51:49 -0800 | [diff] [blame] | 272 | MODULE_DEVICE_TABLE(pci, cy_pci_dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | #endif |
| 274 | |
| 275 | static void cy_start(struct tty_struct *); |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 276 | static void cy_set_line_char(struct cyclades_port *, struct tty_struct *); |
Klaus Kudielka | 1a86b5e | 2007-05-08 00:26:26 -0700 | [diff] [blame] | 277 | static int cyz_issue_cmd(struct cyclades_card *, __u32, __u8, __u32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | #ifdef CONFIG_ISA |
| 279 | static unsigned detect_isa_irq(void __iomem *); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 280 | #endif /* CONFIG_ISA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | #ifndef CONFIG_CYZ_INTR |
| 283 | static void cyz_poll(unsigned long); |
| 284 | |
| 285 | /* The Cyclades-Z polling cycle is defined by this variable */ |
| 286 | static long cyz_polling_cycle = CZ_DEF_POLL; |
| 287 | |
Ingo Molnar | 8d06afa | 2005-09-09 13:10:40 -0700 | [diff] [blame] | 288 | static DEFINE_TIMER(cyz_timerlist, cyz_poll, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 290 | #else /* CONFIG_CYZ_INTR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | static void cyz_rx_restart(unsigned long); |
| 292 | static struct timer_list cyz_rx_full_timer[NR_PORTS]; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 293 | #endif /* CONFIG_CYZ_INTR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 295 | static inline void cyy_writeb(struct cyclades_port *port, u32 reg, u8 val) |
| 296 | { |
| 297 | struct cyclades_card *card = port->card; |
| 298 | |
| 299 | cy_writeb(port->u.cyy.base_addr + (reg << card->bus_index), val); |
| 300 | } |
| 301 | |
| 302 | static inline u8 cyy_readb(struct cyclades_port *port, u32 reg) |
| 303 | { |
| 304 | struct cyclades_card *card = port->card; |
| 305 | |
| 306 | return readb(port->u.cyy.base_addr + (reg << card->bus_index)); |
| 307 | } |
| 308 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 309 | static inline bool cy_is_Z(struct cyclades_card *card) |
| 310 | { |
| 311 | return card->num_chips == (unsigned int)-1; |
| 312 | } |
| 313 | |
| 314 | static inline bool __cyz_fpga_loaded(struct RUNTIME_9060 __iomem *ctl_addr) |
| 315 | { |
| 316 | return readl(&ctl_addr->init_ctrl) & (1 << 17); |
| 317 | } |
| 318 | |
| 319 | static inline bool cyz_fpga_loaded(struct cyclades_card *card) |
| 320 | { |
| 321 | return __cyz_fpga_loaded(card->ctl_addr.p9060); |
| 322 | } |
| 323 | |
| 324 | static inline bool cyz_is_loaded(struct cyclades_card *card) |
| 325 | { |
| 326 | struct FIRM_ID __iomem *fw_id = card->base_addr + ID_ADDRESS; |
| 327 | |
| 328 | return (card->hw_ver == ZO_V1 || cyz_fpga_loaded(card)) && |
| 329 | readl(&fw_id->signature) == ZFIRM_ID; |
| 330 | } |
| 331 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 332 | static inline int serial_paranoia_check(struct cyclades_port *info, |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 333 | const char *name, const char *routine) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | { |
| 335 | #ifdef SERIAL_PARANOIA_CHECK |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 336 | if (!info) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 337 | printk(KERN_WARNING "cyc Warning: null cyclades_port for (%s) " |
| 338 | "in %s\n", name, routine); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 339 | return 1; |
| 340 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 342 | if (info->magic != CYCLADES_MAGIC) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 343 | printk(KERN_WARNING "cyc Warning: bad magic number for serial " |
| 344 | "struct (%s) in %s\n", name, routine); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 345 | return 1; |
| 346 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 348 | return 0; |
Jiri Slaby | ebdb513 | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 349 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | /***********************************************************/ |
| 352 | /********* Start of block of Cyclom-Y specific code ********/ |
| 353 | |
| 354 | /* This routine waits up to 1000 micro-seconds for the previous |
| 355 | command to the Cirrus chip to complete and then issues the |
| 356 | new command. An error is returned if the previous command |
| 357 | didn't finish within the time limit. |
| 358 | |
| 359 | This function is only called from inside spinlock-protected code. |
| 360 | */ |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 361 | static int __cyy_issue_cmd(void __iomem *base_addr, u8 cmd, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 363 | void __iomem *ccr = base_addr + (CyCCR << index); |
Jiri Slaby | ad39c30 | 2007-05-08 00:35:49 -0700 | [diff] [blame] | 364 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 366 | /* Check to see that the previous command has completed */ |
| 367 | for (i = 0; i < 100; i++) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 368 | if (readb(ccr) == 0) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 369 | break; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 370 | udelay(10L); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 372 | /* if the CCR never cleared, the previous command |
| 373 | didn't finish within the "reasonable time" */ |
| 374 | if (i == 100) |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 375 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 377 | /* Issue the new command */ |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 378 | cy_writeb(ccr, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 380 | return 0; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | static inline int cyy_issue_cmd(struct cyclades_port *port, u8 cmd) |
| 384 | { |
| 385 | return __cyy_issue_cmd(port->u.cyy.base_addr, cmd, |
| 386 | port->card->bus_index); |
| 387 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
| 389 | #ifdef CONFIG_ISA |
| 390 | /* ISA interrupt detection code */ |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 391 | static unsigned detect_isa_irq(void __iomem *address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 393 | int irq; |
| 394 | unsigned long irqs, flags; |
| 395 | int save_xir, save_car; |
| 396 | int index = 0; /* IRQ probing is only for ISA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 398 | /* forget possible initially masked and pending IRQ */ |
| 399 | irq = probe_irq_off(probe_irq_on()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 401 | /* Clear interrupts on the board first */ |
| 402 | cy_writeb(address + (Cy_ClrIntr << index), 0); |
| 403 | /* Cy_ClrIntr is 0x1800 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 405 | irqs = probe_irq_on(); |
| 406 | /* Wait ... */ |
Jiri Slaby | f6e208c | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 407 | msleep(5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 409 | /* Enable the Tx interrupts on the CD1400 */ |
| 410 | local_irq_save(flags); |
| 411 | cy_writeb(address + (CyCAR << index), 0); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 412 | __cyy_issue_cmd(address, CyCHAN_CTL | CyENB_XMTR, index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 414 | cy_writeb(address + (CyCAR << index), 0); |
| 415 | cy_writeb(address + (CySRER << index), |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 416 | readb(address + (CySRER << index)) | CyTxRdy); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 417 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 419 | /* Wait ... */ |
Jiri Slaby | f6e208c | 2009-09-19 13:13:14 -0700 | [diff] [blame] | 420 | msleep(5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 422 | /* Check which interrupt is in use */ |
| 423 | irq = probe_irq_off(irqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 425 | /* Clean up */ |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 426 | save_xir = (u_char) readb(address + (CyTIR << index)); |
| 427 | save_car = readb(address + (CyCAR << index)); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 428 | cy_writeb(address + (CyCAR << index), (save_xir & 0x3)); |
| 429 | cy_writeb(address + (CySRER << index), |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 430 | readb(address + (CySRER << index)) & ~CyTxRdy); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 431 | cy_writeb(address + (CyTIR << index), (save_xir & 0x3f)); |
| 432 | cy_writeb(address + (CyCAR << index), (save_car)); |
| 433 | cy_writeb(address + (Cy_ClrIntr << index), 0); |
| 434 | /* Cy_ClrIntr is 0x1800 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 436 | return (irq > 0) ? irq : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 438 | #endif /* CONFIG_ISA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 440 | static void cyy_chip_rx(struct cyclades_card *cinfo, int chip, |
| 441 | void __iomem *base_addr) |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 442 | { |
| 443 | struct cyclades_port *info; |
Jiri Slaby | 227434f | 2013-01-03 15:53:01 +0100 | [diff] [blame] | 444 | struct tty_port *port; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 445 | int len, index = cinfo->bus_index; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 446 | u8 ivr, save_xir, channel, save_car, data, char_count; |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 447 | |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 448 | #ifdef CY_DEBUG_INTERRUPTS |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 449 | printk(KERN_DEBUG "cyy_interrupt: rcvd intr, chip %d\n", chip); |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 450 | #endif |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 451 | /* determine the channel & change to that context */ |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 452 | save_xir = readb(base_addr + (CyRIR << index)); |
| 453 | channel = save_xir & CyIRChannel; |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 454 | info = &cinfo->ports[channel + chip * 4]; |
Jiri Slaby | 227434f | 2013-01-03 15:53:01 +0100 | [diff] [blame] | 455 | port = &info->port; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 456 | save_car = cyy_readb(info, CyCAR); |
| 457 | cyy_writeb(info, CyCAR, save_xir); |
| 458 | ivr = cyy_readb(info, CyRIVR) & CyIVRMask; |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 459 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 460 | /* there is an open port for this data */ |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 461 | if (ivr == CyIVRRxEx) { /* exception */ |
| 462 | data = cyy_readb(info, CyRDSR); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 463 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 464 | /* For statistics only */ |
| 465 | if (data & CyBREAK) |
| 466 | info->icount.brk++; |
| 467 | else if (data & CyFRAME) |
| 468 | info->icount.frame++; |
| 469 | else if (data & CyPARITY) |
| 470 | info->icount.parity++; |
| 471 | else if (data & CyOVERRUN) |
| 472 | info->icount.overrun++; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 473 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 474 | if (data & info->ignore_status_mask) { |
| 475 | info->icount.rx++; |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 476 | return; |
| 477 | } |
Jiri Slaby | 227434f | 2013-01-03 15:53:01 +0100 | [diff] [blame] | 478 | if (tty_buffer_request_room(port, 1)) { |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 479 | if (data & info->read_status_mask) { |
| 480 | if (data & CyBREAK) { |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 481 | tty_insert_flip_char(port, |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 482 | cyy_readb(info, CyRDSR), |
| 483 | TTY_BREAK); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 484 | info->icount.rx++; |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame^] | 485 | if (port->flags & ASYNC_SAK) { |
| 486 | struct tty_struct *tty = |
| 487 | tty_port_tty_get(port); |
| 488 | if (tty) { |
| 489 | do_SAK(tty); |
| 490 | tty_kref_put(tty); |
| 491 | } |
| 492 | } |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 493 | } else if (data & CyFRAME) { |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 494 | tty_insert_flip_char(port, |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 495 | cyy_readb(info, CyRDSR), |
| 496 | TTY_FRAME); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 497 | info->icount.rx++; |
| 498 | info->idle_stats.frame_errs++; |
| 499 | } else if (data & CyPARITY) { |
| 500 | /* Pieces of seven... */ |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 501 | tty_insert_flip_char(port, |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 502 | cyy_readb(info, CyRDSR), |
| 503 | TTY_PARITY); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 504 | info->icount.rx++; |
| 505 | info->idle_stats.parity_errs++; |
| 506 | } else if (data & CyOVERRUN) { |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 507 | tty_insert_flip_char(port, 0, |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 508 | TTY_OVERRUN); |
| 509 | info->icount.rx++; |
| 510 | /* If the flip buffer itself is |
| 511 | overflowing, we still lose |
| 512 | the next incoming character. |
| 513 | */ |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 514 | tty_insert_flip_char(port, |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 515 | cyy_readb(info, CyRDSR), |
| 516 | TTY_FRAME); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 517 | info->icount.rx++; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 518 | info->idle_stats.overruns++; |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 519 | /* These two conditions may imply */ |
| 520 | /* a normal read should be done. */ |
| 521 | /* } else if(data & CyTIMEOUT) { */ |
| 522 | /* } else if(data & CySPECHAR) { */ |
| 523 | } else { |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 524 | tty_insert_flip_char(port, 0, |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 525 | TTY_NORMAL); |
| 526 | info->icount.rx++; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 527 | } |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 528 | } else { |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 529 | tty_insert_flip_char(port, 0, TTY_NORMAL); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 530 | info->icount.rx++; |
| 531 | } |
| 532 | } else { |
| 533 | /* there was a software buffer overrun and nothing |
| 534 | * could be done about it!!! */ |
| 535 | info->icount.buf_overrun++; |
| 536 | info->idle_stats.overruns++; |
| 537 | } |
| 538 | } else { /* normal character reception */ |
| 539 | /* load # chars available from the chip */ |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 540 | char_count = cyy_readb(info, CyRDCR); |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 541 | |
| 542 | #ifdef CY_ENABLE_MONITORING |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 543 | ++info->mon.int_count; |
| 544 | info->mon.char_count += char_count; |
| 545 | if (char_count > info->mon.char_max) |
| 546 | info->mon.char_max = char_count; |
| 547 | info->mon.char_last = char_count; |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 548 | #endif |
Jiri Slaby | 227434f | 2013-01-03 15:53:01 +0100 | [diff] [blame] | 549 | len = tty_buffer_request_room(port, char_count); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 550 | while (len--) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 551 | data = cyy_readb(info, CyRDSR); |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 552 | tty_insert_flip_char(port, data, TTY_NORMAL); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 553 | info->idle_stats.recv_bytes++; |
| 554 | info->icount.rx++; |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 555 | #ifdef CY_16Y_HACK |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 556 | udelay(10L); |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 557 | #endif |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 558 | } |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 559 | info->idle_stats.recv_idle = jiffies; |
| 560 | } |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame^] | 561 | tty_schedule_flip(port); |
| 562 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 563 | /* end of service */ |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 564 | cyy_writeb(info, CyRIR, save_xir & 0x3f); |
| 565 | cyy_writeb(info, CyCAR, save_car); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 566 | } |
| 567 | |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 568 | static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip, |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 569 | void __iomem *base_addr) |
| 570 | { |
| 571 | struct cyclades_port *info; |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 572 | struct tty_struct *tty; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 573 | int char_count, index = cinfo->bus_index; |
| 574 | u8 save_xir, channel, save_car, outch; |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 575 | |
| 576 | /* Since we only get here when the transmit buffer |
| 577 | is empty, we know we can always stuff a dozen |
| 578 | characters. */ |
| 579 | #ifdef CY_DEBUG_INTERRUPTS |
| 580 | printk(KERN_DEBUG "cyy_interrupt: xmit intr, chip %d\n", chip); |
| 581 | #endif |
| 582 | |
| 583 | /* determine the channel & change to that context */ |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 584 | save_xir = readb(base_addr + (CyTIR << index)); |
| 585 | channel = save_xir & CyIRChannel; |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 586 | save_car = readb(base_addr + (CyCAR << index)); |
| 587 | cy_writeb(base_addr + (CyCAR << index), save_xir); |
| 588 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 589 | info = &cinfo->ports[channel + chip * 4]; |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 590 | tty = tty_port_tty_get(&info->port); |
| 591 | if (tty == NULL) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 592 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) & ~CyTxRdy); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 593 | goto end; |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 594 | } |
| 595 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 596 | /* load the on-chip space for outbound data */ |
| 597 | char_count = info->xmit_fifo_size; |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 598 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 599 | if (info->x_char) { /* send special char */ |
| 600 | outch = info->x_char; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 601 | cyy_writeb(info, CyTDR, outch); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 602 | char_count--; |
| 603 | info->icount.tx++; |
| 604 | info->x_char = 0; |
| 605 | } |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 606 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 607 | if (info->breakon || info->breakoff) { |
| 608 | if (info->breakon) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 609 | cyy_writeb(info, CyTDR, 0); |
| 610 | cyy_writeb(info, CyTDR, 0x81); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 611 | info->breakon = 0; |
| 612 | char_count -= 2; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 613 | } |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 614 | if (info->breakoff) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 615 | cyy_writeb(info, CyTDR, 0); |
| 616 | cyy_writeb(info, CyTDR, 0x83); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 617 | info->breakoff = 0; |
| 618 | char_count -= 2; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 619 | } |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 620 | } |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 621 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 622 | while (char_count-- > 0) { |
| 623 | if (!info->xmit_cnt) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 624 | if (cyy_readb(info, CySRER) & CyTxMpty) { |
| 625 | cyy_writeb(info, CySRER, |
| 626 | cyy_readb(info, CySRER) & ~CyTxMpty); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 627 | } else { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 628 | cyy_writeb(info, CySRER, CyTxMpty | |
| 629 | (cyy_readb(info, CySRER) & ~CyTxRdy)); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 630 | } |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 631 | goto done; |
| 632 | } |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 633 | if (info->port.xmit_buf == NULL) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 634 | cyy_writeb(info, CySRER, |
| 635 | cyy_readb(info, CySRER) & ~CyTxRdy); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 636 | goto done; |
| 637 | } |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 638 | if (tty->stopped || tty->hw_stopped) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 639 | cyy_writeb(info, CySRER, |
| 640 | cyy_readb(info, CySRER) & ~CyTxRdy); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 641 | goto done; |
| 642 | } |
| 643 | /* Because the Embedded Transmit Commands have been enabled, |
| 644 | * we must check to see if the escape character, NULL, is being |
| 645 | * sent. If it is, we must ensure that there is room for it to |
| 646 | * be doubled in the output stream. Therefore we no longer |
| 647 | * advance the pointer when the character is fetched, but |
| 648 | * rather wait until after the check for a NULL output |
| 649 | * character. This is necessary because there may not be room |
| 650 | * for the two chars needed to send a NULL.) |
| 651 | */ |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 652 | outch = info->port.xmit_buf[info->xmit_tail]; |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 653 | if (outch) { |
| 654 | info->xmit_cnt--; |
| 655 | info->xmit_tail = (info->xmit_tail + 1) & |
| 656 | (SERIAL_XMIT_SIZE - 1); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 657 | cyy_writeb(info, CyTDR, outch); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 658 | info->icount.tx++; |
| 659 | } else { |
| 660 | if (char_count > 1) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 661 | info->xmit_cnt--; |
| 662 | info->xmit_tail = (info->xmit_tail + 1) & |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 663 | (SERIAL_XMIT_SIZE - 1); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 664 | cyy_writeb(info, CyTDR, outch); |
| 665 | cyy_writeb(info, CyTDR, 0); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 666 | info->icount.tx++; |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 667 | char_count--; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 668 | } |
| 669 | } |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 670 | } |
| 671 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 672 | done: |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 673 | tty_wakeup(tty); |
| 674 | tty_kref_put(tty); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 675 | end: |
| 676 | /* end of service */ |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 677 | cyy_writeb(info, CyTIR, save_xir & 0x3f); |
| 678 | cyy_writeb(info, CyCAR, save_car); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 679 | } |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 680 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 681 | static void cyy_chip_modem(struct cyclades_card *cinfo, int chip, |
| 682 | void __iomem *base_addr) |
| 683 | { |
| 684 | struct cyclades_port *info; |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 685 | struct tty_struct *tty; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 686 | int index = cinfo->bus_index; |
| 687 | u8 save_xir, channel, save_car, mdm_change, mdm_status; |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 688 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 689 | /* determine the channel & change to that context */ |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 690 | save_xir = readb(base_addr + (CyMIR << index)); |
| 691 | channel = save_xir & CyIRChannel; |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 692 | info = &cinfo->ports[channel + chip * 4]; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 693 | save_car = cyy_readb(info, CyCAR); |
| 694 | cyy_writeb(info, CyCAR, save_xir); |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 695 | |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 696 | mdm_change = cyy_readb(info, CyMISR); |
| 697 | mdm_status = cyy_readb(info, CyMSVR1); |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 698 | |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 699 | tty = tty_port_tty_get(&info->port); |
| 700 | if (!tty) |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 701 | goto end; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 702 | |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 703 | if (mdm_change & CyANY_DELTA) { |
| 704 | /* For statistics only */ |
| 705 | if (mdm_change & CyDCD) |
| 706 | info->icount.dcd++; |
| 707 | if (mdm_change & CyCTS) |
| 708 | info->icount.cts++; |
| 709 | if (mdm_change & CyDSR) |
| 710 | info->icount.dsr++; |
| 711 | if (mdm_change & CyRI) |
| 712 | info->icount.rng++; |
| 713 | |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 714 | wake_up_interruptible(&info->port.delta_msr_wait); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 715 | } |
| 716 | |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 717 | if ((mdm_change & CyDCD) && (info->port.flags & ASYNC_CHECK_CD)) { |
Jiri Slaby | 174e6fe | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 718 | if (mdm_status & CyDCD) |
| 719 | wake_up_interruptible(&info->port.open_wait); |
| 720 | else |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 721 | tty_hangup(tty); |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 722 | } |
Huang Shijie | f21ec3d | 2012-08-22 22:13:36 -0400 | [diff] [blame] | 723 | if ((mdm_change & CyCTS) && tty_port_cts_enabled(&info->port)) { |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 724 | if (tty->hw_stopped) { |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 725 | if (mdm_status & CyCTS) { |
| 726 | /* cy_start isn't used |
| 727 | because... !!! */ |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 728 | tty->hw_stopped = 0; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 729 | cyy_writeb(info, CySRER, |
| 730 | cyy_readb(info, CySRER) | CyTxRdy); |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 731 | tty_wakeup(tty); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 732 | } |
| 733 | } else { |
| 734 | if (!(mdm_status & CyCTS)) { |
| 735 | /* cy_stop isn't used |
| 736 | because ... !!! */ |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 737 | tty->hw_stopped = 1; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 738 | cyy_writeb(info, CySRER, |
| 739 | cyy_readb(info, CySRER) & ~CyTxRdy); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 740 | } |
| 741 | } |
| 742 | } |
| 743 | /* if (mdm_change & CyDSR) { |
| 744 | } |
| 745 | if (mdm_change & CyRI) { |
| 746 | }*/ |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 747 | tty_kref_put(tty); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 748 | end: |
| 749 | /* end of service */ |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 750 | cyy_writeb(info, CyMIR, save_xir & 0x3f); |
| 751 | cyy_writeb(info, CyCAR, save_car); |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 752 | } |
| 753 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | /* The real interrupt service routine is called |
| 755 | whenever the card wants its hand held--chars |
| 756 | received, out buffer empty, modem change, etc. |
| 757 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 758 | static irqreturn_t cyy_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 760 | int status; |
Jiri Slaby | f742903 | 2007-05-08 00:36:59 -0700 | [diff] [blame] | 761 | struct cyclades_card *cinfo = dev_id; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 762 | void __iomem *base_addr, *card_base_addr; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 763 | unsigned int chip, too_many, had_work; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 764 | int index; |
Jiri Slaby | e941027 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 765 | |
Jiri Slaby | f742903 | 2007-05-08 00:36:59 -0700 | [diff] [blame] | 766 | if (unlikely(cinfo == NULL)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | #ifdef CY_DEBUG_INTERRUPTS |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 768 | printk(KERN_DEBUG "cyy_interrupt: spurious interrupt %d\n", |
| 769 | irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 771 | return IRQ_NONE; /* spurious interrupt */ |
| 772 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 774 | card_base_addr = cinfo->base_addr; |
| 775 | index = cinfo->bus_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | |
Jiri Slaby | f1e83c6 | 2007-05-08 00:36:24 -0700 | [diff] [blame] | 777 | /* card was not initialized yet (e.g. DEBUG_SHIRQ) */ |
| 778 | if (unlikely(card_base_addr == NULL)) |
| 779 | return IRQ_HANDLED; |
| 780 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 781 | /* This loop checks all chips in the card. Make a note whenever |
| 782 | _any_ chip had some work to do, as this is considered an |
| 783 | indication that there will be more to do. Only when no chip |
| 784 | has any work does this outermost loop exit. |
| 785 | */ |
| 786 | do { |
| 787 | had_work = 0; |
| 788 | for (chip = 0; chip < cinfo->num_chips; chip++) { |
| 789 | base_addr = cinfo->base_addr + |
| 790 | (cy_chip_offset[chip] << index); |
| 791 | too_many = 0; |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 792 | while ((status = readb(base_addr + |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 793 | (CySVRR << index))) != 0x00) { |
| 794 | had_work++; |
| 795 | /* The purpose of the following test is to ensure that |
| 796 | no chip can monopolize the driver. This forces the |
| 797 | chips to be checked in a round-robin fashion (after |
| 798 | draining each of a bunch (1000) of characters). |
| 799 | */ |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 800 | if (1000 < too_many++) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 801 | break; |
Jiri Slaby | 1c0a387 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 802 | spin_lock(&cinfo->card_lock); |
Jiri Slaby | ce97a09 | 2007-10-18 03:06:21 -0700 | [diff] [blame] | 803 | if (status & CySRReceive) /* rx intr */ |
| 804 | cyy_chip_rx(cinfo, chip, base_addr); |
| 805 | if (status & CySRTransmit) /* tx intr */ |
| 806 | cyy_chip_tx(cinfo, chip, base_addr); |
| 807 | if (status & CySRModem) /* modem intr */ |
| 808 | cyy_chip_modem(cinfo, chip, base_addr); |
Jiri Slaby | 1c0a387 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 809 | spin_unlock(&cinfo->card_lock); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 810 | } |
| 811 | } |
| 812 | } while (had_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 814 | /* clear interrupts */ |
| 815 | spin_lock(&cinfo->card_lock); |
| 816 | cy_writeb(card_base_addr + (Cy_ClrIntr << index), 0); |
| 817 | /* Cy_ClrIntr is 0x1800 */ |
| 818 | spin_unlock(&cinfo->card_lock); |
| 819 | return IRQ_HANDLED; |
| 820 | } /* cyy_interrupt */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 822 | static void cyy_change_rts_dtr(struct cyclades_port *info, unsigned int set, |
| 823 | unsigned int clear) |
| 824 | { |
| 825 | struct cyclades_card *card = info->card; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 826 | int channel = info->line - card->first_line; |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 827 | u32 rts, dtr, msvrr, msvrd; |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 828 | |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 829 | channel &= 0x03; |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 830 | |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 831 | if (info->rtsdtr_inv) { |
| 832 | msvrr = CyMSVR2; |
| 833 | msvrd = CyMSVR1; |
| 834 | rts = CyDTR; |
| 835 | dtr = CyRTS; |
| 836 | } else { |
| 837 | msvrr = CyMSVR1; |
| 838 | msvrd = CyMSVR2; |
| 839 | rts = CyRTS; |
| 840 | dtr = CyDTR; |
| 841 | } |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 842 | if (set & TIOCM_RTS) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 843 | cyy_writeb(info, CyCAR, channel); |
| 844 | cyy_writeb(info, msvrr, rts); |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 845 | } |
| 846 | if (clear & TIOCM_RTS) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 847 | cyy_writeb(info, CyCAR, channel); |
| 848 | cyy_writeb(info, msvrr, ~rts); |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 849 | } |
| 850 | if (set & TIOCM_DTR) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 851 | cyy_writeb(info, CyCAR, channel); |
| 852 | cyy_writeb(info, msvrd, dtr); |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 853 | #ifdef CY_DEBUG_DTR |
| 854 | printk(KERN_DEBUG "cyc:set_modem_info raising DTR\n"); |
| 855 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 856 | cyy_readb(info, CyMSVR1), |
| 857 | cyy_readb(info, CyMSVR2)); |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 858 | #endif |
| 859 | } |
| 860 | if (clear & TIOCM_DTR) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 861 | cyy_writeb(info, CyCAR, channel); |
| 862 | cyy_writeb(info, msvrd, ~dtr); |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 863 | #ifdef CY_DEBUG_DTR |
| 864 | printk(KERN_DEBUG "cyc:set_modem_info dropping DTR\n"); |
| 865 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 866 | cyy_readb(info, CyMSVR1), |
| 867 | cyy_readb(info, CyMSVR2)); |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 868 | #endif |
| 869 | } |
| 870 | } |
| 871 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | /***********************************************************/ |
| 873 | /********* End of block of Cyclom-Y specific code **********/ |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 874 | /******** Start of block of Cyclades-Z specific code *******/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | /***********************************************************/ |
| 876 | |
| 877 | static int |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 878 | cyz_fetch_msg(struct cyclades_card *cinfo, |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 879 | __u32 *channel, __u8 *cmd, __u32 *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 881 | struct BOARD_CTRL __iomem *board_ctrl = cinfo->board_ctrl; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 882 | unsigned long loc_doorbell; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 884 | loc_doorbell = readl(&cinfo->ctl_addr.p9060->loc_doorbell); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 885 | if (loc_doorbell) { |
| 886 | *cmd = (char)(0xff & loc_doorbell); |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 887 | *channel = readl(&board_ctrl->fwcmd_channel); |
| 888 | *param = (__u32) readl(&board_ctrl->fwcmd_param); |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 889 | cy_writel(&cinfo->ctl_addr.p9060->loc_doorbell, 0xffffffff); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 890 | return 1; |
| 891 | } |
| 892 | return 0; |
| 893 | } /* cyz_fetch_msg */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | |
| 895 | static int |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 896 | cyz_issue_cmd(struct cyclades_card *cinfo, |
Klaus Kudielka | 1a86b5e | 2007-05-08 00:26:26 -0700 | [diff] [blame] | 897 | __u32 channel, __u8 cmd, __u32 param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 899 | struct BOARD_CTRL __iomem *board_ctrl = cinfo->board_ctrl; |
Klaus Kudielka | 1a86b5e | 2007-05-08 00:26:26 -0700 | [diff] [blame] | 900 | __u32 __iomem *pci_doorbell; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 901 | unsigned int index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 903 | if (!cyz_is_loaded(cinfo)) |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 904 | return -1; |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 905 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 906 | index = 0; |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 907 | pci_doorbell = &cinfo->ctl_addr.p9060->pci_doorbell; |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 908 | while ((readl(pci_doorbell) & 0xff) != 0) { |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 909 | if (index++ == 1000) |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 910 | return (int)(readl(pci_doorbell) & 0xff); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 911 | udelay(50L); |
| 912 | } |
| 913 | cy_writel(&board_ctrl->hcmd_channel, channel); |
| 914 | cy_writel(&board_ctrl->hcmd_param, param); |
| 915 | cy_writel(pci_doorbell, (long)cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 917 | return 0; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 918 | } /* cyz_issue_cmd */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 920 | static void cyz_handle_rx(struct cyclades_port *info, struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 922 | struct BUF_CTRL __iomem *buf_ctrl = info->u.cyz.buf_ctrl; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 923 | struct cyclades_card *cinfo = info->card; |
Jiri Slaby | 227434f | 2013-01-03 15:53:01 +0100 | [diff] [blame] | 924 | struct tty_port *port = &info->port; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 925 | unsigned int char_count; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 926 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | #ifdef BLOCKMOVE |
Jiri Slaby | ce71b0f | 2007-05-08 00:36:53 -0700 | [diff] [blame] | 928 | unsigned char *buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | #else |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 930 | char data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | #endif |
Jiri Slaby | ad39c30 | 2007-05-08 00:35:49 -0700 | [diff] [blame] | 932 | __u32 rx_put, rx_get, new_rx_get, rx_bufsize, rx_bufaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 934 | rx_get = new_rx_get = readl(&buf_ctrl->rx_get); |
| 935 | rx_put = readl(&buf_ctrl->rx_put); |
| 936 | rx_bufsize = readl(&buf_ctrl->rx_bufsize); |
| 937 | rx_bufaddr = readl(&buf_ctrl->rx_bufaddr); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 938 | if (rx_put >= rx_get) |
| 939 | char_count = rx_put - rx_get; |
| 940 | else |
| 941 | char_count = rx_put - rx_get + rx_bufsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 943 | if (char_count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | #ifdef CY_ENABLE_MONITORING |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 945 | info->mon.int_count++; |
| 946 | info->mon.char_count += char_count; |
| 947 | if (char_count > info->mon.char_max) |
| 948 | info->mon.char_max = char_count; |
| 949 | info->mon.char_last = char_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | #endif |
Jiri Slaby | f742903 | 2007-05-08 00:36:59 -0700 | [diff] [blame] | 951 | if (tty == NULL) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 952 | /* flush received characters */ |
| 953 | new_rx_get = (new_rx_get + char_count) & |
| 954 | (rx_bufsize - 1); |
| 955 | info->rflush_count++; |
| 956 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | #ifdef BLOCKMOVE |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 958 | /* we'd like to use memcpy(t, f, n) and memset(s, c, count) |
| 959 | for performance, but because of buffer boundaries, there |
| 960 | may be several steps to the operation */ |
Jiri Slaby | ce71b0f | 2007-05-08 00:36:53 -0700 | [diff] [blame] | 961 | while (1) { |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 962 | len = tty_prepare_flip_string(port, &buf, |
Jiri Slaby | ce71b0f | 2007-05-08 00:36:53 -0700 | [diff] [blame] | 963 | char_count); |
| 964 | if (!len) |
| 965 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | |
Jiri Slaby | ce71b0f | 2007-05-08 00:36:53 -0700 | [diff] [blame] | 967 | len = min_t(unsigned int, min(len, char_count), |
| 968 | rx_bufsize - new_rx_get); |
| 969 | |
| 970 | memcpy_fromio(buf, cinfo->base_addr + |
| 971 | rx_bufaddr + new_rx_get, len); |
| 972 | |
| 973 | new_rx_get = (new_rx_get + len) & |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 974 | (rx_bufsize - 1); |
Jiri Slaby | ce71b0f | 2007-05-08 00:36:53 -0700 | [diff] [blame] | 975 | char_count -= len; |
| 976 | info->icount.rx += len; |
| 977 | info->idle_stats.recv_bytes += len; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 978 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | #else |
Jiri Slaby | 227434f | 2013-01-03 15:53:01 +0100 | [diff] [blame] | 980 | len = tty_buffer_request_room(port, char_count); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 981 | while (len--) { |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 982 | data = readb(cinfo->base_addr + rx_bufaddr + |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 983 | new_rx_get); |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 984 | new_rx_get = (new_rx_get + 1) & |
| 985 | (rx_bufsize - 1); |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 986 | tty_insert_flip_char(port, data, TTY_NORMAL); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 987 | info->idle_stats.recv_bytes++; |
| 988 | info->icount.rx++; |
| 989 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | #endif |
| 991 | #ifdef CONFIG_CYZ_INTR |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 992 | /* Recalculate the number of chars in the RX buffer and issue |
| 993 | a cmd in case it's higher than the RX high water mark */ |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 994 | rx_put = readl(&buf_ctrl->rx_put); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 995 | if (rx_put >= rx_get) |
| 996 | char_count = rx_put - rx_get; |
| 997 | else |
| 998 | char_count = rx_put - rx_get + rx_bufsize; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 999 | if (char_count >= readl(&buf_ctrl->rx_threshold) && |
Jiri Slaby | ebafeef | 2007-10-18 03:06:20 -0700 | [diff] [blame] | 1000 | !timer_pending(&cyz_rx_full_timer[ |
| 1001 | info->line])) |
| 1002 | mod_timer(&cyz_rx_full_timer[info->line], |
| 1003 | jiffies + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1005 | info->idle_stats.recv_idle = jiffies; |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame^] | 1006 | tty_schedule_flip(&info->port); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1007 | } |
| 1008 | /* Update rx_get */ |
| 1009 | cy_writel(&buf_ctrl->rx_get, new_rx_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | } |
| 1012 | |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1013 | static void cyz_handle_tx(struct cyclades_port *info, struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1015 | struct BUF_CTRL __iomem *buf_ctrl = info->u.cyz.buf_ctrl; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1016 | struct cyclades_card *cinfo = info->card; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 1017 | u8 data; |
| 1018 | unsigned int char_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | #ifdef BLOCKMOVE |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1020 | int small_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | #endif |
Jiri Slaby | ad39c30 | 2007-05-08 00:35:49 -0700 | [diff] [blame] | 1022 | __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1024 | if (info->xmit_cnt <= 0) /* Nothing to transmit */ |
| 1025 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 1027 | tx_get = readl(&buf_ctrl->tx_get); |
| 1028 | tx_put = readl(&buf_ctrl->tx_put); |
| 1029 | tx_bufsize = readl(&buf_ctrl->tx_bufsize); |
| 1030 | tx_bufaddr = readl(&buf_ctrl->tx_bufaddr); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1031 | if (tx_put >= tx_get) |
| 1032 | char_count = tx_get - tx_put - 1 + tx_bufsize; |
| 1033 | else |
| 1034 | char_count = tx_get - tx_put - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1036 | if (char_count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | |
Jiri Slaby | f742903 | 2007-05-08 00:36:59 -0700 | [diff] [blame] | 1038 | if (tty == NULL) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1039 | goto ztxdone; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1040 | |
| 1041 | if (info->x_char) { /* send special char */ |
| 1042 | data = info->x_char; |
| 1043 | |
| 1044 | cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data); |
| 1045 | tx_put = (tx_put + 1) & (tx_bufsize - 1); |
| 1046 | info->x_char = 0; |
| 1047 | char_count--; |
| 1048 | info->icount.tx++; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1049 | } |
| 1050 | #ifdef BLOCKMOVE |
| 1051 | while (0 < (small_count = min_t(unsigned int, |
| 1052 | tx_bufsize - tx_put, min_t(unsigned int, |
| 1053 | (SERIAL_XMIT_SIZE - info->xmit_tail), |
| 1054 | min_t(unsigned int, info->xmit_cnt, |
| 1055 | char_count))))) { |
| 1056 | |
| 1057 | memcpy_toio((char *)(cinfo->base_addr + tx_bufaddr + |
| 1058 | tx_put), |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1059 | &info->port.xmit_buf[info->xmit_tail], |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1060 | small_count); |
| 1061 | |
| 1062 | tx_put = (tx_put + small_count) & (tx_bufsize - 1); |
| 1063 | char_count -= small_count; |
| 1064 | info->icount.tx += small_count; |
| 1065 | info->xmit_cnt -= small_count; |
| 1066 | info->xmit_tail = (info->xmit_tail + small_count) & |
| 1067 | (SERIAL_XMIT_SIZE - 1); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1068 | } |
| 1069 | #else |
| 1070 | while (info->xmit_cnt && char_count) { |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1071 | data = info->port.xmit_buf[info->xmit_tail]; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1072 | info->xmit_cnt--; |
| 1073 | info->xmit_tail = (info->xmit_tail + 1) & |
| 1074 | (SERIAL_XMIT_SIZE - 1); |
| 1075 | |
| 1076 | cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data); |
| 1077 | tx_put = (tx_put + 1) & (tx_bufsize - 1); |
| 1078 | char_count--; |
| 1079 | info->icount.tx++; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1080 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | #endif |
Jiri Slaby | ebafeef | 2007-10-18 03:06:20 -0700 | [diff] [blame] | 1082 | tty_wakeup(tty); |
Jiri Slaby | 7fa57a0 | 2007-10-22 20:45:13 -0700 | [diff] [blame] | 1083 | ztxdone: |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1084 | /* Update tx_put */ |
| 1085 | cy_writel(&buf_ctrl->tx_put, tx_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | } |
| 1088 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1089 | static void cyz_handle_cmd(struct cyclades_card *cinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1091 | struct BOARD_CTRL __iomem *board_ctrl = cinfo->board_ctrl; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1092 | struct tty_struct *tty; |
| 1093 | struct cyclades_port *info; |
Jiri Slaby | 101b815 | 2009-06-11 12:30:10 +0100 | [diff] [blame] | 1094 | __u32 channel, param, fw_ver; |
Klaus Kudielka | 1a86b5e | 2007-05-08 00:26:26 -0700 | [diff] [blame] | 1095 | __u8 cmd; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1096 | int special_count; |
| 1097 | int delta_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 1099 | fw_ver = readl(&board_ctrl->fw_version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1101 | while (cyz_fetch_msg(cinfo, &channel, &cmd, ¶m) == 1) { |
| 1102 | special_count = 0; |
| 1103 | delta_count = 0; |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 1104 | info = &cinfo->ports[channel]; |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1105 | tty = tty_port_tty_get(&info->port); |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1106 | if (tty == NULL) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1107 | continue; |
Jiri Slaby | f742903 | 2007-05-08 00:36:59 -0700 | [diff] [blame] | 1108 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1109 | switch (cmd) { |
| 1110 | case C_CM_PR_ERROR: |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 1111 | tty_insert_flip_char(&info->port, 0, TTY_PARITY); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1112 | info->icount.rx++; |
| 1113 | special_count++; |
| 1114 | break; |
| 1115 | case C_CM_FR_ERROR: |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 1116 | tty_insert_flip_char(&info->port, 0, TTY_FRAME); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1117 | info->icount.rx++; |
| 1118 | special_count++; |
| 1119 | break; |
| 1120 | case C_CM_RXBRK: |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 1121 | tty_insert_flip_char(&info->port, 0, TTY_BREAK); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1122 | info->icount.rx++; |
| 1123 | special_count++; |
| 1124 | break; |
| 1125 | case C_CM_MDCD: |
| 1126 | info->icount.dcd++; |
| 1127 | delta_count++; |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1128 | if (info->port.flags & ASYNC_CHECK_CD) { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1129 | u32 dcd = fw_ver > 241 ? param : |
| 1130 | readl(&info->u.cyz.ch_ctrl->rs_status); |
Jiri Slaby | 174e6fe | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1131 | if (dcd & C_RS_DCD) |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1132 | wake_up_interruptible(&info->port.open_wait); |
Jiri Slaby | 174e6fe | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1133 | else |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1134 | tty_hangup(tty); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1135 | } |
| 1136 | break; |
| 1137 | case C_CM_MCTS: |
| 1138 | info->icount.cts++; |
| 1139 | delta_count++; |
| 1140 | break; |
| 1141 | case C_CM_MRI: |
| 1142 | info->icount.rng++; |
| 1143 | delta_count++; |
| 1144 | break; |
| 1145 | case C_CM_MDSR: |
| 1146 | info->icount.dsr++; |
| 1147 | delta_count++; |
| 1148 | break; |
| 1149 | #ifdef Z_WAKE |
| 1150 | case C_CM_IOCTLW: |
Jiri Slaby | ebafeef | 2007-10-18 03:06:20 -0700 | [diff] [blame] | 1151 | complete(&info->shutdown_wait); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1152 | break; |
| 1153 | #endif |
| 1154 | #ifdef CONFIG_CYZ_INTR |
| 1155 | case C_CM_RXHIWM: |
| 1156 | case C_CM_RXNNDT: |
| 1157 | case C_CM_INTBACK2: |
| 1158 | /* Reception Interrupt */ |
| 1159 | #ifdef CY_DEBUG_INTERRUPTS |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1160 | printk(KERN_DEBUG "cyz_interrupt: rcvd intr, card %d, " |
| 1161 | "port %ld\n", info->card, channel); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1162 | #endif |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1163 | cyz_handle_rx(info, tty); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1164 | break; |
| 1165 | case C_CM_TXBEMPTY: |
| 1166 | case C_CM_TXLOWWM: |
| 1167 | case C_CM_INTBACK: |
| 1168 | /* Transmission Interrupt */ |
| 1169 | #ifdef CY_DEBUG_INTERRUPTS |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1170 | printk(KERN_DEBUG "cyz_interrupt: xmit intr, card %d, " |
| 1171 | "port %ld\n", info->card, channel); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1172 | #endif |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1173 | cyz_handle_tx(info, tty); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1174 | break; |
| 1175 | #endif /* CONFIG_CYZ_INTR */ |
| 1176 | case C_CM_FATAL: |
| 1177 | /* should do something with this !!! */ |
| 1178 | break; |
| 1179 | default: |
| 1180 | break; |
| 1181 | } |
| 1182 | if (delta_count) |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1183 | wake_up_interruptible(&info->port.delta_msr_wait); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1184 | if (special_count) |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame^] | 1185 | tty_schedule_flip(&info->port); |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1186 | tty_kref_put(tty); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1187 | } |
| 1188 | } |
| 1189 | |
| 1190 | #ifdef CONFIG_CYZ_INTR |
| 1191 | static irqreturn_t cyz_interrupt(int irq, void *dev_id) |
| 1192 | { |
Jiri Slaby | f742903 | 2007-05-08 00:36:59 -0700 | [diff] [blame] | 1193 | struct cyclades_card *cinfo = dev_id; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1194 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1195 | if (unlikely(!cyz_is_loaded(cinfo))) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1196 | #ifdef CY_DEBUG_INTERRUPTS |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1197 | printk(KERN_DEBUG "cyz_interrupt: board not yet loaded " |
| 1198 | "(IRQ%d).\n", irq); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1199 | #endif |
| 1200 | return IRQ_NONE; |
| 1201 | } |
| 1202 | |
| 1203 | /* Handle the interrupts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | cyz_handle_cmd(cinfo); |
| 1205 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1206 | return IRQ_HANDLED; |
| 1207 | } /* cyz_interrupt */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1209 | static void cyz_rx_restart(unsigned long arg) |
| 1210 | { |
| 1211 | struct cyclades_port *info = (struct cyclades_port *)arg; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1212 | struct cyclades_card *card = info->card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1213 | int retval; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1214 | __u32 channel = info->line - card->first_line; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1215 | unsigned long flags; |
| 1216 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1217 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1218 | retval = cyz_issue_cmd(card, channel, C_CM_INTBACK2, 0L); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1219 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1220 | printk(KERN_ERR "cyc:cyz_rx_restart retval on ttyC%d was %x\n", |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1221 | info->line, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | } |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1223 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1224 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1226 | #else /* CONFIG_CYZ_INTR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1228 | static void cyz_poll(unsigned long arg) |
| 1229 | { |
| 1230 | struct cyclades_card *cinfo; |
| 1231 | struct cyclades_port *info; |
Jiri Slaby | b705090 | 2007-05-08 00:35:48 -0700 | [diff] [blame] | 1232 | unsigned long expires = jiffies + HZ; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 1233 | unsigned int port, card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1234 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1235 | for (card = 0; card < NR_CARDS; card++) { |
| 1236 | cinfo = &cy_card[card]; |
| 1237 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1238 | if (!cy_is_Z(cinfo)) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1239 | continue; |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1240 | if (!cyz_is_loaded(cinfo)) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1241 | continue; |
| 1242 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1243 | /* Skip first polling cycle to avoid racing conditions with the FW */ |
| 1244 | if (!cinfo->intr_enabled) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1245 | cinfo->intr_enabled = 1; |
| 1246 | continue; |
| 1247 | } |
| 1248 | |
| 1249 | cyz_handle_cmd(cinfo); |
| 1250 | |
| 1251 | for (port = 0; port < cinfo->nports; port++) { |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1252 | struct tty_struct *tty; |
| 1253 | |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 1254 | info = &cinfo->ports[port]; |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1255 | tty = tty_port_tty_get(&info->port); |
| 1256 | /* OK to pass NULL to the handle functions below. |
| 1257 | They need to drop the data in that case. */ |
| 1258 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1259 | if (!info->throttle) |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1260 | cyz_handle_rx(info, tty); |
| 1261 | cyz_handle_tx(info, tty); |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1262 | tty_kref_put(tty); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1263 | } |
| 1264 | /* poll every 'cyz_polling_cycle' period */ |
Jiri Slaby | b705090 | 2007-05-08 00:35:48 -0700 | [diff] [blame] | 1265 | expires = jiffies + cyz_polling_cycle; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1266 | } |
Jiri Slaby | b705090 | 2007-05-08 00:35:48 -0700 | [diff] [blame] | 1267 | mod_timer(&cyz_timerlist, expires); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1268 | } /* cyz_poll */ |
| 1269 | |
| 1270 | #endif /* CONFIG_CYZ_INTR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | |
| 1272 | /********** End of block of Cyclades-Z specific code *********/ |
| 1273 | /***********************************************************/ |
| 1274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | /* This is called whenever a port becomes active; |
| 1276 | interrupts are enabled and DTR & RTS are turned on. |
| 1277 | */ |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1278 | static int cy_startup(struct cyclades_port *info, struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | { |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1280 | struct cyclades_card *card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1281 | unsigned long flags; |
| 1282 | int retval = 0; |
Jiri Slaby | cc7fdf4 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 1283 | int channel; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1284 | unsigned long page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1286 | card = info->card; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1287 | channel = info->line - card->first_line; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1289 | page = get_zeroed_page(GFP_KERNEL); |
| 1290 | if (!page) |
| 1291 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1293 | spin_lock_irqsave(&card->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | |
Jiri Slaby | cc7fdf4 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 1295 | if (info->port.flags & ASYNC_INITIALIZED) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1296 | goto errout; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1297 | |
| 1298 | if (!info->type) { |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1299 | set_bit(TTY_IO_ERROR, &tty->flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1300 | goto errout; |
| 1301 | } |
| 1302 | |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1303 | if (info->port.xmit_buf) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1304 | free_page(page); |
| 1305 | else |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1306 | info->port.xmit_buf = (unsigned char *)page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1308 | spin_unlock_irqrestore(&card->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1310 | cy_set_line_char(info, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1312 | if (!cy_is_Z(card)) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1313 | channel &= 0x03; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1315 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1316 | |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1317 | cyy_writeb(info, CyCAR, channel); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1318 | |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1319 | cyy_writeb(info, CyRTPR, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1320 | (info->default_timeout ? info->default_timeout : 0x02)); |
| 1321 | /* 10ms rx timeout */ |
| 1322 | |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1323 | cyy_issue_cmd(info, CyCHAN_CTL | CyENB_RCVR | CyENB_XMTR); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1324 | |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 1325 | cyy_change_rts_dtr(info, TIOCM_RTS | TIOCM_DTR, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1327 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyRxData); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1328 | } else { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1329 | struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1330 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1331 | if (!cyz_is_loaded(card)) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1332 | return -ENODEV; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1333 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1334 | #ifdef CY_DEBUG_OPEN |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1335 | printk(KERN_DEBUG "cyc startup Z card %d, channel %d, " |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1336 | "base_addr %p\n", card, channel, card->base_addr); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1337 | #endif |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1338 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1339 | |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1340 | cy_writel(&ch_ctrl->op_mode, C_CH_ENABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | #ifdef Z_WAKE |
| 1342 | #ifdef CONFIG_CYZ_INTR |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1343 | cy_writel(&ch_ctrl->intr_enable, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1344 | C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM | |
| 1345 | C_IN_RXNNDT | C_IN_IOCTLW | C_IN_MDCD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | #else |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1347 | cy_writel(&ch_ctrl->intr_enable, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1348 | C_IN_IOCTLW | C_IN_MDCD); |
| 1349 | #endif /* CONFIG_CYZ_INTR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | #else |
| 1351 | #ifdef CONFIG_CYZ_INTR |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1352 | cy_writel(&ch_ctrl->intr_enable, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1353 | C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM | |
| 1354 | C_IN_RXNNDT | C_IN_MDCD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | #else |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1356 | cy_writel(&ch_ctrl->intr_enable, C_IN_MDCD); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1357 | #endif /* CONFIG_CYZ_INTR */ |
| 1358 | #endif /* Z_WAKE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1360 | retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1361 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1362 | printk(KERN_ERR "cyc:startup(1) retval on ttyC%d was " |
| 1363 | "%x\n", info->line, retval); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1364 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1366 | /* Flush RX buffers before raising DTR and RTS */ |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1367 | retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_RX, 0L); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1368 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1369 | printk(KERN_ERR "cyc:startup(2) retval on ttyC%d was " |
| 1370 | "%x\n", info->line, retval); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1371 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1373 | /* set timeout !!! */ |
| 1374 | /* set RTS and DTR !!! */ |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 1375 | tty_port_raise_dtr_rts(&info->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1377 | /* enable send, recv, modem !!! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | |
Jiri Slaby | cc7fdf4 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 1380 | info->port.flags |= ASYNC_INITIALIZED; |
| 1381 | |
| 1382 | clear_bit(TTY_IO_ERROR, &tty->flags); |
| 1383 | info->xmit_cnt = info->xmit_head = info->xmit_tail = 0; |
| 1384 | info->breakon = info->breakoff = 0; |
| 1385 | memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats)); |
| 1386 | info->idle_stats.in_use = |
| 1387 | info->idle_stats.recv_idle = |
| 1388 | info->idle_stats.xmit_idle = jiffies; |
| 1389 | |
| 1390 | spin_unlock_irqrestore(&card->card_lock, flags); |
| 1391 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | #ifdef CY_DEBUG_OPEN |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1393 | printk(KERN_DEBUG "cyc startup done\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | #endif |
| 1395 | return 0; |
| 1396 | |
| 1397 | errout: |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1398 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | cc7fdf4 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 1399 | free_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | return retval; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1401 | } /* startup */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1403 | static void start_xmit(struct cyclades_port *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 | { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1405 | struct cyclades_card *card = info->card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1406 | unsigned long flags; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1407 | int channel = info->line - card->first_line; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1409 | if (!cy_is_Z(card)) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1410 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1411 | cyy_writeb(info, CyCAR, channel & 0x03); |
| 1412 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyTxRdy); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1413 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1414 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | #ifdef CONFIG_CYZ_INTR |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1416 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1418 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1419 | retval = cyz_issue_cmd(card, channel, C_CM_INTBACK, 0L); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1420 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1421 | printk(KERN_ERR "cyc:start_xmit retval on ttyC%d was " |
| 1422 | "%x\n", info->line, retval); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1423 | } |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1424 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1425 | #else /* CONFIG_CYZ_INTR */ |
| 1426 | /* Don't have to do anything at this time */ |
| 1427 | #endif /* CONFIG_CYZ_INTR */ |
| 1428 | } |
| 1429 | } /* start_xmit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | |
| 1431 | /* |
| 1432 | * This routine shuts down a serial port; interrupts are disabled, |
| 1433 | * and DTR is dropped if the hangup on close termio flag is on. |
| 1434 | */ |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1435 | static void cy_shutdown(struct cyclades_port *info, struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | { |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1437 | struct cyclades_card *card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1438 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1440 | if (!(info->port.flags & ASYNC_INITIALIZED)) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1441 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1443 | card = info->card; |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1444 | if (!cy_is_Z(card)) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1445 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1446 | |
| 1447 | /* Clear delta_msr_wait queue to avoid mem leaks. */ |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1448 | wake_up_interruptible(&info->port.delta_msr_wait); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1449 | |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1450 | if (info->port.xmit_buf) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1451 | unsigned char *temp; |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1452 | temp = info->port.xmit_buf; |
| 1453 | info->port.xmit_buf = NULL; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1454 | free_page((unsigned long)temp); |
| 1455 | } |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 1456 | if (tty->termios.c_cflag & HUPCL) |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 1457 | cyy_change_rts_dtr(info, 0, TIOCM_RTS | TIOCM_DTR); |
| 1458 | |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1459 | cyy_issue_cmd(info, CyCHAN_CTL | CyDIS_RCVR); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1460 | /* it may be appropriate to clear _XMIT at |
| 1461 | some later date (after testing)!!! */ |
| 1462 | |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1463 | set_bit(TTY_IO_ERROR, &tty->flags); |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1464 | info->port.flags &= ~ASYNC_INITIALIZED; |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1465 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1466 | } else { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1467 | #ifdef CY_DEBUG_OPEN |
Jiri Slaby | 0e7f419 | 2011-03-23 09:49:56 +0100 | [diff] [blame] | 1468 | int channel = info->line - card->first_line; |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1469 | printk(KERN_DEBUG "cyc shutdown Z card %d, channel %d, " |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1470 | "base_addr %p\n", card, channel, card->base_addr); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1471 | #endif |
| 1472 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1473 | if (!cyz_is_loaded(card)) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1474 | return; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1475 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1476 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1477 | |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1478 | if (info->port.xmit_buf) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1479 | unsigned char *temp; |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1480 | temp = info->port.xmit_buf; |
| 1481 | info->port.xmit_buf = NULL; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1482 | free_page((unsigned long)temp); |
| 1483 | } |
| 1484 | |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 1485 | if (tty->termios.c_cflag & HUPCL) |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 1486 | tty_port_lower_dtr_rts(&info->port); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1487 | |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1488 | set_bit(TTY_IO_ERROR, &tty->flags); |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1489 | info->port.flags &= ~ASYNC_INITIALIZED; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1490 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1491 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1492 | } |
| 1493 | |
| 1494 | #ifdef CY_DEBUG_OPEN |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1495 | printk(KERN_DEBUG "cyc shutdown done\n"); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1496 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1497 | } /* shutdown */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | |
| 1499 | /* |
| 1500 | * ------------------------------------------------------------ |
| 1501 | * cy_open() and friends |
| 1502 | * ------------------------------------------------------------ |
| 1503 | */ |
| 1504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | /* |
| 1506 | * This routine is called whenever a serial port is opened. It |
| 1507 | * performs the serial-specific initialization for the tty structure. |
| 1508 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1509 | static int cy_open(struct tty_struct *tty, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1511 | struct cyclades_port *info; |
Jiri Slaby | 410235f | 2012-03-05 14:52:01 +0100 | [diff] [blame] | 1512 | unsigned int i, line = tty->index; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 1513 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 1515 | for (i = 0; i < NR_CARDS; i++) |
| 1516 | if (line < cy_card[i].first_line + cy_card[i].nports && |
| 1517 | line >= cy_card[i].first_line) |
| 1518 | break; |
| 1519 | if (i >= NR_CARDS) |
| 1520 | return -ENODEV; |
| 1521 | info = &cy_card[i].ports[line - cy_card[i].first_line]; |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1522 | if (info->line < 0) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1523 | return -ENODEV; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1524 | |
| 1525 | /* If the card's firmware hasn't been loaded, |
| 1526 | treat it as absent from the system. This |
| 1527 | will make the user pay attention. |
| 1528 | */ |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1529 | if (cy_is_Z(info->card)) { |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1530 | struct cyclades_card *cinfo = info->card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1531 | struct FIRM_ID __iomem *firm_id = cinfo->base_addr + ID_ADDRESS; |
| 1532 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1533 | if (!cyz_is_loaded(cinfo)) { |
| 1534 | if (cinfo->hw_ver == ZE_V1 && cyz_fpga_loaded(cinfo) && |
Jiri Slaby | 101b815 | 2009-06-11 12:30:10 +0100 | [diff] [blame] | 1535 | readl(&firm_id->signature) == |
| 1536 | ZFIRM_HLT) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1537 | printk(KERN_ERR "cyc:Cyclades-Z Error: you " |
| 1538 | "need an external power supply for " |
| 1539 | "this number of ports.\nFirmware " |
| 1540 | "halted.\n"); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1541 | } else { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1542 | printk(KERN_ERR "cyc:Cyclades-Z firmware not " |
| 1543 | "yet loaded\n"); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1544 | } |
| 1545 | return -ENODEV; |
| 1546 | } |
| 1547 | #ifdef CONFIG_CYZ_INTR |
| 1548 | else { |
| 1549 | /* In case this Z board is operating in interrupt mode, its |
| 1550 | interrupts should be enabled as soon as the first open |
| 1551 | happens to one of its ports. */ |
| 1552 | if (!cinfo->intr_enabled) { |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 1553 | u16 intr; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1554 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1555 | /* Enable interrupts on the PLX chip */ |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 1556 | intr = readw(&cinfo->ctl_addr.p9060-> |
| 1557 | intr_ctrl_stat) | 0x0900; |
| 1558 | cy_writew(&cinfo->ctl_addr.p9060-> |
| 1559 | intr_ctrl_stat, intr); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1560 | /* Enable interrupts on the FW */ |
| 1561 | retval = cyz_issue_cmd(cinfo, 0, |
| 1562 | C_CM_IRQ_ENBL, 0L); |
| 1563 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1564 | printk(KERN_ERR "cyc:IRQ enable retval " |
| 1565 | "was %x\n", retval); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1566 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1567 | cinfo->intr_enabled = 1; |
| 1568 | } |
| 1569 | } |
| 1570 | #endif /* CONFIG_CYZ_INTR */ |
| 1571 | /* Make sure this Z port really exists in hardware */ |
| 1572 | if (info->line > (cinfo->first_line + cinfo->nports - 1)) |
| 1573 | return -ENODEV; |
| 1574 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | #ifdef CY_DEBUG_OTHER |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1576 | printk(KERN_DEBUG "cyc:cy_open ttyC%d\n", info->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1578 | tty->driver_data = info; |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1579 | if (serial_paranoia_check(info, tty->name, "cy_open")) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1580 | return -ENODEV; |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1581 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | #ifdef CY_DEBUG_OPEN |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1583 | printk(KERN_DEBUG "cyc:cy_open ttyC%d, count = %d\n", info->line, |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1584 | info->port.count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | #endif |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1586 | info->port.count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | #ifdef CY_DEBUG_COUNT |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1588 | printk(KERN_DEBUG "cyc:cy_open (%d): incrementing count to %d\n", |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1589 | current->pid, info->port.count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1592 | /* |
| 1593 | * If the port is the middle of closing, bail out now |
| 1594 | */ |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1595 | if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) { |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1596 | wait_event_interruptible_tty(tty, info->port.close_wait, |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1597 | !(info->port.flags & ASYNC_CLOSING)); |
| 1598 | return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1599 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1601 | /* |
| 1602 | * Start up serial port |
| 1603 | */ |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1604 | retval = cy_startup(info, tty); |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1605 | if (retval) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1606 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1608 | retval = tty_port_block_til_ready(&info->port, tty, filp); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1609 | if (retval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | #ifdef CY_DEBUG_OPEN |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1611 | printk(KERN_DEBUG "cyc:cy_open returning after block_til_ready " |
| 1612 | "with %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1614 | return retval; |
| 1615 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1617 | info->throttle = 0; |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1618 | tty_port_tty_set(&info->port, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | |
| 1620 | #ifdef CY_DEBUG_OPEN |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1621 | printk(KERN_DEBUG "cyc:cy_open done\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1623 | return 0; |
| 1624 | } /* cy_open */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | |
| 1626 | /* |
| 1627 | * cy_wait_until_sent() --- wait until the transmitter is empty |
| 1628 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1629 | static void cy_wait_until_sent(struct tty_struct *tty, int timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | { |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1631 | struct cyclades_card *card; |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 1632 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1633 | unsigned long orig_jiffies; |
| 1634 | int char_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1636 | if (serial_paranoia_check(info, tty->name, "cy_wait_until_sent")) |
| 1637 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1639 | if (info->xmit_fifo_size == 0) |
| 1640 | return; /* Just in case.... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1642 | orig_jiffies = jiffies; |
| 1643 | /* |
| 1644 | * Set the check interval to be 1/5 of the estimated time to |
| 1645 | * send a single character, and make it at least 1. The check |
| 1646 | * interval should also be less than the timeout. |
| 1647 | * |
| 1648 | * Note: we have to use pretty tight timings here to satisfy |
| 1649 | * the NIST-PCTS. |
| 1650 | */ |
| 1651 | char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size; |
| 1652 | char_time = char_time / 5; |
| 1653 | if (char_time <= 0) |
| 1654 | char_time = 1; |
| 1655 | if (timeout < 0) |
| 1656 | timeout = 0; |
| 1657 | if (timeout) |
| 1658 | char_time = min(char_time, timeout); |
| 1659 | /* |
| 1660 | * If the transmitter hasn't cleared in twice the approximate |
| 1661 | * amount of time to send the entire FIFO, it probably won't |
| 1662 | * ever clear. This assumes the UART isn't doing flow |
| 1663 | * control, which is currently the case. Hence, if it ever |
| 1664 | * takes longer than info->timeout, this is probably due to a |
| 1665 | * UART bug of some kind. So, we clamp the timeout parameter at |
| 1666 | * 2*info->timeout. |
| 1667 | */ |
| 1668 | if (!timeout || timeout > 2 * info->timeout) |
| 1669 | timeout = 2 * info->timeout; |
Jiri Slaby | 8bab534 | 2011-07-14 14:35:15 +0200 | [diff] [blame] | 1670 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1671 | card = info->card; |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1672 | if (!cy_is_Z(card)) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1673 | while (cyy_readb(info, CySRER) & CyTxRdy) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1674 | if (msleep_interruptible(jiffies_to_msecs(char_time))) |
| 1675 | break; |
| 1676 | if (timeout && time_after(jiffies, orig_jiffies + |
| 1677 | timeout)) |
| 1678 | break; |
| 1679 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1681 | /* Run one more char cycle */ |
| 1682 | msleep_interruptible(jiffies_to_msecs(char_time * 5)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | } |
| 1684 | |
Alan Cox | 978e595 | 2008-04-30 00:53:59 -0700 | [diff] [blame] | 1685 | static void cy_flush_buffer(struct tty_struct *tty) |
| 1686 | { |
| 1687 | struct cyclades_port *info = tty->driver_data; |
| 1688 | struct cyclades_card *card; |
| 1689 | int channel, retval; |
| 1690 | unsigned long flags; |
| 1691 | |
| 1692 | #ifdef CY_DEBUG_IO |
| 1693 | printk(KERN_DEBUG "cyc:cy_flush_buffer ttyC%d\n", info->line); |
| 1694 | #endif |
| 1695 | |
| 1696 | if (serial_paranoia_check(info, tty->name, "cy_flush_buffer")) |
| 1697 | return; |
| 1698 | |
| 1699 | card = info->card; |
| 1700 | channel = info->line - card->first_line; |
| 1701 | |
| 1702 | spin_lock_irqsave(&card->card_lock, flags); |
| 1703 | info->xmit_cnt = info->xmit_head = info->xmit_tail = 0; |
| 1704 | spin_unlock_irqrestore(&card->card_lock, flags); |
| 1705 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1706 | if (cy_is_Z(card)) { /* If it is a Z card, flush the on-board |
Alan Cox | 978e595 | 2008-04-30 00:53:59 -0700 | [diff] [blame] | 1707 | buffers as well */ |
| 1708 | spin_lock_irqsave(&card->card_lock, flags); |
| 1709 | retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_TX, 0L); |
| 1710 | if (retval != 0) { |
| 1711 | printk(KERN_ERR "cyc: flush_buffer retval on ttyC%d " |
| 1712 | "was %x\n", info->line, retval); |
| 1713 | } |
| 1714 | spin_unlock_irqrestore(&card->card_lock, flags); |
| 1715 | } |
| 1716 | tty_wakeup(tty); |
| 1717 | } /* cy_flush_buffer */ |
| 1718 | |
| 1719 | |
Alan Cox | e936ffd | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1720 | static void cy_do_close(struct tty_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | { |
Alan Cox | e936ffd | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1722 | struct cyclades_port *info = container_of(port, struct cyclades_port, |
| 1723 | port); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1724 | struct cyclades_card *card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1725 | unsigned long flags; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1726 | int channel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1728 | card = info->card; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1729 | channel = info->line - card->first_line; |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1730 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1731 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 1732 | if (!cy_is_Z(card)) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1733 | /* Stop accepting input */ |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1734 | cyy_writeb(info, CyCAR, channel & 0x03); |
| 1735 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) & ~CyRxData); |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1736 | if (info->port.flags & ASYNC_INITIALIZED) { |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1737 | /* Waiting for on-board buffers to be empty before |
| 1738 | closing the port */ |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1739 | spin_unlock_irqrestore(&card->card_lock, flags); |
Alan Cox | e936ffd | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1740 | cy_wait_until_sent(port->tty, info->timeout); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1741 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1742 | } |
| 1743 | } else { |
| 1744 | #ifdef Z_WAKE |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1745 | /* Waiting for on-board buffers to be empty before closing |
| 1746 | the port */ |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1747 | struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1748 | int retval; |
| 1749 | |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1750 | if (readl(&ch_ctrl->flow_status) != C_FS_TXIDLE) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1751 | retval = cyz_issue_cmd(card, channel, C_CM_IOCTLW, 0L); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1752 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1753 | printk(KERN_DEBUG "cyc:cy_close retval on " |
| 1754 | "ttyC%d was %x\n", info->line, retval); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1755 | } |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1756 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 2c7fea9 | 2007-05-08 00:36:51 -0700 | [diff] [blame] | 1757 | wait_for_completion_interruptible(&info->shutdown_wait); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1758 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1759 | } |
| 1760 | #endif |
| 1761 | } |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1762 | spin_unlock_irqrestore(&card->card_lock, flags); |
Alan Cox | e936ffd | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1763 | cy_shutdown(info, port->tty); |
| 1764 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1765 | |
Alan Cox | e936ffd | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1766 | /* |
| 1767 | * This routine is called when a particular tty device is closed. |
| 1768 | */ |
| 1769 | static void cy_close(struct tty_struct *tty, struct file *filp) |
| 1770 | { |
| 1771 | struct cyclades_port *info = tty->driver_data; |
| 1772 | if (!info || serial_paranoia_check(info, tty->name, "cy_close")) |
| 1773 | return; |
| 1774 | tty_port_close(&info->port, tty, filp); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1775 | } /* cy_close */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | |
| 1777 | /* This routine gets called when tty_write has put something into |
| 1778 | * the write_queue. The characters may come from user space or |
| 1779 | * kernel space. |
| 1780 | * |
| 1781 | * This routine will return the number of characters actually |
| 1782 | * accepted for writing. |
| 1783 | * |
| 1784 | * If the port is not already transmitting stuff, start it off by |
| 1785 | * enabling interrupts. The interrupt service routine will then |
| 1786 | * ensure that the characters are sent. |
| 1787 | * If the port is already active, there is no need to kick it. |
| 1788 | * |
| 1789 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1790 | static int cy_write(struct tty_struct *tty, const unsigned char *buf, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 1792 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1793 | unsigned long flags; |
| 1794 | int c, ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | |
| 1796 | #ifdef CY_DEBUG_IO |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1797 | printk(KERN_DEBUG "cyc:cy_write ttyC%d\n", info->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | #endif |
| 1799 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1800 | if (serial_paranoia_check(info, tty->name, "cy_write")) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1801 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1803 | if (!info->port.xmit_buf) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1804 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1806 | spin_lock_irqsave(&info->card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1807 | while (1) { |
Harvey Harrison | 1a4e235 | 2008-04-30 00:53:52 -0700 | [diff] [blame] | 1808 | c = min(count, (int)(SERIAL_XMIT_SIZE - info->xmit_cnt - 1)); |
| 1809 | c = min(c, (int)(SERIAL_XMIT_SIZE - info->xmit_head)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1811 | if (c <= 0) |
| 1812 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1814 | memcpy(info->port.xmit_buf + info->xmit_head, buf, c); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1815 | info->xmit_head = (info->xmit_head + c) & |
| 1816 | (SERIAL_XMIT_SIZE - 1); |
| 1817 | info->xmit_cnt += c; |
| 1818 | buf += c; |
| 1819 | count -= c; |
| 1820 | ret += c; |
| 1821 | } |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1822 | spin_unlock_irqrestore(&info->card->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1824 | info->idle_stats.xmit_bytes += ret; |
| 1825 | info->idle_stats.xmit_idle = jiffies; |
| 1826 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1827 | if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1828 | start_xmit(info); |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1829 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1830 | return ret; |
| 1831 | } /* cy_write */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | |
| 1833 | /* |
| 1834 | * This routine is called by the kernel to write a single |
| 1835 | * character to the tty device. If the kernel uses this routine, |
| 1836 | * it must call the flush_chars() routine (if defined) when it is |
| 1837 | * done stuffing characters into the driver. If there is no room |
| 1838 | * in the queue, the character is ignored. |
| 1839 | */ |
Alan Cox | 76b25a5 | 2008-04-30 00:54:03 -0700 | [diff] [blame] | 1840 | static int cy_put_char(struct tty_struct *tty, unsigned char ch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 1842 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1843 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | |
| 1845 | #ifdef CY_DEBUG_IO |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1846 | printk(KERN_DEBUG "cyc:cy_put_char ttyC%d\n", info->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | #endif |
| 1848 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1849 | if (serial_paranoia_check(info, tty->name, "cy_put_char")) |
Alan Cox | 76b25a5 | 2008-04-30 00:54:03 -0700 | [diff] [blame] | 1850 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1852 | if (!info->port.xmit_buf) |
Alan Cox | 76b25a5 | 2008-04-30 00:54:03 -0700 | [diff] [blame] | 1853 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1855 | spin_lock_irqsave(&info->card->card_lock, flags); |
Jiri Slaby | 90cc301 | 2006-12-08 02:39:31 -0800 | [diff] [blame] | 1856 | if (info->xmit_cnt >= (int)(SERIAL_XMIT_SIZE - 1)) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1857 | spin_unlock_irqrestore(&info->card->card_lock, flags); |
Alan Cox | 76b25a5 | 2008-04-30 00:54:03 -0700 | [diff] [blame] | 1858 | return 0; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1859 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1861 | info->port.xmit_buf[info->xmit_head++] = ch; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1862 | info->xmit_head &= SERIAL_XMIT_SIZE - 1; |
| 1863 | info->xmit_cnt++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | info->idle_stats.xmit_bytes++; |
| 1865 | info->idle_stats.xmit_idle = jiffies; |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 1866 | spin_unlock_irqrestore(&info->card->card_lock, flags); |
Alan Cox | 76b25a5 | 2008-04-30 00:54:03 -0700 | [diff] [blame] | 1867 | return 1; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1868 | } /* cy_put_char */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | |
| 1870 | /* |
| 1871 | * This routine is called by the kernel after it has written a |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1872 | * series of characters to the tty device using put_char(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1874 | static void cy_flush_chars(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 1876 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1877 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | #ifdef CY_DEBUG_IO |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1879 | printk(KERN_DEBUG "cyc:cy_flush_chars ttyC%d\n", info->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | #endif |
| 1881 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1882 | if (serial_paranoia_check(info, tty->name, "cy_flush_chars")) |
| 1883 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1885 | if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped || |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 1886 | !info->port.xmit_buf) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1887 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1889 | start_xmit(info); |
| 1890 | } /* cy_flush_chars */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | |
| 1892 | /* |
| 1893 | * This routine returns the numbers of characters the tty driver |
| 1894 | * will accept for queuing to be written. This number is subject |
| 1895 | * to change as output buffers get emptied, or if the output flow |
| 1896 | * control is activated. |
| 1897 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1898 | static int cy_write_room(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 1900 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1901 | int ret; |
| 1902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | #ifdef CY_DEBUG_IO |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1904 | printk(KERN_DEBUG "cyc:cy_write_room ttyC%d\n", info->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | #endif |
| 1906 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1907 | if (serial_paranoia_check(info, tty->name, "cy_write_room")) |
| 1908 | return 0; |
| 1909 | ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1; |
| 1910 | if (ret < 0) |
| 1911 | ret = 0; |
| 1912 | return ret; |
| 1913 | } /* cy_write_room */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1915 | static int cy_chars_in_buffer(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 1917 | struct cyclades_port *info = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1919 | if (serial_paranoia_check(info, tty->name, "cy_chars_in_buffer")) |
| 1920 | return 0; |
| 1921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | #ifdef Z_EXT_CHARS_IN_BUFFER |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1923 | if (!cy_is_Z(info->card)) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1924 | #endif /* Z_EXT_CHARS_IN_BUFFER */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | #ifdef CY_DEBUG_IO |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1926 | printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n", |
| 1927 | info->line, info->xmit_cnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1929 | return info->xmit_cnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | #ifdef Z_EXT_CHARS_IN_BUFFER |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1931 | } else { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 1932 | struct BUF_CTRL __iomem *buf_ctrl = info->u.cyz.buf_ctrl; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1933 | int char_count; |
Jiri Slaby | ad39c30 | 2007-05-08 00:35:49 -0700 | [diff] [blame] | 1934 | __u32 tx_put, tx_get, tx_bufsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 1936 | tx_get = readl(&buf_ctrl->tx_get); |
| 1937 | tx_put = readl(&buf_ctrl->tx_put); |
| 1938 | tx_bufsize = readl(&buf_ctrl->tx_bufsize); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1939 | if (tx_put >= tx_get) |
| 1940 | char_count = tx_put - tx_get; |
| 1941 | else |
| 1942 | char_count = tx_put - tx_get + tx_bufsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | #ifdef CY_DEBUG_IO |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 1944 | printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n", |
| 1945 | info->line, info->xmit_cnt + char_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | #endif |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 1947 | return info->xmit_cnt + char_count; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1948 | } |
| 1949 | #endif /* Z_EXT_CHARS_IN_BUFFER */ |
| 1950 | } /* cy_chars_in_buffer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | |
| 1952 | /* |
| 1953 | * ------------------------------------------------------------ |
| 1954 | * cy_ioctl() and friends |
| 1955 | * ------------------------------------------------------------ |
| 1956 | */ |
| 1957 | |
Klaus Kudielka | 1a86b5e | 2007-05-08 00:26:26 -0700 | [diff] [blame] | 1958 | static void cyy_baud_calc(struct cyclades_port *info, __u32 baud) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1960 | int co, co_val, bpr; |
Klaus Kudielka | 1a86b5e | 2007-05-08 00:26:26 -0700 | [diff] [blame] | 1961 | __u32 cy_clock = ((info->chip_rev >= CD1400_REV_J) ? 60000000 : |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1962 | 25000000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1964 | if (baud == 0) { |
| 1965 | info->tbpr = info->tco = info->rbpr = info->rco = 0; |
| 1966 | return; |
| 1967 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1969 | /* determine which prescaler to use */ |
| 1970 | for (co = 4, co_val = 2048; co; co--, co_val >>= 2) { |
| 1971 | if (cy_clock / co_val / baud > 63) |
| 1972 | break; |
| 1973 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1975 | bpr = (cy_clock / co_val * 2 / baud + 1) / 2; |
| 1976 | if (bpr > 255) |
| 1977 | bpr = 255; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1979 | info->tbpr = info->rbpr = bpr; |
| 1980 | info->tco = info->rco = co; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | } |
| 1982 | |
| 1983 | /* |
| 1984 | * This routine finds or computes the various line characteristics. |
| 1985 | * It used to be called config_setup |
| 1986 | */ |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 1987 | static void cy_set_line_char(struct cyclades_port *info, struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | { |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 1989 | struct cyclades_card *card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1990 | unsigned long flags; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 1991 | int channel; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1992 | unsigned cflag, iflag; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1993 | int baud, baud_rate = 0; |
| 1994 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1996 | if (info->line == -1) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 1997 | return; |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 1998 | |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 1999 | cflag = tty->termios.c_cflag; |
| 2000 | iflag = tty->termios.c_iflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2002 | /* |
| 2003 | * Set up the tty->alt_speed kludge |
| 2004 | */ |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 2005 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI) |
| 2006 | tty->alt_speed = 57600; |
| 2007 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI) |
| 2008 | tty->alt_speed = 115200; |
| 2009 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI) |
| 2010 | tty->alt_speed = 230400; |
| 2011 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP) |
| 2012 | tty->alt_speed = 460800; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2014 | card = info->card; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2015 | channel = info->line - card->first_line; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2016 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2017 | if (!cy_is_Z(card)) { |
Jiri Slaby | 46fb782 | 2009-09-19 13:13:17 -0700 | [diff] [blame] | 2018 | u32 cflags; |
| 2019 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2020 | /* baud rate */ |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 2021 | baud = tty_get_baud_rate(tty); |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2022 | if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) == |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2023 | ASYNC_SPD_CUST) { |
| 2024 | if (info->custom_divisor) |
| 2025 | baud_rate = info->baud / info->custom_divisor; |
| 2026 | else |
| 2027 | baud_rate = info->baud; |
| 2028 | } else if (baud > CD1400_MAX_SPEED) { |
| 2029 | baud = CD1400_MAX_SPEED; |
| 2030 | } |
| 2031 | /* find the baud index */ |
| 2032 | for (i = 0; i < 20; i++) { |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2033 | if (baud == baud_table[i]) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2034 | break; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2035 | } |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2036 | if (i == 20) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2037 | i = 19; /* CD1400_MAX_SPEED */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2038 | |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2039 | if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) == |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2040 | ASYNC_SPD_CUST) { |
| 2041 | cyy_baud_calc(info, baud_rate); |
| 2042 | } else { |
| 2043 | if (info->chip_rev >= CD1400_REV_J) { |
| 2044 | /* It is a CD1400 rev. J or later */ |
| 2045 | info->tbpr = baud_bpr_60[i]; /* Tx BPR */ |
| 2046 | info->tco = baud_co_60[i]; /* Tx CO */ |
| 2047 | info->rbpr = baud_bpr_60[i]; /* Rx BPR */ |
| 2048 | info->rco = baud_co_60[i]; /* Rx CO */ |
| 2049 | } else { |
| 2050 | info->tbpr = baud_bpr_25[i]; /* Tx BPR */ |
| 2051 | info->tco = baud_co_25[i]; /* Tx CO */ |
| 2052 | info->rbpr = baud_bpr_25[i]; /* Rx BPR */ |
| 2053 | info->rco = baud_co_25[i]; /* Rx CO */ |
| 2054 | } |
| 2055 | } |
| 2056 | if (baud_table[i] == 134) { |
| 2057 | /* get it right for 134.5 baud */ |
| 2058 | info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) + |
| 2059 | 2; |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2060 | } else if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) == |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2061 | ASYNC_SPD_CUST) { |
| 2062 | info->timeout = (info->xmit_fifo_size * HZ * 15 / |
| 2063 | baud_rate) + 2; |
| 2064 | } else if (baud_table[i]) { |
| 2065 | info->timeout = (info->xmit_fifo_size * HZ * 15 / |
| 2066 | baud_table[i]) + 2; |
| 2067 | /* this needs to be propagated into the card info */ |
| 2068 | } else { |
| 2069 | info->timeout = 0; |
| 2070 | } |
| 2071 | /* By tradition (is it a standard?) a baud rate of zero |
| 2072 | implies the line should be/has been closed. A bit |
| 2073 | later in this routine such a test is performed. */ |
| 2074 | |
| 2075 | /* byte size and parity */ |
| 2076 | info->cor5 = 0; |
| 2077 | info->cor4 = 0; |
| 2078 | /* receive threshold */ |
| 2079 | info->cor3 = (info->default_threshold ? |
| 2080 | info->default_threshold : baud_cor3[i]); |
| 2081 | info->cor2 = CyETC; |
| 2082 | switch (cflag & CSIZE) { |
| 2083 | case CS5: |
| 2084 | info->cor1 = Cy_5_BITS; |
| 2085 | break; |
| 2086 | case CS6: |
| 2087 | info->cor1 = Cy_6_BITS; |
| 2088 | break; |
| 2089 | case CS7: |
| 2090 | info->cor1 = Cy_7_BITS; |
| 2091 | break; |
| 2092 | case CS8: |
| 2093 | info->cor1 = Cy_8_BITS; |
| 2094 | break; |
| 2095 | } |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2096 | if (cflag & CSTOPB) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2097 | info->cor1 |= Cy_2_STOP; |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2098 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2099 | if (cflag & PARENB) { |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2100 | if (cflag & PARODD) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2101 | info->cor1 |= CyPARITY_O; |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2102 | else |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2103 | info->cor1 |= CyPARITY_E; |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2104 | } else |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2105 | info->cor1 |= CyPARITY_NONE; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2106 | |
| 2107 | /* CTS flow control flag */ |
| 2108 | if (cflag & CRTSCTS) { |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2109 | info->port.flags |= ASYNC_CTS_FLOW; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2110 | info->cor2 |= CyCtsAE; |
| 2111 | } else { |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2112 | info->port.flags &= ~ASYNC_CTS_FLOW; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2113 | info->cor2 &= ~CyCtsAE; |
| 2114 | } |
| 2115 | if (cflag & CLOCAL) |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2116 | info->port.flags &= ~ASYNC_CHECK_CD; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2117 | else |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2118 | info->port.flags |= ASYNC_CHECK_CD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | |
| 2120 | /*********************************************** |
| 2121 | The hardware option, CyRtsAO, presents RTS when |
| 2122 | the chip has characters to send. Since most modems |
| 2123 | use RTS as reverse (inbound) flow control, this |
| 2124 | option is not used. If inbound flow control is |
| 2125 | necessary, DTR can be programmed to provide the |
| 2126 | appropriate signals for use with a non-standard |
| 2127 | cable. Contact Marcio Saito for details. |
| 2128 | ***********************************************/ |
| 2129 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2130 | channel &= 0x03; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2132 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2133 | cyy_writeb(info, CyCAR, channel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2135 | /* tx and rx baud rate */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2137 | cyy_writeb(info, CyTCOR, info->tco); |
| 2138 | cyy_writeb(info, CyTBPR, info->tbpr); |
| 2139 | cyy_writeb(info, CyRCOR, info->rco); |
| 2140 | cyy_writeb(info, CyRBPR, info->rbpr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2142 | /* set line characteristics according configuration */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2144 | cyy_writeb(info, CySCHR1, START_CHAR(tty)); |
| 2145 | cyy_writeb(info, CySCHR2, STOP_CHAR(tty)); |
| 2146 | cyy_writeb(info, CyCOR1, info->cor1); |
| 2147 | cyy_writeb(info, CyCOR2, info->cor2); |
| 2148 | cyy_writeb(info, CyCOR3, info->cor3); |
| 2149 | cyy_writeb(info, CyCOR4, info->cor4); |
| 2150 | cyy_writeb(info, CyCOR5, info->cor5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2152 | cyy_issue_cmd(info, CyCOR_CHANGE | CyCOR1ch | CyCOR2ch | |
| 2153 | CyCOR3ch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2155 | /* !!! Is this needed? */ |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2156 | cyy_writeb(info, CyCAR, channel); |
| 2157 | cyy_writeb(info, CyRTPR, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2158 | (info->default_timeout ? info->default_timeout : 0x02)); |
| 2159 | /* 10ms rx timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | |
Jiri Slaby | 46fb782 | 2009-09-19 13:13:17 -0700 | [diff] [blame] | 2161 | cflags = CyCTS; |
| 2162 | if (!C_CLOCAL(tty)) |
| 2163 | cflags |= CyDSR | CyRI | CyDCD; |
| 2164 | /* without modem intr */ |
| 2165 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyMdmCh); |
| 2166 | /* act on 1->0 modem transitions */ |
| 2167 | if ((cflag & CRTSCTS) && info->rflow) |
| 2168 | cyy_writeb(info, CyMCOR1, cflags | rflow_thr[i]); |
| 2169 | else |
| 2170 | cyy_writeb(info, CyMCOR1, cflags); |
| 2171 | /* act on 0->1 modem transitions */ |
| 2172 | cyy_writeb(info, CyMCOR2, cflags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2173 | |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2174 | if (i == 0) /* baud rate is zero, turn off line */ |
| 2175 | cyy_change_rts_dtr(info, 0, TIOCM_DTR); |
| 2176 | else |
| 2177 | cyy_change_rts_dtr(info, TIOCM_DTR, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 2179 | clear_bit(TTY_IO_ERROR, &tty->flags); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2180 | spin_unlock_irqrestore(&card->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | } else { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 2183 | struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl; |
Klaus Kudielka | 1a86b5e | 2007-05-08 00:26:26 -0700 | [diff] [blame] | 2184 | __u32 sw_flow; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2185 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2186 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2187 | if (!cyz_is_loaded(card)) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2188 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2190 | /* baud rate */ |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 2191 | baud = tty_get_baud_rate(tty); |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2192 | if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) == |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2193 | ASYNC_SPD_CUST) { |
| 2194 | if (info->custom_divisor) |
| 2195 | baud_rate = info->baud / info->custom_divisor; |
| 2196 | else |
| 2197 | baud_rate = info->baud; |
| 2198 | } else if (baud > CYZ_MAX_SPEED) { |
| 2199 | baud = CYZ_MAX_SPEED; |
| 2200 | } |
| 2201 | cy_writel(&ch_ctrl->comm_baud, baud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2202 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2203 | if (baud == 134) { |
| 2204 | /* get it right for 134.5 baud */ |
| 2205 | info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) + |
| 2206 | 2; |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2207 | } else if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) == |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2208 | ASYNC_SPD_CUST) { |
| 2209 | info->timeout = (info->xmit_fifo_size * HZ * 15 / |
| 2210 | baud_rate) + 2; |
| 2211 | } else if (baud) { |
| 2212 | info->timeout = (info->xmit_fifo_size * HZ * 15 / |
| 2213 | baud) + 2; |
| 2214 | /* this needs to be propagated into the card info */ |
| 2215 | } else { |
| 2216 | info->timeout = 0; |
| 2217 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2219 | /* byte size and parity */ |
| 2220 | switch (cflag & CSIZE) { |
| 2221 | case CS5: |
| 2222 | cy_writel(&ch_ctrl->comm_data_l, C_DL_CS5); |
| 2223 | break; |
| 2224 | case CS6: |
| 2225 | cy_writel(&ch_ctrl->comm_data_l, C_DL_CS6); |
| 2226 | break; |
| 2227 | case CS7: |
| 2228 | cy_writel(&ch_ctrl->comm_data_l, C_DL_CS7); |
| 2229 | break; |
| 2230 | case CS8: |
| 2231 | cy_writel(&ch_ctrl->comm_data_l, C_DL_CS8); |
| 2232 | break; |
| 2233 | } |
| 2234 | if (cflag & CSTOPB) { |
| 2235 | cy_writel(&ch_ctrl->comm_data_l, |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 2236 | readl(&ch_ctrl->comm_data_l) | C_DL_2STOP); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2237 | } else { |
| 2238 | cy_writel(&ch_ctrl->comm_data_l, |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 2239 | readl(&ch_ctrl->comm_data_l) | C_DL_1STOP); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2240 | } |
| 2241 | if (cflag & PARENB) { |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2242 | if (cflag & PARODD) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2243 | cy_writel(&ch_ctrl->comm_parity, C_PR_ODD); |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2244 | else |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2245 | cy_writel(&ch_ctrl->comm_parity, C_PR_EVEN); |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2246 | } else |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2247 | cy_writel(&ch_ctrl->comm_parity, C_PR_NONE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2249 | /* CTS flow control flag */ |
| 2250 | if (cflag & CRTSCTS) { |
| 2251 | cy_writel(&ch_ctrl->hw_flow, |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 2252 | readl(&ch_ctrl->hw_flow) | C_RS_CTS | C_RS_RTS); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2253 | } else { |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 2254 | cy_writel(&ch_ctrl->hw_flow, readl(&ch_ctrl->hw_flow) & |
| 2255 | ~(C_RS_CTS | C_RS_RTS)); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2256 | } |
| 2257 | /* As the HW flow control is done in firmware, the driver |
| 2258 | doesn't need to care about it */ |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2259 | info->port.flags &= ~ASYNC_CTS_FLOW; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2260 | |
| 2261 | /* XON/XOFF/XANY flow control flags */ |
| 2262 | sw_flow = 0; |
| 2263 | if (iflag & IXON) { |
| 2264 | sw_flow |= C_FL_OXX; |
| 2265 | if (iflag & IXANY) |
| 2266 | sw_flow |= C_FL_OIXANY; |
| 2267 | } |
| 2268 | cy_writel(&ch_ctrl->sw_flow, sw_flow); |
| 2269 | |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2270 | retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2271 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2272 | printk(KERN_ERR "cyc:set_line_char retval on ttyC%d " |
| 2273 | "was %x\n", info->line, retval); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2274 | } |
| 2275 | |
| 2276 | /* CD sensitivity */ |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2277 | if (cflag & CLOCAL) |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2278 | info->port.flags &= ~ASYNC_CHECK_CD; |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2279 | else |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2280 | info->port.flags |= ASYNC_CHECK_CD; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2281 | |
| 2282 | if (baud == 0) { /* baud rate is zero, turn off line */ |
| 2283 | cy_writel(&ch_ctrl->rs_control, |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 2284 | readl(&ch_ctrl->rs_control) & ~C_RS_DTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | #ifdef CY_DEBUG_DTR |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2286 | printk(KERN_DEBUG "cyc:set_line_char dropping Z DTR\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2288 | } else { |
| 2289 | cy_writel(&ch_ctrl->rs_control, |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 2290 | readl(&ch_ctrl->rs_control) | C_RS_DTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | #ifdef CY_DEBUG_DTR |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2292 | printk(KERN_DEBUG "cyc:set_line_char raising Z DTR\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2294 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2296 | retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2297 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2298 | printk(KERN_ERR "cyc:set_line_char(2) retval on ttyC%d " |
| 2299 | "was %x\n", info->line, retval); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2300 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 2302 | clear_bit(TTY_IO_ERROR, &tty->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2303 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2304 | } /* set_line_char */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2306 | static int cy_get_serial_info(struct cyclades_port *info, |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2307 | struct serial_struct __user *retinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2308 | { |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2309 | struct cyclades_card *cinfo = info->card; |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2310 | struct serial_struct tmp = { |
| 2311 | .type = info->type, |
| 2312 | .line = info->line, |
| 2313 | .port = (info->card - cy_card) * 0x100 + info->line - |
| 2314 | cinfo->first_line, |
| 2315 | .irq = cinfo->irq, |
| 2316 | .flags = info->port.flags, |
| 2317 | .close_delay = info->port.close_delay, |
| 2318 | .closing_wait = info->port.closing_wait, |
| 2319 | .baud_base = info->baud, |
| 2320 | .custom_divisor = info->custom_divisor, |
| 2321 | .hub6 = 0, /*!!! */ |
| 2322 | }; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2323 | return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0; |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2324 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | |
| 2326 | static int |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 2327 | cy_set_serial_info(struct cyclades_port *info, struct tty_struct *tty, |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2328 | struct serial_struct __user *new_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2330 | struct serial_struct new_serial; |
Alan Cox | 25c3cdf | 2010-06-01 22:52:47 +0200 | [diff] [blame] | 2331 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2333 | if (copy_from_user(&new_serial, new_info, sizeof(new_serial))) |
| 2334 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | |
Alan Cox | 25c3cdf | 2010-06-01 22:52:47 +0200 | [diff] [blame] | 2336 | mutex_lock(&info->port.mutex); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2337 | if (!capable(CAP_SYS_ADMIN)) { |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 2338 | if (new_serial.close_delay != info->port.close_delay || |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2339 | new_serial.baud_base != info->baud || |
| 2340 | (new_serial.flags & ASYNC_FLAGS & |
| 2341 | ~ASYNC_USR_MASK) != |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2342 | (info->port.flags & ASYNC_FLAGS & ~ASYNC_USR_MASK)) |
Alan Cox | 25c3cdf | 2010-06-01 22:52:47 +0200 | [diff] [blame] | 2343 | { |
| 2344 | mutex_unlock(&info->port.mutex); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2345 | return -EPERM; |
Alan Cox | 25c3cdf | 2010-06-01 22:52:47 +0200 | [diff] [blame] | 2346 | } |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2347 | info->port.flags = (info->port.flags & ~ASYNC_USR_MASK) | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2348 | (new_serial.flags & ASYNC_USR_MASK); |
| 2349 | info->baud = new_serial.baud_base; |
| 2350 | info->custom_divisor = new_serial.custom_divisor; |
| 2351 | goto check_and_exit; |
| 2352 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2353 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2354 | /* |
| 2355 | * OK, past this point, all the error checking has been done. |
| 2356 | * At this point, we start making changes..... |
| 2357 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2359 | info->baud = new_serial.baud_base; |
| 2360 | info->custom_divisor = new_serial.custom_divisor; |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2361 | info->port.flags = (info->port.flags & ~ASYNC_FLAGS) | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2362 | (new_serial.flags & ASYNC_FLAGS); |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 2363 | info->port.close_delay = new_serial.close_delay * HZ / 100; |
| 2364 | info->port.closing_wait = new_serial.closing_wait * HZ / 100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2365 | |
| 2366 | check_and_exit: |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2367 | if (info->port.flags & ASYNC_INITIALIZED) { |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 2368 | cy_set_line_char(info, tty); |
Alan Cox | 25c3cdf | 2010-06-01 22:52:47 +0200 | [diff] [blame] | 2369 | ret = 0; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2370 | } else { |
Alan Cox | 25c3cdf | 2010-06-01 22:52:47 +0200 | [diff] [blame] | 2371 | ret = cy_startup(info, tty); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2372 | } |
Alan Cox | 25c3cdf | 2010-06-01 22:52:47 +0200 | [diff] [blame] | 2373 | mutex_unlock(&info->port.mutex); |
| 2374 | return ret; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2375 | } /* set_serial_info */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2376 | |
| 2377 | /* |
| 2378 | * get_lsr_info - get line status register info |
| 2379 | * |
| 2380 | * Purpose: Let user call ioctl() to get info when the UART physically |
| 2381 | * is emptied. On bus types like RS485, the transmitter must |
| 2382 | * release the bus after transmitting. This must be done when |
| 2383 | * the transmit shift register is empty, not be done when the |
| 2384 | * transmit holding register is empty. This functionality |
| 2385 | * allows an RS485 driver to be written in user space. |
| 2386 | */ |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2387 | static int get_lsr_info(struct cyclades_port *info, unsigned int __user *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2389 | struct cyclades_card *card = info->card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2390 | unsigned int result; |
| 2391 | unsigned long flags; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2392 | u8 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2393 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2394 | if (!cy_is_Z(card)) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2395 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2396 | status = cyy_readb(info, CySRER) & (CyTxRdy | CyTxMpty); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2397 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2398 | result = (status ? 0 : TIOCSER_TEMT); |
| 2399 | } else { |
| 2400 | /* Not supported yet */ |
| 2401 | return -EINVAL; |
| 2402 | } |
Dan Carpenter | dbca36e | 2012-03-05 21:07:11 +0300 | [diff] [blame] | 2403 | return put_user(result, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | } |
| 2405 | |
Alan Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame] | 2406 | static int cy_tiocmget(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2407 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 2408 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2409 | struct cyclades_card *card; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2410 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | |
Harvey Harrison | bf9d892 | 2008-04-30 00:55:10 -0700 | [diff] [blame] | 2412 | if (serial_paranoia_check(info, tty->name, __func__)) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2413 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2414 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2415 | card = info->card; |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2416 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2417 | if (!cy_is_Z(card)) { |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2418 | unsigned long flags; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2419 | int channel = info->line - card->first_line; |
| 2420 | u8 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2422 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2423 | cyy_writeb(info, CyCAR, channel & 0x03); |
| 2424 | status = cyy_readb(info, CyMSVR1); |
| 2425 | status |= cyy_readb(info, CyMSVR2); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2426 | spin_unlock_irqrestore(&card->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2428 | if (info->rtsdtr_inv) { |
| 2429 | result = ((status & CyRTS) ? TIOCM_DTR : 0) | |
| 2430 | ((status & CyDTR) ? TIOCM_RTS : 0); |
| 2431 | } else { |
| 2432 | result = ((status & CyRTS) ? TIOCM_RTS : 0) | |
| 2433 | ((status & CyDTR) ? TIOCM_DTR : 0); |
| 2434 | } |
| 2435 | result |= ((status & CyDCD) ? TIOCM_CAR : 0) | |
| 2436 | ((status & CyRI) ? TIOCM_RNG : 0) | |
| 2437 | ((status & CyDSR) ? TIOCM_DSR : 0) | |
| 2438 | ((status & CyCTS) ? TIOCM_CTS : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | } else { |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2440 | u32 lstatus; |
| 2441 | |
| 2442 | if (!cyz_is_loaded(card)) { |
| 2443 | result = -ENODEV; |
| 2444 | goto end; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2445 | } |
| 2446 | |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2447 | lstatus = readl(&info->u.cyz.ch_ctrl->rs_status); |
| 2448 | result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) | |
| 2449 | ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) | |
| 2450 | ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) | |
| 2451 | ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) | |
| 2452 | ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) | |
| 2453 | ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | } |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2455 | end: |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2456 | return result; |
| 2457 | } /* cy_tiomget */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2458 | |
| 2459 | static int |
Alan Cox | 20b9d17 | 2011-02-14 16:26:50 +0000 | [diff] [blame] | 2460 | cy_tiocmset(struct tty_struct *tty, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2461 | unsigned int set, unsigned int clear) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 2463 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2464 | struct cyclades_card *card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2465 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | |
Harvey Harrison | bf9d892 | 2008-04-30 00:55:10 -0700 | [diff] [blame] | 2467 | if (serial_paranoia_check(info, tty->name, __func__)) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2468 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2469 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2470 | card = info->card; |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2471 | if (!cy_is_Z(card)) { |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2472 | spin_lock_irqsave(&card->card_lock, flags); |
| 2473 | cyy_change_rts_dtr(info, set, clear); |
| 2474 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2475 | } else { |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2476 | struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl; |
| 2477 | int retval, channel = info->line - card->first_line; |
| 2478 | u32 rs; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2479 | |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2480 | if (!cyz_is_loaded(card)) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2481 | return -ENODEV; |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2482 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2483 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2484 | rs = readl(&ch_ctrl->rs_control); |
| 2485 | if (set & TIOCM_RTS) |
| 2486 | rs |= C_RS_RTS; |
| 2487 | if (clear & TIOCM_RTS) |
| 2488 | rs &= ~C_RS_RTS; |
| 2489 | if (set & TIOCM_DTR) { |
| 2490 | rs |= C_RS_DTR; |
| 2491 | #ifdef CY_DEBUG_DTR |
| 2492 | printk(KERN_DEBUG "cyc:set_modem_info raising Z DTR\n"); |
| 2493 | #endif |
| 2494 | } |
| 2495 | if (clear & TIOCM_DTR) { |
| 2496 | rs &= ~C_RS_DTR; |
| 2497 | #ifdef CY_DEBUG_DTR |
| 2498 | printk(KERN_DEBUG "cyc:set_modem_info clearing " |
| 2499 | "Z DTR\n"); |
| 2500 | #endif |
| 2501 | } |
| 2502 | cy_writel(&ch_ctrl->rs_control, rs); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2503 | retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L); |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2504 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2505 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2506 | printk(KERN_ERR "cyc:set_modem_info retval on ttyC%d " |
| 2507 | "was %x\n", info->line, retval); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2508 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2509 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2510 | return 0; |
Jiri Slaby | 0d34872 | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2511 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2512 | |
| 2513 | /* |
| 2514 | * cy_break() --- routine which turns the break handling on or off |
| 2515 | */ |
Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 2516 | static int cy_break(struct tty_struct *tty, int break_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2517 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 2518 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2519 | struct cyclades_card *card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2520 | unsigned long flags; |
Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 2521 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2522 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2523 | if (serial_paranoia_check(info, tty->name, "cy_break")) |
Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 2524 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2525 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2526 | card = info->card; |
| 2527 | |
| 2528 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2529 | if (!cy_is_Z(card)) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2530 | /* Let the transmit ISR take care of this (since it |
| 2531 | requires stuffing characters into the output stream). |
| 2532 | */ |
| 2533 | if (break_state == -1) { |
| 2534 | if (!info->breakon) { |
| 2535 | info->breakon = 1; |
| 2536 | if (!info->xmit_cnt) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2537 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2538 | start_xmit(info); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2539 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2540 | } |
| 2541 | } |
| 2542 | } else { |
| 2543 | if (!info->breakoff) { |
| 2544 | info->breakoff = 1; |
| 2545 | if (!info->xmit_cnt) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2546 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2547 | start_xmit(info); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2548 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2549 | } |
| 2550 | } |
| 2551 | } |
| 2552 | } else { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2553 | if (break_state == -1) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2554 | retval = cyz_issue_cmd(card, |
| 2555 | info->line - card->first_line, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2556 | C_CM_SET_BREAK, 0L); |
| 2557 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2558 | printk(KERN_ERR "cyc:cy_break (set) retval on " |
| 2559 | "ttyC%d was %x\n", info->line, retval); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2560 | } |
| 2561 | } else { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2562 | retval = cyz_issue_cmd(card, |
| 2563 | info->line - card->first_line, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2564 | C_CM_CLR_BREAK, 0L); |
| 2565 | if (retval != 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2566 | printk(KERN_DEBUG "cyc:cy_break (clr) retval " |
| 2567 | "on ttyC%d was %x\n", info->line, |
| 2568 | retval); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2569 | } |
| 2570 | } |
| 2571 | } |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2572 | spin_unlock_irqrestore(&card->card_lock, flags); |
Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 2573 | return retval; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2574 | } /* cy_break */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2576 | static int set_threshold(struct cyclades_port *info, unsigned long value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2577 | { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2578 | struct cyclades_card *card = info->card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2579 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2580 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2581 | if (!cy_is_Z(card)) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2582 | info->cor3 &= ~CyREC_FIFO; |
| 2583 | info->cor3 |= value & CyREC_FIFO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2584 | |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2585 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2586 | cyy_writeb(info, CyCOR3, info->cor3); |
| 2587 | cyy_issue_cmd(info, CyCOR_CHANGE | CyCOR3ch); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2588 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2589 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | return 0; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2591 | } /* set_threshold */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2593 | static int get_threshold(struct cyclades_port *info, |
| 2594 | unsigned long __user *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2595 | { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2596 | struct cyclades_card *card = info->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2597 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2598 | if (!cy_is_Z(card)) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2599 | u8 tmp = cyy_readb(info, CyCOR3) & CyREC_FIFO; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2600 | return put_user(tmp, value); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2601 | } |
Jiri Slaby | f742903 | 2007-05-08 00:36:59 -0700 | [diff] [blame] | 2602 | return 0; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2603 | } /* get_threshold */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2604 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2605 | static int set_timeout(struct cyclades_port *info, unsigned long value) |
| 2606 | { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2607 | struct cyclades_card *card = info->card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2608 | unsigned long flags; |
| 2609 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2610 | if (!cy_is_Z(card)) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2611 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2612 | cyy_writeb(info, CyRTPR, value & 0xff); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2613 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2614 | } |
| 2615 | return 0; |
| 2616 | } /* set_timeout */ |
| 2617 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2618 | static int get_timeout(struct cyclades_port *info, |
| 2619 | unsigned long __user *value) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2620 | { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2621 | struct cyclades_card *card = info->card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2622 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2623 | if (!cy_is_Z(card)) { |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2624 | u8 tmp = cyy_readb(info, CyRTPR); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2625 | return put_user(tmp, value); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2626 | } |
Jiri Slaby | f742903 | 2007-05-08 00:36:59 -0700 | [diff] [blame] | 2627 | return 0; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2628 | } /* get_timeout */ |
| 2629 | |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2630 | static int cy_cflags_changed(struct cyclades_port *info, unsigned long arg, |
| 2631 | struct cyclades_icount *cprev) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2632 | { |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2633 | struct cyclades_icount cnow; |
| 2634 | unsigned long flags; |
| 2635 | int ret; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2636 | |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2637 | spin_lock_irqsave(&info->card->card_lock, flags); |
| 2638 | cnow = info->icount; /* atomic copy */ |
| 2639 | spin_unlock_irqrestore(&info->card->card_lock, flags); |
| 2640 | |
| 2641 | ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) || |
| 2642 | ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) || |
| 2643 | ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) || |
| 2644 | ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts)); |
| 2645 | |
| 2646 | *cprev = cnow; |
| 2647 | |
| 2648 | return ret; |
| 2649 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | |
| 2651 | /* |
| 2652 | * This routine allows the tty driver to implement device- |
| 2653 | * specific ioctl's. If the ioctl number passed in cmd is |
| 2654 | * not recognized by the driver, it should return ENOIOCTLCMD. |
| 2655 | */ |
| 2656 | static int |
Alan Cox | 6caa76b | 2011-02-14 16:27:22 +0000 | [diff] [blame] | 2657 | cy_ioctl(struct tty_struct *tty, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2658 | unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2659 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 2660 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2661 | struct cyclades_icount cnow; /* kernel counter temps */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2662 | int ret_val = 0; |
| 2663 | unsigned long flags; |
| 2664 | void __user *argp = (void __user *)arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2666 | if (serial_paranoia_check(info, tty->name, "cy_ioctl")) |
| 2667 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2668 | |
| 2669 | #ifdef CY_DEBUG_OTHER |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2670 | printk(KERN_DEBUG "cyc:cy_ioctl ttyC%d, cmd = %x arg = %lx\n", |
| 2671 | info->line, cmd, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2672 | #endif |
| 2673 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2674 | switch (cmd) { |
| 2675 | case CYGETMON: |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2676 | if (copy_to_user(argp, &info->mon, sizeof(info->mon))) { |
| 2677 | ret_val = -EFAULT; |
| 2678 | break; |
| 2679 | } |
| 2680 | memset(&info->mon, 0, sizeof(info->mon)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | break; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2682 | case CYGETTHRESH: |
| 2683 | ret_val = get_threshold(info, argp); |
| 2684 | break; |
| 2685 | case CYSETTHRESH: |
| 2686 | ret_val = set_threshold(info, arg); |
| 2687 | break; |
| 2688 | case CYGETDEFTHRESH: |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2689 | ret_val = put_user(info->default_threshold, |
| 2690 | (unsigned long __user *)argp); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2691 | break; |
| 2692 | case CYSETDEFTHRESH: |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2693 | info->default_threshold = arg & 0x0f; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2694 | break; |
| 2695 | case CYGETTIMEOUT: |
| 2696 | ret_val = get_timeout(info, argp); |
| 2697 | break; |
| 2698 | case CYSETTIMEOUT: |
| 2699 | ret_val = set_timeout(info, arg); |
| 2700 | break; |
| 2701 | case CYGETDEFTIMEOUT: |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2702 | ret_val = put_user(info->default_timeout, |
| 2703 | (unsigned long __user *)argp); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2704 | break; |
| 2705 | case CYSETDEFTIMEOUT: |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2706 | info->default_timeout = arg & 0xff; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2707 | break; |
| 2708 | case CYSETRFLOW: |
| 2709 | info->rflow = (int)arg; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2710 | break; |
| 2711 | case CYGETRFLOW: |
| 2712 | ret_val = info->rflow; |
| 2713 | break; |
| 2714 | case CYSETRTSDTR_INV: |
| 2715 | info->rtsdtr_inv = (int)arg; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2716 | break; |
| 2717 | case CYGETRTSDTR_INV: |
| 2718 | ret_val = info->rtsdtr_inv; |
| 2719 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | case CYGETCD1400VER: |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2721 | ret_val = info->chip_rev; |
| 2722 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2723 | #ifndef CONFIG_CYZ_INTR |
| 2724 | case CYZSETPOLLCYCLE: |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2725 | cyz_polling_cycle = (arg * HZ) / 1000; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2726 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2727 | case CYZGETPOLLCYCLE: |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2728 | ret_val = (cyz_polling_cycle * 1000) / HZ; |
| 2729 | break; |
| 2730 | #endif /* CONFIG_CYZ_INTR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2731 | case CYSETWAIT: |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 2732 | info->port.closing_wait = (unsigned short)arg * HZ / 100; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2733 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2734 | case CYGETWAIT: |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 2735 | ret_val = info->port.closing_wait / (HZ / 100); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2736 | break; |
| 2737 | case TIOCGSERIAL: |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2738 | ret_val = cy_get_serial_info(info, argp); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2739 | break; |
| 2740 | case TIOCSSERIAL: |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 2741 | ret_val = cy_set_serial_info(info, tty, argp); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2742 | break; |
| 2743 | case TIOCSERGETLSR: /* Get line status register */ |
| 2744 | ret_val = get_lsr_info(info, argp); |
| 2745 | break; |
| 2746 | /* |
| 2747 | * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change |
| 2748 | * - mask passed in arg for lines of interest |
| 2749 | * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking) |
| 2750 | * Caller should use TIOCGICOUNT to see which one it was |
| 2751 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | case TIOCMIWAIT: |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2753 | spin_lock_irqsave(&info->card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2754 | /* note the counters on entry */ |
Jiri Slaby | 2c7fea9 | 2007-05-08 00:36:51 -0700 | [diff] [blame] | 2755 | cnow = info->icount; |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2756 | spin_unlock_irqrestore(&info->card->card_lock, flags); |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2757 | ret_val = wait_event_interruptible(info->port.delta_msr_wait, |
Jiri Slaby | 6c28181 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2758 | cy_cflags_changed(info, arg, &cnow)); |
Jiri Slaby | 2c7fea9 | 2007-05-08 00:36:51 -0700 | [diff] [blame] | 2759 | break; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2760 | |
| 2761 | /* |
| 2762 | * Get counter of input serial line interrupts (DCD,RI,DSR,CTS) |
| 2763 | * Return: write counters to the user passed counter struct |
| 2764 | * NB: both 1->0 and 0->1 transitions are counted except for |
| 2765 | * RI where only 0->1 is counted. |
| 2766 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2767 | default: |
| 2768 | ret_val = -ENOIOCTLCMD; |
| 2769 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2770 | |
| 2771 | #ifdef CY_DEBUG_OTHER |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2772 | printk(KERN_DEBUG "cyc:cy_ioctl done\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2773 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2774 | return ret_val; |
| 2775 | } /* cy_ioctl */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2776 | |
Alan Cox | 0587102 | 2010-09-16 18:21:52 +0100 | [diff] [blame] | 2777 | static int cy_get_icount(struct tty_struct *tty, |
| 2778 | struct serial_icounter_struct *sic) |
| 2779 | { |
| 2780 | struct cyclades_port *info = tty->driver_data; |
| 2781 | struct cyclades_icount cnow; /* Used to snapshot */ |
| 2782 | unsigned long flags; |
| 2783 | |
| 2784 | spin_lock_irqsave(&info->card->card_lock, flags); |
| 2785 | cnow = info->icount; |
| 2786 | spin_unlock_irqrestore(&info->card->card_lock, flags); |
| 2787 | |
| 2788 | sic->cts = cnow.cts; |
| 2789 | sic->dsr = cnow.dsr; |
| 2790 | sic->rng = cnow.rng; |
| 2791 | sic->dcd = cnow.dcd; |
| 2792 | sic->rx = cnow.rx; |
| 2793 | sic->tx = cnow.tx; |
| 2794 | sic->frame = cnow.frame; |
| 2795 | sic->overrun = cnow.overrun; |
| 2796 | sic->parity = cnow.parity; |
| 2797 | sic->brk = cnow.brk; |
| 2798 | sic->buf_overrun = cnow.buf_overrun; |
| 2799 | return 0; |
| 2800 | } |
| 2801 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | /* |
| 2803 | * This routine allows the tty driver to be notified when |
| 2804 | * device's termios settings have changed. Note that a |
| 2805 | * well-designed tty driver should be prepared to accept the case |
| 2806 | * where old == NULL, and try to do something rational. |
| 2807 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2808 | static void cy_set_termios(struct tty_struct *tty, struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2809 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 2810 | struct cyclades_port *info = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | |
| 2812 | #ifdef CY_DEBUG_OTHER |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2813 | printk(KERN_DEBUG "cyc:cy_set_termios ttyC%d\n", info->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2814 | #endif |
| 2815 | |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 2816 | cy_set_line_char(info, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2818 | if ((old_termios->c_cflag & CRTSCTS) && |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 2819 | !(tty->termios.c_cflag & CRTSCTS)) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2820 | tty->hw_stopped = 0; |
| 2821 | cy_start(tty); |
| 2822 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2823 | #if 0 |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2824 | /* |
| 2825 | * No need to wake up processes in open wait, since they |
| 2826 | * sample the CLOCAL flag once, and don't recheck it. |
| 2827 | * XXX It's not clear whether the current behavior is correct |
| 2828 | * or not. Hence, this may change..... |
| 2829 | */ |
| 2830 | if (!(old_termios->c_cflag & CLOCAL) && |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 2831 | (tty->termios.c_cflag & CLOCAL)) |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 2832 | wake_up_interruptible(&info->port.open_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2833 | #endif |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2834 | } /* cy_set_termios */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | |
| 2836 | /* This function is used to send a high-priority XON/XOFF character to |
| 2837 | the device. |
| 2838 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2839 | static void cy_send_xchar(struct tty_struct *tty, char ch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 2841 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2842 | struct cyclades_card *card; |
| 2843 | int channel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2844 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2845 | if (serial_paranoia_check(info, tty->name, "cy_send_xchar")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | return; |
| 2847 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2848 | info->x_char = ch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | |
| 2850 | if (ch) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2851 | cy_start(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | |
| 2853 | card = info->card; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2854 | channel = info->line - card->first_line; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2855 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2856 | if (cy_is_Z(card)) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2857 | if (ch == STOP_CHAR(tty)) |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2858 | cyz_issue_cmd(card, channel, C_CM_SENDXOFF, 0L); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2859 | else if (ch == START_CHAR(tty)) |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2860 | cyz_issue_cmd(card, channel, C_CM_SENDXON, 0L); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2861 | } |
| 2862 | } |
| 2863 | |
| 2864 | /* This routine is called by the upper-layer tty layer to signal |
| 2865 | that incoming characters should be throttled because the input |
| 2866 | buffers are close to full. |
| 2867 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2868 | static void cy_throttle(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2869 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 2870 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2871 | struct cyclades_card *card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2872 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2873 | |
| 2874 | #ifdef CY_DEBUG_THROTTLE |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2875 | char buf[64]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2876 | |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2877 | printk(KERN_DEBUG "cyc:throttle %s: %ld...ttyC%d\n", tty_name(tty, buf), |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2878 | tty->ldisc.chars_in_buffer(tty), info->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | #endif |
| 2880 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2881 | if (serial_paranoia_check(info, tty->name, "cy_throttle")) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2882 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2883 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2884 | card = info->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2886 | if (I_IXOFF(tty)) { |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2887 | if (!cy_is_Z(card)) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2888 | cy_send_xchar(tty, STOP_CHAR(tty)); |
| 2889 | else |
| 2890 | info->throttle = 1; |
| 2891 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2892 | |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 2893 | if (tty->termios.c_cflag & CRTSCTS) { |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2894 | if (!cy_is_Z(card)) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2895 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2896 | cyy_change_rts_dtr(info, 0, TIOCM_RTS); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2897 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2898 | } else { |
| 2899 | info->throttle = 1; |
| 2900 | } |
| 2901 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2902 | } /* cy_throttle */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2903 | |
| 2904 | /* |
| 2905 | * This routine notifies the tty driver that it should signal |
| 2906 | * that characters can now be sent to the tty without fear of |
| 2907 | * overrunning the input buffers of the line disciplines. |
| 2908 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2909 | static void cy_unthrottle(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 2911 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2912 | struct cyclades_card *card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2913 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | |
| 2915 | #ifdef CY_DEBUG_THROTTLE |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2916 | char buf[64]; |
| 2917 | |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2918 | printk(KERN_DEBUG "cyc:unthrottle %s: %ld...ttyC%d\n", |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2919 | tty_name(tty, buf), tty_chars_in_buffer(tty), info->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2920 | #endif |
| 2921 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 2922 | if (serial_paranoia_check(info, tty->name, "cy_unthrottle")) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2923 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2925 | if (I_IXOFF(tty)) { |
| 2926 | if (info->x_char) |
| 2927 | info->x_char = 0; |
| 2928 | else |
| 2929 | cy_send_xchar(tty, START_CHAR(tty)); |
| 2930 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2931 | |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 2932 | if (tty->termios.c_cflag & CRTSCTS) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2933 | card = info->card; |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2934 | if (!cy_is_Z(card)) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2935 | spin_lock_irqsave(&card->card_lock, flags); |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 2936 | cyy_change_rts_dtr(info, TIOCM_RTS, 0); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2937 | spin_unlock_irqrestore(&card->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2938 | } else { |
| 2939 | info->throttle = 0; |
| 2940 | } |
| 2941 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2942 | } /* cy_unthrottle */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2943 | |
| 2944 | /* cy_start and cy_stop provide software output flow control as a |
| 2945 | function of XON/XOFF, software CTS, and other such stuff. |
| 2946 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2947 | static void cy_stop(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2948 | { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2949 | struct cyclades_card *cinfo; |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 2950 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2951 | int channel; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2952 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2953 | |
| 2954 | #ifdef CY_DEBUG_OTHER |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2955 | printk(KERN_DEBUG "cyc:cy_stop ttyC%d\n", info->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | #endif |
| 2957 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2958 | if (serial_paranoia_check(info, tty->name, "cy_stop")) |
| 2959 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2960 | |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2961 | cinfo = info->card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2962 | channel = info->line - cinfo->first_line; |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2963 | if (!cy_is_Z(cinfo)) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2964 | spin_lock_irqsave(&cinfo->card_lock, flags); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2965 | cyy_writeb(info, CyCAR, channel & 0x03); |
| 2966 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) & ~CyTxRdy); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2967 | spin_unlock_irqrestore(&cinfo->card_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2968 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2969 | } /* cy_stop */ |
| 2970 | |
| 2971 | static void cy_start(struct tty_struct *tty) |
| 2972 | { |
| 2973 | struct cyclades_card *cinfo; |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 2974 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2975 | int channel; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2976 | unsigned long flags; |
| 2977 | |
| 2978 | #ifdef CY_DEBUG_OTHER |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 2979 | printk(KERN_DEBUG "cyc:cy_start ttyC%d\n", info->line); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2980 | #endif |
| 2981 | |
| 2982 | if (serial_paranoia_check(info, tty->name, "cy_start")) |
| 2983 | return; |
| 2984 | |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 2985 | cinfo = info->card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2986 | channel = info->line - cinfo->first_line; |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 2987 | if (!cy_is_Z(cinfo)) { |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2988 | spin_lock_irqsave(&cinfo->card_lock, flags); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 2989 | cyy_writeb(info, CyCAR, channel & 0x03); |
| 2990 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyTxRdy); |
Jiri Slaby | 9fa1b3b18 | 2007-05-08 00:36:57 -0700 | [diff] [blame] | 2991 | spin_unlock_irqrestore(&cinfo->card_lock, flags); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2992 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2993 | } /* cy_start */ |
| 2994 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2995 | /* |
| 2996 | * cy_hangup() --- called by tty_hangup() when a hangup is signaled. |
| 2997 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 2998 | static void cy_hangup(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2999 | { |
Jiri Slaby | cab9bdd | 2007-05-08 00:35:51 -0700 | [diff] [blame] | 3000 | struct cyclades_port *info = tty->driver_data; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3001 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | #ifdef CY_DEBUG_OTHER |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 3003 | printk(KERN_DEBUG "cyc:cy_hangup ttyC%d\n", info->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3004 | #endif |
| 3005 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3006 | if (serial_paranoia_check(info, tty->name, "cy_hangup")) |
| 3007 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3008 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3009 | cy_flush_buffer(tty); |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3010 | cy_shutdown(info, tty); |
Jiri Slaby | 174e6fe | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3011 | tty_port_hangup(&info->port); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3012 | } /* cy_hangup */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3013 | |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3014 | static int cyy_carrier_raised(struct tty_port *port) |
| 3015 | { |
| 3016 | struct cyclades_port *info = container_of(port, struct cyclades_port, |
| 3017 | port); |
| 3018 | struct cyclades_card *cinfo = info->card; |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3019 | unsigned long flags; |
| 3020 | int channel = info->line - cinfo->first_line; |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3021 | u32 cd; |
| 3022 | |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3023 | spin_lock_irqsave(&cinfo->card_lock, flags); |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 3024 | cyy_writeb(info, CyCAR, channel & 0x03); |
| 3025 | cd = cyy_readb(info, CyMSVR1) & CyDCD; |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3026 | spin_unlock_irqrestore(&cinfo->card_lock, flags); |
| 3027 | |
| 3028 | return cd; |
| 3029 | } |
| 3030 | |
| 3031 | static void cyy_dtr_rts(struct tty_port *port, int raise) |
| 3032 | { |
| 3033 | struct cyclades_port *info = container_of(port, struct cyclades_port, |
| 3034 | port); |
| 3035 | struct cyclades_card *cinfo = info->card; |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3036 | unsigned long flags; |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3037 | |
| 3038 | spin_lock_irqsave(&cinfo->card_lock, flags); |
Jiri Slaby | 4d76820 | 2009-09-19 13:13:15 -0700 | [diff] [blame] | 3039 | cyy_change_rts_dtr(info, raise ? TIOCM_RTS | TIOCM_DTR : 0, |
| 3040 | raise ? 0 : TIOCM_RTS | TIOCM_DTR); |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3041 | spin_unlock_irqrestore(&cinfo->card_lock, flags); |
| 3042 | } |
| 3043 | |
| 3044 | static int cyz_carrier_raised(struct tty_port *port) |
| 3045 | { |
| 3046 | struct cyclades_port *info = container_of(port, struct cyclades_port, |
| 3047 | port); |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3048 | |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3049 | return readl(&info->u.cyz.ch_ctrl->rs_status) & C_RS_DCD; |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3050 | } |
| 3051 | |
| 3052 | static void cyz_dtr_rts(struct tty_port *port, int raise) |
| 3053 | { |
| 3054 | struct cyclades_port *info = container_of(port, struct cyclades_port, |
| 3055 | port); |
| 3056 | struct cyclades_card *cinfo = info->card; |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3057 | struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl; |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3058 | int ret, channel = info->line - cinfo->first_line; |
| 3059 | u32 rs; |
| 3060 | |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3061 | rs = readl(&ch_ctrl->rs_control); |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3062 | if (raise) |
| 3063 | rs |= C_RS_RTS | C_RS_DTR; |
| 3064 | else |
| 3065 | rs &= ~(C_RS_RTS | C_RS_DTR); |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3066 | cy_writel(&ch_ctrl->rs_control, rs); |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3067 | ret = cyz_issue_cmd(cinfo, channel, C_CM_IOCTLM, 0L); |
| 3068 | if (ret != 0) |
| 3069 | printk(KERN_ERR "%s: retval on ttyC%d was %x\n", |
| 3070 | __func__, info->line, ret); |
| 3071 | #ifdef CY_DEBUG_DTR |
| 3072 | printk(KERN_DEBUG "%s: raising Z DTR\n", __func__); |
| 3073 | #endif |
| 3074 | } |
| 3075 | |
| 3076 | static const struct tty_port_operations cyy_port_ops = { |
| 3077 | .carrier_raised = cyy_carrier_raised, |
| 3078 | .dtr_rts = cyy_dtr_rts, |
Alan Cox | e936ffd | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 3079 | .shutdown = cy_do_close, |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3080 | }; |
| 3081 | |
| 3082 | static const struct tty_port_operations cyz_port_ops = { |
| 3083 | .carrier_raised = cyz_carrier_raised, |
| 3084 | .dtr_rts = cyz_dtr_rts, |
Alan Cox | e936ffd | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 3085 | .shutdown = cy_do_close, |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3086 | }; |
| 3087 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3088 | /* |
| 3089 | * --------------------------------------------------------------------- |
| 3090 | * cy_init() and friends |
| 3091 | * |
| 3092 | * cy_init() is called at boot-time to initialize the serial driver. |
| 3093 | * --------------------------------------------------------------------- |
| 3094 | */ |
| 3095 | |
Bill Pemberton | 9671f09 | 2012-11-19 13:21:50 -0500 | [diff] [blame] | 3096 | static int cy_init_card(struct cyclades_card *cinfo) |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3097 | { |
| 3098 | struct cyclades_port *info; |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3099 | unsigned int channel, port; |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3100 | |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3101 | spin_lock_init(&cinfo->card_lock); |
Jiri Slaby | 963118e | 2009-06-11 12:34:27 +0100 | [diff] [blame] | 3102 | cinfo->intr_enabled = 0; |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3103 | |
Jiri Slaby | 963118e | 2009-06-11 12:34:27 +0100 | [diff] [blame] | 3104 | cinfo->ports = kcalloc(cinfo->nports, sizeof(*cinfo->ports), |
| 3105 | GFP_KERNEL); |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 3106 | if (cinfo->ports == NULL) { |
| 3107 | printk(KERN_ERR "Cyclades: cannot allocate ports\n"); |
| 3108 | return -ENOMEM; |
| 3109 | } |
| 3110 | |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3111 | for (channel = 0, port = cinfo->first_line; channel < cinfo->nports; |
| 3112 | channel++, port++) { |
| 3113 | info = &cinfo->ports[channel]; |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 3114 | tty_port_init(&info->port); |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3115 | info->magic = CYCLADES_MAGIC; |
Jiri Slaby | 875b206 | 2007-05-08 00:36:49 -0700 | [diff] [blame] | 3116 | info->card = cinfo; |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3117 | info->line = port; |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3118 | |
Alan Cox | 44b7d1b | 2008-07-16 21:57:18 +0100 | [diff] [blame] | 3119 | info->port.closing_wait = CLOSING_WAIT_DELAY; |
| 3120 | info->port.close_delay = 5 * HZ / 10; |
Alan Cox | 77451e5 | 2008-07-16 21:57:02 +0100 | [diff] [blame] | 3121 | info->port.flags = STD_COM_FLAGS; |
Jiri Slaby | 2c7fea9 | 2007-05-08 00:36:51 -0700 | [diff] [blame] | 3122 | init_completion(&info->shutdown_wait); |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3123 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 3124 | if (cy_is_Z(cinfo)) { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3125 | struct FIRM_ID *firm_id = cinfo->base_addr + ID_ADDRESS; |
| 3126 | struct ZFW_CTRL *zfw_ctrl; |
| 3127 | |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3128 | info->port.ops = &cyz_port_ops; |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3129 | info->type = PORT_STARTECH; |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3130 | |
| 3131 | zfw_ctrl = cinfo->base_addr + |
| 3132 | (readl(&firm_id->zfwctrl_addr) & 0xfffff); |
| 3133 | info->u.cyz.ch_ctrl = &zfw_ctrl->ch_ctrl[channel]; |
| 3134 | info->u.cyz.buf_ctrl = &zfw_ctrl->buf_ctrl[channel]; |
| 3135 | |
Jiri Slaby | 101b815 | 2009-06-11 12:30:10 +0100 | [diff] [blame] | 3136 | if (cinfo->hw_ver == ZO_V1) |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3137 | info->xmit_fifo_size = CYZ_FIFO_SIZE; |
| 3138 | else |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3139 | info->xmit_fifo_size = 4 * CYZ_FIFO_SIZE; |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3140 | #ifdef CONFIG_CYZ_INTR |
Jiri Slaby | 3991428 | 2007-05-08 00:36:54 -0700 | [diff] [blame] | 3141 | setup_timer(&cyz_rx_full_timer[port], |
| 3142 | cyz_rx_restart, (unsigned long)info); |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3143 | #endif |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3144 | } else { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3145 | unsigned short chip_number; |
Jiri Slaby | 963118e | 2009-06-11 12:34:27 +0100 | [diff] [blame] | 3146 | int index = cinfo->bus_index; |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3147 | |
Jiri Slaby | f073757 | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3148 | info->port.ops = &cyy_port_ops; |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3149 | info->type = PORT_CIRRUS; |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3150 | info->xmit_fifo_size = CyMAX_CHAR_FIFO; |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3151 | info->cor1 = CyPARITY_NONE | Cy_1_STOP | Cy_8_BITS; |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3152 | info->cor2 = CyETC; |
| 3153 | info->cor3 = 0x08; /* _very_ small rcv threshold */ |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3154 | |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3155 | chip_number = channel / CyPORTS_PER_CHIP; |
Jiri Slaby | 3aeea5b | 2009-09-19 13:13:16 -0700 | [diff] [blame] | 3156 | info->u.cyy.base_addr = cinfo->base_addr + |
| 3157 | (cy_chip_offset[chip_number] << index); |
| 3158 | info->chip_rev = cyy_readb(info, CyGFRCR); |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 3159 | |
| 3160 | if (info->chip_rev >= CD1400_REV_J) { |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3161 | /* It is a CD1400 rev. J or later */ |
| 3162 | info->tbpr = baud_bpr_60[13]; /* Tx BPR */ |
| 3163 | info->tco = baud_co_60[13]; /* Tx CO */ |
| 3164 | info->rbpr = baud_bpr_60[13]; /* Rx BPR */ |
| 3165 | info->rco = baud_co_60[13]; /* Rx CO */ |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3166 | info->rtsdtr_inv = 1; |
| 3167 | } else { |
| 3168 | info->tbpr = baud_bpr_25[13]; /* Tx BPR */ |
| 3169 | info->tco = baud_co_25[13]; /* Tx CO */ |
| 3170 | info->rbpr = baud_bpr_25[13]; /* Rx BPR */ |
| 3171 | info->rco = baud_co_25[13]; /* Rx CO */ |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3172 | info->rtsdtr_inv = 0; |
| 3173 | } |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3174 | info->read_status_mask = CyTIMEOUT | CySPECHAR | |
| 3175 | CyBREAK | CyPARITY | CyFRAME | CyOVERRUN; |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3176 | } |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3177 | |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3178 | } |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3179 | |
| 3180 | #ifndef CONFIG_CYZ_INTR |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 3181 | if (cy_is_Z(cinfo) && !timer_pending(&cyz_timerlist)) { |
Jiri Slaby | 3046d50 | 2007-05-08 00:36:46 -0700 | [diff] [blame] | 3182 | mod_timer(&cyz_timerlist, jiffies + 1); |
| 3183 | #ifdef CY_PCI_DEBUG |
| 3184 | printk(KERN_DEBUG "Cyclades-Z polling initialized\n"); |
| 3185 | #endif |
| 3186 | } |
| 3187 | #endif |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 3188 | return 0; |
Jiri Slaby | 0809e26 | 2007-05-08 00:36:14 -0700 | [diff] [blame] | 3189 | } |
| 3190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3191 | /* initialize chips on Cyclom-Y card -- return number of valid |
| 3192 | chips (which is number of ports/4) */ |
Bill Pemberton | 9671f09 | 2012-11-19 13:21:50 -0500 | [diff] [blame] | 3193 | static unsigned short cyy_init_card(void __iomem *true_base_addr, |
Jiri Slaby | 31b4f0a | 2007-05-08 00:36:44 -0700 | [diff] [blame] | 3194 | int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3195 | { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3196 | unsigned int chip_number; |
| 3197 | void __iomem *base_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3198 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3199 | cy_writeb(true_base_addr + (Cy_HwReset << index), 0); |
| 3200 | /* Cy_HwReset is 0x1400 */ |
| 3201 | cy_writeb(true_base_addr + (Cy_ClrIntr << index), 0); |
| 3202 | /* Cy_ClrIntr is 0x1800 */ |
| 3203 | udelay(500L); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3204 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 3205 | for (chip_number = 0; chip_number < CyMAX_CHIPS_PER_CARD; |
| 3206 | chip_number++) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3207 | base_addr = |
| 3208 | true_base_addr + (cy_chip_offset[chip_number] << index); |
| 3209 | mdelay(1); |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 3210 | if (readb(base_addr + (CyCCR << index)) != 0x00) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3211 | /************* |
| 3212 | printk(" chip #%d at %#6lx is never idle (CCR != 0)\n", |
| 3213 | chip_number, (unsigned long)base_addr); |
| 3214 | *************/ |
| 3215 | return chip_number; |
| 3216 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3217 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3218 | cy_writeb(base_addr + (CyGFRCR << index), 0); |
| 3219 | udelay(10L); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3220 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3221 | /* The Cyclom-16Y does not decode address bit 9 and therefore |
| 3222 | cannot distinguish between references to chip 0 and a non- |
| 3223 | existent chip 4. If the preceding clearing of the supposed |
| 3224 | chip 4 GFRCR register appears at chip 0, there is no chip 4 |
| 3225 | and this must be a Cyclom-16Y, not a Cyclom-32Ye. |
| 3226 | */ |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 3227 | if (chip_number == 4 && readb(true_base_addr + |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3228 | (cy_chip_offset[0] << index) + |
| 3229 | (CyGFRCR << index)) == 0) { |
| 3230 | return chip_number; |
| 3231 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3232 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3233 | cy_writeb(base_addr + (CyCCR << index), CyCHIP_RESET); |
| 3234 | mdelay(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3235 | |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 3236 | if (readb(base_addr + (CyGFRCR << index)) == 0x00) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3237 | /* |
| 3238 | printk(" chip #%d at %#6lx is not responding ", |
| 3239 | chip_number, (unsigned long)base_addr); |
| 3240 | printk("(GFRCR stayed 0)\n", |
| 3241 | */ |
| 3242 | return chip_number; |
| 3243 | } |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 3244 | if ((0xf0 & (readb(base_addr + (CyGFRCR << index)))) != |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3245 | 0x40) { |
| 3246 | /* |
| 3247 | printk(" chip #%d at %#6lx is not valid (GFRCR == " |
| 3248 | "%#2x)\n", |
| 3249 | chip_number, (unsigned long)base_addr, |
| 3250 | base_addr[CyGFRCR<<index]); |
| 3251 | */ |
| 3252 | return chip_number; |
| 3253 | } |
| 3254 | cy_writeb(base_addr + (CyGCR << index), CyCH0_SERIAL); |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 3255 | if (readb(base_addr + (CyGFRCR << index)) >= CD1400_REV_J) { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3256 | /* It is a CD1400 rev. J or later */ |
| 3257 | /* Impossible to reach 5ms with this chip. |
| 3258 | Changed to 2ms instead (f = 500 Hz). */ |
| 3259 | cy_writeb(base_addr + (CyPPR << index), CyCLOCK_60_2MS); |
| 3260 | } else { |
| 3261 | /* f = 200 Hz */ |
| 3262 | cy_writeb(base_addr + (CyPPR << index), CyCLOCK_25_5MS); |
| 3263 | } |
| 3264 | |
| 3265 | /* |
| 3266 | printk(" chip #%d at %#6lx is rev 0x%2x\n", |
| 3267 | chip_number, (unsigned long)base_addr, |
Jiri Slaby | db05c3b | 2007-05-08 00:35:46 -0700 | [diff] [blame] | 3268 | readb(base_addr+(CyGFRCR<<index))); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3269 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3270 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3271 | return chip_number; |
| 3272 | } /* cyy_init_card */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3273 | |
| 3274 | /* |
| 3275 | * --------------------------------------------------------------------- |
| 3276 | * cy_detect_isa() - Probe for Cyclom-Y/ISA boards. |
| 3277 | * sets global variables and return the number of ISA boards found. |
| 3278 | * --------------------------------------------------------------------- |
| 3279 | */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3280 | static int __init cy_detect_isa(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3281 | { |
| 3282 | #ifdef CONFIG_ISA |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3283 | struct cyclades_card *card; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3284 | unsigned short cy_isa_irq, nboard; |
| 3285 | void __iomem *cy_isa_address; |
Jiri Slaby | 734cc17 | 2012-08-07 21:47:47 +0200 | [diff] [blame] | 3286 | unsigned short i, j, k, cy_isa_nchan; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3287 | int isparam = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3288 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3289 | nboard = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3290 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3291 | /* Check for module parameters */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3292 | for (i = 0; i < NR_CARDS; i++) { |
| 3293 | if (maddr[i] || i) { |
| 3294 | isparam = 1; |
| 3295 | cy_isa_addresses[i] = maddr[i]; |
| 3296 | } |
| 3297 | if (!maddr[i]) |
| 3298 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3299 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3301 | /* scan the address table probing for Cyclom-Y/ISA boards */ |
| 3302 | for (i = 0; i < NR_ISA_ADDRS; i++) { |
| 3303 | unsigned int isa_address = cy_isa_addresses[i]; |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 3304 | if (isa_address == 0x0000) |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 3305 | return nboard; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3306 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3307 | /* probe for CD1400... */ |
Alan Cox | cd989b3 | 2008-04-30 00:53:56 -0700 | [diff] [blame] | 3308 | cy_isa_address = ioremap_nocache(isa_address, CyISA_Ywin); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3309 | if (cy_isa_address == NULL) { |
| 3310 | printk(KERN_ERR "Cyclom-Y/ISA: can't remap base " |
| 3311 | "address\n"); |
| 3312 | continue; |
| 3313 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3314 | cy_isa_nchan = CyPORTS_PER_CHIP * |
| 3315 | cyy_init_card(cy_isa_address, 0); |
| 3316 | if (cy_isa_nchan == 0) { |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3317 | iounmap(cy_isa_address); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3318 | continue; |
| 3319 | } |
Bartlomiej Zolnierkiewicz | 2090436 | 2009-12-09 12:34:14 -0800 | [diff] [blame] | 3320 | |
Roel Kluin | 196b316 | 2009-10-01 15:44:24 -0700 | [diff] [blame] | 3321 | if (isparam && i < NR_CARDS && irq[i]) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3322 | cy_isa_irq = irq[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3323 | else |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3324 | /* find out the board's irq by probing */ |
| 3325 | cy_isa_irq = detect_isa_irq(cy_isa_address); |
| 3326 | if (cy_isa_irq == 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 3327 | printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but the " |
| 3328 | "IRQ could not be detected.\n", |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3329 | (unsigned long)cy_isa_address); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3330 | iounmap(cy_isa_address); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3331 | continue; |
| 3332 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3333 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3334 | if ((cy_next_channel + cy_isa_nchan) > NR_PORTS) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 3335 | printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no " |
| 3336 | "more channels are available. Change NR_PORTS " |
| 3337 | "in cyclades.c and recompile kernel.\n", |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3338 | (unsigned long)cy_isa_address); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3339 | iounmap(cy_isa_address); |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 3340 | return nboard; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3341 | } |
| 3342 | /* fill the next cy_card structure available */ |
| 3343 | for (j = 0; j < NR_CARDS; j++) { |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3344 | card = &cy_card[j]; |
| 3345 | if (card->base_addr == NULL) |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3346 | break; |
| 3347 | } |
| 3348 | if (j == NR_CARDS) { /* no more cy_cards available */ |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 3349 | printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no " |
| 3350 | "more cards can be used. Change NR_CARDS in " |
| 3351 | "cyclades.c and recompile kernel.\n", |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3352 | (unsigned long)cy_isa_address); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3353 | iounmap(cy_isa_address); |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 3354 | return nboard; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3355 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3356 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3357 | /* allocate IRQ */ |
| 3358 | if (request_irq(cy_isa_irq, cyy_interrupt, |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3359 | 0, "Cyclom-Y", card)) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 3360 | printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but " |
| 3361 | "could not allocate IRQ#%d.\n", |
| 3362 | (unsigned long)cy_isa_address, cy_isa_irq); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3363 | iounmap(cy_isa_address); |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 3364 | return nboard; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3365 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3367 | /* set cy_card */ |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3368 | card->base_addr = cy_isa_address; |
| 3369 | card->ctl_addr.p9050 = NULL; |
| 3370 | card->irq = (int)cy_isa_irq; |
| 3371 | card->bus_index = 0; |
| 3372 | card->first_line = cy_next_channel; |
| 3373 | card->num_chips = cy_isa_nchan / CyPORTS_PER_CHIP; |
| 3374 | card->nports = cy_isa_nchan; |
| 3375 | if (cy_init_card(card)) { |
| 3376 | card->base_addr = NULL; |
| 3377 | free_irq(cy_isa_irq, card); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3378 | iounmap(cy_isa_address); |
| 3379 | continue; |
| 3380 | } |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3381 | nboard++; |
| 3382 | |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 3383 | printk(KERN_INFO "Cyclom-Y/ISA #%d: 0x%lx-0x%lx, IRQ%d found: " |
| 3384 | "%d channels starting from port %d\n", |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3385 | j + 1, (unsigned long)cy_isa_address, |
| 3386 | (unsigned long)(cy_isa_address + (CyISA_Ywin - 1)), |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 3387 | cy_isa_irq, cy_isa_nchan, cy_next_channel); |
| 3388 | |
Jiri Slaby | 734cc17 | 2012-08-07 21:47:47 +0200 | [diff] [blame] | 3389 | for (k = 0, j = cy_next_channel; |
| 3390 | j < cy_next_channel + cy_isa_nchan; j++, k++) |
| 3391 | tty_port_register_device(&card->ports[k].port, |
| 3392 | cy_serial_driver, j, NULL); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3393 | cy_next_channel += cy_isa_nchan; |
| 3394 | } |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 3395 | return nboard; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3396 | #else |
Jiri Slaby | 096dcfc | 2006-12-08 02:39:30 -0800 | [diff] [blame] | 3397 | return 0; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3398 | #endif /* CONFIG_ISA */ |
| 3399 | } /* cy_detect_isa */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3400 | |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3401 | #ifdef CONFIG_PCI |
Bill Pemberton | 9671f09 | 2012-11-19 13:21:50 -0500 | [diff] [blame] | 3402 | static inline int cyc_isfwstr(const char *str, unsigned int size) |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3403 | { |
| 3404 | unsigned int a; |
| 3405 | |
| 3406 | for (a = 0; a < size && *str; a++, str++) |
| 3407 | if (*str & 0x80) |
| 3408 | return -EINVAL; |
| 3409 | |
| 3410 | for (; a < size; a++, str++) |
| 3411 | if (*str) |
| 3412 | return -EINVAL; |
| 3413 | |
| 3414 | return 0; |
| 3415 | } |
| 3416 | |
Bill Pemberton | 9671f09 | 2012-11-19 13:21:50 -0500 | [diff] [blame] | 3417 | static inline void cyz_fpga_copy(void __iomem *fpga, const u8 *data, |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3418 | unsigned int size) |
| 3419 | { |
| 3420 | for (; size > 0; size--) { |
| 3421 | cy_writel(fpga, *data++); |
| 3422 | udelay(10); |
| 3423 | } |
| 3424 | } |
| 3425 | |
Bill Pemberton | 9671f09 | 2012-11-19 13:21:50 -0500 | [diff] [blame] | 3426 | static void plx_init(struct pci_dev *pdev, int irq, |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3427 | struct RUNTIME_9060 __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3428 | { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3429 | /* Reset PLX */ |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3430 | cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x40000000); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3431 | udelay(100L); |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3432 | cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x40000000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3433 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3434 | /* Reload Config. Registers from EEPROM */ |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3435 | cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x20000000); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3436 | udelay(100L); |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3437 | cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x20000000); |
| 3438 | |
| 3439 | /* For some yet unknown reason, once the PLX9060 reloads the EEPROM, |
| 3440 | * the IRQ is lost and, thus, we have to re-write it to the PCI config. |
| 3441 | * registers. This will remain here until we find a permanent fix. |
| 3442 | */ |
| 3443 | pci_write_config_byte(pdev, PCI_INTERRUPT_LINE, irq); |
| 3444 | } |
| 3445 | |
Bill Pemberton | 9671f09 | 2012-11-19 13:21:50 -0500 | [diff] [blame] | 3446 | static int __cyz_load_fw(const struct firmware *fw, |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3447 | const char *name, const u32 mailbox, void __iomem *base, |
| 3448 | void __iomem *fpga) |
| 3449 | { |
David Woodhouse | f61e761 | 2008-05-23 23:57:19 +0100 | [diff] [blame] | 3450 | const void *ptr = fw->data; |
| 3451 | const struct zfile_header *h = ptr; |
| 3452 | const struct zfile_config *c, *cs; |
| 3453 | const struct zfile_block *b, *bs; |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3454 | unsigned int a, tmp, len = fw->size; |
| 3455 | #define BAD_FW KERN_ERR "Bad firmware: " |
| 3456 | if (len < sizeof(*h)) { |
| 3457 | printk(BAD_FW "too short: %u<%zu\n", len, sizeof(*h)); |
| 3458 | return -EINVAL; |
| 3459 | } |
| 3460 | |
| 3461 | cs = ptr + h->config_offset; |
| 3462 | bs = ptr + h->block_offset; |
| 3463 | |
| 3464 | if ((void *)(cs + h->n_config) > ptr + len || |
| 3465 | (void *)(bs + h->n_blocks) > ptr + len) { |
| 3466 | printk(BAD_FW "too short"); |
| 3467 | return -EINVAL; |
| 3468 | } |
| 3469 | |
| 3470 | if (cyc_isfwstr(h->name, sizeof(h->name)) || |
| 3471 | cyc_isfwstr(h->date, sizeof(h->date))) { |
| 3472 | printk(BAD_FW "bad formatted header string\n"); |
| 3473 | return -EINVAL; |
| 3474 | } |
| 3475 | |
| 3476 | if (strncmp(name, h->name, sizeof(h->name))) { |
| 3477 | printk(BAD_FW "bad name '%s' (expected '%s')\n", h->name, name); |
| 3478 | return -EINVAL; |
| 3479 | } |
| 3480 | |
| 3481 | tmp = 0; |
| 3482 | for (c = cs; c < cs + h->n_config; c++) { |
| 3483 | for (a = 0; a < c->n_blocks; a++) |
| 3484 | if (c->block_list[a] > h->n_blocks) { |
| 3485 | printk(BAD_FW "bad block ref number in cfgs\n"); |
| 3486 | return -EINVAL; |
| 3487 | } |
| 3488 | if (c->mailbox == mailbox && c->function == 0) /* 0 is normal */ |
| 3489 | tmp++; |
| 3490 | } |
| 3491 | if (!tmp) { |
| 3492 | printk(BAD_FW "nothing appropriate\n"); |
| 3493 | return -EINVAL; |
| 3494 | } |
| 3495 | |
| 3496 | for (b = bs; b < bs + h->n_blocks; b++) |
| 3497 | if (b->file_offset + b->size > len) { |
| 3498 | printk(BAD_FW "bad block data offset\n"); |
| 3499 | return -EINVAL; |
| 3500 | } |
| 3501 | |
| 3502 | /* everything is OK, let's seek'n'load it */ |
| 3503 | for (c = cs; c < cs + h->n_config; c++) |
| 3504 | if (c->mailbox == mailbox && c->function == 0) |
| 3505 | break; |
| 3506 | |
| 3507 | for (a = 0; a < c->n_blocks; a++) { |
| 3508 | b = &bs[c->block_list[a]]; |
| 3509 | if (b->type == ZBLOCK_FPGA) { |
| 3510 | if (fpga != NULL) |
| 3511 | cyz_fpga_copy(fpga, ptr + b->file_offset, |
| 3512 | b->size); |
| 3513 | } else { |
| 3514 | if (base != NULL) |
| 3515 | memcpy_toio(base + b->ram_offset, |
| 3516 | ptr + b->file_offset, b->size); |
| 3517 | } |
| 3518 | } |
| 3519 | #undef BAD_FW |
| 3520 | return 0; |
| 3521 | } |
| 3522 | |
Bill Pemberton | 9671f09 | 2012-11-19 13:21:50 -0500 | [diff] [blame] | 3523 | static int cyz_load_fw(struct pci_dev *pdev, void __iomem *base_addr, |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3524 | struct RUNTIME_9060 __iomem *ctl_addr, int irq) |
| 3525 | { |
| 3526 | const struct firmware *fw; |
| 3527 | struct FIRM_ID __iomem *fid = base_addr + ID_ADDRESS; |
| 3528 | struct CUSTOM_REG __iomem *cust = base_addr; |
| 3529 | struct ZFW_CTRL __iomem *pt_zfwctrl; |
Jiri Slaby | c4923b4 | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 3530 | void __iomem *tmp; |
Jiri Slaby | 963118e | 2009-06-11 12:34:27 +0100 | [diff] [blame] | 3531 | u32 mailbox, status, nchan; |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3532 | unsigned int i; |
| 3533 | int retval; |
| 3534 | |
| 3535 | retval = request_firmware(&fw, "cyzfirm.bin", &pdev->dev); |
| 3536 | if (retval) { |
| 3537 | dev_err(&pdev->dev, "can't get firmware\n"); |
| 3538 | goto err; |
| 3539 | } |
| 3540 | |
| 3541 | /* Check whether the firmware is already loaded and running. If |
| 3542 | positive, skip this board */ |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 3543 | if (__cyz_fpga_loaded(ctl_addr) && readl(&fid->signature) == ZFIRM_ID) { |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3544 | u32 cntval = readl(base_addr + 0x190); |
| 3545 | |
| 3546 | udelay(100); |
| 3547 | if (cntval != readl(base_addr + 0x190)) { |
| 3548 | /* FW counter is working, FW is running */ |
| 3549 | dev_dbg(&pdev->dev, "Cyclades-Z FW already loaded. " |
| 3550 | "Skipping board.\n"); |
| 3551 | retval = 0; |
| 3552 | goto err_rel; |
| 3553 | } |
| 3554 | } |
| 3555 | |
| 3556 | /* start boot */ |
| 3557 | cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) & |
| 3558 | ~0x00030800UL); |
| 3559 | |
| 3560 | mailbox = readl(&ctl_addr->mail_box_0); |
| 3561 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 3562 | if (mailbox == 0 || __cyz_fpga_loaded(ctl_addr)) { |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3563 | /* stops CPU and set window to beginning of RAM */ |
| 3564 | cy_writel(&ctl_addr->loc_addr_base, WIN_CREG); |
| 3565 | cy_writel(&cust->cpu_stop, 0); |
| 3566 | cy_writel(&ctl_addr->loc_addr_base, WIN_RAM); |
| 3567 | udelay(100); |
| 3568 | } |
| 3569 | |
| 3570 | plx_init(pdev, irq, ctl_addr); |
| 3571 | |
| 3572 | if (mailbox != 0) { |
| 3573 | /* load FPGA */ |
| 3574 | retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, NULL, |
| 3575 | base_addr); |
| 3576 | if (retval) |
| 3577 | goto err_rel; |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 3578 | if (!__cyz_fpga_loaded(ctl_addr)) { |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3579 | dev_err(&pdev->dev, "fw upload successful, but fw is " |
| 3580 | "not loaded\n"); |
| 3581 | goto err_rel; |
| 3582 | } |
| 3583 | } |
| 3584 | |
| 3585 | /* stops CPU and set window to beginning of RAM */ |
| 3586 | cy_writel(&ctl_addr->loc_addr_base, WIN_CREG); |
| 3587 | cy_writel(&cust->cpu_stop, 0); |
| 3588 | cy_writel(&ctl_addr->loc_addr_base, WIN_RAM); |
| 3589 | udelay(100); |
| 3590 | |
| 3591 | /* clear memory */ |
Jiri Slaby | c4923b4 | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 3592 | for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++) |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3593 | cy_writeb(tmp, 255); |
| 3594 | if (mailbox != 0) { |
| 3595 | /* set window to last 512K of RAM */ |
| 3596 | cy_writel(&ctl_addr->loc_addr_base, WIN_RAM + RAM_SIZE); |
Jiri Slaby | c4923b4 | 2007-07-17 04:05:17 -0700 | [diff] [blame] | 3597 | for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++) |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3598 | cy_writeb(tmp, 255); |
| 3599 | /* set window to beginning of RAM */ |
| 3600 | cy_writel(&ctl_addr->loc_addr_base, WIN_RAM); |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3601 | } |
| 3602 | |
| 3603 | retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, base_addr, NULL); |
| 3604 | release_firmware(fw); |
| 3605 | if (retval) |
| 3606 | goto err; |
| 3607 | |
| 3608 | /* finish boot and start boards */ |
| 3609 | cy_writel(&ctl_addr->loc_addr_base, WIN_CREG); |
| 3610 | cy_writel(&cust->cpu_start, 0); |
| 3611 | cy_writel(&ctl_addr->loc_addr_base, WIN_RAM); |
| 3612 | i = 0; |
| 3613 | while ((status = readl(&fid->signature)) != ZFIRM_ID && i++ < 40) |
| 3614 | msleep(100); |
| 3615 | if (status != ZFIRM_ID) { |
| 3616 | if (status == ZFIRM_HLT) { |
| 3617 | dev_err(&pdev->dev, "you need an external power supply " |
| 3618 | "for this number of ports. Firmware halted and " |
| 3619 | "board reset.\n"); |
| 3620 | retval = -EIO; |
| 3621 | goto err; |
| 3622 | } |
| 3623 | dev_warn(&pdev->dev, "fid->signature = 0x%x... Waiting " |
| 3624 | "some more time\n", status); |
| 3625 | while ((status = readl(&fid->signature)) != ZFIRM_ID && |
| 3626 | i++ < 200) |
| 3627 | msleep(100); |
| 3628 | if (status != ZFIRM_ID) { |
| 3629 | dev_err(&pdev->dev, "Board not started in 20 seconds! " |
| 3630 | "Giving up. (fid->signature = 0x%x)\n", |
| 3631 | status); |
| 3632 | dev_info(&pdev->dev, "*** Warning ***: if you are " |
| 3633 | "upgrading the FW, please power cycle the " |
| 3634 | "system before loading the new FW to the " |
| 3635 | "Cyclades-Z.\n"); |
| 3636 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 3637 | if (__cyz_fpga_loaded(ctl_addr)) |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3638 | plx_init(pdev, irq, ctl_addr); |
| 3639 | |
| 3640 | retval = -EIO; |
| 3641 | goto err; |
| 3642 | } |
| 3643 | dev_dbg(&pdev->dev, "Firmware started after %d seconds.\n", |
| 3644 | i / 10); |
| 3645 | } |
| 3646 | pt_zfwctrl = base_addr + readl(&fid->zfwctrl_addr); |
| 3647 | |
| 3648 | dev_dbg(&pdev->dev, "fid=> %p, zfwctrl_addr=> %x, npt_zfwctrl=> %p\n", |
| 3649 | base_addr + ID_ADDRESS, readl(&fid->zfwctrl_addr), |
| 3650 | base_addr + readl(&fid->zfwctrl_addr)); |
| 3651 | |
Jiri Slaby | 963118e | 2009-06-11 12:34:27 +0100 | [diff] [blame] | 3652 | nchan = readl(&pt_zfwctrl->board_ctrl.n_channel); |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3653 | dev_info(&pdev->dev, "Cyclades-Z FW loaded: version = %x, ports = %u\n", |
Jiri Slaby | 963118e | 2009-06-11 12:34:27 +0100 | [diff] [blame] | 3654 | readl(&pt_zfwctrl->board_ctrl.fw_version), nchan); |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3655 | |
Jiri Slaby | 963118e | 2009-06-11 12:34:27 +0100 | [diff] [blame] | 3656 | if (nchan == 0) { |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3657 | dev_warn(&pdev->dev, "no Cyclades-Z ports were found. Please " |
| 3658 | "check the connection between the Z host card and the " |
| 3659 | "serial expanders.\n"); |
| 3660 | |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 3661 | if (__cyz_fpga_loaded(ctl_addr)) |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3662 | plx_init(pdev, irq, ctl_addr); |
| 3663 | |
| 3664 | dev_info(&pdev->dev, "Null number of ports detected. Board " |
| 3665 | "reset.\n"); |
| 3666 | retval = 0; |
| 3667 | goto err; |
| 3668 | } |
| 3669 | |
| 3670 | cy_writel(&pt_zfwctrl->board_ctrl.op_system, C_OS_LINUX); |
| 3671 | cy_writel(&pt_zfwctrl->board_ctrl.dr_version, DRIVER_VERSION); |
| 3672 | |
| 3673 | /* |
| 3674 | Early firmware failed to start looking for commands. |
| 3675 | This enables firmware interrupts for those commands. |
| 3676 | */ |
| 3677 | cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) | |
| 3678 | (1 << 17)); |
| 3679 | cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) | |
| 3680 | 0x00030800UL); |
| 3681 | |
Jiri Slaby | 963118e | 2009-06-11 12:34:27 +0100 | [diff] [blame] | 3682 | return nchan; |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3683 | err_rel: |
| 3684 | release_firmware(fw); |
| 3685 | err: |
| 3686 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3687 | } |
| 3688 | |
Bill Pemberton | 9671f09 | 2012-11-19 13:21:50 -0500 | [diff] [blame] | 3689 | static int cy_pci_probe(struct pci_dev *pdev, |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3690 | const struct pci_device_id *ent) |
| 3691 | { |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3692 | struct cyclades_card *card; |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3693 | void __iomem *addr0 = NULL, *addr2 = NULL; |
| 3694 | char *card_name = NULL; |
Jiri Slaby | 101b815 | 2009-06-11 12:30:10 +0100 | [diff] [blame] | 3695 | u32 uninitialized_var(mailbox); |
Jiri Slaby | 734cc17 | 2012-08-07 21:47:47 +0200 | [diff] [blame] | 3696 | unsigned int device_id, nchan = 0, card_no, i, j; |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3697 | unsigned char plx_ver; |
| 3698 | int retval, irq; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3699 | |
| 3700 | retval = pci_enable_device(pdev); |
| 3701 | if (retval) { |
| 3702 | dev_err(&pdev->dev, "cannot enable device\n"); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3703 | goto err; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3704 | } |
| 3705 | |
| 3706 | /* read PCI configuration area */ |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3707 | irq = pdev->irq; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3708 | device_id = pdev->device & ~PCI_DEVICE_ID_MASK; |
| 3709 | |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3710 | #if defined(__alpha__) |
| 3711 | if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo) { /* below 1M? */ |
| 3712 | dev_err(&pdev->dev, "Cyclom-Y/PCI not supported for low " |
| 3713 | "addresses on Alpha systems.\n"); |
| 3714 | retval = -EIO; |
| 3715 | goto err_dis; |
| 3716 | } |
| 3717 | #endif |
| 3718 | if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Lo) { |
| 3719 | dev_err(&pdev->dev, "Cyclades-Z/PCI not supported for low " |
| 3720 | "addresses\n"); |
| 3721 | retval = -EIO; |
| 3722 | goto err_dis; |
| 3723 | } |
| 3724 | |
| 3725 | if (pci_resource_flags(pdev, 2) & IORESOURCE_IO) { |
| 3726 | dev_warn(&pdev->dev, "PCI I/O bit incorrectly set. Ignoring " |
| 3727 | "it...\n"); |
| 3728 | pdev->resource[2].flags &= ~IORESOURCE_IO; |
| 3729 | } |
| 3730 | |
| 3731 | retval = pci_request_regions(pdev, "cyclades"); |
| 3732 | if (retval) { |
| 3733 | dev_err(&pdev->dev, "failed to reserve resources\n"); |
| 3734 | goto err_dis; |
| 3735 | } |
| 3736 | |
| 3737 | retval = -EIO; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3738 | if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo || |
| 3739 | device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) { |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3740 | card_name = "Cyclom-Y"; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3741 | |
Jiri Slaby | 24e6fd4 | 2008-10-13 10:34:09 +0100 | [diff] [blame] | 3742 | addr0 = ioremap_nocache(pci_resource_start(pdev, 0), |
| 3743 | CyPCI_Yctl); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3744 | if (addr0 == NULL) { |
| 3745 | dev_err(&pdev->dev, "can't remap ctl region\n"); |
| 3746 | goto err_reg; |
| 3747 | } |
Jiri Slaby | 24e6fd4 | 2008-10-13 10:34:09 +0100 | [diff] [blame] | 3748 | addr2 = ioremap_nocache(pci_resource_start(pdev, 2), |
| 3749 | CyPCI_Ywin); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3750 | if (addr2 == NULL) { |
| 3751 | dev_err(&pdev->dev, "can't remap base region\n"); |
| 3752 | goto err_unmap; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3753 | } |
| 3754 | |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3755 | nchan = CyPORTS_PER_CHIP * cyy_init_card(addr2, 1); |
| 3756 | if (nchan == 0) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 3757 | dev_err(&pdev->dev, "Cyclom-Y PCI host card with no " |
| 3758 | "Serial-Modules\n"); |
Andrew Morton | c847d47 | 2009-01-02 13:50:07 +0000 | [diff] [blame] | 3759 | goto err_unmap; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3760 | } |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3761 | } else if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Hi) { |
| 3762 | struct RUNTIME_9060 __iomem *ctl_addr; |
| 3763 | |
Jiri Slaby | 24e6fd4 | 2008-10-13 10:34:09 +0100 | [diff] [blame] | 3764 | ctl_addr = addr0 = ioremap_nocache(pci_resource_start(pdev, 0), |
| 3765 | CyPCI_Zctl); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3766 | if (addr0 == NULL) { |
| 3767 | dev_err(&pdev->dev, "can't remap ctl region\n"); |
| 3768 | goto err_reg; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3769 | } |
| 3770 | |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3771 | /* Disable interrupts on the PLX before resetting it */ |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 3772 | cy_writew(&ctl_addr->intr_ctrl_stat, |
| 3773 | readw(&ctl_addr->intr_ctrl_stat) & ~0x0900); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3774 | |
Jiri Slaby | 054f5b0 | 2007-07-17 04:05:16 -0700 | [diff] [blame] | 3775 | plx_init(pdev, irq, addr0); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3776 | |
Jiri Slaby | 101b815 | 2009-06-11 12:30:10 +0100 | [diff] [blame] | 3777 | mailbox = readl(&ctl_addr->mail_box_0); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3778 | |
Jiri Slaby | 24e6fd4 | 2008-10-13 10:34:09 +0100 | [diff] [blame] | 3779 | addr2 = ioremap_nocache(pci_resource_start(pdev, 2), |
| 3780 | mailbox == ZE_V1 ? CyPCI_Ze_win : CyPCI_Zwin); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3781 | if (addr2 == NULL) { |
| 3782 | dev_err(&pdev->dev, "can't remap base region\n"); |
| 3783 | goto err_unmap; |
| 3784 | } |
| 3785 | |
| 3786 | if (mailbox == ZE_V1) { |
| 3787 | card_name = "Cyclades-Ze"; |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3788 | } else { |
| 3789 | card_name = "Cyclades-8Zo"; |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3790 | #ifdef CY_PCI_DEBUG |
| 3791 | if (mailbox == ZO_V1) { |
| 3792 | cy_writel(&ctl_addr->loc_addr_base, WIN_CREG); |
| 3793 | dev_info(&pdev->dev, "Cyclades-8Zo/PCI: FPGA " |
| 3794 | "id %lx, ver %lx\n", (ulong)(0xff & |
| 3795 | readl(&((struct CUSTOM_REG *)addr2)-> |
| 3796 | fpga_id)), (ulong)(0xff & |
| 3797 | readl(&((struct CUSTOM_REG *)addr2)-> |
| 3798 | fpga_version))); |
| 3799 | cy_writel(&ctl_addr->loc_addr_base, WIN_RAM); |
| 3800 | } else { |
| 3801 | dev_info(&pdev->dev, "Cyclades-Z/PCI: New " |
| 3802 | "Cyclades-Z board. FPGA not loaded\n"); |
| 3803 | } |
| 3804 | #endif |
| 3805 | /* The following clears the firmware id word. This |
| 3806 | ensures that the driver will not attempt to talk to |
| 3807 | the board until it has been properly initialized. |
| 3808 | */ |
| 3809 | if ((mailbox == ZO_V1) || (mailbox == ZO_V2)) |
| 3810 | cy_writel(addr2 + ID_ADDRESS, 0L); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3811 | } |
Jiri Slaby | ace08c3 | 2009-06-11 12:20:38 +0100 | [diff] [blame] | 3812 | |
| 3813 | retval = cyz_load_fw(pdev, addr2, addr0, irq); |
Jiri Slaby | 963118e | 2009-06-11 12:34:27 +0100 | [diff] [blame] | 3814 | if (retval <= 0) |
Jiri Slaby | ace08c3 | 2009-06-11 12:20:38 +0100 | [diff] [blame] | 3815 | goto err_unmap; |
Jiri Slaby | 963118e | 2009-06-11 12:34:27 +0100 | [diff] [blame] | 3816 | nchan = retval; |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3817 | } |
| 3818 | |
| 3819 | if ((cy_next_channel + nchan) > NR_PORTS) { |
| 3820 | dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no " |
| 3821 | "channels are available. Change NR_PORTS in " |
| 3822 | "cyclades.c and recompile kernel.\n"); |
| 3823 | goto err_unmap; |
| 3824 | } |
| 3825 | /* fill the next cy_card structure available */ |
| 3826 | for (card_no = 0; card_no < NR_CARDS; card_no++) { |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3827 | card = &cy_card[card_no]; |
| 3828 | if (card->base_addr == NULL) |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3829 | break; |
| 3830 | } |
| 3831 | if (card_no == NR_CARDS) { /* no more cy_cards available */ |
| 3832 | dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no " |
| 3833 | "more cards can be used. Change NR_CARDS in " |
| 3834 | "cyclades.c and recompile kernel.\n"); |
| 3835 | goto err_unmap; |
| 3836 | } |
| 3837 | |
| 3838 | if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo || |
| 3839 | device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) { |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3840 | /* allocate IRQ */ |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3841 | retval = request_irq(irq, cyy_interrupt, |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3842 | IRQF_SHARED, "Cyclom-Y", card); |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3843 | if (retval) { |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 3844 | dev_err(&pdev->dev, "could not allocate IRQ\n"); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3845 | goto err_unmap; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3846 | } |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3847 | card->num_chips = nchan / CyPORTS_PER_CHIP; |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3848 | } else { |
Jiri Slaby | f0eefdc | 2009-09-19 13:13:13 -0700 | [diff] [blame] | 3849 | struct FIRM_ID __iomem *firm_id = addr2 + ID_ADDRESS; |
| 3850 | struct ZFW_CTRL __iomem *zfw_ctrl; |
| 3851 | |
| 3852 | zfw_ctrl = addr2 + (readl(&firm_id->zfwctrl_addr) & 0xfffff); |
| 3853 | |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3854 | card->hw_ver = mailbox; |
| 3855 | card->num_chips = (unsigned int)-1; |
| 3856 | card->board_ctrl = &zfw_ctrl->board_ctrl; |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3857 | #ifdef CONFIG_CYZ_INTR |
| 3858 | /* allocate IRQ only if board has an IRQ */ |
| 3859 | if (irq != 0 && irq != 255) { |
| 3860 | retval = request_irq(irq, cyz_interrupt, |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3861 | IRQF_SHARED, "Cyclades-Z", card); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3862 | if (retval) { |
| 3863 | dev_err(&pdev->dev, "could not allocate IRQ\n"); |
| 3864 | goto err_unmap; |
| 3865 | } |
| 3866 | } |
| 3867 | #endif /* CONFIG_CYZ_INTR */ |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3868 | } |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3869 | |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3870 | /* set cy_card */ |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3871 | card->base_addr = addr2; |
| 3872 | card->ctl_addr.p9050 = addr0; |
| 3873 | card->irq = irq; |
| 3874 | card->bus_index = 1; |
| 3875 | card->first_line = cy_next_channel; |
| 3876 | card->nports = nchan; |
| 3877 | retval = cy_init_card(card); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3878 | if (retval) |
| 3879 | goto err_null; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3880 | |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3881 | pci_set_drvdata(pdev, card); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3882 | |
| 3883 | if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo || |
| 3884 | device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) { |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3885 | /* enable interrupts in the PCI interface */ |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3886 | plx_ver = readb(addr2 + CyPLX_VER) & 0x0f; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3887 | switch (plx_ver) { |
| 3888 | case PLX_9050: |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3889 | cy_writeb(addr0 + 0x4c, 0x43); |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3890 | break; |
| 3891 | |
| 3892 | case PLX_9060: |
| 3893 | case PLX_9080: |
| 3894 | default: /* Old boards, use PLX_9060 */ |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 3895 | { |
| 3896 | struct RUNTIME_9060 __iomem *ctl_addr = addr0; |
| 3897 | plx_init(pdev, irq, ctl_addr); |
| 3898 | cy_writew(&ctl_addr->intr_ctrl_stat, |
| 3899 | readw(&ctl_addr->intr_ctrl_stat) | 0x0900); |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3900 | break; |
| 3901 | } |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 3902 | } |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3903 | } |
| 3904 | |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3905 | dev_info(&pdev->dev, "%s/PCI #%d found: %d channels starting from " |
| 3906 | "port %d.\n", card_name, card_no + 1, nchan, cy_next_channel); |
Jiri Slaby | 734cc17 | 2012-08-07 21:47:47 +0200 | [diff] [blame] | 3907 | for (j = 0, i = cy_next_channel; i < cy_next_channel + nchan; i++, j++) |
| 3908 | tty_port_register_device(&card->ports[j].port, |
| 3909 | cy_serial_driver, i, &pdev->dev); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3910 | cy_next_channel += nchan; |
| 3911 | |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3912 | return 0; |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3913 | err_null: |
Jiri Slaby | 718c4ca | 2012-06-04 13:35:15 +0200 | [diff] [blame] | 3914 | card->base_addr = NULL; |
| 3915 | free_irq(irq, card); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3916 | err_unmap: |
Jiri Slaby | 24e6fd4 | 2008-10-13 10:34:09 +0100 | [diff] [blame] | 3917 | iounmap(addr0); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3918 | if (addr2) |
Jiri Slaby | 24e6fd4 | 2008-10-13 10:34:09 +0100 | [diff] [blame] | 3919 | iounmap(addr2); |
Jiri Slaby | 3137553 | 2007-05-08 00:37:04 -0700 | [diff] [blame] | 3920 | err_reg: |
| 3921 | pci_release_regions(pdev); |
| 3922 | err_dis: |
| 3923 | pci_disable_device(pdev); |
| 3924 | err: |
| 3925 | return retval; |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3926 | } |
Jiri Slaby | 58936d8 | 2007-05-08 00:36:13 -0700 | [diff] [blame] | 3927 | |
Bill Pemberton | ae8d8a1 | 2012-11-19 13:26:18 -0500 | [diff] [blame] | 3928 | static void cy_pci_remove(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3929 | { |
Jiri Slaby | 38d0909 | 2007-05-08 00:36:10 -0700 | [diff] [blame] | 3930 | struct cyclades_card *cinfo = pci_get_drvdata(pdev); |
Jiri Slaby | 191c5f1 | 2012-11-15 09:49:56 +0100 | [diff] [blame] | 3931 | unsigned int i, channel; |
Jiri Slaby | 38d0909 | 2007-05-08 00:36:10 -0700 | [diff] [blame] | 3932 | |
Jiri Slaby | 85c93fa | 2007-05-08 00:36:23 -0700 | [diff] [blame] | 3933 | /* non-Z with old PLX */ |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 3934 | if (!cy_is_Z(cinfo) && (readb(cinfo->base_addr + CyPLX_VER) & 0x0f) == |
Jiri Slaby | c2ad4c7 | 2007-05-08 00:36:32 -0700 | [diff] [blame] | 3935 | PLX_9050) |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 3936 | cy_writeb(cinfo->ctl_addr.p9050 + 0x4c, 0); |
Jiri Slaby | 85c93fa | 2007-05-08 00:36:23 -0700 | [diff] [blame] | 3937 | else |
| 3938 | #ifndef CONFIG_CYZ_INTR |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 3939 | if (!cy_is_Z(cinfo)) |
Jiri Slaby | 85c93fa | 2007-05-08 00:36:23 -0700 | [diff] [blame] | 3940 | #endif |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 3941 | cy_writew(&cinfo->ctl_addr.p9060->intr_ctrl_stat, |
| 3942 | readw(&cinfo->ctl_addr.p9060->intr_ctrl_stat) & |
| 3943 | ~0x0900); |
Jiri Slaby | 85c93fa | 2007-05-08 00:36:23 -0700 | [diff] [blame] | 3944 | |
Jiri Slaby | 24e6fd4 | 2008-10-13 10:34:09 +0100 | [diff] [blame] | 3945 | iounmap(cinfo->base_addr); |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 3946 | if (cinfo->ctl_addr.p9050) |
| 3947 | iounmap(cinfo->ctl_addr.p9050); |
Jiri Slaby | 38d0909 | 2007-05-08 00:36:10 -0700 | [diff] [blame] | 3948 | if (cinfo->irq |
| 3949 | #ifndef CONFIG_CYZ_INTR |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 3950 | && !cy_is_Z(cinfo) |
Jiri Slaby | 38d0909 | 2007-05-08 00:36:10 -0700 | [diff] [blame] | 3951 | #endif /* CONFIG_CYZ_INTR */ |
| 3952 | ) |
| 3953 | free_irq(cinfo->irq, cinfo); |
| 3954 | pci_release_regions(pdev); |
| 3955 | |
| 3956 | cinfo->base_addr = NULL; |
Jiri Slaby | 191c5f1 | 2012-11-15 09:49:56 +0100 | [diff] [blame] | 3957 | for (channel = 0, i = cinfo->first_line; i < cinfo->first_line + |
| 3958 | cinfo->nports; i++, channel++) { |
Jiri Slaby | 6ad1ccc | 2007-05-08 00:36:22 -0700 | [diff] [blame] | 3959 | tty_unregister_device(cy_serial_driver, i); |
Jiri Slaby | 191c5f1 | 2012-11-15 09:49:56 +0100 | [diff] [blame] | 3960 | tty_port_destroy(&cinfo->ports[channel].port); |
| 3961 | } |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 3962 | cinfo->nports = 0; |
| 3963 | kfree(cinfo->ports); |
Jiri Slaby | 38d0909 | 2007-05-08 00:36:10 -0700 | [diff] [blame] | 3964 | } |
| 3965 | |
Jiri Slaby | 6747cd9 | 2007-05-08 00:36:34 -0700 | [diff] [blame] | 3966 | static struct pci_driver cy_pci_driver = { |
| 3967 | .name = "cyclades", |
| 3968 | .id_table = cy_pci_dev_id, |
| 3969 | .probe = cy_pci_probe, |
Bill Pemberton | 91116cb | 2012-11-19 13:21:06 -0500 | [diff] [blame] | 3970 | .remove = cy_pci_remove |
Jiri Slaby | 6747cd9 | 2007-05-08 00:36:34 -0700 | [diff] [blame] | 3971 | }; |
| 3972 | #endif |
| 3973 | |
Alexey Dobriyan | 444697d | 2009-03-31 15:19:15 -0700 | [diff] [blame] | 3974 | static int cyclades_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3975 | { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3976 | struct cyclades_port *info; |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 3977 | unsigned int i, j; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3978 | __u32 cur_jifs = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3979 | |
Alexey Dobriyan | 444697d | 2009-03-31 15:19:15 -0700 | [diff] [blame] | 3980 | seq_puts(m, "Dev TimeOpen BytesOut IdleOut BytesIn " |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3981 | "IdleIn Overruns Ldisc\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3982 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3983 | /* Output one line for each known port */ |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 3984 | for (i = 0; i < NR_CARDS; i++) |
| 3985 | for (j = 0; j < cy_card[i].nports; j++) { |
| 3986 | info = &cy_card[i].ports[j]; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 3987 | |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 3988 | if (info->port.count) { |
| 3989 | /* XXX is the ldisc num worth this? */ |
| 3990 | struct tty_struct *tty; |
| 3991 | struct tty_ldisc *ld; |
| 3992 | int num = 0; |
| 3993 | tty = tty_port_tty_get(&info->port); |
| 3994 | if (tty) { |
| 3995 | ld = tty_ldisc_ref(tty); |
| 3996 | if (ld) { |
| 3997 | num = ld->ops->num; |
| 3998 | tty_ldisc_deref(ld); |
| 3999 | } |
| 4000 | tty_kref_put(tty); |
| 4001 | } |
Alexey Dobriyan | 444697d | 2009-03-31 15:19:15 -0700 | [diff] [blame] | 4002 | seq_printf(m, "%3d %8lu %10lu %8lu " |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 4003 | "%10lu %8lu %9lu %6d\n", info->line, |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 4004 | (cur_jifs - info->idle_stats.in_use) / |
| 4005 | HZ, info->idle_stats.xmit_bytes, |
| 4006 | (cur_jifs - info->idle_stats.xmit_idle)/ |
| 4007 | HZ, info->idle_stats.recv_bytes, |
| 4008 | (cur_jifs - info->idle_stats.recv_idle)/ |
| 4009 | HZ, info->idle_stats.overruns, |
Jiri Slaby | d13549f | 2009-09-19 13:13:12 -0700 | [diff] [blame] | 4010 | num); |
| 4011 | } else |
Alexey Dobriyan | 444697d | 2009-03-31 15:19:15 -0700 | [diff] [blame] | 4012 | seq_printf(m, "%3d %8lu %10lu %8lu " |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 4013 | "%10lu %8lu %9lu %6ld\n", |
| 4014 | info->line, 0L, 0L, 0L, 0L, 0L, 0L, 0L); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4015 | } |
Alexey Dobriyan | 444697d | 2009-03-31 15:19:15 -0700 | [diff] [blame] | 4016 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4017 | } |
| 4018 | |
Alexey Dobriyan | 444697d | 2009-03-31 15:19:15 -0700 | [diff] [blame] | 4019 | static int cyclades_proc_open(struct inode *inode, struct file *file) |
| 4020 | { |
| 4021 | return single_open(file, cyclades_proc_show, NULL); |
| 4022 | } |
| 4023 | |
| 4024 | static const struct file_operations cyclades_proc_fops = { |
| 4025 | .owner = THIS_MODULE, |
| 4026 | .open = cyclades_proc_open, |
| 4027 | .read = seq_read, |
| 4028 | .llseek = seq_lseek, |
| 4029 | .release = single_release, |
| 4030 | }; |
| 4031 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4032 | /* The serial driver boot-time initialization code! |
| 4033 | Hardware I/O ports are mapped to character special devices on a |
| 4034 | first found, first allocated manner. That is, this code searches |
| 4035 | for Cyclom cards in the system. As each is found, it is probed |
| 4036 | to discover how many chips (and thus how many ports) are present. |
| 4037 | These ports are mapped to the tty ports 32 and upward in monotonic |
| 4038 | fashion. If an 8-port card is replaced with a 16-port card, the |
| 4039 | port mapping on a following card will shift. |
| 4040 | |
| 4041 | This approach is different from what is used in the other serial |
| 4042 | device driver because the Cyclom is more properly a multiplexer, |
| 4043 | not just an aggregation of serial ports on one card. |
| 4044 | |
| 4045 | If there are more cards with more ports than have been |
| 4046 | statically allocated above, a warning is printed and the |
| 4047 | extra ports are ignored. |
| 4048 | */ |
| 4049 | |
Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 4050 | static const struct tty_operations cy_ops = { |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4051 | .open = cy_open, |
| 4052 | .close = cy_close, |
| 4053 | .write = cy_write, |
| 4054 | .put_char = cy_put_char, |
| 4055 | .flush_chars = cy_flush_chars, |
| 4056 | .write_room = cy_write_room, |
| 4057 | .chars_in_buffer = cy_chars_in_buffer, |
| 4058 | .flush_buffer = cy_flush_buffer, |
| 4059 | .ioctl = cy_ioctl, |
| 4060 | .throttle = cy_throttle, |
| 4061 | .unthrottle = cy_unthrottle, |
| 4062 | .set_termios = cy_set_termios, |
| 4063 | .stop = cy_stop, |
| 4064 | .start = cy_start, |
| 4065 | .hangup = cy_hangup, |
| 4066 | .break_ctl = cy_break, |
| 4067 | .wait_until_sent = cy_wait_until_sent, |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4068 | .tiocmget = cy_tiocmget, |
| 4069 | .tiocmset = cy_tiocmset, |
Alan Cox | 0587102 | 2010-09-16 18:21:52 +0100 | [diff] [blame] | 4070 | .get_icount = cy_get_icount, |
Alexey Dobriyan | 444697d | 2009-03-31 15:19:15 -0700 | [diff] [blame] | 4071 | .proc_fops = &cyclades_proc_fops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4072 | }; |
| 4073 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4074 | static int __init cy_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4075 | { |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 4076 | unsigned int nboards; |
Jiri Slaby | 9dacf3b | 2007-05-08 00:36:20 -0700 | [diff] [blame] | 4077 | int retval = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4078 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4079 | cy_serial_driver = alloc_tty_driver(NR_PORTS); |
| 4080 | if (!cy_serial_driver) |
Jiri Slaby | 9dacf3b | 2007-05-08 00:36:20 -0700 | [diff] [blame] | 4081 | goto err; |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 4082 | |
Michal Marek | 64a14b5 | 2011-04-01 12:41:20 +0200 | [diff] [blame] | 4083 | printk(KERN_INFO "Cyclades driver " CY_VERSION "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4084 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4085 | /* Initialize the tty_driver structure */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4086 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4087 | cy_serial_driver->driver_name = "cyclades"; |
| 4088 | cy_serial_driver->name = "ttyC"; |
| 4089 | cy_serial_driver->major = CYCLADES_MAJOR; |
| 4090 | cy_serial_driver->minor_start = 0; |
| 4091 | cy_serial_driver->type = TTY_DRIVER_TYPE_SERIAL; |
| 4092 | cy_serial_driver->subtype = SERIAL_TYPE_NORMAL; |
| 4093 | cy_serial_driver->init_termios = tty_std_termios; |
| 4094 | cy_serial_driver->init_termios.c_cflag = |
| 4095 | B9600 | CS8 | CREAD | HUPCL | CLOCAL; |
Jiri Slaby | 6ad1ccc | 2007-05-08 00:36:22 -0700 | [diff] [blame] | 4096 | cy_serial_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4097 | tty_set_operations(cy_serial_driver, &cy_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4098 | |
Jiri Slaby | 9dacf3b | 2007-05-08 00:36:20 -0700 | [diff] [blame] | 4099 | retval = tty_register_driver(cy_serial_driver); |
| 4100 | if (retval) { |
| 4101 | printk(KERN_ERR "Couldn't register Cyclades serial driver\n"); |
| 4102 | goto err_frtty; |
| 4103 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4104 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4105 | /* the code below is responsible to find the boards. Each different |
| 4106 | type of board has its own detection routine. If a board is found, |
| 4107 | the next cy_card structure available is set by the detection |
| 4108 | routine. These functions are responsible for checking the |
| 4109 | availability of cy_card and cy_port data structures and updating |
| 4110 | the cy_next_channel. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4111 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4112 | /* look for isa boards */ |
Jiri Slaby | 14a55a6 | 2007-05-08 00:36:18 -0700 | [diff] [blame] | 4113 | nboards = cy_detect_isa(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4114 | |
Jiri Slaby | 6747cd9 | 2007-05-08 00:36:34 -0700 | [diff] [blame] | 4115 | #ifdef CONFIG_PCI |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4116 | /* look for pci boards */ |
Jiri Slaby | 6747cd9 | 2007-05-08 00:36:34 -0700 | [diff] [blame] | 4117 | retval = pci_register_driver(&cy_pci_driver); |
Jesper Juhl | d941ea7 | 2007-10-18 03:06:23 -0700 | [diff] [blame] | 4118 | if (retval && !nboards) { |
| 4119 | tty_unregister_driver(cy_serial_driver); |
| 4120 | goto err_frtty; |
| 4121 | } |
Jiri Slaby | 6747cd9 | 2007-05-08 00:36:34 -0700 | [diff] [blame] | 4122 | #endif |
Jiri Slaby | 9dacf3b | 2007-05-08 00:36:20 -0700 | [diff] [blame] | 4123 | |
| 4124 | return 0; |
Jiri Slaby | 9dacf3b | 2007-05-08 00:36:20 -0700 | [diff] [blame] | 4125 | err_frtty: |
| 4126 | put_tty_driver(cy_serial_driver); |
| 4127 | err: |
| 4128 | return retval; |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4129 | } /* cy_init */ |
| 4130 | |
| 4131 | static void __exit cy_cleanup_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4132 | { |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 4133 | struct cyclades_card *card; |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 4134 | unsigned int i, e1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4135 | |
| 4136 | #ifndef CONFIG_CYZ_INTR |
Jiri Slaby | b705090 | 2007-05-08 00:35:48 -0700 | [diff] [blame] | 4137 | del_timer_sync(&cyz_timerlist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4138 | #endif /* CONFIG_CYZ_INTR */ |
| 4139 | |
Alan Cox | 15ed6cc | 2008-04-30 00:53:55 -0700 | [diff] [blame] | 4140 | e1 = tty_unregister_driver(cy_serial_driver); |
| 4141 | if (e1) |
Jiri Slaby | 2171919 | 2007-05-08 00:36:42 -0700 | [diff] [blame] | 4142 | printk(KERN_ERR "failed to unregister Cyclades serial " |
| 4143 | "driver(%d)\n", e1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4144 | |
Jiri Slaby | 6747cd9 | 2007-05-08 00:36:34 -0700 | [diff] [blame] | 4145 | #ifdef CONFIG_PCI |
| 4146 | pci_unregister_driver(&cy_pci_driver); |
| 4147 | #endif |
| 4148 | |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4149 | for (i = 0; i < NR_CARDS; i++) { |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 4150 | card = &cy_card[i]; |
| 4151 | if (card->base_addr) { |
Jiri Slaby | 85c93fa | 2007-05-08 00:36:23 -0700 | [diff] [blame] | 4152 | /* clear interrupt */ |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 4153 | cy_writeb(card->base_addr + Cy_ClrIntr, 0); |
| 4154 | iounmap(card->base_addr); |
Jiri Slaby | 97e87f8 | 2009-06-11 12:29:27 +0100 | [diff] [blame] | 4155 | if (card->ctl_addr.p9050) |
| 4156 | iounmap(card->ctl_addr.p9050); |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 4157 | if (card->irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4158 | #ifndef CONFIG_CYZ_INTR |
Jiri Slaby | 2693f48 | 2009-06-11 12:31:06 +0100 | [diff] [blame] | 4159 | && !cy_is_Z(card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4160 | #endif /* CONFIG_CYZ_INTR */ |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4161 | ) |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 4162 | free_irq(card->irq, card); |
Jiri Slaby | 65f76a8 | 2007-10-18 03:06:22 -0700 | [diff] [blame] | 4163 | for (e1 = card->first_line; e1 < card->first_line + |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 4164 | card->nports; e1++) |
Jiri Slaby | 6ad1ccc | 2007-05-08 00:36:22 -0700 | [diff] [blame] | 4165 | tty_unregister_device(cy_serial_driver, e1); |
Jiri Slaby | dd025c0 | 2007-05-08 00:37:02 -0700 | [diff] [blame] | 4166 | kfree(card->ports); |
Jiri Slaby | 02f1175 | 2006-12-08 02:39:28 -0800 | [diff] [blame] | 4167 | } |
| 4168 | } |
Jiri Slaby | f2462bf | 2007-05-08 00:37:01 -0700 | [diff] [blame] | 4169 | |
| 4170 | put_tty_driver(cy_serial_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4171 | } /* cy_cleanup_module */ |
| 4172 | |
| 4173 | module_init(cy_init); |
| 4174 | module_exit(cy_cleanup_module); |
| 4175 | |
| 4176 | MODULE_LICENSE("GPL"); |
Jiri Slaby | c8e1693 | 2007-05-08 00:37:05 -0700 | [diff] [blame] | 4177 | MODULE_VERSION(CY_VERSION); |
Scott James Remnant | 9f56fad7 | 2009-04-06 17:33:04 +0100 | [diff] [blame] | 4178 | MODULE_ALIAS_CHARDEV_MAJOR(CYCLADES_MAJOR); |
Ben Hutchings | e6c4ef9 | 2010-01-13 23:34:18 +0000 | [diff] [blame] | 4179 | MODULE_FIRMWARE("cyzfirm.bin"); |