blob: 27aad94223321718f4d86f5847f0554dad4011cc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#undef BLOCKMOVE
2#define Z_WAKE
3#undef Z_EXT_CHARS_IN_BUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
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 Torvalds1da177e2005-04-16 15:20:36 -070013 *
Jiri Slabyebdb5132009-09-19 13:13:14 -070014 * Copyright (C) 2007-2009 Jiri Slaby <jirislaby@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
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 Slabyc8e16932007-05-08 00:37:05 -070020 * Converted to pci probing and cleaned up by Jiri Slaby.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Jiri Slabyebdb5132009-09-19 13:13:14 -070024#define CY_VERSION "2.6"
Jiri Slaby096dcfc2006-12-08 02:39:30 -080025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/* 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 Slaby02f11752006-12-08 02:39:28 -080030#define NR_CARDS 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
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 Slaby02f11752006-12-08 02:39:28 -080037#define NR_PORTS 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#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 Torvalds1da177e2005-04-16 15:20:36 -070056/*
Alan Cox15ed6cc2008-04-30 00:53:55 -070057 * Include section
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#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 Cox33f0f882006-01-09 20:54:13 -080066#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/serial.h>
68#include <linux/major.h>
69#include <linux/string.h>
70#include <linux/fcntl.h>
71#include <linux/ptrace.h>
72#include <linux/cyclades.h>
73#include <linux/mm.h>
74#include <linux/ioport.h>
75#include <linux/init.h>
76#include <linux/delay.h>
77#include <linux/spinlock.h>
78#include <linux/bitops.h>
Jiri Slaby054f5b02007-07-17 04:05:16 -070079#include <linux/firmware.h>
Scott James Remnant9f56fad2009-04-06 17:33:04 +010080#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090081#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Alan Cox15ed6cc2008-04-30 00:53:55 -070083#include <linux/io.h>
Alan Cox15ed6cc2008-04-30 00:53:55 -070084#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include <linux/kernel.h>
87#include <linux/pci.h>
88
89#include <linux/stat.h>
90#include <linux/proc_fs.h>
Alexey Dobriyan444697d2009-03-31 15:19:15 -070091#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Jiri Slaby02f11752006-12-08 02:39:28 -080093static void cy_send_xchar(struct tty_struct *tty, char ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#ifndef SERIAL_XMIT_SIZE
96#define SERIAL_XMIT_SIZE (min(PAGE_SIZE, 4096))
97#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#define STD_COM_FLAGS (0)
100
Jiri Slaby054f5b02007-07-17 04:05:16 -0700101/* firmware stuff */
102#define ZL_MAX_BLOCKS 16
103#define DRIVER_VERSION 0x02010203
104#define RAM_SIZE 0x80000
105
Jiri Slaby054f5b02007-07-17 04:05:16 -0700106enum zblock_type {
107 ZBLOCK_PRG = 0,
108 ZBLOCK_FPGA = 1
109};
110
111struct 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
122struct 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
130struct zfile_block {
131 u32 type;
132 u32 file_offset;
133 u32 ram_offset;
134 u32 size;
135} __attribute__ ((packed));
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static 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 Torvalds1da177e2005-04-16 15:20:36 -0700145*/
146
147static unsigned int cy_isa_addresses[] = {
Jiri Slaby02f11752006-12-08 02:39:28 -0800148 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 Torvalds1da177e2005-04-16 15:20:36 -0700157};
Jiri Slaby02f11752006-12-08 02:39:28 -0800158
Tobias Klauserfe971072006-01-09 20:54:02 -0800159#define NR_ISA_ADDRS ARRAY_SIZE(cy_isa_addresses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Jiri Slaby3046d502007-05-08 00:36:46 -0700161static long maddr[NR_CARDS];
162static int irq[NR_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164module_param_array(maddr, long, NULL, 0);
165module_param_array(irq, int, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Jiri Slaby02f11752006-12-08 02:39:28 -0800167#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169/* This is the per-card data structure containing address, irq, number of
170 channels, etc. This driver supports a maximum of NR_CARDS cards.
171*/
172static struct cyclades_card cy_card[NR_CARDS];
173
Jiri Slaby02f11752006-12-08 02:39:28 -0800174static int cy_next_channel; /* next minor available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * This is used to look up the divisor speeds and the timeouts
178 * We're normally limited to 15 distinct baud rates. The extra
Alan Cox77451e52008-07-16 21:57:02 +0100179 * are accessed via settings in info->port.flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
181 * 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
182 * HI VHI
183 * 20
184 */
Jiri Slabyebdb5132009-09-19 13:13:14 -0700185static const int baud_table[] = {
Jiri Slaby02f11752006-12-08 02:39:28 -0800186 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200,
187 1800, 2400, 4800, 9600, 19200, 38400, 57600, 76800, 115200, 150000,
188 230400, 0
189};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Jiri Slabyebdb5132009-09-19 13:13:14 -0700191static const char baud_co_25[] = { /* 25 MHz clock option table */
Jiri Slaby02f11752006-12-08 02:39:28 -0800192 /* value => 00 01 02 03 04 */
193 /* divide by 8 32 128 512 2048 */
194 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x02,
195 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
196};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Jiri Slabyebdb5132009-09-19 13:13:14 -0700198static const char baud_bpr_25[] = { /* 25 MHz baud rate period table */
Jiri Slaby02f11752006-12-08 02:39:28 -0800199 0x00, 0xf5, 0xa3, 0x6f, 0x5c, 0x51, 0xf5, 0xa3, 0x51, 0xa3,
200 0x6d, 0x51, 0xa3, 0x51, 0xa3, 0x51, 0x36, 0x29, 0x1b, 0x15
201};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Jiri Slabyebdb5132009-09-19 13:13:14 -0700203static const char baud_co_60[] = { /* 60 MHz clock option table (CD1400 J) */
Jiri Slaby02f11752006-12-08 02:39:28 -0800204 /* value => 00 01 02 03 04 */
205 /* divide by 8 32 128 512 2048 */
206 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03,
207 0x03, 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
208 0x00
209};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Jiri Slabyebdb5132009-09-19 13:13:14 -0700211static const char baud_bpr_60[] = { /* 60 MHz baud rate period table (CD1400 J) */
Jiri Slaby02f11752006-12-08 02:39:28 -0800212 0x00, 0x82, 0x21, 0xff, 0xdb, 0xc3, 0x92, 0x62, 0xc3, 0x62,
213 0x41, 0xc3, 0x62, 0xc3, 0x62, 0xc3, 0x82, 0x62, 0x41, 0x32,
214 0x21
215};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Jiri Slabyebdb5132009-09-19 13:13:14 -0700217static const char baud_cor3[] = { /* receive threshold */
Jiri Slaby02f11752006-12-08 02:39:28 -0800218 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
219 0x0a, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x07,
220 0x07
221};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223/*
224 * The Cyclades driver implements HW flow control as any serial driver.
Alan Cox15ed6cc2008-04-30 00:53:55 -0700225 * The cyclades_port structure member rflow and the vector rflow_thr
226 * allows us to take advantage of a special feature in the CD1400 to avoid
227 * data loss even when the system interrupt latency is too high. These flags
228 * are to be used only with very special applications. Setting these flags
229 * requires the use of a special cable (DTR and RTS reversed). In the new
230 * CD1400-based boards (rev. 6.00 or later), there is no need for special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 * cables.
232 */
233
Jiri Slabyebdb5132009-09-19 13:13:14 -0700234static const char rflow_thr[] = { /* rflow threshold */
Jiri Slaby02f11752006-12-08 02:39:28 -0800235 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
236 0x00, 0x00, 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
237 0x0a
238};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240/* The Cyclom-Ye has placed the sequential chips in non-sequential
241 * address order. This look-up table overcomes that problem.
242 */
Jiri Slabyf0eefdc2009-09-19 13:13:13 -0700243static const unsigned int cy_chip_offset[] = { 0x0000,
Jiri Slaby02f11752006-12-08 02:39:28 -0800244 0x0400,
245 0x0800,
246 0x0C00,
247 0x0200,
248 0x0600,
249 0x0A00,
250 0x0E00
251};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253/* PCI related definitions */
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255#ifdef CONFIG_PCI
Jiri Slabyebdb5132009-09-19 13:13:14 -0700256static const struct pci_device_id cy_pci_dev_id[] = {
Alan Cox15ed6cc2008-04-30 00:53:55 -0700257 /* PCI < 1Mb */
258 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Lo) },
259 /* PCI > 1Mb */
260 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Hi) },
261 /* 4Y PCI < 1Mb */
262 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Lo) },
263 /* 4Y PCI > 1Mb */
264 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Hi) },
265 /* 8Y PCI < 1Mb */
266 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Lo) },
267 /* 8Y PCI > 1Mb */
268 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Hi) },
269 /* Z PCI < 1Mb */
270 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Lo) },
271 /* Z PCI > 1Mb */
272 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Hi) },
Jiri Slaby893de2d2007-02-12 00:51:49 -0800273 { } /* end of table */
Jiri Slaby02f11752006-12-08 02:39:28 -0800274};
Jiri Slaby893de2d2007-02-12 00:51:49 -0800275MODULE_DEVICE_TABLE(pci, cy_pci_dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276#endif
277
278static void cy_start(struct tty_struct *);
Jiri Slabyd13549f2009-09-19 13:13:12 -0700279static void cy_set_line_char(struct cyclades_port *, struct tty_struct *);
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -0700280static int cyz_issue_cmd(struct cyclades_card *, __u32, __u8, __u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281#ifdef CONFIG_ISA
282static unsigned detect_isa_irq(void __iomem *);
Jiri Slaby02f11752006-12-08 02:39:28 -0800283#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285#ifndef CONFIG_CYZ_INTR
286static void cyz_poll(unsigned long);
287
288/* The Cyclades-Z polling cycle is defined by this variable */
289static long cyz_polling_cycle = CZ_DEF_POLL;
290
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700291static DEFINE_TIMER(cyz_timerlist, cyz_poll, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Jiri Slaby02f11752006-12-08 02:39:28 -0800293#else /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294static void cyz_rx_restart(unsigned long);
295static struct timer_list cyz_rx_full_timer[NR_PORTS];
Jiri Slaby02f11752006-12-08 02:39:28 -0800296#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700298static inline void cyy_writeb(struct cyclades_port *port, u32 reg, u8 val)
299{
300 struct cyclades_card *card = port->card;
301
302 cy_writeb(port->u.cyy.base_addr + (reg << card->bus_index), val);
303}
304
305static inline u8 cyy_readb(struct cyclades_port *port, u32 reg)
306{
307 struct cyclades_card *card = port->card;
308
309 return readb(port->u.cyy.base_addr + (reg << card->bus_index));
310}
311
Jiri Slaby2693f482009-06-11 12:31:06 +0100312static inline bool cy_is_Z(struct cyclades_card *card)
313{
314 return card->num_chips == (unsigned int)-1;
315}
316
317static inline bool __cyz_fpga_loaded(struct RUNTIME_9060 __iomem *ctl_addr)
318{
319 return readl(&ctl_addr->init_ctrl) & (1 << 17);
320}
321
322static inline bool cyz_fpga_loaded(struct cyclades_card *card)
323{
324 return __cyz_fpga_loaded(card->ctl_addr.p9060);
325}
326
327static inline bool cyz_is_loaded(struct cyclades_card *card)
328{
329 struct FIRM_ID __iomem *fw_id = card->base_addr + ID_ADDRESS;
330
331 return (card->hw_ver == ZO_V1 || cyz_fpga_loaded(card)) &&
332 readl(&fw_id->signature) == ZFIRM_ID;
333}
334
Jiri Slaby02f11752006-12-08 02:39:28 -0800335static inline int serial_paranoia_check(struct cyclades_port *info,
Jiri Slabyebdb5132009-09-19 13:13:14 -0700336 const char *name, const char *routine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338#ifdef SERIAL_PARANOIA_CHECK
Jiri Slaby02f11752006-12-08 02:39:28 -0800339 if (!info) {
Jiri Slaby21719192007-05-08 00:36:42 -0700340 printk(KERN_WARNING "cyc Warning: null cyclades_port for (%s) "
341 "in %s\n", name, routine);
Jiri Slaby02f11752006-12-08 02:39:28 -0800342 return 1;
343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Jiri Slaby02f11752006-12-08 02:39:28 -0800345 if (info->magic != CYCLADES_MAGIC) {
Jiri Slaby21719192007-05-08 00:36:42 -0700346 printk(KERN_WARNING "cyc Warning: bad magic number for serial "
347 "struct (%s) in %s\n", name, routine);
Jiri Slaby02f11752006-12-08 02:39:28 -0800348 return 1;
349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#endif
Jiri Slaby02f11752006-12-08 02:39:28 -0800351 return 0;
Jiri Slabyebdb5132009-09-19 13:13:14 -0700352}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354/***********************************************************/
355/********* Start of block of Cyclom-Y specific code ********/
356
357/* This routine waits up to 1000 micro-seconds for the previous
358 command to the Cirrus chip to complete and then issues the
359 new command. An error is returned if the previous command
360 didn't finish within the time limit.
361
362 This function is only called from inside spinlock-protected code.
363 */
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700364static int __cyy_issue_cmd(void __iomem *base_addr, u8 cmd, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700366 void __iomem *ccr = base_addr + (CyCCR << index);
Jiri Slabyad39c302007-05-08 00:35:49 -0700367 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Jiri Slaby02f11752006-12-08 02:39:28 -0800369 /* Check to see that the previous command has completed */
370 for (i = 0; i < 100; i++) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700371 if (readb(ccr) == 0)
Jiri Slaby02f11752006-12-08 02:39:28 -0800372 break;
Jiri Slaby02f11752006-12-08 02:39:28 -0800373 udelay(10L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
Jiri Slaby02f11752006-12-08 02:39:28 -0800375 /* if the CCR never cleared, the previous command
376 didn't finish within the "reasonable time" */
377 if (i == 100)
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800378 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Jiri Slaby02f11752006-12-08 02:39:28 -0800380 /* Issue the new command */
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700381 cy_writeb(ccr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800383 return 0;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700384}
385
386static inline int cyy_issue_cmd(struct cyclades_port *port, u8 cmd)
387{
388 return __cyy_issue_cmd(port->u.cyy.base_addr, cmd,
389 port->card->bus_index);
390}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392#ifdef CONFIG_ISA
393/* ISA interrupt detection code */
Alan Cox15ed6cc2008-04-30 00:53:55 -0700394static unsigned detect_isa_irq(void __iomem *address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Jiri Slaby02f11752006-12-08 02:39:28 -0800396 int irq;
397 unsigned long irqs, flags;
398 int save_xir, save_car;
399 int index = 0; /* IRQ probing is only for ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Jiri Slaby02f11752006-12-08 02:39:28 -0800401 /* forget possible initially masked and pending IRQ */
402 irq = probe_irq_off(probe_irq_on());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Jiri Slaby02f11752006-12-08 02:39:28 -0800404 /* Clear interrupts on the board first */
405 cy_writeb(address + (Cy_ClrIntr << index), 0);
406 /* Cy_ClrIntr is 0x1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Jiri Slaby02f11752006-12-08 02:39:28 -0800408 irqs = probe_irq_on();
409 /* Wait ... */
Jiri Slabyf6e208c2009-09-19 13:13:14 -0700410 msleep(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Jiri Slaby02f11752006-12-08 02:39:28 -0800412 /* Enable the Tx interrupts on the CD1400 */
413 local_irq_save(flags);
414 cy_writeb(address + (CyCAR << index), 0);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700415 __cyy_issue_cmd(address, CyCHAN_CTL | CyENB_XMTR, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Jiri Slaby02f11752006-12-08 02:39:28 -0800417 cy_writeb(address + (CyCAR << index), 0);
418 cy_writeb(address + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700419 readb(address + (CySRER << index)) | CyTxRdy);
Jiri Slaby02f11752006-12-08 02:39:28 -0800420 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Jiri Slaby02f11752006-12-08 02:39:28 -0800422 /* Wait ... */
Jiri Slabyf6e208c2009-09-19 13:13:14 -0700423 msleep(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Jiri Slaby02f11752006-12-08 02:39:28 -0800425 /* Check which interrupt is in use */
426 irq = probe_irq_off(irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Jiri Slaby02f11752006-12-08 02:39:28 -0800428 /* Clean up */
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700429 save_xir = (u_char) readb(address + (CyTIR << index));
430 save_car = readb(address + (CyCAR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -0800431 cy_writeb(address + (CyCAR << index), (save_xir & 0x3));
432 cy_writeb(address + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700433 readb(address + (CySRER << index)) & ~CyTxRdy);
Jiri Slaby02f11752006-12-08 02:39:28 -0800434 cy_writeb(address + (CyTIR << index), (save_xir & 0x3f));
435 cy_writeb(address + (CyCAR << index), (save_car));
436 cy_writeb(address + (Cy_ClrIntr << index), 0);
437 /* Cy_ClrIntr is 0x1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Jiri Slaby02f11752006-12-08 02:39:28 -0800439 return (irq > 0) ? irq : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
Jiri Slaby02f11752006-12-08 02:39:28 -0800441#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Jiri Slabyce97a092007-10-18 03:06:21 -0700443static void cyy_chip_rx(struct cyclades_card *cinfo, int chip,
444 void __iomem *base_addr)
Jiri Slabye9410272006-12-08 02:39:28 -0800445{
446 struct cyclades_port *info;
447 struct tty_struct *tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -0700448 int len, index = cinfo->bus_index;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700449 u8 ivr, save_xir, channel, save_car, data, char_count;
Jiri Slabye9410272006-12-08 02:39:28 -0800450
Jiri Slabye9410272006-12-08 02:39:28 -0800451#ifdef CY_DEBUG_INTERRUPTS
Jiri Slabyce97a092007-10-18 03:06:21 -0700452 printk(KERN_DEBUG "cyy_interrupt: rcvd intr, chip %d\n", chip);
Jiri Slabye9410272006-12-08 02:39:28 -0800453#endif
Jiri Slabyce97a092007-10-18 03:06:21 -0700454 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -0700455 save_xir = readb(base_addr + (CyRIR << index));
456 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -0700457 info = &cinfo->ports[channel + chip * 4];
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700458 save_car = cyy_readb(info, CyCAR);
459 cyy_writeb(info, CyCAR, save_xir);
460 ivr = cyy_readb(info, CyRIVR) & CyIVRMask;
Jiri Slabye9410272006-12-08 02:39:28 -0800461
Jiri Slabyd13549f2009-09-19 13:13:12 -0700462 tty = tty_port_tty_get(&info->port);
Jiri Slabyce97a092007-10-18 03:06:21 -0700463 /* if there is nowhere to put the data, discard it */
Jiri Slabyd13549f2009-09-19 13:13:12 -0700464 if (tty == NULL) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700465 if (ivr == CyIVRRxEx) { /* exception */
466 data = cyy_readb(info, CyRDSR);
Jiri Slabyce97a092007-10-18 03:06:21 -0700467 } else { /* normal character reception */
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700468 char_count = cyy_readb(info, CyRDCR);
Jiri Slabyce97a092007-10-18 03:06:21 -0700469 while (char_count--)
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700470 data = cyy_readb(info, CyRDSR);
Jiri Slabyce97a092007-10-18 03:06:21 -0700471 }
472 goto end;
473 }
474 /* there is an open port for this data */
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700475 if (ivr == CyIVRRxEx) { /* exception */
476 data = cyy_readb(info, CyRDSR);
Jiri Slaby02f11752006-12-08 02:39:28 -0800477
Jiri Slabyce97a092007-10-18 03:06:21 -0700478 /* For statistics only */
479 if (data & CyBREAK)
480 info->icount.brk++;
481 else if (data & CyFRAME)
482 info->icount.frame++;
483 else if (data & CyPARITY)
484 info->icount.parity++;
485 else if (data & CyOVERRUN)
486 info->icount.overrun++;
Jiri Slaby02f11752006-12-08 02:39:28 -0800487
Jiri Slabyce97a092007-10-18 03:06:21 -0700488 if (data & info->ignore_status_mask) {
489 info->icount.rx++;
Jiri Slabyd13549f2009-09-19 13:13:12 -0700490 tty_kref_put(tty);
Jiri Slabyce97a092007-10-18 03:06:21 -0700491 return;
492 }
493 if (tty_buffer_request_room(tty, 1)) {
494 if (data & info->read_status_mask) {
495 if (data & CyBREAK) {
496 tty_insert_flip_char(tty,
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700497 cyy_readb(info, CyRDSR),
498 TTY_BREAK);
Jiri Slaby02f11752006-12-08 02:39:28 -0800499 info->icount.rx++;
Alan Cox77451e52008-07-16 21:57:02 +0100500 if (info->port.flags & ASYNC_SAK)
Jiri Slabyce97a092007-10-18 03:06:21 -0700501 do_SAK(tty);
502 } else if (data & CyFRAME) {
Alan Cox15ed6cc2008-04-30 00:53:55 -0700503 tty_insert_flip_char(tty,
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700504 cyy_readb(info, CyRDSR),
505 TTY_FRAME);
Jiri Slabyce97a092007-10-18 03:06:21 -0700506 info->icount.rx++;
507 info->idle_stats.frame_errs++;
508 } else if (data & CyPARITY) {
509 /* Pieces of seven... */
510 tty_insert_flip_char(tty,
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700511 cyy_readb(info, CyRDSR),
512 TTY_PARITY);
Jiri Slabyce97a092007-10-18 03:06:21 -0700513 info->icount.rx++;
514 info->idle_stats.parity_errs++;
515 } else if (data & CyOVERRUN) {
516 tty_insert_flip_char(tty, 0,
517 TTY_OVERRUN);
518 info->icount.rx++;
519 /* If the flip buffer itself is
520 overflowing, we still lose
521 the next incoming character.
522 */
523 tty_insert_flip_char(tty,
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700524 cyy_readb(info, CyRDSR),
525 TTY_FRAME);
Jiri Slabyce97a092007-10-18 03:06:21 -0700526 info->icount.rx++;
Jiri Slaby02f11752006-12-08 02:39:28 -0800527 info->idle_stats.overruns++;
Jiri Slabyce97a092007-10-18 03:06:21 -0700528 /* These two conditions may imply */
529 /* a normal read should be done. */
530 /* } else if(data & CyTIMEOUT) { */
531 /* } else if(data & CySPECHAR) { */
532 } else {
533 tty_insert_flip_char(tty, 0,
534 TTY_NORMAL);
535 info->icount.rx++;
Jiri Slaby02f11752006-12-08 02:39:28 -0800536 }
Jiri Slabyce97a092007-10-18 03:06:21 -0700537 } else {
538 tty_insert_flip_char(tty, 0, TTY_NORMAL);
539 info->icount.rx++;
540 }
541 } else {
542 /* there was a software buffer overrun and nothing
543 * could be done about it!!! */
544 info->icount.buf_overrun++;
545 info->idle_stats.overruns++;
546 }
547 } else { /* normal character reception */
548 /* load # chars available from the chip */
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700549 char_count = cyy_readb(info, CyRDCR);
Jiri Slabye9410272006-12-08 02:39:28 -0800550
551#ifdef CY_ENABLE_MONITORING
Jiri Slabyce97a092007-10-18 03:06:21 -0700552 ++info->mon.int_count;
553 info->mon.char_count += char_count;
554 if (char_count > info->mon.char_max)
555 info->mon.char_max = char_count;
556 info->mon.char_last = char_count;
Jiri Slabye9410272006-12-08 02:39:28 -0800557#endif
Jiri Slabyce97a092007-10-18 03:06:21 -0700558 len = tty_buffer_request_room(tty, char_count);
559 while (len--) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700560 data = cyy_readb(info, CyRDSR);
Jiri Slabyce97a092007-10-18 03:06:21 -0700561 tty_insert_flip_char(tty, data, TTY_NORMAL);
562 info->idle_stats.recv_bytes++;
563 info->icount.rx++;
Jiri Slabye9410272006-12-08 02:39:28 -0800564#ifdef CY_16Y_HACK
Jiri Slabyce97a092007-10-18 03:06:21 -0700565 udelay(10L);
Jiri Slabye9410272006-12-08 02:39:28 -0800566#endif
Jiri Slabye9410272006-12-08 02:39:28 -0800567 }
Jiri Slabyce97a092007-10-18 03:06:21 -0700568 info->idle_stats.recv_idle = jiffies;
569 }
570 tty_schedule_flip(tty);
Jiri Slabyd13549f2009-09-19 13:13:12 -0700571 tty_kref_put(tty);
Jiri Slabyce97a092007-10-18 03:06:21 -0700572end:
573 /* end of service */
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700574 cyy_writeb(info, CyRIR, save_xir & 0x3f);
575 cyy_writeb(info, CyCAR, save_car);
Jiri Slabyce97a092007-10-18 03:06:21 -0700576}
577
Jiri Slaby65f76a82007-10-18 03:06:22 -0700578static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip,
Jiri Slabyce97a092007-10-18 03:06:21 -0700579 void __iomem *base_addr)
580{
581 struct cyclades_port *info;
Jiri Slabyd13549f2009-09-19 13:13:12 -0700582 struct tty_struct *tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -0700583 int char_count, index = cinfo->bus_index;
584 u8 save_xir, channel, save_car, outch;
Jiri Slabyce97a092007-10-18 03:06:21 -0700585
586 /* Since we only get here when the transmit buffer
587 is empty, we know we can always stuff a dozen
588 characters. */
589#ifdef CY_DEBUG_INTERRUPTS
590 printk(KERN_DEBUG "cyy_interrupt: xmit intr, chip %d\n", chip);
591#endif
592
593 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -0700594 save_xir = readb(base_addr + (CyTIR << index));
595 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -0700596 save_car = readb(base_addr + (CyCAR << index));
597 cy_writeb(base_addr + (CyCAR << index), save_xir);
598
Jiri Slabyce97a092007-10-18 03:06:21 -0700599 info = &cinfo->ports[channel + chip * 4];
Jiri Slabyd13549f2009-09-19 13:13:12 -0700600 tty = tty_port_tty_get(&info->port);
601 if (tty == NULL) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700602 cyy_writeb(info, CySRER, cyy_readb(info, CySRER) & ~CyTxRdy);
Jiri Slabyce97a092007-10-18 03:06:21 -0700603 goto end;
Jiri Slabye9410272006-12-08 02:39:28 -0800604 }
605
Jiri Slabyce97a092007-10-18 03:06:21 -0700606 /* load the on-chip space for outbound data */
607 char_count = info->xmit_fifo_size;
Jiri Slabye9410272006-12-08 02:39:28 -0800608
Jiri Slabyce97a092007-10-18 03:06:21 -0700609 if (info->x_char) { /* send special char */
610 outch = info->x_char;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700611 cyy_writeb(info, CyTDR, outch);
Jiri Slabyce97a092007-10-18 03:06:21 -0700612 char_count--;
613 info->icount.tx++;
614 info->x_char = 0;
615 }
Jiri Slabye9410272006-12-08 02:39:28 -0800616
Jiri Slabyce97a092007-10-18 03:06:21 -0700617 if (info->breakon || info->breakoff) {
618 if (info->breakon) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700619 cyy_writeb(info, CyTDR, 0);
620 cyy_writeb(info, CyTDR, 0x81);
Jiri Slabyce97a092007-10-18 03:06:21 -0700621 info->breakon = 0;
622 char_count -= 2;
Jiri Slaby02f11752006-12-08 02:39:28 -0800623 }
Jiri Slabyce97a092007-10-18 03:06:21 -0700624 if (info->breakoff) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700625 cyy_writeb(info, CyTDR, 0);
626 cyy_writeb(info, CyTDR, 0x83);
Jiri Slabyce97a092007-10-18 03:06:21 -0700627 info->breakoff = 0;
628 char_count -= 2;
Jiri Slaby02f11752006-12-08 02:39:28 -0800629 }
Jiri Slabyce97a092007-10-18 03:06:21 -0700630 }
Jiri Slabye9410272006-12-08 02:39:28 -0800631
Jiri Slabyce97a092007-10-18 03:06:21 -0700632 while (char_count-- > 0) {
633 if (!info->xmit_cnt) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700634 if (cyy_readb(info, CySRER) & CyTxMpty) {
635 cyy_writeb(info, CySRER,
636 cyy_readb(info, CySRER) & ~CyTxMpty);
Jiri Slabyce97a092007-10-18 03:06:21 -0700637 } else {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700638 cyy_writeb(info, CySRER, CyTxMpty |
639 (cyy_readb(info, CySRER) & ~CyTxRdy));
Jiri Slaby02f11752006-12-08 02:39:28 -0800640 }
Jiri Slabyce97a092007-10-18 03:06:21 -0700641 goto done;
642 }
Alan Cox77451e52008-07-16 21:57:02 +0100643 if (info->port.xmit_buf == NULL) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700644 cyy_writeb(info, CySRER,
645 cyy_readb(info, CySRER) & ~CyTxRdy);
Jiri Slabyce97a092007-10-18 03:06:21 -0700646 goto done;
647 }
Jiri Slabyd13549f2009-09-19 13:13:12 -0700648 if (tty->stopped || tty->hw_stopped) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700649 cyy_writeb(info, CySRER,
650 cyy_readb(info, CySRER) & ~CyTxRdy);
Jiri Slabyce97a092007-10-18 03:06:21 -0700651 goto done;
652 }
653 /* Because the Embedded Transmit Commands have been enabled,
654 * we must check to see if the escape character, NULL, is being
655 * sent. If it is, we must ensure that there is room for it to
656 * be doubled in the output stream. Therefore we no longer
657 * advance the pointer when the character is fetched, but
658 * rather wait until after the check for a NULL output
659 * character. This is necessary because there may not be room
660 * for the two chars needed to send a NULL.)
661 */
Alan Cox77451e52008-07-16 21:57:02 +0100662 outch = info->port.xmit_buf[info->xmit_tail];
Jiri Slabyce97a092007-10-18 03:06:21 -0700663 if (outch) {
664 info->xmit_cnt--;
665 info->xmit_tail = (info->xmit_tail + 1) &
666 (SERIAL_XMIT_SIZE - 1);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700667 cyy_writeb(info, CyTDR, outch);
Jiri Slabyce97a092007-10-18 03:06:21 -0700668 info->icount.tx++;
669 } else {
670 if (char_count > 1) {
Jiri Slaby02f11752006-12-08 02:39:28 -0800671 info->xmit_cnt--;
672 info->xmit_tail = (info->xmit_tail + 1) &
Jiri Slabyce97a092007-10-18 03:06:21 -0700673 (SERIAL_XMIT_SIZE - 1);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700674 cyy_writeb(info, CyTDR, outch);
675 cyy_writeb(info, CyTDR, 0);
Jiri Slaby02f11752006-12-08 02:39:28 -0800676 info->icount.tx++;
Jiri Slabyce97a092007-10-18 03:06:21 -0700677 char_count--;
Jiri Slaby02f11752006-12-08 02:39:28 -0800678 }
679 }
Jiri Slabye9410272006-12-08 02:39:28 -0800680 }
681
Jiri Slabyce97a092007-10-18 03:06:21 -0700682done:
Jiri Slabyd13549f2009-09-19 13:13:12 -0700683 tty_wakeup(tty);
684 tty_kref_put(tty);
Jiri Slabyce97a092007-10-18 03:06:21 -0700685end:
686 /* end of service */
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700687 cyy_writeb(info, CyTIR, save_xir & 0x3f);
688 cyy_writeb(info, CyCAR, save_car);
Jiri Slabyce97a092007-10-18 03:06:21 -0700689}
Jiri Slabye9410272006-12-08 02:39:28 -0800690
Jiri Slabyce97a092007-10-18 03:06:21 -0700691static void cyy_chip_modem(struct cyclades_card *cinfo, int chip,
692 void __iomem *base_addr)
693{
694 struct cyclades_port *info;
Jiri Slabyd13549f2009-09-19 13:13:12 -0700695 struct tty_struct *tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -0700696 int index = cinfo->bus_index;
697 u8 save_xir, channel, save_car, mdm_change, mdm_status;
Jiri Slabye9410272006-12-08 02:39:28 -0800698
Jiri Slabyce97a092007-10-18 03:06:21 -0700699 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -0700700 save_xir = readb(base_addr + (CyMIR << index));
701 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -0700702 info = &cinfo->ports[channel + chip * 4];
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700703 save_car = cyy_readb(info, CyCAR);
704 cyy_writeb(info, CyCAR, save_xir);
Jiri Slabye9410272006-12-08 02:39:28 -0800705
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700706 mdm_change = cyy_readb(info, CyMISR);
707 mdm_status = cyy_readb(info, CyMSVR1);
Jiri Slabye9410272006-12-08 02:39:28 -0800708
Jiri Slabyd13549f2009-09-19 13:13:12 -0700709 tty = tty_port_tty_get(&info->port);
710 if (!tty)
Jiri Slabyce97a092007-10-18 03:06:21 -0700711 goto end;
Jiri Slaby02f11752006-12-08 02:39:28 -0800712
Jiri Slabyce97a092007-10-18 03:06:21 -0700713 if (mdm_change & CyANY_DELTA) {
714 /* For statistics only */
715 if (mdm_change & CyDCD)
716 info->icount.dcd++;
717 if (mdm_change & CyCTS)
718 info->icount.cts++;
719 if (mdm_change & CyDSR)
720 info->icount.dsr++;
721 if (mdm_change & CyRI)
722 info->icount.rng++;
723
Alan Coxbdc04e32009-09-19 13:13:31 -0700724 wake_up_interruptible(&info->port.delta_msr_wait);
Jiri Slabyce97a092007-10-18 03:06:21 -0700725 }
726
Alan Cox77451e52008-07-16 21:57:02 +0100727 if ((mdm_change & CyDCD) && (info->port.flags & ASYNC_CHECK_CD)) {
Jiri Slaby174e6fe2009-09-19 13:13:13 -0700728 if (mdm_status & CyDCD)
729 wake_up_interruptible(&info->port.open_wait);
730 else
Jiri Slabyd13549f2009-09-19 13:13:12 -0700731 tty_hangup(tty);
Jiri Slabye9410272006-12-08 02:39:28 -0800732 }
Alan Cox77451e52008-07-16 21:57:02 +0100733 if ((mdm_change & CyCTS) && (info->port.flags & ASYNC_CTS_FLOW)) {
Jiri Slabyd13549f2009-09-19 13:13:12 -0700734 if (tty->hw_stopped) {
Jiri Slabyce97a092007-10-18 03:06:21 -0700735 if (mdm_status & CyCTS) {
736 /* cy_start isn't used
737 because... !!! */
Jiri Slabyd13549f2009-09-19 13:13:12 -0700738 tty->hw_stopped = 0;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700739 cyy_writeb(info, CySRER,
740 cyy_readb(info, CySRER) | CyTxRdy);
Jiri Slabyd13549f2009-09-19 13:13:12 -0700741 tty_wakeup(tty);
Jiri Slabyce97a092007-10-18 03:06:21 -0700742 }
743 } else {
744 if (!(mdm_status & CyCTS)) {
745 /* cy_stop isn't used
746 because ... !!! */
Jiri Slabyd13549f2009-09-19 13:13:12 -0700747 tty->hw_stopped = 1;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700748 cyy_writeb(info, CySRER,
749 cyy_readb(info, CySRER) & ~CyTxRdy);
Jiri Slabyce97a092007-10-18 03:06:21 -0700750 }
751 }
752 }
753/* if (mdm_change & CyDSR) {
754 }
755 if (mdm_change & CyRI) {
756 }*/
Jiri Slabyd13549f2009-09-19 13:13:12 -0700757 tty_kref_put(tty);
Jiri Slabyce97a092007-10-18 03:06:21 -0700758end:
759 /* end of service */
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700760 cyy_writeb(info, CyMIR, save_xir & 0x3f);
761 cyy_writeb(info, CyCAR, save_car);
Jiri Slabye9410272006-12-08 02:39:28 -0800762}
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764/* The real interrupt service routine is called
765 whenever the card wants its hand held--chars
766 received, out buffer empty, modem change, etc.
767 */
Jiri Slaby02f11752006-12-08 02:39:28 -0800768static irqreturn_t cyy_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Jiri Slaby02f11752006-12-08 02:39:28 -0800770 int status;
Jiri Slabyf7429032007-05-08 00:36:59 -0700771 struct cyclades_card *cinfo = dev_id;
Jiri Slaby02f11752006-12-08 02:39:28 -0800772 void __iomem *base_addr, *card_base_addr;
Jiri Slaby65f76a82007-10-18 03:06:22 -0700773 unsigned int chip, too_many, had_work;
Jiri Slaby02f11752006-12-08 02:39:28 -0800774 int index;
Jiri Slabye9410272006-12-08 02:39:28 -0800775
Jiri Slabyf7429032007-05-08 00:36:59 -0700776 if (unlikely(cinfo == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777#ifdef CY_DEBUG_INTERRUPTS
Alan Cox15ed6cc2008-04-30 00:53:55 -0700778 printk(KERN_DEBUG "cyy_interrupt: spurious interrupt %d\n",
779 irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780#endif
Jiri Slaby02f11752006-12-08 02:39:28 -0800781 return IRQ_NONE; /* spurious interrupt */
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Jiri Slaby02f11752006-12-08 02:39:28 -0800784 card_base_addr = cinfo->base_addr;
785 index = cinfo->bus_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Jiri Slabyf1e83c62007-05-08 00:36:24 -0700787 /* card was not initialized yet (e.g. DEBUG_SHIRQ) */
788 if (unlikely(card_base_addr == NULL))
789 return IRQ_HANDLED;
790
Jiri Slaby02f11752006-12-08 02:39:28 -0800791 /* This loop checks all chips in the card. Make a note whenever
792 _any_ chip had some work to do, as this is considered an
793 indication that there will be more to do. Only when no chip
794 has any work does this outermost loop exit.
795 */
796 do {
797 had_work = 0;
798 for (chip = 0; chip < cinfo->num_chips; chip++) {
799 base_addr = cinfo->base_addr +
800 (cy_chip_offset[chip] << index);
801 too_many = 0;
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700802 while ((status = readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -0800803 (CySVRR << index))) != 0x00) {
804 had_work++;
805 /* The purpose of the following test is to ensure that
806 no chip can monopolize the driver. This forces the
807 chips to be checked in a round-robin fashion (after
808 draining each of a bunch (1000) of characters).
809 */
Jiri Slabyce97a092007-10-18 03:06:21 -0700810 if (1000 < too_many++)
Jiri Slaby02f11752006-12-08 02:39:28 -0800811 break;
Jiri Slaby1c0a3872007-10-18 03:06:22 -0700812 spin_lock(&cinfo->card_lock);
Jiri Slabyce97a092007-10-18 03:06:21 -0700813 if (status & CySRReceive) /* rx intr */
814 cyy_chip_rx(cinfo, chip, base_addr);
815 if (status & CySRTransmit) /* tx intr */
816 cyy_chip_tx(cinfo, chip, base_addr);
817 if (status & CySRModem) /* modem intr */
818 cyy_chip_modem(cinfo, chip, base_addr);
Jiri Slaby1c0a3872007-10-18 03:06:22 -0700819 spin_unlock(&cinfo->card_lock);
Jiri Slaby02f11752006-12-08 02:39:28 -0800820 }
821 }
822 } while (had_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Jiri Slaby02f11752006-12-08 02:39:28 -0800824 /* clear interrupts */
825 spin_lock(&cinfo->card_lock);
826 cy_writeb(card_base_addr + (Cy_ClrIntr << index), 0);
827 /* Cy_ClrIntr is 0x1800 */
828 spin_unlock(&cinfo->card_lock);
829 return IRQ_HANDLED;
830} /* cyy_interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Jiri Slaby4d768202009-09-19 13:13:15 -0700832static void cyy_change_rts_dtr(struct cyclades_port *info, unsigned int set,
833 unsigned int clear)
834{
835 struct cyclades_card *card = info->card;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700836 int channel = info->line - card->first_line;
Jiri Slaby0d348722009-09-19 13:13:16 -0700837 u32 rts, dtr, msvrr, msvrd;
Jiri Slaby4d768202009-09-19 13:13:15 -0700838
Jiri Slaby4d768202009-09-19 13:13:15 -0700839 channel &= 0x03;
Jiri Slaby4d768202009-09-19 13:13:15 -0700840
Jiri Slaby0d348722009-09-19 13:13:16 -0700841 if (info->rtsdtr_inv) {
842 msvrr = CyMSVR2;
843 msvrd = CyMSVR1;
844 rts = CyDTR;
845 dtr = CyRTS;
846 } else {
847 msvrr = CyMSVR1;
848 msvrd = CyMSVR2;
849 rts = CyRTS;
850 dtr = CyDTR;
851 }
Jiri Slaby4d768202009-09-19 13:13:15 -0700852 if (set & TIOCM_RTS) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700853 cyy_writeb(info, CyCAR, channel);
854 cyy_writeb(info, msvrr, rts);
Jiri Slaby4d768202009-09-19 13:13:15 -0700855 }
856 if (clear & TIOCM_RTS) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700857 cyy_writeb(info, CyCAR, channel);
858 cyy_writeb(info, msvrr, ~rts);
Jiri Slaby4d768202009-09-19 13:13:15 -0700859 }
860 if (set & TIOCM_DTR) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700861 cyy_writeb(info, CyCAR, channel);
862 cyy_writeb(info, msvrd, dtr);
Jiri Slaby4d768202009-09-19 13:13:15 -0700863#ifdef CY_DEBUG_DTR
864 printk(KERN_DEBUG "cyc:set_modem_info raising DTR\n");
865 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700866 cyy_readb(info, CyMSVR1),
867 cyy_readb(info, CyMSVR2));
Jiri Slaby4d768202009-09-19 13:13:15 -0700868#endif
869 }
870 if (clear & TIOCM_DTR) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700871 cyy_writeb(info, CyCAR, channel);
872 cyy_writeb(info, msvrd, ~dtr);
Jiri Slaby4d768202009-09-19 13:13:15 -0700873#ifdef CY_DEBUG_DTR
874 printk(KERN_DEBUG "cyc:set_modem_info dropping DTR\n");
875 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700876 cyy_readb(info, CyMSVR1),
877 cyy_readb(info, CyMSVR2));
Jiri Slaby4d768202009-09-19 13:13:15 -0700878#endif
879 }
880}
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/***********************************************************/
883/********* End of block of Cyclom-Y specific code **********/
Alan Cox15ed6cc2008-04-30 00:53:55 -0700884/******** Start of block of Cyclades-Z specific code *******/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885/***********************************************************/
886
887static int
Jiri Slaby02f11752006-12-08 02:39:28 -0800888cyz_fetch_msg(struct cyclades_card *cinfo,
Alan Cox15ed6cc2008-04-30 00:53:55 -0700889 __u32 *channel, __u8 *cmd, __u32 *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Jiri Slabyf0eefdc2009-09-19 13:13:13 -0700891 struct BOARD_CTRL __iomem *board_ctrl = cinfo->board_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -0800892 unsigned long loc_doorbell;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Jiri Slaby97e87f82009-06-11 12:29:27 +0100894 loc_doorbell = readl(&cinfo->ctl_addr.p9060->loc_doorbell);
Jiri Slaby02f11752006-12-08 02:39:28 -0800895 if (loc_doorbell) {
896 *cmd = (char)(0xff & loc_doorbell);
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700897 *channel = readl(&board_ctrl->fwcmd_channel);
898 *param = (__u32) readl(&board_ctrl->fwcmd_param);
Jiri Slaby97e87f82009-06-11 12:29:27 +0100899 cy_writel(&cinfo->ctl_addr.p9060->loc_doorbell, 0xffffffff);
Jiri Slaby02f11752006-12-08 02:39:28 -0800900 return 1;
901 }
902 return 0;
903} /* cyz_fetch_msg */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905static int
Jiri Slaby02f11752006-12-08 02:39:28 -0800906cyz_issue_cmd(struct cyclades_card *cinfo,
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -0700907 __u32 channel, __u8 cmd, __u32 param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Jiri Slabyf0eefdc2009-09-19 13:13:13 -0700909 struct BOARD_CTRL __iomem *board_ctrl = cinfo->board_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -0700910 __u32 __iomem *pci_doorbell;
Jiri Slaby65f76a82007-10-18 03:06:22 -0700911 unsigned int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Jiri Slaby2693f482009-06-11 12:31:06 +0100913 if (!cyz_is_loaded(cinfo))
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800914 return -1;
Alan Cox15ed6cc2008-04-30 00:53:55 -0700915
Jiri Slaby02f11752006-12-08 02:39:28 -0800916 index = 0;
Jiri Slaby97e87f82009-06-11 12:29:27 +0100917 pci_doorbell = &cinfo->ctl_addr.p9060->pci_doorbell;
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700918 while ((readl(pci_doorbell) & 0xff) != 0) {
Alan Cox15ed6cc2008-04-30 00:53:55 -0700919 if (index++ == 1000)
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700920 return (int)(readl(pci_doorbell) & 0xff);
Jiri Slaby02f11752006-12-08 02:39:28 -0800921 udelay(50L);
922 }
923 cy_writel(&board_ctrl->hcmd_channel, channel);
924 cy_writel(&board_ctrl->hcmd_param, param);
925 cy_writel(pci_doorbell, (long)cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800927 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -0800928} /* cyz_issue_cmd */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Jiri Slabyf0eefdc2009-09-19 13:13:13 -0700930static void cyz_handle_rx(struct cyclades_port *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Jiri Slabyf0eefdc2009-09-19 13:13:13 -0700932 struct BUF_CTRL __iomem *buf_ctrl = info->u.cyz.buf_ctrl;
Jiri Slaby875b2062007-05-08 00:36:49 -0700933 struct cyclades_card *cinfo = info->card;
Jiri Slaby65f76a82007-10-18 03:06:22 -0700934 unsigned int char_count;
Jiri Slaby02f11752006-12-08 02:39:28 -0800935 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936#ifdef BLOCKMOVE
Jiri Slabyce71b0f2007-05-08 00:36:53 -0700937 unsigned char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938#else
Jiri Slaby02f11752006-12-08 02:39:28 -0800939 char data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940#endif
Jiri Slabyad39c302007-05-08 00:35:49 -0700941 __u32 rx_put, rx_get, new_rx_get, rx_bufsize, rx_bufaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700943 rx_get = new_rx_get = readl(&buf_ctrl->rx_get);
944 rx_put = readl(&buf_ctrl->rx_put);
945 rx_bufsize = readl(&buf_ctrl->rx_bufsize);
946 rx_bufaddr = readl(&buf_ctrl->rx_bufaddr);
Jiri Slaby02f11752006-12-08 02:39:28 -0800947 if (rx_put >= rx_get)
948 char_count = rx_put - rx_get;
949 else
950 char_count = rx_put - rx_get + rx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Jiri Slaby02f11752006-12-08 02:39:28 -0800952 if (char_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953#ifdef CY_ENABLE_MONITORING
Jiri Slaby02f11752006-12-08 02:39:28 -0800954 info->mon.int_count++;
955 info->mon.char_count += char_count;
956 if (char_count > info->mon.char_max)
957 info->mon.char_max = char_count;
958 info->mon.char_last = char_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959#endif
Jiri Slabyf7429032007-05-08 00:36:59 -0700960 if (tty == NULL) {
Jiri Slaby02f11752006-12-08 02:39:28 -0800961 /* flush received characters */
962 new_rx_get = (new_rx_get + char_count) &
963 (rx_bufsize - 1);
964 info->rflush_count++;
965 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966#ifdef BLOCKMOVE
Jiri Slaby02f11752006-12-08 02:39:28 -0800967 /* we'd like to use memcpy(t, f, n) and memset(s, c, count)
968 for performance, but because of buffer boundaries, there
969 may be several steps to the operation */
Jiri Slabyce71b0f2007-05-08 00:36:53 -0700970 while (1) {
971 len = tty_prepare_flip_string(tty, &buf,
972 char_count);
973 if (!len)
974 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Jiri Slabyce71b0f2007-05-08 00:36:53 -0700976 len = min_t(unsigned int, min(len, char_count),
977 rx_bufsize - new_rx_get);
978
979 memcpy_fromio(buf, cinfo->base_addr +
980 rx_bufaddr + new_rx_get, len);
981
982 new_rx_get = (new_rx_get + len) &
Jiri Slaby02f11752006-12-08 02:39:28 -0800983 (rx_bufsize - 1);
Jiri Slabyce71b0f2007-05-08 00:36:53 -0700984 char_count -= len;
985 info->icount.rx += len;
986 info->idle_stats.recv_bytes += len;
Jiri Slaby02f11752006-12-08 02:39:28 -0800987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988#else
Jiri Slaby02f11752006-12-08 02:39:28 -0800989 len = tty_buffer_request_room(tty, char_count);
990 while (len--) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700991 data = readb(cinfo->base_addr + rx_bufaddr +
Jiri Slaby02f11752006-12-08 02:39:28 -0800992 new_rx_get);
Alan Cox15ed6cc2008-04-30 00:53:55 -0700993 new_rx_get = (new_rx_get + 1) &
994 (rx_bufsize - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -0800995 tty_insert_flip_char(tty, data, TTY_NORMAL);
996 info->idle_stats.recv_bytes++;
997 info->icount.rx++;
998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999#endif
1000#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001001 /* Recalculate the number of chars in the RX buffer and issue
1002 a cmd in case it's higher than the RX high water mark */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001003 rx_put = readl(&buf_ctrl->rx_put);
Jiri Slaby02f11752006-12-08 02:39:28 -08001004 if (rx_put >= rx_get)
1005 char_count = rx_put - rx_get;
1006 else
1007 char_count = rx_put - rx_get + rx_bufsize;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001008 if (char_count >= readl(&buf_ctrl->rx_threshold) &&
Jiri Slabyebafeef2007-10-18 03:06:20 -07001009 !timer_pending(&cyz_rx_full_timer[
1010 info->line]))
1011 mod_timer(&cyz_rx_full_timer[info->line],
1012 jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001014 info->idle_stats.recv_idle = jiffies;
1015 tty_schedule_flip(tty);
1016 }
1017 /* Update rx_get */
1018 cy_writel(&buf_ctrl->rx_get, new_rx_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001022static void cyz_handle_tx(struct cyclades_port *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001024 struct BUF_CTRL __iomem *buf_ctrl = info->u.cyz.buf_ctrl;
Jiri Slaby875b2062007-05-08 00:36:49 -07001025 struct cyclades_card *cinfo = info->card;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001026 u8 data;
1027 unsigned int char_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028#ifdef BLOCKMOVE
Jiri Slaby02f11752006-12-08 02:39:28 -08001029 int small_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030#endif
Jiri Slabyad39c302007-05-08 00:35:49 -07001031 __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Jiri Slaby02f11752006-12-08 02:39:28 -08001033 if (info->xmit_cnt <= 0) /* Nothing to transmit */
1034 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001036 tx_get = readl(&buf_ctrl->tx_get);
1037 tx_put = readl(&buf_ctrl->tx_put);
1038 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
1039 tx_bufaddr = readl(&buf_ctrl->tx_bufaddr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001040 if (tx_put >= tx_get)
1041 char_count = tx_get - tx_put - 1 + tx_bufsize;
1042 else
1043 char_count = tx_get - tx_put - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Jiri Slaby02f11752006-12-08 02:39:28 -08001045 if (char_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Jiri Slabyf7429032007-05-08 00:36:59 -07001047 if (tty == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08001048 goto ztxdone;
Jiri Slaby02f11752006-12-08 02:39:28 -08001049
1050 if (info->x_char) { /* send special char */
1051 data = info->x_char;
1052
1053 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1054 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1055 info->x_char = 0;
1056 char_count--;
1057 info->icount.tx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001058 }
1059#ifdef BLOCKMOVE
1060 while (0 < (small_count = min_t(unsigned int,
1061 tx_bufsize - tx_put, min_t(unsigned int,
1062 (SERIAL_XMIT_SIZE - info->xmit_tail),
1063 min_t(unsigned int, info->xmit_cnt,
1064 char_count))))) {
1065
1066 memcpy_toio((char *)(cinfo->base_addr + tx_bufaddr +
1067 tx_put),
Alan Cox77451e52008-07-16 21:57:02 +01001068 &info->port.xmit_buf[info->xmit_tail],
Jiri Slaby02f11752006-12-08 02:39:28 -08001069 small_count);
1070
1071 tx_put = (tx_put + small_count) & (tx_bufsize - 1);
1072 char_count -= small_count;
1073 info->icount.tx += small_count;
1074 info->xmit_cnt -= small_count;
1075 info->xmit_tail = (info->xmit_tail + small_count) &
1076 (SERIAL_XMIT_SIZE - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08001077 }
1078#else
1079 while (info->xmit_cnt && char_count) {
Alan Cox77451e52008-07-16 21:57:02 +01001080 data = info->port.xmit_buf[info->xmit_tail];
Jiri Slaby02f11752006-12-08 02:39:28 -08001081 info->xmit_cnt--;
1082 info->xmit_tail = (info->xmit_tail + 1) &
1083 (SERIAL_XMIT_SIZE - 1);
1084
1085 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1086 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1087 char_count--;
1088 info->icount.tx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090#endif
Jiri Slabyebafeef2007-10-18 03:06:20 -07001091 tty_wakeup(tty);
Jiri Slaby7fa57a02007-10-22 20:45:13 -07001092ztxdone:
Jiri Slaby02f11752006-12-08 02:39:28 -08001093 /* Update tx_put */
1094 cy_writel(&buf_ctrl->tx_put, tx_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
Jiri Slaby02f11752006-12-08 02:39:28 -08001098static void cyz_handle_cmd(struct cyclades_card *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001100 struct BOARD_CTRL __iomem *board_ctrl = cinfo->board_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08001101 struct tty_struct *tty;
1102 struct cyclades_port *info;
Jiri Slaby101b8152009-06-11 12:30:10 +01001103 __u32 channel, param, fw_ver;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001104 __u8 cmd;
Jiri Slaby02f11752006-12-08 02:39:28 -08001105 int special_count;
1106 int delta_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001108 fw_ver = readl(&board_ctrl->fw_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Jiri Slaby02f11752006-12-08 02:39:28 -08001110 while (cyz_fetch_msg(cinfo, &channel, &cmd, &param) == 1) {
1111 special_count = 0;
1112 delta_count = 0;
Jiri Slabydd025c02007-05-08 00:37:02 -07001113 info = &cinfo->ports[channel];
Jiri Slabyd13549f2009-09-19 13:13:12 -07001114 tty = tty_port_tty_get(&info->port);
Alan Cox15ed6cc2008-04-30 00:53:55 -07001115 if (tty == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08001116 continue;
Jiri Slabyf7429032007-05-08 00:36:59 -07001117
Jiri Slaby02f11752006-12-08 02:39:28 -08001118 switch (cmd) {
1119 case C_CM_PR_ERROR:
1120 tty_insert_flip_char(tty, 0, TTY_PARITY);
1121 info->icount.rx++;
1122 special_count++;
1123 break;
1124 case C_CM_FR_ERROR:
1125 tty_insert_flip_char(tty, 0, TTY_FRAME);
1126 info->icount.rx++;
1127 special_count++;
1128 break;
1129 case C_CM_RXBRK:
1130 tty_insert_flip_char(tty, 0, TTY_BREAK);
1131 info->icount.rx++;
1132 special_count++;
1133 break;
1134 case C_CM_MDCD:
1135 info->icount.dcd++;
1136 delta_count++;
Alan Cox77451e52008-07-16 21:57:02 +01001137 if (info->port.flags & ASYNC_CHECK_CD) {
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001138 u32 dcd = fw_ver > 241 ? param :
1139 readl(&info->u.cyz.ch_ctrl->rs_status);
Jiri Slaby174e6fe2009-09-19 13:13:13 -07001140 if (dcd & C_RS_DCD)
Alan Cox77451e52008-07-16 21:57:02 +01001141 wake_up_interruptible(&info->port.open_wait);
Jiri Slaby174e6fe2009-09-19 13:13:13 -07001142 else
Jiri Slabyd13549f2009-09-19 13:13:12 -07001143 tty_hangup(tty);
Jiri Slaby02f11752006-12-08 02:39:28 -08001144 }
1145 break;
1146 case C_CM_MCTS:
1147 info->icount.cts++;
1148 delta_count++;
1149 break;
1150 case C_CM_MRI:
1151 info->icount.rng++;
1152 delta_count++;
1153 break;
1154 case C_CM_MDSR:
1155 info->icount.dsr++;
1156 delta_count++;
1157 break;
1158#ifdef Z_WAKE
1159 case C_CM_IOCTLW:
Jiri Slabyebafeef2007-10-18 03:06:20 -07001160 complete(&info->shutdown_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001161 break;
1162#endif
1163#ifdef CONFIG_CYZ_INTR
1164 case C_CM_RXHIWM:
1165 case C_CM_RXNNDT:
1166 case C_CM_INTBACK2:
1167 /* Reception Interrupt */
1168#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001169 printk(KERN_DEBUG "cyz_interrupt: rcvd intr, card %d, "
1170 "port %ld\n", info->card, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001171#endif
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001172 cyz_handle_rx(info, tty);
Jiri Slaby02f11752006-12-08 02:39:28 -08001173 break;
1174 case C_CM_TXBEMPTY:
1175 case C_CM_TXLOWWM:
1176 case C_CM_INTBACK:
1177 /* Transmission Interrupt */
1178#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001179 printk(KERN_DEBUG "cyz_interrupt: xmit intr, card %d, "
1180 "port %ld\n", info->card, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001181#endif
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001182 cyz_handle_tx(info, tty);
Jiri Slaby02f11752006-12-08 02:39:28 -08001183 break;
1184#endif /* CONFIG_CYZ_INTR */
1185 case C_CM_FATAL:
1186 /* should do something with this !!! */
1187 break;
1188 default:
1189 break;
1190 }
1191 if (delta_count)
Alan Coxbdc04e32009-09-19 13:13:31 -07001192 wake_up_interruptible(&info->port.delta_msr_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001193 if (special_count)
1194 tty_schedule_flip(tty);
Jiri Slabyd13549f2009-09-19 13:13:12 -07001195 tty_kref_put(tty);
Jiri Slaby02f11752006-12-08 02:39:28 -08001196 }
1197}
1198
1199#ifdef CONFIG_CYZ_INTR
1200static irqreturn_t cyz_interrupt(int irq, void *dev_id)
1201{
Jiri Slabyf7429032007-05-08 00:36:59 -07001202 struct cyclades_card *cinfo = dev_id;
Jiri Slaby02f11752006-12-08 02:39:28 -08001203
Jiri Slaby2693f482009-06-11 12:31:06 +01001204 if (unlikely(!cyz_is_loaded(cinfo))) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001205#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001206 printk(KERN_DEBUG "cyz_interrupt: board not yet loaded "
1207 "(IRQ%d).\n", irq);
Jiri Slaby02f11752006-12-08 02:39:28 -08001208#endif
1209 return IRQ_NONE;
1210 }
1211
1212 /* Handle the interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 cyz_handle_cmd(cinfo);
1214
Jiri Slaby02f11752006-12-08 02:39:28 -08001215 return IRQ_HANDLED;
1216} /* cyz_interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Jiri Slaby02f11752006-12-08 02:39:28 -08001218static void cyz_rx_restart(unsigned long arg)
1219{
1220 struct cyclades_port *info = (struct cyclades_port *)arg;
Jiri Slaby875b2062007-05-08 00:36:49 -07001221 struct cyclades_card *card = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001222 int retval;
Jiri Slaby875b2062007-05-08 00:36:49 -07001223 __u32 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08001224 unsigned long flags;
1225
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001226 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07001227 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK2, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001228 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001229 printk(KERN_ERR "cyc:cyz_rx_restart retval on ttyC%d was %x\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08001230 info->line, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001232 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001233}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Jiri Slaby02f11752006-12-08 02:39:28 -08001235#else /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Jiri Slaby02f11752006-12-08 02:39:28 -08001237static void cyz_poll(unsigned long arg)
1238{
1239 struct cyclades_card *cinfo;
1240 struct cyclades_port *info;
Jiri Slabyb7050902007-05-08 00:35:48 -07001241 unsigned long expires = jiffies + HZ;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001242 unsigned int port, card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001243
Jiri Slaby02f11752006-12-08 02:39:28 -08001244 for (card = 0; card < NR_CARDS; card++) {
1245 cinfo = &cy_card[card];
1246
Jiri Slaby2693f482009-06-11 12:31:06 +01001247 if (!cy_is_Z(cinfo))
Jiri Slaby02f11752006-12-08 02:39:28 -08001248 continue;
Jiri Slaby2693f482009-06-11 12:31:06 +01001249 if (!cyz_is_loaded(cinfo))
Jiri Slaby02f11752006-12-08 02:39:28 -08001250 continue;
1251
Jiri Slaby02f11752006-12-08 02:39:28 -08001252 /* Skip first polling cycle to avoid racing conditions with the FW */
1253 if (!cinfo->intr_enabled) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001254 cinfo->intr_enabled = 1;
1255 continue;
1256 }
1257
1258 cyz_handle_cmd(cinfo);
1259
1260 for (port = 0; port < cinfo->nports; port++) {
Jiri Slabyd13549f2009-09-19 13:13:12 -07001261 struct tty_struct *tty;
1262
Jiri Slabydd025c02007-05-08 00:37:02 -07001263 info = &cinfo->ports[port];
Jiri Slabyd13549f2009-09-19 13:13:12 -07001264 tty = tty_port_tty_get(&info->port);
1265 /* OK to pass NULL to the handle functions below.
1266 They need to drop the data in that case. */
1267
Jiri Slaby02f11752006-12-08 02:39:28 -08001268 if (!info->throttle)
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001269 cyz_handle_rx(info, tty);
1270 cyz_handle_tx(info, tty);
Jiri Slabyd13549f2009-09-19 13:13:12 -07001271 tty_kref_put(tty);
Jiri Slaby02f11752006-12-08 02:39:28 -08001272 }
1273 /* poll every 'cyz_polling_cycle' period */
Jiri Slabyb7050902007-05-08 00:35:48 -07001274 expires = jiffies + cyz_polling_cycle;
Jiri Slaby02f11752006-12-08 02:39:28 -08001275 }
Jiri Slabyb7050902007-05-08 00:35:48 -07001276 mod_timer(&cyz_timerlist, expires);
Jiri Slaby02f11752006-12-08 02:39:28 -08001277} /* cyz_poll */
1278
1279#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281/********** End of block of Cyclades-Z specific code *********/
1282/***********************************************************/
1283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284/* This is called whenever a port becomes active;
1285 interrupts are enabled and DTR & RTS are turned on.
1286 */
Jiri Slabyd13549f2009-09-19 13:13:12 -07001287static int cy_startup(struct cyclades_port *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
Jiri Slaby875b2062007-05-08 00:36:49 -07001289 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001290 unsigned long flags;
1291 int retval = 0;
Jiri Slabycc7fdf42009-09-19 13:13:15 -07001292 int channel;
Jiri Slaby02f11752006-12-08 02:39:28 -08001293 unsigned long page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Jiri Slaby02f11752006-12-08 02:39:28 -08001295 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07001296 channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Jiri Slaby02f11752006-12-08 02:39:28 -08001298 page = get_zeroed_page(GFP_KERNEL);
1299 if (!page)
1300 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001302 spin_lock_irqsave(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Jiri Slabycc7fdf42009-09-19 13:13:15 -07001304 if (info->port.flags & ASYNC_INITIALIZED)
Jiri Slaby02f11752006-12-08 02:39:28 -08001305 goto errout;
Jiri Slaby02f11752006-12-08 02:39:28 -08001306
1307 if (!info->type) {
Jiri Slabyd13549f2009-09-19 13:13:12 -07001308 set_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001309 goto errout;
1310 }
1311
Alan Cox77451e52008-07-16 21:57:02 +01001312 if (info->port.xmit_buf)
Jiri Slaby02f11752006-12-08 02:39:28 -08001313 free_page(page);
1314 else
Alan Cox77451e52008-07-16 21:57:02 +01001315 info->port.xmit_buf = (unsigned char *)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001317 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Jiri Slabyd13549f2009-09-19 13:13:12 -07001319 cy_set_line_char(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Jiri Slaby2693f482009-06-11 12:31:06 +01001321 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001322 channel &= 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001324 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001325
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001326 cyy_writeb(info, CyCAR, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001327
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001328 cyy_writeb(info, CyRTPR,
Jiri Slaby02f11752006-12-08 02:39:28 -08001329 (info->default_timeout ? info->default_timeout : 0x02));
1330 /* 10ms rx timeout */
1331
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001332 cyy_issue_cmd(info, CyCHAN_CTL | CyENB_RCVR | CyENB_XMTR);
Jiri Slaby02f11752006-12-08 02:39:28 -08001333
Jiri Slaby4d768202009-09-19 13:13:15 -07001334 cyy_change_rts_dtr(info, TIOCM_RTS | TIOCM_DTR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001336 cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyRxData);
Jiri Slaby02f11752006-12-08 02:39:28 -08001337 } else {
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001338 struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08001339
Jiri Slaby2693f482009-06-11 12:31:06 +01001340 if (!cyz_is_loaded(card))
Jiri Slaby02f11752006-12-08 02:39:28 -08001341 return -ENODEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08001342
Jiri Slaby02f11752006-12-08 02:39:28 -08001343#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001344 printk(KERN_DEBUG "cyc startup Z card %d, channel %d, "
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001345 "base_addr %p\n", card, channel, card->base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001346#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001347 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001348
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001349 cy_writel(&ch_ctrl->op_mode, C_CH_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350#ifdef Z_WAKE
1351#ifdef CONFIG_CYZ_INTR
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001352 cy_writel(&ch_ctrl->intr_enable,
Jiri Slaby02f11752006-12-08 02:39:28 -08001353 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
1354 C_IN_RXNNDT | C_IN_IOCTLW | C_IN_MDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355#else
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001356 cy_writel(&ch_ctrl->intr_enable,
Jiri Slaby02f11752006-12-08 02:39:28 -08001357 C_IN_IOCTLW | C_IN_MDCD);
1358#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359#else
1360#ifdef CONFIG_CYZ_INTR
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001361 cy_writel(&ch_ctrl->intr_enable,
Jiri Slaby02f11752006-12-08 02:39:28 -08001362 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
1363 C_IN_RXNNDT | C_IN_MDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364#else
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001365 cy_writel(&ch_ctrl->intr_enable, C_IN_MDCD);
Jiri Slaby02f11752006-12-08 02:39:28 -08001366#endif /* CONFIG_CYZ_INTR */
1367#endif /* Z_WAKE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Jiri Slaby875b2062007-05-08 00:36:49 -07001369 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001370 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001371 printk(KERN_ERR "cyc:startup(1) retval on ttyC%d was "
1372 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Jiri Slaby02f11752006-12-08 02:39:28 -08001375 /* Flush RX buffers before raising DTR and RTS */
Jiri Slaby875b2062007-05-08 00:36:49 -07001376 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_RX, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001377 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001378 printk(KERN_ERR "cyc:startup(2) retval on ttyC%d was "
1379 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Jiri Slaby02f11752006-12-08 02:39:28 -08001382 /* set timeout !!! */
1383 /* set RTS and DTR !!! */
Jiri Slaby4d768202009-09-19 13:13:15 -07001384 tty_port_raise_dtr_rts(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Jiri Slaby02f11752006-12-08 02:39:28 -08001386 /* enable send, recv, modem !!! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Jiri Slabycc7fdf42009-09-19 13:13:15 -07001389 info->port.flags |= ASYNC_INITIALIZED;
1390
1391 clear_bit(TTY_IO_ERROR, &tty->flags);
1392 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1393 info->breakon = info->breakoff = 0;
1394 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
1395 info->idle_stats.in_use =
1396 info->idle_stats.recv_idle =
1397 info->idle_stats.xmit_idle = jiffies;
1398
1399 spin_unlock_irqrestore(&card->card_lock, flags);
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001402 printk(KERN_DEBUG "cyc startup done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403#endif
1404 return 0;
1405
1406errout:
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001407 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slabycc7fdf42009-09-19 13:13:15 -07001408 free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08001410} /* startup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Jiri Slaby02f11752006-12-08 02:39:28 -08001412static void start_xmit(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001414 struct cyclades_card *card = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001415 unsigned long flags;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001416 int channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Jiri Slaby2693f482009-06-11 12:31:06 +01001418 if (!cy_is_Z(card)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001419 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001420 cyy_writeb(info, CyCAR, channel & 0x03);
1421 cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyTxRdy);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001422 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001423 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001425 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001427 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07001428 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001429 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001430 printk(KERN_ERR "cyc:start_xmit retval on ttyC%d was "
1431 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001432 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001433 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001434#else /* CONFIG_CYZ_INTR */
1435 /* Don't have to do anything at this time */
1436#endif /* CONFIG_CYZ_INTR */
1437 }
1438} /* start_xmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440/*
1441 * This routine shuts down a serial port; interrupts are disabled,
1442 * and DTR is dropped if the hangup on close termio flag is on.
1443 */
Jiri Slabyd13549f2009-09-19 13:13:12 -07001444static void cy_shutdown(struct cyclades_port *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Jiri Slaby875b2062007-05-08 00:36:49 -07001446 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001447 unsigned long flags;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001448 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Alan Cox77451e52008-07-16 21:57:02 +01001450 if (!(info->port.flags & ASYNC_INITIALIZED))
Jiri Slaby02f11752006-12-08 02:39:28 -08001451 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Jiri Slaby02f11752006-12-08 02:39:28 -08001453 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07001454 channel = info->line - card->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01001455 if (!cy_is_Z(card)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001456 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001457
1458 /* Clear delta_msr_wait queue to avoid mem leaks. */
Alan Coxbdc04e32009-09-19 13:13:31 -07001459 wake_up_interruptible(&info->port.delta_msr_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001460
Alan Cox77451e52008-07-16 21:57:02 +01001461 if (info->port.xmit_buf) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001462 unsigned char *temp;
Alan Cox77451e52008-07-16 21:57:02 +01001463 temp = info->port.xmit_buf;
1464 info->port.xmit_buf = NULL;
Jiri Slaby02f11752006-12-08 02:39:28 -08001465 free_page((unsigned long)temp);
1466 }
Jiri Slaby4d768202009-09-19 13:13:15 -07001467 if (tty->termios->c_cflag & HUPCL)
1468 cyy_change_rts_dtr(info, 0, TIOCM_RTS | TIOCM_DTR);
1469
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001470 cyy_issue_cmd(info, CyCHAN_CTL | CyDIS_RCVR);
Jiri Slaby02f11752006-12-08 02:39:28 -08001471 /* it may be appropriate to clear _XMIT at
1472 some later date (after testing)!!! */
1473
Jiri Slabyd13549f2009-09-19 13:13:12 -07001474 set_bit(TTY_IO_ERROR, &tty->flags);
Alan Cox77451e52008-07-16 21:57:02 +01001475 info->port.flags &= ~ASYNC_INITIALIZED;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001476 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001477 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08001478#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001479 printk(KERN_DEBUG "cyc shutdown Z card %d, channel %d, "
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001480 "base_addr %p\n", card, channel, card->base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001481#endif
1482
Jiri Slaby2693f482009-06-11 12:31:06 +01001483 if (!cyz_is_loaded(card))
Jiri Slaby02f11752006-12-08 02:39:28 -08001484 return;
Jiri Slaby02f11752006-12-08 02:39:28 -08001485
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001486 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001487
Alan Cox77451e52008-07-16 21:57:02 +01001488 if (info->port.xmit_buf) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001489 unsigned char *temp;
Alan Cox77451e52008-07-16 21:57:02 +01001490 temp = info->port.xmit_buf;
1491 info->port.xmit_buf = NULL;
Jiri Slaby02f11752006-12-08 02:39:28 -08001492 free_page((unsigned long)temp);
1493 }
1494
Jiri Slaby4d768202009-09-19 13:13:15 -07001495 if (tty->termios->c_cflag & HUPCL)
1496 tty_port_lower_dtr_rts(&info->port);
Jiri Slaby02f11752006-12-08 02:39:28 -08001497
Jiri Slabyd13549f2009-09-19 13:13:12 -07001498 set_bit(TTY_IO_ERROR, &tty->flags);
Alan Cox77451e52008-07-16 21:57:02 +01001499 info->port.flags &= ~ASYNC_INITIALIZED;
Jiri Slaby02f11752006-12-08 02:39:28 -08001500
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001501 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001502 }
1503
1504#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001505 printk(KERN_DEBUG "cyc shutdown done\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08001506#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001507} /* shutdown */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509/*
1510 * ------------------------------------------------------------
1511 * cy_open() and friends
1512 * ------------------------------------------------------------
1513 */
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515/*
1516 * This routine is called whenever a serial port is opened. It
1517 * performs the serial-specific initialization for the tty structure.
1518 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001519static int cy_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Jiri Slaby02f11752006-12-08 02:39:28 -08001521 struct cyclades_port *info;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001522 unsigned int i, line;
1523 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Jiri Slaby02f11752006-12-08 02:39:28 -08001525 line = tty->index;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001526 if (tty->index < 0 || NR_PORTS <= line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return -ENODEV;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001528
Jiri Slabydd025c02007-05-08 00:37:02 -07001529 for (i = 0; i < NR_CARDS; i++)
1530 if (line < cy_card[i].first_line + cy_card[i].nports &&
1531 line >= cy_card[i].first_line)
1532 break;
1533 if (i >= NR_CARDS)
1534 return -ENODEV;
1535 info = &cy_card[i].ports[line - cy_card[i].first_line];
Alan Cox15ed6cc2008-04-30 00:53:55 -07001536 if (info->line < 0)
Jiri Slaby02f11752006-12-08 02:39:28 -08001537 return -ENODEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08001538
1539 /* If the card's firmware hasn't been loaded,
1540 treat it as absent from the system. This
1541 will make the user pay attention.
1542 */
Jiri Slaby2693f482009-06-11 12:31:06 +01001543 if (cy_is_Z(info->card)) {
Jiri Slaby875b2062007-05-08 00:36:49 -07001544 struct cyclades_card *cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001545 struct FIRM_ID __iomem *firm_id = cinfo->base_addr + ID_ADDRESS;
1546
Jiri Slaby2693f482009-06-11 12:31:06 +01001547 if (!cyz_is_loaded(cinfo)) {
1548 if (cinfo->hw_ver == ZE_V1 && cyz_fpga_loaded(cinfo) &&
Jiri Slaby101b8152009-06-11 12:30:10 +01001549 readl(&firm_id->signature) ==
1550 ZFIRM_HLT) {
Jiri Slaby21719192007-05-08 00:36:42 -07001551 printk(KERN_ERR "cyc:Cyclades-Z Error: you "
1552 "need an external power supply for "
1553 "this number of ports.\nFirmware "
1554 "halted.\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08001555 } else {
Jiri Slaby21719192007-05-08 00:36:42 -07001556 printk(KERN_ERR "cyc:Cyclades-Z firmware not "
1557 "yet loaded\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08001558 }
1559 return -ENODEV;
1560 }
1561#ifdef CONFIG_CYZ_INTR
1562 else {
1563 /* In case this Z board is operating in interrupt mode, its
1564 interrupts should be enabled as soon as the first open
1565 happens to one of its ports. */
1566 if (!cinfo->intr_enabled) {
Jiri Slaby97e87f82009-06-11 12:29:27 +01001567 u16 intr;
Jiri Slaby02f11752006-12-08 02:39:28 -08001568
Jiri Slaby02f11752006-12-08 02:39:28 -08001569 /* Enable interrupts on the PLX chip */
Jiri Slaby97e87f82009-06-11 12:29:27 +01001570 intr = readw(&cinfo->ctl_addr.p9060->
1571 intr_ctrl_stat) | 0x0900;
1572 cy_writew(&cinfo->ctl_addr.p9060->
1573 intr_ctrl_stat, intr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001574 /* Enable interrupts on the FW */
1575 retval = cyz_issue_cmd(cinfo, 0,
1576 C_CM_IRQ_ENBL, 0L);
1577 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001578 printk(KERN_ERR "cyc:IRQ enable retval "
1579 "was %x\n", retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001580 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001581 cinfo->intr_enabled = 1;
1582 }
1583 }
1584#endif /* CONFIG_CYZ_INTR */
1585 /* Make sure this Z port really exists in hardware */
1586 if (info->line > (cinfo->first_line + cinfo->nports - 1))
1587 return -ENODEV;
1588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07001590 printk(KERN_DEBUG "cyc:cy_open ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001592 tty->driver_data = info;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001593 if (serial_paranoia_check(info, tty->name, "cy_open"))
Jiri Slaby02f11752006-12-08 02:39:28 -08001594 return -ENODEV;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001597 printk(KERN_DEBUG "cyc:cy_open ttyC%d, count = %d\n", info->line,
Alan Cox77451e52008-07-16 21:57:02 +01001598 info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599#endif
Alan Cox77451e52008-07-16 21:57:02 +01001600 info->port.count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07001602 printk(KERN_DEBUG "cyc:cy_open (%d): incrementing count to %d\n",
Alan Cox77451e52008-07-16 21:57:02 +01001603 current->pid, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Jiri Slaby02f11752006-12-08 02:39:28 -08001606 /*
1607 * If the port is the middle of closing, bail out now
1608 */
Alan Cox77451e52008-07-16 21:57:02 +01001609 if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) {
Arnd Bergmannbe1bc282010-06-01 22:53:05 +02001610 wait_event_interruptible_tty(info->port.close_wait,
Alan Cox77451e52008-07-16 21:57:02 +01001611 !(info->port.flags & ASYNC_CLOSING));
1612 return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
Jiri Slaby02f11752006-12-08 02:39:28 -08001613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Jiri Slaby02f11752006-12-08 02:39:28 -08001615 /*
1616 * Start up serial port
1617 */
Jiri Slabyd13549f2009-09-19 13:13:12 -07001618 retval = cy_startup(info, tty);
Alan Cox15ed6cc2008-04-30 00:53:55 -07001619 if (retval)
Jiri Slaby02f11752006-12-08 02:39:28 -08001620 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Jiri Slabyf0737572009-09-19 13:13:12 -07001622 retval = tty_port_block_til_ready(&info->port, tty, filp);
Jiri Slaby02f11752006-12-08 02:39:28 -08001623 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001625 printk(KERN_DEBUG "cyc:cy_open returning after block_til_ready "
1626 "with %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001628 return retval;
1629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Jiri Slaby02f11752006-12-08 02:39:28 -08001631 info->throttle = 0;
Jiri Slabyd13549f2009-09-19 13:13:12 -07001632 tty_port_tty_set(&info->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001635 printk(KERN_DEBUG "cyc:cy_open done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001637 return 0;
1638} /* cy_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640/*
1641 * cy_wait_until_sent() --- wait until the transmitter is empty
1642 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001643static void cy_wait_until_sent(struct tty_struct *tty, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Jiri Slaby875b2062007-05-08 00:36:49 -07001645 struct cyclades_card *card;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07001646 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08001647 unsigned long orig_jiffies;
1648 int char_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Jiri Slaby02f11752006-12-08 02:39:28 -08001650 if (serial_paranoia_check(info, tty->name, "cy_wait_until_sent"))
1651 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Jiri Slaby02f11752006-12-08 02:39:28 -08001653 if (info->xmit_fifo_size == 0)
1654 return; /* Just in case.... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Jiri Slaby02f11752006-12-08 02:39:28 -08001656 orig_jiffies = jiffies;
1657 /*
1658 * Set the check interval to be 1/5 of the estimated time to
1659 * send a single character, and make it at least 1. The check
1660 * interval should also be less than the timeout.
1661 *
1662 * Note: we have to use pretty tight timings here to satisfy
1663 * the NIST-PCTS.
1664 */
1665 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
1666 char_time = char_time / 5;
1667 if (char_time <= 0)
1668 char_time = 1;
1669 if (timeout < 0)
1670 timeout = 0;
1671 if (timeout)
1672 char_time = min(char_time, timeout);
1673 /*
1674 * If the transmitter hasn't cleared in twice the approximate
1675 * amount of time to send the entire FIFO, it probably won't
1676 * ever clear. This assumes the UART isn't doing flow
1677 * control, which is currently the case. Hence, if it ever
1678 * takes longer than info->timeout, this is probably due to a
1679 * UART bug of some kind. So, we clamp the timeout parameter at
1680 * 2*info->timeout.
1681 */
1682 if (!timeout || timeout > 2 * info->timeout)
1683 timeout = 2 * info->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07001685 printk(KERN_DEBUG "In cy_wait_until_sent(%d) check=%d, jiff=%lu...",
1686 timeout, char_time, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001688 card = info->card;
Jiri Slaby2693f482009-06-11 12:31:06 +01001689 if (!cy_is_Z(card)) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001690 while (cyy_readb(info, CySRER) & CyTxRdy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07001692 printk(KERN_DEBUG "Not clean (jiff=%lu)...", jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001694 if (msleep_interruptible(jiffies_to_msecs(char_time)))
1695 break;
1696 if (timeout && time_after(jiffies, orig_jiffies +
1697 timeout))
1698 break;
1699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001701 /* Run one more char cycle */
1702 msleep_interruptible(jiffies_to_msecs(char_time * 5));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07001704 printk(KERN_DEBUG "Clean (jiff=%lu)...done\n", jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705#endif
1706}
1707
Alan Cox978e5952008-04-30 00:53:59 -07001708static void cy_flush_buffer(struct tty_struct *tty)
1709{
1710 struct cyclades_port *info = tty->driver_data;
1711 struct cyclades_card *card;
1712 int channel, retval;
1713 unsigned long flags;
1714
1715#ifdef CY_DEBUG_IO
1716 printk(KERN_DEBUG "cyc:cy_flush_buffer ttyC%d\n", info->line);
1717#endif
1718
1719 if (serial_paranoia_check(info, tty->name, "cy_flush_buffer"))
1720 return;
1721
1722 card = info->card;
1723 channel = info->line - card->first_line;
1724
1725 spin_lock_irqsave(&card->card_lock, flags);
1726 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1727 spin_unlock_irqrestore(&card->card_lock, flags);
1728
Jiri Slaby2693f482009-06-11 12:31:06 +01001729 if (cy_is_Z(card)) { /* If it is a Z card, flush the on-board
Alan Cox978e5952008-04-30 00:53:59 -07001730 buffers as well */
1731 spin_lock_irqsave(&card->card_lock, flags);
1732 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_TX, 0L);
1733 if (retval != 0) {
1734 printk(KERN_ERR "cyc: flush_buffer retval on ttyC%d "
1735 "was %x\n", info->line, retval);
1736 }
1737 spin_unlock_irqrestore(&card->card_lock, flags);
1738 }
1739 tty_wakeup(tty);
1740} /* cy_flush_buffer */
1741
1742
Alan Coxe936ffd2009-09-19 13:13:22 -07001743static void cy_do_close(struct tty_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Alan Coxe936ffd2009-09-19 13:13:22 -07001745 struct cyclades_port *info = container_of(port, struct cyclades_port,
1746 port);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001747 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001748 unsigned long flags;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001749 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001751 card = info->card;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001752 channel = info->line - card->first_line;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001753 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001754
Jiri Slaby2693f482009-06-11 12:31:06 +01001755 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001756 /* Stop accepting input */
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07001757 cyy_writeb(info, CyCAR, channel & 0x03);
1758 cyy_writeb(info, CySRER, cyy_readb(info, CySRER) & ~CyRxData);
Alan Cox77451e52008-07-16 21:57:02 +01001759 if (info->port.flags & ASYNC_INITIALIZED) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07001760 /* Waiting for on-board buffers to be empty before
1761 closing the port */
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001762 spin_unlock_irqrestore(&card->card_lock, flags);
Alan Coxe936ffd2009-09-19 13:13:22 -07001763 cy_wait_until_sent(port->tty, info->timeout);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001764 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001765 }
1766 } else {
1767#ifdef Z_WAKE
Alan Cox15ed6cc2008-04-30 00:53:55 -07001768 /* Waiting for on-board buffers to be empty before closing
1769 the port */
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001770 struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08001771 int retval;
1772
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001773 if (readl(&ch_ctrl->flow_status) != C_FS_TXIDLE) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001774 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLW, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001775 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001776 printk(KERN_DEBUG "cyc:cy_close retval on "
1777 "ttyC%d was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001778 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001779 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07001780 wait_for_completion_interruptible(&info->shutdown_wait);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001781 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001782 }
1783#endif
1784 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001785 spin_unlock_irqrestore(&card->card_lock, flags);
Alan Coxe936ffd2009-09-19 13:13:22 -07001786 cy_shutdown(info, port->tty);
1787}
Jiri Slaby02f11752006-12-08 02:39:28 -08001788
Alan Coxe936ffd2009-09-19 13:13:22 -07001789/*
1790 * This routine is called when a particular tty device is closed.
1791 */
1792static void cy_close(struct tty_struct *tty, struct file *filp)
1793{
1794 struct cyclades_port *info = tty->driver_data;
1795 if (!info || serial_paranoia_check(info, tty->name, "cy_close"))
1796 return;
1797 tty_port_close(&info->port, tty, filp);
Jiri Slaby02f11752006-12-08 02:39:28 -08001798} /* cy_close */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800/* This routine gets called when tty_write has put something into
1801 * the write_queue. The characters may come from user space or
1802 * kernel space.
1803 *
1804 * This routine will return the number of characters actually
1805 * accepted for writing.
1806 *
1807 * If the port is not already transmitting stuff, start it off by
1808 * enabling interrupts. The interrupt service routine will then
1809 * ensure that the characters are sent.
1810 * If the port is already active, there is no need to kick it.
1811 *
1812 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001813static int cy_write(struct tty_struct *tty, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07001815 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08001816 unsigned long flags;
1817 int c, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
1819#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07001820 printk(KERN_DEBUG "cyc:cy_write ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821#endif
1822
Alan Cox15ed6cc2008-04-30 00:53:55 -07001823 if (serial_paranoia_check(info, tty->name, "cy_write"))
Jiri Slaby02f11752006-12-08 02:39:28 -08001824 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Alan Cox77451e52008-07-16 21:57:02 +01001826 if (!info->port.xmit_buf)
Jiri Slaby02f11752006-12-08 02:39:28 -08001827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001829 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001830 while (1) {
Harvey Harrison1a4e2352008-04-30 00:53:52 -07001831 c = min(count, (int)(SERIAL_XMIT_SIZE - info->xmit_cnt - 1));
1832 c = min(c, (int)(SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Jiri Slaby02f11752006-12-08 02:39:28 -08001834 if (c <= 0)
1835 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Alan Cox77451e52008-07-16 21:57:02 +01001837 memcpy(info->port.xmit_buf + info->xmit_head, buf, c);
Jiri Slaby02f11752006-12-08 02:39:28 -08001838 info->xmit_head = (info->xmit_head + c) &
1839 (SERIAL_XMIT_SIZE - 1);
1840 info->xmit_cnt += c;
1841 buf += c;
1842 count -= c;
1843 ret += c;
1844 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001845 spin_unlock_irqrestore(&info->card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Jiri Slaby02f11752006-12-08 02:39:28 -08001847 info->idle_stats.xmit_bytes += ret;
1848 info->idle_stats.xmit_idle = jiffies;
1849
Alan Cox15ed6cc2008-04-30 00:53:55 -07001850 if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped)
Jiri Slaby02f11752006-12-08 02:39:28 -08001851 start_xmit(info);
Alan Cox15ed6cc2008-04-30 00:53:55 -07001852
Jiri Slaby02f11752006-12-08 02:39:28 -08001853 return ret;
1854} /* cy_write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856/*
1857 * This routine is called by the kernel to write a single
1858 * character to the tty device. If the kernel uses this routine,
1859 * it must call the flush_chars() routine (if defined) when it is
1860 * done stuffing characters into the driver. If there is no room
1861 * in the queue, the character is ignored.
1862 */
Alan Cox76b25a52008-04-30 00:54:03 -07001863static int cy_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07001865 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08001866 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07001869 printk(KERN_DEBUG "cyc:cy_put_char ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870#endif
1871
Jiri Slaby02f11752006-12-08 02:39:28 -08001872 if (serial_paranoia_check(info, tty->name, "cy_put_char"))
Alan Cox76b25a52008-04-30 00:54:03 -07001873 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Alan Cox77451e52008-07-16 21:57:02 +01001875 if (!info->port.xmit_buf)
Alan Cox76b25a52008-04-30 00:54:03 -07001876 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001878 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby90cc3012006-12-08 02:39:31 -08001879 if (info->xmit_cnt >= (int)(SERIAL_XMIT_SIZE - 1)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001880 spin_unlock_irqrestore(&info->card->card_lock, flags);
Alan Cox76b25a52008-04-30 00:54:03 -07001881 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08001882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Alan Cox77451e52008-07-16 21:57:02 +01001884 info->port.xmit_buf[info->xmit_head++] = ch;
Jiri Slaby02f11752006-12-08 02:39:28 -08001885 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
1886 info->xmit_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 info->idle_stats.xmit_bytes++;
1888 info->idle_stats.xmit_idle = jiffies;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001889 spin_unlock_irqrestore(&info->card->card_lock, flags);
Alan Cox76b25a52008-04-30 00:54:03 -07001890 return 1;
Jiri Slaby02f11752006-12-08 02:39:28 -08001891} /* cy_put_char */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893/*
1894 * This routine is called by the kernel after it has written a
Alan Cox15ed6cc2008-04-30 00:53:55 -07001895 * series of characters to the tty device using put_char().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001897static void cy_flush_chars(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07001899 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08001900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07001902 printk(KERN_DEBUG "cyc:cy_flush_chars ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903#endif
1904
Jiri Slaby02f11752006-12-08 02:39:28 -08001905 if (serial_paranoia_check(info, tty->name, "cy_flush_chars"))
1906 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Jiri Slaby02f11752006-12-08 02:39:28 -08001908 if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
Alan Cox77451e52008-07-16 21:57:02 +01001909 !info->port.xmit_buf)
Jiri Slaby02f11752006-12-08 02:39:28 -08001910 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Jiri Slaby02f11752006-12-08 02:39:28 -08001912 start_xmit(info);
1913} /* cy_flush_chars */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915/*
1916 * This routine returns the numbers of characters the tty driver
1917 * will accept for queuing to be written. This number is subject
1918 * to change as output buffers get emptied, or if the output flow
1919 * control is activated.
1920 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001921static int cy_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07001923 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08001924 int ret;
1925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07001927 printk(KERN_DEBUG "cyc:cy_write_room ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928#endif
1929
Jiri Slaby02f11752006-12-08 02:39:28 -08001930 if (serial_paranoia_check(info, tty->name, "cy_write_room"))
1931 return 0;
1932 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
1933 if (ret < 0)
1934 ret = 0;
1935 return ret;
1936} /* cy_write_room */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Jiri Slaby02f11752006-12-08 02:39:28 -08001938static int cy_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07001940 struct cyclades_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Jiri Slaby02f11752006-12-08 02:39:28 -08001942 if (serial_paranoia_check(info, tty->name, "cy_chars_in_buffer"))
1943 return 0;
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945#ifdef Z_EXT_CHARS_IN_BUFFER
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001946 if (!cy_is_Z(info->card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001947#endif /* Z_EXT_CHARS_IN_BUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07001949 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
1950 info->line, info->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001952 return info->xmit_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953#ifdef Z_EXT_CHARS_IN_BUFFER
Jiri Slaby02f11752006-12-08 02:39:28 -08001954 } else {
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07001955 struct BUF_CTRL __iomem *buf_ctrl = info->u.cyz.buf_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08001956 int char_count;
Jiri Slabyad39c302007-05-08 00:35:49 -07001957 __u32 tx_put, tx_get, tx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001959 tx_get = readl(&buf_ctrl->tx_get);
1960 tx_put = readl(&buf_ctrl->tx_put);
1961 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
Jiri Slaby02f11752006-12-08 02:39:28 -08001962 if (tx_put >= tx_get)
1963 char_count = tx_put - tx_get;
1964 else
1965 char_count = tx_put - tx_get + tx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07001967 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
1968 info->line, info->xmit_cnt + char_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969#endif
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001970 return info->xmit_cnt + char_count;
Jiri Slaby02f11752006-12-08 02:39:28 -08001971 }
1972#endif /* Z_EXT_CHARS_IN_BUFFER */
1973} /* cy_chars_in_buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975/*
1976 * ------------------------------------------------------------
1977 * cy_ioctl() and friends
1978 * ------------------------------------------------------------
1979 */
1980
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001981static void cyy_baud_calc(struct cyclades_port *info, __u32 baud)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
Jiri Slaby02f11752006-12-08 02:39:28 -08001983 int co, co_val, bpr;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001984 __u32 cy_clock = ((info->chip_rev >= CD1400_REV_J) ? 60000000 :
Jiri Slaby02f11752006-12-08 02:39:28 -08001985 25000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Jiri Slaby02f11752006-12-08 02:39:28 -08001987 if (baud == 0) {
1988 info->tbpr = info->tco = info->rbpr = info->rco = 0;
1989 return;
1990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Jiri Slaby02f11752006-12-08 02:39:28 -08001992 /* determine which prescaler to use */
1993 for (co = 4, co_val = 2048; co; co--, co_val >>= 2) {
1994 if (cy_clock / co_val / baud > 63)
1995 break;
1996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Jiri Slaby02f11752006-12-08 02:39:28 -08001998 bpr = (cy_clock / co_val * 2 / baud + 1) / 2;
1999 if (bpr > 255)
2000 bpr = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Jiri Slaby02f11752006-12-08 02:39:28 -08002002 info->tbpr = info->rbpr = bpr;
2003 info->tco = info->rco = co;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004}
2005
2006/*
2007 * This routine finds or computes the various line characteristics.
2008 * It used to be called config_setup
2009 */
Jiri Slabyd13549f2009-09-19 13:13:12 -07002010static void cy_set_line_char(struct cyclades_port *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
Jiri Slaby875b2062007-05-08 00:36:49 -07002012 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002013 unsigned long flags;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002014 int channel;
Jiri Slaby02f11752006-12-08 02:39:28 -08002015 unsigned cflag, iflag;
Jiri Slaby02f11752006-12-08 02:39:28 -08002016 int baud, baud_rate = 0;
2017 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Jiri Slabyd13549f2009-09-19 13:13:12 -07002019 if (!tty->termios) /* XXX can this happen at all? */
Jiri Slaby02f11752006-12-08 02:39:28 -08002020 return;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002021
2022 if (info->line == -1)
Jiri Slaby02f11752006-12-08 02:39:28 -08002023 return;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002024
Jiri Slabyd13549f2009-09-19 13:13:12 -07002025 cflag = tty->termios->c_cflag;
2026 iflag = tty->termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Jiri Slaby02f11752006-12-08 02:39:28 -08002028 /*
2029 * Set up the tty->alt_speed kludge
2030 */
Jiri Slabyd13549f2009-09-19 13:13:12 -07002031 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
2032 tty->alt_speed = 57600;
2033 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
2034 tty->alt_speed = 115200;
2035 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
2036 tty->alt_speed = 230400;
2037 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
2038 tty->alt_speed = 460800;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Jiri Slaby02f11752006-12-08 02:39:28 -08002040 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002041 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08002042
Jiri Slaby2693f482009-06-11 12:31:06 +01002043 if (!cy_is_Z(card)) {
Jiri Slaby46fb7822009-09-19 13:13:17 -07002044 u32 cflags;
2045
Jiri Slaby02f11752006-12-08 02:39:28 -08002046 /* baud rate */
Jiri Slabyd13549f2009-09-19 13:13:12 -07002047 baud = tty_get_baud_rate(tty);
Alan Cox77451e52008-07-16 21:57:02 +01002048 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08002049 ASYNC_SPD_CUST) {
2050 if (info->custom_divisor)
2051 baud_rate = info->baud / info->custom_divisor;
2052 else
2053 baud_rate = info->baud;
2054 } else if (baud > CD1400_MAX_SPEED) {
2055 baud = CD1400_MAX_SPEED;
2056 }
2057 /* find the baud index */
2058 for (i = 0; i < 20; i++) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07002059 if (baud == baud_table[i])
Jiri Slaby02f11752006-12-08 02:39:28 -08002060 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08002061 }
Alan Cox15ed6cc2008-04-30 00:53:55 -07002062 if (i == 20)
Jiri Slaby02f11752006-12-08 02:39:28 -08002063 i = 19; /* CD1400_MAX_SPEED */
Jiri Slaby02f11752006-12-08 02:39:28 -08002064
Alan Cox77451e52008-07-16 21:57:02 +01002065 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08002066 ASYNC_SPD_CUST) {
2067 cyy_baud_calc(info, baud_rate);
2068 } else {
2069 if (info->chip_rev >= CD1400_REV_J) {
2070 /* It is a CD1400 rev. J or later */
2071 info->tbpr = baud_bpr_60[i]; /* Tx BPR */
2072 info->tco = baud_co_60[i]; /* Tx CO */
2073 info->rbpr = baud_bpr_60[i]; /* Rx BPR */
2074 info->rco = baud_co_60[i]; /* Rx CO */
2075 } else {
2076 info->tbpr = baud_bpr_25[i]; /* Tx BPR */
2077 info->tco = baud_co_25[i]; /* Tx CO */
2078 info->rbpr = baud_bpr_25[i]; /* Rx BPR */
2079 info->rco = baud_co_25[i]; /* Rx CO */
2080 }
2081 }
2082 if (baud_table[i] == 134) {
2083 /* get it right for 134.5 baud */
2084 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
2085 2;
Alan Cox77451e52008-07-16 21:57:02 +01002086 } else if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08002087 ASYNC_SPD_CUST) {
2088 info->timeout = (info->xmit_fifo_size * HZ * 15 /
2089 baud_rate) + 2;
2090 } else if (baud_table[i]) {
2091 info->timeout = (info->xmit_fifo_size * HZ * 15 /
2092 baud_table[i]) + 2;
2093 /* this needs to be propagated into the card info */
2094 } else {
2095 info->timeout = 0;
2096 }
2097 /* By tradition (is it a standard?) a baud rate of zero
2098 implies the line should be/has been closed. A bit
2099 later in this routine such a test is performed. */
2100
2101 /* byte size and parity */
2102 info->cor5 = 0;
2103 info->cor4 = 0;
2104 /* receive threshold */
2105 info->cor3 = (info->default_threshold ?
2106 info->default_threshold : baud_cor3[i]);
2107 info->cor2 = CyETC;
2108 switch (cflag & CSIZE) {
2109 case CS5:
2110 info->cor1 = Cy_5_BITS;
2111 break;
2112 case CS6:
2113 info->cor1 = Cy_6_BITS;
2114 break;
2115 case CS7:
2116 info->cor1 = Cy_7_BITS;
2117 break;
2118 case CS8:
2119 info->cor1 = Cy_8_BITS;
2120 break;
2121 }
Alan Cox15ed6cc2008-04-30 00:53:55 -07002122 if (cflag & CSTOPB)
Jiri Slaby02f11752006-12-08 02:39:28 -08002123 info->cor1 |= Cy_2_STOP;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002124
Jiri Slaby02f11752006-12-08 02:39:28 -08002125 if (cflag & PARENB) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07002126 if (cflag & PARODD)
Jiri Slaby02f11752006-12-08 02:39:28 -08002127 info->cor1 |= CyPARITY_O;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002128 else
Jiri Slaby02f11752006-12-08 02:39:28 -08002129 info->cor1 |= CyPARITY_E;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002130 } else
Jiri Slaby02f11752006-12-08 02:39:28 -08002131 info->cor1 |= CyPARITY_NONE;
Jiri Slaby02f11752006-12-08 02:39:28 -08002132
2133 /* CTS flow control flag */
2134 if (cflag & CRTSCTS) {
Alan Cox77451e52008-07-16 21:57:02 +01002135 info->port.flags |= ASYNC_CTS_FLOW;
Jiri Slaby02f11752006-12-08 02:39:28 -08002136 info->cor2 |= CyCtsAE;
2137 } else {
Alan Cox77451e52008-07-16 21:57:02 +01002138 info->port.flags &= ~ASYNC_CTS_FLOW;
Jiri Slaby02f11752006-12-08 02:39:28 -08002139 info->cor2 &= ~CyCtsAE;
2140 }
2141 if (cflag & CLOCAL)
Alan Cox77451e52008-07-16 21:57:02 +01002142 info->port.flags &= ~ASYNC_CHECK_CD;
Jiri Slaby02f11752006-12-08 02:39:28 -08002143 else
Alan Cox77451e52008-07-16 21:57:02 +01002144 info->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146 /***********************************************
2147 The hardware option, CyRtsAO, presents RTS when
2148 the chip has characters to send. Since most modems
2149 use RTS as reverse (inbound) flow control, this
2150 option is not used. If inbound flow control is
2151 necessary, DTR can be programmed to provide the
2152 appropriate signals for use with a non-standard
2153 cable. Contact Marcio Saito for details.
2154 ***********************************************/
2155
Jiri Slaby02f11752006-12-08 02:39:28 -08002156 channel &= 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002158 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002159 cyy_writeb(info, CyCAR, channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Jiri Slaby02f11752006-12-08 02:39:28 -08002161 /* tx and rx baud rate */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002163 cyy_writeb(info, CyTCOR, info->tco);
2164 cyy_writeb(info, CyTBPR, info->tbpr);
2165 cyy_writeb(info, CyRCOR, info->rco);
2166 cyy_writeb(info, CyRBPR, info->rbpr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Jiri Slaby02f11752006-12-08 02:39:28 -08002168 /* set line characteristics according configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002170 cyy_writeb(info, CySCHR1, START_CHAR(tty));
2171 cyy_writeb(info, CySCHR2, STOP_CHAR(tty));
2172 cyy_writeb(info, CyCOR1, info->cor1);
2173 cyy_writeb(info, CyCOR2, info->cor2);
2174 cyy_writeb(info, CyCOR3, info->cor3);
2175 cyy_writeb(info, CyCOR4, info->cor4);
2176 cyy_writeb(info, CyCOR5, info->cor5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002178 cyy_issue_cmd(info, CyCOR_CHANGE | CyCOR1ch | CyCOR2ch |
2179 CyCOR3ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Alan Cox15ed6cc2008-04-30 00:53:55 -07002181 /* !!! Is this needed? */
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002182 cyy_writeb(info, CyCAR, channel);
2183 cyy_writeb(info, CyRTPR,
Jiri Slaby02f11752006-12-08 02:39:28 -08002184 (info->default_timeout ? info->default_timeout : 0x02));
2185 /* 10ms rx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Jiri Slaby46fb7822009-09-19 13:13:17 -07002187 cflags = CyCTS;
2188 if (!C_CLOCAL(tty))
2189 cflags |= CyDSR | CyRI | CyDCD;
2190 /* without modem intr */
2191 cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyMdmCh);
2192 /* act on 1->0 modem transitions */
2193 if ((cflag & CRTSCTS) && info->rflow)
2194 cyy_writeb(info, CyMCOR1, cflags | rflow_thr[i]);
2195 else
2196 cyy_writeb(info, CyMCOR1, cflags);
2197 /* act on 0->1 modem transitions */
2198 cyy_writeb(info, CyMCOR2, cflags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002199
Jiri Slaby4d768202009-09-19 13:13:15 -07002200 if (i == 0) /* baud rate is zero, turn off line */
2201 cyy_change_rts_dtr(info, 0, TIOCM_DTR);
2202 else
2203 cyy_change_rts_dtr(info, TIOCM_DTR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Jiri Slabyd13549f2009-09-19 13:13:12 -07002205 clear_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002206 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 } else {
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07002209 struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07002210 __u32 sw_flow;
Jiri Slaby02f11752006-12-08 02:39:28 -08002211 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Jiri Slaby2693f482009-06-11 12:31:06 +01002213 if (!cyz_is_loaded(card))
Jiri Slaby02f11752006-12-08 02:39:28 -08002214 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Jiri Slaby02f11752006-12-08 02:39:28 -08002216 /* baud rate */
Jiri Slabyd13549f2009-09-19 13:13:12 -07002217 baud = tty_get_baud_rate(tty);
Alan Cox77451e52008-07-16 21:57:02 +01002218 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08002219 ASYNC_SPD_CUST) {
2220 if (info->custom_divisor)
2221 baud_rate = info->baud / info->custom_divisor;
2222 else
2223 baud_rate = info->baud;
2224 } else if (baud > CYZ_MAX_SPEED) {
2225 baud = CYZ_MAX_SPEED;
2226 }
2227 cy_writel(&ch_ctrl->comm_baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Jiri Slaby02f11752006-12-08 02:39:28 -08002229 if (baud == 134) {
2230 /* get it right for 134.5 baud */
2231 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
2232 2;
Alan Cox77451e52008-07-16 21:57:02 +01002233 } else if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08002234 ASYNC_SPD_CUST) {
2235 info->timeout = (info->xmit_fifo_size * HZ * 15 /
2236 baud_rate) + 2;
2237 } else if (baud) {
2238 info->timeout = (info->xmit_fifo_size * HZ * 15 /
2239 baud) + 2;
2240 /* this needs to be propagated into the card info */
2241 } else {
2242 info->timeout = 0;
2243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Jiri Slaby02f11752006-12-08 02:39:28 -08002245 /* byte size and parity */
2246 switch (cflag & CSIZE) {
2247 case CS5:
2248 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS5);
2249 break;
2250 case CS6:
2251 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS6);
2252 break;
2253 case CS7:
2254 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS7);
2255 break;
2256 case CS8:
2257 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS8);
2258 break;
2259 }
2260 if (cflag & CSTOPB) {
2261 cy_writel(&ch_ctrl->comm_data_l,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002262 readl(&ch_ctrl->comm_data_l) | C_DL_2STOP);
Jiri Slaby02f11752006-12-08 02:39:28 -08002263 } else {
2264 cy_writel(&ch_ctrl->comm_data_l,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002265 readl(&ch_ctrl->comm_data_l) | C_DL_1STOP);
Jiri Slaby02f11752006-12-08 02:39:28 -08002266 }
2267 if (cflag & PARENB) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07002268 if (cflag & PARODD)
Jiri Slaby02f11752006-12-08 02:39:28 -08002269 cy_writel(&ch_ctrl->comm_parity, C_PR_ODD);
Alan Cox15ed6cc2008-04-30 00:53:55 -07002270 else
Jiri Slaby02f11752006-12-08 02:39:28 -08002271 cy_writel(&ch_ctrl->comm_parity, C_PR_EVEN);
Alan Cox15ed6cc2008-04-30 00:53:55 -07002272 } else
Jiri Slaby02f11752006-12-08 02:39:28 -08002273 cy_writel(&ch_ctrl->comm_parity, C_PR_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Jiri Slaby02f11752006-12-08 02:39:28 -08002275 /* CTS flow control flag */
2276 if (cflag & CRTSCTS) {
2277 cy_writel(&ch_ctrl->hw_flow,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002278 readl(&ch_ctrl->hw_flow) | C_RS_CTS | C_RS_RTS);
Jiri Slaby02f11752006-12-08 02:39:28 -08002279 } else {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002280 cy_writel(&ch_ctrl->hw_flow, readl(&ch_ctrl->hw_flow) &
2281 ~(C_RS_CTS | C_RS_RTS));
Jiri Slaby02f11752006-12-08 02:39:28 -08002282 }
2283 /* As the HW flow control is done in firmware, the driver
2284 doesn't need to care about it */
Alan Cox77451e52008-07-16 21:57:02 +01002285 info->port.flags &= ~ASYNC_CTS_FLOW;
Jiri Slaby02f11752006-12-08 02:39:28 -08002286
2287 /* XON/XOFF/XANY flow control flags */
2288 sw_flow = 0;
2289 if (iflag & IXON) {
2290 sw_flow |= C_FL_OXX;
2291 if (iflag & IXANY)
2292 sw_flow |= C_FL_OIXANY;
2293 }
2294 cy_writel(&ch_ctrl->sw_flow, sw_flow);
2295
Jiri Slaby875b2062007-05-08 00:36:49 -07002296 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002297 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002298 printk(KERN_ERR "cyc:set_line_char retval on ttyC%d "
2299 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002300 }
2301
2302 /* CD sensitivity */
Alan Cox15ed6cc2008-04-30 00:53:55 -07002303 if (cflag & CLOCAL)
Alan Cox77451e52008-07-16 21:57:02 +01002304 info->port.flags &= ~ASYNC_CHECK_CD;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002305 else
Alan Cox77451e52008-07-16 21:57:02 +01002306 info->port.flags |= ASYNC_CHECK_CD;
Jiri Slaby02f11752006-12-08 02:39:28 -08002307
2308 if (baud == 0) { /* baud rate is zero, turn off line */
2309 cy_writel(&ch_ctrl->rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002310 readl(&ch_ctrl->rs_control) & ~C_RS_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002312 printk(KERN_DEBUG "cyc:set_line_char dropping Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002314 } else {
2315 cy_writel(&ch_ctrl->rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002316 readl(&ch_ctrl->rs_control) | C_RS_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002318 printk(KERN_DEBUG "cyc:set_line_char raising Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
Alan Cox15ed6cc2008-04-30 00:53:55 -07002322 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002323 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002324 printk(KERN_ERR "cyc:set_line_char(2) retval on ttyC%d "
2325 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Jiri Slabyd13549f2009-09-19 13:13:12 -07002328 clear_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002330} /* set_line_char */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Jiri Slaby6c281812009-09-19 13:13:15 -07002332static int cy_get_serial_info(struct cyclades_port *info,
Alan Cox15ed6cc2008-04-30 00:53:55 -07002333 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334{
Jiri Slaby875b2062007-05-08 00:36:49 -07002335 struct cyclades_card *cinfo = info->card;
Jiri Slaby6c281812009-09-19 13:13:15 -07002336 struct serial_struct tmp = {
2337 .type = info->type,
2338 .line = info->line,
2339 .port = (info->card - cy_card) * 0x100 + info->line -
2340 cinfo->first_line,
2341 .irq = cinfo->irq,
2342 .flags = info->port.flags,
2343 .close_delay = info->port.close_delay,
2344 .closing_wait = info->port.closing_wait,
2345 .baud_base = info->baud,
2346 .custom_divisor = info->custom_divisor,
2347 .hub6 = 0, /*!!! */
2348 };
Jiri Slaby02f11752006-12-08 02:39:28 -08002349 return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
Jiri Slaby6c281812009-09-19 13:13:15 -07002350}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352static int
Jiri Slabyd13549f2009-09-19 13:13:12 -07002353cy_set_serial_info(struct cyclades_port *info, struct tty_struct *tty,
Alan Cox15ed6cc2008-04-30 00:53:55 -07002354 struct serial_struct __user *new_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355{
Jiri Slaby02f11752006-12-08 02:39:28 -08002356 struct serial_struct new_serial;
Alan Cox25c3cdf2010-06-01 22:52:47 +02002357 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Jiri Slaby02f11752006-12-08 02:39:28 -08002359 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
2360 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Alan Cox25c3cdf2010-06-01 22:52:47 +02002362 mutex_lock(&info->port.mutex);
Jiri Slaby02f11752006-12-08 02:39:28 -08002363 if (!capable(CAP_SYS_ADMIN)) {
Alan Cox44b7d1b2008-07-16 21:57:18 +01002364 if (new_serial.close_delay != info->port.close_delay ||
Jiri Slaby02f11752006-12-08 02:39:28 -08002365 new_serial.baud_base != info->baud ||
2366 (new_serial.flags & ASYNC_FLAGS &
2367 ~ASYNC_USR_MASK) !=
Alan Cox77451e52008-07-16 21:57:02 +01002368 (info->port.flags & ASYNC_FLAGS & ~ASYNC_USR_MASK))
Alan Cox25c3cdf2010-06-01 22:52:47 +02002369 {
2370 mutex_unlock(&info->port.mutex);
Jiri Slaby02f11752006-12-08 02:39:28 -08002371 return -EPERM;
Alan Cox25c3cdf2010-06-01 22:52:47 +02002372 }
Alan Cox77451e52008-07-16 21:57:02 +01002373 info->port.flags = (info->port.flags & ~ASYNC_USR_MASK) |
Jiri Slaby02f11752006-12-08 02:39:28 -08002374 (new_serial.flags & ASYNC_USR_MASK);
2375 info->baud = new_serial.baud_base;
2376 info->custom_divisor = new_serial.custom_divisor;
2377 goto check_and_exit;
2378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Jiri Slaby02f11752006-12-08 02:39:28 -08002380 /*
2381 * OK, past this point, all the error checking has been done.
2382 * At this point, we start making changes.....
2383 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Jiri Slaby02f11752006-12-08 02:39:28 -08002385 info->baud = new_serial.baud_base;
2386 info->custom_divisor = new_serial.custom_divisor;
Alan Cox77451e52008-07-16 21:57:02 +01002387 info->port.flags = (info->port.flags & ~ASYNC_FLAGS) |
Jiri Slaby02f11752006-12-08 02:39:28 -08002388 (new_serial.flags & ASYNC_FLAGS);
Alan Cox44b7d1b2008-07-16 21:57:18 +01002389 info->port.close_delay = new_serial.close_delay * HZ / 100;
2390 info->port.closing_wait = new_serial.closing_wait * HZ / 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392check_and_exit:
Alan Cox77451e52008-07-16 21:57:02 +01002393 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slabyd13549f2009-09-19 13:13:12 -07002394 cy_set_line_char(info, tty);
Alan Cox25c3cdf2010-06-01 22:52:47 +02002395 ret = 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08002396 } else {
Alan Cox25c3cdf2010-06-01 22:52:47 +02002397 ret = cy_startup(info, tty);
Jiri Slaby02f11752006-12-08 02:39:28 -08002398 }
Alan Cox25c3cdf2010-06-01 22:52:47 +02002399 mutex_unlock(&info->port.mutex);
2400 return ret;
Jiri Slaby02f11752006-12-08 02:39:28 -08002401} /* set_serial_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403/*
2404 * get_lsr_info - get line status register info
2405 *
2406 * Purpose: Let user call ioctl() to get info when the UART physically
2407 * is emptied. On bus types like RS485, the transmitter must
2408 * release the bus after transmitting. This must be done when
2409 * the transmit shift register is empty, not be done when the
2410 * transmit holding register is empty. This functionality
2411 * allows an RS485 driver to be written in user space.
2412 */
Alan Cox15ed6cc2008-04-30 00:53:55 -07002413static int get_lsr_info(struct cyclades_port *info, unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414{
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002415 struct cyclades_card *card = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002416 unsigned int result;
2417 unsigned long flags;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002418 u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Jiri Slaby2693f482009-06-11 12:31:06 +01002420 if (!cy_is_Z(card)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002421 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002422 status = cyy_readb(info, CySRER) & (CyTxRdy | CyTxMpty);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002423 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002424 result = (status ? 0 : TIOCSER_TEMT);
2425 } else {
2426 /* Not supported yet */
2427 return -EINVAL;
2428 }
2429 return put_user(result, (unsigned long __user *)value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430}
2431
Jiri Slaby02f11752006-12-08 02:39:28 -08002432static int cy_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002434 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07002435 struct cyclades_card *card;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002436 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Harvey Harrisonbf9d8922008-04-30 00:55:10 -07002438 if (serial_paranoia_check(info, tty->name, __func__))
Jiri Slaby02f11752006-12-08 02:39:28 -08002439 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Jiri Slaby02f11752006-12-08 02:39:28 -08002441 card = info->card;
Jiri Slaby0d348722009-09-19 13:13:16 -07002442
Jiri Slaby2693f482009-06-11 12:31:06 +01002443 if (!cy_is_Z(card)) {
Jiri Slaby0d348722009-09-19 13:13:16 -07002444 unsigned long flags;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002445 int channel = info->line - card->first_line;
2446 u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002448 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002449 cyy_writeb(info, CyCAR, channel & 0x03);
2450 status = cyy_readb(info, CyMSVR1);
2451 status |= cyy_readb(info, CyMSVR2);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002452 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Jiri Slaby02f11752006-12-08 02:39:28 -08002454 if (info->rtsdtr_inv) {
2455 result = ((status & CyRTS) ? TIOCM_DTR : 0) |
2456 ((status & CyDTR) ? TIOCM_RTS : 0);
2457 } else {
2458 result = ((status & CyRTS) ? TIOCM_RTS : 0) |
2459 ((status & CyDTR) ? TIOCM_DTR : 0);
2460 }
2461 result |= ((status & CyDCD) ? TIOCM_CAR : 0) |
2462 ((status & CyRI) ? TIOCM_RNG : 0) |
2463 ((status & CyDSR) ? TIOCM_DSR : 0) |
2464 ((status & CyCTS) ? TIOCM_CTS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 } else {
Jiri Slaby0d348722009-09-19 13:13:16 -07002466 u32 lstatus;
2467
2468 if (!cyz_is_loaded(card)) {
2469 result = -ENODEV;
2470 goto end;
Jiri Slaby02f11752006-12-08 02:39:28 -08002471 }
2472
Jiri Slaby0d348722009-09-19 13:13:16 -07002473 lstatus = readl(&info->u.cyz.ch_ctrl->rs_status);
2474 result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) |
2475 ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) |
2476 ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) |
2477 ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) |
2478 ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) |
2479 ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
Jiri Slaby0d348722009-09-19 13:13:16 -07002481end:
Jiri Slaby02f11752006-12-08 02:39:28 -08002482 return result;
2483} /* cy_tiomget */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
2485static int
2486cy_tiocmset(struct tty_struct *tty, struct file *file,
Jiri Slaby02f11752006-12-08 02:39:28 -08002487 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002489 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07002490 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002491 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
Harvey Harrisonbf9d8922008-04-30 00:55:10 -07002493 if (serial_paranoia_check(info, tty->name, __func__))
Jiri Slaby02f11752006-12-08 02:39:28 -08002494 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Jiri Slaby02f11752006-12-08 02:39:28 -08002496 card = info->card;
Jiri Slaby2693f482009-06-11 12:31:06 +01002497 if (!cy_is_Z(card)) {
Jiri Slaby4d768202009-09-19 13:13:15 -07002498 spin_lock_irqsave(&card->card_lock, flags);
2499 cyy_change_rts_dtr(info, set, clear);
2500 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002501 } else {
Jiri Slaby0d348722009-09-19 13:13:16 -07002502 struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl;
2503 int retval, channel = info->line - card->first_line;
2504 u32 rs;
Jiri Slaby02f11752006-12-08 02:39:28 -08002505
Jiri Slaby0d348722009-09-19 13:13:16 -07002506 if (!cyz_is_loaded(card))
Jiri Slaby02f11752006-12-08 02:39:28 -08002507 return -ENODEV;
Jiri Slaby0d348722009-09-19 13:13:16 -07002508
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002509 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby0d348722009-09-19 13:13:16 -07002510 rs = readl(&ch_ctrl->rs_control);
2511 if (set & TIOCM_RTS)
2512 rs |= C_RS_RTS;
2513 if (clear & TIOCM_RTS)
2514 rs &= ~C_RS_RTS;
2515 if (set & TIOCM_DTR) {
2516 rs |= C_RS_DTR;
2517#ifdef CY_DEBUG_DTR
2518 printk(KERN_DEBUG "cyc:set_modem_info raising Z DTR\n");
2519#endif
2520 }
2521 if (clear & TIOCM_DTR) {
2522 rs &= ~C_RS_DTR;
2523#ifdef CY_DEBUG_DTR
2524 printk(KERN_DEBUG "cyc:set_modem_info clearing "
2525 "Z DTR\n");
2526#endif
2527 }
2528 cy_writel(&ch_ctrl->rs_control, rs);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002529 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby0d348722009-09-19 13:13:16 -07002530 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002531 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002532 printk(KERN_ERR "cyc:set_modem_info retval on ttyC%d "
2533 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002536 return 0;
Jiri Slaby0d348722009-09-19 13:13:16 -07002537}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539/*
2540 * cy_break() --- routine which turns the break handling on or off
2541 */
Alan Cox9e989662008-07-22 11:18:03 +01002542static int cy_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002544 struct cyclades_port *info = tty->driver_data;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002545 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002546 unsigned long flags;
Alan Cox9e989662008-07-22 11:18:03 +01002547 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Jiri Slaby02f11752006-12-08 02:39:28 -08002549 if (serial_paranoia_check(info, tty->name, "cy_break"))
Alan Cox9e989662008-07-22 11:18:03 +01002550 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002552 card = info->card;
2553
2554 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby2693f482009-06-11 12:31:06 +01002555 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002556 /* Let the transmit ISR take care of this (since it
2557 requires stuffing characters into the output stream).
2558 */
2559 if (break_state == -1) {
2560 if (!info->breakon) {
2561 info->breakon = 1;
2562 if (!info->xmit_cnt) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002563 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002564 start_xmit(info);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002565 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002566 }
2567 }
2568 } else {
2569 if (!info->breakoff) {
2570 info->breakoff = 1;
2571 if (!info->xmit_cnt) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002572 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002573 start_xmit(info);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002574 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002575 }
2576 }
2577 }
2578 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08002579 if (break_state == -1) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002580 retval = cyz_issue_cmd(card,
2581 info->line - card->first_line,
Jiri Slaby02f11752006-12-08 02:39:28 -08002582 C_CM_SET_BREAK, 0L);
2583 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002584 printk(KERN_ERR "cyc:cy_break (set) retval on "
2585 "ttyC%d was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002586 }
2587 } else {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002588 retval = cyz_issue_cmd(card,
2589 info->line - card->first_line,
Jiri Slaby02f11752006-12-08 02:39:28 -08002590 C_CM_CLR_BREAK, 0L);
2591 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002592 printk(KERN_DEBUG "cyc:cy_break (clr) retval "
2593 "on ttyC%d was %x\n", info->line,
2594 retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002595 }
2596 }
2597 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002598 spin_unlock_irqrestore(&card->card_lock, flags);
Alan Cox9e989662008-07-22 11:18:03 +01002599 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08002600} /* cy_break */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Jiri Slaby02f11752006-12-08 02:39:28 -08002602static int set_threshold(struct cyclades_port *info, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603{
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002604 struct cyclades_card *card = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002605 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Jiri Slaby2693f482009-06-11 12:31:06 +01002607 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002608 info->cor3 &= ~CyREC_FIFO;
2609 info->cor3 |= value & CyREC_FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002611 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002612 cyy_writeb(info, CyCOR3, info->cor3);
2613 cyy_issue_cmd(info, CyCOR_CHANGE | CyCOR3ch);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002614 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08002617} /* set_threshold */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Alan Cox15ed6cc2008-04-30 00:53:55 -07002619static int get_threshold(struct cyclades_port *info,
2620 unsigned long __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621{
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002622 struct cyclades_card *card = info->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
Jiri Slaby2693f482009-06-11 12:31:06 +01002624 if (!cy_is_Z(card)) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002625 u8 tmp = cyy_readb(info, CyCOR3) & CyREC_FIFO;
Jiri Slaby02f11752006-12-08 02:39:28 -08002626 return put_user(tmp, value);
Jiri Slaby02f11752006-12-08 02:39:28 -08002627 }
Jiri Slabyf7429032007-05-08 00:36:59 -07002628 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08002629} /* get_threshold */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
Jiri Slaby02f11752006-12-08 02:39:28 -08002631static int set_timeout(struct cyclades_port *info, unsigned long value)
2632{
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002633 struct cyclades_card *card = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002634 unsigned long flags;
2635
Jiri Slaby2693f482009-06-11 12:31:06 +01002636 if (!cy_is_Z(card)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002637 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002638 cyy_writeb(info, CyRTPR, value & 0xff);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002639 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002640 }
2641 return 0;
2642} /* set_timeout */
2643
Alan Cox15ed6cc2008-04-30 00:53:55 -07002644static int get_timeout(struct cyclades_port *info,
2645 unsigned long __user *value)
Jiri Slaby02f11752006-12-08 02:39:28 -08002646{
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002647 struct cyclades_card *card = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002648
Jiri Slaby2693f482009-06-11 12:31:06 +01002649 if (!cy_is_Z(card)) {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002650 u8 tmp = cyy_readb(info, CyRTPR);
Jiri Slaby02f11752006-12-08 02:39:28 -08002651 return put_user(tmp, value);
Jiri Slaby02f11752006-12-08 02:39:28 -08002652 }
Jiri Slabyf7429032007-05-08 00:36:59 -07002653 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08002654} /* get_timeout */
2655
Jiri Slaby6c281812009-09-19 13:13:15 -07002656static int cy_cflags_changed(struct cyclades_port *info, unsigned long arg,
2657 struct cyclades_icount *cprev)
Jiri Slaby02f11752006-12-08 02:39:28 -08002658{
Jiri Slaby6c281812009-09-19 13:13:15 -07002659 struct cyclades_icount cnow;
2660 unsigned long flags;
2661 int ret;
Jiri Slaby02f11752006-12-08 02:39:28 -08002662
Jiri Slaby6c281812009-09-19 13:13:15 -07002663 spin_lock_irqsave(&info->card->card_lock, flags);
2664 cnow = info->icount; /* atomic copy */
2665 spin_unlock_irqrestore(&info->card->card_lock, flags);
2666
2667 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
2668 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
2669 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
2670 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
2671
2672 *cprev = cnow;
2673
2674 return ret;
2675}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677/*
2678 * This routine allows the tty driver to implement device-
2679 * specific ioctl's. If the ioctl number passed in cmd is
2680 * not recognized by the driver, it should return ENOIOCTLCMD.
2681 */
2682static int
Jiri Slaby02f11752006-12-08 02:39:28 -08002683cy_ioctl(struct tty_struct *tty, struct file *file,
2684 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002686 struct cyclades_port *info = tty->driver_data;
Jiri Slaby6c281812009-09-19 13:13:15 -07002687 struct cyclades_icount cnow; /* kernel counter temps */
Jiri Slaby02f11752006-12-08 02:39:28 -08002688 int ret_val = 0;
2689 unsigned long flags;
2690 void __user *argp = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Jiri Slaby02f11752006-12-08 02:39:28 -08002692 if (serial_paranoia_check(info, tty->name, "cy_ioctl"))
2693 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
2695#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002696 printk(KERN_DEBUG "cyc:cy_ioctl ttyC%d, cmd = %x arg = %lx\n",
2697 info->line, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698#endif
2699
Jiri Slaby02f11752006-12-08 02:39:28 -08002700 switch (cmd) {
2701 case CYGETMON:
Jiri Slaby6c281812009-09-19 13:13:15 -07002702 if (copy_to_user(argp, &info->mon, sizeof(info->mon))) {
2703 ret_val = -EFAULT;
2704 break;
2705 }
2706 memset(&info->mon, 0, sizeof(info->mon));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08002708 case CYGETTHRESH:
2709 ret_val = get_threshold(info, argp);
2710 break;
2711 case CYSETTHRESH:
2712 ret_val = set_threshold(info, arg);
2713 break;
2714 case CYGETDEFTHRESH:
Jiri Slaby6c281812009-09-19 13:13:15 -07002715 ret_val = put_user(info->default_threshold,
2716 (unsigned long __user *)argp);
Jiri Slaby02f11752006-12-08 02:39:28 -08002717 break;
2718 case CYSETDEFTHRESH:
Jiri Slaby6c281812009-09-19 13:13:15 -07002719 info->default_threshold = arg & 0x0f;
Jiri Slaby02f11752006-12-08 02:39:28 -08002720 break;
2721 case CYGETTIMEOUT:
2722 ret_val = get_timeout(info, argp);
2723 break;
2724 case CYSETTIMEOUT:
2725 ret_val = set_timeout(info, arg);
2726 break;
2727 case CYGETDEFTIMEOUT:
Jiri Slaby6c281812009-09-19 13:13:15 -07002728 ret_val = put_user(info->default_timeout,
2729 (unsigned long __user *)argp);
Jiri Slaby02f11752006-12-08 02:39:28 -08002730 break;
2731 case CYSETDEFTIMEOUT:
Jiri Slaby6c281812009-09-19 13:13:15 -07002732 info->default_timeout = arg & 0xff;
Jiri Slaby02f11752006-12-08 02:39:28 -08002733 break;
2734 case CYSETRFLOW:
2735 info->rflow = (int)arg;
Jiri Slaby02f11752006-12-08 02:39:28 -08002736 break;
2737 case CYGETRFLOW:
2738 ret_val = info->rflow;
2739 break;
2740 case CYSETRTSDTR_INV:
2741 info->rtsdtr_inv = (int)arg;
Jiri Slaby02f11752006-12-08 02:39:28 -08002742 break;
2743 case CYGETRTSDTR_INV:
2744 ret_val = info->rtsdtr_inv;
2745 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 case CYGETCD1400VER:
Jiri Slaby02f11752006-12-08 02:39:28 -08002747 ret_val = info->chip_rev;
2748 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749#ifndef CONFIG_CYZ_INTR
2750 case CYZSETPOLLCYCLE:
Jiri Slaby02f11752006-12-08 02:39:28 -08002751 cyz_polling_cycle = (arg * HZ) / 1000;
Jiri Slaby02f11752006-12-08 02:39:28 -08002752 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 case CYZGETPOLLCYCLE:
Jiri Slaby02f11752006-12-08 02:39:28 -08002754 ret_val = (cyz_polling_cycle * 1000) / HZ;
2755 break;
2756#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 case CYSETWAIT:
Alan Cox44b7d1b2008-07-16 21:57:18 +01002758 info->port.closing_wait = (unsigned short)arg * HZ / 100;
Jiri Slaby02f11752006-12-08 02:39:28 -08002759 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 case CYGETWAIT:
Alan Cox44b7d1b2008-07-16 21:57:18 +01002761 ret_val = info->port.closing_wait / (HZ / 100);
Jiri Slaby02f11752006-12-08 02:39:28 -08002762 break;
2763 case TIOCGSERIAL:
Jiri Slaby6c281812009-09-19 13:13:15 -07002764 ret_val = cy_get_serial_info(info, argp);
Jiri Slaby02f11752006-12-08 02:39:28 -08002765 break;
2766 case TIOCSSERIAL:
Jiri Slabyd13549f2009-09-19 13:13:12 -07002767 ret_val = cy_set_serial_info(info, tty, argp);
Jiri Slaby02f11752006-12-08 02:39:28 -08002768 break;
2769 case TIOCSERGETLSR: /* Get line status register */
2770 ret_val = get_lsr_info(info, argp);
2771 break;
2772 /*
2773 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
2774 * - mask passed in arg for lines of interest
2775 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
2776 * Caller should use TIOCGICOUNT to see which one it was
2777 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 case TIOCMIWAIT:
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002779 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002780 /* note the counters on entry */
Jiri Slaby2c7fea92007-05-08 00:36:51 -07002781 cnow = info->icount;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002782 spin_unlock_irqrestore(&info->card->card_lock, flags);
Alan Coxbdc04e32009-09-19 13:13:31 -07002783 ret_val = wait_event_interruptible(info->port.delta_msr_wait,
Jiri Slaby6c281812009-09-19 13:13:15 -07002784 cy_cflags_changed(info, arg, &cnow));
Jiri Slaby2c7fea92007-05-08 00:36:51 -07002785 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08002786
2787 /*
2788 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
2789 * Return: write counters to the user passed counter struct
2790 * NB: both 1->0 and 0->1 transitions are counted except for
2791 * RI where only 0->1 is counted.
2792 */
Jiri Slaby6c281812009-09-19 13:13:15 -07002793 case TIOCGICOUNT: {
2794 struct serial_icounter_struct sic = { };
2795
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002796 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002797 cnow = info->icount;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002798 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby6c281812009-09-19 13:13:15 -07002799
2800 sic.cts = cnow.cts;
2801 sic.dsr = cnow.dsr;
2802 sic.rng = cnow.rng;
2803 sic.dcd = cnow.dcd;
2804 sic.rx = cnow.rx;
2805 sic.tx = cnow.tx;
2806 sic.frame = cnow.frame;
2807 sic.overrun = cnow.overrun;
2808 sic.parity = cnow.parity;
2809 sic.brk = cnow.brk;
2810 sic.buf_overrun = cnow.buf_overrun;
2811
2812 if (copy_to_user(argp, &sic, sizeof(sic)))
2813 ret_val = -EFAULT;
Jiri Slaby02f11752006-12-08 02:39:28 -08002814 break;
Jiri Slaby6c281812009-09-19 13:13:15 -07002815 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002816 default:
2817 ret_val = -ENOIOCTLCMD;
2818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
2820#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002821 printk(KERN_DEBUG "cyc:cy_ioctl done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002823 return ret_val;
2824} /* cy_ioctl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826/*
2827 * This routine allows the tty driver to be notified when
2828 * device's termios settings have changed. Note that a
2829 * well-designed tty driver should be prepared to accept the case
2830 * where old == NULL, and try to do something rational.
2831 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002832static void cy_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002834 struct cyclades_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002837 printk(KERN_DEBUG "cyc:cy_set_termios ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838#endif
2839
Jiri Slabyd13549f2009-09-19 13:13:12 -07002840 cy_set_line_char(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
Jiri Slaby02f11752006-12-08 02:39:28 -08002842 if ((old_termios->c_cflag & CRTSCTS) &&
2843 !(tty->termios->c_cflag & CRTSCTS)) {
2844 tty->hw_stopped = 0;
2845 cy_start(tty);
2846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847#if 0
Jiri Slaby02f11752006-12-08 02:39:28 -08002848 /*
2849 * No need to wake up processes in open wait, since they
2850 * sample the CLOCAL flag once, and don't recheck it.
2851 * XXX It's not clear whether the current behavior is correct
2852 * or not. Hence, this may change.....
2853 */
2854 if (!(old_termios->c_cflag & CLOCAL) &&
2855 (tty->termios->c_cflag & CLOCAL))
Alan Cox77451e52008-07-16 21:57:02 +01002856 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002858} /* cy_set_termios */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
2860/* This function is used to send a high-priority XON/XOFF character to
2861 the device.
2862*/
Jiri Slaby02f11752006-12-08 02:39:28 -08002863static void cy_send_xchar(struct tty_struct *tty, char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002865 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07002866 struct cyclades_card *card;
2867 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
Jiri Slaby02f11752006-12-08 02:39:28 -08002869 if (serial_paranoia_check(info, tty->name, "cy_send_xchar"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 return;
2871
Jiri Slaby02f11752006-12-08 02:39:28 -08002872 info->x_char = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
2874 if (ch)
Jiri Slaby02f11752006-12-08 02:39:28 -08002875 cy_start(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
2877 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002878 channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Jiri Slaby2693f482009-06-11 12:31:06 +01002880 if (cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002881 if (ch == STOP_CHAR(tty))
Jiri Slaby875b2062007-05-08 00:36:49 -07002882 cyz_issue_cmd(card, channel, C_CM_SENDXOFF, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002883 else if (ch == START_CHAR(tty))
Jiri Slaby875b2062007-05-08 00:36:49 -07002884 cyz_issue_cmd(card, channel, C_CM_SENDXON, 0L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 }
2886}
2887
2888/* This routine is called by the upper-layer tty layer to signal
2889 that incoming characters should be throttled because the input
2890 buffers are close to full.
2891 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002892static void cy_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002894 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07002895 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002896 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
2898#ifdef CY_DEBUG_THROTTLE
Jiri Slaby02f11752006-12-08 02:39:28 -08002899 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Jiri Slaby21719192007-05-08 00:36:42 -07002901 printk(KERN_DEBUG "cyc:throttle %s: %ld...ttyC%d\n", tty_name(tty, buf),
Jiri Slaby02f11752006-12-08 02:39:28 -08002902 tty->ldisc.chars_in_buffer(tty), info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903#endif
2904
Alan Cox15ed6cc2008-04-30 00:53:55 -07002905 if (serial_paranoia_check(info, tty->name, "cy_throttle"))
Jiri Slaby02f11752006-12-08 02:39:28 -08002906 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Jiri Slaby02f11752006-12-08 02:39:28 -08002908 card = info->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Jiri Slaby02f11752006-12-08 02:39:28 -08002910 if (I_IXOFF(tty)) {
Jiri Slaby2693f482009-06-11 12:31:06 +01002911 if (!cy_is_Z(card))
Jiri Slaby02f11752006-12-08 02:39:28 -08002912 cy_send_xchar(tty, STOP_CHAR(tty));
2913 else
2914 info->throttle = 1;
2915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Jiri Slaby02f11752006-12-08 02:39:28 -08002917 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby2693f482009-06-11 12:31:06 +01002918 if (!cy_is_Z(card)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002919 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby4d768202009-09-19 13:13:15 -07002920 cyy_change_rts_dtr(info, 0, TIOCM_RTS);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002921 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002922 } else {
2923 info->throttle = 1;
2924 }
2925 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002926} /* cy_throttle */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
2928/*
2929 * This routine notifies the tty driver that it should signal
2930 * that characters can now be sent to the tty without fear of
2931 * overrunning the input buffers of the line disciplines.
2932 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002933static void cy_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002935 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07002936 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002937 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
2939#ifdef CY_DEBUG_THROTTLE
Jiri Slaby02f11752006-12-08 02:39:28 -08002940 char buf[64];
2941
Jiri Slaby21719192007-05-08 00:36:42 -07002942 printk(KERN_DEBUG "cyc:unthrottle %s: %ld...ttyC%d\n",
Alan Cox15ed6cc2008-04-30 00:53:55 -07002943 tty_name(tty, buf), tty_chars_in_buffer(tty), info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944#endif
2945
Alan Cox15ed6cc2008-04-30 00:53:55 -07002946 if (serial_paranoia_check(info, tty->name, "cy_unthrottle"))
Jiri Slaby02f11752006-12-08 02:39:28 -08002947 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Jiri Slaby02f11752006-12-08 02:39:28 -08002949 if (I_IXOFF(tty)) {
2950 if (info->x_char)
2951 info->x_char = 0;
2952 else
2953 cy_send_xchar(tty, START_CHAR(tty));
2954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Jiri Slaby02f11752006-12-08 02:39:28 -08002956 if (tty->termios->c_cflag & CRTSCTS) {
2957 card = info->card;
Jiri Slaby2693f482009-06-11 12:31:06 +01002958 if (!cy_is_Z(card)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002959 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby4d768202009-09-19 13:13:15 -07002960 cyy_change_rts_dtr(info, TIOCM_RTS, 0);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002961 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002962 } else {
2963 info->throttle = 0;
2964 }
2965 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002966} /* cy_unthrottle */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
2968/* cy_start and cy_stop provide software output flow control as a
2969 function of XON/XOFF, software CTS, and other such stuff.
2970*/
Jiri Slaby02f11752006-12-08 02:39:28 -08002971static void cy_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972{
Jiri Slaby02f11752006-12-08 02:39:28 -08002973 struct cyclades_card *cinfo;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002974 struct cyclades_port *info = tty->driver_data;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002975 int channel;
Jiri Slaby02f11752006-12-08 02:39:28 -08002976 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002979 printk(KERN_DEBUG "cyc:cy_stop ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980#endif
2981
Jiri Slaby02f11752006-12-08 02:39:28 -08002982 if (serial_paranoia_check(info, tty->name, "cy_stop"))
2983 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Jiri Slaby875b2062007-05-08 00:36:49 -07002985 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002986 channel = info->line - cinfo->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01002987 if (!cy_is_Z(cinfo)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002988 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002989 cyy_writeb(info, CyCAR, channel & 0x03);
2990 cyy_writeb(info, CySRER, cyy_readb(info, CySRER) & ~CyTxRdy);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002991 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002993} /* cy_stop */
2994
2995static void cy_start(struct tty_struct *tty)
2996{
2997 struct cyclades_card *cinfo;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002998 struct cyclades_port *info = tty->driver_data;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07002999 int channel;
Jiri Slaby02f11752006-12-08 02:39:28 -08003000 unsigned long flags;
3001
3002#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07003003 printk(KERN_DEBUG "cyc:cy_start ttyC%d\n", info->line);
Jiri Slaby02f11752006-12-08 02:39:28 -08003004#endif
3005
3006 if (serial_paranoia_check(info, tty->name, "cy_start"))
3007 return;
3008
Jiri Slaby875b2062007-05-08 00:36:49 -07003009 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003010 channel = info->line - cinfo->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01003011 if (!cy_is_Z(cinfo)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003012 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07003013 cyy_writeb(info, CyCAR, channel & 0x03);
3014 cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyTxRdy);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003015 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003016 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003017} /* cy_start */
3018
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019/*
3020 * cy_hangup() --- called by tty_hangup() when a hangup is signaled.
3021 */
Jiri Slaby02f11752006-12-08 02:39:28 -08003022static void cy_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003024 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08003025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07003027 printk(KERN_DEBUG "cyc:cy_hangup ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028#endif
3029
Jiri Slaby02f11752006-12-08 02:39:28 -08003030 if (serial_paranoia_check(info, tty->name, "cy_hangup"))
3031 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Jiri Slaby02f11752006-12-08 02:39:28 -08003033 cy_flush_buffer(tty);
Jiri Slabyd13549f2009-09-19 13:13:12 -07003034 cy_shutdown(info, tty);
Jiri Slaby174e6fe2009-09-19 13:13:13 -07003035 tty_port_hangup(&info->port);
Jiri Slaby02f11752006-12-08 02:39:28 -08003036} /* cy_hangup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
Jiri Slabyf0737572009-09-19 13:13:12 -07003038static int cyy_carrier_raised(struct tty_port *port)
3039{
3040 struct cyclades_port *info = container_of(port, struct cyclades_port,
3041 port);
3042 struct cyclades_card *cinfo = info->card;
Jiri Slabyf0737572009-09-19 13:13:12 -07003043 unsigned long flags;
3044 int channel = info->line - cinfo->first_line;
Jiri Slabyf0737572009-09-19 13:13:12 -07003045 u32 cd;
3046
Jiri Slabyf0737572009-09-19 13:13:12 -07003047 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07003048 cyy_writeb(info, CyCAR, channel & 0x03);
3049 cd = cyy_readb(info, CyMSVR1) & CyDCD;
Jiri Slabyf0737572009-09-19 13:13:12 -07003050 spin_unlock_irqrestore(&cinfo->card_lock, flags);
3051
3052 return cd;
3053}
3054
3055static void cyy_dtr_rts(struct tty_port *port, int raise)
3056{
3057 struct cyclades_port *info = container_of(port, struct cyclades_port,
3058 port);
3059 struct cyclades_card *cinfo = info->card;
Jiri Slabyf0737572009-09-19 13:13:12 -07003060 unsigned long flags;
Jiri Slabyf0737572009-09-19 13:13:12 -07003061
3062 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby4d768202009-09-19 13:13:15 -07003063 cyy_change_rts_dtr(info, raise ? TIOCM_RTS | TIOCM_DTR : 0,
3064 raise ? 0 : TIOCM_RTS | TIOCM_DTR);
Jiri Slabyf0737572009-09-19 13:13:12 -07003065 spin_unlock_irqrestore(&cinfo->card_lock, flags);
3066}
3067
3068static int cyz_carrier_raised(struct tty_port *port)
3069{
3070 struct cyclades_port *info = container_of(port, struct cyclades_port,
3071 port);
Jiri Slabyf0737572009-09-19 13:13:12 -07003072
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003073 return readl(&info->u.cyz.ch_ctrl->rs_status) & C_RS_DCD;
Jiri Slabyf0737572009-09-19 13:13:12 -07003074}
3075
3076static void cyz_dtr_rts(struct tty_port *port, int raise)
3077{
3078 struct cyclades_port *info = container_of(port, struct cyclades_port,
3079 port);
3080 struct cyclades_card *cinfo = info->card;
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003081 struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl;
Jiri Slabyf0737572009-09-19 13:13:12 -07003082 int ret, channel = info->line - cinfo->first_line;
3083 u32 rs;
3084
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003085 rs = readl(&ch_ctrl->rs_control);
Jiri Slabyf0737572009-09-19 13:13:12 -07003086 if (raise)
3087 rs |= C_RS_RTS | C_RS_DTR;
3088 else
3089 rs &= ~(C_RS_RTS | C_RS_DTR);
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003090 cy_writel(&ch_ctrl->rs_control, rs);
Jiri Slabyf0737572009-09-19 13:13:12 -07003091 ret = cyz_issue_cmd(cinfo, channel, C_CM_IOCTLM, 0L);
3092 if (ret != 0)
3093 printk(KERN_ERR "%s: retval on ttyC%d was %x\n",
3094 __func__, info->line, ret);
3095#ifdef CY_DEBUG_DTR
3096 printk(KERN_DEBUG "%s: raising Z DTR\n", __func__);
3097#endif
3098}
3099
3100static const struct tty_port_operations cyy_port_ops = {
3101 .carrier_raised = cyy_carrier_raised,
3102 .dtr_rts = cyy_dtr_rts,
Alan Coxe936ffd2009-09-19 13:13:22 -07003103 .shutdown = cy_do_close,
Jiri Slabyf0737572009-09-19 13:13:12 -07003104};
3105
3106static const struct tty_port_operations cyz_port_ops = {
3107 .carrier_raised = cyz_carrier_raised,
3108 .dtr_rts = cyz_dtr_rts,
Alan Coxe936ffd2009-09-19 13:13:22 -07003109 .shutdown = cy_do_close,
Jiri Slabyf0737572009-09-19 13:13:12 -07003110};
3111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112/*
3113 * ---------------------------------------------------------------------
3114 * cy_init() and friends
3115 *
3116 * cy_init() is called at boot-time to initialize the serial driver.
3117 * ---------------------------------------------------------------------
3118 */
3119
Jiri Slabydd025c02007-05-08 00:37:02 -07003120static int __devinit cy_init_card(struct cyclades_card *cinfo)
Jiri Slaby0809e262007-05-08 00:36:14 -07003121{
3122 struct cyclades_port *info;
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003123 unsigned int channel, port;
Jiri Slaby0809e262007-05-08 00:36:14 -07003124
Jiri Slaby3046d502007-05-08 00:36:46 -07003125 spin_lock_init(&cinfo->card_lock);
Jiri Slaby963118e2009-06-11 12:34:27 +01003126 cinfo->intr_enabled = 0;
Jiri Slaby3046d502007-05-08 00:36:46 -07003127
Jiri Slaby963118e2009-06-11 12:34:27 +01003128 cinfo->ports = kcalloc(cinfo->nports, sizeof(*cinfo->ports),
3129 GFP_KERNEL);
Jiri Slabydd025c02007-05-08 00:37:02 -07003130 if (cinfo->ports == NULL) {
3131 printk(KERN_ERR "Cyclades: cannot allocate ports\n");
3132 return -ENOMEM;
3133 }
3134
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003135 for (channel = 0, port = cinfo->first_line; channel < cinfo->nports;
3136 channel++, port++) {
3137 info = &cinfo->ports[channel];
Alan Cox44b7d1b2008-07-16 21:57:18 +01003138 tty_port_init(&info->port);
Jiri Slaby3046d502007-05-08 00:36:46 -07003139 info->magic = CYCLADES_MAGIC;
Jiri Slaby875b2062007-05-08 00:36:49 -07003140 info->card = cinfo;
Jiri Slaby3046d502007-05-08 00:36:46 -07003141 info->line = port;
Jiri Slaby3046d502007-05-08 00:36:46 -07003142
Alan Cox44b7d1b2008-07-16 21:57:18 +01003143 info->port.closing_wait = CLOSING_WAIT_DELAY;
3144 info->port.close_delay = 5 * HZ / 10;
Alan Cox77451e52008-07-16 21:57:02 +01003145 info->port.flags = STD_COM_FLAGS;
Jiri Slaby2c7fea92007-05-08 00:36:51 -07003146 init_completion(&info->shutdown_wait);
Jiri Slaby3046d502007-05-08 00:36:46 -07003147
Jiri Slaby2693f482009-06-11 12:31:06 +01003148 if (cy_is_Z(cinfo)) {
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003149 struct FIRM_ID *firm_id = cinfo->base_addr + ID_ADDRESS;
3150 struct ZFW_CTRL *zfw_ctrl;
3151
Jiri Slabyf0737572009-09-19 13:13:12 -07003152 info->port.ops = &cyz_port_ops;
Jiri Slaby0809e262007-05-08 00:36:14 -07003153 info->type = PORT_STARTECH;
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003154
3155 zfw_ctrl = cinfo->base_addr +
3156 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
3157 info->u.cyz.ch_ctrl = &zfw_ctrl->ch_ctrl[channel];
3158 info->u.cyz.buf_ctrl = &zfw_ctrl->buf_ctrl[channel];
3159
Jiri Slaby101b8152009-06-11 12:30:10 +01003160 if (cinfo->hw_ver == ZO_V1)
Jiri Slaby0809e262007-05-08 00:36:14 -07003161 info->xmit_fifo_size = CYZ_FIFO_SIZE;
3162 else
Jiri Slaby3046d502007-05-08 00:36:46 -07003163 info->xmit_fifo_size = 4 * CYZ_FIFO_SIZE;
Jiri Slaby0809e262007-05-08 00:36:14 -07003164#ifdef CONFIG_CYZ_INTR
Jiri Slaby39914282007-05-08 00:36:54 -07003165 setup_timer(&cyz_rx_full_timer[port],
3166 cyz_rx_restart, (unsigned long)info);
Jiri Slaby0809e262007-05-08 00:36:14 -07003167#endif
Jiri Slaby3046d502007-05-08 00:36:46 -07003168 } else {
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003169 unsigned short chip_number;
Jiri Slaby963118e2009-06-11 12:34:27 +01003170 int index = cinfo->bus_index;
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003171
Jiri Slabyf0737572009-09-19 13:13:12 -07003172 info->port.ops = &cyy_port_ops;
Jiri Slaby0809e262007-05-08 00:36:14 -07003173 info->type = PORT_CIRRUS;
Jiri Slaby0809e262007-05-08 00:36:14 -07003174 info->xmit_fifo_size = CyMAX_CHAR_FIFO;
Jiri Slaby3046d502007-05-08 00:36:46 -07003175 info->cor1 = CyPARITY_NONE | Cy_1_STOP | Cy_8_BITS;
Jiri Slaby0809e262007-05-08 00:36:14 -07003176 info->cor2 = CyETC;
3177 info->cor3 = 0x08; /* _very_ small rcv threshold */
Jiri Slaby3046d502007-05-08 00:36:46 -07003178
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003179 chip_number = channel / CyPORTS_PER_CHIP;
Jiri Slaby3aeea5b2009-09-19 13:13:16 -07003180 info->u.cyy.base_addr = cinfo->base_addr +
3181 (cy_chip_offset[chip_number] << index);
3182 info->chip_rev = cyy_readb(info, CyGFRCR);
Alan Cox15ed6cc2008-04-30 00:53:55 -07003183
3184 if (info->chip_rev >= CD1400_REV_J) {
Jiri Slaby0809e262007-05-08 00:36:14 -07003185 /* It is a CD1400 rev. J or later */
3186 info->tbpr = baud_bpr_60[13]; /* Tx BPR */
3187 info->tco = baud_co_60[13]; /* Tx CO */
3188 info->rbpr = baud_bpr_60[13]; /* Rx BPR */
3189 info->rco = baud_co_60[13]; /* Rx CO */
Jiri Slaby0809e262007-05-08 00:36:14 -07003190 info->rtsdtr_inv = 1;
3191 } else {
3192 info->tbpr = baud_bpr_25[13]; /* Tx BPR */
3193 info->tco = baud_co_25[13]; /* Tx CO */
3194 info->rbpr = baud_bpr_25[13]; /* Rx BPR */
3195 info->rco = baud_co_25[13]; /* Rx CO */
Jiri Slaby0809e262007-05-08 00:36:14 -07003196 info->rtsdtr_inv = 0;
3197 }
Jiri Slaby3046d502007-05-08 00:36:46 -07003198 info->read_status_mask = CyTIMEOUT | CySPECHAR |
3199 CyBREAK | CyPARITY | CyFRAME | CyOVERRUN;
Jiri Slaby0809e262007-05-08 00:36:14 -07003200 }
Jiri Slaby3046d502007-05-08 00:36:46 -07003201
Jiri Slaby0809e262007-05-08 00:36:14 -07003202 }
Jiri Slaby3046d502007-05-08 00:36:46 -07003203
3204#ifndef CONFIG_CYZ_INTR
Jiri Slaby2693f482009-06-11 12:31:06 +01003205 if (cy_is_Z(cinfo) && !timer_pending(&cyz_timerlist)) {
Jiri Slaby3046d502007-05-08 00:36:46 -07003206 mod_timer(&cyz_timerlist, jiffies + 1);
3207#ifdef CY_PCI_DEBUG
3208 printk(KERN_DEBUG "Cyclades-Z polling initialized\n");
3209#endif
3210 }
3211#endif
Jiri Slabydd025c02007-05-08 00:37:02 -07003212 return 0;
Jiri Slaby0809e262007-05-08 00:36:14 -07003213}
3214
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215/* initialize chips on Cyclom-Y card -- return number of valid
3216 chips (which is number of ports/4) */
Jiri Slaby31b4f0a2007-05-08 00:36:44 -07003217static unsigned short __devinit cyy_init_card(void __iomem *true_base_addr,
3218 int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219{
Jiri Slaby02f11752006-12-08 02:39:28 -08003220 unsigned int chip_number;
3221 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
Jiri Slaby02f11752006-12-08 02:39:28 -08003223 cy_writeb(true_base_addr + (Cy_HwReset << index), 0);
3224 /* Cy_HwReset is 0x1400 */
3225 cy_writeb(true_base_addr + (Cy_ClrIntr << index), 0);
3226 /* Cy_ClrIntr is 0x1800 */
3227 udelay(500L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
Alan Cox15ed6cc2008-04-30 00:53:55 -07003229 for (chip_number = 0; chip_number < CyMAX_CHIPS_PER_CARD;
3230 chip_number++) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003231 base_addr =
3232 true_base_addr + (cy_chip_offset[chip_number] << index);
3233 mdelay(1);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003234 if (readb(base_addr + (CyCCR << index)) != 0x00) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003235 /*************
3236 printk(" chip #%d at %#6lx is never idle (CCR != 0)\n",
3237 chip_number, (unsigned long)base_addr);
3238 *************/
3239 return chip_number;
3240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Jiri Slaby02f11752006-12-08 02:39:28 -08003242 cy_writeb(base_addr + (CyGFRCR << index), 0);
3243 udelay(10L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Jiri Slaby02f11752006-12-08 02:39:28 -08003245 /* The Cyclom-16Y does not decode address bit 9 and therefore
3246 cannot distinguish between references to chip 0 and a non-
3247 existent chip 4. If the preceding clearing of the supposed
3248 chip 4 GFRCR register appears at chip 0, there is no chip 4
3249 and this must be a Cyclom-16Y, not a Cyclom-32Ye.
3250 */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003251 if (chip_number == 4 && readb(true_base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08003252 (cy_chip_offset[0] << index) +
3253 (CyGFRCR << index)) == 0) {
3254 return chip_number;
3255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
Jiri Slaby02f11752006-12-08 02:39:28 -08003257 cy_writeb(base_addr + (CyCCR << index), CyCHIP_RESET);
3258 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003260 if (readb(base_addr + (CyGFRCR << index)) == 0x00) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003261 /*
3262 printk(" chip #%d at %#6lx is not responding ",
3263 chip_number, (unsigned long)base_addr);
3264 printk("(GFRCR stayed 0)\n",
3265 */
3266 return chip_number;
3267 }
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003268 if ((0xf0 & (readb(base_addr + (CyGFRCR << index)))) !=
Jiri Slaby02f11752006-12-08 02:39:28 -08003269 0x40) {
3270 /*
3271 printk(" chip #%d at %#6lx is not valid (GFRCR == "
3272 "%#2x)\n",
3273 chip_number, (unsigned long)base_addr,
3274 base_addr[CyGFRCR<<index]);
3275 */
3276 return chip_number;
3277 }
3278 cy_writeb(base_addr + (CyGCR << index), CyCH0_SERIAL);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003279 if (readb(base_addr + (CyGFRCR << index)) >= CD1400_REV_J) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003280 /* It is a CD1400 rev. J or later */
3281 /* Impossible to reach 5ms with this chip.
3282 Changed to 2ms instead (f = 500 Hz). */
3283 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_60_2MS);
3284 } else {
3285 /* f = 200 Hz */
3286 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_25_5MS);
3287 }
3288
3289 /*
3290 printk(" chip #%d at %#6lx is rev 0x%2x\n",
3291 chip_number, (unsigned long)base_addr,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003292 readb(base_addr+(CyGFRCR<<index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08003293 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003295 return chip_number;
3296} /* cyy_init_card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
3298/*
3299 * ---------------------------------------------------------------------
3300 * cy_detect_isa() - Probe for Cyclom-Y/ISA boards.
3301 * sets global variables and return the number of ISA boards found.
3302 * ---------------------------------------------------------------------
3303 */
Jiri Slaby02f11752006-12-08 02:39:28 -08003304static int __init cy_detect_isa(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305{
3306#ifdef CONFIG_ISA
Jiri Slaby02f11752006-12-08 02:39:28 -08003307 unsigned short cy_isa_irq, nboard;
3308 void __iomem *cy_isa_address;
3309 unsigned short i, j, cy_isa_nchan;
Jiri Slaby02f11752006-12-08 02:39:28 -08003310 int isparam = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Jiri Slaby02f11752006-12-08 02:39:28 -08003312 nboard = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 /* Check for module parameters */
Jiri Slaby02f11752006-12-08 02:39:28 -08003315 for (i = 0; i < NR_CARDS; i++) {
3316 if (maddr[i] || i) {
3317 isparam = 1;
3318 cy_isa_addresses[i] = maddr[i];
3319 }
3320 if (!maddr[i])
3321 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
Jiri Slaby02f11752006-12-08 02:39:28 -08003324 /* scan the address table probing for Cyclom-Y/ISA boards */
3325 for (i = 0; i < NR_ISA_ADDRS; i++) {
3326 unsigned int isa_address = cy_isa_addresses[i];
Alan Cox15ed6cc2008-04-30 00:53:55 -07003327 if (isa_address == 0x0000)
Jiri Slaby096dcfc2006-12-08 02:39:30 -08003328 return nboard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
Jiri Slaby02f11752006-12-08 02:39:28 -08003330 /* probe for CD1400... */
Alan Coxcd989b32008-04-30 00:53:56 -07003331 cy_isa_address = ioremap_nocache(isa_address, CyISA_Ywin);
Jiri Slaby31375532007-05-08 00:37:04 -07003332 if (cy_isa_address == NULL) {
3333 printk(KERN_ERR "Cyclom-Y/ISA: can't remap base "
3334 "address\n");
3335 continue;
3336 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003337 cy_isa_nchan = CyPORTS_PER_CHIP *
3338 cyy_init_card(cy_isa_address, 0);
3339 if (cy_isa_nchan == 0) {
Jiri Slaby31375532007-05-08 00:37:04 -07003340 iounmap(cy_isa_address);
Jiri Slaby02f11752006-12-08 02:39:28 -08003341 continue;
3342 }
Bartlomiej Zolnierkiewicz20904362009-12-09 12:34:14 -08003343
Roel Kluin196b3162009-10-01 15:44:24 -07003344 if (isparam && i < NR_CARDS && irq[i])
Jiri Slaby02f11752006-12-08 02:39:28 -08003345 cy_isa_irq = irq[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 else
Jiri Slaby02f11752006-12-08 02:39:28 -08003347 /* find out the board's irq by probing */
3348 cy_isa_irq = detect_isa_irq(cy_isa_address);
3349 if (cy_isa_irq == 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003350 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but the "
3351 "IRQ could not be detected.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08003352 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07003353 iounmap(cy_isa_address);
Jiri Slaby02f11752006-12-08 02:39:28 -08003354 continue;
3355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
Jiri Slaby02f11752006-12-08 02:39:28 -08003357 if ((cy_next_channel + cy_isa_nchan) > NR_PORTS) {
Jiri Slaby21719192007-05-08 00:36:42 -07003358 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
3359 "more channels are available. Change NR_PORTS "
3360 "in cyclades.c and recompile kernel.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08003361 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07003362 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08003363 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08003364 }
3365 /* fill the next cy_card structure available */
3366 for (j = 0; j < NR_CARDS; j++) {
Jiri Slabyf7429032007-05-08 00:36:59 -07003367 if (cy_card[j].base_addr == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08003368 break;
3369 }
3370 if (j == NR_CARDS) { /* no more cy_cards available */
Jiri Slaby21719192007-05-08 00:36:42 -07003371 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
3372 "more cards can be used. Change NR_CARDS in "
3373 "cyclades.c and recompile kernel.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08003374 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07003375 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08003376 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08003377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
Jiri Slaby02f11752006-12-08 02:39:28 -08003379 /* allocate IRQ */
3380 if (request_irq(cy_isa_irq, cyy_interrupt,
3381 IRQF_DISABLED, "Cyclom-Y", &cy_card[j])) {
Jiri Slaby21719192007-05-08 00:36:42 -07003382 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but "
3383 "could not allocate IRQ#%d.\n",
3384 (unsigned long)cy_isa_address, cy_isa_irq);
Jiri Slaby31375532007-05-08 00:37:04 -07003385 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08003386 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08003387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
Jiri Slaby02f11752006-12-08 02:39:28 -08003389 /* set cy_card */
3390 cy_card[j].base_addr = cy_isa_address;
Jiri Slaby97e87f82009-06-11 12:29:27 +01003391 cy_card[j].ctl_addr.p9050 = NULL;
Jiri Slaby02f11752006-12-08 02:39:28 -08003392 cy_card[j].irq = (int)cy_isa_irq;
3393 cy_card[j].bus_index = 0;
3394 cy_card[j].first_line = cy_next_channel;
Jiri Slaby963118e2009-06-11 12:34:27 +01003395 cy_card[j].num_chips = cy_isa_nchan / CyPORTS_PER_CHIP;
3396 cy_card[j].nports = cy_isa_nchan;
Jiri Slaby31375532007-05-08 00:37:04 -07003397 if (cy_init_card(&cy_card[j])) {
3398 cy_card[j].base_addr = NULL;
3399 free_irq(cy_isa_irq, &cy_card[j]);
3400 iounmap(cy_isa_address);
3401 continue;
3402 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003403 nboard++;
3404
Jiri Slaby21719192007-05-08 00:36:42 -07003405 printk(KERN_INFO "Cyclom-Y/ISA #%d: 0x%lx-0x%lx, IRQ%d found: "
3406 "%d channels starting from port %d\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08003407 j + 1, (unsigned long)cy_isa_address,
3408 (unsigned long)(cy_isa_address + (CyISA_Ywin - 1)),
Jiri Slaby21719192007-05-08 00:36:42 -07003409 cy_isa_irq, cy_isa_nchan, cy_next_channel);
3410
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07003411 for (j = cy_next_channel;
3412 j < cy_next_channel + cy_isa_nchan; j++)
3413 tty_register_device(cy_serial_driver, j, NULL);
Jiri Slaby02f11752006-12-08 02:39:28 -08003414 cy_next_channel += cy_isa_nchan;
3415 }
Jiri Slaby096dcfc2006-12-08 02:39:30 -08003416 return nboard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417#else
Jiri Slaby096dcfc2006-12-08 02:39:30 -08003418 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003419#endif /* CONFIG_ISA */
3420} /* cy_detect_isa */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
Jiri Slaby58936d82007-05-08 00:36:13 -07003422#ifdef CONFIG_PCI
Jiri Slaby054f5b02007-07-17 04:05:16 -07003423static inline int __devinit cyc_isfwstr(const char *str, unsigned int size)
3424{
3425 unsigned int a;
3426
3427 for (a = 0; a < size && *str; a++, str++)
3428 if (*str & 0x80)
3429 return -EINVAL;
3430
3431 for (; a < size; a++, str++)
3432 if (*str)
3433 return -EINVAL;
3434
3435 return 0;
3436}
3437
David Woodhousef61e7612008-05-23 23:57:19 +01003438static inline void __devinit cyz_fpga_copy(void __iomem *fpga, const u8 *data,
Jiri Slaby054f5b02007-07-17 04:05:16 -07003439 unsigned int size)
3440{
3441 for (; size > 0; size--) {
3442 cy_writel(fpga, *data++);
3443 udelay(10);
3444 }
3445}
3446
3447static void __devinit plx_init(struct pci_dev *pdev, int irq,
3448 struct RUNTIME_9060 __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449{
Jiri Slaby02f11752006-12-08 02:39:28 -08003450 /* Reset PLX */
Jiri Slaby054f5b02007-07-17 04:05:16 -07003451 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x40000000);
Jiri Slaby02f11752006-12-08 02:39:28 -08003452 udelay(100L);
Jiri Slaby054f5b02007-07-17 04:05:16 -07003453 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x40000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
Jiri Slaby02f11752006-12-08 02:39:28 -08003455 /* Reload Config. Registers from EEPROM */
Jiri Slaby054f5b02007-07-17 04:05:16 -07003456 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x20000000);
Jiri Slaby02f11752006-12-08 02:39:28 -08003457 udelay(100L);
Jiri Slaby054f5b02007-07-17 04:05:16 -07003458 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x20000000);
3459
3460 /* For some yet unknown reason, once the PLX9060 reloads the EEPROM,
3461 * the IRQ is lost and, thus, we have to re-write it to the PCI config.
3462 * registers. This will remain here until we find a permanent fix.
3463 */
3464 pci_write_config_byte(pdev, PCI_INTERRUPT_LINE, irq);
3465}
3466
3467static int __devinit __cyz_load_fw(const struct firmware *fw,
3468 const char *name, const u32 mailbox, void __iomem *base,
3469 void __iomem *fpga)
3470{
David Woodhousef61e7612008-05-23 23:57:19 +01003471 const void *ptr = fw->data;
3472 const struct zfile_header *h = ptr;
3473 const struct zfile_config *c, *cs;
3474 const struct zfile_block *b, *bs;
Jiri Slaby054f5b02007-07-17 04:05:16 -07003475 unsigned int a, tmp, len = fw->size;
3476#define BAD_FW KERN_ERR "Bad firmware: "
3477 if (len < sizeof(*h)) {
3478 printk(BAD_FW "too short: %u<%zu\n", len, sizeof(*h));
3479 return -EINVAL;
3480 }
3481
3482 cs = ptr + h->config_offset;
3483 bs = ptr + h->block_offset;
3484
3485 if ((void *)(cs + h->n_config) > ptr + len ||
3486 (void *)(bs + h->n_blocks) > ptr + len) {
3487 printk(BAD_FW "too short");
3488 return -EINVAL;
3489 }
3490
3491 if (cyc_isfwstr(h->name, sizeof(h->name)) ||
3492 cyc_isfwstr(h->date, sizeof(h->date))) {
3493 printk(BAD_FW "bad formatted header string\n");
3494 return -EINVAL;
3495 }
3496
3497 if (strncmp(name, h->name, sizeof(h->name))) {
3498 printk(BAD_FW "bad name '%s' (expected '%s')\n", h->name, name);
3499 return -EINVAL;
3500 }
3501
3502 tmp = 0;
3503 for (c = cs; c < cs + h->n_config; c++) {
3504 for (a = 0; a < c->n_blocks; a++)
3505 if (c->block_list[a] > h->n_blocks) {
3506 printk(BAD_FW "bad block ref number in cfgs\n");
3507 return -EINVAL;
3508 }
3509 if (c->mailbox == mailbox && c->function == 0) /* 0 is normal */
3510 tmp++;
3511 }
3512 if (!tmp) {
3513 printk(BAD_FW "nothing appropriate\n");
3514 return -EINVAL;
3515 }
3516
3517 for (b = bs; b < bs + h->n_blocks; b++)
3518 if (b->file_offset + b->size > len) {
3519 printk(BAD_FW "bad block data offset\n");
3520 return -EINVAL;
3521 }
3522
3523 /* everything is OK, let's seek'n'load it */
3524 for (c = cs; c < cs + h->n_config; c++)
3525 if (c->mailbox == mailbox && c->function == 0)
3526 break;
3527
3528 for (a = 0; a < c->n_blocks; a++) {
3529 b = &bs[c->block_list[a]];
3530 if (b->type == ZBLOCK_FPGA) {
3531 if (fpga != NULL)
3532 cyz_fpga_copy(fpga, ptr + b->file_offset,
3533 b->size);
3534 } else {
3535 if (base != NULL)
3536 memcpy_toio(base + b->ram_offset,
3537 ptr + b->file_offset, b->size);
3538 }
3539 }
3540#undef BAD_FW
3541 return 0;
3542}
3543
3544static int __devinit cyz_load_fw(struct pci_dev *pdev, void __iomem *base_addr,
3545 struct RUNTIME_9060 __iomem *ctl_addr, int irq)
3546{
3547 const struct firmware *fw;
3548 struct FIRM_ID __iomem *fid = base_addr + ID_ADDRESS;
3549 struct CUSTOM_REG __iomem *cust = base_addr;
3550 struct ZFW_CTRL __iomem *pt_zfwctrl;
Jiri Slabyc4923b42007-07-17 04:05:17 -07003551 void __iomem *tmp;
Jiri Slaby963118e2009-06-11 12:34:27 +01003552 u32 mailbox, status, nchan;
Jiri Slaby054f5b02007-07-17 04:05:16 -07003553 unsigned int i;
3554 int retval;
3555
3556 retval = request_firmware(&fw, "cyzfirm.bin", &pdev->dev);
3557 if (retval) {
3558 dev_err(&pdev->dev, "can't get firmware\n");
3559 goto err;
3560 }
3561
3562 /* Check whether the firmware is already loaded and running. If
3563 positive, skip this board */
Jiri Slaby2693f482009-06-11 12:31:06 +01003564 if (__cyz_fpga_loaded(ctl_addr) && readl(&fid->signature) == ZFIRM_ID) {
Jiri Slaby054f5b02007-07-17 04:05:16 -07003565 u32 cntval = readl(base_addr + 0x190);
3566
3567 udelay(100);
3568 if (cntval != readl(base_addr + 0x190)) {
3569 /* FW counter is working, FW is running */
3570 dev_dbg(&pdev->dev, "Cyclades-Z FW already loaded. "
3571 "Skipping board.\n");
3572 retval = 0;
3573 goto err_rel;
3574 }
3575 }
3576
3577 /* start boot */
3578 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) &
3579 ~0x00030800UL);
3580
3581 mailbox = readl(&ctl_addr->mail_box_0);
3582
Jiri Slaby2693f482009-06-11 12:31:06 +01003583 if (mailbox == 0 || __cyz_fpga_loaded(ctl_addr)) {
Jiri Slaby054f5b02007-07-17 04:05:16 -07003584 /* stops CPU and set window to beginning of RAM */
3585 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
3586 cy_writel(&cust->cpu_stop, 0);
3587 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
3588 udelay(100);
3589 }
3590
3591 plx_init(pdev, irq, ctl_addr);
3592
3593 if (mailbox != 0) {
3594 /* load FPGA */
3595 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, NULL,
3596 base_addr);
3597 if (retval)
3598 goto err_rel;
Jiri Slaby2693f482009-06-11 12:31:06 +01003599 if (!__cyz_fpga_loaded(ctl_addr)) {
Jiri Slaby054f5b02007-07-17 04:05:16 -07003600 dev_err(&pdev->dev, "fw upload successful, but fw is "
3601 "not loaded\n");
3602 goto err_rel;
3603 }
3604 }
3605
3606 /* stops CPU and set window to beginning of RAM */
3607 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
3608 cy_writel(&cust->cpu_stop, 0);
3609 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
3610 udelay(100);
3611
3612 /* clear memory */
Jiri Slabyc4923b42007-07-17 04:05:17 -07003613 for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++)
Jiri Slaby054f5b02007-07-17 04:05:16 -07003614 cy_writeb(tmp, 255);
3615 if (mailbox != 0) {
3616 /* set window to last 512K of RAM */
3617 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM + RAM_SIZE);
Jiri Slabyc4923b42007-07-17 04:05:17 -07003618 for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++)
Jiri Slaby054f5b02007-07-17 04:05:16 -07003619 cy_writeb(tmp, 255);
3620 /* set window to beginning of RAM */
3621 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
Jiri Slaby054f5b02007-07-17 04:05:16 -07003622 }
3623
3624 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, base_addr, NULL);
3625 release_firmware(fw);
3626 if (retval)
3627 goto err;
3628
3629 /* finish boot and start boards */
3630 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
3631 cy_writel(&cust->cpu_start, 0);
3632 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
3633 i = 0;
3634 while ((status = readl(&fid->signature)) != ZFIRM_ID && i++ < 40)
3635 msleep(100);
3636 if (status != ZFIRM_ID) {
3637 if (status == ZFIRM_HLT) {
3638 dev_err(&pdev->dev, "you need an external power supply "
3639 "for this number of ports. Firmware halted and "
3640 "board reset.\n");
3641 retval = -EIO;
3642 goto err;
3643 }
3644 dev_warn(&pdev->dev, "fid->signature = 0x%x... Waiting "
3645 "some more time\n", status);
3646 while ((status = readl(&fid->signature)) != ZFIRM_ID &&
3647 i++ < 200)
3648 msleep(100);
3649 if (status != ZFIRM_ID) {
3650 dev_err(&pdev->dev, "Board not started in 20 seconds! "
3651 "Giving up. (fid->signature = 0x%x)\n",
3652 status);
3653 dev_info(&pdev->dev, "*** Warning ***: if you are "
3654 "upgrading the FW, please power cycle the "
3655 "system before loading the new FW to the "
3656 "Cyclades-Z.\n");
3657
Jiri Slaby2693f482009-06-11 12:31:06 +01003658 if (__cyz_fpga_loaded(ctl_addr))
Jiri Slaby054f5b02007-07-17 04:05:16 -07003659 plx_init(pdev, irq, ctl_addr);
3660
3661 retval = -EIO;
3662 goto err;
3663 }
3664 dev_dbg(&pdev->dev, "Firmware started after %d seconds.\n",
3665 i / 10);
3666 }
3667 pt_zfwctrl = base_addr + readl(&fid->zfwctrl_addr);
3668
3669 dev_dbg(&pdev->dev, "fid=> %p, zfwctrl_addr=> %x, npt_zfwctrl=> %p\n",
3670 base_addr + ID_ADDRESS, readl(&fid->zfwctrl_addr),
3671 base_addr + readl(&fid->zfwctrl_addr));
3672
Jiri Slaby963118e2009-06-11 12:34:27 +01003673 nchan = readl(&pt_zfwctrl->board_ctrl.n_channel);
Jiri Slaby054f5b02007-07-17 04:05:16 -07003674 dev_info(&pdev->dev, "Cyclades-Z FW loaded: version = %x, ports = %u\n",
Jiri Slaby963118e2009-06-11 12:34:27 +01003675 readl(&pt_zfwctrl->board_ctrl.fw_version), nchan);
Jiri Slaby054f5b02007-07-17 04:05:16 -07003676
Jiri Slaby963118e2009-06-11 12:34:27 +01003677 if (nchan == 0) {
Jiri Slaby054f5b02007-07-17 04:05:16 -07003678 dev_warn(&pdev->dev, "no Cyclades-Z ports were found. Please "
3679 "check the connection between the Z host card and the "
3680 "serial expanders.\n");
3681
Jiri Slaby2693f482009-06-11 12:31:06 +01003682 if (__cyz_fpga_loaded(ctl_addr))
Jiri Slaby054f5b02007-07-17 04:05:16 -07003683 plx_init(pdev, irq, ctl_addr);
3684
3685 dev_info(&pdev->dev, "Null number of ports detected. Board "
3686 "reset.\n");
3687 retval = 0;
3688 goto err;
3689 }
3690
3691 cy_writel(&pt_zfwctrl->board_ctrl.op_system, C_OS_LINUX);
3692 cy_writel(&pt_zfwctrl->board_ctrl.dr_version, DRIVER_VERSION);
3693
3694 /*
3695 Early firmware failed to start looking for commands.
3696 This enables firmware interrupts for those commands.
3697 */
3698 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) |
3699 (1 << 17));
3700 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) |
3701 0x00030800UL);
3702
Jiri Slaby963118e2009-06-11 12:34:27 +01003703 return nchan;
Jiri Slaby054f5b02007-07-17 04:05:16 -07003704err_rel:
3705 release_firmware(fw);
3706err:
3707 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708}
3709
Jiri Slaby58936d82007-05-08 00:36:13 -07003710static int __devinit cy_pci_probe(struct pci_dev *pdev,
3711 const struct pci_device_id *ent)
3712{
Jiri Slaby31375532007-05-08 00:37:04 -07003713 void __iomem *addr0 = NULL, *addr2 = NULL;
3714 char *card_name = NULL;
Jiri Slaby101b8152009-06-11 12:30:10 +01003715 u32 uninitialized_var(mailbox);
Jiri Slaby31375532007-05-08 00:37:04 -07003716 unsigned int device_id, nchan = 0, card_no, i;
3717 unsigned char plx_ver;
3718 int retval, irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07003719
3720 retval = pci_enable_device(pdev);
3721 if (retval) {
3722 dev_err(&pdev->dev, "cannot enable device\n");
Jiri Slaby31375532007-05-08 00:37:04 -07003723 goto err;
Jiri Slaby58936d82007-05-08 00:36:13 -07003724 }
3725
3726 /* read PCI configuration area */
Jiri Slaby31375532007-05-08 00:37:04 -07003727 irq = pdev->irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07003728 device_id = pdev->device & ~PCI_DEVICE_ID_MASK;
3729
Jiri Slaby31375532007-05-08 00:37:04 -07003730#if defined(__alpha__)
3731 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo) { /* below 1M? */
3732 dev_err(&pdev->dev, "Cyclom-Y/PCI not supported for low "
3733 "addresses on Alpha systems.\n");
3734 retval = -EIO;
3735 goto err_dis;
3736 }
3737#endif
3738 if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Lo) {
3739 dev_err(&pdev->dev, "Cyclades-Z/PCI not supported for low "
3740 "addresses\n");
3741 retval = -EIO;
3742 goto err_dis;
3743 }
3744
3745 if (pci_resource_flags(pdev, 2) & IORESOURCE_IO) {
3746 dev_warn(&pdev->dev, "PCI I/O bit incorrectly set. Ignoring "
3747 "it...\n");
3748 pdev->resource[2].flags &= ~IORESOURCE_IO;
3749 }
3750
3751 retval = pci_request_regions(pdev, "cyclades");
3752 if (retval) {
3753 dev_err(&pdev->dev, "failed to reserve resources\n");
3754 goto err_dis;
3755 }
3756
3757 retval = -EIO;
Jiri Slaby58936d82007-05-08 00:36:13 -07003758 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
3759 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby31375532007-05-08 00:37:04 -07003760 card_name = "Cyclom-Y";
Jiri Slaby58936d82007-05-08 00:36:13 -07003761
Jiri Slaby24e6fd42008-10-13 10:34:09 +01003762 addr0 = ioremap_nocache(pci_resource_start(pdev, 0),
3763 CyPCI_Yctl);
Jiri Slaby31375532007-05-08 00:37:04 -07003764 if (addr0 == NULL) {
3765 dev_err(&pdev->dev, "can't remap ctl region\n");
3766 goto err_reg;
3767 }
Jiri Slaby24e6fd42008-10-13 10:34:09 +01003768 addr2 = ioremap_nocache(pci_resource_start(pdev, 2),
3769 CyPCI_Ywin);
Jiri Slaby31375532007-05-08 00:37:04 -07003770 if (addr2 == NULL) {
3771 dev_err(&pdev->dev, "can't remap base region\n");
3772 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07003773 }
3774
Jiri Slaby31375532007-05-08 00:37:04 -07003775 nchan = CyPORTS_PER_CHIP * cyy_init_card(addr2, 1);
3776 if (nchan == 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003777 dev_err(&pdev->dev, "Cyclom-Y PCI host card with no "
3778 "Serial-Modules\n");
Andrew Mortonc847d472009-01-02 13:50:07 +00003779 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07003780 }
Jiri Slaby31375532007-05-08 00:37:04 -07003781 } else if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Hi) {
3782 struct RUNTIME_9060 __iomem *ctl_addr;
3783
Jiri Slaby24e6fd42008-10-13 10:34:09 +01003784 ctl_addr = addr0 = ioremap_nocache(pci_resource_start(pdev, 0),
3785 CyPCI_Zctl);
Jiri Slaby31375532007-05-08 00:37:04 -07003786 if (addr0 == NULL) {
3787 dev_err(&pdev->dev, "can't remap ctl region\n");
3788 goto err_reg;
Jiri Slaby58936d82007-05-08 00:36:13 -07003789 }
3790
Jiri Slaby31375532007-05-08 00:37:04 -07003791 /* Disable interrupts on the PLX before resetting it */
Jiri Slaby97e87f82009-06-11 12:29:27 +01003792 cy_writew(&ctl_addr->intr_ctrl_stat,
3793 readw(&ctl_addr->intr_ctrl_stat) & ~0x0900);
Jiri Slaby31375532007-05-08 00:37:04 -07003794
Jiri Slaby054f5b02007-07-17 04:05:16 -07003795 plx_init(pdev, irq, addr0);
Jiri Slaby31375532007-05-08 00:37:04 -07003796
Jiri Slaby101b8152009-06-11 12:30:10 +01003797 mailbox = readl(&ctl_addr->mail_box_0);
Jiri Slaby31375532007-05-08 00:37:04 -07003798
Jiri Slaby24e6fd42008-10-13 10:34:09 +01003799 addr2 = ioremap_nocache(pci_resource_start(pdev, 2),
3800 mailbox == ZE_V1 ? CyPCI_Ze_win : CyPCI_Zwin);
Jiri Slaby31375532007-05-08 00:37:04 -07003801 if (addr2 == NULL) {
3802 dev_err(&pdev->dev, "can't remap base region\n");
3803 goto err_unmap;
3804 }
3805
3806 if (mailbox == ZE_V1) {
3807 card_name = "Cyclades-Ze";
Jiri Slaby31375532007-05-08 00:37:04 -07003808 } else {
3809 card_name = "Cyclades-8Zo";
Jiri Slaby31375532007-05-08 00:37:04 -07003810#ifdef CY_PCI_DEBUG
3811 if (mailbox == ZO_V1) {
3812 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
3813 dev_info(&pdev->dev, "Cyclades-8Zo/PCI: FPGA "
3814 "id %lx, ver %lx\n", (ulong)(0xff &
3815 readl(&((struct CUSTOM_REG *)addr2)->
3816 fpga_id)), (ulong)(0xff &
3817 readl(&((struct CUSTOM_REG *)addr2)->
3818 fpga_version)));
3819 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
3820 } else {
3821 dev_info(&pdev->dev, "Cyclades-Z/PCI: New "
3822 "Cyclades-Z board. FPGA not loaded\n");
3823 }
3824#endif
3825 /* The following clears the firmware id word. This
3826 ensures that the driver will not attempt to talk to
3827 the board until it has been properly initialized.
3828 */
3829 if ((mailbox == ZO_V1) || (mailbox == ZO_V2))
3830 cy_writel(addr2 + ID_ADDRESS, 0L);
Jiri Slaby31375532007-05-08 00:37:04 -07003831 }
Jiri Slabyace08c32009-06-11 12:20:38 +01003832
3833 retval = cyz_load_fw(pdev, addr2, addr0, irq);
Jiri Slaby963118e2009-06-11 12:34:27 +01003834 if (retval <= 0)
Jiri Slabyace08c32009-06-11 12:20:38 +01003835 goto err_unmap;
Jiri Slaby963118e2009-06-11 12:34:27 +01003836 nchan = retval;
Jiri Slaby31375532007-05-08 00:37:04 -07003837 }
3838
3839 if ((cy_next_channel + nchan) > NR_PORTS) {
3840 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
3841 "channels are available. Change NR_PORTS in "
3842 "cyclades.c and recompile kernel.\n");
3843 goto err_unmap;
3844 }
3845 /* fill the next cy_card structure available */
3846 for (card_no = 0; card_no < NR_CARDS; card_no++) {
3847 if (cy_card[card_no].base_addr == NULL)
3848 break;
3849 }
3850 if (card_no == NR_CARDS) { /* no more cy_cards available */
3851 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
3852 "more cards can be used. Change NR_CARDS in "
3853 "cyclades.c and recompile kernel.\n");
3854 goto err_unmap;
3855 }
3856
3857 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
3858 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby58936d82007-05-08 00:36:13 -07003859 /* allocate IRQ */
Jiri Slaby31375532007-05-08 00:37:04 -07003860 retval = request_irq(irq, cyy_interrupt,
3861 IRQF_SHARED, "Cyclom-Y", &cy_card[card_no]);
Jiri Slaby58936d82007-05-08 00:36:13 -07003862 if (retval) {
Jiri Slaby21719192007-05-08 00:36:42 -07003863 dev_err(&pdev->dev, "could not allocate IRQ\n");
Jiri Slaby31375532007-05-08 00:37:04 -07003864 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07003865 }
Jiri Slaby963118e2009-06-11 12:34:27 +01003866 cy_card[card_no].num_chips = nchan / CyPORTS_PER_CHIP;
Jiri Slaby31375532007-05-08 00:37:04 -07003867 } else {
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003868 struct FIRM_ID __iomem *firm_id = addr2 + ID_ADDRESS;
3869 struct ZFW_CTRL __iomem *zfw_ctrl;
3870
3871 zfw_ctrl = addr2 + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
3872
Jiri Slaby101b8152009-06-11 12:30:10 +01003873 cy_card[card_no].hw_ver = mailbox;
3874 cy_card[card_no].num_chips = (unsigned int)-1;
Jiri Slabyf0eefdc2009-09-19 13:13:13 -07003875 cy_card[card_no].board_ctrl = &zfw_ctrl->board_ctrl;
Jiri Slaby31375532007-05-08 00:37:04 -07003876#ifdef CONFIG_CYZ_INTR
3877 /* allocate IRQ only if board has an IRQ */
3878 if (irq != 0 && irq != 255) {
3879 retval = request_irq(irq, cyz_interrupt,
3880 IRQF_SHARED, "Cyclades-Z",
3881 &cy_card[card_no]);
3882 if (retval) {
3883 dev_err(&pdev->dev, "could not allocate IRQ\n");
3884 goto err_unmap;
3885 }
3886 }
3887#endif /* CONFIG_CYZ_INTR */
Jiri Slaby31375532007-05-08 00:37:04 -07003888 }
Jiri Slaby58936d82007-05-08 00:36:13 -07003889
Jiri Slaby31375532007-05-08 00:37:04 -07003890 /* set cy_card */
3891 cy_card[card_no].base_addr = addr2;
Jiri Slaby97e87f82009-06-11 12:29:27 +01003892 cy_card[card_no].ctl_addr.p9050 = addr0;
Jiri Slaby31375532007-05-08 00:37:04 -07003893 cy_card[card_no].irq = irq;
3894 cy_card[card_no].bus_index = 1;
3895 cy_card[card_no].first_line = cy_next_channel;
Jiri Slaby963118e2009-06-11 12:34:27 +01003896 cy_card[card_no].nports = nchan;
Jiri Slaby31375532007-05-08 00:37:04 -07003897 retval = cy_init_card(&cy_card[card_no]);
3898 if (retval)
3899 goto err_null;
Jiri Slaby58936d82007-05-08 00:36:13 -07003900
Jiri Slaby31375532007-05-08 00:37:04 -07003901 pci_set_drvdata(pdev, &cy_card[card_no]);
3902
3903 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
3904 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby58936d82007-05-08 00:36:13 -07003905 /* enable interrupts in the PCI interface */
Jiri Slaby31375532007-05-08 00:37:04 -07003906 plx_ver = readb(addr2 + CyPLX_VER) & 0x0f;
Jiri Slaby58936d82007-05-08 00:36:13 -07003907 switch (plx_ver) {
3908 case PLX_9050:
Jiri Slaby31375532007-05-08 00:37:04 -07003909 cy_writeb(addr0 + 0x4c, 0x43);
Jiri Slaby58936d82007-05-08 00:36:13 -07003910 break;
3911
3912 case PLX_9060:
3913 case PLX_9080:
3914 default: /* Old boards, use PLX_9060 */
Jiri Slaby97e87f82009-06-11 12:29:27 +01003915 {
3916 struct RUNTIME_9060 __iomem *ctl_addr = addr0;
3917 plx_init(pdev, irq, ctl_addr);
3918 cy_writew(&ctl_addr->intr_ctrl_stat,
3919 readw(&ctl_addr->intr_ctrl_stat) | 0x0900);
Jiri Slaby58936d82007-05-08 00:36:13 -07003920 break;
3921 }
Jiri Slaby97e87f82009-06-11 12:29:27 +01003922 }
Jiri Slaby58936d82007-05-08 00:36:13 -07003923 }
3924
Jiri Slaby31375532007-05-08 00:37:04 -07003925 dev_info(&pdev->dev, "%s/PCI #%d found: %d channels starting from "
3926 "port %d.\n", card_name, card_no + 1, nchan, cy_next_channel);
3927 for (i = cy_next_channel; i < cy_next_channel + nchan; i++)
3928 tty_register_device(cy_serial_driver, i, &pdev->dev);
3929 cy_next_channel += nchan;
3930
Jiri Slaby58936d82007-05-08 00:36:13 -07003931 return 0;
Jiri Slaby31375532007-05-08 00:37:04 -07003932err_null:
3933 cy_card[card_no].base_addr = NULL;
3934 free_irq(irq, &cy_card[card_no]);
3935err_unmap:
Jiri Slaby24e6fd42008-10-13 10:34:09 +01003936 iounmap(addr0);
Jiri Slaby31375532007-05-08 00:37:04 -07003937 if (addr2)
Jiri Slaby24e6fd42008-10-13 10:34:09 +01003938 iounmap(addr2);
Jiri Slaby31375532007-05-08 00:37:04 -07003939err_reg:
3940 pci_release_regions(pdev);
3941err_dis:
3942 pci_disable_device(pdev);
3943err:
3944 return retval;
Jiri Slaby58936d82007-05-08 00:36:13 -07003945}
Jiri Slaby58936d82007-05-08 00:36:13 -07003946
Jiri Slaby6747cd92007-05-08 00:36:34 -07003947static void __devexit cy_pci_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948{
Jiri Slaby38d09092007-05-08 00:36:10 -07003949 struct cyclades_card *cinfo = pci_get_drvdata(pdev);
Jiri Slabyf3851e72007-05-08 00:36:16 -07003950 unsigned int i;
Jiri Slaby38d09092007-05-08 00:36:10 -07003951
Jiri Slaby85c93fa2007-05-08 00:36:23 -07003952 /* non-Z with old PLX */
Jiri Slaby2693f482009-06-11 12:31:06 +01003953 if (!cy_is_Z(cinfo) && (readb(cinfo->base_addr + CyPLX_VER) & 0x0f) ==
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07003954 PLX_9050)
Jiri Slaby97e87f82009-06-11 12:29:27 +01003955 cy_writeb(cinfo->ctl_addr.p9050 + 0x4c, 0);
Jiri Slaby85c93fa2007-05-08 00:36:23 -07003956 else
3957#ifndef CONFIG_CYZ_INTR
Jiri Slaby2693f482009-06-11 12:31:06 +01003958 if (!cy_is_Z(cinfo))
Jiri Slaby85c93fa2007-05-08 00:36:23 -07003959#endif
Jiri Slaby97e87f82009-06-11 12:29:27 +01003960 cy_writew(&cinfo->ctl_addr.p9060->intr_ctrl_stat,
3961 readw(&cinfo->ctl_addr.p9060->intr_ctrl_stat) &
3962 ~0x0900);
Jiri Slaby85c93fa2007-05-08 00:36:23 -07003963
Jiri Slaby24e6fd42008-10-13 10:34:09 +01003964 iounmap(cinfo->base_addr);
Jiri Slaby97e87f82009-06-11 12:29:27 +01003965 if (cinfo->ctl_addr.p9050)
3966 iounmap(cinfo->ctl_addr.p9050);
Jiri Slaby38d09092007-05-08 00:36:10 -07003967 if (cinfo->irq
3968#ifndef CONFIG_CYZ_INTR
Jiri Slaby2693f482009-06-11 12:31:06 +01003969 && !cy_is_Z(cinfo)
Jiri Slaby38d09092007-05-08 00:36:10 -07003970#endif /* CONFIG_CYZ_INTR */
3971 )
3972 free_irq(cinfo->irq, cinfo);
3973 pci_release_regions(pdev);
3974
3975 cinfo->base_addr = NULL;
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07003976 for (i = cinfo->first_line; i < cinfo->first_line +
3977 cinfo->nports; i++)
3978 tty_unregister_device(cy_serial_driver, i);
Jiri Slabydd025c02007-05-08 00:37:02 -07003979 cinfo->nports = 0;
3980 kfree(cinfo->ports);
Jiri Slaby38d09092007-05-08 00:36:10 -07003981}
3982
Jiri Slaby6747cd92007-05-08 00:36:34 -07003983static struct pci_driver cy_pci_driver = {
3984 .name = "cyclades",
3985 .id_table = cy_pci_dev_id,
3986 .probe = cy_pci_probe,
3987 .remove = __devexit_p(cy_pci_remove)
3988};
3989#endif
3990
Alexey Dobriyan444697d2009-03-31 15:19:15 -07003991static int cyclades_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992{
Jiri Slaby02f11752006-12-08 02:39:28 -08003993 struct cyclades_port *info;
Jiri Slabydd025c02007-05-08 00:37:02 -07003994 unsigned int i, j;
Jiri Slaby02f11752006-12-08 02:39:28 -08003995 __u32 cur_jifs = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Alexey Dobriyan444697d2009-03-31 15:19:15 -07003997 seq_puts(m, "Dev TimeOpen BytesOut IdleOut BytesIn "
Jiri Slaby02f11752006-12-08 02:39:28 -08003998 "IdleIn Overruns Ldisc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
Jiri Slaby02f11752006-12-08 02:39:28 -08004000 /* Output one line for each known port */
Jiri Slabydd025c02007-05-08 00:37:02 -07004001 for (i = 0; i < NR_CARDS; i++)
4002 for (j = 0; j < cy_card[i].nports; j++) {
4003 info = &cy_card[i].ports[j];
Jiri Slaby02f11752006-12-08 02:39:28 -08004004
Jiri Slabyd13549f2009-09-19 13:13:12 -07004005 if (info->port.count) {
4006 /* XXX is the ldisc num worth this? */
4007 struct tty_struct *tty;
4008 struct tty_ldisc *ld;
4009 int num = 0;
4010 tty = tty_port_tty_get(&info->port);
4011 if (tty) {
4012 ld = tty_ldisc_ref(tty);
4013 if (ld) {
4014 num = ld->ops->num;
4015 tty_ldisc_deref(ld);
4016 }
4017 tty_kref_put(tty);
4018 }
Alexey Dobriyan444697d2009-03-31 15:19:15 -07004019 seq_printf(m, "%3d %8lu %10lu %8lu "
Jiri Slabyd13549f2009-09-19 13:13:12 -07004020 "%10lu %8lu %9lu %6d\n", info->line,
Jiri Slabydd025c02007-05-08 00:37:02 -07004021 (cur_jifs - info->idle_stats.in_use) /
4022 HZ, info->idle_stats.xmit_bytes,
4023 (cur_jifs - info->idle_stats.xmit_idle)/
4024 HZ, info->idle_stats.recv_bytes,
4025 (cur_jifs - info->idle_stats.recv_idle)/
4026 HZ, info->idle_stats.overruns,
Jiri Slabyd13549f2009-09-19 13:13:12 -07004027 num);
4028 } else
Alexey Dobriyan444697d2009-03-31 15:19:15 -07004029 seq_printf(m, "%3d %8lu %10lu %8lu "
Jiri Slabydd025c02007-05-08 00:37:02 -07004030 "%10lu %8lu %9lu %6ld\n",
4031 info->line, 0L, 0L, 0L, 0L, 0L, 0L, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08004032 }
Alexey Dobriyan444697d2009-03-31 15:19:15 -07004033 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034}
4035
Alexey Dobriyan444697d2009-03-31 15:19:15 -07004036static int cyclades_proc_open(struct inode *inode, struct file *file)
4037{
4038 return single_open(file, cyclades_proc_show, NULL);
4039}
4040
4041static const struct file_operations cyclades_proc_fops = {
4042 .owner = THIS_MODULE,
4043 .open = cyclades_proc_open,
4044 .read = seq_read,
4045 .llseek = seq_lseek,
4046 .release = single_release,
4047};
4048
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049/* The serial driver boot-time initialization code!
4050 Hardware I/O ports are mapped to character special devices on a
4051 first found, first allocated manner. That is, this code searches
4052 for Cyclom cards in the system. As each is found, it is probed
4053 to discover how many chips (and thus how many ports) are present.
4054 These ports are mapped to the tty ports 32 and upward in monotonic
4055 fashion. If an 8-port card is replaced with a 16-port card, the
4056 port mapping on a following card will shift.
4057
4058 This approach is different from what is used in the other serial
4059 device driver because the Cyclom is more properly a multiplexer,
4060 not just an aggregation of serial ports on one card.
4061
4062 If there are more cards with more ports than have been
4063 statically allocated above, a warning is printed and the
4064 extra ports are ignored.
4065 */
4066
Jeff Dikeb68e31d2006-10-02 02:17:18 -07004067static const struct tty_operations cy_ops = {
Jiri Slaby02f11752006-12-08 02:39:28 -08004068 .open = cy_open,
4069 .close = cy_close,
4070 .write = cy_write,
4071 .put_char = cy_put_char,
4072 .flush_chars = cy_flush_chars,
4073 .write_room = cy_write_room,
4074 .chars_in_buffer = cy_chars_in_buffer,
4075 .flush_buffer = cy_flush_buffer,
4076 .ioctl = cy_ioctl,
4077 .throttle = cy_throttle,
4078 .unthrottle = cy_unthrottle,
4079 .set_termios = cy_set_termios,
4080 .stop = cy_stop,
4081 .start = cy_start,
4082 .hangup = cy_hangup,
4083 .break_ctl = cy_break,
4084 .wait_until_sent = cy_wait_until_sent,
Jiri Slaby02f11752006-12-08 02:39:28 -08004085 .tiocmget = cy_tiocmget,
4086 .tiocmset = cy_tiocmset,
Alexey Dobriyan444697d2009-03-31 15:19:15 -07004087 .proc_fops = &cyclades_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088};
4089
Jiri Slaby02f11752006-12-08 02:39:28 -08004090static int __init cy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091{
Jiri Slabydd025c02007-05-08 00:37:02 -07004092 unsigned int nboards;
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07004093 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
Jiri Slaby02f11752006-12-08 02:39:28 -08004095 cy_serial_driver = alloc_tty_driver(NR_PORTS);
4096 if (!cy_serial_driver)
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07004097 goto err;
Jiri Slaby21719192007-05-08 00:36:42 -07004098
4099 printk(KERN_INFO "Cyclades driver " CY_VERSION " (built %s %s)\n",
4100 __DATE__, __TIME__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101
Jiri Slaby02f11752006-12-08 02:39:28 -08004102 /* Initialize the tty_driver structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103
Jiri Slaby02f11752006-12-08 02:39:28 -08004104 cy_serial_driver->owner = THIS_MODULE;
4105 cy_serial_driver->driver_name = "cyclades";
4106 cy_serial_driver->name = "ttyC";
4107 cy_serial_driver->major = CYCLADES_MAJOR;
4108 cy_serial_driver->minor_start = 0;
4109 cy_serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
4110 cy_serial_driver->subtype = SERIAL_TYPE_NORMAL;
4111 cy_serial_driver->init_termios = tty_std_termios;
4112 cy_serial_driver->init_termios.c_cflag =
4113 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07004114 cy_serial_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08004115 tty_set_operations(cy_serial_driver, &cy_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07004117 retval = tty_register_driver(cy_serial_driver);
4118 if (retval) {
4119 printk(KERN_ERR "Couldn't register Cyclades serial driver\n");
4120 goto err_frtty;
4121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
Jiri Slaby02f11752006-12-08 02:39:28 -08004123 /* the code below is responsible to find the boards. Each different
4124 type of board has its own detection routine. If a board is found,
4125 the next cy_card structure available is set by the detection
4126 routine. These functions are responsible for checking the
4127 availability of cy_card and cy_port data structures and updating
4128 the cy_next_channel. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Jiri Slaby02f11752006-12-08 02:39:28 -08004130 /* look for isa boards */
Jiri Slaby14a55a62007-05-08 00:36:18 -07004131 nboards = cy_detect_isa();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
Jiri Slaby6747cd92007-05-08 00:36:34 -07004133#ifdef CONFIG_PCI
Jiri Slaby02f11752006-12-08 02:39:28 -08004134 /* look for pci boards */
Jiri Slaby6747cd92007-05-08 00:36:34 -07004135 retval = pci_register_driver(&cy_pci_driver);
Jesper Juhld941ea72007-10-18 03:06:23 -07004136 if (retval && !nboards) {
4137 tty_unregister_driver(cy_serial_driver);
4138 goto err_frtty;
4139 }
Jiri Slaby6747cd92007-05-08 00:36:34 -07004140#endif
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07004141
4142 return 0;
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07004143err_frtty:
4144 put_tty_driver(cy_serial_driver);
4145err:
4146 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08004147} /* cy_init */
4148
4149static void __exit cy_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150{
Jiri Slabydd025c02007-05-08 00:37:02 -07004151 struct cyclades_card *card;
Jiri Slaby65f76a82007-10-18 03:06:22 -07004152 unsigned int i, e1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153
4154#ifndef CONFIG_CYZ_INTR
Jiri Slabyb7050902007-05-08 00:35:48 -07004155 del_timer_sync(&cyz_timerlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156#endif /* CONFIG_CYZ_INTR */
4157
Alan Cox15ed6cc2008-04-30 00:53:55 -07004158 e1 = tty_unregister_driver(cy_serial_driver);
4159 if (e1)
Jiri Slaby21719192007-05-08 00:36:42 -07004160 printk(KERN_ERR "failed to unregister Cyclades serial "
4161 "driver(%d)\n", e1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
Jiri Slaby6747cd92007-05-08 00:36:34 -07004163#ifdef CONFIG_PCI
4164 pci_unregister_driver(&cy_pci_driver);
4165#endif
4166
Jiri Slaby02f11752006-12-08 02:39:28 -08004167 for (i = 0; i < NR_CARDS; i++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07004168 card = &cy_card[i];
4169 if (card->base_addr) {
Jiri Slaby85c93fa2007-05-08 00:36:23 -07004170 /* clear interrupt */
Jiri Slabydd025c02007-05-08 00:37:02 -07004171 cy_writeb(card->base_addr + Cy_ClrIntr, 0);
4172 iounmap(card->base_addr);
Jiri Slaby97e87f82009-06-11 12:29:27 +01004173 if (card->ctl_addr.p9050)
4174 iounmap(card->ctl_addr.p9050);
Jiri Slabydd025c02007-05-08 00:37:02 -07004175 if (card->irq
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176#ifndef CONFIG_CYZ_INTR
Jiri Slaby2693f482009-06-11 12:31:06 +01004177 && !cy_is_Z(card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178#endif /* CONFIG_CYZ_INTR */
Jiri Slaby02f11752006-12-08 02:39:28 -08004179 )
Jiri Slabydd025c02007-05-08 00:37:02 -07004180 free_irq(card->irq, card);
Jiri Slaby65f76a82007-10-18 03:06:22 -07004181 for (e1 = card->first_line; e1 < card->first_line +
Jiri Slabydd025c02007-05-08 00:37:02 -07004182 card->nports; e1++)
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07004183 tty_unregister_device(cy_serial_driver, e1);
Jiri Slabydd025c02007-05-08 00:37:02 -07004184 kfree(card->ports);
Jiri Slaby02f11752006-12-08 02:39:28 -08004185 }
4186 }
Jiri Slabyf2462bf2007-05-08 00:37:01 -07004187
4188 put_tty_driver(cy_serial_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189} /* cy_cleanup_module */
4190
4191module_init(cy_init);
4192module_exit(cy_cleanup_module);
4193
4194MODULE_LICENSE("GPL");
Jiri Slabyc8e16932007-05-08 00:37:05 -07004195MODULE_VERSION(CY_VERSION);
Scott James Remnant9f56fad2009-04-06 17:33:04 +01004196MODULE_ALIAS_CHARDEV_MAJOR(CYCLADES_MAJOR);
Ben Hutchingse6c4ef92010-01-13 23:34:18 +00004197MODULE_FIRMWARE("cyzfirm.bin");