tty: synclink_gt add receive pio mode
[deliverable/linux.git] / drivers / char / cyclades.c
CommitLineData
1da177e4
LT
1#undef BLOCKMOVE
2#define Z_WAKE
3#undef Z_EXT_CHARS_IN_BUFFER
1da177e4
LT
4
5/*
6 * linux/drivers/char/cyclades.c
7 *
8 * This file contains the driver for the Cyclades async multiport
9 * serial boards.
10 *
11 * Initially written by Randolph Bentson <bentson@grieg.seaslug.org>.
12 * Modified and maintained by Marcio Saito <marcio@cyclades.com>.
1da177e4 13 *
c8e1693a 14 * Copyright (C) 2007 Jiri Slaby <jirislaby@gmail.com>
1da177e4
LT
15 *
16 * Much of the design and some of the code came from serial.c
17 * which was copyright (C) 1991, 1992 Linus Torvalds. It was
18 * extensively rewritten by Theodore Ts'o, 8/16/92 -- 9/14/92,
19 * and then fixed as suggested by Michael K. Johnson 12/12/92.
c8e1693a 20 * Converted to pci probing and cleaned up by Jiri Slaby.
1da177e4
LT
21 *
22 * This version supports shared IRQ's (only for PCI boards).
23 *
1da177e4
LT
24 * 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
15ed6cc0 64 * Fixed bug in cyz_poll that would make all ports but port 0
1da177e4
LT
65 * 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;
15ed6cc0 85 * Implemented a new ISA IRQ autoprobe that uses the irq_probe_[on|off]
1da177e4
LT
86 * functions;
87 * The driver now accepts memory addresses (maddr=0xMMMMM) and IRQs
88 * (irq=NN) as parameters (only for ISA boards);
15ed6cc0 89 * Fixed bug in set_line_char that would prevent the Cyclades-Z
1da177e4
LT
90 * 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;
15ed6cc0 93 * The driver now only prints IRQ info for the Cyclades-Z if it's
1da177e4
LT
94 * 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;
15ed6cc0 99 * Added a missing MOD_DEC_USE_COUNT in the cy_open function for when
1da177e4 100 * the Z firmware is not loaded yet;
15ed6cc0 101 * Replaced the "manual" Z Tx flush buffer by a call to a FW command of
1da177e4 102 * same functionality;
15ed6cc0 103 * Implemented workaround for IRQ setting loss on the PCI configuration
1da177e4
LT
104 * 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';
15ed6cc0 114 * Included a PCI bridge reset and EEPROM reload in the board
1da177e4
LT
115 * initialization code (for both Y and Z series).
116 *
117 * Revision 2.2.2.1 1999/04/08 16:17:43 ivan
15ed6cc0 118 * Fixed a bug in cy_wait_until_sent that was preventing the port to be
1da177e4
LT
119 * 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).
15ed6cc0 123 *
1da177e4
LT
124 * 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
15ed6cc0 129 * Changed access to PLX PCI bridge registers from I/O to MMIO, in
1da177e4
LT
130 * 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
15ed6cc0 150 * /proc/cyclades implementation with great collaboration of
1da177e4
LT
151 * 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);
15ed6cc0 159 * removed conditional compilation for new/old PCI structure support
1da177e4
LT
160 * (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;
15ed6cc0 170 * introduction of a mechanism to prevent data loss with slow
1da177e4
LT
171 * 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.
15ed6cc0 184 *
1da177e4
LT
185 * 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;
15ed6cc0 189 * introduction of flag that allows driver to take advantage of
1da177e4
LT
190 * 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
15ed6cc0 198 * Fixes related to kernel version conditional
1da177e4 199 * compilation.
15ed6cc0 200 *
1da177e4 201 * Revision 1.36.4.32 1997/06/14 19:30:00 ivan
15ed6cc0 202 * Compatibility issues between kernels 2.0.x and
1da177e4 203 * 2.1.x (mainly related to clear_bit function).
15ed6cc0 204 *
1da177e4 205 * Revision 1.36.4.31 1997/06/03 15:30:00 ivan
15ed6cc0 206 * Changes to define the memory window according to the
1da177e4 207 * board type.
15ed6cc0 208 *
1da177e4
LT
209 * 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;
33430dc5 280 * fix race condition in -Z buffer management; only -Y needs to explicitly
1da177e4
LT
281 * 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
96de0e25 361 * as noted by Heiko Eißfeldt <heiko@colossus.escape.de>
1da177e4
LT
362 *
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
c8e1693a 592#define CY_VERSION "2.5"
096dcfce 593
1da177e4
LT
594/* 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
02f1175c 598#define NR_CARDS 4
1da177e4
LT
599
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
02f1175c 605#define NR_PORTS 256
1da177e4
LT
606
607#define ZE_V1_NPORTS 64
608#define ZO_V1 0
609#define ZO_V2 1
610#define ZE_V1 2
611
612#define SERIAL_PARANOIA_CHECK
613#undef CY_DEBUG_OPEN
614#undef CY_DEBUG_THROTTLE
615#undef CY_DEBUG_OTHER
616#undef CY_DEBUG_IO
617#undef CY_DEBUG_COUNT
618#undef CY_DEBUG_DTR
619#undef CY_DEBUG_WAIT_UNTIL_SENT
620#undef CY_DEBUG_INTERRUPTS
621#undef CY_16Y_HACK
622#undef CY_ENABLE_MONITORING
623#undef CY_PCI_DEBUG
624
1da177e4 625/*
15ed6cc0 626 * Include section
1da177e4 627 */
1da177e4
LT
628#include <linux/module.h>
629#include <linux/errno.h>
630#include <linux/signal.h>
631#include <linux/sched.h>
632#include <linux/timer.h>
633#include <linux/interrupt.h>
634#include <linux/tty.h>
33f0f88f 635#include <linux/tty_flip.h>
1da177e4
LT
636#include <linux/serial.h>
637#include <linux/major.h>
638#include <linux/string.h>
639#include <linux/fcntl.h>
640#include <linux/ptrace.h>
641#include <linux/cyclades.h>
642#include <linux/mm.h>
643#include <linux/ioport.h>
644#include <linux/init.h>
645#include <linux/delay.h>
646#include <linux/spinlock.h>
647#include <linux/bitops.h>
054f5b0a 648#include <linux/firmware.h>
9f56fad7 649#include <linux/device.h>
1da177e4
LT
650
651#include <asm/system.h>
15ed6cc0 652#include <linux/io.h>
1da177e4 653#include <asm/irq.h>
15ed6cc0 654#include <linux/uaccess.h>
1da177e4 655
1da177e4
LT
656#include <linux/kernel.h>
657#include <linux/pci.h>
658
659#include <linux/stat.h>
660#include <linux/proc_fs.h>
444697d6 661#include <linux/seq_file.h>
1da177e4 662
02f1175c
JS
663static void cy_throttle(struct tty_struct *tty);
664static void cy_send_xchar(struct tty_struct *tty, char ch);
1da177e4 665
65f76a82 666#define IS_CYC_Z(card) ((card).num_chips == (unsigned int)-1)
1da177e4
LT
667
668#define Z_FPGA_CHECK(card) \
db05c3b1 669 ((readl(&((struct RUNTIME_9060 __iomem *) \
02f1175c 670 ((card).ctl_addr))->init_ctrl) & (1<<17)) != 0)
1da177e4 671
15ed6cc0 672#define ISZLOADED(card) (((ZO_V1 == readl(&((struct RUNTIME_9060 __iomem *) \
1da177e4
LT
673 ((card).ctl_addr))->mail_box_0)) || \
674 Z_FPGA_CHECK(card)) && \
15ed6cc0 675 (ZFIRM_ID == readl(&((struct FIRM_ID __iomem *) \
1da177e4
LT
676 ((card).base_addr+ID_ADDRESS))->signature)))
677
678#ifndef SERIAL_XMIT_SIZE
679#define SERIAL_XMIT_SIZE (min(PAGE_SIZE, 4096))
680#endif
681#define WAKEUP_CHARS 256
682
683#define STD_COM_FLAGS (0)
684
054f5b0a
JS
685/* firmware stuff */
686#define ZL_MAX_BLOCKS 16
687#define DRIVER_VERSION 0x02010203
688#define RAM_SIZE 0x80000
689
690#define Z_FPGA_LOADED(X) ((readl(&(X)->init_ctrl) & (1<<17)) != 0)
691
692enum zblock_type {
693 ZBLOCK_PRG = 0,
694 ZBLOCK_FPGA = 1
695};
696
697struct zfile_header {
698 char name[64];
699 char date[32];
700 char aux[32];
701 u32 n_config;
702 u32 config_offset;
703 u32 n_blocks;
704 u32 block_offset;
705 u32 reserved[9];
706} __attribute__ ((packed));
707
708struct zfile_config {
709 char name[64];
710 u32 mailbox;
711 u32 function;
712 u32 n_blocks;
713 u32 block_list[ZL_MAX_BLOCKS];
714} __attribute__ ((packed));
715
716struct zfile_block {
717 u32 type;
718 u32 file_offset;
719 u32 ram_offset;
720 u32 size;
721} __attribute__ ((packed));
722
1da177e4
LT
723static struct tty_driver *cy_serial_driver;
724
725#ifdef CONFIG_ISA
726/* This is the address lookup table. The driver will probe for
727 Cyclom-Y/ISA boards at all addresses in here. If you want the
728 driver to probe addresses at a different address, add it to
729 this table. If the driver is probing some other board and
730 causing problems, remove the offending address from this table.
1da177e4
LT
731*/
732
733static unsigned int cy_isa_addresses[] = {
02f1175c
JS
734 0xD0000,
735 0xD2000,
736 0xD4000,
737 0xD6000,
738 0xD8000,
739 0xDA000,
740 0xDC000,
741 0xDE000,
742 0, 0, 0, 0, 0, 0, 0, 0
1da177e4 743};
02f1175c 744
fe971071 745#define NR_ISA_ADDRS ARRAY_SIZE(cy_isa_addresses)
1da177e4
LT
746
747#ifdef MODULE
3046d50e
JS
748static long maddr[NR_CARDS];
749static int irq[NR_CARDS];
1da177e4
LT
750
751module_param_array(maddr, long, NULL, 0);
752module_param_array(irq, int, NULL, 0);
753#endif
754
02f1175c 755#endif /* CONFIG_ISA */
1da177e4
LT
756
757/* This is the per-card data structure containing address, irq, number of
758 channels, etc. This driver supports a maximum of NR_CARDS cards.
759*/
760static struct cyclades_card cy_card[NR_CARDS];
761
02f1175c 762static int cy_next_channel; /* next minor available */
1da177e4 763
1da177e4
LT
764/*
765 * This is used to look up the divisor speeds and the timeouts
766 * We're normally limited to 15 distinct baud rates. The extra
77451e53 767 * are accessed via settings in info->port.flags.
1da177e4
LT
768 * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
769 * 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
770 * HI VHI
771 * 20
772 */
773static int baud_table[] = {
02f1175c
JS
774 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200,
775 1800, 2400, 4800, 9600, 19200, 38400, 57600, 76800, 115200, 150000,
776 230400, 0
777};
778
779static char baud_co_25[] = { /* 25 MHz clock option table */
780 /* value => 00 01 02 03 04 */
781 /* divide by 8 32 128 512 2048 */
782 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x02,
783 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
784};
785
786static char baud_bpr_25[] = { /* 25 MHz baud rate period table */
787 0x00, 0xf5, 0xa3, 0x6f, 0x5c, 0x51, 0xf5, 0xa3, 0x51, 0xa3,
788 0x6d, 0x51, 0xa3, 0x51, 0xa3, 0x51, 0x36, 0x29, 0x1b, 0x15
789};
790
791static char baud_co_60[] = { /* 60 MHz clock option table (CD1400 J) */
792 /* value => 00 01 02 03 04 */
793 /* divide by 8 32 128 512 2048 */
794 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03,
795 0x03, 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
796 0x00
797};
798
799static char baud_bpr_60[] = { /* 60 MHz baud rate period table (CD1400 J) */
800 0x00, 0x82, 0x21, 0xff, 0xdb, 0xc3, 0x92, 0x62, 0xc3, 0x62,
801 0x41, 0xc3, 0x62, 0xc3, 0x62, 0xc3, 0x82, 0x62, 0x41, 0x32,
802 0x21
803};
804
805static char baud_cor3[] = { /* receive threshold */
806 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
807 0x0a, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x07,
808 0x07
809};
1da177e4
LT
810
811/*
812 * The Cyclades driver implements HW flow control as any serial driver.
15ed6cc0
AC
813 * The cyclades_port structure member rflow and the vector rflow_thr
814 * allows us to take advantage of a special feature in the CD1400 to avoid
815 * data loss even when the system interrupt latency is too high. These flags
816 * are to be used only with very special applications. Setting these flags
817 * requires the use of a special cable (DTR and RTS reversed). In the new
818 * CD1400-based boards (rev. 6.00 or later), there is no need for special
1da177e4
LT
819 * cables.
820 */
821
02f1175c
JS
822static char rflow_thr[] = { /* rflow threshold */
823 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
824 0x00, 0x00, 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
825 0x0a
826};
1da177e4
LT
827
828/* The Cyclom-Ye has placed the sequential chips in non-sequential
829 * address order. This look-up table overcomes that problem.
830 */
02f1175c
JS
831static int cy_chip_offset[] = { 0x0000,
832 0x0400,
833 0x0800,
834 0x0C00,
835 0x0200,
836 0x0600,
837 0x0A00,
838 0x0E00
839};
1da177e4
LT
840
841/* PCI related definitions */
842
1da177e4 843#ifdef CONFIG_PCI
893de2df 844static struct pci_device_id cy_pci_dev_id[] __devinitdata = {
15ed6cc0
AC
845 /* PCI < 1Mb */
846 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Lo) },
847 /* PCI > 1Mb */
848 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Hi) },
849 /* 4Y PCI < 1Mb */
850 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Lo) },
851 /* 4Y PCI > 1Mb */
852 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Hi) },
853 /* 8Y PCI < 1Mb */
854 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Lo) },
855 /* 8Y PCI > 1Mb */
856 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Hi) },
857 /* Z PCI < 1Mb */
858 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Lo) },
859 /* Z PCI > 1Mb */
860 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Hi) },
893de2df 861 { } /* end of table */
02f1175c 862};
893de2df 863MODULE_DEVICE_TABLE(pci, cy_pci_dev_id);
1da177e4
LT
864#endif
865
866static void cy_start(struct tty_struct *);
867static void set_line_char(struct cyclades_port *);
1a86b5e3 868static int cyz_issue_cmd(struct cyclades_card *, __u32, __u8, __u32);
1da177e4
LT
869#ifdef CONFIG_ISA
870static unsigned detect_isa_irq(void __iomem *);
02f1175c 871#endif /* CONFIG_ISA */
1da177e4 872
1da177e4
LT
873#ifndef CONFIG_CYZ_INTR
874static void cyz_poll(unsigned long);
875
876/* The Cyclades-Z polling cycle is defined by this variable */
877static long cyz_polling_cycle = CZ_DEF_POLL;
878
8d06afab 879static DEFINE_TIMER(cyz_timerlist, cyz_poll, 0, 0);
1da177e4 880
02f1175c 881#else /* CONFIG_CYZ_INTR */
1da177e4
LT
882static void cyz_rx_restart(unsigned long);
883static struct timer_list cyz_rx_full_timer[NR_PORTS];
02f1175c 884#endif /* CONFIG_CYZ_INTR */
1da177e4 885
02f1175c
JS
886static inline int serial_paranoia_check(struct cyclades_port *info,
887 char *name, const char *routine)
1da177e4
LT
888{
889#ifdef SERIAL_PARANOIA_CHECK
02f1175c 890 if (!info) {
21719191
JS
891 printk(KERN_WARNING "cyc Warning: null cyclades_port for (%s) "
892 "in %s\n", name, routine);
02f1175c
JS
893 return 1;
894 }
895
02f1175c 896 if (info->magic != CYCLADES_MAGIC) {
21719191
JS
897 printk(KERN_WARNING "cyc Warning: bad magic number for serial "
898 "struct (%s) in %s\n", name, routine);
02f1175c
JS
899 return 1;
900 }
1da177e4 901#endif
02f1175c
JS
902 return 0;
903} /* serial_paranoia_check */
1da177e4 904
1da177e4
LT
905/***********************************************************/
906/********* Start of block of Cyclom-Y specific code ********/
907
908/* This routine waits up to 1000 micro-seconds for the previous
909 command to the Cirrus chip to complete and then issues the
910 new command. An error is returned if the previous command
911 didn't finish within the time limit.
912
913 This function is only called from inside spinlock-protected code.
914 */
15ed6cc0 915static int cyy_issue_cmd(void __iomem *base_addr, u_char cmd, int index)
1da177e4 916{
ad39c300 917 unsigned int i;
1da177e4 918
02f1175c
JS
919 /* Check to see that the previous command has completed */
920 for (i = 0; i < 100; i++) {
15ed6cc0 921 if (readb(base_addr + (CyCCR << index)) == 0)
02f1175c 922 break;
02f1175c 923 udelay(10L);
1da177e4 924 }
02f1175c
JS
925 /* if the CCR never cleared, the previous command
926 didn't finish within the "reasonable time" */
927 if (i == 100)
096dcfce 928 return -1;
1da177e4 929
02f1175c
JS
930 /* Issue the new command */
931 cy_writeb(base_addr + (CyCCR << index), cmd);
1da177e4 932
096dcfce 933 return 0;
02f1175c 934} /* cyy_issue_cmd */
1da177e4
LT
935
936#ifdef CONFIG_ISA
937/* ISA interrupt detection code */
15ed6cc0 938static unsigned detect_isa_irq(void __iomem *address)
1da177e4 939{
02f1175c
JS
940 int irq;
941 unsigned long irqs, flags;
942 int save_xir, save_car;
943 int index = 0; /* IRQ probing is only for ISA */
944
945 /* forget possible initially masked and pending IRQ */
946 irq = probe_irq_off(probe_irq_on());
947
948 /* Clear interrupts on the board first */
949 cy_writeb(address + (Cy_ClrIntr << index), 0);
950 /* Cy_ClrIntr is 0x1800 */
951
952 irqs = probe_irq_on();
953 /* Wait ... */
954 udelay(5000L);
955
956 /* Enable the Tx interrupts on the CD1400 */
957 local_irq_save(flags);
958 cy_writeb(address + (CyCAR << index), 0);
959 cyy_issue_cmd(address, CyCHAN_CTL | CyENB_XMTR, index);
960
961 cy_writeb(address + (CyCAR << index), 0);
962 cy_writeb(address + (CySRER << index),
db05c3b1 963 readb(address + (CySRER << index)) | CyTxRdy);
02f1175c
JS
964 local_irq_restore(flags);
965
966 /* Wait ... */
967 udelay(5000L);
968
969 /* Check which interrupt is in use */
970 irq = probe_irq_off(irqs);
971
972 /* Clean up */
db05c3b1
JS
973 save_xir = (u_char) readb(address + (CyTIR << index));
974 save_car = readb(address + (CyCAR << index));
02f1175c
JS
975 cy_writeb(address + (CyCAR << index), (save_xir & 0x3));
976 cy_writeb(address + (CySRER << index),
db05c3b1 977 readb(address + (CySRER << index)) & ~CyTxRdy);
02f1175c
JS
978 cy_writeb(address + (CyTIR << index), (save_xir & 0x3f));
979 cy_writeb(address + (CyCAR << index), (save_car));
980 cy_writeb(address + (Cy_ClrIntr << index), 0);
981 /* Cy_ClrIntr is 0x1800 */
982
983 return (irq > 0) ? irq : 0;
1da177e4 984}
02f1175c 985#endif /* CONFIG_ISA */
1da177e4 986
ce97a097
JS
987static void cyy_chip_rx(struct cyclades_card *cinfo, int chip,
988 void __iomem *base_addr)
e941027f
JS
989{
990 struct cyclades_port *info;
991 struct tty_struct *tty;
65f76a82
JS
992 int len, index = cinfo->bus_index;
993 u8 save_xir, channel, save_car, data, char_count;
e941027f 994
e941027f 995#ifdef CY_DEBUG_INTERRUPTS
ce97a097 996 printk(KERN_DEBUG "cyy_interrupt: rcvd intr, chip %d\n", chip);
e941027f 997#endif
ce97a097 998 /* determine the channel & change to that context */
65f76a82
JS
999 save_xir = readb(base_addr + (CyRIR << index));
1000 channel = save_xir & CyIRChannel;
ce97a097
JS
1001 info = &cinfo->ports[channel + chip * 4];
1002 save_car = readb(base_addr + (CyCAR << index));
1003 cy_writeb(base_addr + (CyCAR << index), save_xir);
1004
1005 /* if there is nowhere to put the data, discard it */
77451e53 1006 if (info->port.tty == NULL) {
65f76a82
JS
1007 if ((readb(base_addr + (CyRIVR << index)) & CyIVRMask) ==
1008 CyIVRRxEx) { /* exception */
ce97a097
JS
1009 data = readb(base_addr + (CyRDSR << index));
1010 } else { /* normal character reception */
1011 char_count = readb(base_addr + (CyRDCR << index));
1012 while (char_count--)
db05c3b1 1013 data = readb(base_addr + (CyRDSR << index));
ce97a097
JS
1014 }
1015 goto end;
1016 }
1017 /* there is an open port for this data */
77451e53 1018 tty = info->port.tty;
65f76a82
JS
1019 if ((readb(base_addr + (CyRIVR << index)) & CyIVRMask) ==
1020 CyIVRRxEx) { /* exception */
ce97a097
JS
1021 data = readb(base_addr + (CyRDSR << index));
1022
1023 /* For statistics only */
1024 if (data & CyBREAK)
1025 info->icount.brk++;
1026 else if (data & CyFRAME)
1027 info->icount.frame++;
1028 else if (data & CyPARITY)
1029 info->icount.parity++;
1030 else if (data & CyOVERRUN)
1031 info->icount.overrun++;
1032
1033 if (data & info->ignore_status_mask) {
1034 info->icount.rx++;
ce97a097
JS
1035 return;
1036 }
1037 if (tty_buffer_request_room(tty, 1)) {
1038 if (data & info->read_status_mask) {
1039 if (data & CyBREAK) {
1040 tty_insert_flip_char(tty,
1041 readb(base_addr + (CyRDSR <<
1042 index)), TTY_BREAK);
1043 info->icount.rx++;
77451e53 1044 if (info->port.flags & ASYNC_SAK)
ce97a097
JS
1045 do_SAK(tty);
1046 } else if (data & CyFRAME) {
15ed6cc0 1047 tty_insert_flip_char(tty,
ce97a097
JS
1048 readb(base_addr + (CyRDSR <<
1049 index)), TTY_FRAME);
1050 info->icount.rx++;
1051 info->idle_stats.frame_errs++;
1052 } else if (data & CyPARITY) {
1053 /* Pieces of seven... */
1054 tty_insert_flip_char(tty,
1055 readb(base_addr + (CyRDSR <<
1056 index)), TTY_PARITY);
1057 info->icount.rx++;
1058 info->idle_stats.parity_errs++;
1059 } else if (data & CyOVERRUN) {
1060 tty_insert_flip_char(tty, 0,
1061 TTY_OVERRUN);
1062 info->icount.rx++;
1063 /* If the flip buffer itself is
1064 overflowing, we still lose
1065 the next incoming character.
1066 */
1067 tty_insert_flip_char(tty,
1068 readb(base_addr + (CyRDSR <<
1069 index)), TTY_FRAME);
02f1175c 1070 info->icount.rx++;
02f1175c 1071 info->idle_stats.overruns++;
ce97a097
JS
1072 /* These two conditions may imply */
1073 /* a normal read should be done. */
1074 /* } else if(data & CyTIMEOUT) { */
1075 /* } else if(data & CySPECHAR) { */
1076 } else {
1077 tty_insert_flip_char(tty, 0,
1078 TTY_NORMAL);
1079 info->icount.rx++;
02f1175c 1080 }
ce97a097
JS
1081 } else {
1082 tty_insert_flip_char(tty, 0, TTY_NORMAL);
1083 info->icount.rx++;
1084 }
1085 } else {
1086 /* there was a software buffer overrun and nothing
1087 * could be done about it!!! */
1088 info->icount.buf_overrun++;
1089 info->idle_stats.overruns++;
1090 }
1091 } else { /* normal character reception */
1092 /* load # chars available from the chip */
1093 char_count = readb(base_addr + (CyRDCR << index));
e941027f
JS
1094
1095#ifdef CY_ENABLE_MONITORING
ce97a097
JS
1096 ++info->mon.int_count;
1097 info->mon.char_count += char_count;
1098 if (char_count > info->mon.char_max)
1099 info->mon.char_max = char_count;
1100 info->mon.char_last = char_count;
e941027f 1101#endif
ce97a097
JS
1102 len = tty_buffer_request_room(tty, char_count);
1103 while (len--) {
1104 data = readb(base_addr + (CyRDSR << index));
1105 tty_insert_flip_char(tty, data, TTY_NORMAL);
1106 info->idle_stats.recv_bytes++;
1107 info->icount.rx++;
e941027f 1108#ifdef CY_16Y_HACK
ce97a097 1109 udelay(10L);
e941027f 1110#endif
e941027f 1111 }
ce97a097 1112 info->idle_stats.recv_idle = jiffies;
e941027f 1113 }
ce97a097
JS
1114 tty_schedule_flip(tty);
1115end:
1116 /* end of service */
1117 cy_writeb(base_addr + (CyRIR << index), save_xir & 0x3f);
1118 cy_writeb(base_addr + (CyCAR << index), save_car);
ce97a097 1119}
e941027f 1120
65f76a82 1121static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip,
ce97a097
JS
1122 void __iomem *base_addr)
1123{
1124 struct cyclades_port *info;
65f76a82
JS
1125 int char_count, index = cinfo->bus_index;
1126 u8 save_xir, channel, save_car, outch;
ce97a097
JS
1127
1128 /* Since we only get here when the transmit buffer
1129 is empty, we know we can always stuff a dozen
1130 characters. */
e941027f 1131#ifdef CY_DEBUG_INTERRUPTS
ce97a097 1132 printk(KERN_DEBUG "cyy_interrupt: xmit intr, chip %d\n", chip);
e941027f
JS
1133#endif
1134
ce97a097 1135 /* determine the channel & change to that context */
65f76a82
JS
1136 save_xir = readb(base_addr + (CyTIR << index));
1137 channel = save_xir & CyIRChannel;
ce97a097
JS
1138 save_car = readb(base_addr + (CyCAR << index));
1139 cy_writeb(base_addr + (CyCAR << index), save_xir);
1140
1141 /* validate the port# (as configured and open) */
1142 if (channel + chip * 4 >= cinfo->nports) {
1143 cy_writeb(base_addr + (CySRER << index),
1144 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
1145 goto end;
1146 }
1147 info = &cinfo->ports[channel + chip * 4];
77451e53 1148 if (info->port.tty == NULL) {
ce97a097
JS
1149 cy_writeb(base_addr + (CySRER << index),
1150 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
1151 goto end;
1152 }
02f1175c 1153
ce97a097
JS
1154 /* load the on-chip space for outbound data */
1155 char_count = info->xmit_fifo_size;
02f1175c 1156
ce97a097
JS
1157 if (info->x_char) { /* send special char */
1158 outch = info->x_char;
1159 cy_writeb(base_addr + (CyTDR << index), outch);
1160 char_count--;
1161 info->icount.tx++;
1162 info->x_char = 0;
1163 }
02f1175c 1164
ce97a097
JS
1165 if (info->breakon || info->breakoff) {
1166 if (info->breakon) {
1167 cy_writeb(base_addr + (CyTDR << index), 0);
1168 cy_writeb(base_addr + (CyTDR << index), 0x81);
1169 info->breakon = 0;
1170 char_count -= 2;
e941027f 1171 }
ce97a097
JS
1172 if (info->breakoff) {
1173 cy_writeb(base_addr + (CyTDR << index), 0);
1174 cy_writeb(base_addr + (CyTDR << index), 0x83);
1175 info->breakoff = 0;
1176 char_count -= 2;
e941027f 1177 }
ce97a097 1178 }
02f1175c 1179
ce97a097
JS
1180 while (char_count-- > 0) {
1181 if (!info->xmit_cnt) {
1182 if (readb(base_addr + (CySRER << index)) & CyTxMpty) {
1183 cy_writeb(base_addr + (CySRER << index),
1184 readb(base_addr + (CySRER << index)) &
02f1175c 1185 ~CyTxMpty);
ce97a097
JS
1186 } else {
1187 cy_writeb(base_addr + (CySRER << index),
1188 (readb(base_addr + (CySRER << index)) &
02f1175c 1189 ~CyTxRdy) | CyTxMpty);
02f1175c 1190 }
ce97a097
JS
1191 goto done;
1192 }
77451e53 1193 if (info->port.xmit_buf == NULL) {
ce97a097
JS
1194 cy_writeb(base_addr + (CySRER << index),
1195 readb(base_addr + (CySRER << index)) &
02f1175c 1196 ~CyTxRdy);
ce97a097
JS
1197 goto done;
1198 }
77451e53 1199 if (info->port.tty->stopped || info->port.tty->hw_stopped) {
ce97a097
JS
1200 cy_writeb(base_addr + (CySRER << index),
1201 readb(base_addr + (CySRER << index)) &
02f1175c 1202 ~CyTxRdy);
ce97a097
JS
1203 goto done;
1204 }
1205 /* Because the Embedded Transmit Commands have been enabled,
1206 * we must check to see if the escape character, NULL, is being
1207 * sent. If it is, we must ensure that there is room for it to
1208 * be doubled in the output stream. Therefore we no longer
1209 * advance the pointer when the character is fetched, but
1210 * rather wait until after the check for a NULL output
1211 * character. This is necessary because there may not be room
1212 * for the two chars needed to send a NULL.)
1213 */
77451e53 1214 outch = info->port.xmit_buf[info->xmit_tail];
ce97a097
JS
1215 if (outch) {
1216 info->xmit_cnt--;
1217 info->xmit_tail = (info->xmit_tail + 1) &
1218 (SERIAL_XMIT_SIZE - 1);
1219 cy_writeb(base_addr + (CyTDR << index), outch);
1220 info->icount.tx++;
1221 } else {
1222 if (char_count > 1) {
02f1175c
JS
1223 info->xmit_cnt--;
1224 info->xmit_tail = (info->xmit_tail + 1) &
ce97a097 1225 (SERIAL_XMIT_SIZE - 1);
02f1175c 1226 cy_writeb(base_addr + (CyTDR << index), outch);
ce97a097 1227 cy_writeb(base_addr + (CyTDR << index), 0);
02f1175c 1228 info->icount.tx++;
ce97a097 1229 char_count--;
02f1175c 1230 }
e941027f 1231 }
e941027f
JS
1232 }
1233
ce97a097 1234done:
77451e53 1235 tty_wakeup(info->port.tty);
ce97a097
JS
1236end:
1237 /* end of service */
1238 cy_writeb(base_addr + (CyTIR << index), save_xir & 0x3f);
1239 cy_writeb(base_addr + (CyCAR << index), save_car);
ce97a097 1240}
02f1175c 1241
ce97a097
JS
1242static void cyy_chip_modem(struct cyclades_card *cinfo, int chip,
1243 void __iomem *base_addr)
1244{
1245 struct cyclades_port *info;
65f76a82
JS
1246 int index = cinfo->bus_index;
1247 u8 save_xir, channel, save_car, mdm_change, mdm_status;
ce97a097
JS
1248
1249 /* determine the channel & change to that context */
65f76a82
JS
1250 save_xir = readb(base_addr + (CyMIR << index));
1251 channel = save_xir & CyIRChannel;
ce97a097
JS
1252 info = &cinfo->ports[channel + chip * 4];
1253 save_car = readb(base_addr + (CyCAR << index));
1254 cy_writeb(base_addr + (CyCAR << index), save_xir);
1255
1256 mdm_change = readb(base_addr + (CyMISR << index));
1257 mdm_status = readb(base_addr + (CyMSVR1 << index));
1258
77451e53 1259 if (!info->port.tty)
ce97a097
JS
1260 goto end;
1261
1262 if (mdm_change & CyANY_DELTA) {
1263 /* For statistics only */
1264 if (mdm_change & CyDCD)
1265 info->icount.dcd++;
1266 if (mdm_change & CyCTS)
1267 info->icount.cts++;
1268 if (mdm_change & CyDSR)
1269 info->icount.dsr++;
1270 if (mdm_change & CyRI)
1271 info->icount.rng++;
1272
1273 wake_up_interruptible(&info->delta_msr_wait);
1274 }
1275
77451e53 1276 if ((mdm_change & CyDCD) && (info->port.flags & ASYNC_CHECK_CD)) {
ce97a097 1277 if (!(mdm_status & CyDCD)) {
77451e53
AC
1278 tty_hangup(info->port.tty);
1279 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
ce97a097 1280 }
77451e53 1281 wake_up_interruptible(&info->port.open_wait);
ce97a097 1282 }
77451e53
AC
1283 if ((mdm_change & CyCTS) && (info->port.flags & ASYNC_CTS_FLOW)) {
1284 if (info->port.tty->hw_stopped) {
ce97a097
JS
1285 if (mdm_status & CyCTS) {
1286 /* cy_start isn't used
1287 because... !!! */
77451e53 1288 info->port.tty->hw_stopped = 0;
ce97a097
JS
1289 cy_writeb(base_addr + (CySRER << index),
1290 readb(base_addr + (CySRER << index)) |
1291 CyTxRdy);
77451e53 1292 tty_wakeup(info->port.tty);
02f1175c 1293 }
ce97a097
JS
1294 } else {
1295 if (!(mdm_status & CyCTS)) {
1296 /* cy_stop isn't used
1297 because ... !!! */
77451e53 1298 info->port.tty->hw_stopped = 1;
ce97a097
JS
1299 cy_writeb(base_addr + (CySRER << index),
1300 readb(base_addr + (CySRER << index)) &
1301 ~CyTxRdy);
02f1175c 1302 }
e941027f 1303 }
e941027f 1304 }
ce97a097
JS
1305/* if (mdm_change & CyDSR) {
1306 }
1307 if (mdm_change & CyRI) {
1308 }*/
1309end:
1310 /* end of service */
1311 cy_writeb(base_addr + (CyMIR << index), save_xir & 0x3f);
1312 cy_writeb(base_addr + (CyCAR << index), save_car);
e941027f
JS
1313}
1314
1da177e4
LT
1315/* The real interrupt service routine is called
1316 whenever the card wants its hand held--chars
1317 received, out buffer empty, modem change, etc.
1318 */
02f1175c 1319static irqreturn_t cyy_interrupt(int irq, void *dev_id)
1da177e4 1320{
02f1175c 1321 int status;
f7429034 1322 struct cyclades_card *cinfo = dev_id;
02f1175c 1323 void __iomem *base_addr, *card_base_addr;
65f76a82 1324 unsigned int chip, too_many, had_work;
02f1175c 1325 int index;
02f1175c 1326
f7429034 1327 if (unlikely(cinfo == NULL)) {
1da177e4 1328#ifdef CY_DEBUG_INTERRUPTS
15ed6cc0
AC
1329 printk(KERN_DEBUG "cyy_interrupt: spurious interrupt %d\n",
1330 irq);
1da177e4 1331#endif
02f1175c
JS
1332 return IRQ_NONE; /* spurious interrupt */
1333 }
1334
1335 card_base_addr = cinfo->base_addr;
1336 index = cinfo->bus_index;
1337
f1e83c6c
JS
1338 /* card was not initialized yet (e.g. DEBUG_SHIRQ) */
1339 if (unlikely(card_base_addr == NULL))
1340 return IRQ_HANDLED;
1341
02f1175c
JS
1342 /* This loop checks all chips in the card. Make a note whenever
1343 _any_ chip had some work to do, as this is considered an
1344 indication that there will be more to do. Only when no chip
1345 has any work does this outermost loop exit.
1346 */
1347 do {
1348 had_work = 0;
1349 for (chip = 0; chip < cinfo->num_chips; chip++) {
1350 base_addr = cinfo->base_addr +
1351 (cy_chip_offset[chip] << index);
1352 too_many = 0;
db05c3b1 1353 while ((status = readb(base_addr +
02f1175c
JS
1354 (CySVRR << index))) != 0x00) {
1355 had_work++;
1356 /* The purpose of the following test is to ensure that
1357 no chip can monopolize the driver. This forces the
1358 chips to be checked in a round-robin fashion (after
1359 draining each of a bunch (1000) of characters).
1360 */
ce97a097 1361 if (1000 < too_many++)
02f1175c 1362 break;
1c0a387c 1363 spin_lock(&cinfo->card_lock);
ce97a097
JS
1364 if (status & CySRReceive) /* rx intr */
1365 cyy_chip_rx(cinfo, chip, base_addr);
1366 if (status & CySRTransmit) /* tx intr */
1367 cyy_chip_tx(cinfo, chip, base_addr);
1368 if (status & CySRModem) /* modem intr */
1369 cyy_chip_modem(cinfo, chip, base_addr);
1c0a387c 1370 spin_unlock(&cinfo->card_lock);
02f1175c
JS
1371 }
1372 }
1373 } while (had_work);
1374
1375 /* clear interrupts */
1376 spin_lock(&cinfo->card_lock);
1377 cy_writeb(card_base_addr + (Cy_ClrIntr << index), 0);
1378 /* Cy_ClrIntr is 0x1800 */
1379 spin_unlock(&cinfo->card_lock);
1380 return IRQ_HANDLED;
1381} /* cyy_interrupt */
1da177e4
LT
1382
1383/***********************************************************/
1384/********* End of block of Cyclom-Y specific code **********/
15ed6cc0 1385/******** Start of block of Cyclades-Z specific code *******/
1da177e4
LT
1386/***********************************************************/
1387
1388static int
02f1175c 1389cyz_fetch_msg(struct cyclades_card *cinfo,
15ed6cc0 1390 __u32 *channel, __u8 *cmd, __u32 *param)
1da177e4 1391{
02f1175c
JS
1392 struct FIRM_ID __iomem *firm_id;
1393 struct ZFW_CTRL __iomem *zfw_ctrl;
1394 struct BOARD_CTRL __iomem *board_ctrl;
1395 unsigned long loc_doorbell;
1396
1397 firm_id = cinfo->base_addr + ID_ADDRESS;
15ed6cc0 1398 if (!ISZLOADED(*cinfo))
096dcfce 1399 return -1;
db05c3b1 1400 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c
JS
1401 board_ctrl = &zfw_ctrl->board_ctrl;
1402
db05c3b1 1403 loc_doorbell = readl(&((struct RUNTIME_9060 __iomem *)
02f1175c
JS
1404 (cinfo->ctl_addr))->loc_doorbell);
1405 if (loc_doorbell) {
1406 *cmd = (char)(0xff & loc_doorbell);
db05c3b1
JS
1407 *channel = readl(&board_ctrl->fwcmd_channel);
1408 *param = (__u32) readl(&board_ctrl->fwcmd_param);
02f1175c
JS
1409 cy_writel(&((struct RUNTIME_9060 __iomem *)(cinfo->ctl_addr))->
1410 loc_doorbell, 0xffffffff);
1411 return 1;
1412 }
1413 return 0;
1414} /* cyz_fetch_msg */
1da177e4
LT
1415
1416static int
02f1175c 1417cyz_issue_cmd(struct cyclades_card *cinfo,
1a86b5e3 1418 __u32 channel, __u8 cmd, __u32 param)
1da177e4 1419{
02f1175c
JS
1420 struct FIRM_ID __iomem *firm_id;
1421 struct ZFW_CTRL __iomem *zfw_ctrl;
1422 struct BOARD_CTRL __iomem *board_ctrl;
1a86b5e3 1423 __u32 __iomem *pci_doorbell;
65f76a82 1424 unsigned int index;
02f1175c
JS
1425
1426 firm_id = cinfo->base_addr + ID_ADDRESS;
15ed6cc0 1427 if (!ISZLOADED(*cinfo))
096dcfce 1428 return -1;
15ed6cc0 1429
db05c3b1 1430 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c
JS
1431 board_ctrl = &zfw_ctrl->board_ctrl;
1432
1433 index = 0;
1434 pci_doorbell =
1435 &((struct RUNTIME_9060 __iomem *)(cinfo->ctl_addr))->pci_doorbell;
db05c3b1 1436 while ((readl(pci_doorbell) & 0xff) != 0) {
15ed6cc0 1437 if (index++ == 1000)
db05c3b1 1438 return (int)(readl(pci_doorbell) & 0xff);
02f1175c
JS
1439 udelay(50L);
1440 }
1441 cy_writel(&board_ctrl->hcmd_channel, channel);
1442 cy_writel(&board_ctrl->hcmd_param, param);
1443 cy_writel(pci_doorbell, (long)cmd);
1444
096dcfce 1445 return 0;
02f1175c 1446} /* cyz_issue_cmd */
1da177e4 1447
65f76a82 1448static void cyz_handle_rx(struct cyclades_port *info,
ad39c300 1449 struct BUF_CTRL __iomem *buf_ctrl)
1da177e4 1450{
875b206b 1451 struct cyclades_card *cinfo = info->card;
77451e53 1452 struct tty_struct *tty = info->port.tty;
65f76a82 1453 unsigned int char_count;
02f1175c 1454 int len;
1da177e4 1455#ifdef BLOCKMOVE
ce71b0ff 1456 unsigned char *buf;
1da177e4 1457#else
02f1175c 1458 char data;
1da177e4 1459#endif
ad39c300 1460 __u32 rx_put, rx_get, new_rx_get, rx_bufsize, rx_bufaddr;
1da177e4 1461
db05c3b1
JS
1462 rx_get = new_rx_get = readl(&buf_ctrl->rx_get);
1463 rx_put = readl(&buf_ctrl->rx_put);
1464 rx_bufsize = readl(&buf_ctrl->rx_bufsize);
1465 rx_bufaddr = readl(&buf_ctrl->rx_bufaddr);
02f1175c
JS
1466 if (rx_put >= rx_get)
1467 char_count = rx_put - rx_get;
1468 else
1469 char_count = rx_put - rx_get + rx_bufsize;
1da177e4 1470
02f1175c 1471 if (char_count) {
1da177e4 1472#ifdef CY_ENABLE_MONITORING
02f1175c
JS
1473 info->mon.int_count++;
1474 info->mon.char_count += char_count;
1475 if (char_count > info->mon.char_max)
1476 info->mon.char_max = char_count;
1477 info->mon.char_last = char_count;
1da177e4 1478#endif
f7429034 1479 if (tty == NULL) {
02f1175c
JS
1480 /* flush received characters */
1481 new_rx_get = (new_rx_get + char_count) &
1482 (rx_bufsize - 1);
1483 info->rflush_count++;
1484 } else {
1da177e4 1485#ifdef BLOCKMOVE
02f1175c
JS
1486 /* we'd like to use memcpy(t, f, n) and memset(s, c, count)
1487 for performance, but because of buffer boundaries, there
1488 may be several steps to the operation */
ce71b0ff
JS
1489 while (1) {
1490 len = tty_prepare_flip_string(tty, &buf,
1491 char_count);
1492 if (!len)
1493 break;
1494
1495 len = min_t(unsigned int, min(len, char_count),
1496 rx_bufsize - new_rx_get);
1497
1498 memcpy_fromio(buf, cinfo->base_addr +
1499 rx_bufaddr + new_rx_get, len);
1500
1501 new_rx_get = (new_rx_get + len) &
02f1175c 1502 (rx_bufsize - 1);
ce71b0ff
JS
1503 char_count -= len;
1504 info->icount.rx += len;
1505 info->idle_stats.recv_bytes += len;
02f1175c 1506 }
1da177e4 1507#else
02f1175c
JS
1508 len = tty_buffer_request_room(tty, char_count);
1509 while (len--) {
db05c3b1 1510 data = readb(cinfo->base_addr + rx_bufaddr +
02f1175c 1511 new_rx_get);
15ed6cc0
AC
1512 new_rx_get = (new_rx_get + 1) &
1513 (rx_bufsize - 1);
02f1175c
JS
1514 tty_insert_flip_char(tty, data, TTY_NORMAL);
1515 info->idle_stats.recv_bytes++;
1516 info->icount.rx++;
1517 }
1da177e4
LT
1518#endif
1519#ifdef CONFIG_CYZ_INTR
02f1175c
JS
1520 /* Recalculate the number of chars in the RX buffer and issue
1521 a cmd in case it's higher than the RX high water mark */
db05c3b1 1522 rx_put = readl(&buf_ctrl->rx_put);
02f1175c
JS
1523 if (rx_put >= rx_get)
1524 char_count = rx_put - rx_get;
1525 else
1526 char_count = rx_put - rx_get + rx_bufsize;
65f76a82 1527 if (char_count >= readl(&buf_ctrl->rx_threshold) &&
ebafeeff
JS
1528 !timer_pending(&cyz_rx_full_timer[
1529 info->line]))
1530 mod_timer(&cyz_rx_full_timer[info->line],
1531 jiffies + 1);
1da177e4 1532#endif
02f1175c
JS
1533 info->idle_stats.recv_idle = jiffies;
1534 tty_schedule_flip(tty);
1535 }
1536 /* Update rx_get */
1537 cy_writel(&buf_ctrl->rx_get, new_rx_get);
1da177e4 1538 }
1da177e4
LT
1539}
1540
65f76a82 1541static void cyz_handle_tx(struct cyclades_port *info,
ad39c300 1542 struct BUF_CTRL __iomem *buf_ctrl)
1da177e4 1543{
875b206b 1544 struct cyclades_card *cinfo = info->card;
77451e53 1545 struct tty_struct *tty = info->port.tty;
65f76a82
JS
1546 u8 data;
1547 unsigned int char_count;
1da177e4 1548#ifdef BLOCKMOVE
02f1175c 1549 int small_count;
1da177e4 1550#endif
ad39c300 1551 __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr;
1da177e4 1552
02f1175c
JS
1553 if (info->xmit_cnt <= 0) /* Nothing to transmit */
1554 return;
1da177e4 1555
db05c3b1
JS
1556 tx_get = readl(&buf_ctrl->tx_get);
1557 tx_put = readl(&buf_ctrl->tx_put);
1558 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
1559 tx_bufaddr = readl(&buf_ctrl->tx_bufaddr);
02f1175c
JS
1560 if (tx_put >= tx_get)
1561 char_count = tx_get - tx_put - 1 + tx_bufsize;
1562 else
1563 char_count = tx_get - tx_put - 1;
1da177e4 1564
02f1175c 1565 if (char_count) {
1da177e4 1566
f7429034 1567 if (tty == NULL)
02f1175c 1568 goto ztxdone;
1da177e4 1569
02f1175c
JS
1570 if (info->x_char) { /* send special char */
1571 data = info->x_char;
1da177e4 1572
02f1175c
JS
1573 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1574 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1575 info->x_char = 0;
1576 char_count--;
1577 info->icount.tx++;
02f1175c 1578 }
1da177e4 1579#ifdef BLOCKMOVE
02f1175c
JS
1580 while (0 < (small_count = min_t(unsigned int,
1581 tx_bufsize - tx_put, min_t(unsigned int,
1582 (SERIAL_XMIT_SIZE - info->xmit_tail),
1583 min_t(unsigned int, info->xmit_cnt,
1584 char_count))))) {
1585
1586 memcpy_toio((char *)(cinfo->base_addr + tx_bufaddr +
1587 tx_put),
77451e53 1588 &info->port.xmit_buf[info->xmit_tail],
02f1175c
JS
1589 small_count);
1590
1591 tx_put = (tx_put + small_count) & (tx_bufsize - 1);
1592 char_count -= small_count;
1593 info->icount.tx += small_count;
1594 info->xmit_cnt -= small_count;
1595 info->xmit_tail = (info->xmit_tail + small_count) &
1596 (SERIAL_XMIT_SIZE - 1);
02f1175c 1597 }
1da177e4 1598#else
02f1175c 1599 while (info->xmit_cnt && char_count) {
77451e53 1600 data = info->port.xmit_buf[info->xmit_tail];
02f1175c
JS
1601 info->xmit_cnt--;
1602 info->xmit_tail = (info->xmit_tail + 1) &
1603 (SERIAL_XMIT_SIZE - 1);
1604
1605 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1606 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1607 char_count--;
1608 info->icount.tx++;
02f1175c 1609 }
1da177e4 1610#endif
ebafeeff 1611 tty_wakeup(tty);
7fa57a0c 1612ztxdone:
02f1175c
JS
1613 /* Update tx_put */
1614 cy_writel(&buf_ctrl->tx_put, tx_put);
1da177e4 1615 }
1da177e4
LT
1616}
1617
02f1175c 1618static void cyz_handle_cmd(struct cyclades_card *cinfo)
1da177e4 1619{
02f1175c
JS
1620 struct tty_struct *tty;
1621 struct cyclades_port *info;
ad39c300
JS
1622 static struct FIRM_ID __iomem *firm_id;
1623 static struct ZFW_CTRL __iomem *zfw_ctrl;
1624 static struct BOARD_CTRL __iomem *board_ctrl;
1625 static struct CH_CTRL __iomem *ch_ctrl;
1626 static struct BUF_CTRL __iomem *buf_ctrl;
1a86b5e3
KK
1627 __u32 channel;
1628 __u8 cmd;
1629 __u32 param;
1630 __u32 hw_ver, fw_ver;
02f1175c
JS
1631 int special_count;
1632 int delta_count;
1633
1634 firm_id = cinfo->base_addr + ID_ADDRESS;
db05c3b1 1635 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c 1636 board_ctrl = &zfw_ctrl->board_ctrl;
db05c3b1
JS
1637 fw_ver = readl(&board_ctrl->fw_version);
1638 hw_ver = readl(&((struct RUNTIME_9060 __iomem *)(cinfo->ctl_addr))->
02f1175c
JS
1639 mail_box_0);
1640
1641 while (cyz_fetch_msg(cinfo, &channel, &cmd, &param) == 1) {
1642 special_count = 0;
1643 delta_count = 0;
dd025c0c 1644 info = &cinfo->ports[channel];
77451e53 1645 tty = info->port.tty;
15ed6cc0 1646 if (tty == NULL)
02f1175c 1647 continue;
f7429034 1648
02f1175c
JS
1649 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
1650 buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]);
1651
1652 switch (cmd) {
1653 case C_CM_PR_ERROR:
1654 tty_insert_flip_char(tty, 0, TTY_PARITY);
1655 info->icount.rx++;
1656 special_count++;
1657 break;
1658 case C_CM_FR_ERROR:
1659 tty_insert_flip_char(tty, 0, TTY_FRAME);
1660 info->icount.rx++;
1661 special_count++;
1662 break;
1663 case C_CM_RXBRK:
1664 tty_insert_flip_char(tty, 0, TTY_BREAK);
1665 info->icount.rx++;
1666 special_count++;
1667 break;
1668 case C_CM_MDCD:
1669 info->icount.dcd++;
1670 delta_count++;
77451e53 1671 if (info->port.flags & ASYNC_CHECK_CD) {
02f1175c 1672 if ((fw_ver > 241 ? ((u_long) param) :
db05c3b1 1673 readl(&ch_ctrl->rs_status)) &
02f1175c 1674 C_RS_DCD) {
77451e53 1675 wake_up_interruptible(&info->port.open_wait);
02f1175c 1676 } else {
77451e53
AC
1677 tty_hangup(info->port.tty);
1678 wake_up_interruptible(&info->port.open_wait);
1679 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
02f1175c
JS
1680 }
1681 }
1682 break;
1683 case C_CM_MCTS:
1684 info->icount.cts++;
1685 delta_count++;
1686 break;
1687 case C_CM_MRI:
1688 info->icount.rng++;
1689 delta_count++;
1690 break;
1691 case C_CM_MDSR:
1692 info->icount.dsr++;
1693 delta_count++;
1694 break;
1da177e4 1695#ifdef Z_WAKE
02f1175c 1696 case C_CM_IOCTLW:
ebafeeff 1697 complete(&info->shutdown_wait);
02f1175c 1698 break;
1da177e4
LT
1699#endif
1700#ifdef CONFIG_CYZ_INTR
02f1175c
JS
1701 case C_CM_RXHIWM:
1702 case C_CM_RXNNDT:
1703 case C_CM_INTBACK2:
1704 /* Reception Interrupt */
1da177e4 1705#ifdef CY_DEBUG_INTERRUPTS
21719191
JS
1706 printk(KERN_DEBUG "cyz_interrupt: rcvd intr, card %d, "
1707 "port %ld\n", info->card, channel);
1da177e4 1708#endif
65f76a82 1709 cyz_handle_rx(info, buf_ctrl);
02f1175c
JS
1710 break;
1711 case C_CM_TXBEMPTY:
1712 case C_CM_TXLOWWM:
1713 case C_CM_INTBACK:
1714 /* Transmission Interrupt */
1da177e4 1715#ifdef CY_DEBUG_INTERRUPTS
21719191
JS
1716 printk(KERN_DEBUG "cyz_interrupt: xmit intr, card %d, "
1717 "port %ld\n", info->card, channel);
1da177e4 1718#endif
65f76a82 1719 cyz_handle_tx(info, buf_ctrl);
02f1175c
JS
1720 break;
1721#endif /* CONFIG_CYZ_INTR */
1722 case C_CM_FATAL:
1723 /* should do something with this !!! */
1724 break;
1725 default:
1726 break;
1727 }
1728 if (delta_count)
ebafeeff 1729 wake_up_interruptible(&info->delta_msr_wait);
02f1175c
JS
1730 if (special_count)
1731 tty_schedule_flip(tty);
1da177e4 1732 }
1da177e4
LT
1733}
1734
1735#ifdef CONFIG_CYZ_INTR
02f1175c 1736static irqreturn_t cyz_interrupt(int irq, void *dev_id)
1da177e4 1737{
f7429034 1738 struct cyclades_card *cinfo = dev_id;
1da177e4 1739
f7429034 1740 if (unlikely(!ISZLOADED(*cinfo))) {
1da177e4 1741#ifdef CY_DEBUG_INTERRUPTS
21719191
JS
1742 printk(KERN_DEBUG "cyz_interrupt: board not yet loaded "
1743 "(IRQ%d).\n", irq);
1da177e4 1744#endif
02f1175c
JS
1745 return IRQ_NONE;
1746 }
1da177e4 1747
02f1175c
JS
1748 /* Handle the interrupts */
1749 cyz_handle_cmd(cinfo);
1da177e4 1750
02f1175c
JS
1751 return IRQ_HANDLED;
1752} /* cyz_interrupt */
1da177e4 1753
02f1175c 1754static void cyz_rx_restart(unsigned long arg)
1da177e4 1755{
02f1175c 1756 struct cyclades_port *info = (struct cyclades_port *)arg;
875b206b 1757 struct cyclades_card *card = info->card;
02f1175c 1758 int retval;
875b206b 1759 __u32 channel = info->line - card->first_line;
02f1175c
JS
1760 unsigned long flags;
1761
9fa1b3b1 1762 spin_lock_irqsave(&card->card_lock, flags);
875b206b 1763 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK2, 0L);
02f1175c 1764 if (retval != 0) {
21719191 1765 printk(KERN_ERR "cyc:cyz_rx_restart retval on ttyC%d was %x\n",
02f1175c
JS
1766 info->line, retval);
1767 }
9fa1b3b1 1768 spin_unlock_irqrestore(&card->card_lock, flags);
1da177e4
LT
1769}
1770
02f1175c 1771#else /* CONFIG_CYZ_INTR */
1da177e4 1772
02f1175c 1773static void cyz_poll(unsigned long arg)
1da177e4 1774{
02f1175c
JS
1775 struct cyclades_card *cinfo;
1776 struct cyclades_port *info;
1777 struct tty_struct *tty;
c4923b4f
JS
1778 struct FIRM_ID __iomem *firm_id;
1779 struct ZFW_CTRL __iomem *zfw_ctrl;
1780 struct BOARD_CTRL __iomem *board_ctrl;
c4923b4f 1781 struct BUF_CTRL __iomem *buf_ctrl;
b7050906 1782 unsigned long expires = jiffies + HZ;
65f76a82 1783 unsigned int port, card;
1da177e4 1784
02f1175c
JS
1785 for (card = 0; card < NR_CARDS; card++) {
1786 cinfo = &cy_card[card];
1787
1788 if (!IS_CYC_Z(*cinfo))
1789 continue;
1790 if (!ISZLOADED(*cinfo))
1791 continue;
1792
1793 firm_id = cinfo->base_addr + ID_ADDRESS;
1794 zfw_ctrl = cinfo->base_addr +
db05c3b1 1795 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c 1796 board_ctrl = &(zfw_ctrl->board_ctrl);
1da177e4
LT
1797
1798 /* Skip first polling cycle to avoid racing conditions with the FW */
02f1175c 1799 if (!cinfo->intr_enabled) {
db05c3b1 1800 cinfo->nports = (int)readl(&board_ctrl->n_channel);
02f1175c
JS
1801 cinfo->intr_enabled = 1;
1802 continue;
1803 }
1da177e4 1804
02f1175c 1805 cyz_handle_cmd(cinfo);
1da177e4 1806
02f1175c 1807 for (port = 0; port < cinfo->nports; port++) {
dd025c0c 1808 info = &cinfo->ports[port];
77451e53 1809 tty = info->port.tty;
02f1175c 1810 buf_ctrl = &(zfw_ctrl->buf_ctrl[port]);
1da177e4 1811
02f1175c 1812 if (!info->throttle)
65f76a82
JS
1813 cyz_handle_rx(info, buf_ctrl);
1814 cyz_handle_tx(info, buf_ctrl);
02f1175c
JS
1815 }
1816 /* poll every 'cyz_polling_cycle' period */
b7050906 1817 expires = jiffies + cyz_polling_cycle;
1da177e4 1818 }
b7050906 1819 mod_timer(&cyz_timerlist, expires);
02f1175c 1820} /* cyz_poll */
1da177e4 1821
02f1175c 1822#endif /* CONFIG_CYZ_INTR */
1da177e4
LT
1823
1824/********** End of block of Cyclades-Z specific code *********/
1825/***********************************************************/
1826
1da177e4
LT
1827/* This is called whenever a port becomes active;
1828 interrupts are enabled and DTR & RTS are turned on.
1829 */
02f1175c 1830static int startup(struct cyclades_port *info)
1da177e4 1831{
875b206b 1832 struct cyclades_card *card;
02f1175c
JS
1833 unsigned long flags;
1834 int retval = 0;
1835 void __iomem *base_addr;
875b206b 1836 int chip, channel, index;
02f1175c 1837 unsigned long page;
1da177e4 1838
02f1175c 1839 card = info->card;
875b206b 1840 channel = info->line - card->first_line;
1da177e4 1841
02f1175c
JS
1842 page = get_zeroed_page(GFP_KERNEL);
1843 if (!page)
1844 return -ENOMEM;
1da177e4 1845
9fa1b3b1 1846 spin_lock_irqsave(&card->card_lock, flags);
1da177e4 1847
77451e53 1848 if (info->port.flags & ASYNC_INITIALIZED) {
02f1175c
JS
1849 free_page(page);
1850 goto errout;
1851 }
1da177e4 1852
02f1175c 1853 if (!info->type) {
77451e53
AC
1854 if (info->port.tty)
1855 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
02f1175c
JS
1856 free_page(page);
1857 goto errout;
1858 }
1da177e4 1859
77451e53 1860 if (info->port.xmit_buf)
02f1175c
JS
1861 free_page(page);
1862 else
77451e53 1863 info->port.xmit_buf = (unsigned char *)page;
1da177e4 1864
9fa1b3b1 1865 spin_unlock_irqrestore(&card->card_lock, flags);
1da177e4 1866
02f1175c 1867 set_line_char(info);
1da177e4 1868
875b206b 1869 if (!IS_CYC_Z(*card)) {
02f1175c
JS
1870 chip = channel >> 2;
1871 channel &= 0x03;
875b206b
JS
1872 index = card->bus_index;
1873 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
1da177e4
LT
1874
1875#ifdef CY_DEBUG_OPEN
21719191
JS
1876 printk(KERN_DEBUG "cyc startup card %d, chip %d, channel %d, "
1877 "base_addr %p\n",
1878 card, chip, channel, base_addr);
1da177e4 1879#endif
9fa1b3b1 1880 spin_lock_irqsave(&card->card_lock, flags);
1da177e4 1881
02f1175c 1882 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
1da177e4 1883
02f1175c
JS
1884 cy_writeb(base_addr + (CyRTPR << index),
1885 (info->default_timeout ? info->default_timeout : 0x02));
1886 /* 10ms rx timeout */
1da177e4 1887
02f1175c
JS
1888 cyy_issue_cmd(base_addr, CyCHAN_CTL | CyENB_RCVR | CyENB_XMTR,
1889 index);
1da177e4 1890
02f1175c
JS
1891 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
1892 cy_writeb(base_addr + (CyMSVR1 << index), CyRTS);
1893 cy_writeb(base_addr + (CyMSVR2 << index), CyDTR);
1da177e4
LT
1894
1895#ifdef CY_DEBUG_DTR
21719191
JS
1896 printk(KERN_DEBUG "cyc:startup raising DTR\n");
1897 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
db05c3b1
JS
1898 readb(base_addr + (CyMSVR1 << index)),
1899 readb(base_addr + (CyMSVR2 << index)));
1da177e4
LT
1900#endif
1901
02f1175c 1902 cy_writeb(base_addr + (CySRER << index),
db05c3b1 1903 readb(base_addr + (CySRER << index)) | CyRxData);
77451e53 1904 info->port.flags |= ASYNC_INITIALIZED;
1da177e4 1905
77451e53
AC
1906 if (info->port.tty)
1907 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
02f1175c
JS
1908 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1909 info->breakon = info->breakoff = 0;
1910 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
1911 info->idle_stats.in_use =
1912 info->idle_stats.recv_idle =
1913 info->idle_stats.xmit_idle = jiffies;
1da177e4 1914
9fa1b3b1 1915 spin_unlock_irqrestore(&card->card_lock, flags);
1da177e4 1916
02f1175c
JS
1917 } else {
1918 struct FIRM_ID __iomem *firm_id;
1919 struct ZFW_CTRL __iomem *zfw_ctrl;
1920 struct BOARD_CTRL __iomem *board_ctrl;
1921 struct CH_CTRL __iomem *ch_ctrl;
1da177e4 1922
875b206b 1923 base_addr = card->base_addr;
1da177e4 1924
02f1175c 1925 firm_id = base_addr + ID_ADDRESS;
15ed6cc0 1926 if (!ISZLOADED(*card))
02f1175c 1927 return -ENODEV;
1da177e4 1928
875b206b 1929 zfw_ctrl = card->base_addr +
db05c3b1 1930 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c
JS
1931 board_ctrl = &zfw_ctrl->board_ctrl;
1932 ch_ctrl = zfw_ctrl->ch_ctrl;
1da177e4
LT
1933
1934#ifdef CY_DEBUG_OPEN
21719191
JS
1935 printk(KERN_DEBUG "cyc startup Z card %d, channel %d, "
1936 "base_addr %p\n", card, channel, base_addr);
1da177e4 1937#endif
9fa1b3b1 1938 spin_lock_irqsave(&card->card_lock, flags);
1da177e4 1939
02f1175c 1940 cy_writel(&ch_ctrl[channel].op_mode, C_CH_ENABLE);
1da177e4
LT
1941#ifdef Z_WAKE
1942#ifdef CONFIG_CYZ_INTR
02f1175c
JS
1943 cy_writel(&ch_ctrl[channel].intr_enable,
1944 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
1945 C_IN_RXNNDT | C_IN_IOCTLW | C_IN_MDCD);
1da177e4 1946#else
02f1175c
JS
1947 cy_writel(&ch_ctrl[channel].intr_enable,
1948 C_IN_IOCTLW | C_IN_MDCD);
1949#endif /* CONFIG_CYZ_INTR */
1da177e4
LT
1950#else
1951#ifdef CONFIG_CYZ_INTR
02f1175c
JS
1952 cy_writel(&ch_ctrl[channel].intr_enable,
1953 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
1954 C_IN_RXNNDT | C_IN_MDCD);
1da177e4 1955#else
02f1175c
JS
1956 cy_writel(&ch_ctrl[channel].intr_enable, C_IN_MDCD);
1957#endif /* CONFIG_CYZ_INTR */
1958#endif /* Z_WAKE */
1959
875b206b 1960 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
02f1175c 1961 if (retval != 0) {
21719191
JS
1962 printk(KERN_ERR "cyc:startup(1) retval on ttyC%d was "
1963 "%x\n", info->line, retval);
02f1175c 1964 }
1da177e4 1965
02f1175c 1966 /* Flush RX buffers before raising DTR and RTS */
875b206b 1967 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_RX, 0L);
02f1175c 1968 if (retval != 0) {
21719191
JS
1969 printk(KERN_ERR "cyc:startup(2) retval on ttyC%d was "
1970 "%x\n", info->line, retval);
02f1175c 1971 }
1da177e4 1972
02f1175c
JS
1973 /* set timeout !!! */
1974 /* set RTS and DTR !!! */
1975 cy_writel(&ch_ctrl[channel].rs_control,
db05c3b1 1976 readl(&ch_ctrl[channel].rs_control) | C_RS_RTS |
02f1175c 1977 C_RS_DTR);
9fa1b3b1 1978 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
02f1175c 1979 if (retval != 0) {
21719191
JS
1980 printk(KERN_ERR "cyc:startup(3) retval on ttyC%d was "
1981 "%x\n", info->line, retval);
02f1175c 1982 }
1da177e4 1983#ifdef CY_DEBUG_DTR
21719191 1984 printk(KERN_DEBUG "cyc:startup raising Z DTR\n");
1da177e4
LT
1985#endif
1986
02f1175c
JS
1987 /* enable send, recv, modem !!! */
1988
77451e53
AC
1989 info->port.flags |= ASYNC_INITIALIZED;
1990 if (info->port.tty)
1991 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
02f1175c
JS
1992 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1993 info->breakon = info->breakoff = 0;
1994 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
1995 info->idle_stats.in_use =
1996 info->idle_stats.recv_idle =
1997 info->idle_stats.xmit_idle = jiffies;
1da177e4 1998
9fa1b3b1 1999 spin_unlock_irqrestore(&card->card_lock, flags);
1da177e4 2000 }
1da177e4
LT
2001
2002#ifdef CY_DEBUG_OPEN
21719191 2003 printk(KERN_DEBUG "cyc startup done\n");
1da177e4
LT
2004#endif
2005 return 0;
2006
2007errout:
9fa1b3b1 2008 spin_unlock_irqrestore(&card->card_lock, flags);
1da177e4 2009 return retval;
02f1175c 2010} /* startup */
1da177e4 2011
02f1175c 2012static void start_xmit(struct cyclades_port *info)
1da177e4 2013{
875b206b 2014 struct cyclades_card *card;
02f1175c
JS
2015 unsigned long flags;
2016 void __iomem *base_addr;
875b206b 2017 int chip, channel, index;
1da177e4 2018
02f1175c 2019 card = info->card;
875b206b
JS
2020 channel = info->line - card->first_line;
2021 if (!IS_CYC_Z(*card)) {
02f1175c
JS
2022 chip = channel >> 2;
2023 channel &= 0x03;
875b206b
JS
2024 index = card->bus_index;
2025 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
02f1175c 2026
9fa1b3b1 2027 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
2028 cy_writeb(base_addr + (CyCAR << index), channel);
2029 cy_writeb(base_addr + (CySRER << index),
db05c3b1 2030 readb(base_addr + (CySRER << index)) | CyTxRdy);
9fa1b3b1 2031 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c 2032 } else {
1da177e4 2033#ifdef CONFIG_CYZ_INTR
02f1175c 2034 int retval;
1da177e4 2035
9fa1b3b1 2036 spin_lock_irqsave(&card->card_lock, flags);
875b206b 2037 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK, 0L);
02f1175c 2038 if (retval != 0) {
21719191
JS
2039 printk(KERN_ERR "cyc:start_xmit retval on ttyC%d was "
2040 "%x\n", info->line, retval);
02f1175c 2041 }
9fa1b3b1 2042 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
2043#else /* CONFIG_CYZ_INTR */
2044 /* Don't have to do anything at this time */
2045#endif /* CONFIG_CYZ_INTR */
2046 }
2047} /* start_xmit */
1da177e4
LT
2048
2049/*
2050 * This routine shuts down a serial port; interrupts are disabled,
2051 * and DTR is dropped if the hangup on close termio flag is on.
2052 */
02f1175c 2053static void shutdown(struct cyclades_port *info)
1da177e4 2054{
875b206b 2055 struct cyclades_card *card;
02f1175c
JS
2056 unsigned long flags;
2057 void __iomem *base_addr;
875b206b 2058 int chip, channel, index;
02f1175c 2059
77451e53 2060 if (!(info->port.flags & ASYNC_INITIALIZED))
02f1175c 2061 return;
02f1175c
JS
2062
2063 card = info->card;
875b206b
JS
2064 channel = info->line - card->first_line;
2065 if (!IS_CYC_Z(*card)) {
02f1175c
JS
2066 chip = channel >> 2;
2067 channel &= 0x03;
875b206b
JS
2068 index = card->bus_index;
2069 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
1da177e4
LT
2070
2071#ifdef CY_DEBUG_OPEN
21719191
JS
2072 printk(KERN_DEBUG "cyc shutdown Y card %d, chip %d, "
2073 "channel %d, base_addr %p\n",
2074 card, chip, channel, base_addr);
1da177e4
LT
2075#endif
2076
9fa1b3b1 2077 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
2078
2079 /* Clear delta_msr_wait queue to avoid mem leaks. */
2080 wake_up_interruptible(&info->delta_msr_wait);
1da177e4 2081
77451e53 2082 if (info->port.xmit_buf) {
02f1175c 2083 unsigned char *temp;
77451e53
AC
2084 temp = info->port.xmit_buf;
2085 info->port.xmit_buf = NULL;
02f1175c
JS
2086 free_page((unsigned long)temp);
2087 }
2088 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
77451e53 2089 if (!info->port.tty || (info->port.tty->termios->c_cflag & HUPCL)) {
02f1175c
JS
2090 cy_writeb(base_addr + (CyMSVR1 << index), ~CyRTS);
2091 cy_writeb(base_addr + (CyMSVR2 << index), ~CyDTR);
1da177e4 2092#ifdef CY_DEBUG_DTR
21719191
JS
2093 printk(KERN_DEBUG "cyc shutdown dropping DTR\n");
2094 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
db05c3b1
JS
2095 readb(base_addr + (CyMSVR1 << index)),
2096 readb(base_addr + (CyMSVR2 << index)));
1da177e4 2097#endif
02f1175c
JS
2098 }
2099 cyy_issue_cmd(base_addr, CyCHAN_CTL | CyDIS_RCVR, index);
2100 /* it may be appropriate to clear _XMIT at
2101 some later date (after testing)!!! */
2102
77451e53
AC
2103 if (info->port.tty)
2104 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
2105 info->port.flags &= ~ASYNC_INITIALIZED;
9fa1b3b1 2106 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
2107 } else {
2108 struct FIRM_ID __iomem *firm_id;
2109 struct ZFW_CTRL __iomem *zfw_ctrl;
2110 struct BOARD_CTRL __iomem *board_ctrl;
2111 struct CH_CTRL __iomem *ch_ctrl;
2112 int retval;
2113
875b206b 2114 base_addr = card->base_addr;
1da177e4 2115#ifdef CY_DEBUG_OPEN
21719191
JS
2116 printk(KERN_DEBUG "cyc shutdown Z card %d, channel %d, "
2117 "base_addr %p\n", card, channel, base_addr);
1da177e4
LT
2118#endif
2119
02f1175c 2120 firm_id = base_addr + ID_ADDRESS;
15ed6cc0 2121 if (!ISZLOADED(*card))
02f1175c 2122 return;
1da177e4 2123
875b206b 2124 zfw_ctrl = card->base_addr +
db05c3b1 2125 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c
JS
2126 board_ctrl = &zfw_ctrl->board_ctrl;
2127 ch_ctrl = zfw_ctrl->ch_ctrl;
1da177e4 2128
9fa1b3b1 2129 spin_lock_irqsave(&card->card_lock, flags);
1da177e4 2130
77451e53 2131 if (info->port.xmit_buf) {
02f1175c 2132 unsigned char *temp;
77451e53
AC
2133 temp = info->port.xmit_buf;
2134 info->port.xmit_buf = NULL;
02f1175c 2135 free_page((unsigned long)temp);
1da177e4 2136 }
02f1175c 2137
77451e53 2138 if (!info->port.tty || (info->port.tty->termios->c_cflag & HUPCL)) {
02f1175c 2139 cy_writel(&ch_ctrl[channel].rs_control,
db05c3b1 2140 (__u32)(readl(&ch_ctrl[channel].rs_control) &
02f1175c 2141 ~(C_RS_RTS | C_RS_DTR)));
875b206b 2142 retval = cyz_issue_cmd(info->card, channel,
02f1175c
JS
2143 C_CM_IOCTLM, 0L);
2144 if (retval != 0) {
21719191
JS
2145 printk(KERN_ERR"cyc:shutdown retval on ttyC%d "
2146 "was %x\n", info->line, retval);
02f1175c 2147 }
1da177e4 2148#ifdef CY_DEBUG_DTR
21719191 2149 printk(KERN_DEBUG "cyc:shutdown dropping Z DTR\n");
1da177e4 2150#endif
02f1175c 2151 }
1da177e4 2152
77451e53
AC
2153 if (info->port.tty)
2154 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
2155 info->port.flags &= ~ASYNC_INITIALIZED;
02f1175c 2156
9fa1b3b1 2157 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c 2158 }
1da177e4
LT
2159
2160#ifdef CY_DEBUG_OPEN
21719191 2161 printk(KERN_DEBUG "cyc shutdown done\n");
1da177e4 2162#endif
02f1175c 2163} /* shutdown */
1da177e4
LT
2164
2165/*
2166 * ------------------------------------------------------------
2167 * cy_open() and friends
2168 * ------------------------------------------------------------
2169 */
2170
2171static int
02f1175c
JS
2172block_til_ready(struct tty_struct *tty, struct file *filp,
2173 struct cyclades_port *info)
1da177e4 2174{
02f1175c
JS
2175 DECLARE_WAITQUEUE(wait, current);
2176 struct cyclades_card *cinfo;
2177 unsigned long flags;
2178 int chip, channel, index;
2179 int retval;
2180 void __iomem *base_addr;
2181
875b206b 2182 cinfo = info->card;
02f1175c
JS
2183 channel = info->line - cinfo->first_line;
2184
2185 /*
2186 * If the device is in the middle of being closed, then block
2187 * until it's done, and then try again.
2188 */
77451e53
AC
2189 if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) {
2190 wait_event_interruptible(info->port.close_wait,
2191 !(info->port.flags & ASYNC_CLOSING));
2192 return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
1da177e4 2193 }
02f1175c
JS
2194
2195 /*
2196 * If non-blocking mode is set, then make the check up front
2197 * and then exit.
2198 */
15ed6cc0
AC
2199 if ((filp->f_flags & O_NONBLOCK) ||
2200 (tty->flags & (1 << TTY_IO_ERROR))) {
77451e53 2201 info->port.flags |= ASYNC_NORMAL_ACTIVE;
02f1175c
JS
2202 return 0;
2203 }
2204
2205 /*
2206 * Block waiting for the carrier detect and the line to become
2207 * free (i.e., not in use by the callout). While we are in
77451e53 2208 * this loop, info->port.count is dropped by one, so that
02f1175c
JS
2209 * cy_close() knows when to free things. We restore it upon
2210 * exit, either normal or abnormal.
2211 */
2212 retval = 0;
77451e53 2213 add_wait_queue(&info->port.open_wait, &wait);
1da177e4 2214#ifdef CY_DEBUG_OPEN
21719191 2215 printk(KERN_DEBUG "cyc block_til_ready before block: ttyC%d, "
77451e53 2216 "count = %d\n", info->line, info->port.count);
1da177e4 2217#endif
9fa1b3b1 2218 spin_lock_irqsave(&cinfo->card_lock, flags);
02f1175c 2219 if (!tty_hung_up_p(filp))
77451e53 2220 info->port.count--;
9fa1b3b1 2221 spin_unlock_irqrestore(&cinfo->card_lock, flags);
1da177e4 2222#ifdef CY_DEBUG_COUNT
21719191 2223 printk(KERN_DEBUG "cyc block_til_ready: (%d): decrementing count to "
77451e53 2224 "%d\n", current->pid, info->port.count);
1da177e4 2225#endif
77451e53 2226 info->port.blocked_open++;
02f1175c
JS
2227
2228 if (!IS_CYC_Z(*cinfo)) {
2229 chip = channel >> 2;
2230 channel &= 0x03;
2231 index = cinfo->bus_index;
2232 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
2233
2234 while (1) {
9fa1b3b1 2235 spin_lock_irqsave(&cinfo->card_lock, flags);
02f1175c
JS
2236 if ((tty->termios->c_cflag & CBAUD)) {
2237 cy_writeb(base_addr + (CyCAR << index),
2238 (u_char) channel);
2239 cy_writeb(base_addr + (CyMSVR1 << index),
2240 CyRTS);
2241 cy_writeb(base_addr + (CyMSVR2 << index),
2242 CyDTR);
1da177e4 2243#ifdef CY_DEBUG_DTR
21719191
JS
2244 printk(KERN_DEBUG "cyc:block_til_ready raising "
2245 "DTR\n");
2246 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
db05c3b1
JS
2247 readb(base_addr + (CyMSVR1 << index)),
2248 readb(base_addr + (CyMSVR2 << index)));
1da177e4 2249#endif
02f1175c 2250 }
9fa1b3b1 2251 spin_unlock_irqrestore(&cinfo->card_lock, flags);
1da177e4 2252
02f1175c
JS
2253 set_current_state(TASK_INTERRUPTIBLE);
2254 if (tty_hung_up_p(filp) ||
77451e53
AC
2255 !(info->port.flags & ASYNC_INITIALIZED)) {
2256 retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
02f1175c
JS
2257 -EAGAIN : -ERESTARTSYS);
2258 break;
2259 }
1da177e4 2260
9fa1b3b1 2261 spin_lock_irqsave(&cinfo->card_lock, flags);
02f1175c
JS
2262 cy_writeb(base_addr + (CyCAR << index),
2263 (u_char) channel);
77451e53 2264 if (!(info->port.flags & ASYNC_CLOSING) && (C_CLOCAL(tty) ||
db05c3b1 2265 (readb(base_addr +
02f1175c 2266 (CyMSVR1 << index)) & CyDCD))) {
9fa1b3b1 2267 spin_unlock_irqrestore(&cinfo->card_lock, flags);
02f1175c
JS
2268 break;
2269 }
9fa1b3b1 2270 spin_unlock_irqrestore(&cinfo->card_lock, flags);
1da177e4 2271
02f1175c
JS
2272 if (signal_pending(current)) {
2273 retval = -ERESTARTSYS;
2274 break;
2275 }
1da177e4 2276#ifdef CY_DEBUG_OPEN
21719191
JS
2277 printk(KERN_DEBUG "cyc block_til_ready blocking: "
2278 "ttyC%d, count = %d\n",
77451e53 2279 info->line, info->port.count);
1da177e4 2280#endif
02f1175c 2281 schedule();
1da177e4 2282 }
02f1175c
JS
2283 } else {
2284 struct FIRM_ID __iomem *firm_id;
2285 struct ZFW_CTRL __iomem *zfw_ctrl;
2286 struct BOARD_CTRL __iomem *board_ctrl;
2287 struct CH_CTRL __iomem *ch_ctrl;
02f1175c
JS
2288
2289 base_addr = cinfo->base_addr;
2290 firm_id = base_addr + ID_ADDRESS;
2291 if (!ISZLOADED(*cinfo)) {
cc0a8fbb 2292 __set_current_state(TASK_RUNNING);
77451e53 2293 remove_wait_queue(&info->port.open_wait, &wait);
02f1175c
JS
2294 return -EINVAL;
2295 }
2296
15ed6cc0
AC
2297 zfw_ctrl = base_addr + (readl(&firm_id->zfwctrl_addr)
2298 & 0xfffff);
02f1175c
JS
2299 board_ctrl = &zfw_ctrl->board_ctrl;
2300 ch_ctrl = zfw_ctrl->ch_ctrl;
2301
2302 while (1) {
2303 if ((tty->termios->c_cflag & CBAUD)) {
2304 cy_writel(&ch_ctrl[channel].rs_control,
db05c3b1
JS
2305 readl(&ch_ctrl[channel].rs_control) |
2306 C_RS_RTS | C_RS_DTR);
9fa1b3b1 2307 retval = cyz_issue_cmd(cinfo,
db05c3b1 2308 channel, C_CM_IOCTLM, 0L);
02f1175c 2309 if (retval != 0) {
21719191
JS
2310 printk(KERN_ERR "cyc:block_til_ready "
2311 "retval on ttyC%d was %x\n",
02f1175c
JS
2312 info->line, retval);
2313 }
1da177e4 2314#ifdef CY_DEBUG_DTR
21719191
JS
2315 printk(KERN_DEBUG "cyc:block_til_ready raising "
2316 "Z DTR\n");
1da177e4 2317#endif
02f1175c 2318 }
1da177e4 2319
02f1175c
JS
2320 set_current_state(TASK_INTERRUPTIBLE);
2321 if (tty_hung_up_p(filp) ||
77451e53
AC
2322 !(info->port.flags & ASYNC_INITIALIZED)) {
2323 retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
02f1175c
JS
2324 -EAGAIN : -ERESTARTSYS);
2325 break;
2326 }
77451e53 2327 if (!(info->port.flags & ASYNC_CLOSING) && (C_CLOCAL(tty) ||
db05c3b1 2328 (readl(&ch_ctrl[channel].rs_status) &
02f1175c
JS
2329 C_RS_DCD))) {
2330 break;
2331 }
2332 if (signal_pending(current)) {
2333 retval = -ERESTARTSYS;
2334 break;
2335 }
1da177e4 2336#ifdef CY_DEBUG_OPEN
21719191
JS
2337 printk(KERN_DEBUG "cyc block_til_ready blocking: "
2338 "ttyC%d, count = %d\n",
77451e53 2339 info->line, info->port.count);
1da177e4 2340#endif
02f1175c
JS
2341 schedule();
2342 }
1da177e4 2343 }
cc0a8fbb 2344 __set_current_state(TASK_RUNNING);
77451e53 2345 remove_wait_queue(&info->port.open_wait, &wait);
02f1175c 2346 if (!tty_hung_up_p(filp)) {
77451e53 2347 info->port.count++;
1da177e4 2348#ifdef CY_DEBUG_COUNT
21719191 2349 printk(KERN_DEBUG "cyc:block_til_ready (%d): incrementing "
77451e53 2350 "count to %d\n", current->pid, info->port.count);
1da177e4 2351#endif
02f1175c 2352 }
77451e53 2353 info->port.blocked_open--;
1da177e4 2354#ifdef CY_DEBUG_OPEN
21719191 2355 printk(KERN_DEBUG "cyc:block_til_ready after blocking: ttyC%d, "
77451e53 2356 "count = %d\n", info->line, info->port.count);
1da177e4 2357#endif
02f1175c
JS
2358 if (retval)
2359 return retval;
77451e53 2360 info->port.flags |= ASYNC_NORMAL_ACTIVE;
02f1175c
JS
2361 return 0;
2362} /* block_til_ready */
1da177e4
LT
2363
2364/*
2365 * This routine is called whenever a serial port is opened. It
2366 * performs the serial-specific initialization for the tty structure.
2367 */
02f1175c 2368static int cy_open(struct tty_struct *tty, struct file *filp)
1da177e4 2369{
02f1175c 2370 struct cyclades_port *info;
65f76a82
JS
2371 unsigned int i, line;
2372 int retval;
1da177e4 2373
02f1175c 2374 line = tty->index;
15ed6cc0 2375 if (tty->index < 0 || NR_PORTS <= line)
02f1175c 2376 return -ENODEV;
15ed6cc0 2377
dd025c0c
JS
2378 for (i = 0; i < NR_CARDS; i++)
2379 if (line < cy_card[i].first_line + cy_card[i].nports &&
2380 line >= cy_card[i].first_line)
2381 break;
2382 if (i >= NR_CARDS)
2383 return -ENODEV;
2384 info = &cy_card[i].ports[line - cy_card[i].first_line];
15ed6cc0 2385 if (info->line < 0)
02f1175c 2386 return -ENODEV;
1da177e4 2387
02f1175c
JS
2388 /* If the card's firmware hasn't been loaded,
2389 treat it as absent from the system. This
2390 will make the user pay attention.
2391 */
875b206b
JS
2392 if (IS_CYC_Z(*info->card)) {
2393 struct cyclades_card *cinfo = info->card;
02f1175c
JS
2394 struct FIRM_ID __iomem *firm_id = cinfo->base_addr + ID_ADDRESS;
2395
2396 if (!ISZLOADED(*cinfo)) {
db05c3b1 2397 if (((ZE_V1 == readl(&((struct RUNTIME_9060 __iomem *)
02f1175c
JS
2398 (cinfo->ctl_addr))->mail_box_0)) &&
2399 Z_FPGA_CHECK(*cinfo)) &&
db05c3b1 2400 (ZFIRM_HLT == readl(
02f1175c 2401 &firm_id->signature))) {
21719191
JS
2402 printk(KERN_ERR "cyc:Cyclades-Z Error: you "
2403 "need an external power supply for "
2404 "this number of ports.\nFirmware "
2405 "halted.\n");
02f1175c 2406 } else {
21719191
JS
2407 printk(KERN_ERR "cyc:Cyclades-Z firmware not "
2408 "yet loaded\n");
02f1175c
JS
2409 }
2410 return -ENODEV;
2411 }
2412#ifdef CONFIG_CYZ_INTR
2413 else {
2414 /* In case this Z board is operating in interrupt mode, its
2415 interrupts should be enabled as soon as the first open
2416 happens to one of its ports. */
2417 if (!cinfo->intr_enabled) {
2418 struct ZFW_CTRL __iomem *zfw_ctrl;
2419 struct BOARD_CTRL __iomem *board_ctrl;
2420
2421 zfw_ctrl = cinfo->base_addr +
db05c3b1
JS
2422 (readl(&firm_id->zfwctrl_addr) &
2423 0xfffff);
02f1175c
JS
2424
2425 board_ctrl = &zfw_ctrl->board_ctrl;
2426
2427 /* Enable interrupts on the PLX chip */
2428 cy_writew(cinfo->ctl_addr + 0x68,
db05c3b1 2429 readw(cinfo->ctl_addr + 0x68) | 0x0900);
02f1175c
JS
2430 /* Enable interrupts on the FW */
2431 retval = cyz_issue_cmd(cinfo, 0,
2432 C_CM_IRQ_ENBL, 0L);
2433 if (retval != 0) {
21719191
JS
2434 printk(KERN_ERR "cyc:IRQ enable retval "
2435 "was %x\n", retval);
02f1175c
JS
2436 }
2437 cinfo->nports =
db05c3b1 2438 (int)readl(&board_ctrl->n_channel);
02f1175c
JS
2439 cinfo->intr_enabled = 1;
2440 }
1da177e4 2441 }
02f1175c
JS
2442#endif /* CONFIG_CYZ_INTR */
2443 /* Make sure this Z port really exists in hardware */
2444 if (info->line > (cinfo->first_line + cinfo->nports - 1))
2445 return -ENODEV;
1da177e4 2446 }
1da177e4 2447#ifdef CY_DEBUG_OTHER
21719191 2448 printk(KERN_DEBUG "cyc:cy_open ttyC%d\n", info->line);
1da177e4 2449#endif
02f1175c 2450 tty->driver_data = info;
77451e53 2451 info->port.tty = tty;
15ed6cc0 2452 if (serial_paranoia_check(info, tty->name, "cy_open"))
02f1175c 2453 return -ENODEV;
15ed6cc0 2454
1da177e4 2455#ifdef CY_DEBUG_OPEN
21719191 2456 printk(KERN_DEBUG "cyc:cy_open ttyC%d, count = %d\n", info->line,
77451e53 2457 info->port.count);
1da177e4 2458#endif
77451e53 2459 info->port.count++;
1da177e4 2460#ifdef CY_DEBUG_COUNT
21719191 2461 printk(KERN_DEBUG "cyc:cy_open (%d): incrementing count to %d\n",
77451e53 2462 current->pid, info->port.count);
1da177e4 2463#endif
1da177e4 2464
02f1175c
JS
2465 /*
2466 * If the port is the middle of closing, bail out now
2467 */
77451e53
AC
2468 if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) {
2469 wait_event_interruptible(info->port.close_wait,
2470 !(info->port.flags & ASYNC_CLOSING));
2471 return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
02f1175c 2472 }
1da177e4 2473
02f1175c
JS
2474 /*
2475 * Start up serial port
2476 */
2477 retval = startup(info);
15ed6cc0 2478 if (retval)
02f1175c 2479 return retval;
1da177e4 2480
02f1175c
JS
2481 retval = block_til_ready(tty, filp, info);
2482 if (retval) {
1da177e4 2483#ifdef CY_DEBUG_OPEN
21719191
JS
2484 printk(KERN_DEBUG "cyc:cy_open returning after block_til_ready "
2485 "with %d\n", retval);
1da177e4 2486#endif
02f1175c
JS
2487 return retval;
2488 }
1da177e4 2489
02f1175c 2490 info->throttle = 0;
1da177e4 2491
02f1175c 2492#ifdef CY_DEBUG_OPEN
21719191 2493 printk(KERN_DEBUG "cyc:cy_open done\n");
02f1175c
JS
2494#endif
2495 return 0;
2496} /* cy_open */
1da177e4
LT
2497
2498/*
2499 * cy_wait_until_sent() --- wait until the transmitter is empty
2500 */
02f1175c 2501static void cy_wait_until_sent(struct tty_struct *tty, int timeout)
1da177e4 2502{
875b206b 2503 struct cyclades_card *card;
cab9bdd1 2504 struct cyclades_port *info = tty->driver_data;
02f1175c 2505 void __iomem *base_addr;
875b206b 2506 int chip, channel, index;
02f1175c
JS
2507 unsigned long orig_jiffies;
2508 int char_time;
2509
2510 if (serial_paranoia_check(info, tty->name, "cy_wait_until_sent"))
2511 return;
2512
2513 if (info->xmit_fifo_size == 0)
2514 return; /* Just in case.... */
1da177e4 2515
02f1175c 2516 orig_jiffies = jiffies;
978e595f 2517 lock_kernel();
02f1175c
JS
2518 /*
2519 * Set the check interval to be 1/5 of the estimated time to
2520 * send a single character, and make it at least 1. The check
2521 * interval should also be less than the timeout.
2522 *
2523 * Note: we have to use pretty tight timings here to satisfy
2524 * the NIST-PCTS.
2525 */
2526 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2527 char_time = char_time / 5;
2528 if (char_time <= 0)
2529 char_time = 1;
2530 if (timeout < 0)
2531 timeout = 0;
2532 if (timeout)
2533 char_time = min(char_time, timeout);
2534 /*
2535 * If the transmitter hasn't cleared in twice the approximate
2536 * amount of time to send the entire FIFO, it probably won't
2537 * ever clear. This assumes the UART isn't doing flow
2538 * control, which is currently the case. Hence, if it ever
2539 * takes longer than info->timeout, this is probably due to a
2540 * UART bug of some kind. So, we clamp the timeout parameter at
2541 * 2*info->timeout.
2542 */
2543 if (!timeout || timeout > 2 * info->timeout)
2544 timeout = 2 * info->timeout;
1da177e4 2545#ifdef CY_DEBUG_WAIT_UNTIL_SENT
21719191
JS
2546 printk(KERN_DEBUG "In cy_wait_until_sent(%d) check=%d, jiff=%lu...",
2547 timeout, char_time, jiffies);
1da177e4 2548#endif
02f1175c 2549 card = info->card;
875b206b
JS
2550 channel = (info->line) - (card->first_line);
2551 if (!IS_CYC_Z(*card)) {
02f1175c
JS
2552 chip = channel >> 2;
2553 channel &= 0x03;
875b206b
JS
2554 index = card->bus_index;
2555 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
db05c3b1 2556 while (readb(base_addr + (CySRER << index)) & CyTxRdy) {
1da177e4 2557#ifdef CY_DEBUG_WAIT_UNTIL_SENT
21719191 2558 printk(KERN_DEBUG "Not clean (jiff=%lu)...", jiffies);
1da177e4 2559#endif
02f1175c
JS
2560 if (msleep_interruptible(jiffies_to_msecs(char_time)))
2561 break;
2562 if (timeout && time_after(jiffies, orig_jiffies +
2563 timeout))
2564 break;
2565 }
1da177e4 2566 }
02f1175c
JS
2567 /* Run one more char cycle */
2568 msleep_interruptible(jiffies_to_msecs(char_time * 5));
978e595f 2569 unlock_kernel();
1da177e4 2570#ifdef CY_DEBUG_WAIT_UNTIL_SENT
21719191 2571 printk(KERN_DEBUG "Clean (jiff=%lu)...done\n", jiffies);
1da177e4
LT
2572#endif
2573}
2574
978e595f
AC
2575static void cy_flush_buffer(struct tty_struct *tty)
2576{
2577 struct cyclades_port *info = tty->driver_data;
2578 struct cyclades_card *card;
2579 int channel, retval;
2580 unsigned long flags;
2581
2582#ifdef CY_DEBUG_IO
2583 printk(KERN_DEBUG "cyc:cy_flush_buffer ttyC%d\n", info->line);
2584#endif
2585
2586 if (serial_paranoia_check(info, tty->name, "cy_flush_buffer"))
2587 return;
2588
2589 card = info->card;
2590 channel = info->line - card->first_line;
2591
2592 spin_lock_irqsave(&card->card_lock, flags);
2593 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
2594 spin_unlock_irqrestore(&card->card_lock, flags);
2595
2596 if (IS_CYC_Z(*card)) { /* If it is a Z card, flush the on-board
2597 buffers as well */
2598 spin_lock_irqsave(&card->card_lock, flags);
2599 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_TX, 0L);
2600 if (retval != 0) {
2601 printk(KERN_ERR "cyc: flush_buffer retval on ttyC%d "
2602 "was %x\n", info->line, retval);
2603 }
2604 spin_unlock_irqrestore(&card->card_lock, flags);
2605 }
2606 tty_wakeup(tty);
2607} /* cy_flush_buffer */
2608
2609
1da177e4
LT
2610/*
2611 * This routine is called when a particular tty device is closed.
2612 */
02f1175c 2613static void cy_close(struct tty_struct *tty, struct file *filp)
1da177e4 2614{
cab9bdd1 2615 struct cyclades_port *info = tty->driver_data;
9fa1b3b1 2616 struct cyclades_card *card;
02f1175c 2617 unsigned long flags;
1da177e4
LT
2618
2619#ifdef CY_DEBUG_OTHER
21719191 2620 printk(KERN_DEBUG "cyc:cy_close ttyC%d\n", info->line);
1da177e4
LT
2621#endif
2622
15ed6cc0 2623 if (!info || serial_paranoia_check(info, tty->name, "cy_close"))
02f1175c 2624 return;
1da177e4 2625
9fa1b3b1
JS
2626 card = info->card;
2627
2628 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
2629 /* If the TTY is being hung up, nothing to do */
2630 if (tty_hung_up_p(filp)) {
9fa1b3b1 2631 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
2632 return;
2633 }
1da177e4 2634#ifdef CY_DEBUG_OPEN
21719191 2635 printk(KERN_DEBUG "cyc:cy_close ttyC%d, count = %d\n", info->line,
77451e53 2636 info->port.count);
1da177e4 2637#endif
77451e53 2638 if ((tty->count == 1) && (info->port.count != 1)) {
02f1175c
JS
2639 /*
2640 * Uh, oh. tty->count is 1, which means that the tty
2641 * structure will be freed. Info->count should always
2642 * be one in these conditions. If it's greater than
2643 * one, we've got real problems, since it means the
2644 * serial port won't be shutdown.
2645 */
21719191 2646 printk(KERN_ERR "cyc:cy_close: bad serial port count; "
77451e53
AC
2647 "tty->count is 1, info->port.count is %d\n", info->port.count);
2648 info->port.count = 1;
02f1175c 2649 }
1da177e4 2650#ifdef CY_DEBUG_COUNT
21719191 2651 printk(KERN_DEBUG "cyc:cy_close at (%d): decrementing count to %d\n",
77451e53 2652 current->pid, info->port.count - 1);
1da177e4 2653#endif
77451e53 2654 if (--info->port.count < 0) {
1da177e4 2655#ifdef CY_DEBUG_COUNT
21719191 2656 printk(KERN_DEBUG "cyc:cyc_close setting count to 0\n");
1da177e4 2657#endif
77451e53 2658 info->port.count = 0;
1da177e4 2659 }
77451e53 2660 if (info->port.count) {
9fa1b3b1 2661 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
2662 return;
2663 }
77451e53 2664 info->port.flags |= ASYNC_CLOSING;
1da177e4 2665
02f1175c
JS
2666 /*
2667 * Now we wait for the transmit buffer to clear; and we notify
2668 * the line discipline to only process XON/XOFF characters.
2669 */
2670 tty->closing = 1;
9fa1b3b1 2671 spin_unlock_irqrestore(&card->card_lock, flags);
44b7d1b3
AC
2672 if (info->port.closing_wait != CY_CLOSING_WAIT_NONE)
2673 tty_wait_until_sent(tty, info->port.closing_wait);
15ed6cc0 2674
9fa1b3b1 2675 spin_lock_irqsave(&card->card_lock, flags);
02f1175c 2676
9fa1b3b1
JS
2677 if (!IS_CYC_Z(*card)) {
2678 int channel = info->line - card->first_line;
2679 int index = card->bus_index;
2680 void __iomem *base_addr = card->base_addr +
02f1175c
JS
2681 (cy_chip_offset[channel >> 2] << index);
2682 /* Stop accepting input */
2683 channel &= 0x03;
2684 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
2685 cy_writeb(base_addr + (CySRER << index),
db05c3b1 2686 readb(base_addr + (CySRER << index)) & ~CyRxData);
77451e53 2687 if (info->port.flags & ASYNC_INITIALIZED) {
15ed6cc0
AC
2688 /* Waiting for on-board buffers to be empty before
2689 closing the port */
9fa1b3b1 2690 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c 2691 cy_wait_until_sent(tty, info->timeout);
9fa1b3b1 2692 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
2693 }
2694 } else {
2695#ifdef Z_WAKE
15ed6cc0
AC
2696 /* Waiting for on-board buffers to be empty before closing
2697 the port */
9fa1b3b1 2698 void __iomem *base_addr = card->base_addr;
02f1175c
JS
2699 struct FIRM_ID __iomem *firm_id = base_addr + ID_ADDRESS;
2700 struct ZFW_CTRL __iomem *zfw_ctrl =
db05c3b1 2701 base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c 2702 struct CH_CTRL __iomem *ch_ctrl = zfw_ctrl->ch_ctrl;
9fa1b3b1 2703 int channel = info->line - card->first_line;
02f1175c
JS
2704 int retval;
2705
db05c3b1 2706 if (readl(&ch_ctrl[channel].flow_status) != C_FS_TXIDLE) {
9fa1b3b1 2707 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLW, 0L);
02f1175c 2708 if (retval != 0) {
21719191
JS
2709 printk(KERN_DEBUG "cyc:cy_close retval on "
2710 "ttyC%d was %x\n", info->line, retval);
02f1175c 2711 }
9fa1b3b1 2712 spin_unlock_irqrestore(&card->card_lock, flags);
2c7fea99 2713 wait_for_completion_interruptible(&info->shutdown_wait);
9fa1b3b1 2714 spin_lock_irqsave(&card->card_lock, flags);
02f1175c 2715 }
1da177e4 2716#endif
02f1175c
JS
2717 }
2718
9fa1b3b1 2719 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c 2720 shutdown(info);
978e595f 2721 cy_flush_buffer(tty);
02f1175c 2722 tty_ldisc_flush(tty);
9fa1b3b1 2723 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
2724
2725 tty->closing = 0;
77451e53
AC
2726 info->port.tty = NULL;
2727 if (info->port.blocked_open) {
9fa1b3b1 2728 spin_unlock_irqrestore(&card->card_lock, flags);
44b7d1b3 2729 if (info->port.close_delay) {
02f1175c 2730 msleep_interruptible(jiffies_to_msecs
44b7d1b3 2731 (info->port.close_delay));
02f1175c 2732 }
77451e53 2733 wake_up_interruptible(&info->port.open_wait);
9fa1b3b1 2734 spin_lock_irqsave(&card->card_lock, flags);
02f1175c 2735 }
77451e53
AC
2736 info->port.flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
2737 wake_up_interruptible(&info->port.close_wait);
1da177e4
LT
2738
2739#ifdef CY_DEBUG_OTHER
21719191 2740 printk(KERN_DEBUG "cyc:cy_close done\n");
1da177e4
LT
2741#endif
2742
9fa1b3b1 2743 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c 2744} /* cy_close */
1da177e4
LT
2745
2746/* This routine gets called when tty_write has put something into
2747 * the write_queue. The characters may come from user space or
2748 * kernel space.
2749 *
2750 * This routine will return the number of characters actually
2751 * accepted for writing.
2752 *
2753 * If the port is not already transmitting stuff, start it off by
2754 * enabling interrupts. The interrupt service routine will then
2755 * ensure that the characters are sent.
2756 * If the port is already active, there is no need to kick it.
2757 *
2758 */
02f1175c 2759static int cy_write(struct tty_struct *tty, const unsigned char *buf, int count)
1da177e4 2760{
cab9bdd1 2761 struct cyclades_port *info = tty->driver_data;
02f1175c
JS
2762 unsigned long flags;
2763 int c, ret = 0;
1da177e4
LT
2764
2765#ifdef CY_DEBUG_IO
21719191 2766 printk(KERN_DEBUG "cyc:cy_write ttyC%d\n", info->line);
1da177e4
LT
2767#endif
2768
15ed6cc0 2769 if (serial_paranoia_check(info, tty->name, "cy_write"))
02f1175c 2770 return 0;
1da177e4 2771
77451e53 2772 if (!info->port.xmit_buf)
02f1175c 2773 return 0;
1da177e4 2774
9fa1b3b1 2775 spin_lock_irqsave(&info->card->card_lock, flags);
02f1175c 2776 while (1) {
1a4e2351
HH
2777 c = min(count, (int)(SERIAL_XMIT_SIZE - info->xmit_cnt - 1));
2778 c = min(c, (int)(SERIAL_XMIT_SIZE - info->xmit_head));
02f1175c
JS
2779
2780 if (c <= 0)
2781 break;
2782
77451e53 2783 memcpy(info->port.xmit_buf + info->xmit_head, buf, c);
02f1175c
JS
2784 info->xmit_head = (info->xmit_head + c) &
2785 (SERIAL_XMIT_SIZE - 1);
2786 info->xmit_cnt += c;
2787 buf += c;
2788 count -= c;
2789 ret += c;
2790 }
9fa1b3b1 2791 spin_unlock_irqrestore(&info->card->card_lock, flags);
02f1175c
JS
2792
2793 info->idle_stats.xmit_bytes += ret;
2794 info->idle_stats.xmit_idle = jiffies;
2795
15ed6cc0 2796 if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped)
02f1175c 2797 start_xmit(info);
15ed6cc0 2798
02f1175c
JS
2799 return ret;
2800} /* cy_write */
1da177e4
LT
2801
2802/*
2803 * This routine is called by the kernel to write a single
2804 * character to the tty device. If the kernel uses this routine,
2805 * it must call the flush_chars() routine (if defined) when it is
2806 * done stuffing characters into the driver. If there is no room
2807 * in the queue, the character is ignored.
2808 */
76b25a55 2809static int cy_put_char(struct tty_struct *tty, unsigned char ch)
1da177e4 2810{
cab9bdd1 2811 struct cyclades_port *info = tty->driver_data;
02f1175c 2812 unsigned long flags;
1da177e4
LT
2813
2814#ifdef CY_DEBUG_IO
21719191 2815 printk(KERN_DEBUG "cyc:cy_put_char ttyC%d\n", info->line);
1da177e4
LT
2816#endif
2817
02f1175c 2818 if (serial_paranoia_check(info, tty->name, "cy_put_char"))
76b25a55 2819 return 0;
1da177e4 2820
77451e53 2821 if (!info->port.xmit_buf)
76b25a55 2822 return 0;
1da177e4 2823
9fa1b3b1 2824 spin_lock_irqsave(&info->card->card_lock, flags);
90cc3018 2825 if (info->xmit_cnt >= (int)(SERIAL_XMIT_SIZE - 1)) {
9fa1b3b1 2826 spin_unlock_irqrestore(&info->card->card_lock, flags);
76b25a55 2827 return 0;
02f1175c 2828 }
1da177e4 2829
77451e53 2830 info->port.xmit_buf[info->xmit_head++] = ch;
02f1175c
JS
2831 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
2832 info->xmit_cnt++;
1da177e4
LT
2833 info->idle_stats.xmit_bytes++;
2834 info->idle_stats.xmit_idle = jiffies;
9fa1b3b1 2835 spin_unlock_irqrestore(&info->card->card_lock, flags);
76b25a55 2836 return 1;
02f1175c 2837} /* cy_put_char */
1da177e4
LT
2838
2839/*
2840 * This routine is called by the kernel after it has written a
15ed6cc0 2841 * series of characters to the tty device using put_char().
1da177e4 2842 */
02f1175c 2843static void cy_flush_chars(struct tty_struct *tty)
1da177e4 2844{
cab9bdd1 2845 struct cyclades_port *info = tty->driver_data;
02f1175c 2846
1da177e4 2847#ifdef CY_DEBUG_IO
21719191 2848 printk(KERN_DEBUG "cyc:cy_flush_chars ttyC%d\n", info->line);
1da177e4
LT
2849#endif
2850
02f1175c
JS
2851 if (serial_paranoia_check(info, tty->name, "cy_flush_chars"))
2852 return;
1da177e4 2853
02f1175c 2854 if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
77451e53 2855 !info->port.xmit_buf)
02f1175c 2856 return;
1da177e4 2857
02f1175c
JS
2858 start_xmit(info);
2859} /* cy_flush_chars */
1da177e4
LT
2860
2861/*
2862 * This routine returns the numbers of characters the tty driver
2863 * will accept for queuing to be written. This number is subject
2864 * to change as output buffers get emptied, or if the output flow
2865 * control is activated.
2866 */
02f1175c 2867static int cy_write_room(struct tty_struct *tty)
1da177e4 2868{
cab9bdd1 2869 struct cyclades_port *info = tty->driver_data;
02f1175c
JS
2870 int ret;
2871
1da177e4 2872#ifdef CY_DEBUG_IO
21719191 2873 printk(KERN_DEBUG "cyc:cy_write_room ttyC%d\n", info->line);
1da177e4
LT
2874#endif
2875
02f1175c
JS
2876 if (serial_paranoia_check(info, tty->name, "cy_write_room"))
2877 return 0;
2878 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
2879 if (ret < 0)
2880 ret = 0;
2881 return ret;
2882} /* cy_write_room */
1da177e4 2883
02f1175c 2884static int cy_chars_in_buffer(struct tty_struct *tty)
1da177e4 2885{
875b206b 2886 struct cyclades_card *card;
cab9bdd1 2887 struct cyclades_port *info = tty->driver_data;
875b206b 2888 int channel;
1da177e4 2889
02f1175c
JS
2890 if (serial_paranoia_check(info, tty->name, "cy_chars_in_buffer"))
2891 return 0;
2892
2893 card = info->card;
875b206b 2894 channel = (info->line) - (card->first_line);
1da177e4
LT
2895
2896#ifdef Z_EXT_CHARS_IN_BUFFER
02f1175c
JS
2897 if (!IS_CYC_Z(cy_card[card])) {
2898#endif /* Z_EXT_CHARS_IN_BUFFER */
1da177e4 2899#ifdef CY_DEBUG_IO
21719191
JS
2900 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
2901 info->line, info->xmit_cnt);
1da177e4 2902#endif
02f1175c 2903 return info->xmit_cnt;
1da177e4 2904#ifdef Z_EXT_CHARS_IN_BUFFER
02f1175c 2905 } else {
ad39c300
JS
2906 static struct FIRM_ID *firm_id;
2907 static struct ZFW_CTRL *zfw_ctrl;
2908 static struct CH_CTRL *ch_ctrl;
2909 static struct BUF_CTRL *buf_ctrl;
02f1175c 2910 int char_count;
ad39c300 2911 __u32 tx_put, tx_get, tx_bufsize;
02f1175c 2912
978e595f 2913 lock_kernel();
875b206b
JS
2914 firm_id = card->base_addr + ID_ADDRESS;
2915 zfw_ctrl = card->base_addr +
db05c3b1 2916 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c
JS
2917 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
2918 buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]);
2919
db05c3b1
JS
2920 tx_get = readl(&buf_ctrl->tx_get);
2921 tx_put = readl(&buf_ctrl->tx_put);
2922 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
02f1175c
JS
2923 if (tx_put >= tx_get)
2924 char_count = tx_put - tx_get;
2925 else
2926 char_count = tx_put - tx_get + tx_bufsize;
1da177e4 2927#ifdef CY_DEBUG_IO
21719191
JS
2928 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
2929 info->line, info->xmit_cnt + char_count);
1da177e4 2930#endif
978e595f 2931 unlock_kernel();
096dcfce 2932 return info->xmit_cnt + char_count;
02f1175c
JS
2933 }
2934#endif /* Z_EXT_CHARS_IN_BUFFER */
2935} /* cy_chars_in_buffer */
1da177e4
LT
2936
2937/*
2938 * ------------------------------------------------------------
2939 * cy_ioctl() and friends
2940 * ------------------------------------------------------------
2941 */
2942
1a86b5e3 2943static void cyy_baud_calc(struct cyclades_port *info, __u32 baud)
1da177e4 2944{
02f1175c 2945 int co, co_val, bpr;
1a86b5e3 2946 __u32 cy_clock = ((info->chip_rev >= CD1400_REV_J) ? 60000000 :
02f1175c 2947 25000000);
1da177e4 2948
02f1175c
JS
2949 if (baud == 0) {
2950 info->tbpr = info->tco = info->rbpr = info->rco = 0;
2951 return;
2952 }
1da177e4 2953
02f1175c
JS
2954 /* determine which prescaler to use */
2955 for (co = 4, co_val = 2048; co; co--, co_val >>= 2) {
2956 if (cy_clock / co_val / baud > 63)
2957 break;
2958 }
1da177e4 2959
02f1175c
JS
2960 bpr = (cy_clock / co_val * 2 / baud + 1) / 2;
2961 if (bpr > 255)
2962 bpr = 255;
1da177e4 2963
02f1175c
JS
2964 info->tbpr = info->rbpr = bpr;
2965 info->tco = info->rco = co;
1da177e4
LT
2966}
2967
2968/*
2969 * This routine finds or computes the various line characteristics.
2970 * It used to be called config_setup
2971 */
02f1175c 2972static void set_line_char(struct cyclades_port *info)
1da177e4 2973{
875b206b 2974 struct cyclades_card *card;
02f1175c
JS
2975 unsigned long flags;
2976 void __iomem *base_addr;
875b206b 2977 int chip, channel, index;
02f1175c
JS
2978 unsigned cflag, iflag;
2979 unsigned short chip_number;
2980 int baud, baud_rate = 0;
2981 int i;
2982
77451e53 2983 if (!info->port.tty || !info->port.tty->termios)
02f1175c 2984 return;
15ed6cc0
AC
2985
2986 if (info->line == -1)
02f1175c 2987 return;
15ed6cc0 2988
77451e53
AC
2989 cflag = info->port.tty->termios->c_cflag;
2990 iflag = info->port.tty->termios->c_iflag;
1da177e4 2991
02f1175c
JS
2992 /*
2993 * Set up the tty->alt_speed kludge
2994 */
77451e53
AC
2995 if (info->port.tty) {
2996 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
2997 info->port.tty->alt_speed = 57600;
2998 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
2999 info->port.tty->alt_speed = 115200;
3000 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
3001 info->port.tty->alt_speed = 230400;
3002 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
3003 info->port.tty->alt_speed = 460800;
1da177e4 3004 }
02f1175c
JS
3005
3006 card = info->card;
875b206b 3007 channel = info->line - card->first_line;
02f1175c
JS
3008 chip_number = channel / 4;
3009
875b206b 3010 if (!IS_CYC_Z(*card)) {
02f1175c 3011
875b206b 3012 index = card->bus_index;
02f1175c
JS
3013
3014 /* baud rate */
77451e53
AC
3015 baud = tty_get_baud_rate(info->port.tty);
3016 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
02f1175c
JS
3017 ASYNC_SPD_CUST) {
3018 if (info->custom_divisor)
3019 baud_rate = info->baud / info->custom_divisor;
3020 else
3021 baud_rate = info->baud;
3022 } else if (baud > CD1400_MAX_SPEED) {
3023 baud = CD1400_MAX_SPEED;
3024 }
3025 /* find the baud index */
3026 for (i = 0; i < 20; i++) {
15ed6cc0 3027 if (baud == baud_table[i])
02f1175c 3028 break;
02f1175c 3029 }
15ed6cc0 3030 if (i == 20)
02f1175c 3031 i = 19; /* CD1400_MAX_SPEED */
02f1175c 3032
77451e53 3033 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
02f1175c
JS
3034 ASYNC_SPD_CUST) {
3035 cyy_baud_calc(info, baud_rate);
3036 } else {
3037 if (info->chip_rev >= CD1400_REV_J) {
3038 /* It is a CD1400 rev. J or later */
3039 info->tbpr = baud_bpr_60[i]; /* Tx BPR */
3040 info->tco = baud_co_60[i]; /* Tx CO */
3041 info->rbpr = baud_bpr_60[i]; /* Rx BPR */
3042 info->rco = baud_co_60[i]; /* Rx CO */
3043 } else {
3044 info->tbpr = baud_bpr_25[i]; /* Tx BPR */
3045 info->tco = baud_co_25[i]; /* Tx CO */
3046 info->rbpr = baud_bpr_25[i]; /* Rx BPR */
3047 info->rco = baud_co_25[i]; /* Rx CO */
3048 }
3049 }
3050 if (baud_table[i] == 134) {
3051 /* get it right for 134.5 baud */
3052 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
3053 2;
77451e53 3054 } else if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
02f1175c
JS
3055 ASYNC_SPD_CUST) {
3056 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3057 baud_rate) + 2;
3058 } else if (baud_table[i]) {
3059 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3060 baud_table[i]) + 2;
3061 /* this needs to be propagated into the card info */
3062 } else {
3063 info->timeout = 0;
3064 }
3065 /* By tradition (is it a standard?) a baud rate of zero
3066 implies the line should be/has been closed. A bit
3067 later in this routine such a test is performed. */
3068
3069 /* byte size and parity */
3070 info->cor5 = 0;
3071 info->cor4 = 0;
3072 /* receive threshold */
3073 info->cor3 = (info->default_threshold ?
3074 info->default_threshold : baud_cor3[i]);
3075 info->cor2 = CyETC;
3076 switch (cflag & CSIZE) {
3077 case CS5:
3078 info->cor1 = Cy_5_BITS;
3079 break;
3080 case CS6:
3081 info->cor1 = Cy_6_BITS;
3082 break;
3083 case CS7:
3084 info->cor1 = Cy_7_BITS;
3085 break;
3086 case CS8:
3087 info->cor1 = Cy_8_BITS;
3088 break;
3089 }
15ed6cc0 3090 if (cflag & CSTOPB)
02f1175c 3091 info->cor1 |= Cy_2_STOP;
15ed6cc0 3092
02f1175c 3093 if (cflag & PARENB) {
15ed6cc0 3094 if (cflag & PARODD)
02f1175c 3095 info->cor1 |= CyPARITY_O;
15ed6cc0 3096 else
02f1175c 3097 info->cor1 |= CyPARITY_E;
15ed6cc0 3098 } else
02f1175c 3099 info->cor1 |= CyPARITY_NONE;
02f1175c
JS
3100
3101 /* CTS flow control flag */
3102 if (cflag & CRTSCTS) {
77451e53 3103 info->port.flags |= ASYNC_CTS_FLOW;
02f1175c
JS
3104 info->cor2 |= CyCtsAE;
3105 } else {
77451e53 3106 info->port.flags &= ~ASYNC_CTS_FLOW;
02f1175c
JS
3107 info->cor2 &= ~CyCtsAE;
3108 }
3109 if (cflag & CLOCAL)
77451e53 3110 info->port.flags &= ~ASYNC_CHECK_CD;
02f1175c 3111 else
77451e53 3112 info->port.flags |= ASYNC_CHECK_CD;
1da177e4
LT
3113
3114 /***********************************************
3115 The hardware option, CyRtsAO, presents RTS when
3116 the chip has characters to send. Since most modems
3117 use RTS as reverse (inbound) flow control, this
3118 option is not used. If inbound flow control is
3119 necessary, DTR can be programmed to provide the
3120 appropriate signals for use with a non-standard
3121 cable. Contact Marcio Saito for details.
3122 ***********************************************/
3123
02f1175c
JS
3124 chip = channel >> 2;
3125 channel &= 0x03;
875b206b 3126 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
1da177e4 3127
9fa1b3b1 3128 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
3129 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
3130
3131 /* tx and rx baud rate */
3132
3133 cy_writeb(base_addr + (CyTCOR << index), info->tco);
3134 cy_writeb(base_addr + (CyTBPR << index), info->tbpr);
3135 cy_writeb(base_addr + (CyRCOR << index), info->rco);
3136 cy_writeb(base_addr + (CyRBPR << index), info->rbpr);
3137
3138 /* set line characteristics according configuration */
3139
3140 cy_writeb(base_addr + (CySCHR1 << index),
77451e53
AC
3141 START_CHAR(info->port.tty));
3142 cy_writeb(base_addr + (CySCHR2 << index), STOP_CHAR(info->port.tty));
02f1175c
JS
3143 cy_writeb(base_addr + (CyCOR1 << index), info->cor1);
3144 cy_writeb(base_addr + (CyCOR2 << index), info->cor2);
3145 cy_writeb(base_addr + (CyCOR3 << index), info->cor3);
3146 cy_writeb(base_addr + (CyCOR4 << index), info->cor4);
3147 cy_writeb(base_addr + (CyCOR5 << index), info->cor5);
3148
3149 cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR1ch | CyCOR2ch |
3150 CyCOR3ch, index);
3151
15ed6cc0
AC
3152 /* !!! Is this needed? */
3153 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
02f1175c
JS
3154 cy_writeb(base_addr + (CyRTPR << index),
3155 (info->default_timeout ? info->default_timeout : 0x02));
3156 /* 10ms rx timeout */
3157
77451e53 3158 if (C_CLOCAL(info->port.tty)) {
02f1175c
JS
3159 /* without modem intr */
3160 cy_writeb(base_addr + (CySRER << index),
db05c3b1 3161 readb(base_addr + (CySRER << index)) | CyMdmCh);
02f1175c
JS
3162 /* act on 1->0 modem transitions */
3163 if ((cflag & CRTSCTS) && info->rflow) {
3164 cy_writeb(base_addr + (CyMCOR1 << index),
3165 (CyCTS | rflow_thr[i]));
3166 } else {
3167 cy_writeb(base_addr + (CyMCOR1 << index),
3168 CyCTS);
3169 }
3170 /* act on 0->1 modem transitions */
3171 cy_writeb(base_addr + (CyMCOR2 << index), CyCTS);
1da177e4 3172 } else {
02f1175c
JS
3173 /* without modem intr */
3174 cy_writeb(base_addr + (CySRER << index),
db05c3b1 3175 readb(base_addr +
02f1175c
JS
3176 (CySRER << index)) | CyMdmCh);
3177 /* act on 1->0 modem transitions */
3178 if ((cflag & CRTSCTS) && info->rflow) {
3179 cy_writeb(base_addr + (CyMCOR1 << index),
3180 (CyDSR | CyCTS | CyRI | CyDCD |
3181 rflow_thr[i]));
3182 } else {
3183 cy_writeb(base_addr + (CyMCOR1 << index),
3184 CyDSR | CyCTS | CyRI | CyDCD);
3185 }
3186 /* act on 0->1 modem transitions */
3187 cy_writeb(base_addr + (CyMCOR2 << index),
3188 CyDSR | CyCTS | CyRI | CyDCD);
1da177e4 3189 }
02f1175c
JS
3190
3191 if (i == 0) { /* baud rate is zero, turn off line */
3192 if (info->rtsdtr_inv) {
3193 cy_writeb(base_addr + (CyMSVR1 << index),
3194 ~CyRTS);
3195 } else {
3196 cy_writeb(base_addr + (CyMSVR2 << index),
3197 ~CyDTR);
3198 }
1da177e4 3199#ifdef CY_DEBUG_DTR
21719191
JS
3200 printk(KERN_DEBUG "cyc:set_line_char dropping DTR\n");
3201 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
db05c3b1
JS
3202 readb(base_addr + (CyMSVR1 << index)),
3203 readb(base_addr + (CyMSVR2 << index)));
1da177e4 3204#endif
02f1175c
JS
3205 } else {
3206 if (info->rtsdtr_inv) {
3207 cy_writeb(base_addr + (CyMSVR1 << index),
3208 CyRTS);
3209 } else {
3210 cy_writeb(base_addr + (CyMSVR2 << index),
3211 CyDTR);
3212 }
1da177e4 3213#ifdef CY_DEBUG_DTR
21719191
JS
3214 printk(KERN_DEBUG "cyc:set_line_char raising DTR\n");
3215 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
db05c3b1
JS
3216 readb(base_addr + (CyMSVR1 << index)),
3217 readb(base_addr + (CyMSVR2 << index)));
1da177e4 3218#endif
02f1175c 3219 }
1da177e4 3220
77451e53
AC
3221 if (info->port.tty)
3222 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
9fa1b3b1 3223 spin_unlock_irqrestore(&card->card_lock, flags);
1da177e4 3224
1da177e4 3225 } else {
02f1175c
JS
3226 struct FIRM_ID __iomem *firm_id;
3227 struct ZFW_CTRL __iomem *zfw_ctrl;
3228 struct BOARD_CTRL __iomem *board_ctrl;
3229 struct CH_CTRL __iomem *ch_ctrl;
3230 struct BUF_CTRL __iomem *buf_ctrl;
1a86b5e3 3231 __u32 sw_flow;
02f1175c 3232 int retval;
1da177e4 3233
875b206b 3234 firm_id = card->base_addr + ID_ADDRESS;
15ed6cc0 3235 if (!ISZLOADED(*card))
02f1175c 3236 return;
1da177e4 3237
875b206b 3238 zfw_ctrl = card->base_addr +
db05c3b1 3239 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c
JS
3240 board_ctrl = &zfw_ctrl->board_ctrl;
3241 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
3242 buf_ctrl = &zfw_ctrl->buf_ctrl[channel];
3243
3244 /* baud rate */
77451e53
AC
3245 baud = tty_get_baud_rate(info->port.tty);
3246 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
02f1175c
JS
3247 ASYNC_SPD_CUST) {
3248 if (info->custom_divisor)
3249 baud_rate = info->baud / info->custom_divisor;
3250 else
3251 baud_rate = info->baud;
3252 } else if (baud > CYZ_MAX_SPEED) {
3253 baud = CYZ_MAX_SPEED;
3254 }
3255 cy_writel(&ch_ctrl->comm_baud, baud);
3256
3257 if (baud == 134) {
3258 /* get it right for 134.5 baud */
3259 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
3260 2;
77451e53 3261 } else if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
02f1175c
JS
3262 ASYNC_SPD_CUST) {
3263 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3264 baud_rate) + 2;
3265 } else if (baud) {
3266 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3267 baud) + 2;
3268 /* this needs to be propagated into the card info */
3269 } else {
3270 info->timeout = 0;
3271 }
1da177e4 3272
02f1175c
JS
3273 /* byte size and parity */
3274 switch (cflag & CSIZE) {
3275 case CS5:
3276 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS5);
3277 break;
3278 case CS6:
3279 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS6);
3280 break;
3281 case CS7:
3282 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS7);
3283 break;
3284 case CS8:
3285 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS8);
3286 break;
3287 }
3288 if (cflag & CSTOPB) {
3289 cy_writel(&ch_ctrl->comm_data_l,
db05c3b1 3290 readl(&ch_ctrl->comm_data_l) | C_DL_2STOP);
02f1175c
JS
3291 } else {
3292 cy_writel(&ch_ctrl->comm_data_l,
db05c3b1 3293 readl(&ch_ctrl->comm_data_l) | C_DL_1STOP);
02f1175c
JS
3294 }
3295 if (cflag & PARENB) {
15ed6cc0 3296 if (cflag & PARODD)
02f1175c 3297 cy_writel(&ch_ctrl->comm_parity, C_PR_ODD);
15ed6cc0 3298 else
02f1175c 3299 cy_writel(&ch_ctrl->comm_parity, C_PR_EVEN);
15ed6cc0 3300 } else
02f1175c 3301 cy_writel(&ch_ctrl->comm_parity, C_PR_NONE);
1da177e4 3302
02f1175c
JS
3303 /* CTS flow control flag */
3304 if (cflag & CRTSCTS) {
3305 cy_writel(&ch_ctrl->hw_flow,
db05c3b1 3306 readl(&ch_ctrl->hw_flow) | C_RS_CTS | C_RS_RTS);
02f1175c 3307 } else {
db05c3b1
JS
3308 cy_writel(&ch_ctrl->hw_flow, readl(&ch_ctrl->hw_flow) &
3309 ~(C_RS_CTS | C_RS_RTS));
02f1175c
JS
3310 }
3311 /* As the HW flow control is done in firmware, the driver
3312 doesn't need to care about it */
77451e53 3313 info->port.flags &= ~ASYNC_CTS_FLOW;
02f1175c
JS
3314
3315 /* XON/XOFF/XANY flow control flags */
3316 sw_flow = 0;
3317 if (iflag & IXON) {
3318 sw_flow |= C_FL_OXX;
3319 if (iflag & IXANY)
3320 sw_flow |= C_FL_OIXANY;
3321 }
3322 cy_writel(&ch_ctrl->sw_flow, sw_flow);
3323
875b206b 3324 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
02f1175c 3325 if (retval != 0) {
21719191
JS
3326 printk(KERN_ERR "cyc:set_line_char retval on ttyC%d "
3327 "was %x\n", info->line, retval);
02f1175c
JS
3328 }
3329
3330 /* CD sensitivity */
15ed6cc0 3331 if (cflag & CLOCAL)
77451e53 3332 info->port.flags &= ~ASYNC_CHECK_CD;
15ed6cc0 3333 else
77451e53 3334 info->port.flags |= ASYNC_CHECK_CD;
1da177e4 3335
02f1175c
JS
3336 if (baud == 0) { /* baud rate is zero, turn off line */
3337 cy_writel(&ch_ctrl->rs_control,
db05c3b1 3338 readl(&ch_ctrl->rs_control) & ~C_RS_DTR);
1da177e4 3339#ifdef CY_DEBUG_DTR
21719191 3340 printk(KERN_DEBUG "cyc:set_line_char dropping Z DTR\n");
1da177e4 3341#endif
02f1175c
JS
3342 } else {
3343 cy_writel(&ch_ctrl->rs_control,
db05c3b1 3344 readl(&ch_ctrl->rs_control) | C_RS_DTR);
1da177e4 3345#ifdef CY_DEBUG_DTR
21719191 3346 printk(KERN_DEBUG "cyc:set_line_char raising Z DTR\n");
1da177e4 3347#endif
02f1175c 3348 }
1da177e4 3349
15ed6cc0 3350 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
02f1175c 3351 if (retval != 0) {
21719191
JS
3352 printk(KERN_ERR "cyc:set_line_char(2) retval on ttyC%d "
3353 "was %x\n", info->line, retval);
02f1175c 3354 }
1da177e4 3355
77451e53
AC
3356 if (info->port.tty)
3357 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
1da177e4 3358 }
02f1175c 3359} /* set_line_char */
1da177e4
LT
3360
3361static int
02f1175c 3362get_serial_info(struct cyclades_port *info,
15ed6cc0 3363 struct serial_struct __user *retinfo)
1da177e4 3364{
02f1175c 3365 struct serial_struct tmp;
875b206b 3366 struct cyclades_card *cinfo = info->card;
1da177e4 3367
02f1175c
JS
3368 if (!retinfo)
3369 return -EFAULT;
3370 memset(&tmp, 0, sizeof(tmp));
3371 tmp.type = info->type;
3372 tmp.line = info->line;
875b206b
JS
3373 tmp.port = (info->card - cy_card) * 0x100 + info->line -
3374 cinfo->first_line;
02f1175c 3375 tmp.irq = cinfo->irq;
77451e53 3376 tmp.flags = info->port.flags;
44b7d1b3
AC
3377 tmp.close_delay = info->port.close_delay;
3378 tmp.closing_wait = info->port.closing_wait;
02f1175c
JS
3379 tmp.baud_base = info->baud;
3380 tmp.custom_divisor = info->custom_divisor;
3381 tmp.hub6 = 0; /*!!! */
3382 return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
3383} /* get_serial_info */
1da177e4
LT
3384
3385static int
02f1175c 3386set_serial_info(struct cyclades_port *info,
15ed6cc0 3387 struct serial_struct __user *new_info)
1da177e4 3388{
02f1175c
JS
3389 struct serial_struct new_serial;
3390 struct cyclades_port old_info;
3391
3392 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
3393 return -EFAULT;
3394 old_info = *info;
3395
3396 if (!capable(CAP_SYS_ADMIN)) {
44b7d1b3 3397 if (new_serial.close_delay != info->port.close_delay ||
02f1175c
JS
3398 new_serial.baud_base != info->baud ||
3399 (new_serial.flags & ASYNC_FLAGS &
3400 ~ASYNC_USR_MASK) !=
77451e53 3401 (info->port.flags & ASYNC_FLAGS & ~ASYNC_USR_MASK))
02f1175c 3402 return -EPERM;
77451e53 3403 info->port.flags = (info->port.flags & ~ASYNC_USR_MASK) |
02f1175c
JS
3404 (new_serial.flags & ASYNC_USR_MASK);
3405 info->baud = new_serial.baud_base;
3406 info->custom_divisor = new_serial.custom_divisor;
3407 goto check_and_exit;
3408 }
3409
3410 /*
3411 * OK, past this point, all the error checking has been done.
3412 * At this point, we start making changes.....
3413 */
3414
3415 info->baud = new_serial.baud_base;
3416 info->custom_divisor = new_serial.custom_divisor;
77451e53 3417 info->port.flags = (info->port.flags & ~ASYNC_FLAGS) |
02f1175c 3418 (new_serial.flags & ASYNC_FLAGS);
44b7d1b3
AC
3419 info->port.close_delay = new_serial.close_delay * HZ / 100;
3420 info->port.closing_wait = new_serial.closing_wait * HZ / 100;
1da177e4
LT
3421
3422check_and_exit:
77451e53 3423 if (info->port.flags & ASYNC_INITIALIZED) {
02f1175c
JS
3424 set_line_char(info);
3425 return 0;
3426 } else {
3427 return startup(info);
3428 }
3429} /* set_serial_info */
1da177e4
LT
3430
3431/*
3432 * get_lsr_info - get line status register info
3433 *
3434 * Purpose: Let user call ioctl() to get info when the UART physically
3435 * is emptied. On bus types like RS485, the transmitter must
3436 * release the bus after transmitting. This must be done when
3437 * the transmit shift register is empty, not be done when the
3438 * transmit holding register is empty. This functionality
3439 * allows an RS485 driver to be written in user space.
3440 */
15ed6cc0 3441static int get_lsr_info(struct cyclades_port *info, unsigned int __user *value)
1da177e4 3442{
875b206b
JS
3443 struct cyclades_card *card;
3444 int chip, channel, index;
02f1175c
JS
3445 unsigned char status;
3446 unsigned int result;
3447 unsigned long flags;
3448 void __iomem *base_addr;
1da177e4 3449
02f1175c 3450 card = info->card;
875b206b
JS
3451 channel = (info->line) - (card->first_line);
3452 if (!IS_CYC_Z(*card)) {
02f1175c
JS
3453 chip = channel >> 2;
3454 channel &= 0x03;
875b206b
JS
3455 index = card->bus_index;
3456 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
02f1175c 3457
9fa1b3b1 3458 spin_lock_irqsave(&card->card_lock, flags);
db05c3b1 3459 status = readb(base_addr + (CySRER << index)) &
02f1175c 3460 (CyTxRdy | CyTxMpty);
9fa1b3b1 3461 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3462 result = (status ? 0 : TIOCSER_TEMT);
3463 } else {
3464 /* Not supported yet */
3465 return -EINVAL;
3466 }
3467 return put_user(result, (unsigned long __user *)value);
1da177e4
LT
3468}
3469
02f1175c 3470static int cy_tiocmget(struct tty_struct *tty, struct file *file)
1da177e4 3471{
cab9bdd1 3472 struct cyclades_port *info = tty->driver_data;
875b206b
JS
3473 struct cyclades_card *card;
3474 int chip, channel, index;
02f1175c
JS
3475 void __iomem *base_addr;
3476 unsigned long flags;
3477 unsigned char status;
3478 unsigned long lstatus;
3479 unsigned int result;
3480 struct FIRM_ID __iomem *firm_id;
3481 struct ZFW_CTRL __iomem *zfw_ctrl;
3482 struct BOARD_CTRL __iomem *board_ctrl;
3483 struct CH_CTRL __iomem *ch_ctrl;
3484
bf9d8929 3485 if (serial_paranoia_check(info, tty->name, __func__))
02f1175c 3486 return -ENODEV;
1da177e4 3487
7b130c0e
AC
3488 lock_kernel();
3489
02f1175c 3490 card = info->card;
875b206b
JS
3491 channel = info->line - card->first_line;
3492 if (!IS_CYC_Z(*card)) {
02f1175c
JS
3493 chip = channel >> 2;
3494 channel &= 0x03;
875b206b
JS
3495 index = card->bus_index;
3496 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
1da177e4 3497
9fa1b3b1 3498 spin_lock_irqsave(&card->card_lock, flags);
02f1175c 3499 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
db05c3b1
JS
3500 status = readb(base_addr + (CyMSVR1 << index));
3501 status |= readb(base_addr + (CyMSVR2 << index));
9fa1b3b1 3502 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3503
3504 if (info->rtsdtr_inv) {
3505 result = ((status & CyRTS) ? TIOCM_DTR : 0) |
3506 ((status & CyDTR) ? TIOCM_RTS : 0);
3507 } else {
3508 result = ((status & CyRTS) ? TIOCM_RTS : 0) |
3509 ((status & CyDTR) ? TIOCM_DTR : 0);
3510 }
3511 result |= ((status & CyDCD) ? TIOCM_CAR : 0) |
3512 ((status & CyRI) ? TIOCM_RNG : 0) |
3513 ((status & CyDSR) ? TIOCM_DSR : 0) |
3514 ((status & CyCTS) ? TIOCM_CTS : 0);
1da177e4 3515 } else {
875b206b
JS
3516 base_addr = card->base_addr;
3517 firm_id = card->base_addr + ID_ADDRESS;
3518 if (ISZLOADED(*card)) {
3519 zfw_ctrl = card->base_addr +
db05c3b1 3520 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c
JS
3521 board_ctrl = &zfw_ctrl->board_ctrl;
3522 ch_ctrl = zfw_ctrl->ch_ctrl;
db05c3b1 3523 lstatus = readl(&ch_ctrl[channel].rs_status);
02f1175c
JS
3524 result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) |
3525 ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) |
3526 ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) |
3527 ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) |
3528 ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) |
3529 ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0);
3530 } else {
3531 result = 0;
7b130c0e 3532 unlock_kernel();
02f1175c
JS
3533 return -ENODEV;
3534 }
1da177e4 3535
02f1175c 3536 }
7b130c0e 3537 unlock_kernel();
02f1175c
JS
3538 return result;
3539} /* cy_tiomget */
1da177e4
LT
3540
3541static int
3542cy_tiocmset(struct tty_struct *tty, struct file *file,
02f1175c 3543 unsigned int set, unsigned int clear)
1da177e4 3544{
cab9bdd1 3545 struct cyclades_port *info = tty->driver_data;
875b206b
JS
3546 struct cyclades_card *card;
3547 int chip, channel, index;
02f1175c
JS
3548 void __iomem *base_addr;
3549 unsigned long flags;
3550 struct FIRM_ID __iomem *firm_id;
3551 struct ZFW_CTRL __iomem *zfw_ctrl;
3552 struct BOARD_CTRL __iomem *board_ctrl;
3553 struct CH_CTRL __iomem *ch_ctrl;
3554 int retval;
3555
bf9d8929 3556 if (serial_paranoia_check(info, tty->name, __func__))
02f1175c
JS
3557 return -ENODEV;
3558
3559 card = info->card;
875b206b
JS
3560 channel = (info->line) - (card->first_line);
3561 if (!IS_CYC_Z(*card)) {
02f1175c
JS
3562 chip = channel >> 2;
3563 channel &= 0x03;
875b206b
JS
3564 index = card->bus_index;
3565 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
02f1175c
JS
3566
3567 if (set & TIOCM_RTS) {
9fa1b3b1 3568 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
3569 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 }
9fa1b3b1 3578 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3579 }
3580 if (clear & TIOCM_RTS) {
9fa1b3b1 3581 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
3582 cy_writeb(base_addr + (CyCAR << index),
3583 (u_char) channel);
3584 if (info->rtsdtr_inv) {
3585 cy_writeb(base_addr + (CyMSVR2 << index),
3586 ~CyDTR);
3587 } else {
3588 cy_writeb(base_addr + (CyMSVR1 << index),
3589 ~CyRTS);
3590 }
9fa1b3b1 3591 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3592 }
3593 if (set & TIOCM_DTR) {
9fa1b3b1 3594 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
3595 cy_writeb(base_addr + (CyCAR << index),
3596 (u_char) channel);
3597 if (info->rtsdtr_inv) {
3598 cy_writeb(base_addr + (CyMSVR1 << index),
3599 CyRTS);
3600 } else {
3601 cy_writeb(base_addr + (CyMSVR2 << index),
3602 CyDTR);
3603 }
1da177e4 3604#ifdef CY_DEBUG_DTR
21719191
JS
3605 printk(KERN_DEBUG "cyc:set_modem_info raising DTR\n");
3606 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
db05c3b1
JS
3607 readb(base_addr + (CyMSVR1 << index)),
3608 readb(base_addr + (CyMSVR2 << index)));
1da177e4 3609#endif
9fa1b3b1 3610 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3611 }
3612 if (clear & TIOCM_DTR) {
9fa1b3b1 3613 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
3614 cy_writeb(base_addr + (CyCAR << index),
3615 (u_char) channel);
3616 if (info->rtsdtr_inv) {
3617 cy_writeb(base_addr + (CyMSVR1 << index),
3618 ~CyRTS);
3619 } else {
3620 cy_writeb(base_addr + (CyMSVR2 << index),
3621 ~CyDTR);
3622 }
1da177e4
LT
3623
3624#ifdef CY_DEBUG_DTR
21719191
JS
3625 printk(KERN_DEBUG "cyc:set_modem_info dropping DTR\n");
3626 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
db05c3b1
JS
3627 readb(base_addr + (CyMSVR1 << index)),
3628 readb(base_addr + (CyMSVR2 << index)));
1da177e4 3629#endif
9fa1b3b1 3630 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3631 }
3632 } else {
875b206b 3633 base_addr = card->base_addr;
02f1175c 3634
875b206b
JS
3635 firm_id = card->base_addr + ID_ADDRESS;
3636 if (ISZLOADED(*card)) {
3637 zfw_ctrl = card->base_addr +
db05c3b1 3638 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
02f1175c
JS
3639 board_ctrl = &zfw_ctrl->board_ctrl;
3640 ch_ctrl = zfw_ctrl->ch_ctrl;
3641
3642 if (set & TIOCM_RTS) {
9fa1b3b1 3643 spin_lock_irqsave(&card->card_lock, flags);
02f1175c 3644 cy_writel(&ch_ctrl[channel].rs_control,
db05c3b1
JS
3645 readl(&ch_ctrl[channel].rs_control) |
3646 C_RS_RTS);
9fa1b3b1 3647 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3648 }
3649 if (clear & TIOCM_RTS) {
9fa1b3b1 3650 spin_lock_irqsave(&card->card_lock, flags);
02f1175c 3651 cy_writel(&ch_ctrl[channel].rs_control,
db05c3b1
JS
3652 readl(&ch_ctrl[channel].rs_control) &
3653 ~C_RS_RTS);
9fa1b3b1 3654 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3655 }
3656 if (set & TIOCM_DTR) {
9fa1b3b1 3657 spin_lock_irqsave(&card->card_lock, flags);
02f1175c 3658 cy_writel(&ch_ctrl[channel].rs_control,
db05c3b1
JS
3659 readl(&ch_ctrl[channel].rs_control) |
3660 C_RS_DTR);
1da177e4 3661#ifdef CY_DEBUG_DTR
21719191
JS
3662 printk(KERN_DEBUG "cyc:set_modem_info raising "
3663 "Z DTR\n");
1da177e4 3664#endif
9fa1b3b1 3665 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3666 }
3667 if (clear & TIOCM_DTR) {
9fa1b3b1 3668 spin_lock_irqsave(&card->card_lock, flags);
02f1175c 3669 cy_writel(&ch_ctrl[channel].rs_control,
db05c3b1
JS
3670 readl(&ch_ctrl[channel].rs_control) &
3671 ~C_RS_DTR);
1da177e4 3672#ifdef CY_DEBUG_DTR
21719191
JS
3673 printk(KERN_DEBUG "cyc:set_modem_info clearing "
3674 "Z DTR\n");
1da177e4 3675#endif
9fa1b3b1 3676 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3677 }
3678 } else {
3679 return -ENODEV;
3680 }
9fa1b3b1
JS
3681 spin_lock_irqsave(&card->card_lock, flags);
3682 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
02f1175c 3683 if (retval != 0) {
21719191
JS
3684 printk(KERN_ERR "cyc:set_modem_info retval on ttyC%d "
3685 "was %x\n", info->line, retval);
02f1175c 3686 }
9fa1b3b1 3687 spin_unlock_irqrestore(&card->card_lock, flags);
1da177e4 3688 }
02f1175c
JS
3689 return 0;
3690} /* cy_tiocmset */
1da177e4
LT
3691
3692/*
3693 * cy_break() --- routine which turns the break handling on or off
3694 */
9e98966c 3695static int cy_break(struct tty_struct *tty, int break_state)
1da177e4 3696{
cab9bdd1 3697 struct cyclades_port *info = tty->driver_data;
9fa1b3b1 3698 struct cyclades_card *card;
02f1175c 3699 unsigned long flags;
9e98966c 3700 int retval = 0;
1da177e4 3701
02f1175c 3702 if (serial_paranoia_check(info, tty->name, "cy_break"))
9e98966c 3703 return -EINVAL;
1da177e4 3704
9fa1b3b1
JS
3705 card = info->card;
3706
3707 spin_lock_irqsave(&card->card_lock, flags);
3708 if (!IS_CYC_Z(*card)) {
02f1175c
JS
3709 /* Let the transmit ISR take care of this (since it
3710 requires stuffing characters into the output stream).
3711 */
3712 if (break_state == -1) {
3713 if (!info->breakon) {
3714 info->breakon = 1;
3715 if (!info->xmit_cnt) {
9fa1b3b1 3716 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c 3717 start_xmit(info);
9fa1b3b1 3718 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
3719 }
3720 }
3721 } else {
3722 if (!info->breakoff) {
3723 info->breakoff = 1;
3724 if (!info->xmit_cnt) {
9fa1b3b1 3725 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c 3726 start_xmit(info);
9fa1b3b1 3727 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
3728 }
3729 }
1da177e4 3730 }
1da177e4 3731 } else {
02f1175c 3732 if (break_state == -1) {
9fa1b3b1
JS
3733 retval = cyz_issue_cmd(card,
3734 info->line - card->first_line,
02f1175c
JS
3735 C_CM_SET_BREAK, 0L);
3736 if (retval != 0) {
21719191
JS
3737 printk(KERN_ERR "cyc:cy_break (set) retval on "
3738 "ttyC%d was %x\n", info->line, retval);
02f1175c
JS
3739 }
3740 } else {
9fa1b3b1
JS
3741 retval = cyz_issue_cmd(card,
3742 info->line - card->first_line,
02f1175c
JS
3743 C_CM_CLR_BREAK, 0L);
3744 if (retval != 0) {
21719191
JS
3745 printk(KERN_DEBUG "cyc:cy_break (clr) retval "
3746 "on ttyC%d was %x\n", info->line,
3747 retval);
02f1175c 3748 }
1da177e4 3749 }
1da177e4 3750 }
9fa1b3b1 3751 spin_unlock_irqrestore(&card->card_lock, flags);
9e98966c 3752 return retval;
02f1175c 3753} /* cy_break */
1da177e4 3754
15ed6cc0
AC
3755static int get_mon_info(struct cyclades_port *info,
3756 struct cyclades_monitor __user *mon)
1da177e4
LT
3757{
3758
02f1175c
JS
3759 if (copy_to_user(mon, &info->mon, sizeof(struct cyclades_monitor)))
3760 return -EFAULT;
3761 info->mon.int_count = 0;
3762 info->mon.char_count = 0;
3763 info->mon.char_max = 0;
3764 info->mon.char_last = 0;
3765 return 0;
3766} /* get_mon_info */
1da177e4 3767
02f1175c 3768static int set_threshold(struct cyclades_port *info, unsigned long value)
1da177e4 3769{
875b206b 3770 struct cyclades_card *card;
02f1175c 3771 void __iomem *base_addr;
875b206b 3772 int channel, chip, index;
02f1175c 3773 unsigned long flags;
1da177e4 3774
02f1175c 3775 card = info->card;
875b206b
JS
3776 channel = info->line - card->first_line;
3777 if (!IS_CYC_Z(*card)) {
02f1175c
JS
3778 chip = channel >> 2;
3779 channel &= 0x03;
875b206b 3780 index = card->bus_index;
02f1175c 3781 base_addr =
875b206b 3782 card->base_addr + (cy_chip_offset[chip] << index);
02f1175c
JS
3783
3784 info->cor3 &= ~CyREC_FIFO;
3785 info->cor3 |= value & CyREC_FIFO;
1da177e4 3786
9fa1b3b1 3787 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
3788 cy_writeb(base_addr + (CyCOR3 << index), info->cor3);
3789 cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR3ch, index);
9fa1b3b1 3790 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3791 }
3792 return 0;
3793} /* set_threshold */
1da177e4 3794
15ed6cc0
AC
3795static int get_threshold(struct cyclades_port *info,
3796 unsigned long __user *value)
1da177e4 3797{
875b206b 3798 struct cyclades_card *card;
02f1175c 3799 void __iomem *base_addr;
875b206b 3800 int channel, chip, index;
02f1175c 3801 unsigned long tmp;
1da177e4 3802
02f1175c 3803 card = info->card;
875b206b
JS
3804 channel = info->line - card->first_line;
3805 if (!IS_CYC_Z(*card)) {
02f1175c
JS
3806 chip = channel >> 2;
3807 channel &= 0x03;
875b206b
JS
3808 index = card->bus_index;
3809 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
02f1175c 3810
db05c3b1 3811 tmp = readb(base_addr + (CyCOR3 << index)) & CyREC_FIFO;
02f1175c 3812 return put_user(tmp, value);
02f1175c 3813 }
f7429034 3814 return 0;
02f1175c 3815} /* get_threshold */
1da177e4 3816
15ed6cc0
AC
3817static int set_default_threshold(struct cyclades_port *info,
3818 unsigned long value)
1da177e4 3819{
02f1175c
JS
3820 info->default_threshold = value & 0x0f;
3821 return 0;
3822} /* set_default_threshold */
1da177e4 3823
15ed6cc0
AC
3824static int get_default_threshold(struct cyclades_port *info,
3825 unsigned long __user *value)
1da177e4 3826{
02f1175c
JS
3827 return put_user(info->default_threshold, value);
3828} /* get_default_threshold */
1da177e4 3829
02f1175c 3830static int set_timeout(struct cyclades_port *info, unsigned long value)
1da177e4 3831{
875b206b 3832 struct cyclades_card *card;
02f1175c 3833 void __iomem *base_addr;
875b206b 3834 int channel, chip, index;
02f1175c 3835 unsigned long flags;
1da177e4 3836
02f1175c 3837 card = info->card;
875b206b
JS
3838 channel = info->line - card->first_line;
3839 if (!IS_CYC_Z(*card)) {
02f1175c
JS
3840 chip = channel >> 2;
3841 channel &= 0x03;
875b206b
JS
3842 index = card->bus_index;
3843 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
1da177e4 3844
9fa1b3b1 3845 spin_lock_irqsave(&card->card_lock, flags);
02f1175c 3846 cy_writeb(base_addr + (CyRTPR << index), value & 0xff);
9fa1b3b1 3847 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
3848 }
3849 return 0;
3850} /* set_timeout */
1da177e4 3851
15ed6cc0
AC
3852static int get_timeout(struct cyclades_port *info,
3853 unsigned long __user *value)
1da177e4 3854{
875b206b 3855 struct cyclades_card *card;
02f1175c 3856 void __iomem *base_addr;
875b206b 3857 int channel, chip, index;
02f1175c 3858 unsigned long tmp;
1da177e4 3859
02f1175c 3860 card = info->card;
875b206b
JS
3861 channel = info->line - card->first_line;
3862 if (!IS_CYC_Z(*card)) {
02f1175c
JS
3863 chip = channel >> 2;
3864 channel &= 0x03;
875b206b
JS
3865 index = card->bus_index;
3866 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
02f1175c 3867
db05c3b1 3868 tmp = readb(base_addr + (CyRTPR << index));
02f1175c 3869 return put_user(tmp, value);
02f1175c 3870 }
f7429034 3871 return 0;
02f1175c 3872} /* get_timeout */
1da177e4 3873
02f1175c 3874static int set_default_timeout(struct cyclades_port *info, unsigned long value)
1da177e4 3875{
02f1175c
JS
3876 info->default_timeout = value & 0xff;
3877 return 0;
3878} /* set_default_timeout */
1da177e4 3879
15ed6cc0
AC
3880static int get_default_timeout(struct cyclades_port *info,
3881 unsigned long __user *value)
1da177e4 3882{
02f1175c
JS
3883 return put_user(info->default_timeout, value);
3884} /* get_default_timeout */
1da177e4
LT
3885
3886/*
3887 * This routine allows the tty driver to implement device-
3888 * specific ioctl's. If the ioctl number passed in cmd is
3889 * not recognized by the driver, it should return ENOIOCTLCMD.
3890 */
3891static int
02f1175c
JS
3892cy_ioctl(struct tty_struct *tty, struct file *file,
3893 unsigned int cmd, unsigned long arg)
1da177e4 3894{
cab9bdd1 3895 struct cyclades_port *info = tty->driver_data;
02f1175c
JS
3896 struct cyclades_icount cprev, cnow; /* kernel counter temps */
3897 struct serial_icounter_struct __user *p_cuser; /* user space */
3898 int ret_val = 0;
3899 unsigned long flags;
3900 void __user *argp = (void __user *)arg;
3901
3902 if (serial_paranoia_check(info, tty->name, "cy_ioctl"))
3903 return -ENODEV;
1da177e4
LT
3904
3905#ifdef CY_DEBUG_OTHER
21719191
JS
3906 printk(KERN_DEBUG "cyc:cy_ioctl ttyC%d, cmd = %x arg = %lx\n",
3907 info->line, cmd, arg);
1da177e4 3908#endif
7b130c0e 3909 lock_kernel();
1da177e4 3910
02f1175c
JS
3911 switch (cmd) {
3912 case CYGETMON:
3913 ret_val = get_mon_info(info, argp);
3914 break;
3915 case CYGETTHRESH:
3916 ret_val = get_threshold(info, argp);
3917 break;
3918 case CYSETTHRESH:
3919 ret_val = set_threshold(info, arg);
3920 break;
3921 case CYGETDEFTHRESH:
3922 ret_val = get_default_threshold(info, argp);
3923 break;
3924 case CYSETDEFTHRESH:
3925 ret_val = set_default_threshold(info, arg);
3926 break;
3927 case CYGETTIMEOUT:
3928 ret_val = get_timeout(info, argp);
3929 break;
3930 case CYSETTIMEOUT:
3931 ret_val = set_timeout(info, arg);
3932 break;
3933 case CYGETDEFTIMEOUT:
3934 ret_val = get_default_timeout(info, argp);
3935 break;
3936 case CYSETDEFTIMEOUT:
3937 ret_val = set_default_timeout(info, arg);
3938 break;
1da177e4 3939 case CYSETRFLOW:
02f1175c
JS
3940 info->rflow = (int)arg;
3941 ret_val = 0;
3942 break;
1da177e4 3943 case CYGETRFLOW:
02f1175c
JS
3944 ret_val = info->rflow;
3945 break;
1da177e4 3946 case CYSETRTSDTR_INV:
02f1175c
JS
3947 info->rtsdtr_inv = (int)arg;
3948 ret_val = 0;
3949 break;
1da177e4 3950 case CYGETRTSDTR_INV:
02f1175c
JS
3951 ret_val = info->rtsdtr_inv;
3952 break;
1da177e4 3953 case CYGETCD1400VER:
02f1175c
JS
3954 ret_val = info->chip_rev;
3955 break;
1da177e4
LT
3956#ifndef CONFIG_CYZ_INTR
3957 case CYZSETPOLLCYCLE:
02f1175c
JS
3958 cyz_polling_cycle = (arg * HZ) / 1000;
3959 ret_val = 0;
3960 break;
1da177e4 3961 case CYZGETPOLLCYCLE:
02f1175c
JS
3962 ret_val = (cyz_polling_cycle * 1000) / HZ;
3963 break;
3964#endif /* CONFIG_CYZ_INTR */
1da177e4 3965 case CYSETWAIT:
44b7d1b3 3966 info->port.closing_wait = (unsigned short)arg * HZ / 100;
02f1175c
JS
3967 ret_val = 0;
3968 break;
1da177e4 3969 case CYGETWAIT:
44b7d1b3 3970 ret_val = info->port.closing_wait / (HZ / 100);
02f1175c
JS
3971 break;
3972 case TIOCGSERIAL:
3973 ret_val = get_serial_info(info, argp);
3974 break;
3975 case TIOCSSERIAL:
3976 ret_val = set_serial_info(info, argp);
3977 break;
3978 case TIOCSERGETLSR: /* Get line status register */
3979 ret_val = get_lsr_info(info, argp);
3980 break;
3981 /*
3982 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
3983 * - mask passed in arg for lines of interest
3984 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
3985 * Caller should use TIOCGICOUNT to see which one it was
3986 */
1da177e4 3987 case TIOCMIWAIT:
9fa1b3b1 3988 spin_lock_irqsave(&info->card->card_lock, flags);
02f1175c 3989 /* note the counters on entry */
2c7fea99 3990 cnow = info->icount;
9fa1b3b1 3991 spin_unlock_irqrestore(&info->card->card_lock, flags);
2c7fea99
JS
3992 ret_val = wait_event_interruptible(info->delta_msr_wait, ({
3993 cprev = cnow;
9fa1b3b1 3994 spin_lock_irqsave(&info->card->card_lock, flags);
02f1175c 3995 cnow = info->icount; /* atomic copy */
9fa1b3b1 3996 spin_unlock_irqrestore(&info->card->card_lock, flags);
02f1175c 3997
2c7fea99
JS
3998 ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
3999 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
4000 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
4001 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts));
4002 }));
4003 break;
1da177e4 4004
02f1175c
JS
4005 /*
4006 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
4007 * Return: write counters to the user passed counter struct
4008 * NB: both 1->0 and 0->1 transitions are counted except for
4009 * RI where only 0->1 is counted.
4010 */
1da177e4 4011 case TIOCGICOUNT:
9fa1b3b1 4012 spin_lock_irqsave(&info->card->card_lock, flags);
02f1175c 4013 cnow = info->icount;
9fa1b3b1 4014 spin_unlock_irqrestore(&info->card->card_lock, flags);
02f1175c
JS
4015 p_cuser = argp;
4016 ret_val = put_user(cnow.cts, &p_cuser->cts);
4017 if (ret_val)
7b130c0e 4018 break;
02f1175c
JS
4019 ret_val = put_user(cnow.dsr, &p_cuser->dsr);
4020 if (ret_val)
7b130c0e 4021 break;
02f1175c
JS
4022 ret_val = put_user(cnow.rng, &p_cuser->rng);
4023 if (ret_val)
7b130c0e 4024 break;
02f1175c
JS
4025 ret_val = put_user(cnow.dcd, &p_cuser->dcd);
4026 if (ret_val)
7b130c0e 4027 break;
02f1175c
JS
4028 ret_val = put_user(cnow.rx, &p_cuser->rx);
4029 if (ret_val)
7b130c0e 4030 break;
02f1175c
JS
4031 ret_val = put_user(cnow.tx, &p_cuser->tx);
4032 if (ret_val)
7b130c0e 4033 break;
02f1175c
JS
4034 ret_val = put_user(cnow.frame, &p_cuser->frame);
4035 if (ret_val)
7b130c0e 4036 break;
02f1175c
JS
4037 ret_val = put_user(cnow.overrun, &p_cuser->overrun);
4038 if (ret_val)
7b130c0e 4039 break;
02f1175c
JS
4040 ret_val = put_user(cnow.parity, &p_cuser->parity);
4041 if (ret_val)
7b130c0e 4042 break;
02f1175c
JS
4043 ret_val = put_user(cnow.brk, &p_cuser->brk);
4044 if (ret_val)
7b130c0e 4045 break;
02f1175c
JS
4046 ret_val = put_user(cnow.buf_overrun, &p_cuser->buf_overrun);
4047 if (ret_val)
7b130c0e 4048 break;
02f1175c
JS
4049 ret_val = 0;
4050 break;
4051 default:
4052 ret_val = -ENOIOCTLCMD;
4053 }
7b130c0e 4054 unlock_kernel();
1da177e4
LT
4055
4056#ifdef CY_DEBUG_OTHER
21719191 4057 printk(KERN_DEBUG "cyc:cy_ioctl done\n");
1da177e4 4058#endif
02f1175c
JS
4059 return ret_val;
4060} /* cy_ioctl */
1da177e4
LT
4061
4062/*
4063 * This routine allows the tty driver to be notified when
4064 * device's termios settings have changed. Note that a
4065 * well-designed tty driver should be prepared to accept the case
4066 * where old == NULL, and try to do something rational.
4067 */
02f1175c 4068static void cy_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
1da177e4 4069{
cab9bdd1 4070 struct cyclades_port *info = tty->driver_data;
1da177e4
LT
4071
4072#ifdef CY_DEBUG_OTHER
21719191 4073 printk(KERN_DEBUG "cyc:cy_set_termios ttyC%d\n", info->line);
1da177e4
LT
4074#endif
4075
02f1175c
JS
4076 set_line_char(info);
4077
4078 if ((old_termios->c_cflag & CRTSCTS) &&
4079 !(tty->termios->c_cflag & CRTSCTS)) {
4080 tty->hw_stopped = 0;
4081 cy_start(tty);
4082 }
1da177e4 4083#if 0
02f1175c
JS
4084 /*
4085 * No need to wake up processes in open wait, since they
4086 * sample the CLOCAL flag once, and don't recheck it.
4087 * XXX It's not clear whether the current behavior is correct
4088 * or not. Hence, this may change.....
4089 */
4090 if (!(old_termios->c_cflag & CLOCAL) &&
4091 (tty->termios->c_cflag & CLOCAL))
77451e53 4092 wake_up_interruptible(&info->port.open_wait);
1da177e4 4093#endif
02f1175c 4094} /* cy_set_termios */
1da177e4
LT
4095
4096/* This function is used to send a high-priority XON/XOFF character to
4097 the device.
4098*/
02f1175c 4099static void cy_send_xchar(struct tty_struct *tty, char ch)
1da177e4 4100{
cab9bdd1 4101 struct cyclades_port *info = tty->driver_data;
875b206b
JS
4102 struct cyclades_card *card;
4103 int channel;
1da177e4 4104
02f1175c 4105 if (serial_paranoia_check(info, tty->name, "cy_send_xchar"))
1da177e4
LT
4106 return;
4107
02f1175c 4108 info->x_char = ch;
1da177e4
LT
4109
4110 if (ch)
02f1175c 4111 cy_start(tty);
1da177e4
LT
4112
4113 card = info->card;
875b206b 4114 channel = info->line - card->first_line;
1da177e4 4115
875b206b 4116 if (IS_CYC_Z(*card)) {
02f1175c 4117 if (ch == STOP_CHAR(tty))
875b206b 4118 cyz_issue_cmd(card, channel, C_CM_SENDXOFF, 0L);
02f1175c 4119 else if (ch == START_CHAR(tty))
875b206b 4120 cyz_issue_cmd(card, channel, C_CM_SENDXON, 0L);
1da177e4
LT
4121 }
4122}
4123
4124/* This routine is called by the upper-layer tty layer to signal
4125 that incoming characters should be throttled because the input
4126 buffers are close to full.
4127 */
02f1175c 4128static void cy_throttle(struct tty_struct *tty)
1da177e4 4129{
cab9bdd1 4130 struct cyclades_port *info = tty->driver_data;
875b206b 4131 struct cyclades_card *card;
02f1175c
JS
4132 unsigned long flags;
4133 void __iomem *base_addr;
875b206b 4134 int chip, channel, index;
1da177e4
LT
4135
4136#ifdef CY_DEBUG_THROTTLE
02f1175c 4137 char buf[64];
1da177e4 4138
21719191 4139 printk(KERN_DEBUG "cyc:throttle %s: %ld...ttyC%d\n", tty_name(tty, buf),
02f1175c 4140 tty->ldisc.chars_in_buffer(tty), info->line);
1da177e4
LT
4141#endif
4142
15ed6cc0 4143 if (serial_paranoia_check(info, tty->name, "cy_throttle"))
02f1175c 4144 return;
02f1175c
JS
4145
4146 card = info->card;
4147
4148 if (I_IXOFF(tty)) {
875b206b 4149 if (!IS_CYC_Z(*card))
02f1175c
JS
4150 cy_send_xchar(tty, STOP_CHAR(tty));
4151 else
4152 info->throttle = 1;
4153 }
1da177e4 4154
02f1175c 4155 if (tty->termios->c_cflag & CRTSCTS) {
875b206b
JS
4156 channel = info->line - card->first_line;
4157 if (!IS_CYC_Z(*card)) {
02f1175c
JS
4158 chip = channel >> 2;
4159 channel &= 0x03;
875b206b
JS
4160 index = card->bus_index;
4161 base_addr = card->base_addr +
02f1175c
JS
4162 (cy_chip_offset[chip] << index);
4163
9fa1b3b1 4164 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
4165 cy_writeb(base_addr + (CyCAR << index),
4166 (u_char) channel);
4167 if (info->rtsdtr_inv) {
4168 cy_writeb(base_addr + (CyMSVR2 << index),
4169 ~CyDTR);
4170 } else {
4171 cy_writeb(base_addr + (CyMSVR1 << index),
4172 ~CyRTS);
4173 }
9fa1b3b1 4174 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
4175 } else {
4176 info->throttle = 1;
4177 }
4178 }
02f1175c 4179} /* cy_throttle */
1da177e4
LT
4180
4181/*
4182 * This routine notifies the tty driver that it should signal
4183 * that characters can now be sent to the tty without fear of
4184 * overrunning the input buffers of the line disciplines.
4185 */
02f1175c 4186static void cy_unthrottle(struct tty_struct *tty)
1da177e4 4187{
cab9bdd1 4188 struct cyclades_port *info = tty->driver_data;
875b206b 4189 struct cyclades_card *card;
02f1175c
JS
4190 unsigned long flags;
4191 void __iomem *base_addr;
875b206b 4192 int chip, channel, index;
1da177e4
LT
4193
4194#ifdef CY_DEBUG_THROTTLE
02f1175c
JS
4195 char buf[64];
4196
21719191 4197 printk(KERN_DEBUG "cyc:unthrottle %s: %ld...ttyC%d\n",
15ed6cc0 4198 tty_name(tty, buf), tty_chars_in_buffer(tty), info->line);
1da177e4
LT
4199#endif
4200
15ed6cc0 4201 if (serial_paranoia_check(info, tty->name, "cy_unthrottle"))
02f1175c 4202 return;
1da177e4 4203
02f1175c
JS
4204 if (I_IXOFF(tty)) {
4205 if (info->x_char)
4206 info->x_char = 0;
4207 else
4208 cy_send_xchar(tty, START_CHAR(tty));
1da177e4 4209 }
1da177e4 4210
02f1175c
JS
4211 if (tty->termios->c_cflag & CRTSCTS) {
4212 card = info->card;
875b206b
JS
4213 channel = info->line - card->first_line;
4214 if (!IS_CYC_Z(*card)) {
02f1175c
JS
4215 chip = channel >> 2;
4216 channel &= 0x03;
875b206b
JS
4217 index = card->bus_index;
4218 base_addr = card->base_addr +
02f1175c
JS
4219 (cy_chip_offset[chip] << index);
4220
9fa1b3b1 4221 spin_lock_irqsave(&card->card_lock, flags);
02f1175c
JS
4222 cy_writeb(base_addr + (CyCAR << index),
4223 (u_char) channel);
4224 if (info->rtsdtr_inv) {
4225 cy_writeb(base_addr + (CyMSVR2 << index),
4226 CyDTR);
4227 } else {
4228 cy_writeb(base_addr + (CyMSVR1 << index),
4229 CyRTS);
4230 }
9fa1b3b1 4231 spin_unlock_irqrestore(&card->card_lock, flags);
02f1175c
JS
4232 } else {
4233 info->throttle = 0;
4234 }
4235 }
02f1175c 4236} /* cy_unthrottle */
1da177e4
LT
4237
4238/* cy_start and cy_stop provide software output flow control as a
4239 function of XON/XOFF, software CTS, and other such stuff.
4240*/
02f1175c 4241static void cy_stop(struct tty_struct *tty)
1da177e4 4242{
02f1175c 4243 struct cyclades_card *cinfo;
cab9bdd1 4244 struct cyclades_port *info = tty->driver_data;
02f1175c
JS
4245 void __iomem *base_addr;
4246 int chip, channel, index;
4247 unsigned long flags;
1da177e4
LT
4248
4249#ifdef CY_DEBUG_OTHER
21719191 4250 printk(KERN_DEBUG "cyc:cy_stop ttyC%d\n", info->line);
1da177e4
LT
4251#endif
4252
02f1175c
JS
4253 if (serial_paranoia_check(info, tty->name, "cy_stop"))
4254 return;
1da177e4 4255
875b206b 4256 cinfo = info->card;
02f1175c
JS
4257 channel = info->line - cinfo->first_line;
4258 if (!IS_CYC_Z(*cinfo)) {
4259 index = cinfo->bus_index;
4260 chip = channel >> 2;
4261 channel &= 0x03;
9fa1b3b1 4262 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
1da177e4 4263
9fa1b3b1 4264 spin_lock_irqsave(&cinfo->card_lock, flags);
02f1175c
JS
4265 cy_writeb(base_addr + (CyCAR << index),
4266 (u_char)(channel & 0x0003)); /* index channel */
4267 cy_writeb(base_addr + (CySRER << index),
db05c3b1 4268 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
9fa1b3b1 4269 spin_unlock_irqrestore(&cinfo->card_lock, flags);
02f1175c 4270 }
02f1175c 4271} /* cy_stop */
1da177e4 4272
02f1175c 4273static void cy_start(struct tty_struct *tty)
1da177e4 4274{
02f1175c 4275 struct cyclades_card *cinfo;
cab9bdd1 4276 struct cyclades_port *info = tty->driver_data;
02f1175c
JS
4277 void __iomem *base_addr;
4278 int chip, channel, index;
4279 unsigned long flags;
1da177e4
LT
4280
4281#ifdef CY_DEBUG_OTHER
21719191 4282 printk(KERN_DEBUG "cyc:cy_start ttyC%d\n", info->line);
1da177e4
LT
4283#endif
4284
02f1175c
JS
4285 if (serial_paranoia_check(info, tty->name, "cy_start"))
4286 return;
1da177e4 4287
875b206b 4288 cinfo = info->card;
02f1175c
JS
4289 channel = info->line - cinfo->first_line;
4290 index = cinfo->bus_index;
4291 if (!IS_CYC_Z(*cinfo)) {
4292 chip = channel >> 2;
4293 channel &= 0x03;
9fa1b3b1 4294 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
1da177e4 4295
9fa1b3b1 4296 spin_lock_irqsave(&cinfo->card_lock, flags);
15ed6cc0
AC
4297 cy_writeb(base_addr + (CyCAR << index),
4298 (u_char) (channel & 0x0003)); /* index channel */
02f1175c 4299 cy_writeb(base_addr + (CySRER << index),
db05c3b1 4300 readb(base_addr + (CySRER << index)) | CyTxRdy);
9fa1b3b1 4301 spin_unlock_irqrestore(&cinfo->card_lock, flags);
02f1175c 4302 }
02f1175c 4303} /* cy_start */
1da177e4 4304
1da177e4
LT
4305/*
4306 * cy_hangup() --- called by tty_hangup() when a hangup is signaled.
4307 */
02f1175c 4308static void cy_hangup(struct tty_struct *tty)
1da177e4 4309{
cab9bdd1 4310 struct cyclades_port *info = tty->driver_data;
02f1175c 4311
1da177e4 4312#ifdef CY_DEBUG_OTHER
21719191 4313 printk(KERN_DEBUG "cyc:cy_hangup ttyC%d\n", info->line);
1da177e4
LT
4314#endif
4315
02f1175c
JS
4316 if (serial_paranoia_check(info, tty->name, "cy_hangup"))
4317 return;
1da177e4 4318
02f1175c
JS
4319 cy_flush_buffer(tty);
4320 shutdown(info);
77451e53 4321 info->port.count = 0;
1da177e4 4322#ifdef CY_DEBUG_COUNT
21719191
JS
4323 printk(KERN_DEBUG "cyc:cy_hangup (%d): setting count to 0\n",
4324 current->pid);
1da177e4 4325#endif
77451e53
AC
4326 info->port.tty = NULL;
4327 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
4328 wake_up_interruptible(&info->port.open_wait);
02f1175c 4329} /* cy_hangup */
1da177e4
LT
4330
4331/*
4332 * ---------------------------------------------------------------------
4333 * cy_init() and friends
4334 *
4335 * cy_init() is called at boot-time to initialize the serial driver.
4336 * ---------------------------------------------------------------------
4337 */
4338
dd025c0c 4339static int __devinit cy_init_card(struct cyclades_card *cinfo)
0809e267
JS
4340{
4341 struct cyclades_port *info;
a6343afb 4342 u32 uninitialized_var(mailbox);
65f76a82 4343 unsigned int nports, port;
0809e267 4344 unsigned short chip_number;
65f76a82 4345 int uninitialized_var(index);
0809e267 4346
3046d50e
JS
4347 spin_lock_init(&cinfo->card_lock);
4348
c2ad4c75 4349 if (IS_CYC_Z(*cinfo)) { /* Cyclades-Z */
0809e267
JS
4350 mailbox = readl(&((struct RUNTIME_9060 __iomem *)
4351 cinfo->ctl_addr)->mail_box_0);
4352 nports = (mailbox == ZE_V1) ? ZE_V1_NPORTS : 8;
4353 cinfo->intr_enabled = 0;
4354 cinfo->nports = 0; /* Will be correctly set later, after
4355 Z FW is loaded */
3046d50e
JS
4356 } else {
4357 index = cinfo->bus_index;
4358 nports = cinfo->nports = CyPORTS_PER_CHIP * cinfo->num_chips;
4359 }
4360
dd025c0c
JS
4361 cinfo->ports = kzalloc(sizeof(*cinfo->ports) * nports, GFP_KERNEL);
4362 if (cinfo->ports == NULL) {
4363 printk(KERN_ERR "Cyclades: cannot allocate ports\n");
3137553d 4364 cinfo->nports = 0;
dd025c0c
JS
4365 return -ENOMEM;
4366 }
4367
3046d50e
JS
4368 for (port = cinfo->first_line; port < cinfo->first_line + nports;
4369 port++) {
dd025c0c 4370 info = &cinfo->ports[port - cinfo->first_line];
44b7d1b3 4371 tty_port_init(&info->port);
3046d50e 4372 info->magic = CYCLADES_MAGIC;
875b206b 4373 info->card = cinfo;
3046d50e 4374 info->line = port;
3046d50e 4375
44b7d1b3
AC
4376 info->port.closing_wait = CLOSING_WAIT_DELAY;
4377 info->port.close_delay = 5 * HZ / 10;
77451e53 4378 info->port.flags = STD_COM_FLAGS;
2c7fea99 4379 init_completion(&info->shutdown_wait);
3046d50e
JS
4380 init_waitqueue_head(&info->delta_msr_wait);
4381
4382 if (IS_CYC_Z(*cinfo)) {
0809e267 4383 info->type = PORT_STARTECH;
0809e267
JS
4384 if (mailbox == ZO_V1)
4385 info->xmit_fifo_size = CYZ_FIFO_SIZE;
4386 else
3046d50e 4387 info->xmit_fifo_size = 4 * CYZ_FIFO_SIZE;
0809e267 4388#ifdef CONFIG_CYZ_INTR
3991428d
JS
4389 setup_timer(&cyz_rx_full_timer[port],
4390 cyz_rx_restart, (unsigned long)info);
0809e267 4391#endif
3046d50e 4392 } else {
0809e267 4393 info->type = PORT_CIRRUS;
0809e267 4394 info->xmit_fifo_size = CyMAX_CHAR_FIFO;
3046d50e 4395 info->cor1 = CyPARITY_NONE | Cy_1_STOP | Cy_8_BITS;
0809e267
JS
4396 info->cor2 = CyETC;
4397 info->cor3 = 0x08; /* _very_ small rcv threshold */
3046d50e 4398
0809e267 4399 chip_number = (port - cinfo->first_line) / 4;
15ed6cc0
AC
4400 info->chip_rev = readb(cinfo->base_addr +
4401 (cy_chip_offset[chip_number] << index) +
4402 (CyGFRCR << index));
4403
4404 if (info->chip_rev >= CD1400_REV_J) {
0809e267
JS
4405 /* It is a CD1400 rev. J or later */
4406 info->tbpr = baud_bpr_60[13]; /* Tx BPR */
4407 info->tco = baud_co_60[13]; /* Tx CO */
4408 info->rbpr = baud_bpr_60[13]; /* Rx BPR */
4409 info->rco = baud_co_60[13]; /* Rx CO */
0809e267
JS
4410 info->rtsdtr_inv = 1;
4411 } else {
4412 info->tbpr = baud_bpr_25[13]; /* Tx BPR */
4413 info->tco = baud_co_25[13]; /* Tx CO */
4414 info->rbpr = baud_bpr_25[13]; /* Rx BPR */
4415 info->rco = baud_co_25[13]; /* Rx CO */
0809e267
JS
4416 info->rtsdtr_inv = 0;
4417 }
3046d50e
JS
4418 info->read_status_mask = CyTIMEOUT | CySPECHAR |
4419 CyBREAK | CyPARITY | CyFRAME | CyOVERRUN;
0809e267 4420 }
3046d50e 4421
0809e267 4422 }
3046d50e
JS
4423
4424#ifndef CONFIG_CYZ_INTR
4425 if (IS_CYC_Z(*cinfo) && !timer_pending(&cyz_timerlist)) {
4426 mod_timer(&cyz_timerlist, jiffies + 1);
4427#ifdef CY_PCI_DEBUG
4428 printk(KERN_DEBUG "Cyclades-Z polling initialized\n");
4429#endif
4430 }
4431#endif
dd025c0c 4432 return 0;
0809e267
JS
4433}
4434
1da177e4
LT
4435/* initialize chips on Cyclom-Y card -- return number of valid
4436 chips (which is number of ports/4) */
31b4f0a1
JS
4437static unsigned short __devinit cyy_init_card(void __iomem *true_base_addr,
4438 int index)
1da177e4 4439{
02f1175c
JS
4440 unsigned int chip_number;
4441 void __iomem *base_addr;
4442
4443 cy_writeb(true_base_addr + (Cy_HwReset << index), 0);
4444 /* Cy_HwReset is 0x1400 */
4445 cy_writeb(true_base_addr + (Cy_ClrIntr << index), 0);
4446 /* Cy_ClrIntr is 0x1800 */
4447 udelay(500L);
4448
15ed6cc0
AC
4449 for (chip_number = 0; chip_number < CyMAX_CHIPS_PER_CARD;
4450 chip_number++) {
02f1175c
JS
4451 base_addr =
4452 true_base_addr + (cy_chip_offset[chip_number] << index);
4453 mdelay(1);
db05c3b1 4454 if (readb(base_addr + (CyCCR << index)) != 0x00) {
02f1175c
JS
4455 /*************
4456 printk(" chip #%d at %#6lx is never idle (CCR != 0)\n",
4457 chip_number, (unsigned long)base_addr);
4458 *************/
4459 return chip_number;
4460 }
4461
4462 cy_writeb(base_addr + (CyGFRCR << index), 0);
4463 udelay(10L);
4464
4465 /* The Cyclom-16Y does not decode address bit 9 and therefore
4466 cannot distinguish between references to chip 0 and a non-
4467 existent chip 4. If the preceding clearing of the supposed
4468 chip 4 GFRCR register appears at chip 0, there is no chip 4
4469 and this must be a Cyclom-16Y, not a Cyclom-32Ye.
4470 */
db05c3b1 4471 if (chip_number == 4 && readb(true_base_addr +
02f1175c
JS
4472 (cy_chip_offset[0] << index) +
4473 (CyGFRCR << index)) == 0) {
4474 return chip_number;
4475 }
4476
4477 cy_writeb(base_addr + (CyCCR << index), CyCHIP_RESET);
4478 mdelay(1);
4479
db05c3b1 4480 if (readb(base_addr + (CyGFRCR << index)) == 0x00) {
02f1175c
JS
4481 /*
4482 printk(" chip #%d at %#6lx is not responding ",
4483 chip_number, (unsigned long)base_addr);
4484 printk("(GFRCR stayed 0)\n",
4485 */
4486 return chip_number;
4487 }
db05c3b1 4488 if ((0xf0 & (readb(base_addr + (CyGFRCR << index)))) !=
02f1175c
JS
4489 0x40) {
4490 /*
4491 printk(" chip #%d at %#6lx is not valid (GFRCR == "
4492 "%#2x)\n",
4493 chip_number, (unsigned long)base_addr,
4494 base_addr[CyGFRCR<<index]);
4495 */
4496 return chip_number;
4497 }
4498 cy_writeb(base_addr + (CyGCR << index), CyCH0_SERIAL);
db05c3b1 4499 if (readb(base_addr + (CyGFRCR << index)) >= CD1400_REV_J) {
02f1175c
JS
4500 /* It is a CD1400 rev. J or later */
4501 /* Impossible to reach 5ms with this chip.
4502 Changed to 2ms instead (f = 500 Hz). */
4503 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_60_2MS);
4504 } else {
4505 /* f = 200 Hz */
4506 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_25_5MS);
4507 }
1da177e4 4508
02f1175c
JS
4509 /*
4510 printk(" chip #%d at %#6lx is rev 0x%2x\n",
4511 chip_number, (unsigned long)base_addr,
db05c3b1 4512 readb(base_addr+(CyGFRCR<<index)));
02f1175c
JS
4513 */
4514 }
4515 return chip_number;
4516} /* cyy_init_card */
1da177e4
LT
4517
4518/*
4519 * ---------------------------------------------------------------------
4520 * cy_detect_isa() - Probe for Cyclom-Y/ISA boards.
4521 * sets global variables and return the number of ISA boards found.
4522 * ---------------------------------------------------------------------
4523 */
02f1175c 4524static int __init cy_detect_isa(void)
1da177e4
LT
4525{
4526#ifdef CONFIG_ISA
02f1175c
JS
4527 unsigned short cy_isa_irq, nboard;
4528 void __iomem *cy_isa_address;
4529 unsigned short i, j, cy_isa_nchan;
1da177e4 4530#ifdef MODULE
02f1175c 4531 int isparam = 0;
1da177e4
LT
4532#endif
4533
02f1175c 4534 nboard = 0;
1da177e4
LT
4535
4536#ifdef MODULE
4537 /* Check for module parameters */
02f1175c
JS
4538 for (i = 0; i < NR_CARDS; i++) {
4539 if (maddr[i] || i) {
4540 isparam = 1;
4541 cy_isa_addresses[i] = maddr[i];
4542 }
4543 if (!maddr[i])
4544 break;
1da177e4
LT
4545 }
4546#endif
4547
02f1175c
JS
4548 /* scan the address table probing for Cyclom-Y/ISA boards */
4549 for (i = 0; i < NR_ISA_ADDRS; i++) {
4550 unsigned int isa_address = cy_isa_addresses[i];
15ed6cc0 4551 if (isa_address == 0x0000)
096dcfce 4552 return nboard;
1da177e4 4553
02f1175c 4554 /* probe for CD1400... */
cd989b3a 4555 cy_isa_address = ioremap_nocache(isa_address, CyISA_Ywin);
3137553d
JS
4556 if (cy_isa_address == NULL) {
4557 printk(KERN_ERR "Cyclom-Y/ISA: can't remap base "
4558 "address\n");
4559 continue;
4560 }
02f1175c
JS
4561 cy_isa_nchan = CyPORTS_PER_CHIP *
4562 cyy_init_card(cy_isa_address, 0);
4563 if (cy_isa_nchan == 0) {
3137553d 4564 iounmap(cy_isa_address);
02f1175c
JS
4565 continue;
4566 }
1da177e4
LT
4567#ifdef MODULE
4568 if (isparam && irq[i])
02f1175c 4569 cy_isa_irq = irq[i];
1da177e4
LT
4570 else
4571#endif
02f1175c
JS
4572 /* find out the board's irq by probing */
4573 cy_isa_irq = detect_isa_irq(cy_isa_address);
4574 if (cy_isa_irq == 0) {
21719191
JS
4575 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but the "
4576 "IRQ could not be detected.\n",
02f1175c 4577 (unsigned long)cy_isa_address);
3137553d 4578 iounmap(cy_isa_address);
02f1175c
JS
4579 continue;
4580 }
4581
4582 if ((cy_next_channel + cy_isa_nchan) > NR_PORTS) {
21719191
JS
4583 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
4584 "more channels are available. Change NR_PORTS "
4585 "in cyclades.c and recompile kernel.\n",
02f1175c 4586 (unsigned long)cy_isa_address);
3137553d 4587 iounmap(cy_isa_address);
096dcfce 4588 return nboard;
02f1175c
JS
4589 }
4590 /* fill the next cy_card structure available */
4591 for (j = 0; j < NR_CARDS; j++) {
f7429034 4592 if (cy_card[j].base_addr == NULL)
02f1175c
JS
4593 break;
4594 }
4595 if (j == NR_CARDS) { /* no more cy_cards available */
21719191
JS
4596 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
4597 "more cards can be used. Change NR_CARDS in "
4598 "cyclades.c and recompile kernel.\n",
02f1175c 4599 (unsigned long)cy_isa_address);
3137553d 4600 iounmap(cy_isa_address);
096dcfce 4601 return nboard;
02f1175c
JS
4602 }
4603
4604 /* allocate IRQ */
4605 if (request_irq(cy_isa_irq, cyy_interrupt,
4606 IRQF_DISABLED, "Cyclom-Y", &cy_card[j])) {
21719191
JS
4607 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but "
4608 "could not allocate IRQ#%d.\n",
4609 (unsigned long)cy_isa_address, cy_isa_irq);
3137553d 4610 iounmap(cy_isa_address);
096dcfce 4611 return nboard;
02f1175c
JS
4612 }
4613
4614 /* set cy_card */
4615 cy_card[j].base_addr = cy_isa_address;
4616 cy_card[j].ctl_addr = NULL;
4617 cy_card[j].irq = (int)cy_isa_irq;
4618 cy_card[j].bus_index = 0;
4619 cy_card[j].first_line = cy_next_channel;
4620 cy_card[j].num_chips = cy_isa_nchan / 4;
3137553d
JS
4621 if (cy_init_card(&cy_card[j])) {
4622 cy_card[j].base_addr = NULL;
4623 free_irq(cy_isa_irq, &cy_card[j]);
4624 iounmap(cy_isa_address);
4625 continue;
4626 }
02f1175c
JS
4627 nboard++;
4628
21719191
JS
4629 printk(KERN_INFO "Cyclom-Y/ISA #%d: 0x%lx-0x%lx, IRQ%d found: "
4630 "%d channels starting from port %d\n",
02f1175c
JS
4631 j + 1, (unsigned long)cy_isa_address,
4632 (unsigned long)(cy_isa_address + (CyISA_Ywin - 1)),
21719191
JS
4633 cy_isa_irq, cy_isa_nchan, cy_next_channel);
4634
6ad1ccc1
JS
4635 for (j = cy_next_channel;
4636 j < cy_next_channel + cy_isa_nchan; j++)
4637 tty_register_device(cy_serial_driver, j, NULL);
02f1175c
JS
4638 cy_next_channel += cy_isa_nchan;
4639 }
096dcfce 4640 return nboard;
1da177e4 4641#else
096dcfce 4642 return 0;
02f1175c
JS
4643#endif /* CONFIG_ISA */
4644} /* cy_detect_isa */
1da177e4 4645
58936d8d 4646#ifdef CONFIG_PCI
054f5b0a
JS
4647static inline int __devinit cyc_isfwstr(const char *str, unsigned int size)
4648{
4649 unsigned int a;
4650
4651 for (a = 0; a < size && *str; a++, str++)
4652 if (*str & 0x80)
4653 return -EINVAL;
4654
4655 for (; a < size; a++, str++)
4656 if (*str)
4657 return -EINVAL;
4658
4659 return 0;
4660}
4661
f61e761e 4662static inline void __devinit cyz_fpga_copy(void __iomem *fpga, const u8 *data,
054f5b0a
JS
4663 unsigned int size)
4664{
4665 for (; size > 0; size--) {
4666 cy_writel(fpga, *data++);
4667 udelay(10);
4668 }
4669}
4670
4671static void __devinit plx_init(struct pci_dev *pdev, int irq,
4672 struct RUNTIME_9060 __iomem *addr)
1da177e4 4673{
02f1175c 4674 /* Reset PLX */
054f5b0a 4675 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x40000000);
02f1175c 4676 udelay(100L);
054f5b0a 4677 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x40000000);
02f1175c
JS
4678
4679 /* Reload Config. Registers from EEPROM */
054f5b0a 4680 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x20000000);
02f1175c 4681 udelay(100L);
054f5b0a
JS
4682 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x20000000);
4683
4684 /* For some yet unknown reason, once the PLX9060 reloads the EEPROM,
4685 * the IRQ is lost and, thus, we have to re-write it to the PCI config.
4686 * registers. This will remain here until we find a permanent fix.
4687 */
4688 pci_write_config_byte(pdev, PCI_INTERRUPT_LINE, irq);
4689}
4690
4691static int __devinit __cyz_load_fw(const struct firmware *fw,
4692 const char *name, const u32 mailbox, void __iomem *base,
4693 void __iomem *fpga)
4694{
f61e761e
DW
4695 const void *ptr = fw->data;
4696 const struct zfile_header *h = ptr;
4697 const struct zfile_config *c, *cs;
4698 const struct zfile_block *b, *bs;
054f5b0a
JS
4699 unsigned int a, tmp, len = fw->size;
4700#define BAD_FW KERN_ERR "Bad firmware: "
4701 if (len < sizeof(*h)) {
4702 printk(BAD_FW "too short: %u<%zu\n", len, sizeof(*h));
4703 return -EINVAL;
4704 }
4705
4706 cs = ptr + h->config_offset;
4707 bs = ptr + h->block_offset;
4708
4709 if ((void *)(cs + h->n_config) > ptr + len ||
4710 (void *)(bs + h->n_blocks) > ptr + len) {
4711 printk(BAD_FW "too short");
4712 return -EINVAL;
4713 }
4714
4715 if (cyc_isfwstr(h->name, sizeof(h->name)) ||
4716 cyc_isfwstr(h->date, sizeof(h->date))) {
4717 printk(BAD_FW "bad formatted header string\n");
4718 return -EINVAL;
4719 }
4720
4721 if (strncmp(name, h->name, sizeof(h->name))) {
4722 printk(BAD_FW "bad name '%s' (expected '%s')\n", h->name, name);
4723 return -EINVAL;
4724 }
4725
4726 tmp = 0;
4727 for (c = cs; c < cs + h->n_config; c++) {
4728 for (a = 0; a < c->n_blocks; a++)
4729 if (c->block_list[a] > h->n_blocks) {
4730 printk(BAD_FW "bad block ref number in cfgs\n");
4731 return -EINVAL;
4732 }
4733 if (c->mailbox == mailbox && c->function == 0) /* 0 is normal */
4734 tmp++;
4735 }
4736 if (!tmp) {
4737 printk(BAD_FW "nothing appropriate\n");
4738 return -EINVAL;
4739 }
4740
4741 for (b = bs; b < bs + h->n_blocks; b++)
4742 if (b->file_offset + b->size > len) {
4743 printk(BAD_FW "bad block data offset\n");
4744 return -EINVAL;
4745 }
4746
4747 /* everything is OK, let's seek'n'load it */
4748 for (c = cs; c < cs + h->n_config; c++)
4749 if (c->mailbox == mailbox && c->function == 0)
4750 break;
4751
4752 for (a = 0; a < c->n_blocks; a++) {
4753 b = &bs[c->block_list[a]];
4754 if (b->type == ZBLOCK_FPGA) {
4755 if (fpga != NULL)
4756 cyz_fpga_copy(fpga, ptr + b->file_offset,
4757 b->size);
4758 } else {
4759 if (base != NULL)
4760 memcpy_toio(base + b->ram_offset,
4761 ptr + b->file_offset, b->size);
4762 }
4763 }
4764#undef BAD_FW
4765 return 0;
4766}
4767
4768static int __devinit cyz_load_fw(struct pci_dev *pdev, void __iomem *base_addr,
4769 struct RUNTIME_9060 __iomem *ctl_addr, int irq)
4770{
4771 const struct firmware *fw;
4772 struct FIRM_ID __iomem *fid = base_addr + ID_ADDRESS;
4773 struct CUSTOM_REG __iomem *cust = base_addr;
4774 struct ZFW_CTRL __iomem *pt_zfwctrl;
c4923b4f 4775 void __iomem *tmp;
054f5b0a
JS
4776 u32 mailbox, status;
4777 unsigned int i;
4778 int retval;
4779
4780 retval = request_firmware(&fw, "cyzfirm.bin", &pdev->dev);
4781 if (retval) {
4782 dev_err(&pdev->dev, "can't get firmware\n");
4783 goto err;
4784 }
4785
4786 /* Check whether the firmware is already loaded and running. If
4787 positive, skip this board */
4788 if (Z_FPGA_LOADED(ctl_addr) && readl(&fid->signature) == ZFIRM_ID) {
4789 u32 cntval = readl(base_addr + 0x190);
4790
4791 udelay(100);
4792 if (cntval != readl(base_addr + 0x190)) {
4793 /* FW counter is working, FW is running */
4794 dev_dbg(&pdev->dev, "Cyclades-Z FW already loaded. "
4795 "Skipping board.\n");
4796 retval = 0;
4797 goto err_rel;
4798 }
4799 }
4800
4801 /* start boot */
4802 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) &
4803 ~0x00030800UL);
4804
4805 mailbox = readl(&ctl_addr->mail_box_0);
4806
4807 if (mailbox == 0 || Z_FPGA_LOADED(ctl_addr)) {
4808 /* stops CPU and set window to beginning of RAM */
4809 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4810 cy_writel(&cust->cpu_stop, 0);
4811 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4812 udelay(100);
4813 }
4814
4815 plx_init(pdev, irq, ctl_addr);
4816
4817 if (mailbox != 0) {
4818 /* load FPGA */
4819 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, NULL,
4820 base_addr);
4821 if (retval)
4822 goto err_rel;
4823 if (!Z_FPGA_LOADED(ctl_addr)) {
4824 dev_err(&pdev->dev, "fw upload successful, but fw is "
4825 "not loaded\n");
4826 goto err_rel;
4827 }
4828 }
4829
4830 /* stops CPU and set window to beginning of RAM */
4831 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4832 cy_writel(&cust->cpu_stop, 0);
4833 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4834 udelay(100);
4835
4836 /* clear memory */
c4923b4f 4837 for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++)
054f5b0a
JS
4838 cy_writeb(tmp, 255);
4839 if (mailbox != 0) {
4840 /* set window to last 512K of RAM */
4841 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM + RAM_SIZE);
c4923b4f 4842 for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++)
054f5b0a
JS
4843 cy_writeb(tmp, 255);
4844 /* set window to beginning of RAM */
4845 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
054f5b0a
JS
4846 }
4847
4848 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, base_addr, NULL);
4849 release_firmware(fw);
4850 if (retval)
4851 goto err;
4852
4853 /* finish boot and start boards */
4854 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4855 cy_writel(&cust->cpu_start, 0);
4856 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4857 i = 0;
4858 while ((status = readl(&fid->signature)) != ZFIRM_ID && i++ < 40)
4859 msleep(100);
4860 if (status != ZFIRM_ID) {
4861 if (status == ZFIRM_HLT) {
4862 dev_err(&pdev->dev, "you need an external power supply "
4863 "for this number of ports. Firmware halted and "
4864 "board reset.\n");
4865 retval = -EIO;
4866 goto err;
4867 }
4868 dev_warn(&pdev->dev, "fid->signature = 0x%x... Waiting "
4869 "some more time\n", status);
4870 while ((status = readl(&fid->signature)) != ZFIRM_ID &&
4871 i++ < 200)
4872 msleep(100);
4873 if (status != ZFIRM_ID) {
4874 dev_err(&pdev->dev, "Board not started in 20 seconds! "
4875 "Giving up. (fid->signature = 0x%x)\n",
4876 status);
4877 dev_info(&pdev->dev, "*** Warning ***: if you are "
4878 "upgrading the FW, please power cycle the "
4879 "system before loading the new FW to the "
4880 "Cyclades-Z.\n");
4881
4882 if (Z_FPGA_LOADED(ctl_addr))
4883 plx_init(pdev, irq, ctl_addr);
4884
4885 retval = -EIO;
4886 goto err;
4887 }
4888 dev_dbg(&pdev->dev, "Firmware started after %d seconds.\n",
4889 i / 10);
4890 }
4891 pt_zfwctrl = base_addr + readl(&fid->zfwctrl_addr);
4892
4893 dev_dbg(&pdev->dev, "fid=> %p, zfwctrl_addr=> %x, npt_zfwctrl=> %p\n",
4894 base_addr + ID_ADDRESS, readl(&fid->zfwctrl_addr),
4895 base_addr + readl(&fid->zfwctrl_addr));
4896
4897 dev_info(&pdev->dev, "Cyclades-Z FW loaded: version = %x, ports = %u\n",
4898 readl(&pt_zfwctrl->board_ctrl.fw_version),
4899 readl(&pt_zfwctrl->board_ctrl.n_channel));
4900
4901 if (readl(&pt_zfwctrl->board_ctrl.n_channel) == 0) {
4902 dev_warn(&pdev->dev, "no Cyclades-Z ports were found. Please "
4903 "check the connection between the Z host card and the "
4904 "serial expanders.\n");
4905
4906 if (Z_FPGA_LOADED(ctl_addr))
4907 plx_init(pdev, irq, ctl_addr);
4908
4909 dev_info(&pdev->dev, "Null number of ports detected. Board "
4910 "reset.\n");
4911 retval = 0;
4912 goto err;
4913 }
4914
4915 cy_writel(&pt_zfwctrl->board_ctrl.op_system, C_OS_LINUX);
4916 cy_writel(&pt_zfwctrl->board_ctrl.dr_version, DRIVER_VERSION);
4917
4918 /*
4919 Early firmware failed to start looking for commands.
4920 This enables firmware interrupts for those commands.
4921 */
4922 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) |
4923 (1 << 17));
4924 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) |
4925 0x00030800UL);
4926
054f5b0a
JS
4927 return 0;
4928err_rel:
4929 release_firmware(fw);
4930err:
4931 return retval;
1da177e4
LT
4932}
4933
58936d8d
JS
4934static int __devinit cy_pci_probe(struct pci_dev *pdev,
4935 const struct pci_device_id *ent)
1da177e4 4936{
3137553d
JS
4937 void __iomem *addr0 = NULL, *addr2 = NULL;
4938 char *card_name = NULL;
4939 u32 mailbox;
4940 unsigned int device_id, nchan = 0, card_no, i;
4941 unsigned char plx_ver;
4942 int retval, irq;
02f1175c 4943
58936d8d
JS
4944 retval = pci_enable_device(pdev);
4945 if (retval) {
4946 dev_err(&pdev->dev, "cannot enable device\n");
3137553d 4947 goto err;
58936d8d 4948 }
1da177e4 4949
58936d8d 4950 /* read PCI configuration area */
3137553d 4951 irq = pdev->irq;
58936d8d 4952 device_id = pdev->device & ~PCI_DEVICE_ID_MASK;
1da177e4 4953
3137553d
JS
4954#if defined(__alpha__)
4955 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo) { /* below 1M? */
4956 dev_err(&pdev->dev, "Cyclom-Y/PCI not supported for low "
4957 "addresses on Alpha systems.\n");
4958 retval = -EIO;
4959 goto err_dis;
4960 }
4961#endif
4962 if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Lo) {
4963 dev_err(&pdev->dev, "Cyclades-Z/PCI not supported for low "
4964 "addresses\n");
4965 retval = -EIO;
4966 goto err_dis;
4967 }
4968
4969 if (pci_resource_flags(pdev, 2) & IORESOURCE_IO) {
4970 dev_warn(&pdev->dev, "PCI I/O bit incorrectly set. Ignoring "
4971 "it...\n");
4972 pdev->resource[2].flags &= ~IORESOURCE_IO;
4973 }
4974
4975 retval = pci_request_regions(pdev, "cyclades");
4976 if (retval) {
4977 dev_err(&pdev->dev, "failed to reserve resources\n");
4978 goto err_dis;
4979 }
4980
4981 retval = -EIO;
58936d8d
JS
4982 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
4983 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
3137553d 4984 card_name = "Cyclom-Y";
1da177e4 4985
24e6fd4c
JS
4986 addr0 = ioremap_nocache(pci_resource_start(pdev, 0),
4987 CyPCI_Yctl);
3137553d
JS
4988 if (addr0 == NULL) {
4989 dev_err(&pdev->dev, "can't remap ctl region\n");
4990 goto err_reg;
58936d8d 4991 }
24e6fd4c
JS
4992 addr2 = ioremap_nocache(pci_resource_start(pdev, 2),
4993 CyPCI_Ywin);
3137553d
JS
4994 if (addr2 == NULL) {
4995 dev_err(&pdev->dev, "can't remap base region\n");
4996 goto err_unmap;
58936d8d 4997 }
1da177e4 4998
3137553d
JS
4999 nchan = CyPORTS_PER_CHIP * cyy_init_card(addr2, 1);
5000 if (nchan == 0) {
21719191
JS
5001 dev_err(&pdev->dev, "Cyclom-Y PCI host card with no "
5002 "Serial-Modules\n");
c847d47c 5003 goto err_unmap;
58936d8d 5004 }
58936d8d 5005 } else if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Hi) {
3137553d 5006 struct RUNTIME_9060 __iomem *ctl_addr;
21719191 5007
24e6fd4c
JS
5008 ctl_addr = addr0 = ioremap_nocache(pci_resource_start(pdev, 0),
5009 CyPCI_Zctl);
3137553d
JS
5010 if (addr0 == NULL) {
5011 dev_err(&pdev->dev, "can't remap ctl region\n");
5012 goto err_reg;
5013 }
58936d8d
JS
5014
5015 /* Disable interrupts on the PLX before resetting it */
054f5b0a 5016 cy_writew(addr0 + 0x68, readw(addr0 + 0x68) & ~0x0900);
58936d8d 5017
054f5b0a 5018 plx_init(pdev, irq, addr0);
02f1175c 5019
3137553d 5020 mailbox = (u32)readl(&ctl_addr->mail_box_0);
58936d8d 5021
24e6fd4c
JS
5022 addr2 = ioremap_nocache(pci_resource_start(pdev, 2),
5023 mailbox == ZE_V1 ? CyPCI_Ze_win : CyPCI_Zwin);
3137553d
JS
5024 if (addr2 == NULL) {
5025 dev_err(&pdev->dev, "can't remap base region\n");
5026 goto err_unmap;
58936d8d
JS
5027 }
5028
5029 if (mailbox == ZE_V1) {
3137553d
JS
5030 card_name = "Cyclades-Ze";
5031
5032 readl(&ctl_addr->mail_box_0);
5033 nchan = ZE_V1_NPORTS;
58936d8d 5034 } else {
3137553d 5035 card_name = "Cyclades-8Zo";
ace08c3c 5036 nchan = 8;
1da177e4
LT
5037
5038#ifdef CY_PCI_DEBUG
3137553d
JS
5039 if (mailbox == ZO_V1) {
5040 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
5041 dev_info(&pdev->dev, "Cyclades-8Zo/PCI: FPGA "
5042 "id %lx, ver %lx\n", (ulong)(0xff &
5043 readl(&((struct CUSTOM_REG *)addr2)->
5044 fpga_id)), (ulong)(0xff &
5045 readl(&((struct CUSTOM_REG *)addr2)->
5046 fpga_version)));
5047 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
5048 } else {
5049 dev_info(&pdev->dev, "Cyclades-Z/PCI: New "
5050 "Cyclades-Z board. FPGA not loaded\n");
5051 }
1da177e4 5052#endif
3137553d
JS
5053 /* The following clears the firmware id word. This
5054 ensures that the driver will not attempt to talk to
5055 the board until it has been properly initialized.
5056 */
5057 if ((mailbox == ZO_V1) || (mailbox == ZO_V2))
5058 cy_writel(addr2 + ID_ADDRESS, 0L);
58936d8d 5059 }
ace08c3c
JS
5060
5061 retval = cyz_load_fw(pdev, addr2, addr0, irq);
5062 if (retval)
5063 goto err_unmap;
3137553d
JS
5064 }
5065
5066 if ((cy_next_channel + nchan) > NR_PORTS) {
5067 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
5068 "channels are available. Change NR_PORTS in "
5069 "cyclades.c and recompile kernel.\n");
5070 goto err_unmap;
5071 }
5072 /* fill the next cy_card structure available */
5073 for (card_no = 0; card_no < NR_CARDS; card_no++) {
5074 if (cy_card[card_no].base_addr == NULL)
5075 break;
5076 }
5077 if (card_no == NR_CARDS) { /* no more cy_cards available */
5078 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
5079 "more cards can be used. Change NR_CARDS in "
5080 "cyclades.c and recompile kernel.\n");
5081 goto err_unmap;
5082 }
5083
5084 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
5085 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
5086 /* allocate IRQ */
5087 retval = request_irq(irq, cyy_interrupt,
5088 IRQF_SHARED, "Cyclom-Y", &cy_card[card_no]);
5089 if (retval) {
5090 dev_err(&pdev->dev, "could not allocate IRQ\n");
5091 goto err_unmap;
58936d8d 5092 }
3137553d
JS
5093 cy_card[card_no].num_chips = nchan / 4;
5094 } else {
02f1175c 5095#ifdef CONFIG_CYZ_INTR
58936d8d 5096 /* allocate IRQ only if board has an IRQ */
3137553d
JS
5097 if (irq != 0 && irq != 255) {
5098 retval = request_irq(irq, cyz_interrupt,
58936d8d 5099 IRQF_SHARED, "Cyclades-Z",
3137553d 5100 &cy_card[card_no]);
58936d8d 5101 if (retval) {
21719191 5102 dev_err(&pdev->dev, "could not allocate IRQ\n");
3137553d 5103 goto err_unmap;
02f1175c 5104 }
58936d8d 5105 }
02f1175c 5106#endif /* CONFIG_CYZ_INTR */
65f76a82 5107 cy_card[card_no].num_chips = (unsigned int)-1;
3137553d 5108 }
02f1175c 5109
3137553d
JS
5110 /* set cy_card */
5111 cy_card[card_no].base_addr = addr2;
5112 cy_card[card_no].ctl_addr = addr0;
5113 cy_card[card_no].irq = irq;
5114 cy_card[card_no].bus_index = 1;
5115 cy_card[card_no].first_line = cy_next_channel;
5116 retval = cy_init_card(&cy_card[card_no]);
5117 if (retval)
5118 goto err_null;
58936d8d 5119
3137553d 5120 pci_set_drvdata(pdev, &cy_card[card_no]);
58936d8d 5121
3137553d
JS
5122 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
5123 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
5124 /* enable interrupts in the PCI interface */
5125 plx_ver = readb(addr2 + CyPLX_VER) & 0x0f;
5126 switch (plx_ver) {
5127 case PLX_9050:
5128
5129 cy_writeb(addr0 + 0x4c, 0x43);
5130 break;
5131
5132 case PLX_9060:
5133 case PLX_9080:
5134 default: /* Old boards, use PLX_9060 */
054f5b0a 5135 plx_init(pdev, irq, addr0);
3137553d
JS
5136 cy_writew(addr0 + 0x68, readw(addr0 + 0x68) | 0x0900);
5137 break;
5138 }
58936d8d
JS
5139 }
5140
3137553d
JS
5141 dev_info(&pdev->dev, "%s/PCI #%d found: %d channels starting from "
5142 "port %d.\n", card_name, card_no + 1, nchan, cy_next_channel);
5143 for (i = cy_next_channel; i < cy_next_channel + nchan; i++)
5144 tty_register_device(cy_serial_driver, i, &pdev->dev);
5145 cy_next_channel += nchan;
5146
58936d8d 5147 return 0;
3137553d
JS
5148err_null:
5149 cy_card[card_no].base_addr = NULL;
5150 free_irq(irq, &cy_card[card_no]);
5151err_unmap:
24e6fd4c 5152 iounmap(addr0);
3137553d 5153 if (addr2)
24e6fd4c 5154 iounmap(addr2);
3137553d
JS
5155err_reg:
5156 pci_release_regions(pdev);
5157err_dis:
5158 pci_disable_device(pdev);
5159err:
5160 return retval;
58936d8d 5161}
58936d8d 5162
6747cd93 5163static void __devexit cy_pci_remove(struct pci_dev *pdev)
58936d8d 5164{
38d09093 5165 struct cyclades_card *cinfo = pci_get_drvdata(pdev);
f3851e73 5166 unsigned int i;
38d09093 5167
85c93fa9 5168 /* non-Z with old PLX */
c2ad4c75
JS
5169 if (!IS_CYC_Z(*cinfo) && (readb(cinfo->base_addr + CyPLX_VER) & 0x0f) ==
5170 PLX_9050)
85c93fa9
JS
5171 cy_writeb(cinfo->ctl_addr + 0x4c, 0);
5172 else
5173#ifndef CONFIG_CYZ_INTR
c2ad4c75 5174 if (!IS_CYC_Z(*cinfo))
85c93fa9
JS
5175#endif
5176 cy_writew(cinfo->ctl_addr + 0x68,
5177 readw(cinfo->ctl_addr + 0x68) & ~0x0900);
5178
24e6fd4c 5179 iounmap(cinfo->base_addr);
38d09093 5180 if (cinfo->ctl_addr)
24e6fd4c 5181 iounmap(cinfo->ctl_addr);
38d09093
JS
5182 if (cinfo->irq
5183#ifndef CONFIG_CYZ_INTR
c2ad4c75 5184 && !IS_CYC_Z(*cinfo)
38d09093
JS
5185#endif /* CONFIG_CYZ_INTR */
5186 )
5187 free_irq(cinfo->irq, cinfo);
5188 pci_release_regions(pdev);
5189
5190 cinfo->base_addr = NULL;
6ad1ccc1
JS
5191 for (i = cinfo->first_line; i < cinfo->first_line +
5192 cinfo->nports; i++)
5193 tty_unregister_device(cy_serial_driver, i);
dd025c0c
JS
5194 cinfo->nports = 0;
5195 kfree(cinfo->ports);
38d09093
JS
5196}
5197
6747cd93
JS
5198static struct pci_driver cy_pci_driver = {
5199 .name = "cyclades",
5200 .id_table = cy_pci_dev_id,
5201 .probe = cy_pci_probe,
5202 .remove = __devexit_p(cy_pci_remove)
5203};
5204#endif
5205
444697d6 5206static int cyclades_proc_show(struct seq_file *m, void *v)
1da177e4 5207{
02f1175c 5208 struct cyclades_port *info;
dd025c0c 5209 unsigned int i, j;
02f1175c
JS
5210 __u32 cur_jifs = jiffies;
5211
444697d6 5212 seq_puts(m, "Dev TimeOpen BytesOut IdleOut BytesIn "
02f1175c
JS
5213 "IdleIn Overruns Ldisc\n");
5214
02f1175c 5215 /* Output one line for each known port */
dd025c0c
JS
5216 for (i = 0; i < NR_CARDS; i++)
5217 for (j = 0; j < cy_card[i].nports; j++) {
5218 info = &cy_card[i].ports[j];
5219
77451e53 5220 if (info->port.count)
444697d6 5221 seq_printf(m, "%3d %8lu %10lu %8lu "
dd025c0c
JS
5222 "%10lu %8lu %9lu %6ld\n", info->line,
5223 (cur_jifs - info->idle_stats.in_use) /
5224 HZ, info->idle_stats.xmit_bytes,
5225 (cur_jifs - info->idle_stats.xmit_idle)/
5226 HZ, info->idle_stats.recv_bytes,
5227 (cur_jifs - info->idle_stats.recv_idle)/
5228 HZ, info->idle_stats.overruns,
a352def2 5229 /* FIXME: double check locking */
77451e53 5230 (long)info->port.tty->ldisc.ops->num);
dd025c0c 5231 else
444697d6 5232 seq_printf(m, "%3d %8lu %10lu %8lu "
dd025c0c
JS
5233 "%10lu %8lu %9lu %6ld\n",
5234 info->line, 0L, 0L, 0L, 0L, 0L, 0L, 0L);
02f1175c 5235 }
444697d6
AD
5236 return 0;
5237}
5238
5239static int cyclades_proc_open(struct inode *inode, struct file *file)
5240{
5241 return single_open(file, cyclades_proc_show, NULL);
1da177e4
LT
5242}
5243
444697d6
AD
5244static const struct file_operations cyclades_proc_fops = {
5245 .owner = THIS_MODULE,
5246 .open = cyclades_proc_open,
5247 .read = seq_read,
5248 .llseek = seq_lseek,
5249 .release = single_release,
5250};
5251
1da177e4
LT
5252/* The serial driver boot-time initialization code!
5253 Hardware I/O ports are mapped to character special devices on a
5254 first found, first allocated manner. That is, this code searches
5255 for Cyclom cards in the system. As each is found, it is probed
5256 to discover how many chips (and thus how many ports) are present.
5257 These ports are mapped to the tty ports 32 and upward in monotonic
5258 fashion. If an 8-port card is replaced with a 16-port card, the
5259 port mapping on a following card will shift.
5260
5261 This approach is different from what is used in the other serial
5262 device driver because the Cyclom is more properly a multiplexer,
5263 not just an aggregation of serial ports on one card.
5264
5265 If there are more cards with more ports than have been
5266 statically allocated above, a warning is printed and the
5267 extra ports are ignored.
5268 */
5269
b68e31d0 5270static const struct tty_operations cy_ops = {
02f1175c
JS
5271 .open = cy_open,
5272 .close = cy_close,
5273 .write = cy_write,
5274 .put_char = cy_put_char,
5275 .flush_chars = cy_flush_chars,
5276 .write_room = cy_write_room,
5277 .chars_in_buffer = cy_chars_in_buffer,
5278 .flush_buffer = cy_flush_buffer,
5279 .ioctl = cy_ioctl,
5280 .throttle = cy_throttle,
5281 .unthrottle = cy_unthrottle,
5282 .set_termios = cy_set_termios,
5283 .stop = cy_stop,
5284 .start = cy_start,
5285 .hangup = cy_hangup,
5286 .break_ctl = cy_break,
5287 .wait_until_sent = cy_wait_until_sent,
02f1175c
JS
5288 .tiocmget = cy_tiocmget,
5289 .tiocmset = cy_tiocmset,
444697d6 5290 .proc_fops = &cyclades_proc_fops,
1da177e4
LT
5291};
5292
02f1175c 5293static int __init cy_init(void)
1da177e4 5294{
dd025c0c 5295 unsigned int nboards;
9dacf3b2 5296 int retval = -ENOMEM;
02f1175c
JS
5297
5298 cy_serial_driver = alloc_tty_driver(NR_PORTS);
5299 if (!cy_serial_driver)
9dacf3b2 5300 goto err;
21719191
JS
5301
5302 printk(KERN_INFO "Cyclades driver " CY_VERSION " (built %s %s)\n",
5303 __DATE__, __TIME__);
02f1175c
JS
5304
5305 /* Initialize the tty_driver structure */
5306
5307 cy_serial_driver->owner = THIS_MODULE;
5308 cy_serial_driver->driver_name = "cyclades";
5309 cy_serial_driver->name = "ttyC";
5310 cy_serial_driver->major = CYCLADES_MAJOR;
5311 cy_serial_driver->minor_start = 0;
5312 cy_serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
5313 cy_serial_driver->subtype = SERIAL_TYPE_NORMAL;
5314 cy_serial_driver->init_termios = tty_std_termios;
5315 cy_serial_driver->init_termios.c_cflag =
5316 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
6ad1ccc1 5317 cy_serial_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
02f1175c
JS
5318 tty_set_operations(cy_serial_driver, &cy_ops);
5319
9dacf3b2
JS
5320 retval = tty_register_driver(cy_serial_driver);
5321 if (retval) {
5322 printk(KERN_ERR "Couldn't register Cyclades serial driver\n");
5323 goto err_frtty;
5324 }
02f1175c 5325
02f1175c
JS
5326 /* the code below is responsible to find the boards. Each different
5327 type of board has its own detection routine. If a board is found,
5328 the next cy_card structure available is set by the detection
5329 routine. These functions are responsible for checking the
5330 availability of cy_card and cy_port data structures and updating
5331 the cy_next_channel. */
5332
5333 /* look for isa boards */
14a55a67 5334 nboards = cy_detect_isa();
02f1175c 5335
6747cd93 5336#ifdef CONFIG_PCI
02f1175c 5337 /* look for pci boards */
6747cd93 5338 retval = pci_register_driver(&cy_pci_driver);
d941ea7d
JJ
5339 if (retval && !nboards) {
5340 tty_unregister_driver(cy_serial_driver);
5341 goto err_frtty;
5342 }
6747cd93 5343#endif
9dacf3b2
JS
5344
5345 return 0;
9dacf3b2
JS
5346err_frtty:
5347 put_tty_driver(cy_serial_driver);
5348err:
5349 return retval;
02f1175c 5350} /* cy_init */
1da177e4 5351
02f1175c 5352static void __exit cy_cleanup_module(void)
1da177e4 5353{
dd025c0c 5354 struct cyclades_card *card;
65f76a82 5355 unsigned int i, e1;
1da177e4
LT
5356
5357#ifndef CONFIG_CYZ_INTR
b7050906 5358 del_timer_sync(&cyz_timerlist);
1da177e4
LT
5359#endif /* CONFIG_CYZ_INTR */
5360
15ed6cc0
AC
5361 e1 = tty_unregister_driver(cy_serial_driver);
5362 if (e1)
21719191
JS
5363 printk(KERN_ERR "failed to unregister Cyclades serial "
5364 "driver(%d)\n", e1);
1da177e4 5365
6747cd93
JS
5366#ifdef CONFIG_PCI
5367 pci_unregister_driver(&cy_pci_driver);
5368#endif
5369
02f1175c 5370 for (i = 0; i < NR_CARDS; i++) {
dd025c0c
JS
5371 card = &cy_card[i];
5372 if (card->base_addr) {
85c93fa9 5373 /* clear interrupt */
dd025c0c
JS
5374 cy_writeb(card->base_addr + Cy_ClrIntr, 0);
5375 iounmap(card->base_addr);
5376 if (card->ctl_addr)
5377 iounmap(card->ctl_addr);
5378 if (card->irq
1da177e4 5379#ifndef CONFIG_CYZ_INTR
dd025c0c 5380 && !IS_CYC_Z(*card)
1da177e4 5381#endif /* CONFIG_CYZ_INTR */
02f1175c 5382 )
dd025c0c 5383 free_irq(card->irq, card);
65f76a82 5384 for (e1 = card->first_line; e1 < card->first_line +
dd025c0c 5385 card->nports; e1++)
6ad1ccc1 5386 tty_unregister_device(cy_serial_driver, e1);
dd025c0c 5387 kfree(card->ports);
02f1175c
JS
5388 }
5389 }
f2462bfe
JS
5390
5391 put_tty_driver(cy_serial_driver);
1da177e4
LT
5392} /* cy_cleanup_module */
5393
5394module_init(cy_init);
5395module_exit(cy_cleanup_module);
5396
5397MODULE_LICENSE("GPL");
c8e1693a 5398MODULE_VERSION(CY_VERSION);
9f56fad7 5399MODULE_ALIAS_CHARDEV_MAJOR(CYCLADES_MAJOR);
This page took 1.083451 seconds and 5 git commands to generate.