blob: 6adbc97596614992c5c61ac41d6d536b8b32ee5c [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 Slabyc8e16932007-05-08 00:37:05 -070014 * Copyright (C) 2007 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 *
22 * This version supports shared IRQ's (only for PCI boards).
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * Prevent users from opening non-existing Z ports.
25 *
26 * Revision 2.3.2.8 2000/07/06 18:14:16 ivan
27 * Fixed the PCI detection function to work properly on Alpha systems.
28 * Implemented support for TIOCSERGETLSR ioctl.
29 * Implemented full support for non-standard baud rates.
30 *
31 * Revision 2.3.2.7 2000/06/01 18:26:34 ivan
32 * Request PLX I/O region, although driver doesn't use it, to avoid
33 * problems with other drivers accessing it.
34 * Removed count for on-board buffer characters in cy_chars_in_buffer
35 * (Cyclades-Z only).
36 *
37 * Revision 2.3.2.6 2000/05/05 13:56:05 ivan
38 * Driver now reports physical instead of virtual memory addresses.
39 * Masks were added to some Cyclades-Z read accesses.
40 * Implemented workaround for PLX9050 bug that would cause a system lockup
41 * in certain systems, depending on the MMIO addresses allocated to the
42 * board.
43 * Changed the Tx interrupt programming in the CD1400 chips to boost up
44 * performance (Cyclom-Y only).
45 * Code is now compliant with the new module interface (module_[init|exit]).
46 * Make use of the PCI helper functions to access PCI resources.
47 * Did some code "housekeeping".
48 *
49 * Revision 2.3.2.5 2000/01/19 14:35:33 ivan
50 * Fixed bug in cy_set_termios on CRTSCTS flag turnoff.
51 *
52 * Revision 2.3.2.4 2000/01/17 09:19:40 ivan
53 * Fixed SMP locking in Cyclom-Y interrupt handler.
54 *
55 * Revision 2.3.2.3 1999/12/28 12:11:39 ivan
56 * Added a new cyclades_card field called nports to allow the driver to
57 * know the exact number of ports found by the Z firmware after its load;
58 * RX buffer contention prevention logic on interrupt op mode revisited
59 * (Cyclades-Z only);
60 * Revisited printk's for Z debug;
61 * Driver now makes sure that the constant SERIAL_XMIT_SIZE is defined;
62 *
63 * Revision 2.3.2.2 1999/10/01 11:27:43 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -070064 * Fixed bug in cyz_poll that would make all ports but port 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 * unable to transmit/receive data (Cyclades-Z only);
66 * Implemented logic to prevent the RX buffer from being stuck with data
67 * due to a driver / firmware race condition in interrupt op mode
68 * (Cyclades-Z only);
69 * Fixed bug in block_til_ready logic that would lead to a system crash;
70 * Revisited cy_close spinlock usage;
71 *
72 * Revision 2.3.2.1 1999/09/28 11:01:22 ivan
73 * Revisited CONFIG_PCI conditional compilation for PCI board support;
74 * Implemented TIOCGICOUNT and TIOCMIWAIT ioctl support;
75 * _Major_ cleanup on the Cyclades-Z interrupt support code / logic;
76 * Removed CTS handling from the driver -- this is now completely handled
77 * by the firmware (Cyclades-Z only);
78 * Flush RX on-board buffers on a port open (Cyclades-Z only);
79 * Fixed handling of ASYNC_SPD_* TTY flags;
80 * Module unload now unmaps all memory area allocated by ioremap;
81 *
82 * Revision 2.3.1.1 1999/07/15 16:45:53 ivan
83 * Removed CY_PROC conditional compilation;
84 * Implemented SMP-awareness for the driver;
Alan Cox15ed6cc2008-04-30 00:53:55 -070085 * Implemented a new ISA IRQ autoprobe that uses the irq_probe_[on|off]
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * functions;
87 * The driver now accepts memory addresses (maddr=0xMMMMM) and IRQs
88 * (irq=NN) as parameters (only for ISA boards);
Alan Cox15ed6cc2008-04-30 00:53:55 -070089 * Fixed bug in set_line_char that would prevent the Cyclades-Z
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * ports from being configured at speeds above 115.2Kbps;
91 * Fixed bug in cy_set_termios that would prevent XON/XOFF flow control
92 * switching from working properly;
Alan Cox15ed6cc2008-04-30 00:53:55 -070093 * The driver now only prints IRQ info for the Cyclades-Z if it's
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * configured to work in interrupt mode;
95 *
96 * Revision 2.2.2.3 1999/06/28 11:13:29 ivan
97 * Added support for interrupt mode operation for the Z cards;
98 * Removed the driver inactivity control for the Z;
Alan Cox15ed6cc2008-04-30 00:53:55 -070099 * Added a missing MOD_DEC_USE_COUNT in the cy_open function for when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 * the Z firmware is not loaded yet;
Alan Cox15ed6cc2008-04-30 00:53:55 -0700101 * Replaced the "manual" Z Tx flush buffer by a call to a FW command of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * same functionality;
Alan Cox15ed6cc2008-04-30 00:53:55 -0700103 * Implemented workaround for IRQ setting loss on the PCI configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 * registers after a PCI bridge EEPROM reload (affects PLX9060 only);
105 *
106 * Revision 2.2.2.2 1999/05/14 17:18:15 ivan
107 * /proc entry location changed to /proc/tty/driver/cyclades;
108 * Added support to shared IRQ's (only for PCI boards);
109 * Added support for Cobalt Qube2 systems;
110 * IRQ [de]allocation scheme revisited;
111 * BREAK implementation changed in order to make use of the 'break_ctl'
112 * TTY facility;
113 * Fixed typo in TTY structure field 'driver_name';
Alan Cox15ed6cc2008-04-30 00:53:55 -0700114 * Included a PCI bridge reset and EEPROM reload in the board
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * initialization code (for both Y and Z series).
116 *
117 * Revision 2.2.2.1 1999/04/08 16:17:43 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700118 * Fixed a bug in cy_wait_until_sent that was preventing the port to be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * closed properly after a SIGINT;
120 * Module usage counter scheme revisited;
121 * Added support to the upcoming Y PCI boards (i.e., support to additional
122 * PCI Device ID's).
Alan Cox15ed6cc2008-04-30 00:53:55 -0700123 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * Revision 2.2.1.10 1999/01/20 16:14:29 ivan
125 * Removed all unnecessary page-alignement operations in ioremap calls
126 * (ioremap is currently safe for these operations).
127 *
128 * Revision 2.2.1.9 1998/12/30 18:18:30 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700129 * Changed access to PLX PCI bridge registers from I/O to MMIO, in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * order to make PLX9050-based boards work with certain motherboards.
131 *
132 * Revision 2.2.1.8 1998/11/13 12:46:20 ivan
133 * cy_close function now resets (correctly) the tty->closing flag;
134 * JIFFIES_DIFF macro fixed.
135 *
136 * Revision 2.2.1.7 1998/09/03 12:07:28 ivan
137 * Fixed bug in cy_close function, which was not informing HW of
138 * which port should have the reception disabled before doing so;
139 * fixed Cyclom-8YoP hardware detection bug.
140 *
141 * Revision 2.2.1.6 1998/08/20 17:15:39 ivan
142 * Fixed bug in cy_close function, which causes malfunction
143 * of one of the first 4 ports when a higher port is closed
144 * (Cyclom-Y only).
145 *
146 * Revision 2.2.1.5 1998/08/10 18:10:28 ivan
147 * Fixed Cyclom-4Yo hardware detection bug.
148 *
149 * Revision 2.2.1.4 1998/08/04 11:02:50 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700150 * /proc/cyclades implementation with great collaboration of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 * Marc Lewis <marc@blarg.net>;
152 * cyy_interrupt was changed to avoid occurrence of kernel oopses
153 * during PPP operation.
154 *
155 * Revision 2.2.1.3 1998/06/01 12:09:10 ivan
156 * General code review in order to comply with 2.1 kernel standards;
157 * data loss prevention for slow devices revisited (cy_wait_until_sent
158 * was created);
Alan Cox15ed6cc2008-04-30 00:53:55 -0700159 * removed conditional compilation for new/old PCI structure support
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * (now the driver only supports the new PCI structure).
161 *
162 * Revision 2.2.1.1 1998/03/19 16:43:12 ivan
163 * added conditional compilation for new/old PCI structure support;
164 * removed kernel series (2.0.x / 2.1.x) conditional compilation.
165 *
166 * Revision 2.1.1.3 1998/03/16 18:01:12 ivan
167 * cleaned up the data loss fix;
168 * fixed XON/XOFF handling once more (Cyclades-Z);
169 * general review of the driver routines;
Alan Cox15ed6cc2008-04-30 00:53:55 -0700170 * introduction of a mechanism to prevent data loss with slow
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * printers, by forcing a delay before closing the port.
172 *
173 * Revision 2.1.1.2 1998/02/17 16:50:00 ivan
174 * fixed detection/handling of new CD1400 in Ye boards;
175 * fixed XON/XOFF handling (Cyclades-Z);
176 * fixed data loss caused by a premature port close;
177 * introduction of a flag that holds the CD1400 version ID per port
178 * (used by the CYGETCD1400VER new ioctl).
179 *
180 * Revision 2.1.1.1 1997/12/03 17:31:19 ivan
181 * Code review for the module cleanup routine;
182 * fixed RTS and DTR status report for new CD1400's in get_modem_info;
183 * includes anonymous changes regarding signal_pending.
Alan Cox15ed6cc2008-04-30 00:53:55 -0700184 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * Revision 2.1 1997/11/01 17:42:41 ivan
186 * Changes in the driver to support Alpha systems (except 8Zo V_1);
187 * BREAK fix for the Cyclades-Z boards;
188 * driver inactivity control by FW implemented;
Alan Cox15ed6cc2008-04-30 00:53:55 -0700189 * introduction of flag that allows driver to take advantage of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 * a special CD1400 feature related to HW flow control;
191 * added support for the CD1400 rev. J (Cyclom-Y boards);
192 * introduction of ioctls to:
193 * - control the rtsdtr_inv flag (Cyclom-Y);
194 * - control the rflow flag (Cyclom-Y);
195 * - adjust the polling interval (Cyclades-Z);
196 *
197 * Revision 1.36.4.33 1997/06/27 19:00:00 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700198 * Fixes related to kernel version conditional
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * compilation.
Alan Cox15ed6cc2008-04-30 00:53:55 -0700200 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 * Revision 1.36.4.32 1997/06/14 19:30:00 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700202 * Compatibility issues between kernels 2.0.x and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * 2.1.x (mainly related to clear_bit function).
Alan Cox15ed6cc2008-04-30 00:53:55 -0700204 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * Revision 1.36.4.31 1997/06/03 15:30:00 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700206 * Changes to define the memory window according to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * board type.
Alan Cox15ed6cc2008-04-30 00:53:55 -0700208 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * Revision 1.36.4.30 1997/05/16 15:30:00 daniel
210 * Changes to support new cycladesZ boards.
211 *
212 * Revision 1.36.4.29 1997/05/12 11:30:00 daniel
213 * Merge of Bentson's and Daniel's version 1.36.4.28.
214 * Corrects bug in cy_detect_pci: check if there are more
215 * ports than the number of static structs allocated.
216 * Warning message during initialization if this driver is
217 * used with the new generation of cycladesZ boards. Those
218 * will be supported only in next release of the driver.
219 * Corrects bug in cy_detect_pci and cy_detect_isa that
220 * returned wrong number of VALID boards, when a cyclomY
221 * was found with no serial modules connected.
222 * Changes to use current (2.1.x) kernel subroutine names
223 * and created macros for compilation with 2.0.x kernel,
224 * instead of the other way around.
225 *
226 * Revision 1.36.4.28 1997/05/?? ??:00:00 bentson
227 * Change queue_task_irq_off to queue_task_irq.
228 * The inline function queue_task_irq_off (tqueue.h)
229 * was removed from latest releases of 2.1.x kernel.
230 * Use of macro __init to mark the initialization
231 * routines, so memory can be reused.
232 * Also incorporate implementation of critical region
233 * in function cleanup_module() created by anonymous
234 * linuxer.
235 *
236 * Revision 1.36.4.28 1997/04/25 16:00:00 daniel
237 * Change to support new firmware that solves DCD problem:
238 * application could fail to receive SIGHUP signal when DCD
239 * varying too fast.
240 *
241 * Revision 1.36.4.27 1997/03/26 10:30:00 daniel
242 * Changed for support linux versions 2.1.X.
243 * Backward compatible with linux versions 2.0.X.
244 * Corrected illegal use of filler field in
245 * CH_CTRL struct.
246 * Deleted some debug messages.
247 *
248 * Revision 1.36.4.26 1997/02/27 12:00:00 daniel
249 * Included check for NULL tty pointer in cyz_poll.
250 *
251 * Revision 1.36.4.25 1997/02/26 16:28:30 bentson
252 * Bill Foster at Blarg! Online services noticed that
253 * some of the switch elements of -Z modem control
254 * lacked a closing "break;"
255 *
256 * Revision 1.36.4.24 1997/02/24 11:00:00 daniel
257 * Changed low water threshold for buffer xmit_buf
258 *
259 * Revision 1.36.4.23 1996/12/02 21:50:16 bentson
260 * Marcio provided fix to modem status fetch for -Z
261 *
262 * Revision 1.36.4.22 1996/10/28 22:41:17 bentson
263 * improve mapping of -Z control page (thanks to Steve
264 * Price <stevep@fa.tdktca.com> for help on this)
265 *
266 * Revision 1.36.4.21 1996/09/10 17:00:10 bentson
267 * shift from CPU-bound to memcopy in cyz_polling operation
268 *
269 * Revision 1.36.4.20 1996/09/09 18:30:32 Bentson
270 * Added support to set and report higher speeds.
271 *
272 * Revision 1.36.4.19c 1996/08/09 10:00:00 Marcio Saito
273 * Some fixes in the HW flow control for the BETA release.
274 * Don't try to register the IRQ.
275 *
276 * Revision 1.36.4.19 1996/08/08 16:23:18 Bentson
277 * make sure "cyc" appears in all kernel messages; all soft interrupts
278 * handled by same routine; recognize out-of-band reception; comment
279 * out some diagnostic messages; leave RTS/CTS flow control to hardware;
Jean Delvare33430dc2005-10-30 15:02:20 -0800280 * fix race condition in -Z buffer management; only -Y needs to explicitly
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * flush chars; tidy up some startup messages;
282 *
283 * Revision 1.36.4.18 1996/07/25 18:57:31 bentson
284 * shift MOD_INC_USE_COUNT location to match
285 * serial.c; purge some diagnostic messages;
286 *
287 * Revision 1.36.4.17 1996/07/25 18:01:08 bentson
288 * enable modem status messages and fetch & process them; note
289 * time of last activity type for each port; set_line_char now
290 * supports more than line 0 and treats 0 baud correctly;
291 * get_modem_info senses rs_status;
292 *
293 * Revision 1.36.4.16 1996/07/20 08:43:15 bentson
294 * barely works--now's time to turn on
295 * more features 'til it breaks
296 *
297 * Revision 1.36.4.15 1996/07/19 22:30:06 bentson
298 * check more -Z board status; shorten boot message
299 *
300 * Revision 1.36.4.14 1996/07/19 22:20:37 bentson
301 * fix reference to ch_ctrl in startup; verify return
302 * values from cyz_issue_cmd and cyz_update_channel;
303 * more stuff to get modem control correct;
304 *
305 * Revision 1.36.4.13 1996/07/11 19:53:33 bentson
306 * more -Z stuff folded in; re-order changes to put -Z stuff
307 * after -Y stuff (to make changes clearer)
308 *
309 * Revision 1.36.4.12 1996/07/11 15:40:55 bentson
310 * Add code to poll Cyclades-Z. Add code to get & set RS-232 control.
311 * Add code to send break. Clear firmware ID word at startup (so
312 * that other code won't talk to inactive board).
313 *
314 * Revision 1.36.4.11 1996/07/09 05:28:29 bentson
315 * add code for -Z in set_line_char
316 *
317 * Revision 1.36.4.10 1996/07/08 19:28:37 bentson
318 * fold more -Z stuff (or in some cases, error messages)
319 * into driver; add text to "don't know what to do" messages.
320 *
321 * Revision 1.36.4.9 1996/07/08 18:38:38 bentson
322 * moved compile-time flags near top of file; cosmetic changes
323 * to narrow text (to allow 2-up printing); changed many declarations
324 * to "static" to limit external symbols; shuffled code order to
325 * coalesce -Y and -Z specific code, also to put internal functions
326 * in order of tty_driver structure; added code to recognize -Z
327 * ports (and for moment, do nothing or report error); add cy_startup
328 * to parse boot command line for extra base addresses for ISA probes;
329 *
330 * Revision 1.36.4.8 1996/06/25 17:40:19 bentson
331 * reorder some code, fix types of some vars (int vs. long),
332 * add cy_setup to support user declared ISA addresses
333 *
334 * Revision 1.36.4.7 1996/06/21 23:06:18 bentson
335 * dump ioctl based firmware load (it's now a user level
336 * program); ensure uninitialzed ports cannot be used
337 *
338 * Revision 1.36.4.6 1996/06/20 23:17:19 bentson
339 * rename vars and restructure some code
340 *
341 * Revision 1.36.4.5 1996/06/14 15:09:44 bentson
342 * get right status back after boot load
343 *
344 * Revision 1.36.4.4 1996/06/13 19:51:44 bentson
345 * successfully loads firmware
346 *
347 * Revision 1.36.4.3 1996/06/13 06:08:33 bentson
348 * add more of the code for the boot/load ioctls
349 *
350 * Revision 1.36.4.2 1996/06/11 21:00:51 bentson
351 * start to add Z functionality--starting with ioctl
352 * for loading firmware
353 *
354 * Revision 1.36.4.1 1996/06/10 18:03:02 bentson
355 * added code to recognize Z/PCI card at initialization; report
356 * presence, but card is not initialized (because firmware needs
357 * to be loaded)
358 *
359 * Revision 1.36.3.8 1996/06/07 16:29:00 bentson
360 * starting minor number at zero; added missing verify_area
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200361 * as noted by Heiko Eißfeldt <heiko@colossus.escape.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 *
363 * Revision 1.36.3.7 1996/04/19 21:06:18 bentson
364 * remove unneeded boot message & fix CLOCAL hardware flow
365 * control (Miquel van Smoorenburg <miquels@Q.cistron.nl>);
366 * remove unused diagnostic statements; minor 0 is first;
367 *
368 * Revision 1.36.3.6 1996/03/13 13:21:17 marcio
369 * The kernel function vremap (available only in later 1.3.xx kernels)
370 * allows the access to memory addresses above the RAM. This revision
371 * of the driver supports PCI boards below 1Mb (device id 0x100) and
372 * above 1Mb (device id 0x101).
373 *
374 * Revision 1.36.3.5 1996/03/07 15:20:17 bentson
375 * Some global changes to interrupt handling spilled into
376 * this driver--mostly unused arguments in system function
377 * calls. Also added change by Marcio Saito which should
378 * reduce lost interrupts at startup by fast processors.
379 *
380 * Revision 1.36.3.4 1995/11/13 20:45:10 bentson
381 * Changes by Corey Minyard <minyard@wf-rch.cirr.com> distributed
382 * in 1.3.41 kernel to remove a possible race condition, extend
383 * some error messages, and let the driver run as a loadable module
384 * Change by Alan Wendt <alan@ez0.ezlink.com> to remove a
385 * possible race condition.
386 * Change by Marcio Saito <marcio@cyclades.com> to fix PCI addressing.
387 *
388 * Revision 1.36.3.3 1995/11/13 19:44:48 bentson
389 * Changes by Linus Torvalds in 1.3.33 kernel distribution
390 * required due to reordering of driver initialization.
391 * Drivers are now initialized *after* memory management.
392 *
393 * Revision 1.36.3.2 1995/09/08 22:07:14 bentson
394 * remove printk from ISR; fix typo
395 *
396 * Revision 1.36.3.1 1995/09/01 12:00:42 marcio
397 * Minor fixes in the PCI board support. PCI function calls in
398 * conditional compilation (CONFIG_PCI). Thanks to Jim Duncan
399 * <duncan@okay.com>. "bad serial count" message removed.
400 *
401 * Revision 1.36.3 1995/08/22 09:19:42 marcio
402 * Cyclom-Y/PCI support added. Changes in the cy_init routine and
403 * board initialization. Changes in the boot messages. The driver
404 * supports up to 4 boards and 64 ports by default.
405 *
406 * Revision 1.36.1.4 1995/03/29 06:14:14 bentson
407 * disambiguate between Cyclom-16Y and Cyclom-32Ye;
408 *
409 * Revision 1.36.1.3 1995/03/23 22:15:35 bentson
410 * add missing break in modem control block in ioctl switch statement
411 * (discovered by Michael Edward Chastain <mec@jobe.shell.portal.com>);
412 *
413 * Revision 1.36.1.2 1995/03/22 19:16:22 bentson
414 * make sure CTS flow control is set as soon as possible (thanks
415 * to note from David Lambert <lambert@chesapeake.rps.slb.com>);
416 *
417 * Revision 1.36.1.1 1995/03/13 15:44:43 bentson
418 * initialize defaults for receive threshold and stale data timeout;
419 * cosmetic changes;
420 *
421 * Revision 1.36 1995/03/10 23:33:53 bentson
422 * added support of chips 4-7 in 32 port Cyclom-Ye;
423 * fix cy_interrupt pointer dereference problem
424 * (Joe Portman <baron@aa.net>);
425 * give better error response if open is attempted on non-existent port
426 * (Zachariah Vaum <jchryslr@netcom.com>);
427 * correct command timeout (Kenneth Lerman <lerman@@seltd.newnet.com>);
428 * conditional compilation for -16Y on systems with fast, noisy bus;
429 * comment out diagnostic print function;
430 * cleaned up table of base addresses;
431 * set receiver time-out period register to correct value,
432 * set receive threshold to better default values,
433 * set chip timer to more accurate 200 Hz ticking,
434 * add code to monitor and modify receive parameters
435 * (Rik Faith <faith@cs.unc.edu> Nick Simicich
436 * <njs@scifi.emi.net>);
437 *
438 * Revision 1.35 1994/12/16 13:54:18 steffen
439 * additional patch by Marcio Saito for board detection
440 * Accidently left out in 1.34
441 *
442 * Revision 1.34 1994/12/10 12:37:12 steffen
443 * This is the corrected version as suggested by Marcio Saito
444 *
445 * Revision 1.33 1994/12/01 22:41:18 bentson
446 * add hooks to support more high speeds directly; add tytso
447 * patch regarding CLOCAL wakeups
448 *
449 * Revision 1.32 1994/11/23 19:50:04 bentson
450 * allow direct kernel control of higher signalling rates;
451 * look for cards at additional locations
452 *
453 * Revision 1.31 1994/11/16 04:33:28 bentson
454 * ANOTHER fix from Corey Minyard, minyard@wf-rch.cirr.com--
455 * a problem in chars_in_buffer has been resolved by some
456 * small changes; this should yield smoother output
457 *
458 * Revision 1.30 1994/11/16 04:28:05 bentson
459 * Fix from Corey Minyard, Internet: minyard@metronet.com,
460 * UUCP: minyard@wf-rch.cirr.com, WORK: minyardbnr.ca, to
461 * cy_hangup that appears to clear up much (all?) of the
462 * DTR glitches; also he's added/cleaned-up diagnostic messages
463 *
464 * Revision 1.29 1994/11/16 04:16:07 bentson
465 * add change proposed by Ralph Sims, ralphs@halcyon.com, to
466 * operate higher speeds in same way as other serial ports;
467 * add more serial ports (for up to two 16-port muxes).
468 *
469 * Revision 1.28 1994/11/04 00:13:16 root
470 * turn off diagnostic messages
471 *
472 * Revision 1.27 1994/11/03 23:46:37 root
473 * bunch of changes to bring driver into greater conformance
474 * with the serial.c driver (looking for missed fixes)
475 *
476 * Revision 1.26 1994/11/03 22:40:36 root
477 * automatic interrupt probing fixed.
478 *
479 * Revision 1.25 1994/11/03 20:17:02 root
480 * start to implement auto-irq
481 *
482 * Revision 1.24 1994/11/03 18:01:55 root
483 * still working on modem signals--trying not to drop DTR
484 * during the getty/login processes
485 *
486 * Revision 1.23 1994/11/03 17:51:36 root
487 * extend baud rate support; set receive threshold as function
488 * of baud rate; fix some problems with RTS/CTS;
489 *
490 * Revision 1.22 1994/11/02 18:05:35 root
491 * changed arguments to udelay to type long to get
492 * delays to be of correct duration
493 *
494 * Revision 1.21 1994/11/02 17:37:30 root
495 * employ udelay (after calibrating loops_per_second earlier
496 * in init/main.c) instead of using home-grown delay routines
497 *
498 * Revision 1.20 1994/11/02 03:11:38 root
499 * cy_chars_in_buffer forces a return value of 0 to let
500 * login work (don't know why it does); some functions
501 * that were returning EFAULT, now executes the code;
502 * more work on deciding when to disable xmit interrupts;
503 *
504 * Revision 1.19 1994/11/01 20:10:14 root
505 * define routine to start transmission interrupts (by enabling
506 * transmit interrupts); directly enable/disable modem interrupts;
507 *
508 * Revision 1.18 1994/11/01 18:40:45 bentson
509 * Don't always enable transmit interrupts in startup; interrupt on
510 * TxMpty instead of TxRdy to help characters get out before shutdown;
511 * restructure xmit interrupt to check for chars first and quit if
512 * none are ready to go; modem status (MXVRx) is upright, _not_ inverted
513 * (to my view);
514 *
515 * Revision 1.17 1994/10/30 04:39:45 bentson
516 * rename serial_driver and callout_driver to cy_serial_driver and
517 * cy_callout_driver to avoid linkage interference; initialize
518 * info->type to PORT_CIRRUS; ruggedize paranoia test; elide ->port
519 * from cyclades_port structure; add paranoia check to cy_close;
520 *
521 * Revision 1.16 1994/10/30 01:14:33 bentson
522 * change major numbers; add some _early_ return statements;
523 *
524 * Revision 1.15 1994/10/29 06:43:15 bentson
525 * final tidying up for clean compile; enable some error reporting
526 *
527 * Revision 1.14 1994/10/28 20:30:22 Bentson
528 * lots of changes to drag the driver towards the new tty_io
529 * structures and operation. not expected to work, but may
530 * compile cleanly.
531 *
532 * Revision 1.13 1994/07/21 23:08:57 Bentson
533 * add some diagnostic cruft; support 24 lines (for testing
534 * both -8Y and -16Y cards; be more thorough in servicing all
535 * chips during interrupt; add "volatile" a few places to
536 * circumvent compiler optimizations; fix base & offset
537 * computations in block_til_ready (was causing chip 0 to
538 * stop operation)
539 *
540 * Revision 1.12 1994/07/19 16:42:11 Bentson
541 * add some hackery for kernel version 1.1.8; expand
542 * error messages; refine timing for delay loops and
543 * declare loop params volatile
544 *
545 * Revision 1.11 1994/06/11 21:53:10 bentson
546 * get use of save_car right in transmit interrupt service
547 *
548 * Revision 1.10.1.1 1994/06/11 21:31:18 bentson
549 * add some diagnostic printing; try to fix save_car stuff
550 *
551 * Revision 1.10 1994/06/11 20:36:08 bentson
552 * clean up compiler warnings
553 *
554 * Revision 1.9 1994/06/11 19:42:46 bentson
555 * added a bunch of code to support modem signalling
556 *
557 * Revision 1.8 1994/06/11 17:57:07 bentson
558 * recognize break & parity error
559 *
560 * Revision 1.7 1994/06/05 05:51:34 bentson
561 * Reorder baud table to be monotonic; add cli to CP; discard
562 * incoming characters and status if the line isn't open; start to
563 * fold code into cy_throttle; start to port get_serial_info,
564 * set_serial_info, get_modem_info, set_modem_info, and send_break
565 * from serial.c; expand cy_ioctl; relocate and expand config_setup;
566 * get flow control characters from tty struct; invalidate ports w/o
567 * hardware;
568 *
569 * Revision 1.6 1994/05/31 18:42:21 bentson
570 * add a loop-breaker in the interrupt service routine;
571 * note when port is initialized so that it can be shut
572 * down under the right conditions; receive works without
573 * any obvious errors
574 *
575 * Revision 1.5 1994/05/30 00:55:02 bentson
576 * transmit works without obvious errors
577 *
578 * Revision 1.4 1994/05/27 18:46:27 bentson
579 * incorporated more code from lib_y.c; can now print short
580 * strings under interrupt control to port zero; seems to
581 * select ports/channels/lines correctly
582 *
583 * Revision 1.3 1994/05/25 22:12:44 bentson
584 * shifting from multi-port on a card to proper multiplexor
585 * data structures; added skeletons of most routines
586 *
587 * Revision 1.2 1994/05/19 13:21:43 bentson
588 * start to crib from other sources
589 *
590 */
591
Jiri Slabyc8e16932007-05-08 00:37:05 -0700592#define CY_VERSION "2.5"
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594/* If you need to install more boards than NR_CARDS, change the constant
595 in the definition below. No other change is necessary to support up to
596 eight boards. Beyond that you'll have to extend cy_isa_addresses. */
597
Jiri Slaby02f11752006-12-08 02:39:28 -0800598#define NR_CARDS 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600/*
601 If the total number of ports is larger than NR_PORTS, change this
602 constant in the definition below. No other change is necessary to
603 support more boards/ports. */
604
Jiri Slaby02f11752006-12-08 02:39:28 -0800605#define NR_PORTS 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607#define ZO_V1 0
608#define ZO_V2 1
609#define ZE_V1 2
610
611#define SERIAL_PARANOIA_CHECK
612#undef CY_DEBUG_OPEN
613#undef CY_DEBUG_THROTTLE
614#undef CY_DEBUG_OTHER
615#undef CY_DEBUG_IO
616#undef CY_DEBUG_COUNT
617#undef CY_DEBUG_DTR
618#undef CY_DEBUG_WAIT_UNTIL_SENT
619#undef CY_DEBUG_INTERRUPTS
620#undef CY_16Y_HACK
621#undef CY_ENABLE_MONITORING
622#undef CY_PCI_DEBUG
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624/*
Alan Cox15ed6cc2008-04-30 00:53:55 -0700625 * Include section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627#include <linux/module.h>
628#include <linux/errno.h>
629#include <linux/signal.h>
630#include <linux/sched.h>
631#include <linux/timer.h>
632#include <linux/interrupt.h>
633#include <linux/tty.h>
Alan Cox33f0f882006-01-09 20:54:13 -0800634#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635#include <linux/serial.h>
636#include <linux/major.h>
637#include <linux/string.h>
638#include <linux/fcntl.h>
639#include <linux/ptrace.h>
640#include <linux/cyclades.h>
641#include <linux/mm.h>
642#include <linux/ioport.h>
643#include <linux/init.h>
644#include <linux/delay.h>
645#include <linux/spinlock.h>
646#include <linux/bitops.h>
Jiri Slaby054f5b02007-07-17 04:05:16 -0700647#include <linux/firmware.h>
Scott James Remnant9f56fad2009-04-06 17:33:04 +0100648#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650#include <asm/system.h>
Alan Cox15ed6cc2008-04-30 00:53:55 -0700651#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652#include <asm/irq.h>
Alan Cox15ed6cc2008-04-30 00:53:55 -0700653#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655#include <linux/kernel.h>
656#include <linux/pci.h>
657
658#include <linux/stat.h>
659#include <linux/proc_fs.h>
Alexey Dobriyan444697d2009-03-31 15:19:15 -0700660#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Jiri Slaby02f11752006-12-08 02:39:28 -0800662static void cy_throttle(struct tty_struct *tty);
663static void cy_send_xchar(struct tty_struct *tty, char ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#ifndef SERIAL_XMIT_SIZE
666#define SERIAL_XMIT_SIZE (min(PAGE_SIZE, 4096))
667#endif
668#define WAKEUP_CHARS 256
669
670#define STD_COM_FLAGS (0)
671
Jiri Slaby054f5b02007-07-17 04:05:16 -0700672/* firmware stuff */
673#define ZL_MAX_BLOCKS 16
674#define DRIVER_VERSION 0x02010203
675#define RAM_SIZE 0x80000
676
Jiri Slaby054f5b02007-07-17 04:05:16 -0700677enum zblock_type {
678 ZBLOCK_PRG = 0,
679 ZBLOCK_FPGA = 1
680};
681
682struct zfile_header {
683 char name[64];
684 char date[32];
685 char aux[32];
686 u32 n_config;
687 u32 config_offset;
688 u32 n_blocks;
689 u32 block_offset;
690 u32 reserved[9];
691} __attribute__ ((packed));
692
693struct zfile_config {
694 char name[64];
695 u32 mailbox;
696 u32 function;
697 u32 n_blocks;
698 u32 block_list[ZL_MAX_BLOCKS];
699} __attribute__ ((packed));
700
701struct zfile_block {
702 u32 type;
703 u32 file_offset;
704 u32 ram_offset;
705 u32 size;
706} __attribute__ ((packed));
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708static struct tty_driver *cy_serial_driver;
709
710#ifdef CONFIG_ISA
711/* This is the address lookup table. The driver will probe for
712 Cyclom-Y/ISA boards at all addresses in here. If you want the
713 driver to probe addresses at a different address, add it to
714 this table. If the driver is probing some other board and
715 causing problems, remove the offending address from this table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716*/
717
718static unsigned int cy_isa_addresses[] = {
Jiri Slaby02f11752006-12-08 02:39:28 -0800719 0xD0000,
720 0xD2000,
721 0xD4000,
722 0xD6000,
723 0xD8000,
724 0xDA000,
725 0xDC000,
726 0xDE000,
727 0, 0, 0, 0, 0, 0, 0, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728};
Jiri Slaby02f11752006-12-08 02:39:28 -0800729
Tobias Klauserfe971072006-01-09 20:54:02 -0800730#define NR_ISA_ADDRS ARRAY_SIZE(cy_isa_addresses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732#ifdef MODULE
Jiri Slaby3046d502007-05-08 00:36:46 -0700733static long maddr[NR_CARDS];
734static int irq[NR_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736module_param_array(maddr, long, NULL, 0);
737module_param_array(irq, int, NULL, 0);
738#endif
739
Jiri Slaby02f11752006-12-08 02:39:28 -0800740#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742/* This is the per-card data structure containing address, irq, number of
743 channels, etc. This driver supports a maximum of NR_CARDS cards.
744*/
745static struct cyclades_card cy_card[NR_CARDS];
746
Jiri Slaby02f11752006-12-08 02:39:28 -0800747static int cy_next_channel; /* next minor available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 * This is used to look up the divisor speeds and the timeouts
751 * We're normally limited to 15 distinct baud rates. The extra
Alan Cox77451e52008-07-16 21:57:02 +0100752 * are accessed via settings in info->port.flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
754 * 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
755 * HI VHI
756 * 20
757 */
758static int baud_table[] = {
Jiri Slaby02f11752006-12-08 02:39:28 -0800759 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200,
760 1800, 2400, 4800, 9600, 19200, 38400, 57600, 76800, 115200, 150000,
761 230400, 0
762};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Jiri Slaby02f11752006-12-08 02:39:28 -0800764static char baud_co_25[] = { /* 25 MHz clock option table */
765 /* value => 00 01 02 03 04 */
766 /* divide by 8 32 128 512 2048 */
767 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x02,
768 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
769};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Jiri Slaby02f11752006-12-08 02:39:28 -0800771static char baud_bpr_25[] = { /* 25 MHz baud rate period table */
772 0x00, 0xf5, 0xa3, 0x6f, 0x5c, 0x51, 0xf5, 0xa3, 0x51, 0xa3,
773 0x6d, 0x51, 0xa3, 0x51, 0xa3, 0x51, 0x36, 0x29, 0x1b, 0x15
774};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Jiri Slaby02f11752006-12-08 02:39:28 -0800776static char baud_co_60[] = { /* 60 MHz clock option table (CD1400 J) */
777 /* value => 00 01 02 03 04 */
778 /* divide by 8 32 128 512 2048 */
779 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03,
780 0x03, 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
781 0x00
782};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Jiri Slaby02f11752006-12-08 02:39:28 -0800784static char baud_bpr_60[] = { /* 60 MHz baud rate period table (CD1400 J) */
785 0x00, 0x82, 0x21, 0xff, 0xdb, 0xc3, 0x92, 0x62, 0xc3, 0x62,
786 0x41, 0xc3, 0x62, 0xc3, 0x62, 0xc3, 0x82, 0x62, 0x41, 0x32,
787 0x21
788};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Jiri Slaby02f11752006-12-08 02:39:28 -0800790static char baud_cor3[] = { /* receive threshold */
791 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
792 0x0a, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x07,
793 0x07
794};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796/*
797 * The Cyclades driver implements HW flow control as any serial driver.
Alan Cox15ed6cc2008-04-30 00:53:55 -0700798 * The cyclades_port structure member rflow and the vector rflow_thr
799 * allows us to take advantage of a special feature in the CD1400 to avoid
800 * data loss even when the system interrupt latency is too high. These flags
801 * are to be used only with very special applications. Setting these flags
802 * requires the use of a special cable (DTR and RTS reversed). In the new
803 * CD1400-based boards (rev. 6.00 or later), there is no need for special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * cables.
805 */
806
Jiri Slaby02f11752006-12-08 02:39:28 -0800807static char rflow_thr[] = { /* rflow threshold */
808 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
809 0x00, 0x00, 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
810 0x0a
811};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813/* The Cyclom-Ye has placed the sequential chips in non-sequential
814 * address order. This look-up table overcomes that problem.
815 */
Jiri Slaby02f11752006-12-08 02:39:28 -0800816static int cy_chip_offset[] = { 0x0000,
817 0x0400,
818 0x0800,
819 0x0C00,
820 0x0200,
821 0x0600,
822 0x0A00,
823 0x0E00
824};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826/* PCI related definitions */
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828#ifdef CONFIG_PCI
Jiri Slaby893de2d2007-02-12 00:51:49 -0800829static struct pci_device_id cy_pci_dev_id[] __devinitdata = {
Alan Cox15ed6cc2008-04-30 00:53:55 -0700830 /* PCI < 1Mb */
831 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Lo) },
832 /* PCI > 1Mb */
833 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Hi) },
834 /* 4Y PCI < 1Mb */
835 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Lo) },
836 /* 4Y PCI > 1Mb */
837 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Hi) },
838 /* 8Y PCI < 1Mb */
839 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Lo) },
840 /* 8Y PCI > 1Mb */
841 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Hi) },
842 /* Z PCI < 1Mb */
843 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Lo) },
844 /* Z PCI > 1Mb */
845 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Hi) },
Jiri Slaby893de2d2007-02-12 00:51:49 -0800846 { } /* end of table */
Jiri Slaby02f11752006-12-08 02:39:28 -0800847};
Jiri Slaby893de2d2007-02-12 00:51:49 -0800848MODULE_DEVICE_TABLE(pci, cy_pci_dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849#endif
850
851static void cy_start(struct tty_struct *);
852static void set_line_char(struct cyclades_port *);
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -0700853static int cyz_issue_cmd(struct cyclades_card *, __u32, __u8, __u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854#ifdef CONFIG_ISA
855static unsigned detect_isa_irq(void __iomem *);
Jiri Slaby02f11752006-12-08 02:39:28 -0800856#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858#ifndef CONFIG_CYZ_INTR
859static void cyz_poll(unsigned long);
860
861/* The Cyclades-Z polling cycle is defined by this variable */
862static long cyz_polling_cycle = CZ_DEF_POLL;
863
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700864static DEFINE_TIMER(cyz_timerlist, cyz_poll, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Jiri Slaby02f11752006-12-08 02:39:28 -0800866#else /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867static void cyz_rx_restart(unsigned long);
868static struct timer_list cyz_rx_full_timer[NR_PORTS];
Jiri Slaby02f11752006-12-08 02:39:28 -0800869#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Jiri Slaby2693f482009-06-11 12:31:06 +0100871static inline bool cy_is_Z(struct cyclades_card *card)
872{
873 return card->num_chips == (unsigned int)-1;
874}
875
876static inline bool __cyz_fpga_loaded(struct RUNTIME_9060 __iomem *ctl_addr)
877{
878 return readl(&ctl_addr->init_ctrl) & (1 << 17);
879}
880
881static inline bool cyz_fpga_loaded(struct cyclades_card *card)
882{
883 return __cyz_fpga_loaded(card->ctl_addr.p9060);
884}
885
886static inline bool cyz_is_loaded(struct cyclades_card *card)
887{
888 struct FIRM_ID __iomem *fw_id = card->base_addr + ID_ADDRESS;
889
890 return (card->hw_ver == ZO_V1 || cyz_fpga_loaded(card)) &&
891 readl(&fw_id->signature) == ZFIRM_ID;
892}
893
Jiri Slaby02f11752006-12-08 02:39:28 -0800894static inline int serial_paranoia_check(struct cyclades_port *info,
895 char *name, const char *routine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
897#ifdef SERIAL_PARANOIA_CHECK
Jiri Slaby02f11752006-12-08 02:39:28 -0800898 if (!info) {
Jiri Slaby21719192007-05-08 00:36:42 -0700899 printk(KERN_WARNING "cyc Warning: null cyclades_port for (%s) "
900 "in %s\n", name, routine);
Jiri Slaby02f11752006-12-08 02:39:28 -0800901 return 1;
902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Jiri Slaby02f11752006-12-08 02:39:28 -0800904 if (info->magic != CYCLADES_MAGIC) {
Jiri Slaby21719192007-05-08 00:36:42 -0700905 printk(KERN_WARNING "cyc Warning: bad magic number for serial "
906 "struct (%s) in %s\n", name, routine);
Jiri Slaby02f11752006-12-08 02:39:28 -0800907 return 1;
908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909#endif
Jiri Slaby02f11752006-12-08 02:39:28 -0800910 return 0;
911} /* serial_paranoia_check */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913/***********************************************************/
914/********* Start of block of Cyclom-Y specific code ********/
915
916/* This routine waits up to 1000 micro-seconds for the previous
917 command to the Cirrus chip to complete and then issues the
918 new command. An error is returned if the previous command
919 didn't finish within the time limit.
920
921 This function is only called from inside spinlock-protected code.
922 */
Alan Cox15ed6cc2008-04-30 00:53:55 -0700923static int cyy_issue_cmd(void __iomem *base_addr, u_char cmd, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Jiri Slabyad39c302007-05-08 00:35:49 -0700925 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Jiri Slaby02f11752006-12-08 02:39:28 -0800927 /* Check to see that the previous command has completed */
928 for (i = 0; i < 100; i++) {
Alan Cox15ed6cc2008-04-30 00:53:55 -0700929 if (readb(base_addr + (CyCCR << index)) == 0)
Jiri Slaby02f11752006-12-08 02:39:28 -0800930 break;
Jiri Slaby02f11752006-12-08 02:39:28 -0800931 udelay(10L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
Jiri Slaby02f11752006-12-08 02:39:28 -0800933 /* if the CCR never cleared, the previous command
934 didn't finish within the "reasonable time" */
935 if (i == 100)
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800936 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Jiri Slaby02f11752006-12-08 02:39:28 -0800938 /* Issue the new command */
939 cy_writeb(base_addr + (CyCCR << index), cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800941 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -0800942} /* cyy_issue_cmd */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944#ifdef CONFIG_ISA
945/* ISA interrupt detection code */
Alan Cox15ed6cc2008-04-30 00:53:55 -0700946static unsigned detect_isa_irq(void __iomem *address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
Jiri Slaby02f11752006-12-08 02:39:28 -0800948 int irq;
949 unsigned long irqs, flags;
950 int save_xir, save_car;
951 int index = 0; /* IRQ probing is only for ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Jiri Slaby02f11752006-12-08 02:39:28 -0800953 /* forget possible initially masked and pending IRQ */
954 irq = probe_irq_off(probe_irq_on());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Jiri Slaby02f11752006-12-08 02:39:28 -0800956 /* Clear interrupts on the board first */
957 cy_writeb(address + (Cy_ClrIntr << index), 0);
958 /* Cy_ClrIntr is 0x1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Jiri Slaby02f11752006-12-08 02:39:28 -0800960 irqs = probe_irq_on();
961 /* Wait ... */
962 udelay(5000L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Jiri Slaby02f11752006-12-08 02:39:28 -0800964 /* Enable the Tx interrupts on the CD1400 */
965 local_irq_save(flags);
966 cy_writeb(address + (CyCAR << index), 0);
967 cyy_issue_cmd(address, CyCHAN_CTL | CyENB_XMTR, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Jiri Slaby02f11752006-12-08 02:39:28 -0800969 cy_writeb(address + (CyCAR << index), 0);
970 cy_writeb(address + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700971 readb(address + (CySRER << index)) | CyTxRdy);
Jiri Slaby02f11752006-12-08 02:39:28 -0800972 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Jiri Slaby02f11752006-12-08 02:39:28 -0800974 /* Wait ... */
975 udelay(5000L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Jiri Slaby02f11752006-12-08 02:39:28 -0800977 /* Check which interrupt is in use */
978 irq = probe_irq_off(irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Jiri Slaby02f11752006-12-08 02:39:28 -0800980 /* Clean up */
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700981 save_xir = (u_char) readb(address + (CyTIR << index));
982 save_car = readb(address + (CyCAR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -0800983 cy_writeb(address + (CyCAR << index), (save_xir & 0x3));
984 cy_writeb(address + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700985 readb(address + (CySRER << index)) & ~CyTxRdy);
Jiri Slaby02f11752006-12-08 02:39:28 -0800986 cy_writeb(address + (CyTIR << index), (save_xir & 0x3f));
987 cy_writeb(address + (CyCAR << index), (save_car));
988 cy_writeb(address + (Cy_ClrIntr << index), 0);
989 /* Cy_ClrIntr is 0x1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Jiri Slaby02f11752006-12-08 02:39:28 -0800991 return (irq > 0) ? irq : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
Jiri Slaby02f11752006-12-08 02:39:28 -0800993#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Jiri Slabyce97a092007-10-18 03:06:21 -0700995static void cyy_chip_rx(struct cyclades_card *cinfo, int chip,
996 void __iomem *base_addr)
Jiri Slabye9410272006-12-08 02:39:28 -0800997{
998 struct cyclades_port *info;
999 struct tty_struct *tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001000 int len, index = cinfo->bus_index;
1001 u8 save_xir, channel, save_car, data, char_count;
Jiri Slabye9410272006-12-08 02:39:28 -08001002
Jiri Slabye9410272006-12-08 02:39:28 -08001003#ifdef CY_DEBUG_INTERRUPTS
Jiri Slabyce97a092007-10-18 03:06:21 -07001004 printk(KERN_DEBUG "cyy_interrupt: rcvd intr, chip %d\n", chip);
Jiri Slabye9410272006-12-08 02:39:28 -08001005#endif
Jiri Slabyce97a092007-10-18 03:06:21 -07001006 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -07001007 save_xir = readb(base_addr + (CyRIR << index));
1008 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -07001009 info = &cinfo->ports[channel + chip * 4];
1010 save_car = readb(base_addr + (CyCAR << index));
1011 cy_writeb(base_addr + (CyCAR << index), save_xir);
Jiri Slabye9410272006-12-08 02:39:28 -08001012
Jiri Slabyce97a092007-10-18 03:06:21 -07001013 /* if there is nowhere to put the data, discard it */
Alan Cox77451e52008-07-16 21:57:02 +01001014 if (info->port.tty == NULL) {
Jiri Slaby65f76a82007-10-18 03:06:22 -07001015 if ((readb(base_addr + (CyRIVR << index)) & CyIVRMask) ==
1016 CyIVRRxEx) { /* exception */
Jiri Slabyce97a092007-10-18 03:06:21 -07001017 data = readb(base_addr + (CyRDSR << index));
1018 } else { /* normal character reception */
1019 char_count = readb(base_addr + (CyRDCR << index));
1020 while (char_count--)
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001021 data = readb(base_addr + (CyRDSR << index));
Jiri Slabyce97a092007-10-18 03:06:21 -07001022 }
1023 goto end;
1024 }
1025 /* there is an open port for this data */
Alan Cox77451e52008-07-16 21:57:02 +01001026 tty = info->port.tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001027 if ((readb(base_addr + (CyRIVR << index)) & CyIVRMask) ==
1028 CyIVRRxEx) { /* exception */
Jiri Slabyce97a092007-10-18 03:06:21 -07001029 data = readb(base_addr + (CyRDSR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001030
Jiri Slabyce97a092007-10-18 03:06:21 -07001031 /* For statistics only */
1032 if (data & CyBREAK)
1033 info->icount.brk++;
1034 else if (data & CyFRAME)
1035 info->icount.frame++;
1036 else if (data & CyPARITY)
1037 info->icount.parity++;
1038 else if (data & CyOVERRUN)
1039 info->icount.overrun++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001040
Jiri Slabyce97a092007-10-18 03:06:21 -07001041 if (data & info->ignore_status_mask) {
1042 info->icount.rx++;
Jiri Slabyce97a092007-10-18 03:06:21 -07001043 return;
1044 }
1045 if (tty_buffer_request_room(tty, 1)) {
1046 if (data & info->read_status_mask) {
1047 if (data & CyBREAK) {
1048 tty_insert_flip_char(tty,
1049 readb(base_addr + (CyRDSR <<
1050 index)), TTY_BREAK);
Jiri Slaby02f11752006-12-08 02:39:28 -08001051 info->icount.rx++;
Alan Cox77451e52008-07-16 21:57:02 +01001052 if (info->port.flags & ASYNC_SAK)
Jiri Slabyce97a092007-10-18 03:06:21 -07001053 do_SAK(tty);
1054 } else if (data & CyFRAME) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07001055 tty_insert_flip_char(tty,
Jiri Slabyce97a092007-10-18 03:06:21 -07001056 readb(base_addr + (CyRDSR <<
1057 index)), TTY_FRAME);
1058 info->icount.rx++;
1059 info->idle_stats.frame_errs++;
1060 } else if (data & CyPARITY) {
1061 /* Pieces of seven... */
1062 tty_insert_flip_char(tty,
1063 readb(base_addr + (CyRDSR <<
1064 index)), TTY_PARITY);
1065 info->icount.rx++;
1066 info->idle_stats.parity_errs++;
1067 } else if (data & CyOVERRUN) {
1068 tty_insert_flip_char(tty, 0,
1069 TTY_OVERRUN);
1070 info->icount.rx++;
1071 /* If the flip buffer itself is
1072 overflowing, we still lose
1073 the next incoming character.
1074 */
1075 tty_insert_flip_char(tty,
1076 readb(base_addr + (CyRDSR <<
1077 index)), TTY_FRAME);
1078 info->icount.rx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001079 info->idle_stats.overruns++;
Jiri Slabyce97a092007-10-18 03:06:21 -07001080 /* These two conditions may imply */
1081 /* a normal read should be done. */
1082 /* } else if(data & CyTIMEOUT) { */
1083 /* } else if(data & CySPECHAR) { */
1084 } else {
1085 tty_insert_flip_char(tty, 0,
1086 TTY_NORMAL);
1087 info->icount.rx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001088 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001089 } else {
1090 tty_insert_flip_char(tty, 0, TTY_NORMAL);
1091 info->icount.rx++;
1092 }
1093 } else {
1094 /* there was a software buffer overrun and nothing
1095 * could be done about it!!! */
1096 info->icount.buf_overrun++;
1097 info->idle_stats.overruns++;
1098 }
1099 } else { /* normal character reception */
1100 /* load # chars available from the chip */
1101 char_count = readb(base_addr + (CyRDCR << index));
Jiri Slabye9410272006-12-08 02:39:28 -08001102
1103#ifdef CY_ENABLE_MONITORING
Jiri Slabyce97a092007-10-18 03:06:21 -07001104 ++info->mon.int_count;
1105 info->mon.char_count += char_count;
1106 if (char_count > info->mon.char_max)
1107 info->mon.char_max = char_count;
1108 info->mon.char_last = char_count;
Jiri Slabye9410272006-12-08 02:39:28 -08001109#endif
Jiri Slabyce97a092007-10-18 03:06:21 -07001110 len = tty_buffer_request_room(tty, char_count);
1111 while (len--) {
1112 data = readb(base_addr + (CyRDSR << index));
1113 tty_insert_flip_char(tty, data, TTY_NORMAL);
1114 info->idle_stats.recv_bytes++;
1115 info->icount.rx++;
Jiri Slabye9410272006-12-08 02:39:28 -08001116#ifdef CY_16Y_HACK
Jiri Slabyce97a092007-10-18 03:06:21 -07001117 udelay(10L);
Jiri Slabye9410272006-12-08 02:39:28 -08001118#endif
Jiri Slabye9410272006-12-08 02:39:28 -08001119 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001120 info->idle_stats.recv_idle = jiffies;
1121 }
1122 tty_schedule_flip(tty);
1123end:
1124 /* end of service */
1125 cy_writeb(base_addr + (CyRIR << index), save_xir & 0x3f);
1126 cy_writeb(base_addr + (CyCAR << index), save_car);
Jiri Slabyce97a092007-10-18 03:06:21 -07001127}
1128
Jiri Slaby65f76a82007-10-18 03:06:22 -07001129static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip,
Jiri Slabyce97a092007-10-18 03:06:21 -07001130 void __iomem *base_addr)
1131{
1132 struct cyclades_port *info;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001133 int char_count, index = cinfo->bus_index;
1134 u8 save_xir, channel, save_car, outch;
Jiri Slabyce97a092007-10-18 03:06:21 -07001135
1136 /* Since we only get here when the transmit buffer
1137 is empty, we know we can always stuff a dozen
1138 characters. */
1139#ifdef CY_DEBUG_INTERRUPTS
1140 printk(KERN_DEBUG "cyy_interrupt: xmit intr, chip %d\n", chip);
1141#endif
1142
1143 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -07001144 save_xir = readb(base_addr + (CyTIR << index));
1145 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -07001146 save_car = readb(base_addr + (CyCAR << index));
1147 cy_writeb(base_addr + (CyCAR << index), save_xir);
1148
1149 /* validate the port# (as configured and open) */
1150 if (channel + chip * 4 >= cinfo->nports) {
1151 cy_writeb(base_addr + (CySRER << index),
1152 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
1153 goto end;
1154 }
1155 info = &cinfo->ports[channel + chip * 4];
Alan Cox77451e52008-07-16 21:57:02 +01001156 if (info->port.tty == NULL) {
Jiri Slabyce97a092007-10-18 03:06:21 -07001157 cy_writeb(base_addr + (CySRER << index),
1158 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
1159 goto end;
Jiri Slabye9410272006-12-08 02:39:28 -08001160 }
1161
Jiri Slabyce97a092007-10-18 03:06:21 -07001162 /* load the on-chip space for outbound data */
1163 char_count = info->xmit_fifo_size;
Jiri Slabye9410272006-12-08 02:39:28 -08001164
Jiri Slabyce97a092007-10-18 03:06:21 -07001165 if (info->x_char) { /* send special char */
1166 outch = info->x_char;
1167 cy_writeb(base_addr + (CyTDR << index), outch);
1168 char_count--;
1169 info->icount.tx++;
1170 info->x_char = 0;
1171 }
Jiri Slabye9410272006-12-08 02:39:28 -08001172
Jiri Slabyce97a092007-10-18 03:06:21 -07001173 if (info->breakon || info->breakoff) {
1174 if (info->breakon) {
1175 cy_writeb(base_addr + (CyTDR << index), 0);
1176 cy_writeb(base_addr + (CyTDR << index), 0x81);
1177 info->breakon = 0;
1178 char_count -= 2;
Jiri Slaby02f11752006-12-08 02:39:28 -08001179 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001180 if (info->breakoff) {
1181 cy_writeb(base_addr + (CyTDR << index), 0);
1182 cy_writeb(base_addr + (CyTDR << index), 0x83);
1183 info->breakoff = 0;
1184 char_count -= 2;
Jiri Slaby02f11752006-12-08 02:39:28 -08001185 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001186 }
Jiri Slabye9410272006-12-08 02:39:28 -08001187
Jiri Slabyce97a092007-10-18 03:06:21 -07001188 while (char_count-- > 0) {
1189 if (!info->xmit_cnt) {
1190 if (readb(base_addr + (CySRER << index)) & CyTxMpty) {
1191 cy_writeb(base_addr + (CySRER << index),
1192 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001193 ~CyTxMpty);
Jiri Slabyce97a092007-10-18 03:06:21 -07001194 } else {
1195 cy_writeb(base_addr + (CySRER << index),
1196 (readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001197 ~CyTxRdy) | CyTxMpty);
Jiri Slaby02f11752006-12-08 02:39:28 -08001198 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001199 goto done;
1200 }
Alan Cox77451e52008-07-16 21:57:02 +01001201 if (info->port.xmit_buf == NULL) {
Jiri Slabyce97a092007-10-18 03:06:21 -07001202 cy_writeb(base_addr + (CySRER << index),
1203 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001204 ~CyTxRdy);
Jiri Slabyce97a092007-10-18 03:06:21 -07001205 goto done;
1206 }
Alan Cox77451e52008-07-16 21:57:02 +01001207 if (info->port.tty->stopped || info->port.tty->hw_stopped) {
Jiri Slabyce97a092007-10-18 03:06:21 -07001208 cy_writeb(base_addr + (CySRER << index),
1209 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001210 ~CyTxRdy);
Jiri Slabyce97a092007-10-18 03:06:21 -07001211 goto done;
1212 }
1213 /* Because the Embedded Transmit Commands have been enabled,
1214 * we must check to see if the escape character, NULL, is being
1215 * sent. If it is, we must ensure that there is room for it to
1216 * be doubled in the output stream. Therefore we no longer
1217 * advance the pointer when the character is fetched, but
1218 * rather wait until after the check for a NULL output
1219 * character. This is necessary because there may not be room
1220 * for the two chars needed to send a NULL.)
1221 */
Alan Cox77451e52008-07-16 21:57:02 +01001222 outch = info->port.xmit_buf[info->xmit_tail];
Jiri Slabyce97a092007-10-18 03:06:21 -07001223 if (outch) {
1224 info->xmit_cnt--;
1225 info->xmit_tail = (info->xmit_tail + 1) &
1226 (SERIAL_XMIT_SIZE - 1);
1227 cy_writeb(base_addr + (CyTDR << index), outch);
1228 info->icount.tx++;
1229 } else {
1230 if (char_count > 1) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001231 info->xmit_cnt--;
1232 info->xmit_tail = (info->xmit_tail + 1) &
Jiri Slabyce97a092007-10-18 03:06:21 -07001233 (SERIAL_XMIT_SIZE - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08001234 cy_writeb(base_addr + (CyTDR << index), outch);
Jiri Slabyce97a092007-10-18 03:06:21 -07001235 cy_writeb(base_addr + (CyTDR << index), 0);
Jiri Slaby02f11752006-12-08 02:39:28 -08001236 info->icount.tx++;
Jiri Slabyce97a092007-10-18 03:06:21 -07001237 char_count--;
Jiri Slaby02f11752006-12-08 02:39:28 -08001238 }
1239 }
Jiri Slabye9410272006-12-08 02:39:28 -08001240 }
1241
Jiri Slabyce97a092007-10-18 03:06:21 -07001242done:
Alan Cox77451e52008-07-16 21:57:02 +01001243 tty_wakeup(info->port.tty);
Jiri Slabyce97a092007-10-18 03:06:21 -07001244end:
1245 /* end of service */
1246 cy_writeb(base_addr + (CyTIR << index), save_xir & 0x3f);
1247 cy_writeb(base_addr + (CyCAR << index), save_car);
Jiri Slabyce97a092007-10-18 03:06:21 -07001248}
Jiri Slabye9410272006-12-08 02:39:28 -08001249
Jiri Slabyce97a092007-10-18 03:06:21 -07001250static void cyy_chip_modem(struct cyclades_card *cinfo, int chip,
1251 void __iomem *base_addr)
1252{
1253 struct cyclades_port *info;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001254 int index = cinfo->bus_index;
1255 u8 save_xir, channel, save_car, mdm_change, mdm_status;
Jiri Slabye9410272006-12-08 02:39:28 -08001256
Jiri Slabyce97a092007-10-18 03:06:21 -07001257 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -07001258 save_xir = readb(base_addr + (CyMIR << index));
1259 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -07001260 info = &cinfo->ports[channel + chip * 4];
1261 save_car = readb(base_addr + (CyCAR << index));
1262 cy_writeb(base_addr + (CyCAR << index), save_xir);
Jiri Slabye9410272006-12-08 02:39:28 -08001263
Jiri Slabyce97a092007-10-18 03:06:21 -07001264 mdm_change = readb(base_addr + (CyMISR << index));
1265 mdm_status = readb(base_addr + (CyMSVR1 << index));
Jiri Slabye9410272006-12-08 02:39:28 -08001266
Alan Cox77451e52008-07-16 21:57:02 +01001267 if (!info->port.tty)
Jiri Slabyce97a092007-10-18 03:06:21 -07001268 goto end;
Jiri Slaby02f11752006-12-08 02:39:28 -08001269
Jiri Slabyce97a092007-10-18 03:06:21 -07001270 if (mdm_change & CyANY_DELTA) {
1271 /* For statistics only */
1272 if (mdm_change & CyDCD)
1273 info->icount.dcd++;
1274 if (mdm_change & CyCTS)
1275 info->icount.cts++;
1276 if (mdm_change & CyDSR)
1277 info->icount.dsr++;
1278 if (mdm_change & CyRI)
1279 info->icount.rng++;
1280
1281 wake_up_interruptible(&info->delta_msr_wait);
1282 }
1283
Alan Cox77451e52008-07-16 21:57:02 +01001284 if ((mdm_change & CyDCD) && (info->port.flags & ASYNC_CHECK_CD)) {
Jiri Slabyce97a092007-10-18 03:06:21 -07001285 if (!(mdm_status & CyDCD)) {
Alan Cox77451e52008-07-16 21:57:02 +01001286 tty_hangup(info->port.tty);
1287 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
Jiri Slabye9410272006-12-08 02:39:28 -08001288 }
Alan Cox77451e52008-07-16 21:57:02 +01001289 wake_up_interruptible(&info->port.open_wait);
Jiri Slabye9410272006-12-08 02:39:28 -08001290 }
Alan Cox77451e52008-07-16 21:57:02 +01001291 if ((mdm_change & CyCTS) && (info->port.flags & ASYNC_CTS_FLOW)) {
1292 if (info->port.tty->hw_stopped) {
Jiri Slabyce97a092007-10-18 03:06:21 -07001293 if (mdm_status & CyCTS) {
1294 /* cy_start isn't used
1295 because... !!! */
Alan Cox77451e52008-07-16 21:57:02 +01001296 info->port.tty->hw_stopped = 0;
Jiri Slabyce97a092007-10-18 03:06:21 -07001297 cy_writeb(base_addr + (CySRER << index),
1298 readb(base_addr + (CySRER << index)) |
1299 CyTxRdy);
Alan Cox77451e52008-07-16 21:57:02 +01001300 tty_wakeup(info->port.tty);
Jiri Slabyce97a092007-10-18 03:06:21 -07001301 }
1302 } else {
1303 if (!(mdm_status & CyCTS)) {
1304 /* cy_stop isn't used
1305 because ... !!! */
Alan Cox77451e52008-07-16 21:57:02 +01001306 info->port.tty->hw_stopped = 1;
Jiri Slabyce97a092007-10-18 03:06:21 -07001307 cy_writeb(base_addr + (CySRER << index),
1308 readb(base_addr + (CySRER << index)) &
1309 ~CyTxRdy);
1310 }
1311 }
1312 }
1313/* if (mdm_change & CyDSR) {
1314 }
1315 if (mdm_change & CyRI) {
1316 }*/
1317end:
1318 /* end of service */
1319 cy_writeb(base_addr + (CyMIR << index), save_xir & 0x3f);
1320 cy_writeb(base_addr + (CyCAR << index), save_car);
Jiri Slabye9410272006-12-08 02:39:28 -08001321}
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323/* The real interrupt service routine is called
1324 whenever the card wants its hand held--chars
1325 received, out buffer empty, modem change, etc.
1326 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001327static irqreturn_t cyy_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Jiri Slaby02f11752006-12-08 02:39:28 -08001329 int status;
Jiri Slabyf7429032007-05-08 00:36:59 -07001330 struct cyclades_card *cinfo = dev_id;
Jiri Slaby02f11752006-12-08 02:39:28 -08001331 void __iomem *base_addr, *card_base_addr;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001332 unsigned int chip, too_many, had_work;
Jiri Slaby02f11752006-12-08 02:39:28 -08001333 int index;
Jiri Slabye9410272006-12-08 02:39:28 -08001334
Jiri Slabyf7429032007-05-08 00:36:59 -07001335 if (unlikely(cinfo == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336#ifdef CY_DEBUG_INTERRUPTS
Alan Cox15ed6cc2008-04-30 00:53:55 -07001337 printk(KERN_DEBUG "cyy_interrupt: spurious interrupt %d\n",
1338 irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001340 return IRQ_NONE; /* spurious interrupt */
1341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Jiri Slaby02f11752006-12-08 02:39:28 -08001343 card_base_addr = cinfo->base_addr;
1344 index = cinfo->bus_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Jiri Slabyf1e83c62007-05-08 00:36:24 -07001346 /* card was not initialized yet (e.g. DEBUG_SHIRQ) */
1347 if (unlikely(card_base_addr == NULL))
1348 return IRQ_HANDLED;
1349
Jiri Slaby02f11752006-12-08 02:39:28 -08001350 /* This loop checks all chips in the card. Make a note whenever
1351 _any_ chip had some work to do, as this is considered an
1352 indication that there will be more to do. Only when no chip
1353 has any work does this outermost loop exit.
1354 */
1355 do {
1356 had_work = 0;
1357 for (chip = 0; chip < cinfo->num_chips; chip++) {
1358 base_addr = cinfo->base_addr +
1359 (cy_chip_offset[chip] << index);
1360 too_many = 0;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001361 while ((status = readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001362 (CySVRR << index))) != 0x00) {
1363 had_work++;
1364 /* The purpose of the following test is to ensure that
1365 no chip can monopolize the driver. This forces the
1366 chips to be checked in a round-robin fashion (after
1367 draining each of a bunch (1000) of characters).
1368 */
Jiri Slabyce97a092007-10-18 03:06:21 -07001369 if (1000 < too_many++)
Jiri Slaby02f11752006-12-08 02:39:28 -08001370 break;
Jiri Slaby1c0a3872007-10-18 03:06:22 -07001371 spin_lock(&cinfo->card_lock);
Jiri Slabyce97a092007-10-18 03:06:21 -07001372 if (status & CySRReceive) /* rx intr */
1373 cyy_chip_rx(cinfo, chip, base_addr);
1374 if (status & CySRTransmit) /* tx intr */
1375 cyy_chip_tx(cinfo, chip, base_addr);
1376 if (status & CySRModem) /* modem intr */
1377 cyy_chip_modem(cinfo, chip, base_addr);
Jiri Slaby1c0a3872007-10-18 03:06:22 -07001378 spin_unlock(&cinfo->card_lock);
Jiri Slaby02f11752006-12-08 02:39:28 -08001379 }
1380 }
1381 } while (had_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Jiri Slaby02f11752006-12-08 02:39:28 -08001383 /* clear interrupts */
1384 spin_lock(&cinfo->card_lock);
1385 cy_writeb(card_base_addr + (Cy_ClrIntr << index), 0);
1386 /* Cy_ClrIntr is 0x1800 */
1387 spin_unlock(&cinfo->card_lock);
1388 return IRQ_HANDLED;
1389} /* cyy_interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391/***********************************************************/
1392/********* End of block of Cyclom-Y specific code **********/
Alan Cox15ed6cc2008-04-30 00:53:55 -07001393/******** Start of block of Cyclades-Z specific code *******/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394/***********************************************************/
1395
1396static int
Jiri Slaby02f11752006-12-08 02:39:28 -08001397cyz_fetch_msg(struct cyclades_card *cinfo,
Alan Cox15ed6cc2008-04-30 00:53:55 -07001398 __u32 *channel, __u8 *cmd, __u32 *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Jiri Slaby02f11752006-12-08 02:39:28 -08001400 struct FIRM_ID __iomem *firm_id;
1401 struct ZFW_CTRL __iomem *zfw_ctrl;
1402 struct BOARD_CTRL __iomem *board_ctrl;
1403 unsigned long loc_doorbell;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Jiri Slaby02f11752006-12-08 02:39:28 -08001405 firm_id = cinfo->base_addr + ID_ADDRESS;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001406 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001407 board_ctrl = &zfw_ctrl->board_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Jiri Slaby97e87f82009-06-11 12:29:27 +01001409 loc_doorbell = readl(&cinfo->ctl_addr.p9060->loc_doorbell);
Jiri Slaby02f11752006-12-08 02:39:28 -08001410 if (loc_doorbell) {
1411 *cmd = (char)(0xff & loc_doorbell);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001412 *channel = readl(&board_ctrl->fwcmd_channel);
1413 *param = (__u32) readl(&board_ctrl->fwcmd_param);
Jiri Slaby97e87f82009-06-11 12:29:27 +01001414 cy_writel(&cinfo->ctl_addr.p9060->loc_doorbell, 0xffffffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001415 return 1;
1416 }
1417 return 0;
1418} /* cyz_fetch_msg */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420static int
Jiri Slaby02f11752006-12-08 02:39:28 -08001421cyz_issue_cmd(struct cyclades_card *cinfo,
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001422 __u32 channel, __u8 cmd, __u32 param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Jiri Slaby02f11752006-12-08 02:39:28 -08001424 struct FIRM_ID __iomem *firm_id;
1425 struct ZFW_CTRL __iomem *zfw_ctrl;
1426 struct BOARD_CTRL __iomem *board_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001427 __u32 __iomem *pci_doorbell;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001428 unsigned int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Jiri Slaby02f11752006-12-08 02:39:28 -08001430 firm_id = cinfo->base_addr + ID_ADDRESS;
Jiri Slaby2693f482009-06-11 12:31:06 +01001431 if (!cyz_is_loaded(cinfo))
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001432 return -1;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001433
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001434 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001435 board_ctrl = &zfw_ctrl->board_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Jiri Slaby02f11752006-12-08 02:39:28 -08001437 index = 0;
Jiri Slaby97e87f82009-06-11 12:29:27 +01001438 pci_doorbell = &cinfo->ctl_addr.p9060->pci_doorbell;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001439 while ((readl(pci_doorbell) & 0xff) != 0) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07001440 if (index++ == 1000)
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001441 return (int)(readl(pci_doorbell) & 0xff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001442 udelay(50L);
1443 }
1444 cy_writel(&board_ctrl->hcmd_channel, channel);
1445 cy_writel(&board_ctrl->hcmd_param, param);
1446 cy_writel(pci_doorbell, (long)cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001448 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08001449} /* cyz_issue_cmd */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Jiri Slaby65f76a82007-10-18 03:06:22 -07001451static void cyz_handle_rx(struct cyclades_port *info,
Jiri Slabyad39c302007-05-08 00:35:49 -07001452 struct BUF_CTRL __iomem *buf_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
Jiri Slaby875b2062007-05-08 00:36:49 -07001454 struct cyclades_card *cinfo = info->card;
Alan Cox77451e52008-07-16 21:57:02 +01001455 struct tty_struct *tty = info->port.tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001456 unsigned int char_count;
Jiri Slaby02f11752006-12-08 02:39:28 -08001457 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458#ifdef BLOCKMOVE
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001459 unsigned char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001461 char data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462#endif
Jiri Slabyad39c302007-05-08 00:35:49 -07001463 __u32 rx_put, rx_get, new_rx_get, rx_bufsize, rx_bufaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001465 rx_get = new_rx_get = readl(&buf_ctrl->rx_get);
1466 rx_put = readl(&buf_ctrl->rx_put);
1467 rx_bufsize = readl(&buf_ctrl->rx_bufsize);
1468 rx_bufaddr = readl(&buf_ctrl->rx_bufaddr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001469 if (rx_put >= rx_get)
1470 char_count = rx_put - rx_get;
1471 else
1472 char_count = rx_put - rx_get + rx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Jiri Slaby02f11752006-12-08 02:39:28 -08001474 if (char_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475#ifdef CY_ENABLE_MONITORING
Jiri Slaby02f11752006-12-08 02:39:28 -08001476 info->mon.int_count++;
1477 info->mon.char_count += char_count;
1478 if (char_count > info->mon.char_max)
1479 info->mon.char_max = char_count;
1480 info->mon.char_last = char_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481#endif
Jiri Slabyf7429032007-05-08 00:36:59 -07001482 if (tty == NULL) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001483 /* flush received characters */
1484 new_rx_get = (new_rx_get + char_count) &
1485 (rx_bufsize - 1);
1486 info->rflush_count++;
1487 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488#ifdef BLOCKMOVE
Jiri Slaby02f11752006-12-08 02:39:28 -08001489 /* we'd like to use memcpy(t, f, n) and memset(s, c, count)
1490 for performance, but because of buffer boundaries, there
1491 may be several steps to the operation */
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001492 while (1) {
1493 len = tty_prepare_flip_string(tty, &buf,
1494 char_count);
1495 if (!len)
1496 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001498 len = min_t(unsigned int, min(len, char_count),
1499 rx_bufsize - new_rx_get);
1500
1501 memcpy_fromio(buf, cinfo->base_addr +
1502 rx_bufaddr + new_rx_get, len);
1503
1504 new_rx_get = (new_rx_get + len) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001505 (rx_bufsize - 1);
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001506 char_count -= len;
1507 info->icount.rx += len;
1508 info->idle_stats.recv_bytes += len;
Jiri Slaby02f11752006-12-08 02:39:28 -08001509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001511 len = tty_buffer_request_room(tty, char_count);
1512 while (len--) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001513 data = readb(cinfo->base_addr + rx_bufaddr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001514 new_rx_get);
Alan Cox15ed6cc2008-04-30 00:53:55 -07001515 new_rx_get = (new_rx_get + 1) &
1516 (rx_bufsize - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08001517 tty_insert_flip_char(tty, data, TTY_NORMAL);
1518 info->idle_stats.recv_bytes++;
1519 info->icount.rx++;
1520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521#endif
1522#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001523 /* Recalculate the number of chars in the RX buffer and issue
1524 a cmd in case it's higher than the RX high water mark */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001525 rx_put = readl(&buf_ctrl->rx_put);
Jiri Slaby02f11752006-12-08 02:39:28 -08001526 if (rx_put >= rx_get)
1527 char_count = rx_put - rx_get;
1528 else
1529 char_count = rx_put - rx_get + rx_bufsize;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001530 if (char_count >= readl(&buf_ctrl->rx_threshold) &&
Jiri Slabyebafeef2007-10-18 03:06:20 -07001531 !timer_pending(&cyz_rx_full_timer[
1532 info->line]))
1533 mod_timer(&cyz_rx_full_timer[info->line],
1534 jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001536 info->idle_stats.recv_idle = jiffies;
1537 tty_schedule_flip(tty);
1538 }
1539 /* Update rx_get */
1540 cy_writel(&buf_ctrl->rx_get, new_rx_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543
Jiri Slaby65f76a82007-10-18 03:06:22 -07001544static void cyz_handle_tx(struct cyclades_port *info,
Jiri Slabyad39c302007-05-08 00:35:49 -07001545 struct BUF_CTRL __iomem *buf_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Jiri Slaby875b2062007-05-08 00:36:49 -07001547 struct cyclades_card *cinfo = info->card;
Alan Cox77451e52008-07-16 21:57:02 +01001548 struct tty_struct *tty = info->port.tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001549 u8 data;
1550 unsigned int char_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551#ifdef BLOCKMOVE
Jiri Slaby02f11752006-12-08 02:39:28 -08001552 int small_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553#endif
Jiri Slabyad39c302007-05-08 00:35:49 -07001554 __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Jiri Slaby02f11752006-12-08 02:39:28 -08001556 if (info->xmit_cnt <= 0) /* Nothing to transmit */
1557 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001559 tx_get = readl(&buf_ctrl->tx_get);
1560 tx_put = readl(&buf_ctrl->tx_put);
1561 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
1562 tx_bufaddr = readl(&buf_ctrl->tx_bufaddr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001563 if (tx_put >= tx_get)
1564 char_count = tx_get - tx_put - 1 + tx_bufsize;
1565 else
1566 char_count = tx_get - tx_put - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Jiri Slaby02f11752006-12-08 02:39:28 -08001568 if (char_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Jiri Slabyf7429032007-05-08 00:36:59 -07001570 if (tty == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08001571 goto ztxdone;
Jiri Slaby02f11752006-12-08 02:39:28 -08001572
1573 if (info->x_char) { /* send special char */
1574 data = info->x_char;
1575
1576 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1577 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1578 info->x_char = 0;
1579 char_count--;
1580 info->icount.tx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001581 }
1582#ifdef BLOCKMOVE
1583 while (0 < (small_count = min_t(unsigned int,
1584 tx_bufsize - tx_put, min_t(unsigned int,
1585 (SERIAL_XMIT_SIZE - info->xmit_tail),
1586 min_t(unsigned int, info->xmit_cnt,
1587 char_count))))) {
1588
1589 memcpy_toio((char *)(cinfo->base_addr + tx_bufaddr +
1590 tx_put),
Alan Cox77451e52008-07-16 21:57:02 +01001591 &info->port.xmit_buf[info->xmit_tail],
Jiri Slaby02f11752006-12-08 02:39:28 -08001592 small_count);
1593
1594 tx_put = (tx_put + small_count) & (tx_bufsize - 1);
1595 char_count -= small_count;
1596 info->icount.tx += small_count;
1597 info->xmit_cnt -= small_count;
1598 info->xmit_tail = (info->xmit_tail + small_count) &
1599 (SERIAL_XMIT_SIZE - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08001600 }
1601#else
1602 while (info->xmit_cnt && char_count) {
Alan Cox77451e52008-07-16 21:57:02 +01001603 data = info->port.xmit_buf[info->xmit_tail];
Jiri Slaby02f11752006-12-08 02:39:28 -08001604 info->xmit_cnt--;
1605 info->xmit_tail = (info->xmit_tail + 1) &
1606 (SERIAL_XMIT_SIZE - 1);
1607
1608 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1609 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1610 char_count--;
1611 info->icount.tx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613#endif
Jiri Slabyebafeef2007-10-18 03:06:20 -07001614 tty_wakeup(tty);
Jiri Slaby7fa57a02007-10-22 20:45:13 -07001615ztxdone:
Jiri Slaby02f11752006-12-08 02:39:28 -08001616 /* Update tx_put */
1617 cy_writel(&buf_ctrl->tx_put, tx_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
Jiri Slaby02f11752006-12-08 02:39:28 -08001621static void cyz_handle_cmd(struct cyclades_card *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
Jiri Slaby02f11752006-12-08 02:39:28 -08001623 struct tty_struct *tty;
1624 struct cyclades_port *info;
Jiri Slabyad39c302007-05-08 00:35:49 -07001625 static struct FIRM_ID __iomem *firm_id;
1626 static struct ZFW_CTRL __iomem *zfw_ctrl;
1627 static struct BOARD_CTRL __iomem *board_ctrl;
1628 static struct CH_CTRL __iomem *ch_ctrl;
1629 static struct BUF_CTRL __iomem *buf_ctrl;
Jiri Slaby101b8152009-06-11 12:30:10 +01001630 __u32 channel, param, fw_ver;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001631 __u8 cmd;
Jiri Slaby02f11752006-12-08 02:39:28 -08001632 int special_count;
1633 int delta_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 firm_id = cinfo->base_addr + ID_ADDRESS;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001636 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001637 board_ctrl = &zfw_ctrl->board_ctrl;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001638 fw_ver = readl(&board_ctrl->fw_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Jiri Slaby02f11752006-12-08 02:39:28 -08001640 while (cyz_fetch_msg(cinfo, &channel, &cmd, &param) == 1) {
1641 special_count = 0;
1642 delta_count = 0;
Jiri Slabydd025c02007-05-08 00:37:02 -07001643 info = &cinfo->ports[channel];
Alan Cox77451e52008-07-16 21:57:02 +01001644 tty = info->port.tty;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001645 if (tty == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08001646 continue;
Jiri Slabyf7429032007-05-08 00:36:59 -07001647
Jiri Slaby02f11752006-12-08 02:39:28 -08001648 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
1649 buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]);
1650
1651 switch (cmd) {
1652 case C_CM_PR_ERROR:
1653 tty_insert_flip_char(tty, 0, TTY_PARITY);
1654 info->icount.rx++;
1655 special_count++;
1656 break;
1657 case C_CM_FR_ERROR:
1658 tty_insert_flip_char(tty, 0, TTY_FRAME);
1659 info->icount.rx++;
1660 special_count++;
1661 break;
1662 case C_CM_RXBRK:
1663 tty_insert_flip_char(tty, 0, TTY_BREAK);
1664 info->icount.rx++;
1665 special_count++;
1666 break;
1667 case C_CM_MDCD:
1668 info->icount.dcd++;
1669 delta_count++;
Alan Cox77451e52008-07-16 21:57:02 +01001670 if (info->port.flags & ASYNC_CHECK_CD) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001671 if ((fw_ver > 241 ? ((u_long) param) :
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001672 readl(&ch_ctrl->rs_status)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001673 C_RS_DCD) {
Alan Cox77451e52008-07-16 21:57:02 +01001674 wake_up_interruptible(&info->port.open_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001675 } else {
Alan Cox77451e52008-07-16 21:57:02 +01001676 tty_hangup(info->port.tty);
1677 wake_up_interruptible(&info->port.open_wait);
1678 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
Jiri Slaby02f11752006-12-08 02:39:28 -08001679 }
1680 }
1681 break;
1682 case C_CM_MCTS:
1683 info->icount.cts++;
1684 delta_count++;
1685 break;
1686 case C_CM_MRI:
1687 info->icount.rng++;
1688 delta_count++;
1689 break;
1690 case C_CM_MDSR:
1691 info->icount.dsr++;
1692 delta_count++;
1693 break;
1694#ifdef Z_WAKE
1695 case C_CM_IOCTLW:
Jiri Slabyebafeef2007-10-18 03:06:20 -07001696 complete(&info->shutdown_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001697 break;
1698#endif
1699#ifdef CONFIG_CYZ_INTR
1700 case C_CM_RXHIWM:
1701 case C_CM_RXNNDT:
1702 case C_CM_INTBACK2:
1703 /* Reception Interrupt */
1704#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001705 printk(KERN_DEBUG "cyz_interrupt: rcvd intr, card %d, "
1706 "port %ld\n", info->card, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001707#endif
Jiri Slaby65f76a82007-10-18 03:06:22 -07001708 cyz_handle_rx(info, buf_ctrl);
Jiri Slaby02f11752006-12-08 02:39:28 -08001709 break;
1710 case C_CM_TXBEMPTY:
1711 case C_CM_TXLOWWM:
1712 case C_CM_INTBACK:
1713 /* Transmission Interrupt */
1714#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001715 printk(KERN_DEBUG "cyz_interrupt: xmit intr, card %d, "
1716 "port %ld\n", info->card, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001717#endif
Jiri Slaby65f76a82007-10-18 03:06:22 -07001718 cyz_handle_tx(info, buf_ctrl);
Jiri Slaby02f11752006-12-08 02:39:28 -08001719 break;
1720#endif /* CONFIG_CYZ_INTR */
1721 case C_CM_FATAL:
1722 /* should do something with this !!! */
1723 break;
1724 default:
1725 break;
1726 }
1727 if (delta_count)
Jiri Slabyebafeef2007-10-18 03:06:20 -07001728 wake_up_interruptible(&info->delta_msr_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001729 if (special_count)
1730 tty_schedule_flip(tty);
1731 }
1732}
1733
1734#ifdef CONFIG_CYZ_INTR
1735static irqreturn_t cyz_interrupt(int irq, void *dev_id)
1736{
Jiri Slabyf7429032007-05-08 00:36:59 -07001737 struct cyclades_card *cinfo = dev_id;
Jiri Slaby02f11752006-12-08 02:39:28 -08001738
Jiri Slaby2693f482009-06-11 12:31:06 +01001739 if (unlikely(!cyz_is_loaded(cinfo))) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001740#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001741 printk(KERN_DEBUG "cyz_interrupt: board not yet loaded "
1742 "(IRQ%d).\n", irq);
Jiri Slaby02f11752006-12-08 02:39:28 -08001743#endif
1744 return IRQ_NONE;
1745 }
1746
1747 /* Handle the interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 cyz_handle_cmd(cinfo);
1749
Jiri Slaby02f11752006-12-08 02:39:28 -08001750 return IRQ_HANDLED;
1751} /* cyz_interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Jiri Slaby02f11752006-12-08 02:39:28 -08001753static void cyz_rx_restart(unsigned long arg)
1754{
1755 struct cyclades_port *info = (struct cyclades_port *)arg;
Jiri Slaby875b2062007-05-08 00:36:49 -07001756 struct cyclades_card *card = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001757 int retval;
Jiri Slaby875b2062007-05-08 00:36:49 -07001758 __u32 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08001759 unsigned long flags;
1760
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001761 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07001762 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK2, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001763 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001764 printk(KERN_ERR "cyc:cyz_rx_restart retval on ttyC%d was %x\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08001765 info->line, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001767 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001768}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Jiri Slaby02f11752006-12-08 02:39:28 -08001770#else /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Jiri Slaby02f11752006-12-08 02:39:28 -08001772static void cyz_poll(unsigned long arg)
1773{
1774 struct cyclades_card *cinfo;
1775 struct cyclades_port *info;
1776 struct tty_struct *tty;
Jiri Slabyc4923b42007-07-17 04:05:17 -07001777 struct FIRM_ID __iomem *firm_id;
1778 struct ZFW_CTRL __iomem *zfw_ctrl;
Jiri Slabyc4923b42007-07-17 04:05:17 -07001779 struct BUF_CTRL __iomem *buf_ctrl;
Jiri Slabyb7050902007-05-08 00:35:48 -07001780 unsigned long expires = jiffies + HZ;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001781 unsigned int port, card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001782
Jiri Slaby02f11752006-12-08 02:39:28 -08001783 for (card = 0; card < NR_CARDS; card++) {
1784 cinfo = &cy_card[card];
1785
Jiri Slaby2693f482009-06-11 12:31:06 +01001786 if (!cy_is_Z(cinfo))
Jiri Slaby02f11752006-12-08 02:39:28 -08001787 continue;
Jiri Slaby2693f482009-06-11 12:31:06 +01001788 if (!cyz_is_loaded(cinfo))
Jiri Slaby02f11752006-12-08 02:39:28 -08001789 continue;
1790
1791 firm_id = cinfo->base_addr + ID_ADDRESS;
1792 zfw_ctrl = cinfo->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001793 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001794
1795 /* Skip first polling cycle to avoid racing conditions with the FW */
1796 if (!cinfo->intr_enabled) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001797 cinfo->intr_enabled = 1;
1798 continue;
1799 }
1800
1801 cyz_handle_cmd(cinfo);
1802
1803 for (port = 0; port < cinfo->nports; port++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07001804 info = &cinfo->ports[port];
Alan Cox77451e52008-07-16 21:57:02 +01001805 tty = info->port.tty;
Jiri Slaby02f11752006-12-08 02:39:28 -08001806 buf_ctrl = &(zfw_ctrl->buf_ctrl[port]);
1807
1808 if (!info->throttle)
Jiri Slaby65f76a82007-10-18 03:06:22 -07001809 cyz_handle_rx(info, buf_ctrl);
1810 cyz_handle_tx(info, buf_ctrl);
Jiri Slaby02f11752006-12-08 02:39:28 -08001811 }
1812 /* poll every 'cyz_polling_cycle' period */
Jiri Slabyb7050902007-05-08 00:35:48 -07001813 expires = jiffies + cyz_polling_cycle;
Jiri Slaby02f11752006-12-08 02:39:28 -08001814 }
Jiri Slabyb7050902007-05-08 00:35:48 -07001815 mod_timer(&cyz_timerlist, expires);
Jiri Slaby02f11752006-12-08 02:39:28 -08001816} /* cyz_poll */
1817
1818#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820/********** End of block of Cyclades-Z specific code *********/
1821/***********************************************************/
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823/* This is called whenever a port becomes active;
1824 interrupts are enabled and DTR & RTS are turned on.
1825 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001826static int startup(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Jiri Slaby875b2062007-05-08 00:36:49 -07001828 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001829 unsigned long flags;
1830 int retval = 0;
1831 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07001832 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08001833 unsigned long page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Jiri Slaby02f11752006-12-08 02:39:28 -08001835 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07001836 channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Jiri Slaby02f11752006-12-08 02:39:28 -08001838 page = get_zeroed_page(GFP_KERNEL);
1839 if (!page)
1840 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001842 spin_lock_irqsave(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Alan Cox77451e52008-07-16 21:57:02 +01001844 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001845 free_page(page);
1846 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001848
1849 if (!info->type) {
Alan Cox77451e52008-07-16 21:57:02 +01001850 if (info->port.tty)
1851 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001852 free_page(page);
1853 goto errout;
1854 }
1855
Alan Cox77451e52008-07-16 21:57:02 +01001856 if (info->port.xmit_buf)
Jiri Slaby02f11752006-12-08 02:39:28 -08001857 free_page(page);
1858 else
Alan Cox77451e52008-07-16 21:57:02 +01001859 info->port.xmit_buf = (unsigned char *)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001861 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Jiri Slaby02f11752006-12-08 02:39:28 -08001863 set_line_char(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Jiri Slaby2693f482009-06-11 12:31:06 +01001865 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001866 chip = channel >> 2;
1867 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07001868 index = card->bus_index;
1869 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
1871#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001872 printk(KERN_DEBUG "cyc startup card %d, chip %d, channel %d, "
1873 "base_addr %p\n",
1874 card, chip, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001875#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001876 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001877
1878 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
1879
1880 cy_writeb(base_addr + (CyRTPR << index),
1881 (info->default_timeout ? info->default_timeout : 0x02));
1882 /* 10ms rx timeout */
1883
1884 cyy_issue_cmd(base_addr, CyCHAN_CTL | CyENB_RCVR | CyENB_XMTR,
1885 index);
1886
1887 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
1888 cy_writeb(base_addr + (CyMSVR1 << index), CyRTS);
1889 cy_writeb(base_addr + (CyMSVR2 << index), CyDTR);
1890
1891#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07001892 printk(KERN_DEBUG "cyc:startup raising DTR\n");
1893 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001894 readb(base_addr + (CyMSVR1 << index)),
1895 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896#endif
1897
Jiri Slaby02f11752006-12-08 02:39:28 -08001898 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001899 readb(base_addr + (CySRER << index)) | CyRxData);
Alan Cox77451e52008-07-16 21:57:02 +01001900 info->port.flags |= ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Alan Cox77451e52008-07-16 21:57:02 +01001902 if (info->port.tty)
1903 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001904 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1905 info->breakon = info->breakoff = 0;
1906 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
1907 info->idle_stats.in_use =
1908 info->idle_stats.recv_idle =
1909 info->idle_stats.xmit_idle = jiffies;
1910
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001911 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001912
1913 } else {
1914 struct FIRM_ID __iomem *firm_id;
1915 struct ZFW_CTRL __iomem *zfw_ctrl;
1916 struct BOARD_CTRL __iomem *board_ctrl;
1917 struct CH_CTRL __iomem *ch_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08001918
Jiri Slaby875b2062007-05-08 00:36:49 -07001919 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08001920
1921 firm_id = base_addr + ID_ADDRESS;
Jiri Slaby2693f482009-06-11 12:31:06 +01001922 if (!cyz_is_loaded(card))
Jiri Slaby02f11752006-12-08 02:39:28 -08001923 return -ENODEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08001924
Jiri Slaby875b2062007-05-08 00:36:49 -07001925 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001926 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001927 board_ctrl = &zfw_ctrl->board_ctrl;
1928 ch_ctrl = zfw_ctrl->ch_ctrl;
1929
1930#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001931 printk(KERN_DEBUG "cyc startup Z card %d, channel %d, "
1932 "base_addr %p\n", card, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001933#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001934 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001935
1936 cy_writel(&ch_ctrl[channel].op_mode, C_CH_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937#ifdef Z_WAKE
1938#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001939 cy_writel(&ch_ctrl[channel].intr_enable,
1940 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
1941 C_IN_RXNNDT | C_IN_IOCTLW | C_IN_MDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001943 cy_writel(&ch_ctrl[channel].intr_enable,
1944 C_IN_IOCTLW | C_IN_MDCD);
1945#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946#else
1947#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001948 cy_writel(&ch_ctrl[channel].intr_enable,
1949 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
1950 C_IN_RXNNDT | C_IN_MDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001952 cy_writel(&ch_ctrl[channel].intr_enable, C_IN_MDCD);
1953#endif /* CONFIG_CYZ_INTR */
1954#endif /* Z_WAKE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Jiri Slaby875b2062007-05-08 00:36:49 -07001956 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001957 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001958 printk(KERN_ERR "cyc:startup(1) retval on ttyC%d was "
1959 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Jiri Slaby02f11752006-12-08 02:39:28 -08001962 /* Flush RX buffers before raising DTR and RTS */
Jiri Slaby875b2062007-05-08 00:36:49 -07001963 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_RX, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001964 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001965 printk(KERN_ERR "cyc:startup(2) retval on ttyC%d was "
1966 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Jiri Slaby02f11752006-12-08 02:39:28 -08001969 /* set timeout !!! */
1970 /* set RTS and DTR !!! */
1971 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001972 readl(&ch_ctrl[channel].rs_control) | C_RS_RTS |
Jiri Slaby02f11752006-12-08 02:39:28 -08001973 C_RS_DTR);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001974 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001975 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001976 printk(KERN_ERR "cyc:startup(3) retval on ttyC%d was "
1977 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07001980 printk(KERN_DEBUG "cyc:startup raising Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981#endif
1982
Jiri Slaby02f11752006-12-08 02:39:28 -08001983 /* enable send, recv, modem !!! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Alan Cox77451e52008-07-16 21:57:02 +01001985 info->port.flags |= ASYNC_INITIALIZED;
1986 if (info->port.tty)
1987 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001988 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1989 info->breakon = info->breakoff = 0;
1990 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
1991 info->idle_stats.in_use =
1992 info->idle_stats.recv_idle =
1993 info->idle_stats.xmit_idle = jiffies;
1994
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001995 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001999 printk(KERN_DEBUG "cyc startup done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000#endif
2001 return 0;
2002
2003errout:
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002004 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08002006} /* startup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Jiri Slaby02f11752006-12-08 02:39:28 -08002008static void start_xmit(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009{
Jiri Slaby875b2062007-05-08 00:36:49 -07002010 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002011 unsigned long flags;
2012 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002013 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Jiri Slaby02f11752006-12-08 02:39:28 -08002015 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002016 channel = info->line - card->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01002017 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002018 chip = channel >> 2;
2019 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002020 index = card->bus_index;
2021 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002023 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002024 cy_writeb(base_addr + (CyCAR << index), channel);
2025 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002026 readb(base_addr + (CySRER << index)) | CyTxRdy);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002027 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002028 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08002030 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002032 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07002033 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002034 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002035 printk(KERN_ERR "cyc:start_xmit retval on ttyC%d was "
2036 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002037 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002038 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002039#else /* CONFIG_CYZ_INTR */
2040 /* Don't have to do anything at this time */
2041#endif /* CONFIG_CYZ_INTR */
2042 }
2043} /* start_xmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
2045/*
2046 * This routine shuts down a serial port; interrupts are disabled,
2047 * and DTR is dropped if the hangup on close termio flag is on.
2048 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002049static void shutdown(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
Jiri Slaby875b2062007-05-08 00:36:49 -07002051 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002052 unsigned long flags;
2053 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002054 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Alan Cox77451e52008-07-16 21:57:02 +01002056 if (!(info->port.flags & ASYNC_INITIALIZED))
Jiri Slaby02f11752006-12-08 02:39:28 -08002057 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Jiri Slaby02f11752006-12-08 02:39:28 -08002059 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002060 channel = info->line - card->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01002061 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002062 chip = channel >> 2;
2063 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002064 index = card->bus_index;
2065 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002068 printk(KERN_DEBUG "cyc shutdown Y card %d, chip %d, "
2069 "channel %d, base_addr %p\n",
2070 card, chip, channel, base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002073 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002074
2075 /* Clear delta_msr_wait queue to avoid mem leaks. */
2076 wake_up_interruptible(&info->delta_msr_wait);
2077
Alan Cox77451e52008-07-16 21:57:02 +01002078 if (info->port.xmit_buf) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002079 unsigned char *temp;
Alan Cox77451e52008-07-16 21:57:02 +01002080 temp = info->port.xmit_buf;
2081 info->port.xmit_buf = NULL;
Jiri Slaby02f11752006-12-08 02:39:28 -08002082 free_page((unsigned long)temp);
2083 }
2084 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Alan Cox77451e52008-07-16 21:57:02 +01002085 if (!info->port.tty || (info->port.tty->termios->c_cflag & HUPCL)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002086 cy_writeb(base_addr + (CyMSVR1 << index), ~CyRTS);
2087 cy_writeb(base_addr + (CyMSVR2 << index), ~CyDTR);
2088#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002089 printk(KERN_DEBUG "cyc shutdown dropping DTR\n");
2090 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002091 readb(base_addr + (CyMSVR1 << index)),
2092 readb(base_addr + (CyMSVR2 << index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08002093#endif
2094 }
2095 cyy_issue_cmd(base_addr, CyCHAN_CTL | CyDIS_RCVR, index);
2096 /* it may be appropriate to clear _XMIT at
2097 some later date (after testing)!!! */
2098
Alan Cox77451e52008-07-16 21:57:02 +01002099 if (info->port.tty)
2100 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
2101 info->port.flags &= ~ASYNC_INITIALIZED;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002102 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002103 } else {
2104 struct FIRM_ID __iomem *firm_id;
2105 struct ZFW_CTRL __iomem *zfw_ctrl;
2106 struct BOARD_CTRL __iomem *board_ctrl;
2107 struct CH_CTRL __iomem *ch_ctrl;
2108 int retval;
2109
Jiri Slaby875b2062007-05-08 00:36:49 -07002110 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002111#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002112 printk(KERN_DEBUG "cyc shutdown Z card %d, channel %d, "
2113 "base_addr %p\n", card, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08002114#endif
2115
2116 firm_id = base_addr + ID_ADDRESS;
Jiri Slaby2693f482009-06-11 12:31:06 +01002117 if (!cyz_is_loaded(card))
Jiri Slaby02f11752006-12-08 02:39:28 -08002118 return;
Jiri Slaby02f11752006-12-08 02:39:28 -08002119
Jiri Slaby875b2062007-05-08 00:36:49 -07002120 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002121 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002122 board_ctrl = &zfw_ctrl->board_ctrl;
2123 ch_ctrl = zfw_ctrl->ch_ctrl;
2124
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002125 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002126
Alan Cox77451e52008-07-16 21:57:02 +01002127 if (info->port.xmit_buf) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002128 unsigned char *temp;
Alan Cox77451e52008-07-16 21:57:02 +01002129 temp = info->port.xmit_buf;
2130 info->port.xmit_buf = NULL;
Jiri Slaby02f11752006-12-08 02:39:28 -08002131 free_page((unsigned long)temp);
2132 }
2133
Alan Cox77451e52008-07-16 21:57:02 +01002134 if (!info->port.tty || (info->port.tty->termios->c_cflag & HUPCL)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002135 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002136 (__u32)(readl(&ch_ctrl[channel].rs_control) &
Jiri Slaby02f11752006-12-08 02:39:28 -08002137 ~(C_RS_RTS | C_RS_DTR)));
Jiri Slaby875b2062007-05-08 00:36:49 -07002138 retval = cyz_issue_cmd(info->card, channel,
Jiri Slaby02f11752006-12-08 02:39:28 -08002139 C_CM_IOCTLM, 0L);
2140 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002141 printk(KERN_ERR"cyc:shutdown retval on ttyC%d "
2142 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002143 }
2144#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002145 printk(KERN_DEBUG "cyc:shutdown dropping Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002146#endif
2147 }
2148
Alan Cox77451e52008-07-16 21:57:02 +01002149 if (info->port.tty)
2150 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
2151 info->port.flags &= ~ASYNC_INITIALIZED;
Jiri Slaby02f11752006-12-08 02:39:28 -08002152
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002153 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002154 }
2155
2156#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002157 printk(KERN_DEBUG "cyc shutdown done\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002158#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002159} /* shutdown */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161/*
2162 * ------------------------------------------------------------
2163 * cy_open() and friends
2164 * ------------------------------------------------------------
2165 */
2166
2167static int
Jiri Slaby02f11752006-12-08 02:39:28 -08002168block_til_ready(struct tty_struct *tty, struct file *filp,
2169 struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170{
Jiri Slaby02f11752006-12-08 02:39:28 -08002171 DECLARE_WAITQUEUE(wait, current);
2172 struct cyclades_card *cinfo;
2173 unsigned long flags;
2174 int chip, channel, index;
2175 int retval;
2176 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Jiri Slaby875b2062007-05-08 00:36:49 -07002178 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002179 channel = info->line - cinfo->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Jiri Slaby02f11752006-12-08 02:39:28 -08002181 /*
2182 * If the device is in the middle of being closed, then block
2183 * until it's done, and then try again.
2184 */
Alan Cox77451e52008-07-16 21:57:02 +01002185 if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) {
2186 wait_event_interruptible(info->port.close_wait,
2187 !(info->port.flags & ASYNC_CLOSING));
2188 return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
Jiri Slaby02f11752006-12-08 02:39:28 -08002189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Jiri Slaby02f11752006-12-08 02:39:28 -08002191 /*
2192 * If non-blocking mode is set, then make the check up front
2193 * and then exit.
2194 */
Alan Cox15ed6cc2008-04-30 00:53:55 -07002195 if ((filp->f_flags & O_NONBLOCK) ||
2196 (tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox77451e52008-07-16 21:57:02 +01002197 info->port.flags |= ASYNC_NORMAL_ACTIVE;
Jiri Slaby02f11752006-12-08 02:39:28 -08002198 return 0;
2199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Jiri Slaby02f11752006-12-08 02:39:28 -08002201 /*
2202 * Block waiting for the carrier detect and the line to become
2203 * free (i.e., not in use by the callout). While we are in
Alan Cox77451e52008-07-16 21:57:02 +01002204 * this loop, info->port.count is dropped by one, so that
Jiri Slaby02f11752006-12-08 02:39:28 -08002205 * cy_close() knows when to free things. We restore it upon
2206 * exit, either normal or abnormal.
2207 */
2208 retval = 0;
Alan Cox77451e52008-07-16 21:57:02 +01002209 add_wait_queue(&info->port.open_wait, &wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08002210#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002211 printk(KERN_DEBUG "cyc block_til_ready before block: ttyC%d, "
Alan Cox77451e52008-07-16 21:57:02 +01002212 "count = %d\n", info->line, info->port.count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002213#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002214 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002215 if (!tty_hung_up_p(filp))
Alan Cox77451e52008-07-16 21:57:02 +01002216 info->port.count--;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002217 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002218#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002219 printk(KERN_DEBUG "cyc block_til_ready: (%d): decrementing count to "
Alan Cox77451e52008-07-16 21:57:02 +01002220 "%d\n", current->pid, info->port.count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002221#endif
Alan Cox77451e52008-07-16 21:57:02 +01002222 info->port.blocked_open++;
Jiri Slaby02f11752006-12-08 02:39:28 -08002223
Jiri Slaby2693f482009-06-11 12:31:06 +01002224 if (!cy_is_Z(cinfo)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002225 chip = channel >> 2;
2226 channel &= 0x03;
2227 index = cinfo->bus_index;
2228 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
2229
2230 while (1) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002231 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002232 if ((tty->termios->c_cflag & CBAUD)) {
2233 cy_writeb(base_addr + (CyCAR << index),
2234 (u_char) channel);
2235 cy_writeb(base_addr + (CyMSVR1 << index),
2236 CyRTS);
2237 cy_writeb(base_addr + (CyMSVR2 << index),
2238 CyDTR);
2239#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002240 printk(KERN_DEBUG "cyc:block_til_ready raising "
2241 "DTR\n");
2242 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002243 readb(base_addr + (CyMSVR1 << index)),
2244 readb(base_addr + (CyMSVR2 << index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08002245#endif
2246 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002247 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Jiri Slaby02f11752006-12-08 02:39:28 -08002249 set_current_state(TASK_INTERRUPTIBLE);
2250 if (tty_hung_up_p(filp) ||
Alan Cox77451e52008-07-16 21:57:02 +01002251 !(info->port.flags & ASYNC_INITIALIZED)) {
2252 retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
Jiri Slaby02f11752006-12-08 02:39:28 -08002253 -EAGAIN : -ERESTARTSYS);
2254 break;
2255 }
2256
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002257 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002258 cy_writeb(base_addr + (CyCAR << index),
2259 (u_char) channel);
Alan Cox77451e52008-07-16 21:57:02 +01002260 if (!(info->port.flags & ASYNC_CLOSING) && (C_CLOCAL(tty) ||
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002261 (readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08002262 (CyMSVR1 << index)) & CyDCD))) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002263 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002264 break;
2265 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002266 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002267
2268 if (signal_pending(current)) {
2269 retval = -ERESTARTSYS;
2270 break;
2271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002273 printk(KERN_DEBUG "cyc block_til_ready blocking: "
2274 "ttyC%d, count = %d\n",
Alan Cox77451e52008-07-16 21:57:02 +01002275 info->line, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002277 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002279 } else {
2280 struct FIRM_ID __iomem *firm_id;
2281 struct ZFW_CTRL __iomem *zfw_ctrl;
2282 struct BOARD_CTRL __iomem *board_ctrl;
2283 struct CH_CTRL __iomem *ch_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08002284
2285 base_addr = cinfo->base_addr;
2286 firm_id = base_addr + ID_ADDRESS;
Jiri Slaby2693f482009-06-11 12:31:06 +01002287 if (!cyz_is_loaded(cinfo)) {
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07002288 __set_current_state(TASK_RUNNING);
Alan Cox77451e52008-07-16 21:57:02 +01002289 remove_wait_queue(&info->port.open_wait, &wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08002290 return -EINVAL;
2291 }
2292
Alan Cox15ed6cc2008-04-30 00:53:55 -07002293 zfw_ctrl = base_addr + (readl(&firm_id->zfwctrl_addr)
2294 & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002295 board_ctrl = &zfw_ctrl->board_ctrl;
2296 ch_ctrl = zfw_ctrl->ch_ctrl;
2297
2298 while (1) {
2299 if ((tty->termios->c_cflag & CBAUD)) {
2300 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002301 readl(&ch_ctrl[channel].rs_control) |
2302 C_RS_RTS | C_RS_DTR);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002303 retval = cyz_issue_cmd(cinfo,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002304 channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002305 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002306 printk(KERN_ERR "cyc:block_til_ready "
2307 "retval on ttyC%d was %x\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08002308 info->line, retval);
2309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002311 printk(KERN_DEBUG "cyc:block_til_ready raising "
2312 "Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Jiri Slaby02f11752006-12-08 02:39:28 -08002316 set_current_state(TASK_INTERRUPTIBLE);
2317 if (tty_hung_up_p(filp) ||
Alan Cox77451e52008-07-16 21:57:02 +01002318 !(info->port.flags & ASYNC_INITIALIZED)) {
2319 retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
Jiri Slaby02f11752006-12-08 02:39:28 -08002320 -EAGAIN : -ERESTARTSYS);
2321 break;
2322 }
Alan Cox77451e52008-07-16 21:57:02 +01002323 if (!(info->port.flags & ASYNC_CLOSING) && (C_CLOCAL(tty) ||
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002324 (readl(&ch_ctrl[channel].rs_status) &
Jiri Slaby02f11752006-12-08 02:39:28 -08002325 C_RS_DCD))) {
2326 break;
2327 }
2328 if (signal_pending(current)) {
2329 retval = -ERESTARTSYS;
2330 break;
2331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002333 printk(KERN_DEBUG "cyc block_til_ready blocking: "
2334 "ttyC%d, count = %d\n",
Alan Cox77451e52008-07-16 21:57:02 +01002335 info->line, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002337 schedule();
2338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07002340 __set_current_state(TASK_RUNNING);
Alan Cox77451e52008-07-16 21:57:02 +01002341 remove_wait_queue(&info->port.open_wait, &wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08002342 if (!tty_hung_up_p(filp)) {
Alan Cox77451e52008-07-16 21:57:02 +01002343 info->port.count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002345 printk(KERN_DEBUG "cyc:block_til_ready (%d): incrementing "
Alan Cox77451e52008-07-16 21:57:02 +01002346 "count to %d\n", current->pid, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002348 }
Alan Cox77451e52008-07-16 21:57:02 +01002349 info->port.blocked_open--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002351 printk(KERN_DEBUG "cyc:block_til_ready after blocking: ttyC%d, "
Alan Cox77451e52008-07-16 21:57:02 +01002352 "count = %d\n", info->line, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002354 if (retval)
2355 return retval;
Alan Cox77451e52008-07-16 21:57:02 +01002356 info->port.flags |= ASYNC_NORMAL_ACTIVE;
Jiri Slaby02f11752006-12-08 02:39:28 -08002357 return 0;
2358} /* block_til_ready */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360/*
2361 * This routine is called whenever a serial port is opened. It
2362 * performs the serial-specific initialization for the tty structure.
2363 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002364static int cy_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365{
Jiri Slaby02f11752006-12-08 02:39:28 -08002366 struct cyclades_port *info;
Jiri Slaby65f76a82007-10-18 03:06:22 -07002367 unsigned int i, line;
2368 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Jiri Slaby02f11752006-12-08 02:39:28 -08002370 line = tty->index;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002371 if (tty->index < 0 || NR_PORTS <= line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 return -ENODEV;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002373
Jiri Slabydd025c02007-05-08 00:37:02 -07002374 for (i = 0; i < NR_CARDS; i++)
2375 if (line < cy_card[i].first_line + cy_card[i].nports &&
2376 line >= cy_card[i].first_line)
2377 break;
2378 if (i >= NR_CARDS)
2379 return -ENODEV;
2380 info = &cy_card[i].ports[line - cy_card[i].first_line];
Alan Cox15ed6cc2008-04-30 00:53:55 -07002381 if (info->line < 0)
Jiri Slaby02f11752006-12-08 02:39:28 -08002382 return -ENODEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08002383
2384 /* If the card's firmware hasn't been loaded,
2385 treat it as absent from the system. This
2386 will make the user pay attention.
2387 */
Jiri Slaby2693f482009-06-11 12:31:06 +01002388 if (cy_is_Z(info->card)) {
Jiri Slaby875b2062007-05-08 00:36:49 -07002389 struct cyclades_card *cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002390 struct FIRM_ID __iomem *firm_id = cinfo->base_addr + ID_ADDRESS;
2391
Jiri Slaby2693f482009-06-11 12:31:06 +01002392 if (!cyz_is_loaded(cinfo)) {
2393 if (cinfo->hw_ver == ZE_V1 && cyz_fpga_loaded(cinfo) &&
Jiri Slaby101b8152009-06-11 12:30:10 +01002394 readl(&firm_id->signature) ==
2395 ZFIRM_HLT) {
Jiri Slaby21719192007-05-08 00:36:42 -07002396 printk(KERN_ERR "cyc:Cyclades-Z Error: you "
2397 "need an external power supply for "
2398 "this number of ports.\nFirmware "
2399 "halted.\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002400 } else {
Jiri Slaby21719192007-05-08 00:36:42 -07002401 printk(KERN_ERR "cyc:Cyclades-Z firmware not "
2402 "yet loaded\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002403 }
2404 return -ENODEV;
2405 }
2406#ifdef CONFIG_CYZ_INTR
2407 else {
2408 /* In case this Z board is operating in interrupt mode, its
2409 interrupts should be enabled as soon as the first open
2410 happens to one of its ports. */
2411 if (!cinfo->intr_enabled) {
Jiri Slaby97e87f82009-06-11 12:29:27 +01002412 u16 intr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002413
Jiri Slaby02f11752006-12-08 02:39:28 -08002414 /* Enable interrupts on the PLX chip */
Jiri Slaby97e87f82009-06-11 12:29:27 +01002415 intr = readw(&cinfo->ctl_addr.p9060->
2416 intr_ctrl_stat) | 0x0900;
2417 cy_writew(&cinfo->ctl_addr.p9060->
2418 intr_ctrl_stat, intr);
Jiri Slaby02f11752006-12-08 02:39:28 -08002419 /* Enable interrupts on the FW */
2420 retval = cyz_issue_cmd(cinfo, 0,
2421 C_CM_IRQ_ENBL, 0L);
2422 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002423 printk(KERN_ERR "cyc:IRQ enable retval "
2424 "was %x\n", retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002425 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002426 cinfo->intr_enabled = 1;
2427 }
2428 }
2429#endif /* CONFIG_CYZ_INTR */
2430 /* Make sure this Z port really exists in hardware */
2431 if (info->line > (cinfo->first_line + cinfo->nports - 1))
2432 return -ENODEV;
2433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002435 printk(KERN_DEBUG "cyc:cy_open ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002437 tty->driver_data = info;
Alan Cox77451e52008-07-16 21:57:02 +01002438 info->port.tty = tty;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002439 if (serial_paranoia_check(info, tty->name, "cy_open"))
Jiri Slaby02f11752006-12-08 02:39:28 -08002440 return -ENODEV;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002443 printk(KERN_DEBUG "cyc:cy_open ttyC%d, count = %d\n", info->line,
Alan Cox77451e52008-07-16 21:57:02 +01002444 info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445#endif
Alan Cox77451e52008-07-16 21:57:02 +01002446 info->port.count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002448 printk(KERN_DEBUG "cyc:cy_open (%d): incrementing count to %d\n",
Alan Cox77451e52008-07-16 21:57:02 +01002449 current->pid, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Jiri Slaby02f11752006-12-08 02:39:28 -08002452 /*
2453 * If the port is the middle of closing, bail out now
2454 */
Alan Cox77451e52008-07-16 21:57:02 +01002455 if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) {
2456 wait_event_interruptible(info->port.close_wait,
2457 !(info->port.flags & ASYNC_CLOSING));
2458 return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
Jiri Slaby02f11752006-12-08 02:39:28 -08002459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Jiri Slaby02f11752006-12-08 02:39:28 -08002461 /*
2462 * Start up serial port
2463 */
2464 retval = startup(info);
Alan Cox15ed6cc2008-04-30 00:53:55 -07002465 if (retval)
Jiri Slaby02f11752006-12-08 02:39:28 -08002466 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Jiri Slaby02f11752006-12-08 02:39:28 -08002468 retval = block_til_ready(tty, filp, info);
2469 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002471 printk(KERN_DEBUG "cyc:cy_open returning after block_til_ready "
2472 "with %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002474 return retval;
2475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Jiri Slaby02f11752006-12-08 02:39:28 -08002477 info->throttle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002480 printk(KERN_DEBUG "cyc:cy_open done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002482 return 0;
2483} /* cy_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
2485/*
2486 * cy_wait_until_sent() --- wait until the transmitter is empty
2487 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002488static void cy_wait_until_sent(struct tty_struct *tty, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489{
Jiri Slaby875b2062007-05-08 00:36:49 -07002490 struct cyclades_card *card;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002491 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002492 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002493 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08002494 unsigned long orig_jiffies;
2495 int char_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Jiri Slaby02f11752006-12-08 02:39:28 -08002497 if (serial_paranoia_check(info, tty->name, "cy_wait_until_sent"))
2498 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
Jiri Slaby02f11752006-12-08 02:39:28 -08002500 if (info->xmit_fifo_size == 0)
2501 return; /* Just in case.... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Jiri Slaby02f11752006-12-08 02:39:28 -08002503 orig_jiffies = jiffies;
Alan Cox978e5952008-04-30 00:53:59 -07002504 lock_kernel();
Jiri Slaby02f11752006-12-08 02:39:28 -08002505 /*
2506 * Set the check interval to be 1/5 of the estimated time to
2507 * send a single character, and make it at least 1. The check
2508 * interval should also be less than the timeout.
2509 *
2510 * Note: we have to use pretty tight timings here to satisfy
2511 * the NIST-PCTS.
2512 */
2513 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2514 char_time = char_time / 5;
2515 if (char_time <= 0)
2516 char_time = 1;
2517 if (timeout < 0)
2518 timeout = 0;
2519 if (timeout)
2520 char_time = min(char_time, timeout);
2521 /*
2522 * If the transmitter hasn't cleared in twice the approximate
2523 * amount of time to send the entire FIFO, it probably won't
2524 * ever clear. This assumes the UART isn't doing flow
2525 * control, which is currently the case. Hence, if it ever
2526 * takes longer than info->timeout, this is probably due to a
2527 * UART bug of some kind. So, we clamp the timeout parameter at
2528 * 2*info->timeout.
2529 */
2530 if (!timeout || timeout > 2 * info->timeout)
2531 timeout = 2 * info->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002533 printk(KERN_DEBUG "In cy_wait_until_sent(%d) check=%d, jiff=%lu...",
2534 timeout, char_time, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002536 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002537 channel = (info->line) - (card->first_line);
Jiri Slaby2693f482009-06-11 12:31:06 +01002538 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002539 chip = channel >> 2;
2540 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002541 index = card->bus_index;
2542 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002543 while (readb(base_addr + (CySRER << index)) & CyTxRdy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002545 printk(KERN_DEBUG "Not clean (jiff=%lu)...", jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002547 if (msleep_interruptible(jiffies_to_msecs(char_time)))
2548 break;
2549 if (timeout && time_after(jiffies, orig_jiffies +
2550 timeout))
2551 break;
2552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002554 /* Run one more char cycle */
2555 msleep_interruptible(jiffies_to_msecs(char_time * 5));
Alan Cox978e5952008-04-30 00:53:59 -07002556 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002558 printk(KERN_DEBUG "Clean (jiff=%lu)...done\n", jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559#endif
2560}
2561
Alan Cox978e5952008-04-30 00:53:59 -07002562static void cy_flush_buffer(struct tty_struct *tty)
2563{
2564 struct cyclades_port *info = tty->driver_data;
2565 struct cyclades_card *card;
2566 int channel, retval;
2567 unsigned long flags;
2568
2569#ifdef CY_DEBUG_IO
2570 printk(KERN_DEBUG "cyc:cy_flush_buffer ttyC%d\n", info->line);
2571#endif
2572
2573 if (serial_paranoia_check(info, tty->name, "cy_flush_buffer"))
2574 return;
2575
2576 card = info->card;
2577 channel = info->line - card->first_line;
2578
2579 spin_lock_irqsave(&card->card_lock, flags);
2580 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
2581 spin_unlock_irqrestore(&card->card_lock, flags);
2582
Jiri Slaby2693f482009-06-11 12:31:06 +01002583 if (cy_is_Z(card)) { /* If it is a Z card, flush the on-board
Alan Cox978e5952008-04-30 00:53:59 -07002584 buffers as well */
2585 spin_lock_irqsave(&card->card_lock, flags);
2586 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_TX, 0L);
2587 if (retval != 0) {
2588 printk(KERN_ERR "cyc: flush_buffer retval on ttyC%d "
2589 "was %x\n", info->line, retval);
2590 }
2591 spin_unlock_irqrestore(&card->card_lock, flags);
2592 }
2593 tty_wakeup(tty);
2594} /* cy_flush_buffer */
2595
2596
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597/*
2598 * This routine is called when a particular tty device is closed.
2599 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002600static void cy_close(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002602 struct cyclades_port *info = tty->driver_data;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002603 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002604 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
2606#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002607 printk(KERN_DEBUG "cyc:cy_close ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608#endif
2609
Alan Cox15ed6cc2008-04-30 00:53:55 -07002610 if (!info || serial_paranoia_check(info, tty->name, "cy_close"))
Jiri Slaby02f11752006-12-08 02:39:28 -08002611 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002613 card = info->card;
2614
2615 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002616 /* If the TTY is being hung up, nothing to do */
2617 if (tty_hung_up_p(filp)) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002618 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002619 return;
2620 }
2621#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002622 printk(KERN_DEBUG "cyc:cy_close ttyC%d, count = %d\n", info->line,
Alan Cox77451e52008-07-16 21:57:02 +01002623 info->port.count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002624#endif
Alan Cox77451e52008-07-16 21:57:02 +01002625 if ((tty->count == 1) && (info->port.count != 1)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002626 /*
2627 * Uh, oh. tty->count is 1, which means that the tty
2628 * structure will be freed. Info->count should always
2629 * be one in these conditions. If it's greater than
2630 * one, we've got real problems, since it means the
2631 * serial port won't be shutdown.
2632 */
Jiri Slaby21719192007-05-08 00:36:42 -07002633 printk(KERN_ERR "cyc:cy_close: bad serial port count; "
Alan Cox77451e52008-07-16 21:57:02 +01002634 "tty->count is 1, info->port.count is %d\n", info->port.count);
2635 info->port.count = 1;
Jiri Slaby02f11752006-12-08 02:39:28 -08002636 }
2637#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002638 printk(KERN_DEBUG "cyc:cy_close at (%d): decrementing count to %d\n",
Alan Cox77451e52008-07-16 21:57:02 +01002639 current->pid, info->port.count - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08002640#endif
Alan Cox77451e52008-07-16 21:57:02 +01002641 if (--info->port.count < 0) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002642#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002643 printk(KERN_DEBUG "cyc:cyc_close setting count to 0\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002644#endif
Alan Cox77451e52008-07-16 21:57:02 +01002645 info->port.count = 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08002646 }
Alan Cox77451e52008-07-16 21:57:02 +01002647 if (info->port.count) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002648 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002649 return;
2650 }
Alan Cox77451e52008-07-16 21:57:02 +01002651 info->port.flags |= ASYNC_CLOSING;
Jiri Slaby02f11752006-12-08 02:39:28 -08002652
2653 /*
2654 * Now we wait for the transmit buffer to clear; and we notify
2655 * the line discipline to only process XON/XOFF characters.
2656 */
2657 tty->closing = 1;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002658 spin_unlock_irqrestore(&card->card_lock, flags);
Alan Cox44b7d1b2008-07-16 21:57:18 +01002659 if (info->port.closing_wait != CY_CLOSING_WAIT_NONE)
2660 tty_wait_until_sent(tty, info->port.closing_wait);
Alan Cox15ed6cc2008-04-30 00:53:55 -07002661
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002662 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002663
Jiri Slaby2693f482009-06-11 12:31:06 +01002664 if (!cy_is_Z(card)) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002665 int channel = info->line - card->first_line;
2666 int index = card->bus_index;
2667 void __iomem *base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08002668 (cy_chip_offset[channel >> 2] << index);
2669 /* Stop accepting input */
2670 channel &= 0x03;
2671 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
2672 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002673 readb(base_addr + (CySRER << index)) & ~CyRxData);
Alan Cox77451e52008-07-16 21:57:02 +01002674 if (info->port.flags & ASYNC_INITIALIZED) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07002675 /* Waiting for on-board buffers to be empty before
2676 closing the port */
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002677 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002678 cy_wait_until_sent(tty, info->timeout);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002679 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002680 }
2681 } else {
2682#ifdef Z_WAKE
Alan Cox15ed6cc2008-04-30 00:53:55 -07002683 /* Waiting for on-board buffers to be empty before closing
2684 the port */
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002685 void __iomem *base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002686 struct FIRM_ID __iomem *firm_id = base_addr + ID_ADDRESS;
2687 struct ZFW_CTRL __iomem *zfw_ctrl =
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002688 base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002689 struct CH_CTRL __iomem *ch_ctrl = zfw_ctrl->ch_ctrl;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002690 int channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08002691 int retval;
2692
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002693 if (readl(&ch_ctrl[channel].flow_status) != C_FS_TXIDLE) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002694 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLW, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002695 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002696 printk(KERN_DEBUG "cyc:cy_close retval on "
2697 "ttyC%d was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002698 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002699 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07002700 wait_for_completion_interruptible(&info->shutdown_wait);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002701 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002702 }
2703#endif
2704 }
2705
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002706 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002707 shutdown(info);
Alan Cox978e5952008-04-30 00:53:59 -07002708 cy_flush_buffer(tty);
Jiri Slaby02f11752006-12-08 02:39:28 -08002709 tty_ldisc_flush(tty);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002710 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002711
2712 tty->closing = 0;
Alan Cox77451e52008-07-16 21:57:02 +01002713 info->port.tty = NULL;
2714 if (info->port.blocked_open) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002715 spin_unlock_irqrestore(&card->card_lock, flags);
Alan Cox44b7d1b2008-07-16 21:57:18 +01002716 if (info->port.close_delay) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002717 msleep_interruptible(jiffies_to_msecs
Alan Cox44b7d1b2008-07-16 21:57:18 +01002718 (info->port.close_delay));
Jiri Slaby02f11752006-12-08 02:39:28 -08002719 }
Alan Cox77451e52008-07-16 21:57:02 +01002720 wake_up_interruptible(&info->port.open_wait);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002721 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002722 }
Alan Cox77451e52008-07-16 21:57:02 +01002723 info->port.flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
2724 wake_up_interruptible(&info->port.close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
2726#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002727 printk(KERN_DEBUG "cyc:cy_close done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728#endif
2729
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002730 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002731} /* cy_close */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
2733/* This routine gets called when tty_write has put something into
2734 * the write_queue. The characters may come from user space or
2735 * kernel space.
2736 *
2737 * This routine will return the number of characters actually
2738 * accepted for writing.
2739 *
2740 * If the port is not already transmitting stuff, start it off by
2741 * enabling interrupts. The interrupt service routine will then
2742 * ensure that the characters are sent.
2743 * If the port is already active, there is no need to kick it.
2744 *
2745 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002746static int cy_write(struct tty_struct *tty, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002748 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002749 unsigned long flags;
2750 int c, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
2752#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002753 printk(KERN_DEBUG "cyc:cy_write ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754#endif
2755
Alan Cox15ed6cc2008-04-30 00:53:55 -07002756 if (serial_paranoia_check(info, tty->name, "cy_write"))
Jiri Slaby02f11752006-12-08 02:39:28 -08002757 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Alan Cox77451e52008-07-16 21:57:02 +01002759 if (!info->port.xmit_buf)
Jiri Slaby02f11752006-12-08 02:39:28 -08002760 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002762 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002763 while (1) {
Harvey Harrison1a4e2352008-04-30 00:53:52 -07002764 c = min(count, (int)(SERIAL_XMIT_SIZE - info->xmit_cnt - 1));
2765 c = min(c, (int)(SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
Jiri Slaby02f11752006-12-08 02:39:28 -08002767 if (c <= 0)
2768 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Alan Cox77451e52008-07-16 21:57:02 +01002770 memcpy(info->port.xmit_buf + info->xmit_head, buf, c);
Jiri Slaby02f11752006-12-08 02:39:28 -08002771 info->xmit_head = (info->xmit_head + c) &
2772 (SERIAL_XMIT_SIZE - 1);
2773 info->xmit_cnt += c;
2774 buf += c;
2775 count -= c;
2776 ret += c;
2777 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002778 spin_unlock_irqrestore(&info->card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Jiri Slaby02f11752006-12-08 02:39:28 -08002780 info->idle_stats.xmit_bytes += ret;
2781 info->idle_stats.xmit_idle = jiffies;
2782
Alan Cox15ed6cc2008-04-30 00:53:55 -07002783 if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped)
Jiri Slaby02f11752006-12-08 02:39:28 -08002784 start_xmit(info);
Alan Cox15ed6cc2008-04-30 00:53:55 -07002785
Jiri Slaby02f11752006-12-08 02:39:28 -08002786 return ret;
2787} /* cy_write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789/*
2790 * This routine is called by the kernel to write a single
2791 * character to the tty device. If the kernel uses this routine,
2792 * it must call the flush_chars() routine (if defined) when it is
2793 * done stuffing characters into the driver. If there is no room
2794 * in the queue, the character is ignored.
2795 */
Alan Cox76b25a52008-04-30 00:54:03 -07002796static int cy_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002798 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002799 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
2801#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002802 printk(KERN_DEBUG "cyc:cy_put_char ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803#endif
2804
Jiri Slaby02f11752006-12-08 02:39:28 -08002805 if (serial_paranoia_check(info, tty->name, "cy_put_char"))
Alan Cox76b25a52008-04-30 00:54:03 -07002806 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Alan Cox77451e52008-07-16 21:57:02 +01002808 if (!info->port.xmit_buf)
Alan Cox76b25a52008-04-30 00:54:03 -07002809 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002811 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby90cc3012006-12-08 02:39:31 -08002812 if (info->xmit_cnt >= (int)(SERIAL_XMIT_SIZE - 1)) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002813 spin_unlock_irqrestore(&info->card->card_lock, flags);
Alan Cox76b25a52008-04-30 00:54:03 -07002814 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08002815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Alan Cox77451e52008-07-16 21:57:02 +01002817 info->port.xmit_buf[info->xmit_head++] = ch;
Jiri Slaby02f11752006-12-08 02:39:28 -08002818 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
2819 info->xmit_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 info->idle_stats.xmit_bytes++;
2821 info->idle_stats.xmit_idle = jiffies;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002822 spin_unlock_irqrestore(&info->card->card_lock, flags);
Alan Cox76b25a52008-04-30 00:54:03 -07002823 return 1;
Jiri Slaby02f11752006-12-08 02:39:28 -08002824} /* cy_put_char */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826/*
2827 * This routine is called by the kernel after it has written a
Alan Cox15ed6cc2008-04-30 00:53:55 -07002828 * series of characters to the tty device using put_char().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002830static void cy_flush_chars(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002832 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002833
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002835 printk(KERN_DEBUG "cyc:cy_flush_chars ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836#endif
2837
Jiri Slaby02f11752006-12-08 02:39:28 -08002838 if (serial_paranoia_check(info, tty->name, "cy_flush_chars"))
2839 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Jiri Slaby02f11752006-12-08 02:39:28 -08002841 if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
Alan Cox77451e52008-07-16 21:57:02 +01002842 !info->port.xmit_buf)
Jiri Slaby02f11752006-12-08 02:39:28 -08002843 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Jiri Slaby02f11752006-12-08 02:39:28 -08002845 start_xmit(info);
2846} /* cy_flush_chars */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848/*
2849 * This routine returns the numbers of characters the tty driver
2850 * will accept for queuing to be written. This number is subject
2851 * to change as output buffers get emptied, or if the output flow
2852 * control is activated.
2853 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002854static int cy_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002856 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002857 int ret;
2858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002860 printk(KERN_DEBUG "cyc:cy_write_room ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861#endif
2862
Jiri Slaby02f11752006-12-08 02:39:28 -08002863 if (serial_paranoia_check(info, tty->name, "cy_write_room"))
2864 return 0;
2865 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
2866 if (ret < 0)
2867 ret = 0;
2868 return ret;
2869} /* cy_write_room */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Jiri Slaby02f11752006-12-08 02:39:28 -08002871static int cy_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872{
Jiri Slaby875b2062007-05-08 00:36:49 -07002873 struct cyclades_card *card;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002874 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07002875 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Jiri Slaby02f11752006-12-08 02:39:28 -08002877 if (serial_paranoia_check(info, tty->name, "cy_chars_in_buffer"))
2878 return 0;
2879
2880 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002881 channel = (info->line) - (card->first_line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883#ifdef Z_EXT_CHARS_IN_BUFFER
Jiri Slaby2693f482009-06-11 12:31:06 +01002884 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002885#endif /* Z_EXT_CHARS_IN_BUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002887 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
2888 info->line, info->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002890 return info->xmit_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891#ifdef Z_EXT_CHARS_IN_BUFFER
Jiri Slaby02f11752006-12-08 02:39:28 -08002892 } else {
Jiri Slabyad39c302007-05-08 00:35:49 -07002893 static struct FIRM_ID *firm_id;
2894 static struct ZFW_CTRL *zfw_ctrl;
2895 static struct CH_CTRL *ch_ctrl;
2896 static struct BUF_CTRL *buf_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08002897 int char_count;
Jiri Slabyad39c302007-05-08 00:35:49 -07002898 __u32 tx_put, tx_get, tx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Alan Cox978e5952008-04-30 00:53:59 -07002900 lock_kernel();
Jiri Slaby875b2062007-05-08 00:36:49 -07002901 firm_id = card->base_addr + ID_ADDRESS;
2902 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002903 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002904 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
2905 buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002907 tx_get = readl(&buf_ctrl->tx_get);
2908 tx_put = readl(&buf_ctrl->tx_put);
2909 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
Jiri Slaby02f11752006-12-08 02:39:28 -08002910 if (tx_put >= tx_get)
2911 char_count = tx_put - tx_get;
2912 else
2913 char_count = tx_put - tx_get + tx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002915 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
2916 info->line, info->xmit_cnt + char_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917#endif
Alan Cox978e5952008-04-30 00:53:59 -07002918 unlock_kernel();
Jiri Slaby096dcfc2006-12-08 02:39:30 -08002919 return info->xmit_cnt + char_count;
Jiri Slaby02f11752006-12-08 02:39:28 -08002920 }
2921#endif /* Z_EXT_CHARS_IN_BUFFER */
2922} /* cy_chars_in_buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
2924/*
2925 * ------------------------------------------------------------
2926 * cy_ioctl() and friends
2927 * ------------------------------------------------------------
2928 */
2929
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07002930static void cyy_baud_calc(struct cyclades_port *info, __u32 baud)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931{
Jiri Slaby02f11752006-12-08 02:39:28 -08002932 int co, co_val, bpr;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07002933 __u32 cy_clock = ((info->chip_rev >= CD1400_REV_J) ? 60000000 :
Jiri Slaby02f11752006-12-08 02:39:28 -08002934 25000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Jiri Slaby02f11752006-12-08 02:39:28 -08002936 if (baud == 0) {
2937 info->tbpr = info->tco = info->rbpr = info->rco = 0;
2938 return;
2939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Jiri Slaby02f11752006-12-08 02:39:28 -08002941 /* determine which prescaler to use */
2942 for (co = 4, co_val = 2048; co; co--, co_val >>= 2) {
2943 if (cy_clock / co_val / baud > 63)
2944 break;
2945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Jiri Slaby02f11752006-12-08 02:39:28 -08002947 bpr = (cy_clock / co_val * 2 / baud + 1) / 2;
2948 if (bpr > 255)
2949 bpr = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Jiri Slaby02f11752006-12-08 02:39:28 -08002951 info->tbpr = info->rbpr = bpr;
2952 info->tco = info->rco = co;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953}
2954
2955/*
2956 * This routine finds or computes the various line characteristics.
2957 * It used to be called config_setup
2958 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002959static void set_line_char(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960{
Jiri Slaby875b2062007-05-08 00:36:49 -07002961 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002962 unsigned long flags;
2963 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002964 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08002965 unsigned cflag, iflag;
2966 unsigned short chip_number;
2967 int baud, baud_rate = 0;
2968 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Alan Cox77451e52008-07-16 21:57:02 +01002970 if (!info->port.tty || !info->port.tty->termios)
Jiri Slaby02f11752006-12-08 02:39:28 -08002971 return;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002972
2973 if (info->line == -1)
Jiri Slaby02f11752006-12-08 02:39:28 -08002974 return;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002975
Alan Cox77451e52008-07-16 21:57:02 +01002976 cflag = info->port.tty->termios->c_cflag;
2977 iflag = info->port.tty->termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Jiri Slaby02f11752006-12-08 02:39:28 -08002979 /*
2980 * Set up the tty->alt_speed kludge
2981 */
Alan Cox77451e52008-07-16 21:57:02 +01002982 if (info->port.tty) {
2983 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
2984 info->port.tty->alt_speed = 57600;
2985 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
2986 info->port.tty->alt_speed = 115200;
2987 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
2988 info->port.tty->alt_speed = 230400;
2989 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
2990 info->port.tty->alt_speed = 460800;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Jiri Slaby02f11752006-12-08 02:39:28 -08002993 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002994 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08002995 chip_number = channel / 4;
2996
Jiri Slaby2693f482009-06-11 12:31:06 +01002997 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002998
Jiri Slaby875b2062007-05-08 00:36:49 -07002999 index = card->bus_index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003000
3001 /* baud rate */
Alan Cox77451e52008-07-16 21:57:02 +01003002 baud = tty_get_baud_rate(info->port.tty);
3003 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08003004 ASYNC_SPD_CUST) {
3005 if (info->custom_divisor)
3006 baud_rate = info->baud / info->custom_divisor;
3007 else
3008 baud_rate = info->baud;
3009 } else if (baud > CD1400_MAX_SPEED) {
3010 baud = CD1400_MAX_SPEED;
3011 }
3012 /* find the baud index */
3013 for (i = 0; i < 20; i++) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07003014 if (baud == baud_table[i])
Jiri Slaby02f11752006-12-08 02:39:28 -08003015 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08003016 }
Alan Cox15ed6cc2008-04-30 00:53:55 -07003017 if (i == 20)
Jiri Slaby02f11752006-12-08 02:39:28 -08003018 i = 19; /* CD1400_MAX_SPEED */
Jiri Slaby02f11752006-12-08 02:39:28 -08003019
Alan Cox77451e52008-07-16 21:57:02 +01003020 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08003021 ASYNC_SPD_CUST) {
3022 cyy_baud_calc(info, baud_rate);
3023 } else {
3024 if (info->chip_rev >= CD1400_REV_J) {
3025 /* It is a CD1400 rev. J or later */
3026 info->tbpr = baud_bpr_60[i]; /* Tx BPR */
3027 info->tco = baud_co_60[i]; /* Tx CO */
3028 info->rbpr = baud_bpr_60[i]; /* Rx BPR */
3029 info->rco = baud_co_60[i]; /* Rx CO */
3030 } else {
3031 info->tbpr = baud_bpr_25[i]; /* Tx BPR */
3032 info->tco = baud_co_25[i]; /* Tx CO */
3033 info->rbpr = baud_bpr_25[i]; /* Rx BPR */
3034 info->rco = baud_co_25[i]; /* Rx CO */
3035 }
3036 }
3037 if (baud_table[i] == 134) {
3038 /* get it right for 134.5 baud */
3039 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
3040 2;
Alan Cox77451e52008-07-16 21:57:02 +01003041 } else if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08003042 ASYNC_SPD_CUST) {
3043 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3044 baud_rate) + 2;
3045 } else if (baud_table[i]) {
3046 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3047 baud_table[i]) + 2;
3048 /* this needs to be propagated into the card info */
3049 } else {
3050 info->timeout = 0;
3051 }
3052 /* By tradition (is it a standard?) a baud rate of zero
3053 implies the line should be/has been closed. A bit
3054 later in this routine such a test is performed. */
3055
3056 /* byte size and parity */
3057 info->cor5 = 0;
3058 info->cor4 = 0;
3059 /* receive threshold */
3060 info->cor3 = (info->default_threshold ?
3061 info->default_threshold : baud_cor3[i]);
3062 info->cor2 = CyETC;
3063 switch (cflag & CSIZE) {
3064 case CS5:
3065 info->cor1 = Cy_5_BITS;
3066 break;
3067 case CS6:
3068 info->cor1 = Cy_6_BITS;
3069 break;
3070 case CS7:
3071 info->cor1 = Cy_7_BITS;
3072 break;
3073 case CS8:
3074 info->cor1 = Cy_8_BITS;
3075 break;
3076 }
Alan Cox15ed6cc2008-04-30 00:53:55 -07003077 if (cflag & CSTOPB)
Jiri Slaby02f11752006-12-08 02:39:28 -08003078 info->cor1 |= Cy_2_STOP;
Alan Cox15ed6cc2008-04-30 00:53:55 -07003079
Jiri Slaby02f11752006-12-08 02:39:28 -08003080 if (cflag & PARENB) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07003081 if (cflag & PARODD)
Jiri Slaby02f11752006-12-08 02:39:28 -08003082 info->cor1 |= CyPARITY_O;
Alan Cox15ed6cc2008-04-30 00:53:55 -07003083 else
Jiri Slaby02f11752006-12-08 02:39:28 -08003084 info->cor1 |= CyPARITY_E;
Alan Cox15ed6cc2008-04-30 00:53:55 -07003085 } else
Jiri Slaby02f11752006-12-08 02:39:28 -08003086 info->cor1 |= CyPARITY_NONE;
Jiri Slaby02f11752006-12-08 02:39:28 -08003087
3088 /* CTS flow control flag */
3089 if (cflag & CRTSCTS) {
Alan Cox77451e52008-07-16 21:57:02 +01003090 info->port.flags |= ASYNC_CTS_FLOW;
Jiri Slaby02f11752006-12-08 02:39:28 -08003091 info->cor2 |= CyCtsAE;
3092 } else {
Alan Cox77451e52008-07-16 21:57:02 +01003093 info->port.flags &= ~ASYNC_CTS_FLOW;
Jiri Slaby02f11752006-12-08 02:39:28 -08003094 info->cor2 &= ~CyCtsAE;
3095 }
3096 if (cflag & CLOCAL)
Alan Cox77451e52008-07-16 21:57:02 +01003097 info->port.flags &= ~ASYNC_CHECK_CD;
Jiri Slaby02f11752006-12-08 02:39:28 -08003098 else
Alan Cox77451e52008-07-16 21:57:02 +01003099 info->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
3101 /***********************************************
3102 The hardware option, CyRtsAO, presents RTS when
3103 the chip has characters to send. Since most modems
3104 use RTS as reverse (inbound) flow control, this
3105 option is not used. If inbound flow control is
3106 necessary, DTR can be programmed to provide the
3107 appropriate signals for use with a non-standard
3108 cable. Contact Marcio Saito for details.
3109 ***********************************************/
3110
Jiri Slaby02f11752006-12-08 02:39:28 -08003111 chip = channel >> 2;
3112 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003113 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003115 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003116 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Jiri Slaby02f11752006-12-08 02:39:28 -08003118 /* tx and rx baud rate */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Jiri Slaby02f11752006-12-08 02:39:28 -08003120 cy_writeb(base_addr + (CyTCOR << index), info->tco);
3121 cy_writeb(base_addr + (CyTBPR << index), info->tbpr);
3122 cy_writeb(base_addr + (CyRCOR << index), info->rco);
3123 cy_writeb(base_addr + (CyRBPR << index), info->rbpr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Jiri Slaby02f11752006-12-08 02:39:28 -08003125 /* set line characteristics according configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
Jiri Slaby02f11752006-12-08 02:39:28 -08003127 cy_writeb(base_addr + (CySCHR1 << index),
Alan Cox77451e52008-07-16 21:57:02 +01003128 START_CHAR(info->port.tty));
3129 cy_writeb(base_addr + (CySCHR2 << index), STOP_CHAR(info->port.tty));
Jiri Slaby02f11752006-12-08 02:39:28 -08003130 cy_writeb(base_addr + (CyCOR1 << index), info->cor1);
3131 cy_writeb(base_addr + (CyCOR2 << index), info->cor2);
3132 cy_writeb(base_addr + (CyCOR3 << index), info->cor3);
3133 cy_writeb(base_addr + (CyCOR4 << index), info->cor4);
3134 cy_writeb(base_addr + (CyCOR5 << index), info->cor5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
Jiri Slaby02f11752006-12-08 02:39:28 -08003136 cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR1ch | CyCOR2ch |
3137 CyCOR3ch, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
Alan Cox15ed6cc2008-04-30 00:53:55 -07003139 /* !!! Is this needed? */
3140 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08003141 cy_writeb(base_addr + (CyRTPR << index),
3142 (info->default_timeout ? info->default_timeout : 0x02));
3143 /* 10ms rx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
Alan Cox77451e52008-07-16 21:57:02 +01003145 if (C_CLOCAL(info->port.tty)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003146 /* without modem intr */
3147 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003148 readb(base_addr + (CySRER << index)) | CyMdmCh);
Jiri Slaby02f11752006-12-08 02:39:28 -08003149 /* act on 1->0 modem transitions */
3150 if ((cflag & CRTSCTS) && info->rflow) {
3151 cy_writeb(base_addr + (CyMCOR1 << index),
3152 (CyCTS | rflow_thr[i]));
3153 } else {
3154 cy_writeb(base_addr + (CyMCOR1 << index),
3155 CyCTS);
3156 }
3157 /* act on 0->1 modem transitions */
3158 cy_writeb(base_addr + (CyMCOR2 << index), CyCTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08003160 /* without modem intr */
3161 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003162 readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08003163 (CySRER << index)) | CyMdmCh);
3164 /* act on 1->0 modem transitions */
3165 if ((cflag & CRTSCTS) && info->rflow) {
3166 cy_writeb(base_addr + (CyMCOR1 << index),
3167 (CyDSR | CyCTS | CyRI | CyDCD |
3168 rflow_thr[i]));
3169 } else {
3170 cy_writeb(base_addr + (CyMCOR1 << index),
3171 CyDSR | CyCTS | CyRI | CyDCD);
3172 }
3173 /* act on 0->1 modem transitions */
3174 cy_writeb(base_addr + (CyMCOR2 << index),
3175 CyDSR | CyCTS | CyRI | CyDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003177
3178 if (i == 0) { /* baud rate is zero, turn off line */
3179 if (info->rtsdtr_inv) {
3180 cy_writeb(base_addr + (CyMSVR1 << index),
3181 ~CyRTS);
3182 } else {
3183 cy_writeb(base_addr + (CyMSVR2 << index),
3184 ~CyDTR);
3185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003187 printk(KERN_DEBUG "cyc:set_line_char dropping DTR\n");
3188 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003189 readb(base_addr + (CyMSVR1 << index)),
3190 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003192 } else {
3193 if (info->rtsdtr_inv) {
3194 cy_writeb(base_addr + (CyMSVR1 << index),
3195 CyRTS);
3196 } else {
3197 cy_writeb(base_addr + (CyMSVR2 << index),
3198 CyDTR);
3199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003201 printk(KERN_DEBUG "cyc:set_line_char raising DTR\n");
3202 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003203 readb(base_addr + (CyMSVR1 << index)),
3204 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Alan Cox77451e52008-07-16 21:57:02 +01003208 if (info->port.tty)
3209 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003210 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08003213 struct FIRM_ID __iomem *firm_id;
3214 struct ZFW_CTRL __iomem *zfw_ctrl;
3215 struct BOARD_CTRL __iomem *board_ctrl;
3216 struct CH_CTRL __iomem *ch_ctrl;
3217 struct BUF_CTRL __iomem *buf_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07003218 __u32 sw_flow;
Jiri Slaby02f11752006-12-08 02:39:28 -08003219 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
Jiri Slaby875b2062007-05-08 00:36:49 -07003221 firm_id = card->base_addr + ID_ADDRESS;
Jiri Slaby2693f482009-06-11 12:31:06 +01003222 if (!cyz_is_loaded(card))
Jiri Slaby02f11752006-12-08 02:39:28 -08003223 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
Jiri Slaby875b2062007-05-08 00:36:49 -07003225 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003226 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003227 board_ctrl = &zfw_ctrl->board_ctrl;
3228 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
3229 buf_ctrl = &zfw_ctrl->buf_ctrl[channel];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
Jiri Slaby02f11752006-12-08 02:39:28 -08003231 /* baud rate */
Alan Cox77451e52008-07-16 21:57:02 +01003232 baud = tty_get_baud_rate(info->port.tty);
3233 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08003234 ASYNC_SPD_CUST) {
3235 if (info->custom_divisor)
3236 baud_rate = info->baud / info->custom_divisor;
3237 else
3238 baud_rate = info->baud;
3239 } else if (baud > CYZ_MAX_SPEED) {
3240 baud = CYZ_MAX_SPEED;
3241 }
3242 cy_writel(&ch_ctrl->comm_baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
Jiri Slaby02f11752006-12-08 02:39:28 -08003244 if (baud == 134) {
3245 /* get it right for 134.5 baud */
3246 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
3247 2;
Alan Cox77451e52008-07-16 21:57:02 +01003248 } else if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08003249 ASYNC_SPD_CUST) {
3250 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3251 baud_rate) + 2;
3252 } else if (baud) {
3253 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3254 baud) + 2;
3255 /* this needs to be propagated into the card info */
3256 } else {
3257 info->timeout = 0;
3258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Jiri Slaby02f11752006-12-08 02:39:28 -08003260 /* byte size and parity */
3261 switch (cflag & CSIZE) {
3262 case CS5:
3263 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS5);
3264 break;
3265 case CS6:
3266 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS6);
3267 break;
3268 case CS7:
3269 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS7);
3270 break;
3271 case CS8:
3272 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS8);
3273 break;
3274 }
3275 if (cflag & CSTOPB) {
3276 cy_writel(&ch_ctrl->comm_data_l,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003277 readl(&ch_ctrl->comm_data_l) | C_DL_2STOP);
Jiri Slaby02f11752006-12-08 02:39:28 -08003278 } else {
3279 cy_writel(&ch_ctrl->comm_data_l,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003280 readl(&ch_ctrl->comm_data_l) | C_DL_1STOP);
Jiri Slaby02f11752006-12-08 02:39:28 -08003281 }
3282 if (cflag & PARENB) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07003283 if (cflag & PARODD)
Jiri Slaby02f11752006-12-08 02:39:28 -08003284 cy_writel(&ch_ctrl->comm_parity, C_PR_ODD);
Alan Cox15ed6cc2008-04-30 00:53:55 -07003285 else
Jiri Slaby02f11752006-12-08 02:39:28 -08003286 cy_writel(&ch_ctrl->comm_parity, C_PR_EVEN);
Alan Cox15ed6cc2008-04-30 00:53:55 -07003287 } else
Jiri Slaby02f11752006-12-08 02:39:28 -08003288 cy_writel(&ch_ctrl->comm_parity, C_PR_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
Jiri Slaby02f11752006-12-08 02:39:28 -08003290 /* CTS flow control flag */
3291 if (cflag & CRTSCTS) {
3292 cy_writel(&ch_ctrl->hw_flow,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003293 readl(&ch_ctrl->hw_flow) | C_RS_CTS | C_RS_RTS);
Jiri Slaby02f11752006-12-08 02:39:28 -08003294 } else {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003295 cy_writel(&ch_ctrl->hw_flow, readl(&ch_ctrl->hw_flow) &
3296 ~(C_RS_CTS | C_RS_RTS));
Jiri Slaby02f11752006-12-08 02:39:28 -08003297 }
3298 /* As the HW flow control is done in firmware, the driver
3299 doesn't need to care about it */
Alan Cox77451e52008-07-16 21:57:02 +01003300 info->port.flags &= ~ASYNC_CTS_FLOW;
Jiri Slaby02f11752006-12-08 02:39:28 -08003301
3302 /* XON/XOFF/XANY flow control flags */
3303 sw_flow = 0;
3304 if (iflag & IXON) {
3305 sw_flow |= C_FL_OXX;
3306 if (iflag & IXANY)
3307 sw_flow |= C_FL_OIXANY;
3308 }
3309 cy_writel(&ch_ctrl->sw_flow, sw_flow);
3310
Jiri Slaby875b2062007-05-08 00:36:49 -07003311 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003312 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003313 printk(KERN_ERR "cyc:set_line_char retval on ttyC%d "
3314 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003315 }
3316
3317 /* CD sensitivity */
Alan Cox15ed6cc2008-04-30 00:53:55 -07003318 if (cflag & CLOCAL)
Alan Cox77451e52008-07-16 21:57:02 +01003319 info->port.flags &= ~ASYNC_CHECK_CD;
Alan Cox15ed6cc2008-04-30 00:53:55 -07003320 else
Alan Cox77451e52008-07-16 21:57:02 +01003321 info->port.flags |= ASYNC_CHECK_CD;
Jiri Slaby02f11752006-12-08 02:39:28 -08003322
3323 if (baud == 0) { /* baud rate is zero, turn off line */
3324 cy_writel(&ch_ctrl->rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003325 readl(&ch_ctrl->rs_control) & ~C_RS_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003327 printk(KERN_DEBUG "cyc:set_line_char dropping Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003329 } else {
3330 cy_writel(&ch_ctrl->rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003331 readl(&ch_ctrl->rs_control) | C_RS_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003333 printk(KERN_DEBUG "cyc:set_line_char raising Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
Alan Cox15ed6cc2008-04-30 00:53:55 -07003337 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003338 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003339 printk(KERN_ERR "cyc:set_line_char(2) retval on ttyC%d "
3340 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
Alan Cox77451e52008-07-16 21:57:02 +01003343 if (info->port.tty)
3344 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003346} /* set_line_char */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
3348static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003349get_serial_info(struct cyclades_port *info,
Alan Cox15ed6cc2008-04-30 00:53:55 -07003350 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351{
Jiri Slaby02f11752006-12-08 02:39:28 -08003352 struct serial_struct tmp;
Jiri Slaby875b2062007-05-08 00:36:49 -07003353 struct cyclades_card *cinfo = info->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
Jiri Slaby02f11752006-12-08 02:39:28 -08003355 if (!retinfo)
3356 return -EFAULT;
3357 memset(&tmp, 0, sizeof(tmp));
3358 tmp.type = info->type;
3359 tmp.line = info->line;
Jiri Slaby875b2062007-05-08 00:36:49 -07003360 tmp.port = (info->card - cy_card) * 0x100 + info->line -
3361 cinfo->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08003362 tmp.irq = cinfo->irq;
Alan Cox77451e52008-07-16 21:57:02 +01003363 tmp.flags = info->port.flags;
Alan Cox44b7d1b2008-07-16 21:57:18 +01003364 tmp.close_delay = info->port.close_delay;
3365 tmp.closing_wait = info->port.closing_wait;
Jiri Slaby02f11752006-12-08 02:39:28 -08003366 tmp.baud_base = info->baud;
3367 tmp.custom_divisor = info->custom_divisor;
3368 tmp.hub6 = 0; /*!!! */
3369 return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
3370} /* get_serial_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
3372static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003373set_serial_info(struct cyclades_port *info,
Alan Cox15ed6cc2008-04-30 00:53:55 -07003374 struct serial_struct __user *new_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375{
Jiri Slaby02f11752006-12-08 02:39:28 -08003376 struct serial_struct new_serial;
3377 struct cyclades_port old_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
Jiri Slaby02f11752006-12-08 02:39:28 -08003379 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
3380 return -EFAULT;
3381 old_info = *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
Jiri Slaby02f11752006-12-08 02:39:28 -08003383 if (!capable(CAP_SYS_ADMIN)) {
Alan Cox44b7d1b2008-07-16 21:57:18 +01003384 if (new_serial.close_delay != info->port.close_delay ||
Jiri Slaby02f11752006-12-08 02:39:28 -08003385 new_serial.baud_base != info->baud ||
3386 (new_serial.flags & ASYNC_FLAGS &
3387 ~ASYNC_USR_MASK) !=
Alan Cox77451e52008-07-16 21:57:02 +01003388 (info->port.flags & ASYNC_FLAGS & ~ASYNC_USR_MASK))
Jiri Slaby02f11752006-12-08 02:39:28 -08003389 return -EPERM;
Alan Cox77451e52008-07-16 21:57:02 +01003390 info->port.flags = (info->port.flags & ~ASYNC_USR_MASK) |
Jiri Slaby02f11752006-12-08 02:39:28 -08003391 (new_serial.flags & ASYNC_USR_MASK);
3392 info->baud = new_serial.baud_base;
3393 info->custom_divisor = new_serial.custom_divisor;
3394 goto check_and_exit;
3395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Jiri Slaby02f11752006-12-08 02:39:28 -08003397 /*
3398 * OK, past this point, all the error checking has been done.
3399 * At this point, we start making changes.....
3400 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
Jiri Slaby02f11752006-12-08 02:39:28 -08003402 info->baud = new_serial.baud_base;
3403 info->custom_divisor = new_serial.custom_divisor;
Alan Cox77451e52008-07-16 21:57:02 +01003404 info->port.flags = (info->port.flags & ~ASYNC_FLAGS) |
Jiri Slaby02f11752006-12-08 02:39:28 -08003405 (new_serial.flags & ASYNC_FLAGS);
Alan Cox44b7d1b2008-07-16 21:57:18 +01003406 info->port.close_delay = new_serial.close_delay * HZ / 100;
3407 info->port.closing_wait = new_serial.closing_wait * HZ / 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
3409check_and_exit:
Alan Cox77451e52008-07-16 21:57:02 +01003410 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003411 set_line_char(info);
3412 return 0;
3413 } else {
3414 return startup(info);
3415 }
3416} /* set_serial_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
3418/*
3419 * get_lsr_info - get line status register info
3420 *
3421 * Purpose: Let user call ioctl() to get info when the UART physically
3422 * is emptied. On bus types like RS485, the transmitter must
3423 * release the bus after transmitting. This must be done when
3424 * the transmit shift register is empty, not be done when the
3425 * transmit holding register is empty. This functionality
3426 * allows an RS485 driver to be written in user space.
3427 */
Alan Cox15ed6cc2008-04-30 00:53:55 -07003428static int get_lsr_info(struct cyclades_port *info, unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429{
Jiri Slaby875b2062007-05-08 00:36:49 -07003430 struct cyclades_card *card;
3431 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003432 unsigned char status;
3433 unsigned int result;
3434 unsigned long flags;
3435 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Jiri Slaby02f11752006-12-08 02:39:28 -08003437 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003438 channel = (info->line) - (card->first_line);
Jiri Slaby2693f482009-06-11 12:31:06 +01003439 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003440 chip = channel >> 2;
3441 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003442 index = card->bus_index;
3443 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003445 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003446 status = readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08003447 (CyTxRdy | CyTxMpty);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003448 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003449 result = (status ? 0 : TIOCSER_TEMT);
3450 } else {
3451 /* Not supported yet */
3452 return -EINVAL;
3453 }
3454 return put_user(result, (unsigned long __user *)value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455}
3456
Jiri Slaby02f11752006-12-08 02:39:28 -08003457static int cy_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003459 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07003460 struct cyclades_card *card;
3461 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003462 void __iomem *base_addr;
3463 unsigned long flags;
3464 unsigned char status;
3465 unsigned long lstatus;
3466 unsigned int result;
3467 struct FIRM_ID __iomem *firm_id;
3468 struct ZFW_CTRL __iomem *zfw_ctrl;
3469 struct BOARD_CTRL __iomem *board_ctrl;
3470 struct CH_CTRL __iomem *ch_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Harvey Harrisonbf9d8922008-04-30 00:55:10 -07003472 if (serial_paranoia_check(info, tty->name, __func__))
Jiri Slaby02f11752006-12-08 02:39:28 -08003473 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Alan Cox7b130c02008-04-30 00:53:16 -07003475 lock_kernel();
3476
Jiri Slaby02f11752006-12-08 02:39:28 -08003477 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003478 channel = info->line - card->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01003479 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003480 chip = channel >> 2;
3481 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003482 index = card->bus_index;
3483 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003485 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003486 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003487 status = readb(base_addr + (CyMSVR1 << index));
3488 status |= readb(base_addr + (CyMSVR2 << index));
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003489 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
Jiri Slaby02f11752006-12-08 02:39:28 -08003491 if (info->rtsdtr_inv) {
3492 result = ((status & CyRTS) ? TIOCM_DTR : 0) |
3493 ((status & CyDTR) ? TIOCM_RTS : 0);
3494 } else {
3495 result = ((status & CyRTS) ? TIOCM_RTS : 0) |
3496 ((status & CyDTR) ? TIOCM_DTR : 0);
3497 }
3498 result |= ((status & CyDCD) ? TIOCM_CAR : 0) |
3499 ((status & CyRI) ? TIOCM_RNG : 0) |
3500 ((status & CyDSR) ? TIOCM_DSR : 0) |
3501 ((status & CyCTS) ? TIOCM_CTS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 } else {
Jiri Slaby875b2062007-05-08 00:36:49 -07003503 base_addr = card->base_addr;
3504 firm_id = card->base_addr + ID_ADDRESS;
Jiri Slaby2693f482009-06-11 12:31:06 +01003505 if (cyz_is_loaded(card)) {
Jiri Slaby875b2062007-05-08 00:36:49 -07003506 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003507 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003508 board_ctrl = &zfw_ctrl->board_ctrl;
3509 ch_ctrl = zfw_ctrl->ch_ctrl;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003510 lstatus = readl(&ch_ctrl[channel].rs_status);
Jiri Slaby02f11752006-12-08 02:39:28 -08003511 result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) |
3512 ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) |
3513 ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) |
3514 ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) |
3515 ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) |
3516 ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0);
3517 } else {
3518 result = 0;
Alan Cox7b130c02008-04-30 00:53:16 -07003519 unlock_kernel();
Jiri Slaby02f11752006-12-08 02:39:28 -08003520 return -ENODEV;
3521 }
3522
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 }
Alan Cox7b130c02008-04-30 00:53:16 -07003524 unlock_kernel();
Jiri Slaby02f11752006-12-08 02:39:28 -08003525 return result;
3526} /* cy_tiomget */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
3528static int
3529cy_tiocmset(struct tty_struct *tty, struct file *file,
Jiri Slaby02f11752006-12-08 02:39:28 -08003530 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003532 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07003533 struct cyclades_card *card;
3534 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003535 void __iomem *base_addr;
3536 unsigned long flags;
3537 struct FIRM_ID __iomem *firm_id;
3538 struct ZFW_CTRL __iomem *zfw_ctrl;
3539 struct BOARD_CTRL __iomem *board_ctrl;
3540 struct CH_CTRL __iomem *ch_ctrl;
3541 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Harvey Harrisonbf9d8922008-04-30 00:55:10 -07003543 if (serial_paranoia_check(info, tty->name, __func__))
Jiri Slaby02f11752006-12-08 02:39:28 -08003544 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
Jiri Slaby02f11752006-12-08 02:39:28 -08003546 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003547 channel = (info->line) - (card->first_line);
Jiri Slaby2693f482009-06-11 12:31:06 +01003548 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003549 chip = channel >> 2;
3550 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003551 index = card->bus_index;
3552 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
Jiri Slaby02f11752006-12-08 02:39:28 -08003554 if (set & TIOCM_RTS) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003555 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003556 cy_writeb(base_addr + (CyCAR << index),
3557 (u_char) channel);
3558 if (info->rtsdtr_inv) {
3559 cy_writeb(base_addr + (CyMSVR2 << index),
3560 CyDTR);
3561 } else {
3562 cy_writeb(base_addr + (CyMSVR1 << index),
3563 CyRTS);
3564 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003565 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003566 }
3567 if (clear & TIOCM_RTS) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003568 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003569 cy_writeb(base_addr + (CyCAR << index),
3570 (u_char) channel);
3571 if (info->rtsdtr_inv) {
3572 cy_writeb(base_addr + (CyMSVR2 << index),
3573 ~CyDTR);
3574 } else {
3575 cy_writeb(base_addr + (CyMSVR1 << index),
3576 ~CyRTS);
3577 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003578 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003579 }
3580 if (set & TIOCM_DTR) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003581 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003582 cy_writeb(base_addr + (CyCAR << index),
3583 (u_char) channel);
3584 if (info->rtsdtr_inv) {
3585 cy_writeb(base_addr + (CyMSVR1 << index),
3586 CyRTS);
3587 } else {
3588 cy_writeb(base_addr + (CyMSVR2 << index),
3589 CyDTR);
3590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003592 printk(KERN_DEBUG "cyc:set_modem_info raising DTR\n");
3593 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003594 readb(base_addr + (CyMSVR1 << index)),
3595 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003597 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003598 }
3599 if (clear & TIOCM_DTR) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003600 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003601 cy_writeb(base_addr + (CyCAR << index),
3602 (u_char) channel);
3603 if (info->rtsdtr_inv) {
3604 cy_writeb(base_addr + (CyMSVR1 << index),
3605 ~CyRTS);
3606 } else {
3607 cy_writeb(base_addr + (CyMSVR2 << index),
3608 ~CyDTR);
3609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
3611#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003612 printk(KERN_DEBUG "cyc:set_modem_info dropping DTR\n");
3613 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003614 readb(base_addr + (CyMSVR1 << index)),
3615 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003617 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003618 }
3619 } else {
Jiri Slaby875b2062007-05-08 00:36:49 -07003620 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08003621
Jiri Slaby875b2062007-05-08 00:36:49 -07003622 firm_id = card->base_addr + ID_ADDRESS;
Jiri Slaby2693f482009-06-11 12:31:06 +01003623 if (cyz_is_loaded(card)) {
Jiri Slaby875b2062007-05-08 00:36:49 -07003624 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003625 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003626 board_ctrl = &zfw_ctrl->board_ctrl;
3627 ch_ctrl = zfw_ctrl->ch_ctrl;
3628
3629 if (set & TIOCM_RTS) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003630 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003631 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003632 readl(&ch_ctrl[channel].rs_control) |
3633 C_RS_RTS);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003634 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003635 }
3636 if (clear & TIOCM_RTS) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003637 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003638 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003639 readl(&ch_ctrl[channel].rs_control) &
3640 ~C_RS_RTS);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003641 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003642 }
3643 if (set & TIOCM_DTR) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003644 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003645 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003646 readl(&ch_ctrl[channel].rs_control) |
3647 C_RS_DTR);
Jiri Slaby02f11752006-12-08 02:39:28 -08003648#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003649 printk(KERN_DEBUG "cyc:set_modem_info raising "
3650 "Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08003651#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003652 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003653 }
3654 if (clear & TIOCM_DTR) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003655 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003656 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003657 readl(&ch_ctrl[channel].rs_control) &
3658 ~C_RS_DTR);
Jiri Slaby02f11752006-12-08 02:39:28 -08003659#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003660 printk(KERN_DEBUG "cyc:set_modem_info clearing "
3661 "Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08003662#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003663 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003664 }
3665 } else {
3666 return -ENODEV;
3667 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003668 spin_lock_irqsave(&card->card_lock, flags);
3669 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003670 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003671 printk(KERN_ERR "cyc:set_modem_info retval on ttyC%d "
3672 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003673 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003674 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003676 return 0;
3677} /* cy_tiocmset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
3679/*
3680 * cy_break() --- routine which turns the break handling on or off
3681 */
Alan Cox9e989662008-07-22 11:18:03 +01003682static int cy_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003684 struct cyclades_port *info = tty->driver_data;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003685 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003686 unsigned long flags;
Alan Cox9e989662008-07-22 11:18:03 +01003687 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Jiri Slaby02f11752006-12-08 02:39:28 -08003689 if (serial_paranoia_check(info, tty->name, "cy_break"))
Alan Cox9e989662008-07-22 11:18:03 +01003690 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003692 card = info->card;
3693
3694 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby2693f482009-06-11 12:31:06 +01003695 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003696 /* Let the transmit ISR take care of this (since it
3697 requires stuffing characters into the output stream).
3698 */
3699 if (break_state == -1) {
3700 if (!info->breakon) {
3701 info->breakon = 1;
3702 if (!info->xmit_cnt) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003703 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003704 start_xmit(info);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003705 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003706 }
3707 }
3708 } else {
3709 if (!info->breakoff) {
3710 info->breakoff = 1;
3711 if (!info->xmit_cnt) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003712 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003713 start_xmit(info);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003714 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003715 }
3716 }
3717 }
3718 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08003719 if (break_state == -1) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003720 retval = cyz_issue_cmd(card,
3721 info->line - card->first_line,
Jiri Slaby02f11752006-12-08 02:39:28 -08003722 C_CM_SET_BREAK, 0L);
3723 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003724 printk(KERN_ERR "cyc:cy_break (set) retval on "
3725 "ttyC%d was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003726 }
3727 } else {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003728 retval = cyz_issue_cmd(card,
3729 info->line - card->first_line,
Jiri Slaby02f11752006-12-08 02:39:28 -08003730 C_CM_CLR_BREAK, 0L);
3731 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003732 printk(KERN_DEBUG "cyc:cy_break (clr) retval "
3733 "on ttyC%d was %x\n", info->line,
3734 retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003735 }
3736 }
3737 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003738 spin_unlock_irqrestore(&card->card_lock, flags);
Alan Cox9e989662008-07-22 11:18:03 +01003739 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08003740} /* cy_break */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
Alan Cox15ed6cc2008-04-30 00:53:55 -07003742static int get_mon_info(struct cyclades_port *info,
3743 struct cyclades_monitor __user *mon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745
Jiri Slaby02f11752006-12-08 02:39:28 -08003746 if (copy_to_user(mon, &info->mon, sizeof(struct cyclades_monitor)))
3747 return -EFAULT;
3748 info->mon.int_count = 0;
3749 info->mon.char_count = 0;
3750 info->mon.char_max = 0;
3751 info->mon.char_last = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003753} /* get_mon_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
Jiri Slaby02f11752006-12-08 02:39:28 -08003755static int set_threshold(struct cyclades_port *info, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756{
Jiri Slaby875b2062007-05-08 00:36:49 -07003757 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003758 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003759 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003760 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Jiri Slaby02f11752006-12-08 02:39:28 -08003762 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003763 channel = info->line - card->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01003764 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003765 chip = channel >> 2;
3766 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003767 index = card->bus_index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003768 base_addr =
Jiri Slaby875b2062007-05-08 00:36:49 -07003769 card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
Jiri Slaby02f11752006-12-08 02:39:28 -08003771 info->cor3 &= ~CyREC_FIFO;
3772 info->cor3 |= value & CyREC_FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003774 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003775 cy_writeb(base_addr + (CyCOR3 << index), info->cor3);
3776 cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR3ch, index);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003777 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003780} /* set_threshold */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781
Alan Cox15ed6cc2008-04-30 00:53:55 -07003782static int get_threshold(struct cyclades_port *info,
3783 unsigned long __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784{
Jiri Slaby875b2062007-05-08 00:36:49 -07003785 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003786 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003787 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003788 unsigned long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
Jiri Slaby02f11752006-12-08 02:39:28 -08003790 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003791 channel = info->line - card->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01003792 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003793 chip = channel >> 2;
3794 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003795 index = card->bus_index;
3796 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003797
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003798 tmp = readb(base_addr + (CyCOR3 << index)) & CyREC_FIFO;
Jiri Slaby02f11752006-12-08 02:39:28 -08003799 return put_user(tmp, value);
Jiri Slaby02f11752006-12-08 02:39:28 -08003800 }
Jiri Slabyf7429032007-05-08 00:36:59 -07003801 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003802} /* get_threshold */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
Alan Cox15ed6cc2008-04-30 00:53:55 -07003804static int set_default_threshold(struct cyclades_port *info,
3805 unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806{
Jiri Slaby02f11752006-12-08 02:39:28 -08003807 info->default_threshold = value & 0x0f;
3808 return 0;
3809} /* set_default_threshold */
3810
Alan Cox15ed6cc2008-04-30 00:53:55 -07003811static int get_default_threshold(struct cyclades_port *info,
3812 unsigned long __user *value)
Jiri Slaby02f11752006-12-08 02:39:28 -08003813{
3814 return put_user(info->default_threshold, value);
3815} /* get_default_threshold */
3816
3817static int set_timeout(struct cyclades_port *info, unsigned long value)
3818{
Jiri Slaby875b2062007-05-08 00:36:49 -07003819 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003820 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003821 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003822 unsigned long flags;
3823
3824 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003825 channel = info->line - card->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01003826 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003827 chip = channel >> 2;
3828 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003829 index = card->bus_index;
3830 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003831
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003832 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003833 cy_writeb(base_addr + (CyRTPR << index), value & 0xff);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003834 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003835 }
3836 return 0;
3837} /* set_timeout */
3838
Alan Cox15ed6cc2008-04-30 00:53:55 -07003839static int get_timeout(struct cyclades_port *info,
3840 unsigned long __user *value)
Jiri Slaby02f11752006-12-08 02:39:28 -08003841{
Jiri Slaby875b2062007-05-08 00:36:49 -07003842 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003843 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003844 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003845 unsigned long tmp;
3846
3847 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003848 channel = info->line - card->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01003849 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003850 chip = channel >> 2;
3851 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003852 index = card->bus_index;
3853 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003854
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003855 tmp = readb(base_addr + (CyRTPR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08003856 return put_user(tmp, value);
Jiri Slaby02f11752006-12-08 02:39:28 -08003857 }
Jiri Slabyf7429032007-05-08 00:36:59 -07003858 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003859} /* get_timeout */
3860
3861static int set_default_timeout(struct cyclades_port *info, unsigned long value)
3862{
3863 info->default_timeout = value & 0xff;
3864 return 0;
3865} /* set_default_timeout */
3866
Alan Cox15ed6cc2008-04-30 00:53:55 -07003867static int get_default_timeout(struct cyclades_port *info,
3868 unsigned long __user *value)
Jiri Slaby02f11752006-12-08 02:39:28 -08003869{
3870 return put_user(info->default_timeout, value);
3871} /* get_default_timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
3873/*
3874 * This routine allows the tty driver to implement device-
3875 * specific ioctl's. If the ioctl number passed in cmd is
3876 * not recognized by the driver, it should return ENOIOCTLCMD.
3877 */
3878static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003879cy_ioctl(struct tty_struct *tty, struct file *file,
3880 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003882 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08003883 struct cyclades_icount cprev, cnow; /* kernel counter temps */
3884 struct serial_icounter_struct __user *p_cuser; /* user space */
3885 int ret_val = 0;
3886 unsigned long flags;
3887 void __user *argp = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Jiri Slaby02f11752006-12-08 02:39:28 -08003889 if (serial_paranoia_check(info, tty->name, "cy_ioctl"))
3890 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
3892#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07003893 printk(KERN_DEBUG "cyc:cy_ioctl ttyC%d, cmd = %x arg = %lx\n",
3894 info->line, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895#endif
Alan Cox7b130c02008-04-30 00:53:16 -07003896 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
Jiri Slaby02f11752006-12-08 02:39:28 -08003898 switch (cmd) {
3899 case CYGETMON:
3900 ret_val = get_mon_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08003902 case CYGETTHRESH:
3903 ret_val = get_threshold(info, argp);
3904 break;
3905 case CYSETTHRESH:
3906 ret_val = set_threshold(info, arg);
3907 break;
3908 case CYGETDEFTHRESH:
3909 ret_val = get_default_threshold(info, argp);
3910 break;
3911 case CYSETDEFTHRESH:
3912 ret_val = set_default_threshold(info, arg);
3913 break;
3914 case CYGETTIMEOUT:
3915 ret_val = get_timeout(info, argp);
3916 break;
3917 case CYSETTIMEOUT:
3918 ret_val = set_timeout(info, arg);
3919 break;
3920 case CYGETDEFTIMEOUT:
3921 ret_val = get_default_timeout(info, argp);
3922 break;
3923 case CYSETDEFTIMEOUT:
3924 ret_val = set_default_timeout(info, arg);
3925 break;
3926 case CYSETRFLOW:
3927 info->rflow = (int)arg;
3928 ret_val = 0;
3929 break;
3930 case CYGETRFLOW:
3931 ret_val = info->rflow;
3932 break;
3933 case CYSETRTSDTR_INV:
3934 info->rtsdtr_inv = (int)arg;
3935 ret_val = 0;
3936 break;
3937 case CYGETRTSDTR_INV:
3938 ret_val = info->rtsdtr_inv;
3939 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 case CYGETCD1400VER:
Jiri Slaby02f11752006-12-08 02:39:28 -08003941 ret_val = info->chip_rev;
3942 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943#ifndef CONFIG_CYZ_INTR
3944 case CYZSETPOLLCYCLE:
Jiri Slaby02f11752006-12-08 02:39:28 -08003945 cyz_polling_cycle = (arg * HZ) / 1000;
3946 ret_val = 0;
3947 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 case CYZGETPOLLCYCLE:
Jiri Slaby02f11752006-12-08 02:39:28 -08003949 ret_val = (cyz_polling_cycle * 1000) / HZ;
3950 break;
3951#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 case CYSETWAIT:
Alan Cox44b7d1b2008-07-16 21:57:18 +01003953 info->port.closing_wait = (unsigned short)arg * HZ / 100;
Jiri Slaby02f11752006-12-08 02:39:28 -08003954 ret_val = 0;
3955 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 case CYGETWAIT:
Alan Cox44b7d1b2008-07-16 21:57:18 +01003957 ret_val = info->port.closing_wait / (HZ / 100);
Jiri Slaby02f11752006-12-08 02:39:28 -08003958 break;
3959 case TIOCGSERIAL:
3960 ret_val = get_serial_info(info, argp);
3961 break;
3962 case TIOCSSERIAL:
3963 ret_val = set_serial_info(info, argp);
3964 break;
3965 case TIOCSERGETLSR: /* Get line status register */
3966 ret_val = get_lsr_info(info, argp);
3967 break;
3968 /*
3969 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
3970 * - mask passed in arg for lines of interest
3971 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
3972 * Caller should use TIOCGICOUNT to see which one it was
3973 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 case TIOCMIWAIT:
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003975 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003976 /* note the counters on entry */
Jiri Slaby2c7fea92007-05-08 00:36:51 -07003977 cnow = info->icount;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003978 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07003979 ret_val = wait_event_interruptible(info->delta_msr_wait, ({
3980 cprev = cnow;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003981 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003982 cnow = info->icount; /* atomic copy */
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003983 spin_unlock_irqrestore(&info->card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
Jiri Slaby2c7fea92007-05-08 00:36:51 -07003985 ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
3986 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
3987 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
3988 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts));
3989 }));
3990 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08003991
3992 /*
3993 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
3994 * Return: write counters to the user passed counter struct
3995 * NB: both 1->0 and 0->1 transitions are counted except for
3996 * RI where only 0->1 is counted.
3997 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 case TIOCGICOUNT:
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003999 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004000 cnow = info->icount;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004001 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004002 p_cuser = argp;
4003 ret_val = put_user(cnow.cts, &p_cuser->cts);
4004 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004005 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004006 ret_val = put_user(cnow.dsr, &p_cuser->dsr);
4007 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004008 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004009 ret_val = put_user(cnow.rng, &p_cuser->rng);
4010 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004011 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004012 ret_val = put_user(cnow.dcd, &p_cuser->dcd);
4013 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004014 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004015 ret_val = put_user(cnow.rx, &p_cuser->rx);
4016 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004017 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004018 ret_val = put_user(cnow.tx, &p_cuser->tx);
4019 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004020 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004021 ret_val = put_user(cnow.frame, &p_cuser->frame);
4022 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004023 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004024 ret_val = put_user(cnow.overrun, &p_cuser->overrun);
4025 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004026 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004027 ret_val = put_user(cnow.parity, &p_cuser->parity);
4028 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004029 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004030 ret_val = put_user(cnow.brk, &p_cuser->brk);
4031 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004032 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004033 ret_val = put_user(cnow.buf_overrun, &p_cuser->buf_overrun);
4034 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004035 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004036 ret_val = 0;
4037 break;
4038 default:
4039 ret_val = -ENOIOCTLCMD;
4040 }
Alan Cox7b130c02008-04-30 00:53:16 -07004041 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042
4043#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004044 printk(KERN_DEBUG "cyc:cy_ioctl done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004046 return ret_val;
4047} /* cy_ioctl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
4049/*
4050 * This routine allows the tty driver to be notified when
4051 * device's termios settings have changed. Note that a
4052 * well-designed tty driver should be prepared to accept the case
4053 * where old == NULL, and try to do something rational.
4054 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004055static void cy_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004057 struct cyclades_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
4059#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004060 printk(KERN_DEBUG "cyc:cy_set_termios ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061#endif
4062
Jiri Slaby02f11752006-12-08 02:39:28 -08004063 set_line_char(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Jiri Slaby02f11752006-12-08 02:39:28 -08004065 if ((old_termios->c_cflag & CRTSCTS) &&
4066 !(tty->termios->c_cflag & CRTSCTS)) {
4067 tty->hw_stopped = 0;
4068 cy_start(tty);
4069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070#if 0
Jiri Slaby02f11752006-12-08 02:39:28 -08004071 /*
4072 * No need to wake up processes in open wait, since they
4073 * sample the CLOCAL flag once, and don't recheck it.
4074 * XXX It's not clear whether the current behavior is correct
4075 * or not. Hence, this may change.....
4076 */
4077 if (!(old_termios->c_cflag & CLOCAL) &&
4078 (tty->termios->c_cflag & CLOCAL))
Alan Cox77451e52008-07-16 21:57:02 +01004079 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004081} /* cy_set_termios */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
4083/* This function is used to send a high-priority XON/XOFF character to
4084 the device.
4085*/
Jiri Slaby02f11752006-12-08 02:39:28 -08004086static void cy_send_xchar(struct tty_struct *tty, char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004088 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004089 struct cyclades_card *card;
4090 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
Jiri Slaby02f11752006-12-08 02:39:28 -08004092 if (serial_paranoia_check(info, tty->name, "cy_send_xchar"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 return;
4094
Jiri Slaby02f11752006-12-08 02:39:28 -08004095 info->x_char = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
4097 if (ch)
Jiri Slaby02f11752006-12-08 02:39:28 -08004098 cy_start(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
4100 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07004101 channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
Jiri Slaby2693f482009-06-11 12:31:06 +01004103 if (cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004104 if (ch == STOP_CHAR(tty))
Jiri Slaby875b2062007-05-08 00:36:49 -07004105 cyz_issue_cmd(card, channel, C_CM_SENDXOFF, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08004106 else if (ch == START_CHAR(tty))
Jiri Slaby875b2062007-05-08 00:36:49 -07004107 cyz_issue_cmd(card, channel, C_CM_SENDXON, 0L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 }
4109}
4110
4111/* This routine is called by the upper-layer tty layer to signal
4112 that incoming characters should be throttled because the input
4113 buffers are close to full.
4114 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004115static void cy_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004117 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004118 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004119 unsigned long flags;
4120 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07004121 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
4123#ifdef CY_DEBUG_THROTTLE
Jiri Slaby02f11752006-12-08 02:39:28 -08004124 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
Jiri Slaby21719192007-05-08 00:36:42 -07004126 printk(KERN_DEBUG "cyc:throttle %s: %ld...ttyC%d\n", tty_name(tty, buf),
Jiri Slaby02f11752006-12-08 02:39:28 -08004127 tty->ldisc.chars_in_buffer(tty), info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128#endif
4129
Alan Cox15ed6cc2008-04-30 00:53:55 -07004130 if (serial_paranoia_check(info, tty->name, "cy_throttle"))
Jiri Slaby02f11752006-12-08 02:39:28 -08004131 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
Jiri Slaby02f11752006-12-08 02:39:28 -08004133 card = info->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
Jiri Slaby02f11752006-12-08 02:39:28 -08004135 if (I_IXOFF(tty)) {
Jiri Slaby2693f482009-06-11 12:31:06 +01004136 if (!cy_is_Z(card))
Jiri Slaby02f11752006-12-08 02:39:28 -08004137 cy_send_xchar(tty, STOP_CHAR(tty));
4138 else
4139 info->throttle = 1;
4140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141
Jiri Slaby02f11752006-12-08 02:39:28 -08004142 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby875b2062007-05-08 00:36:49 -07004143 channel = info->line - card->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01004144 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004145 chip = channel >> 2;
4146 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07004147 index = card->bus_index;
4148 base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004149 (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004151 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004152 cy_writeb(base_addr + (CyCAR << index),
4153 (u_char) channel);
4154 if (info->rtsdtr_inv) {
4155 cy_writeb(base_addr + (CyMSVR2 << index),
4156 ~CyDTR);
4157 } else {
4158 cy_writeb(base_addr + (CyMSVR1 << index),
4159 ~CyRTS);
4160 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004161 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004162 } else {
4163 info->throttle = 1;
4164 }
4165 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004166} /* cy_throttle */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
4168/*
4169 * This routine notifies the tty driver that it should signal
4170 * that characters can now be sent to the tty without fear of
4171 * overrunning the input buffers of the line disciplines.
4172 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004173static void cy_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004175 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004176 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004177 unsigned long flags;
4178 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07004179 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
4181#ifdef CY_DEBUG_THROTTLE
Jiri Slaby02f11752006-12-08 02:39:28 -08004182 char buf[64];
4183
Jiri Slaby21719192007-05-08 00:36:42 -07004184 printk(KERN_DEBUG "cyc:unthrottle %s: %ld...ttyC%d\n",
Alan Cox15ed6cc2008-04-30 00:53:55 -07004185 tty_name(tty, buf), tty_chars_in_buffer(tty), info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186#endif
4187
Alan Cox15ed6cc2008-04-30 00:53:55 -07004188 if (serial_paranoia_check(info, tty->name, "cy_unthrottle"))
Jiri Slaby02f11752006-12-08 02:39:28 -08004189 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Jiri Slaby02f11752006-12-08 02:39:28 -08004191 if (I_IXOFF(tty)) {
4192 if (info->x_char)
4193 info->x_char = 0;
4194 else
4195 cy_send_xchar(tty, START_CHAR(tty));
4196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Jiri Slaby02f11752006-12-08 02:39:28 -08004198 if (tty->termios->c_cflag & CRTSCTS) {
4199 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07004200 channel = info->line - card->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01004201 if (!cy_is_Z(card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004202 chip = channel >> 2;
4203 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07004204 index = card->bus_index;
4205 base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004206 (cy_chip_offset[chip] << index);
4207
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004208 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004209 cy_writeb(base_addr + (CyCAR << index),
4210 (u_char) channel);
4211 if (info->rtsdtr_inv) {
4212 cy_writeb(base_addr + (CyMSVR2 << index),
4213 CyDTR);
4214 } else {
4215 cy_writeb(base_addr + (CyMSVR1 << index),
4216 CyRTS);
4217 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004218 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004219 } else {
4220 info->throttle = 0;
4221 }
4222 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004223} /* cy_unthrottle */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
4225/* cy_start and cy_stop provide software output flow control as a
4226 function of XON/XOFF, software CTS, and other such stuff.
4227*/
Jiri Slaby02f11752006-12-08 02:39:28 -08004228static void cy_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229{
Jiri Slaby02f11752006-12-08 02:39:28 -08004230 struct cyclades_card *cinfo;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004231 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004232 void __iomem *base_addr;
4233 int chip, channel, index;
4234 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235
4236#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004237 printk(KERN_DEBUG "cyc:cy_stop ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238#endif
4239
Jiri Slaby02f11752006-12-08 02:39:28 -08004240 if (serial_paranoia_check(info, tty->name, "cy_stop"))
4241 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242
Jiri Slaby875b2062007-05-08 00:36:49 -07004243 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004244 channel = info->line - cinfo->first_line;
Jiri Slaby2693f482009-06-11 12:31:06 +01004245 if (!cy_is_Z(cinfo)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004246 index = cinfo->bus_index;
4247 chip = channel >> 2;
4248 channel &= 0x03;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004249 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004251 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004252 cy_writeb(base_addr + (CyCAR << index),
4253 (u_char)(channel & 0x0003)); /* index channel */
4254 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004255 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004256 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004258} /* cy_stop */
4259
4260static void cy_start(struct tty_struct *tty)
4261{
4262 struct cyclades_card *cinfo;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004263 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004264 void __iomem *base_addr;
4265 int chip, channel, index;
4266 unsigned long flags;
4267
4268#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004269 printk(KERN_DEBUG "cyc:cy_start ttyC%d\n", info->line);
Jiri Slaby02f11752006-12-08 02:39:28 -08004270#endif
4271
4272 if (serial_paranoia_check(info, tty->name, "cy_start"))
4273 return;
4274
Jiri Slaby875b2062007-05-08 00:36:49 -07004275 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004276 channel = info->line - cinfo->first_line;
4277 index = cinfo->bus_index;
Jiri Slaby2693f482009-06-11 12:31:06 +01004278 if (!cy_is_Z(cinfo)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004279 chip = channel >> 2;
4280 channel &= 0x03;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004281 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08004282
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004283 spin_lock_irqsave(&cinfo->card_lock, flags);
Alan Cox15ed6cc2008-04-30 00:53:55 -07004284 cy_writeb(base_addr + (CyCAR << index),
4285 (u_char) (channel & 0x0003)); /* index channel */
Jiri Slaby02f11752006-12-08 02:39:28 -08004286 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004287 readb(base_addr + (CySRER << index)) | CyTxRdy);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004288 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004289 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004290} /* cy_start */
4291
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292/*
4293 * cy_hangup() --- called by tty_hangup() when a hangup is signaled.
4294 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004295static void cy_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004297 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004298
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004300 printk(KERN_DEBUG "cyc:cy_hangup ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301#endif
4302
Jiri Slaby02f11752006-12-08 02:39:28 -08004303 if (serial_paranoia_check(info, tty->name, "cy_hangup"))
4304 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305
Jiri Slaby02f11752006-12-08 02:39:28 -08004306 cy_flush_buffer(tty);
4307 shutdown(info);
Alan Cox77451e52008-07-16 21:57:02 +01004308 info->port.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07004310 printk(KERN_DEBUG "cyc:cy_hangup (%d): setting count to 0\n",
4311 current->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312#endif
Alan Cox77451e52008-07-16 21:57:02 +01004313 info->port.tty = NULL;
4314 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
4315 wake_up_interruptible(&info->port.open_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08004316} /* cy_hangup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
4318/*
4319 * ---------------------------------------------------------------------
4320 * cy_init() and friends
4321 *
4322 * cy_init() is called at boot-time to initialize the serial driver.
4323 * ---------------------------------------------------------------------
4324 */
4325
Jiri Slabydd025c02007-05-08 00:37:02 -07004326static int __devinit cy_init_card(struct cyclades_card *cinfo)
Jiri Slaby0809e262007-05-08 00:36:14 -07004327{
4328 struct cyclades_port *info;
Jiri Slaby963118e2009-06-11 12:34:27 +01004329 unsigned int port;
Jiri Slaby0809e262007-05-08 00:36:14 -07004330 unsigned short chip_number;
Jiri Slaby0809e262007-05-08 00:36:14 -07004331
Jiri Slaby3046d502007-05-08 00:36:46 -07004332 spin_lock_init(&cinfo->card_lock);
Jiri Slaby963118e2009-06-11 12:34:27 +01004333 cinfo->intr_enabled = 0;
Jiri Slaby3046d502007-05-08 00:36:46 -07004334
Jiri Slaby963118e2009-06-11 12:34:27 +01004335 cinfo->ports = kcalloc(cinfo->nports, sizeof(*cinfo->ports),
4336 GFP_KERNEL);
Jiri Slabydd025c02007-05-08 00:37:02 -07004337 if (cinfo->ports == NULL) {
4338 printk(KERN_ERR "Cyclades: cannot allocate ports\n");
4339 return -ENOMEM;
4340 }
4341
Jiri Slaby963118e2009-06-11 12:34:27 +01004342 for (port = cinfo->first_line; port < cinfo->first_line + cinfo->nports;
Jiri Slaby3046d502007-05-08 00:36:46 -07004343 port++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07004344 info = &cinfo->ports[port - cinfo->first_line];
Alan Cox44b7d1b2008-07-16 21:57:18 +01004345 tty_port_init(&info->port);
Jiri Slaby3046d502007-05-08 00:36:46 -07004346 info->magic = CYCLADES_MAGIC;
Jiri Slaby875b2062007-05-08 00:36:49 -07004347 info->card = cinfo;
Jiri Slaby3046d502007-05-08 00:36:46 -07004348 info->line = port;
Jiri Slaby3046d502007-05-08 00:36:46 -07004349
Alan Cox44b7d1b2008-07-16 21:57:18 +01004350 info->port.closing_wait = CLOSING_WAIT_DELAY;
4351 info->port.close_delay = 5 * HZ / 10;
Alan Cox77451e52008-07-16 21:57:02 +01004352 info->port.flags = STD_COM_FLAGS;
Jiri Slaby2c7fea92007-05-08 00:36:51 -07004353 init_completion(&info->shutdown_wait);
Jiri Slaby3046d502007-05-08 00:36:46 -07004354 init_waitqueue_head(&info->delta_msr_wait);
4355
Jiri Slaby2693f482009-06-11 12:31:06 +01004356 if (cy_is_Z(cinfo)) {
Jiri Slaby0809e262007-05-08 00:36:14 -07004357 info->type = PORT_STARTECH;
Jiri Slaby101b8152009-06-11 12:30:10 +01004358 if (cinfo->hw_ver == ZO_V1)
Jiri Slaby0809e262007-05-08 00:36:14 -07004359 info->xmit_fifo_size = CYZ_FIFO_SIZE;
4360 else
Jiri Slaby3046d502007-05-08 00:36:46 -07004361 info->xmit_fifo_size = 4 * CYZ_FIFO_SIZE;
Jiri Slaby0809e262007-05-08 00:36:14 -07004362#ifdef CONFIG_CYZ_INTR
Jiri Slaby39914282007-05-08 00:36:54 -07004363 setup_timer(&cyz_rx_full_timer[port],
4364 cyz_rx_restart, (unsigned long)info);
Jiri Slaby0809e262007-05-08 00:36:14 -07004365#endif
Jiri Slaby3046d502007-05-08 00:36:46 -07004366 } else {
Jiri Slaby963118e2009-06-11 12:34:27 +01004367 int index = cinfo->bus_index;
Jiri Slaby0809e262007-05-08 00:36:14 -07004368 info->type = PORT_CIRRUS;
Jiri Slaby0809e262007-05-08 00:36:14 -07004369 info->xmit_fifo_size = CyMAX_CHAR_FIFO;
Jiri Slaby3046d502007-05-08 00:36:46 -07004370 info->cor1 = CyPARITY_NONE | Cy_1_STOP | Cy_8_BITS;
Jiri Slaby0809e262007-05-08 00:36:14 -07004371 info->cor2 = CyETC;
4372 info->cor3 = 0x08; /* _very_ small rcv threshold */
Jiri Slaby3046d502007-05-08 00:36:46 -07004373
Jiri Slaby0809e262007-05-08 00:36:14 -07004374 chip_number = (port - cinfo->first_line) / 4;
Alan Cox15ed6cc2008-04-30 00:53:55 -07004375 info->chip_rev = readb(cinfo->base_addr +
4376 (cy_chip_offset[chip_number] << index) +
4377 (CyGFRCR << index));
4378
4379 if (info->chip_rev >= CD1400_REV_J) {
Jiri Slaby0809e262007-05-08 00:36:14 -07004380 /* It is a CD1400 rev. J or later */
4381 info->tbpr = baud_bpr_60[13]; /* Tx BPR */
4382 info->tco = baud_co_60[13]; /* Tx CO */
4383 info->rbpr = baud_bpr_60[13]; /* Rx BPR */
4384 info->rco = baud_co_60[13]; /* Rx CO */
Jiri Slaby0809e262007-05-08 00:36:14 -07004385 info->rtsdtr_inv = 1;
4386 } else {
4387 info->tbpr = baud_bpr_25[13]; /* Tx BPR */
4388 info->tco = baud_co_25[13]; /* Tx CO */
4389 info->rbpr = baud_bpr_25[13]; /* Rx BPR */
4390 info->rco = baud_co_25[13]; /* Rx CO */
Jiri Slaby0809e262007-05-08 00:36:14 -07004391 info->rtsdtr_inv = 0;
4392 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004393 info->read_status_mask = CyTIMEOUT | CySPECHAR |
4394 CyBREAK | CyPARITY | CyFRAME | CyOVERRUN;
Jiri Slaby0809e262007-05-08 00:36:14 -07004395 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004396
Jiri Slaby0809e262007-05-08 00:36:14 -07004397 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004398
4399#ifndef CONFIG_CYZ_INTR
Jiri Slaby2693f482009-06-11 12:31:06 +01004400 if (cy_is_Z(cinfo) && !timer_pending(&cyz_timerlist)) {
Jiri Slaby3046d502007-05-08 00:36:46 -07004401 mod_timer(&cyz_timerlist, jiffies + 1);
4402#ifdef CY_PCI_DEBUG
4403 printk(KERN_DEBUG "Cyclades-Z polling initialized\n");
4404#endif
4405 }
4406#endif
Jiri Slabydd025c02007-05-08 00:37:02 -07004407 return 0;
Jiri Slaby0809e262007-05-08 00:36:14 -07004408}
4409
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410/* initialize chips on Cyclom-Y card -- return number of valid
4411 chips (which is number of ports/4) */
Jiri Slaby31b4f0a2007-05-08 00:36:44 -07004412static unsigned short __devinit cyy_init_card(void __iomem *true_base_addr,
4413 int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414{
Jiri Slaby02f11752006-12-08 02:39:28 -08004415 unsigned int chip_number;
4416 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417
Jiri Slaby02f11752006-12-08 02:39:28 -08004418 cy_writeb(true_base_addr + (Cy_HwReset << index), 0);
4419 /* Cy_HwReset is 0x1400 */
4420 cy_writeb(true_base_addr + (Cy_ClrIntr << index), 0);
4421 /* Cy_ClrIntr is 0x1800 */
4422 udelay(500L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423
Alan Cox15ed6cc2008-04-30 00:53:55 -07004424 for (chip_number = 0; chip_number < CyMAX_CHIPS_PER_CARD;
4425 chip_number++) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004426 base_addr =
4427 true_base_addr + (cy_chip_offset[chip_number] << index);
4428 mdelay(1);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004429 if (readb(base_addr + (CyCCR << index)) != 0x00) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004430 /*************
4431 printk(" chip #%d at %#6lx is never idle (CCR != 0)\n",
4432 chip_number, (unsigned long)base_addr);
4433 *************/
4434 return chip_number;
4435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436
Jiri Slaby02f11752006-12-08 02:39:28 -08004437 cy_writeb(base_addr + (CyGFRCR << index), 0);
4438 udelay(10L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439
Jiri Slaby02f11752006-12-08 02:39:28 -08004440 /* The Cyclom-16Y does not decode address bit 9 and therefore
4441 cannot distinguish between references to chip 0 and a non-
4442 existent chip 4. If the preceding clearing of the supposed
4443 chip 4 GFRCR register appears at chip 0, there is no chip 4
4444 and this must be a Cyclom-16Y, not a Cyclom-32Ye.
4445 */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004446 if (chip_number == 4 && readb(true_base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004447 (cy_chip_offset[0] << index) +
4448 (CyGFRCR << index)) == 0) {
4449 return chip_number;
4450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451
Jiri Slaby02f11752006-12-08 02:39:28 -08004452 cy_writeb(base_addr + (CyCCR << index), CyCHIP_RESET);
4453 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004455 if (readb(base_addr + (CyGFRCR << index)) == 0x00) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004456 /*
4457 printk(" chip #%d at %#6lx is not responding ",
4458 chip_number, (unsigned long)base_addr);
4459 printk("(GFRCR stayed 0)\n",
4460 */
4461 return chip_number;
4462 }
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004463 if ((0xf0 & (readb(base_addr + (CyGFRCR << index)))) !=
Jiri Slaby02f11752006-12-08 02:39:28 -08004464 0x40) {
4465 /*
4466 printk(" chip #%d at %#6lx is not valid (GFRCR == "
4467 "%#2x)\n",
4468 chip_number, (unsigned long)base_addr,
4469 base_addr[CyGFRCR<<index]);
4470 */
4471 return chip_number;
4472 }
4473 cy_writeb(base_addr + (CyGCR << index), CyCH0_SERIAL);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004474 if (readb(base_addr + (CyGFRCR << index)) >= CD1400_REV_J) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004475 /* It is a CD1400 rev. J or later */
4476 /* Impossible to reach 5ms with this chip.
4477 Changed to 2ms instead (f = 500 Hz). */
4478 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_60_2MS);
4479 } else {
4480 /* f = 200 Hz */
4481 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_25_5MS);
4482 }
4483
4484 /*
4485 printk(" chip #%d at %#6lx is rev 0x%2x\n",
4486 chip_number, (unsigned long)base_addr,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004487 readb(base_addr+(CyGFRCR<<index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08004488 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004490 return chip_number;
4491} /* cyy_init_card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
4493/*
4494 * ---------------------------------------------------------------------
4495 * cy_detect_isa() - Probe for Cyclom-Y/ISA boards.
4496 * sets global variables and return the number of ISA boards found.
4497 * ---------------------------------------------------------------------
4498 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004499static int __init cy_detect_isa(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500{
4501#ifdef CONFIG_ISA
Jiri Slaby02f11752006-12-08 02:39:28 -08004502 unsigned short cy_isa_irq, nboard;
4503 void __iomem *cy_isa_address;
4504 unsigned short i, j, cy_isa_nchan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505#ifdef MODULE
Jiri Slaby02f11752006-12-08 02:39:28 -08004506 int isparam = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507#endif
4508
Jiri Slaby02f11752006-12-08 02:39:28 -08004509 nboard = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
4511#ifdef MODULE
4512 /* Check for module parameters */
Jiri Slaby02f11752006-12-08 02:39:28 -08004513 for (i = 0; i < NR_CARDS; i++) {
4514 if (maddr[i] || i) {
4515 isparam = 1;
4516 cy_isa_addresses[i] = maddr[i];
4517 }
4518 if (!maddr[i])
4519 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 }
4521#endif
4522
Jiri Slaby02f11752006-12-08 02:39:28 -08004523 /* scan the address table probing for Cyclom-Y/ISA boards */
4524 for (i = 0; i < NR_ISA_ADDRS; i++) {
4525 unsigned int isa_address = cy_isa_addresses[i];
Alan Cox15ed6cc2008-04-30 00:53:55 -07004526 if (isa_address == 0x0000)
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004527 return nboard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
Jiri Slaby02f11752006-12-08 02:39:28 -08004529 /* probe for CD1400... */
Alan Coxcd989b32008-04-30 00:53:56 -07004530 cy_isa_address = ioremap_nocache(isa_address, CyISA_Ywin);
Jiri Slaby31375532007-05-08 00:37:04 -07004531 if (cy_isa_address == NULL) {
4532 printk(KERN_ERR "Cyclom-Y/ISA: can't remap base "
4533 "address\n");
4534 continue;
4535 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004536 cy_isa_nchan = CyPORTS_PER_CHIP *
4537 cyy_init_card(cy_isa_address, 0);
4538 if (cy_isa_nchan == 0) {
Jiri Slaby31375532007-05-08 00:37:04 -07004539 iounmap(cy_isa_address);
Jiri Slaby02f11752006-12-08 02:39:28 -08004540 continue;
4541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542#ifdef MODULE
4543 if (isparam && irq[i])
Jiri Slaby02f11752006-12-08 02:39:28 -08004544 cy_isa_irq = irq[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 else
4546#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004547 /* find out the board's irq by probing */
4548 cy_isa_irq = detect_isa_irq(cy_isa_address);
4549 if (cy_isa_irq == 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07004550 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but the "
4551 "IRQ could not be detected.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004552 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07004553 iounmap(cy_isa_address);
Jiri Slaby02f11752006-12-08 02:39:28 -08004554 continue;
4555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
Jiri Slaby02f11752006-12-08 02:39:28 -08004557 if ((cy_next_channel + cy_isa_nchan) > NR_PORTS) {
Jiri Slaby21719192007-05-08 00:36:42 -07004558 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
4559 "more channels are available. Change NR_PORTS "
4560 "in cyclades.c and recompile kernel.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004561 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07004562 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004563 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004564 }
4565 /* fill the next cy_card structure available */
4566 for (j = 0; j < NR_CARDS; j++) {
Jiri Slabyf7429032007-05-08 00:36:59 -07004567 if (cy_card[j].base_addr == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08004568 break;
4569 }
4570 if (j == NR_CARDS) { /* no more cy_cards available */
Jiri Slaby21719192007-05-08 00:36:42 -07004571 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
4572 "more cards can be used. Change NR_CARDS in "
4573 "cyclades.c and recompile kernel.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004574 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07004575 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004576 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578
Jiri Slaby02f11752006-12-08 02:39:28 -08004579 /* allocate IRQ */
4580 if (request_irq(cy_isa_irq, cyy_interrupt,
4581 IRQF_DISABLED, "Cyclom-Y", &cy_card[j])) {
Jiri Slaby21719192007-05-08 00:36:42 -07004582 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but "
4583 "could not allocate IRQ#%d.\n",
4584 (unsigned long)cy_isa_address, cy_isa_irq);
Jiri Slaby31375532007-05-08 00:37:04 -07004585 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004586 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588
Jiri Slaby02f11752006-12-08 02:39:28 -08004589 /* set cy_card */
4590 cy_card[j].base_addr = cy_isa_address;
Jiri Slaby97e87f82009-06-11 12:29:27 +01004591 cy_card[j].ctl_addr.p9050 = NULL;
Jiri Slaby02f11752006-12-08 02:39:28 -08004592 cy_card[j].irq = (int)cy_isa_irq;
4593 cy_card[j].bus_index = 0;
4594 cy_card[j].first_line = cy_next_channel;
Jiri Slaby963118e2009-06-11 12:34:27 +01004595 cy_card[j].num_chips = cy_isa_nchan / CyPORTS_PER_CHIP;
4596 cy_card[j].nports = cy_isa_nchan;
Jiri Slaby31375532007-05-08 00:37:04 -07004597 if (cy_init_card(&cy_card[j])) {
4598 cy_card[j].base_addr = NULL;
4599 free_irq(cy_isa_irq, &cy_card[j]);
4600 iounmap(cy_isa_address);
4601 continue;
4602 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004603 nboard++;
4604
Jiri Slaby21719192007-05-08 00:36:42 -07004605 printk(KERN_INFO "Cyclom-Y/ISA #%d: 0x%lx-0x%lx, IRQ%d found: "
4606 "%d channels starting from port %d\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004607 j + 1, (unsigned long)cy_isa_address,
4608 (unsigned long)(cy_isa_address + (CyISA_Ywin - 1)),
Jiri Slaby21719192007-05-08 00:36:42 -07004609 cy_isa_irq, cy_isa_nchan, cy_next_channel);
4610
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07004611 for (j = cy_next_channel;
4612 j < cy_next_channel + cy_isa_nchan; j++)
4613 tty_register_device(cy_serial_driver, j, NULL);
Jiri Slaby02f11752006-12-08 02:39:28 -08004614 cy_next_channel += cy_isa_nchan;
4615 }
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004616 return nboard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617#else
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004618 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08004619#endif /* CONFIG_ISA */
4620} /* cy_detect_isa */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
Jiri Slaby58936d82007-05-08 00:36:13 -07004622#ifdef CONFIG_PCI
Jiri Slaby054f5b02007-07-17 04:05:16 -07004623static inline int __devinit cyc_isfwstr(const char *str, unsigned int size)
4624{
4625 unsigned int a;
4626
4627 for (a = 0; a < size && *str; a++, str++)
4628 if (*str & 0x80)
4629 return -EINVAL;
4630
4631 for (; a < size; a++, str++)
4632 if (*str)
4633 return -EINVAL;
4634
4635 return 0;
4636}
4637
David Woodhousef61e7612008-05-23 23:57:19 +01004638static inline void __devinit cyz_fpga_copy(void __iomem *fpga, const u8 *data,
Jiri Slaby054f5b02007-07-17 04:05:16 -07004639 unsigned int size)
4640{
4641 for (; size > 0; size--) {
4642 cy_writel(fpga, *data++);
4643 udelay(10);
4644 }
4645}
4646
4647static void __devinit plx_init(struct pci_dev *pdev, int irq,
4648 struct RUNTIME_9060 __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649{
Jiri Slaby02f11752006-12-08 02:39:28 -08004650 /* Reset PLX */
Jiri Slaby054f5b02007-07-17 04:05:16 -07004651 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x40000000);
Jiri Slaby02f11752006-12-08 02:39:28 -08004652 udelay(100L);
Jiri Slaby054f5b02007-07-17 04:05:16 -07004653 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x40000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
Jiri Slaby02f11752006-12-08 02:39:28 -08004655 /* Reload Config. Registers from EEPROM */
Jiri Slaby054f5b02007-07-17 04:05:16 -07004656 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x20000000);
Jiri Slaby02f11752006-12-08 02:39:28 -08004657 udelay(100L);
Jiri Slaby054f5b02007-07-17 04:05:16 -07004658 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x20000000);
4659
4660 /* For some yet unknown reason, once the PLX9060 reloads the EEPROM,
4661 * the IRQ is lost and, thus, we have to re-write it to the PCI config.
4662 * registers. This will remain here until we find a permanent fix.
4663 */
4664 pci_write_config_byte(pdev, PCI_INTERRUPT_LINE, irq);
4665}
4666
4667static int __devinit __cyz_load_fw(const struct firmware *fw,
4668 const char *name, const u32 mailbox, void __iomem *base,
4669 void __iomem *fpga)
4670{
David Woodhousef61e7612008-05-23 23:57:19 +01004671 const void *ptr = fw->data;
4672 const struct zfile_header *h = ptr;
4673 const struct zfile_config *c, *cs;
4674 const struct zfile_block *b, *bs;
Jiri Slaby054f5b02007-07-17 04:05:16 -07004675 unsigned int a, tmp, len = fw->size;
4676#define BAD_FW KERN_ERR "Bad firmware: "
4677 if (len < sizeof(*h)) {
4678 printk(BAD_FW "too short: %u<%zu\n", len, sizeof(*h));
4679 return -EINVAL;
4680 }
4681
4682 cs = ptr + h->config_offset;
4683 bs = ptr + h->block_offset;
4684
4685 if ((void *)(cs + h->n_config) > ptr + len ||
4686 (void *)(bs + h->n_blocks) > ptr + len) {
4687 printk(BAD_FW "too short");
4688 return -EINVAL;
4689 }
4690
4691 if (cyc_isfwstr(h->name, sizeof(h->name)) ||
4692 cyc_isfwstr(h->date, sizeof(h->date))) {
4693 printk(BAD_FW "bad formatted header string\n");
4694 return -EINVAL;
4695 }
4696
4697 if (strncmp(name, h->name, sizeof(h->name))) {
4698 printk(BAD_FW "bad name '%s' (expected '%s')\n", h->name, name);
4699 return -EINVAL;
4700 }
4701
4702 tmp = 0;
4703 for (c = cs; c < cs + h->n_config; c++) {
4704 for (a = 0; a < c->n_blocks; a++)
4705 if (c->block_list[a] > h->n_blocks) {
4706 printk(BAD_FW "bad block ref number in cfgs\n");
4707 return -EINVAL;
4708 }
4709 if (c->mailbox == mailbox && c->function == 0) /* 0 is normal */
4710 tmp++;
4711 }
4712 if (!tmp) {
4713 printk(BAD_FW "nothing appropriate\n");
4714 return -EINVAL;
4715 }
4716
4717 for (b = bs; b < bs + h->n_blocks; b++)
4718 if (b->file_offset + b->size > len) {
4719 printk(BAD_FW "bad block data offset\n");
4720 return -EINVAL;
4721 }
4722
4723 /* everything is OK, let's seek'n'load it */
4724 for (c = cs; c < cs + h->n_config; c++)
4725 if (c->mailbox == mailbox && c->function == 0)
4726 break;
4727
4728 for (a = 0; a < c->n_blocks; a++) {
4729 b = &bs[c->block_list[a]];
4730 if (b->type == ZBLOCK_FPGA) {
4731 if (fpga != NULL)
4732 cyz_fpga_copy(fpga, ptr + b->file_offset,
4733 b->size);
4734 } else {
4735 if (base != NULL)
4736 memcpy_toio(base + b->ram_offset,
4737 ptr + b->file_offset, b->size);
4738 }
4739 }
4740#undef BAD_FW
4741 return 0;
4742}
4743
4744static int __devinit cyz_load_fw(struct pci_dev *pdev, void __iomem *base_addr,
4745 struct RUNTIME_9060 __iomem *ctl_addr, int irq)
4746{
4747 const struct firmware *fw;
4748 struct FIRM_ID __iomem *fid = base_addr + ID_ADDRESS;
4749 struct CUSTOM_REG __iomem *cust = base_addr;
4750 struct ZFW_CTRL __iomem *pt_zfwctrl;
Jiri Slabyc4923b42007-07-17 04:05:17 -07004751 void __iomem *tmp;
Jiri Slaby963118e2009-06-11 12:34:27 +01004752 u32 mailbox, status, nchan;
Jiri Slaby054f5b02007-07-17 04:05:16 -07004753 unsigned int i;
4754 int retval;
4755
4756 retval = request_firmware(&fw, "cyzfirm.bin", &pdev->dev);
4757 if (retval) {
4758 dev_err(&pdev->dev, "can't get firmware\n");
4759 goto err;
4760 }
4761
4762 /* Check whether the firmware is already loaded and running. If
4763 positive, skip this board */
Jiri Slaby2693f482009-06-11 12:31:06 +01004764 if (__cyz_fpga_loaded(ctl_addr) && readl(&fid->signature) == ZFIRM_ID) {
Jiri Slaby054f5b02007-07-17 04:05:16 -07004765 u32 cntval = readl(base_addr + 0x190);
4766
4767 udelay(100);
4768 if (cntval != readl(base_addr + 0x190)) {
4769 /* FW counter is working, FW is running */
4770 dev_dbg(&pdev->dev, "Cyclades-Z FW already loaded. "
4771 "Skipping board.\n");
4772 retval = 0;
4773 goto err_rel;
4774 }
4775 }
4776
4777 /* start boot */
4778 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) &
4779 ~0x00030800UL);
4780
4781 mailbox = readl(&ctl_addr->mail_box_0);
4782
Jiri Slaby2693f482009-06-11 12:31:06 +01004783 if (mailbox == 0 || __cyz_fpga_loaded(ctl_addr)) {
Jiri Slaby054f5b02007-07-17 04:05:16 -07004784 /* stops CPU and set window to beginning of RAM */
4785 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4786 cy_writel(&cust->cpu_stop, 0);
4787 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4788 udelay(100);
4789 }
4790
4791 plx_init(pdev, irq, ctl_addr);
4792
4793 if (mailbox != 0) {
4794 /* load FPGA */
4795 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, NULL,
4796 base_addr);
4797 if (retval)
4798 goto err_rel;
Jiri Slaby2693f482009-06-11 12:31:06 +01004799 if (!__cyz_fpga_loaded(ctl_addr)) {
Jiri Slaby054f5b02007-07-17 04:05:16 -07004800 dev_err(&pdev->dev, "fw upload successful, but fw is "
4801 "not loaded\n");
4802 goto err_rel;
4803 }
4804 }
4805
4806 /* stops CPU and set window to beginning of RAM */
4807 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4808 cy_writel(&cust->cpu_stop, 0);
4809 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4810 udelay(100);
4811
4812 /* clear memory */
Jiri Slabyc4923b42007-07-17 04:05:17 -07004813 for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++)
Jiri Slaby054f5b02007-07-17 04:05:16 -07004814 cy_writeb(tmp, 255);
4815 if (mailbox != 0) {
4816 /* set window to last 512K of RAM */
4817 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM + RAM_SIZE);
Jiri Slabyc4923b42007-07-17 04:05:17 -07004818 for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++)
Jiri Slaby054f5b02007-07-17 04:05:16 -07004819 cy_writeb(tmp, 255);
4820 /* set window to beginning of RAM */
4821 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
Jiri Slaby054f5b02007-07-17 04:05:16 -07004822 }
4823
4824 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, base_addr, NULL);
4825 release_firmware(fw);
4826 if (retval)
4827 goto err;
4828
4829 /* finish boot and start boards */
4830 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4831 cy_writel(&cust->cpu_start, 0);
4832 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4833 i = 0;
4834 while ((status = readl(&fid->signature)) != ZFIRM_ID && i++ < 40)
4835 msleep(100);
4836 if (status != ZFIRM_ID) {
4837 if (status == ZFIRM_HLT) {
4838 dev_err(&pdev->dev, "you need an external power supply "
4839 "for this number of ports. Firmware halted and "
4840 "board reset.\n");
4841 retval = -EIO;
4842 goto err;
4843 }
4844 dev_warn(&pdev->dev, "fid->signature = 0x%x... Waiting "
4845 "some more time\n", status);
4846 while ((status = readl(&fid->signature)) != ZFIRM_ID &&
4847 i++ < 200)
4848 msleep(100);
4849 if (status != ZFIRM_ID) {
4850 dev_err(&pdev->dev, "Board not started in 20 seconds! "
4851 "Giving up. (fid->signature = 0x%x)\n",
4852 status);
4853 dev_info(&pdev->dev, "*** Warning ***: if you are "
4854 "upgrading the FW, please power cycle the "
4855 "system before loading the new FW to the "
4856 "Cyclades-Z.\n");
4857
Jiri Slaby2693f482009-06-11 12:31:06 +01004858 if (__cyz_fpga_loaded(ctl_addr))
Jiri Slaby054f5b02007-07-17 04:05:16 -07004859 plx_init(pdev, irq, ctl_addr);
4860
4861 retval = -EIO;
4862 goto err;
4863 }
4864 dev_dbg(&pdev->dev, "Firmware started after %d seconds.\n",
4865 i / 10);
4866 }
4867 pt_zfwctrl = base_addr + readl(&fid->zfwctrl_addr);
4868
4869 dev_dbg(&pdev->dev, "fid=> %p, zfwctrl_addr=> %x, npt_zfwctrl=> %p\n",
4870 base_addr + ID_ADDRESS, readl(&fid->zfwctrl_addr),
4871 base_addr + readl(&fid->zfwctrl_addr));
4872
Jiri Slaby963118e2009-06-11 12:34:27 +01004873 nchan = readl(&pt_zfwctrl->board_ctrl.n_channel);
Jiri Slaby054f5b02007-07-17 04:05:16 -07004874 dev_info(&pdev->dev, "Cyclades-Z FW loaded: version = %x, ports = %u\n",
Jiri Slaby963118e2009-06-11 12:34:27 +01004875 readl(&pt_zfwctrl->board_ctrl.fw_version), nchan);
Jiri Slaby054f5b02007-07-17 04:05:16 -07004876
Jiri Slaby963118e2009-06-11 12:34:27 +01004877 if (nchan == 0) {
Jiri Slaby054f5b02007-07-17 04:05:16 -07004878 dev_warn(&pdev->dev, "no Cyclades-Z ports were found. Please "
4879 "check the connection between the Z host card and the "
4880 "serial expanders.\n");
4881
Jiri Slaby2693f482009-06-11 12:31:06 +01004882 if (__cyz_fpga_loaded(ctl_addr))
Jiri Slaby054f5b02007-07-17 04:05:16 -07004883 plx_init(pdev, irq, ctl_addr);
4884
4885 dev_info(&pdev->dev, "Null number of ports detected. Board "
4886 "reset.\n");
4887 retval = 0;
4888 goto err;
4889 }
4890
4891 cy_writel(&pt_zfwctrl->board_ctrl.op_system, C_OS_LINUX);
4892 cy_writel(&pt_zfwctrl->board_ctrl.dr_version, DRIVER_VERSION);
4893
4894 /*
4895 Early firmware failed to start looking for commands.
4896 This enables firmware interrupts for those commands.
4897 */
4898 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) |
4899 (1 << 17));
4900 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) |
4901 0x00030800UL);
4902
Jiri Slaby963118e2009-06-11 12:34:27 +01004903 return nchan;
Jiri Slaby054f5b02007-07-17 04:05:16 -07004904err_rel:
4905 release_firmware(fw);
4906err:
4907 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908}
4909
Jiri Slaby58936d82007-05-08 00:36:13 -07004910static int __devinit cy_pci_probe(struct pci_dev *pdev,
4911 const struct pci_device_id *ent)
4912{
Jiri Slaby31375532007-05-08 00:37:04 -07004913 void __iomem *addr0 = NULL, *addr2 = NULL;
4914 char *card_name = NULL;
Jiri Slaby101b8152009-06-11 12:30:10 +01004915 u32 uninitialized_var(mailbox);
Jiri Slaby31375532007-05-08 00:37:04 -07004916 unsigned int device_id, nchan = 0, card_no, i;
4917 unsigned char plx_ver;
4918 int retval, irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07004919
4920 retval = pci_enable_device(pdev);
4921 if (retval) {
4922 dev_err(&pdev->dev, "cannot enable device\n");
Jiri Slaby31375532007-05-08 00:37:04 -07004923 goto err;
Jiri Slaby58936d82007-05-08 00:36:13 -07004924 }
4925
4926 /* read PCI configuration area */
Jiri Slaby31375532007-05-08 00:37:04 -07004927 irq = pdev->irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07004928 device_id = pdev->device & ~PCI_DEVICE_ID_MASK;
4929
Jiri Slaby31375532007-05-08 00:37:04 -07004930#if defined(__alpha__)
4931 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo) { /* below 1M? */
4932 dev_err(&pdev->dev, "Cyclom-Y/PCI not supported for low "
4933 "addresses on Alpha systems.\n");
4934 retval = -EIO;
4935 goto err_dis;
4936 }
4937#endif
4938 if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Lo) {
4939 dev_err(&pdev->dev, "Cyclades-Z/PCI not supported for low "
4940 "addresses\n");
4941 retval = -EIO;
4942 goto err_dis;
4943 }
4944
4945 if (pci_resource_flags(pdev, 2) & IORESOURCE_IO) {
4946 dev_warn(&pdev->dev, "PCI I/O bit incorrectly set. Ignoring "
4947 "it...\n");
4948 pdev->resource[2].flags &= ~IORESOURCE_IO;
4949 }
4950
4951 retval = pci_request_regions(pdev, "cyclades");
4952 if (retval) {
4953 dev_err(&pdev->dev, "failed to reserve resources\n");
4954 goto err_dis;
4955 }
4956
4957 retval = -EIO;
Jiri Slaby58936d82007-05-08 00:36:13 -07004958 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
4959 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby31375532007-05-08 00:37:04 -07004960 card_name = "Cyclom-Y";
Jiri Slaby58936d82007-05-08 00:36:13 -07004961
Jiri Slaby24e6fd42008-10-13 10:34:09 +01004962 addr0 = ioremap_nocache(pci_resource_start(pdev, 0),
4963 CyPCI_Yctl);
Jiri Slaby31375532007-05-08 00:37:04 -07004964 if (addr0 == NULL) {
4965 dev_err(&pdev->dev, "can't remap ctl region\n");
4966 goto err_reg;
4967 }
Jiri Slaby24e6fd42008-10-13 10:34:09 +01004968 addr2 = ioremap_nocache(pci_resource_start(pdev, 2),
4969 CyPCI_Ywin);
Jiri Slaby31375532007-05-08 00:37:04 -07004970 if (addr2 == NULL) {
4971 dev_err(&pdev->dev, "can't remap base region\n");
4972 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07004973 }
4974
Jiri Slaby31375532007-05-08 00:37:04 -07004975 nchan = CyPORTS_PER_CHIP * cyy_init_card(addr2, 1);
4976 if (nchan == 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07004977 dev_err(&pdev->dev, "Cyclom-Y PCI host card with no "
4978 "Serial-Modules\n");
Andrew Mortonc847d472009-01-02 13:50:07 +00004979 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07004980 }
Jiri Slaby31375532007-05-08 00:37:04 -07004981 } else if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Hi) {
4982 struct RUNTIME_9060 __iomem *ctl_addr;
4983
Jiri Slaby24e6fd42008-10-13 10:34:09 +01004984 ctl_addr = addr0 = ioremap_nocache(pci_resource_start(pdev, 0),
4985 CyPCI_Zctl);
Jiri Slaby31375532007-05-08 00:37:04 -07004986 if (addr0 == NULL) {
4987 dev_err(&pdev->dev, "can't remap ctl region\n");
4988 goto err_reg;
Jiri Slaby58936d82007-05-08 00:36:13 -07004989 }
4990
Jiri Slaby31375532007-05-08 00:37:04 -07004991 /* Disable interrupts on the PLX before resetting it */
Jiri Slaby97e87f82009-06-11 12:29:27 +01004992 cy_writew(&ctl_addr->intr_ctrl_stat,
4993 readw(&ctl_addr->intr_ctrl_stat) & ~0x0900);
Jiri Slaby31375532007-05-08 00:37:04 -07004994
Jiri Slaby054f5b02007-07-17 04:05:16 -07004995 plx_init(pdev, irq, addr0);
Jiri Slaby31375532007-05-08 00:37:04 -07004996
Jiri Slaby101b8152009-06-11 12:30:10 +01004997 mailbox = readl(&ctl_addr->mail_box_0);
Jiri Slaby31375532007-05-08 00:37:04 -07004998
Jiri Slaby24e6fd42008-10-13 10:34:09 +01004999 addr2 = ioremap_nocache(pci_resource_start(pdev, 2),
5000 mailbox == ZE_V1 ? CyPCI_Ze_win : CyPCI_Zwin);
Jiri Slaby31375532007-05-08 00:37:04 -07005001 if (addr2 == NULL) {
5002 dev_err(&pdev->dev, "can't remap base region\n");
5003 goto err_unmap;
5004 }
5005
5006 if (mailbox == ZE_V1) {
5007 card_name = "Cyclades-Ze";
Jiri Slaby31375532007-05-08 00:37:04 -07005008 } else {
5009 card_name = "Cyclades-8Zo";
Jiri Slaby31375532007-05-08 00:37:04 -07005010#ifdef CY_PCI_DEBUG
5011 if (mailbox == ZO_V1) {
5012 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
5013 dev_info(&pdev->dev, "Cyclades-8Zo/PCI: FPGA "
5014 "id %lx, ver %lx\n", (ulong)(0xff &
5015 readl(&((struct CUSTOM_REG *)addr2)->
5016 fpga_id)), (ulong)(0xff &
5017 readl(&((struct CUSTOM_REG *)addr2)->
5018 fpga_version)));
5019 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
5020 } else {
5021 dev_info(&pdev->dev, "Cyclades-Z/PCI: New "
5022 "Cyclades-Z board. FPGA not loaded\n");
5023 }
5024#endif
5025 /* The following clears the firmware id word. This
5026 ensures that the driver will not attempt to talk to
5027 the board until it has been properly initialized.
5028 */
5029 if ((mailbox == ZO_V1) || (mailbox == ZO_V2))
5030 cy_writel(addr2 + ID_ADDRESS, 0L);
Jiri Slaby31375532007-05-08 00:37:04 -07005031 }
Jiri Slabyace08c32009-06-11 12:20:38 +01005032
5033 retval = cyz_load_fw(pdev, addr2, addr0, irq);
Jiri Slaby963118e2009-06-11 12:34:27 +01005034 if (retval <= 0)
Jiri Slabyace08c32009-06-11 12:20:38 +01005035 goto err_unmap;
Jiri Slaby963118e2009-06-11 12:34:27 +01005036 nchan = retval;
Jiri Slaby31375532007-05-08 00:37:04 -07005037 }
5038
5039 if ((cy_next_channel + nchan) > NR_PORTS) {
5040 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
5041 "channels are available. Change NR_PORTS in "
5042 "cyclades.c and recompile kernel.\n");
5043 goto err_unmap;
5044 }
5045 /* fill the next cy_card structure available */
5046 for (card_no = 0; card_no < NR_CARDS; card_no++) {
5047 if (cy_card[card_no].base_addr == NULL)
5048 break;
5049 }
5050 if (card_no == NR_CARDS) { /* no more cy_cards available */
5051 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
5052 "more cards can be used. Change NR_CARDS in "
5053 "cyclades.c and recompile kernel.\n");
5054 goto err_unmap;
5055 }
5056
5057 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
5058 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby58936d82007-05-08 00:36:13 -07005059 /* allocate IRQ */
Jiri Slaby31375532007-05-08 00:37:04 -07005060 retval = request_irq(irq, cyy_interrupt,
5061 IRQF_SHARED, "Cyclom-Y", &cy_card[card_no]);
Jiri Slaby58936d82007-05-08 00:36:13 -07005062 if (retval) {
Jiri Slaby21719192007-05-08 00:36:42 -07005063 dev_err(&pdev->dev, "could not allocate IRQ\n");
Jiri Slaby31375532007-05-08 00:37:04 -07005064 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07005065 }
Jiri Slaby963118e2009-06-11 12:34:27 +01005066 cy_card[card_no].num_chips = nchan / CyPORTS_PER_CHIP;
Jiri Slaby31375532007-05-08 00:37:04 -07005067 } else {
Jiri Slaby101b8152009-06-11 12:30:10 +01005068 cy_card[card_no].hw_ver = mailbox;
5069 cy_card[card_no].num_chips = (unsigned int)-1;
Jiri Slaby31375532007-05-08 00:37:04 -07005070#ifdef CONFIG_CYZ_INTR
5071 /* allocate IRQ only if board has an IRQ */
5072 if (irq != 0 && irq != 255) {
5073 retval = request_irq(irq, cyz_interrupt,
5074 IRQF_SHARED, "Cyclades-Z",
5075 &cy_card[card_no]);
5076 if (retval) {
5077 dev_err(&pdev->dev, "could not allocate IRQ\n");
5078 goto err_unmap;
5079 }
5080 }
5081#endif /* CONFIG_CYZ_INTR */
Jiri Slaby31375532007-05-08 00:37:04 -07005082 }
Jiri Slaby58936d82007-05-08 00:36:13 -07005083
Jiri Slaby31375532007-05-08 00:37:04 -07005084 /* set cy_card */
5085 cy_card[card_no].base_addr = addr2;
Jiri Slaby97e87f82009-06-11 12:29:27 +01005086 cy_card[card_no].ctl_addr.p9050 = addr0;
Jiri Slaby31375532007-05-08 00:37:04 -07005087 cy_card[card_no].irq = irq;
5088 cy_card[card_no].bus_index = 1;
5089 cy_card[card_no].first_line = cy_next_channel;
Jiri Slaby963118e2009-06-11 12:34:27 +01005090 cy_card[card_no].nports = nchan;
Jiri Slaby31375532007-05-08 00:37:04 -07005091 retval = cy_init_card(&cy_card[card_no]);
5092 if (retval)
5093 goto err_null;
Jiri Slaby58936d82007-05-08 00:36:13 -07005094
Jiri Slaby31375532007-05-08 00:37:04 -07005095 pci_set_drvdata(pdev, &cy_card[card_no]);
5096
5097 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
5098 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby58936d82007-05-08 00:36:13 -07005099 /* enable interrupts in the PCI interface */
Jiri Slaby31375532007-05-08 00:37:04 -07005100 plx_ver = readb(addr2 + CyPLX_VER) & 0x0f;
Jiri Slaby58936d82007-05-08 00:36:13 -07005101 switch (plx_ver) {
5102 case PLX_9050:
Jiri Slaby31375532007-05-08 00:37:04 -07005103 cy_writeb(addr0 + 0x4c, 0x43);
Jiri Slaby58936d82007-05-08 00:36:13 -07005104 break;
5105
5106 case PLX_9060:
5107 case PLX_9080:
5108 default: /* Old boards, use PLX_9060 */
Jiri Slaby97e87f82009-06-11 12:29:27 +01005109 {
5110 struct RUNTIME_9060 __iomem *ctl_addr = addr0;
5111 plx_init(pdev, irq, ctl_addr);
5112 cy_writew(&ctl_addr->intr_ctrl_stat,
5113 readw(&ctl_addr->intr_ctrl_stat) | 0x0900);
Jiri Slaby58936d82007-05-08 00:36:13 -07005114 break;
5115 }
Jiri Slaby97e87f82009-06-11 12:29:27 +01005116 }
Jiri Slaby58936d82007-05-08 00:36:13 -07005117 }
5118
Jiri Slaby31375532007-05-08 00:37:04 -07005119 dev_info(&pdev->dev, "%s/PCI #%d found: %d channels starting from "
5120 "port %d.\n", card_name, card_no + 1, nchan, cy_next_channel);
5121 for (i = cy_next_channel; i < cy_next_channel + nchan; i++)
5122 tty_register_device(cy_serial_driver, i, &pdev->dev);
5123 cy_next_channel += nchan;
5124
Jiri Slaby58936d82007-05-08 00:36:13 -07005125 return 0;
Jiri Slaby31375532007-05-08 00:37:04 -07005126err_null:
5127 cy_card[card_no].base_addr = NULL;
5128 free_irq(irq, &cy_card[card_no]);
5129err_unmap:
Jiri Slaby24e6fd42008-10-13 10:34:09 +01005130 iounmap(addr0);
Jiri Slaby31375532007-05-08 00:37:04 -07005131 if (addr2)
Jiri Slaby24e6fd42008-10-13 10:34:09 +01005132 iounmap(addr2);
Jiri Slaby31375532007-05-08 00:37:04 -07005133err_reg:
5134 pci_release_regions(pdev);
5135err_dis:
5136 pci_disable_device(pdev);
5137err:
5138 return retval;
Jiri Slaby58936d82007-05-08 00:36:13 -07005139}
Jiri Slaby58936d82007-05-08 00:36:13 -07005140
Jiri Slaby6747cd92007-05-08 00:36:34 -07005141static void __devexit cy_pci_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142{
Jiri Slaby38d09092007-05-08 00:36:10 -07005143 struct cyclades_card *cinfo = pci_get_drvdata(pdev);
Jiri Slabyf3851e72007-05-08 00:36:16 -07005144 unsigned int i;
Jiri Slaby38d09092007-05-08 00:36:10 -07005145
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005146 /* non-Z with old PLX */
Jiri Slaby2693f482009-06-11 12:31:06 +01005147 if (!cy_is_Z(cinfo) && (readb(cinfo->base_addr + CyPLX_VER) & 0x0f) ==
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07005148 PLX_9050)
Jiri Slaby97e87f82009-06-11 12:29:27 +01005149 cy_writeb(cinfo->ctl_addr.p9050 + 0x4c, 0);
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005150 else
5151#ifndef CONFIG_CYZ_INTR
Jiri Slaby2693f482009-06-11 12:31:06 +01005152 if (!cy_is_Z(cinfo))
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005153#endif
Jiri Slaby97e87f82009-06-11 12:29:27 +01005154 cy_writew(&cinfo->ctl_addr.p9060->intr_ctrl_stat,
5155 readw(&cinfo->ctl_addr.p9060->intr_ctrl_stat) &
5156 ~0x0900);
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005157
Jiri Slaby24e6fd42008-10-13 10:34:09 +01005158 iounmap(cinfo->base_addr);
Jiri Slaby97e87f82009-06-11 12:29:27 +01005159 if (cinfo->ctl_addr.p9050)
5160 iounmap(cinfo->ctl_addr.p9050);
Jiri Slaby38d09092007-05-08 00:36:10 -07005161 if (cinfo->irq
5162#ifndef CONFIG_CYZ_INTR
Jiri Slaby2693f482009-06-11 12:31:06 +01005163 && !cy_is_Z(cinfo)
Jiri Slaby38d09092007-05-08 00:36:10 -07005164#endif /* CONFIG_CYZ_INTR */
5165 )
5166 free_irq(cinfo->irq, cinfo);
5167 pci_release_regions(pdev);
5168
5169 cinfo->base_addr = NULL;
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005170 for (i = cinfo->first_line; i < cinfo->first_line +
5171 cinfo->nports; i++)
5172 tty_unregister_device(cy_serial_driver, i);
Jiri Slabydd025c02007-05-08 00:37:02 -07005173 cinfo->nports = 0;
5174 kfree(cinfo->ports);
Jiri Slaby38d09092007-05-08 00:36:10 -07005175}
5176
Jiri Slaby6747cd92007-05-08 00:36:34 -07005177static struct pci_driver cy_pci_driver = {
5178 .name = "cyclades",
5179 .id_table = cy_pci_dev_id,
5180 .probe = cy_pci_probe,
5181 .remove = __devexit_p(cy_pci_remove)
5182};
5183#endif
5184
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005185static int cyclades_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186{
Jiri Slaby02f11752006-12-08 02:39:28 -08005187 struct cyclades_port *info;
Jiri Slabydd025c02007-05-08 00:37:02 -07005188 unsigned int i, j;
Jiri Slaby02f11752006-12-08 02:39:28 -08005189 __u32 cur_jifs = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005191 seq_puts(m, "Dev TimeOpen BytesOut IdleOut BytesIn "
Jiri Slaby02f11752006-12-08 02:39:28 -08005192 "IdleIn Overruns Ldisc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193
Jiri Slaby02f11752006-12-08 02:39:28 -08005194 /* Output one line for each known port */
Jiri Slabydd025c02007-05-08 00:37:02 -07005195 for (i = 0; i < NR_CARDS; i++)
5196 for (j = 0; j < cy_card[i].nports; j++) {
5197 info = &cy_card[i].ports[j];
Jiri Slaby02f11752006-12-08 02:39:28 -08005198
Alan Cox77451e52008-07-16 21:57:02 +01005199 if (info->port.count)
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005200 seq_printf(m, "%3d %8lu %10lu %8lu "
Jiri Slabydd025c02007-05-08 00:37:02 -07005201 "%10lu %8lu %9lu %6ld\n", info->line,
5202 (cur_jifs - info->idle_stats.in_use) /
5203 HZ, info->idle_stats.xmit_bytes,
5204 (cur_jifs - info->idle_stats.xmit_idle)/
5205 HZ, info->idle_stats.recv_bytes,
5206 (cur_jifs - info->idle_stats.recv_idle)/
5207 HZ, info->idle_stats.overruns,
Alan Coxa352def2008-07-16 21:53:12 +01005208 /* FIXME: double check locking */
Alan Cox77451e52008-07-16 21:57:02 +01005209 (long)info->port.tty->ldisc.ops->num);
Jiri Slabydd025c02007-05-08 00:37:02 -07005210 else
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005211 seq_printf(m, "%3d %8lu %10lu %8lu "
Jiri Slabydd025c02007-05-08 00:37:02 -07005212 "%10lu %8lu %9lu %6ld\n",
5213 info->line, 0L, 0L, 0L, 0L, 0L, 0L, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08005214 }
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005215 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216}
5217
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005218static int cyclades_proc_open(struct inode *inode, struct file *file)
5219{
5220 return single_open(file, cyclades_proc_show, NULL);
5221}
5222
5223static const struct file_operations cyclades_proc_fops = {
5224 .owner = THIS_MODULE,
5225 .open = cyclades_proc_open,
5226 .read = seq_read,
5227 .llseek = seq_lseek,
5228 .release = single_release,
5229};
5230
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231/* The serial driver boot-time initialization code!
5232 Hardware I/O ports are mapped to character special devices on a
5233 first found, first allocated manner. That is, this code searches
5234 for Cyclom cards in the system. As each is found, it is probed
5235 to discover how many chips (and thus how many ports) are present.
5236 These ports are mapped to the tty ports 32 and upward in monotonic
5237 fashion. If an 8-port card is replaced with a 16-port card, the
5238 port mapping on a following card will shift.
5239
5240 This approach is different from what is used in the other serial
5241 device driver because the Cyclom is more properly a multiplexer,
5242 not just an aggregation of serial ports on one card.
5243
5244 If there are more cards with more ports than have been
5245 statically allocated above, a warning is printed and the
5246 extra ports are ignored.
5247 */
5248
Jeff Dikeb68e31d2006-10-02 02:17:18 -07005249static const struct tty_operations cy_ops = {
Jiri Slaby02f11752006-12-08 02:39:28 -08005250 .open = cy_open,
5251 .close = cy_close,
5252 .write = cy_write,
5253 .put_char = cy_put_char,
5254 .flush_chars = cy_flush_chars,
5255 .write_room = cy_write_room,
5256 .chars_in_buffer = cy_chars_in_buffer,
5257 .flush_buffer = cy_flush_buffer,
5258 .ioctl = cy_ioctl,
5259 .throttle = cy_throttle,
5260 .unthrottle = cy_unthrottle,
5261 .set_termios = cy_set_termios,
5262 .stop = cy_stop,
5263 .start = cy_start,
5264 .hangup = cy_hangup,
5265 .break_ctl = cy_break,
5266 .wait_until_sent = cy_wait_until_sent,
Jiri Slaby02f11752006-12-08 02:39:28 -08005267 .tiocmget = cy_tiocmget,
5268 .tiocmset = cy_tiocmset,
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005269 .proc_fops = &cyclades_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270};
5271
Jiri Slaby02f11752006-12-08 02:39:28 -08005272static int __init cy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273{
Jiri Slabydd025c02007-05-08 00:37:02 -07005274 unsigned int nboards;
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005275 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276
Jiri Slaby02f11752006-12-08 02:39:28 -08005277 cy_serial_driver = alloc_tty_driver(NR_PORTS);
5278 if (!cy_serial_driver)
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005279 goto err;
Jiri Slaby21719192007-05-08 00:36:42 -07005280
5281 printk(KERN_INFO "Cyclades driver " CY_VERSION " (built %s %s)\n",
5282 __DATE__, __TIME__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283
Jiri Slaby02f11752006-12-08 02:39:28 -08005284 /* Initialize the tty_driver structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
Jiri Slaby02f11752006-12-08 02:39:28 -08005286 cy_serial_driver->owner = THIS_MODULE;
5287 cy_serial_driver->driver_name = "cyclades";
5288 cy_serial_driver->name = "ttyC";
5289 cy_serial_driver->major = CYCLADES_MAJOR;
5290 cy_serial_driver->minor_start = 0;
5291 cy_serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
5292 cy_serial_driver->subtype = SERIAL_TYPE_NORMAL;
5293 cy_serial_driver->init_termios = tty_std_termios;
5294 cy_serial_driver->init_termios.c_cflag =
5295 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005296 cy_serial_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08005297 tty_set_operations(cy_serial_driver, &cy_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005299 retval = tty_register_driver(cy_serial_driver);
5300 if (retval) {
5301 printk(KERN_ERR "Couldn't register Cyclades serial driver\n");
5302 goto err_frtty;
5303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304
Jiri Slaby02f11752006-12-08 02:39:28 -08005305 /* the code below is responsible to find the boards. Each different
5306 type of board has its own detection routine. If a board is found,
5307 the next cy_card structure available is set by the detection
5308 routine. These functions are responsible for checking the
5309 availability of cy_card and cy_port data structures and updating
5310 the cy_next_channel. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311
Jiri Slaby02f11752006-12-08 02:39:28 -08005312 /* look for isa boards */
Jiri Slaby14a55a62007-05-08 00:36:18 -07005313 nboards = cy_detect_isa();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314
Jiri Slaby6747cd92007-05-08 00:36:34 -07005315#ifdef CONFIG_PCI
Jiri Slaby02f11752006-12-08 02:39:28 -08005316 /* look for pci boards */
Jiri Slaby6747cd92007-05-08 00:36:34 -07005317 retval = pci_register_driver(&cy_pci_driver);
Jesper Juhld941ea72007-10-18 03:06:23 -07005318 if (retval && !nboards) {
5319 tty_unregister_driver(cy_serial_driver);
5320 goto err_frtty;
5321 }
Jiri Slaby6747cd92007-05-08 00:36:34 -07005322#endif
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005323
5324 return 0;
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005325err_frtty:
5326 put_tty_driver(cy_serial_driver);
5327err:
5328 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08005329} /* cy_init */
5330
5331static void __exit cy_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332{
Jiri Slabydd025c02007-05-08 00:37:02 -07005333 struct cyclades_card *card;
Jiri Slaby65f76a82007-10-18 03:06:22 -07005334 unsigned int i, e1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335
5336#ifndef CONFIG_CYZ_INTR
Jiri Slabyb7050902007-05-08 00:35:48 -07005337 del_timer_sync(&cyz_timerlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338#endif /* CONFIG_CYZ_INTR */
5339
Alan Cox15ed6cc2008-04-30 00:53:55 -07005340 e1 = tty_unregister_driver(cy_serial_driver);
5341 if (e1)
Jiri Slaby21719192007-05-08 00:36:42 -07005342 printk(KERN_ERR "failed to unregister Cyclades serial "
5343 "driver(%d)\n", e1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344
Jiri Slaby6747cd92007-05-08 00:36:34 -07005345#ifdef CONFIG_PCI
5346 pci_unregister_driver(&cy_pci_driver);
5347#endif
5348
Jiri Slaby02f11752006-12-08 02:39:28 -08005349 for (i = 0; i < NR_CARDS; i++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07005350 card = &cy_card[i];
5351 if (card->base_addr) {
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005352 /* clear interrupt */
Jiri Slabydd025c02007-05-08 00:37:02 -07005353 cy_writeb(card->base_addr + Cy_ClrIntr, 0);
5354 iounmap(card->base_addr);
Jiri Slaby97e87f82009-06-11 12:29:27 +01005355 if (card->ctl_addr.p9050)
5356 iounmap(card->ctl_addr.p9050);
Jiri Slabydd025c02007-05-08 00:37:02 -07005357 if (card->irq
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358#ifndef CONFIG_CYZ_INTR
Jiri Slaby2693f482009-06-11 12:31:06 +01005359 && !cy_is_Z(card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360#endif /* CONFIG_CYZ_INTR */
Jiri Slaby02f11752006-12-08 02:39:28 -08005361 )
Jiri Slabydd025c02007-05-08 00:37:02 -07005362 free_irq(card->irq, card);
Jiri Slaby65f76a82007-10-18 03:06:22 -07005363 for (e1 = card->first_line; e1 < card->first_line +
Jiri Slabydd025c02007-05-08 00:37:02 -07005364 card->nports; e1++)
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005365 tty_unregister_device(cy_serial_driver, e1);
Jiri Slabydd025c02007-05-08 00:37:02 -07005366 kfree(card->ports);
Jiri Slaby02f11752006-12-08 02:39:28 -08005367 }
5368 }
Jiri Slabyf2462bf2007-05-08 00:37:01 -07005369
5370 put_tty_driver(cy_serial_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371} /* cy_cleanup_module */
5372
5373module_init(cy_init);
5374module_exit(cy_cleanup_module);
5375
5376MODULE_LICENSE("GPL");
Jiri Slabyc8e16932007-05-08 00:37:05 -07005377MODULE_VERSION(CY_VERSION);
Scott James Remnant9f56fad2009-04-06 17:33:04 +01005378MODULE_ALIAS_CHARDEV_MAJOR(CYCLADES_MAJOR);