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