blob: 028db1b8fc4eba6c5d0d8530e5143dfbb42805f2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#undef BLOCKMOVE
2#define Z_WAKE
3#undef Z_EXT_CHARS_IN_BUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5/*
6 * linux/drivers/char/cyclades.c
7 *
8 * This file contains the driver for the Cyclades async multiport
9 * serial boards.
10 *
11 * Initially written by Randolph Bentson <bentson@grieg.seaslug.org>.
12 * Modified and maintained by Marcio Saito <marcio@cyclades.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Jiri Slabyc8e16932007-05-08 00:37:05 -070014 * Copyright (C) 2007 Jiri Slaby <jirislaby@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
16 * Much of the design and some of the code came from serial.c
17 * which was copyright (C) 1991, 1992 Linus Torvalds. It was
18 * extensively rewritten by Theodore Ts'o, 8/16/92 -- 9/14/92,
19 * and then fixed as suggested by Michael K. Johnson 12/12/92.
Jiri Slabyc8e16932007-05-08 00:37:05 -070020 * Converted to pci probing and cleaned up by Jiri Slaby.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
22 * This version supports shared IRQ's (only for PCI boards).
23 *
24 * $Log: cyclades.c,v $
25 * Prevent users from opening non-existing Z ports.
26 *
27 * Revision 2.3.2.8 2000/07/06 18:14:16 ivan
28 * Fixed the PCI detection function to work properly on Alpha systems.
29 * Implemented support for TIOCSERGETLSR ioctl.
30 * Implemented full support for non-standard baud rates.
31 *
32 * Revision 2.3.2.7 2000/06/01 18:26:34 ivan
33 * Request PLX I/O region, although driver doesn't use it, to avoid
34 * problems with other drivers accessing it.
35 * Removed count for on-board buffer characters in cy_chars_in_buffer
36 * (Cyclades-Z only).
37 *
38 * Revision 2.3.2.6 2000/05/05 13:56:05 ivan
39 * Driver now reports physical instead of virtual memory addresses.
40 * Masks were added to some Cyclades-Z read accesses.
41 * Implemented workaround for PLX9050 bug that would cause a system lockup
42 * in certain systems, depending on the MMIO addresses allocated to the
43 * board.
44 * Changed the Tx interrupt programming in the CD1400 chips to boost up
45 * performance (Cyclom-Y only).
46 * Code is now compliant with the new module interface (module_[init|exit]).
47 * Make use of the PCI helper functions to access PCI resources.
48 * Did some code "housekeeping".
49 *
50 * Revision 2.3.2.5 2000/01/19 14:35:33 ivan
51 * Fixed bug in cy_set_termios on CRTSCTS flag turnoff.
52 *
53 * Revision 2.3.2.4 2000/01/17 09:19:40 ivan
54 * Fixed SMP locking in Cyclom-Y interrupt handler.
55 *
56 * Revision 2.3.2.3 1999/12/28 12:11:39 ivan
57 * Added a new cyclades_card field called nports to allow the driver to
58 * know the exact number of ports found by the Z firmware after its load;
59 * RX buffer contention prevention logic on interrupt op mode revisited
60 * (Cyclades-Z only);
61 * Revisited printk's for Z debug;
62 * Driver now makes sure that the constant SERIAL_XMIT_SIZE is defined;
63 *
64 * Revision 2.3.2.2 1999/10/01 11:27:43 ivan
65 * Fixed bug in cyz_poll that would make all ports but port 0
66 * unable to transmit/receive data (Cyclades-Z only);
67 * Implemented logic to prevent the RX buffer from being stuck with data
68 * due to a driver / firmware race condition in interrupt op mode
69 * (Cyclades-Z only);
70 * Fixed bug in block_til_ready logic that would lead to a system crash;
71 * Revisited cy_close spinlock usage;
72 *
73 * Revision 2.3.2.1 1999/09/28 11:01:22 ivan
74 * Revisited CONFIG_PCI conditional compilation for PCI board support;
75 * Implemented TIOCGICOUNT and TIOCMIWAIT ioctl support;
76 * _Major_ cleanup on the Cyclades-Z interrupt support code / logic;
77 * Removed CTS handling from the driver -- this is now completely handled
78 * by the firmware (Cyclades-Z only);
79 * Flush RX on-board buffers on a port open (Cyclades-Z only);
80 * Fixed handling of ASYNC_SPD_* TTY flags;
81 * Module unload now unmaps all memory area allocated by ioremap;
82 *
83 * Revision 2.3.1.1 1999/07/15 16:45:53 ivan
84 * Removed CY_PROC conditional compilation;
85 * Implemented SMP-awareness for the driver;
86 * Implemented a new ISA IRQ autoprobe that uses the irq_probe_[on|off]
87 * functions;
88 * The driver now accepts memory addresses (maddr=0xMMMMM) and IRQs
89 * (irq=NN) as parameters (only for ISA boards);
90 * Fixed bug in set_line_char that would prevent the Cyclades-Z
91 * ports from being configured at speeds above 115.2Kbps;
92 * Fixed bug in cy_set_termios that would prevent XON/XOFF flow control
93 * switching from working properly;
94 * The driver now only prints IRQ info for the Cyclades-Z if it's
95 * configured to work in interrupt mode;
96 *
97 * Revision 2.2.2.3 1999/06/28 11:13:29 ivan
98 * Added support for interrupt mode operation for the Z cards;
99 * Removed the driver inactivity control for the Z;
100 * Added a missing MOD_DEC_USE_COUNT in the cy_open function for when
101 * the Z firmware is not loaded yet;
102 * Replaced the "manual" Z Tx flush buffer by a call to a FW command of
103 * same functionality;
104 * Implemented workaround for IRQ setting loss on the PCI configuration
105 * registers after a PCI bridge EEPROM reload (affects PLX9060 only);
106 *
107 * Revision 2.2.2.2 1999/05/14 17:18:15 ivan
108 * /proc entry location changed to /proc/tty/driver/cyclades;
109 * Added support to shared IRQ's (only for PCI boards);
110 * Added support for Cobalt Qube2 systems;
111 * IRQ [de]allocation scheme revisited;
112 * BREAK implementation changed in order to make use of the 'break_ctl'
113 * TTY facility;
114 * Fixed typo in TTY structure field 'driver_name';
115 * Included a PCI bridge reset and EEPROM reload in the board
116 * initialization code (for both Y and Z series).
117 *
118 * Revision 2.2.2.1 1999/04/08 16:17:43 ivan
119 * Fixed a bug in cy_wait_until_sent that was preventing the port to be
120 * closed properly after a SIGINT;
121 * Module usage counter scheme revisited;
122 * Added support to the upcoming Y PCI boards (i.e., support to additional
123 * PCI Device ID's).
124 *
125 * Revision 2.2.1.10 1999/01/20 16:14:29 ivan
126 * Removed all unnecessary page-alignement operations in ioremap calls
127 * (ioremap is currently safe for these operations).
128 *
129 * Revision 2.2.1.9 1998/12/30 18:18:30 ivan
130 * Changed access to PLX PCI bridge registers from I/O to MMIO, in
131 * order to make PLX9050-based boards work with certain motherboards.
132 *
133 * Revision 2.2.1.8 1998/11/13 12:46:20 ivan
134 * cy_close function now resets (correctly) the tty->closing flag;
135 * JIFFIES_DIFF macro fixed.
136 *
137 * Revision 2.2.1.7 1998/09/03 12:07:28 ivan
138 * Fixed bug in cy_close function, which was not informing HW of
139 * which port should have the reception disabled before doing so;
140 * fixed Cyclom-8YoP hardware detection bug.
141 *
142 * Revision 2.2.1.6 1998/08/20 17:15:39 ivan
143 * Fixed bug in cy_close function, which causes malfunction
144 * of one of the first 4 ports when a higher port is closed
145 * (Cyclom-Y only).
146 *
147 * Revision 2.2.1.5 1998/08/10 18:10:28 ivan
148 * Fixed Cyclom-4Yo hardware detection bug.
149 *
150 * Revision 2.2.1.4 1998/08/04 11:02:50 ivan
151 * /proc/cyclades implementation with great collaboration of
152 * Marc Lewis <marc@blarg.net>;
153 * cyy_interrupt was changed to avoid occurrence of kernel oopses
154 * during PPP operation.
155 *
156 * Revision 2.2.1.3 1998/06/01 12:09:10 ivan
157 * General code review in order to comply with 2.1 kernel standards;
158 * data loss prevention for slow devices revisited (cy_wait_until_sent
159 * was created);
160 * removed conditional compilation for new/old PCI structure support
161 * (now the driver only supports the new PCI structure).
162 *
163 * Revision 2.2.1.1 1998/03/19 16:43:12 ivan
164 * added conditional compilation for new/old PCI structure support;
165 * removed kernel series (2.0.x / 2.1.x) conditional compilation.
166 *
167 * Revision 2.1.1.3 1998/03/16 18:01:12 ivan
168 * cleaned up the data loss fix;
169 * fixed XON/XOFF handling once more (Cyclades-Z);
170 * general review of the driver routines;
171 * introduction of a mechanism to prevent data loss with slow
172 * printers, by forcing a delay before closing the port.
173 *
174 * Revision 2.1.1.2 1998/02/17 16:50:00 ivan
175 * fixed detection/handling of new CD1400 in Ye boards;
176 * fixed XON/XOFF handling (Cyclades-Z);
177 * fixed data loss caused by a premature port close;
178 * introduction of a flag that holds the CD1400 version ID per port
179 * (used by the CYGETCD1400VER new ioctl).
180 *
181 * Revision 2.1.1.1 1997/12/03 17:31:19 ivan
182 * Code review for the module cleanup routine;
183 * fixed RTS and DTR status report for new CD1400's in get_modem_info;
184 * includes anonymous changes regarding signal_pending.
185 *
186 * Revision 2.1 1997/11/01 17:42:41 ivan
187 * Changes in the driver to support Alpha systems (except 8Zo V_1);
188 * BREAK fix for the Cyclades-Z boards;
189 * driver inactivity control by FW implemented;
190 * introduction of flag that allows driver to take advantage of
191 * a special CD1400 feature related to HW flow control;
192 * added support for the CD1400 rev. J (Cyclom-Y boards);
193 * introduction of ioctls to:
194 * - control the rtsdtr_inv flag (Cyclom-Y);
195 * - control the rflow flag (Cyclom-Y);
196 * - adjust the polling interval (Cyclades-Z);
197 *
198 * Revision 1.36.4.33 1997/06/27 19:00:00 ivan
199 * Fixes related to kernel version conditional
200 * compilation.
201 *
202 * Revision 1.36.4.32 1997/06/14 19:30:00 ivan
203 * Compatibility issues between kernels 2.0.x and
204 * 2.1.x (mainly related to clear_bit function).
205 *
206 * Revision 1.36.4.31 1997/06/03 15:30:00 ivan
207 * Changes to define the memory window according to the
208 * board type.
209 *
210 * Revision 1.36.4.30 1997/05/16 15:30:00 daniel
211 * Changes to support new cycladesZ boards.
212 *
213 * Revision 1.36.4.29 1997/05/12 11:30:00 daniel
214 * Merge of Bentson's and Daniel's version 1.36.4.28.
215 * Corrects bug in cy_detect_pci: check if there are more
216 * ports than the number of static structs allocated.
217 * Warning message during initialization if this driver is
218 * used with the new generation of cycladesZ boards. Those
219 * will be supported only in next release of the driver.
220 * Corrects bug in cy_detect_pci and cy_detect_isa that
221 * returned wrong number of VALID boards, when a cyclomY
222 * was found with no serial modules connected.
223 * Changes to use current (2.1.x) kernel subroutine names
224 * and created macros for compilation with 2.0.x kernel,
225 * instead of the other way around.
226 *
227 * Revision 1.36.4.28 1997/05/?? ??:00:00 bentson
228 * Change queue_task_irq_off to queue_task_irq.
229 * The inline function queue_task_irq_off (tqueue.h)
230 * was removed from latest releases of 2.1.x kernel.
231 * Use of macro __init to mark the initialization
232 * routines, so memory can be reused.
233 * Also incorporate implementation of critical region
234 * in function cleanup_module() created by anonymous
235 * linuxer.
236 *
237 * Revision 1.36.4.28 1997/04/25 16:00:00 daniel
238 * Change to support new firmware that solves DCD problem:
239 * application could fail to receive SIGHUP signal when DCD
240 * varying too fast.
241 *
242 * Revision 1.36.4.27 1997/03/26 10:30:00 daniel
243 * Changed for support linux versions 2.1.X.
244 * Backward compatible with linux versions 2.0.X.
245 * Corrected illegal use of filler field in
246 * CH_CTRL struct.
247 * Deleted some debug messages.
248 *
249 * Revision 1.36.4.26 1997/02/27 12:00:00 daniel
250 * Included check for NULL tty pointer in cyz_poll.
251 *
252 * Revision 1.36.4.25 1997/02/26 16:28:30 bentson
253 * Bill Foster at Blarg! Online services noticed that
254 * some of the switch elements of -Z modem control
255 * lacked a closing "break;"
256 *
257 * Revision 1.36.4.24 1997/02/24 11:00:00 daniel
258 * Changed low water threshold for buffer xmit_buf
259 *
260 * Revision 1.36.4.23 1996/12/02 21:50:16 bentson
261 * Marcio provided fix to modem status fetch for -Z
262 *
263 * Revision 1.36.4.22 1996/10/28 22:41:17 bentson
264 * improve mapping of -Z control page (thanks to Steve
265 * Price <stevep@fa.tdktca.com> for help on this)
266 *
267 * Revision 1.36.4.21 1996/09/10 17:00:10 bentson
268 * shift from CPU-bound to memcopy in cyz_polling operation
269 *
270 * Revision 1.36.4.20 1996/09/09 18:30:32 Bentson
271 * Added support to set and report higher speeds.
272 *
273 * Revision 1.36.4.19c 1996/08/09 10:00:00 Marcio Saito
274 * Some fixes in the HW flow control for the BETA release.
275 * Don't try to register the IRQ.
276 *
277 * Revision 1.36.4.19 1996/08/08 16:23:18 Bentson
278 * make sure "cyc" appears in all kernel messages; all soft interrupts
279 * handled by same routine; recognize out-of-band reception; comment
280 * out some diagnostic messages; leave RTS/CTS flow control to hardware;
Jean Delvare33430dc2005-10-30 15:02:20 -0800281 * fix race condition in -Z buffer management; only -Y needs to explicitly
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * flush chars; tidy up some startup messages;
283 *
284 * Revision 1.36.4.18 1996/07/25 18:57:31 bentson
285 * shift MOD_INC_USE_COUNT location to match
286 * serial.c; purge some diagnostic messages;
287 *
288 * Revision 1.36.4.17 1996/07/25 18:01:08 bentson
289 * enable modem status messages and fetch & process them; note
290 * time of last activity type for each port; set_line_char now
291 * supports more than line 0 and treats 0 baud correctly;
292 * get_modem_info senses rs_status;
293 *
294 * Revision 1.36.4.16 1996/07/20 08:43:15 bentson
295 * barely works--now's time to turn on
296 * more features 'til it breaks
297 *
298 * Revision 1.36.4.15 1996/07/19 22:30:06 bentson
299 * check more -Z board status; shorten boot message
300 *
301 * Revision 1.36.4.14 1996/07/19 22:20:37 bentson
302 * fix reference to ch_ctrl in startup; verify return
303 * values from cyz_issue_cmd and cyz_update_channel;
304 * more stuff to get modem control correct;
305 *
306 * Revision 1.36.4.13 1996/07/11 19:53:33 bentson
307 * more -Z stuff folded in; re-order changes to put -Z stuff
308 * after -Y stuff (to make changes clearer)
309 *
310 * Revision 1.36.4.12 1996/07/11 15:40:55 bentson
311 * Add code to poll Cyclades-Z. Add code to get & set RS-232 control.
312 * Add code to send break. Clear firmware ID word at startup (so
313 * that other code won't talk to inactive board).
314 *
315 * Revision 1.36.4.11 1996/07/09 05:28:29 bentson
316 * add code for -Z in set_line_char
317 *
318 * Revision 1.36.4.10 1996/07/08 19:28:37 bentson
319 * fold more -Z stuff (or in some cases, error messages)
320 * into driver; add text to "don't know what to do" messages.
321 *
322 * Revision 1.36.4.9 1996/07/08 18:38:38 bentson
323 * moved compile-time flags near top of file; cosmetic changes
324 * to narrow text (to allow 2-up printing); changed many declarations
325 * to "static" to limit external symbols; shuffled code order to
326 * coalesce -Y and -Z specific code, also to put internal functions
327 * in order of tty_driver structure; added code to recognize -Z
328 * ports (and for moment, do nothing or report error); add cy_startup
329 * to parse boot command line for extra base addresses for ISA probes;
330 *
331 * Revision 1.36.4.8 1996/06/25 17:40:19 bentson
332 * reorder some code, fix types of some vars (int vs. long),
333 * add cy_setup to support user declared ISA addresses
334 *
335 * Revision 1.36.4.7 1996/06/21 23:06:18 bentson
336 * dump ioctl based firmware load (it's now a user level
337 * program); ensure uninitialzed ports cannot be used
338 *
339 * Revision 1.36.4.6 1996/06/20 23:17:19 bentson
340 * rename vars and restructure some code
341 *
342 * Revision 1.36.4.5 1996/06/14 15:09:44 bentson
343 * get right status back after boot load
344 *
345 * Revision 1.36.4.4 1996/06/13 19:51:44 bentson
346 * successfully loads firmware
347 *
348 * Revision 1.36.4.3 1996/06/13 06:08:33 bentson
349 * add more of the code for the boot/load ioctls
350 *
351 * Revision 1.36.4.2 1996/06/11 21:00:51 bentson
352 * start to add Z functionality--starting with ioctl
353 * for loading firmware
354 *
355 * Revision 1.36.4.1 1996/06/10 18:03:02 bentson
356 * added code to recognize Z/PCI card at initialization; report
357 * presence, but card is not initialized (because firmware needs
358 * to be loaded)
359 *
360 * Revision 1.36.3.8 1996/06/07 16:29:00 bentson
361 * starting minor number at zero; added missing verify_area
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200362 * as noted by Heiko Eißfeldt <heiko@colossus.escape.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 *
364 * Revision 1.36.3.7 1996/04/19 21:06:18 bentson
365 * remove unneeded boot message & fix CLOCAL hardware flow
366 * control (Miquel van Smoorenburg <miquels@Q.cistron.nl>);
367 * remove unused diagnostic statements; minor 0 is first;
368 *
369 * Revision 1.36.3.6 1996/03/13 13:21:17 marcio
370 * The kernel function vremap (available only in later 1.3.xx kernels)
371 * allows the access to memory addresses above the RAM. This revision
372 * of the driver supports PCI boards below 1Mb (device id 0x100) and
373 * above 1Mb (device id 0x101).
374 *
375 * Revision 1.36.3.5 1996/03/07 15:20:17 bentson
376 * Some global changes to interrupt handling spilled into
377 * this driver--mostly unused arguments in system function
378 * calls. Also added change by Marcio Saito which should
379 * reduce lost interrupts at startup by fast processors.
380 *
381 * Revision 1.36.3.4 1995/11/13 20:45:10 bentson
382 * Changes by Corey Minyard <minyard@wf-rch.cirr.com> distributed
383 * in 1.3.41 kernel to remove a possible race condition, extend
384 * some error messages, and let the driver run as a loadable module
385 * Change by Alan Wendt <alan@ez0.ezlink.com> to remove a
386 * possible race condition.
387 * Change by Marcio Saito <marcio@cyclades.com> to fix PCI addressing.
388 *
389 * Revision 1.36.3.3 1995/11/13 19:44:48 bentson
390 * Changes by Linus Torvalds in 1.3.33 kernel distribution
391 * required due to reordering of driver initialization.
392 * Drivers are now initialized *after* memory management.
393 *
394 * Revision 1.36.3.2 1995/09/08 22:07:14 bentson
395 * remove printk from ISR; fix typo
396 *
397 * Revision 1.36.3.1 1995/09/01 12:00:42 marcio
398 * Minor fixes in the PCI board support. PCI function calls in
399 * conditional compilation (CONFIG_PCI). Thanks to Jim Duncan
400 * <duncan@okay.com>. "bad serial count" message removed.
401 *
402 * Revision 1.36.3 1995/08/22 09:19:42 marcio
403 * Cyclom-Y/PCI support added. Changes in the cy_init routine and
404 * board initialization. Changes in the boot messages. The driver
405 * supports up to 4 boards and 64 ports by default.
406 *
407 * Revision 1.36.1.4 1995/03/29 06:14:14 bentson
408 * disambiguate between Cyclom-16Y and Cyclom-32Ye;
409 *
410 * Revision 1.36.1.3 1995/03/23 22:15:35 bentson
411 * add missing break in modem control block in ioctl switch statement
412 * (discovered by Michael Edward Chastain <mec@jobe.shell.portal.com>);
413 *
414 * Revision 1.36.1.2 1995/03/22 19:16:22 bentson
415 * make sure CTS flow control is set as soon as possible (thanks
416 * to note from David Lambert <lambert@chesapeake.rps.slb.com>);
417 *
418 * Revision 1.36.1.1 1995/03/13 15:44:43 bentson
419 * initialize defaults for receive threshold and stale data timeout;
420 * cosmetic changes;
421 *
422 * Revision 1.36 1995/03/10 23:33:53 bentson
423 * added support of chips 4-7 in 32 port Cyclom-Ye;
424 * fix cy_interrupt pointer dereference problem
425 * (Joe Portman <baron@aa.net>);
426 * give better error response if open is attempted on non-existent port
427 * (Zachariah Vaum <jchryslr@netcom.com>);
428 * correct command timeout (Kenneth Lerman <lerman@@seltd.newnet.com>);
429 * conditional compilation for -16Y on systems with fast, noisy bus;
430 * comment out diagnostic print function;
431 * cleaned up table of base addresses;
432 * set receiver time-out period register to correct value,
433 * set receive threshold to better default values,
434 * set chip timer to more accurate 200 Hz ticking,
435 * add code to monitor and modify receive parameters
436 * (Rik Faith <faith@cs.unc.edu> Nick Simicich
437 * <njs@scifi.emi.net>);
438 *
439 * Revision 1.35 1994/12/16 13:54:18 steffen
440 * additional patch by Marcio Saito for board detection
441 * Accidently left out in 1.34
442 *
443 * Revision 1.34 1994/12/10 12:37:12 steffen
444 * This is the corrected version as suggested by Marcio Saito
445 *
446 * Revision 1.33 1994/12/01 22:41:18 bentson
447 * add hooks to support more high speeds directly; add tytso
448 * patch regarding CLOCAL wakeups
449 *
450 * Revision 1.32 1994/11/23 19:50:04 bentson
451 * allow direct kernel control of higher signalling rates;
452 * look for cards at additional locations
453 *
454 * Revision 1.31 1994/11/16 04:33:28 bentson
455 * ANOTHER fix from Corey Minyard, minyard@wf-rch.cirr.com--
456 * a problem in chars_in_buffer has been resolved by some
457 * small changes; this should yield smoother output
458 *
459 * Revision 1.30 1994/11/16 04:28:05 bentson
460 * Fix from Corey Minyard, Internet: minyard@metronet.com,
461 * UUCP: minyard@wf-rch.cirr.com, WORK: minyardbnr.ca, to
462 * cy_hangup that appears to clear up much (all?) of the
463 * DTR glitches; also he's added/cleaned-up diagnostic messages
464 *
465 * Revision 1.29 1994/11/16 04:16:07 bentson
466 * add change proposed by Ralph Sims, ralphs@halcyon.com, to
467 * operate higher speeds in same way as other serial ports;
468 * add more serial ports (for up to two 16-port muxes).
469 *
470 * Revision 1.28 1994/11/04 00:13:16 root
471 * turn off diagnostic messages
472 *
473 * Revision 1.27 1994/11/03 23:46:37 root
474 * bunch of changes to bring driver into greater conformance
475 * with the serial.c driver (looking for missed fixes)
476 *
477 * Revision 1.26 1994/11/03 22:40:36 root
478 * automatic interrupt probing fixed.
479 *
480 * Revision 1.25 1994/11/03 20:17:02 root
481 * start to implement auto-irq
482 *
483 * Revision 1.24 1994/11/03 18:01:55 root
484 * still working on modem signals--trying not to drop DTR
485 * during the getty/login processes
486 *
487 * Revision 1.23 1994/11/03 17:51:36 root
488 * extend baud rate support; set receive threshold as function
489 * of baud rate; fix some problems with RTS/CTS;
490 *
491 * Revision 1.22 1994/11/02 18:05:35 root
492 * changed arguments to udelay to type long to get
493 * delays to be of correct duration
494 *
495 * Revision 1.21 1994/11/02 17:37:30 root
496 * employ udelay (after calibrating loops_per_second earlier
497 * in init/main.c) instead of using home-grown delay routines
498 *
499 * Revision 1.20 1994/11/02 03:11:38 root
500 * cy_chars_in_buffer forces a return value of 0 to let
501 * login work (don't know why it does); some functions
502 * that were returning EFAULT, now executes the code;
503 * more work on deciding when to disable xmit interrupts;
504 *
505 * Revision 1.19 1994/11/01 20:10:14 root
506 * define routine to start transmission interrupts (by enabling
507 * transmit interrupts); directly enable/disable modem interrupts;
508 *
509 * Revision 1.18 1994/11/01 18:40:45 bentson
510 * Don't always enable transmit interrupts in startup; interrupt on
511 * TxMpty instead of TxRdy to help characters get out before shutdown;
512 * restructure xmit interrupt to check for chars first and quit if
513 * none are ready to go; modem status (MXVRx) is upright, _not_ inverted
514 * (to my view);
515 *
516 * Revision 1.17 1994/10/30 04:39:45 bentson
517 * rename serial_driver and callout_driver to cy_serial_driver and
518 * cy_callout_driver to avoid linkage interference; initialize
519 * info->type to PORT_CIRRUS; ruggedize paranoia test; elide ->port
520 * from cyclades_port structure; add paranoia check to cy_close;
521 *
522 * Revision 1.16 1994/10/30 01:14:33 bentson
523 * change major numbers; add some _early_ return statements;
524 *
525 * Revision 1.15 1994/10/29 06:43:15 bentson
526 * final tidying up for clean compile; enable some error reporting
527 *
528 * Revision 1.14 1994/10/28 20:30:22 Bentson
529 * lots of changes to drag the driver towards the new tty_io
530 * structures and operation. not expected to work, but may
531 * compile cleanly.
532 *
533 * Revision 1.13 1994/07/21 23:08:57 Bentson
534 * add some diagnostic cruft; support 24 lines (for testing
535 * both -8Y and -16Y cards; be more thorough in servicing all
536 * chips during interrupt; add "volatile" a few places to
537 * circumvent compiler optimizations; fix base & offset
538 * computations in block_til_ready (was causing chip 0 to
539 * stop operation)
540 *
541 * Revision 1.12 1994/07/19 16:42:11 Bentson
542 * add some hackery for kernel version 1.1.8; expand
543 * error messages; refine timing for delay loops and
544 * declare loop params volatile
545 *
546 * Revision 1.11 1994/06/11 21:53:10 bentson
547 * get use of save_car right in transmit interrupt service
548 *
549 * Revision 1.10.1.1 1994/06/11 21:31:18 bentson
550 * add some diagnostic printing; try to fix save_car stuff
551 *
552 * Revision 1.10 1994/06/11 20:36:08 bentson
553 * clean up compiler warnings
554 *
555 * Revision 1.9 1994/06/11 19:42:46 bentson
556 * added a bunch of code to support modem signalling
557 *
558 * Revision 1.8 1994/06/11 17:57:07 bentson
559 * recognize break & parity error
560 *
561 * Revision 1.7 1994/06/05 05:51:34 bentson
562 * Reorder baud table to be monotonic; add cli to CP; discard
563 * incoming characters and status if the line isn't open; start to
564 * fold code into cy_throttle; start to port get_serial_info,
565 * set_serial_info, get_modem_info, set_modem_info, and send_break
566 * from serial.c; expand cy_ioctl; relocate and expand config_setup;
567 * get flow control characters from tty struct; invalidate ports w/o
568 * hardware;
569 *
570 * Revision 1.6 1994/05/31 18:42:21 bentson
571 * add a loop-breaker in the interrupt service routine;
572 * note when port is initialized so that it can be shut
573 * down under the right conditions; receive works without
574 * any obvious errors
575 *
576 * Revision 1.5 1994/05/30 00:55:02 bentson
577 * transmit works without obvious errors
578 *
579 * Revision 1.4 1994/05/27 18:46:27 bentson
580 * incorporated more code from lib_y.c; can now print short
581 * strings under interrupt control to port zero; seems to
582 * select ports/channels/lines correctly
583 *
584 * Revision 1.3 1994/05/25 22:12:44 bentson
585 * shifting from multi-port on a card to proper multiplexor
586 * data structures; added skeletons of most routines
587 *
588 * Revision 1.2 1994/05/19 13:21:43 bentson
589 * start to crib from other sources
590 *
591 */
592
Jiri Slabyc8e16932007-05-08 00:37:05 -0700593#define CY_VERSION "2.5"
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595/* If you need to install more boards than NR_CARDS, change the constant
596 in the definition below. No other change is necessary to support up to
597 eight boards. Beyond that you'll have to extend cy_isa_addresses. */
598
Jiri Slaby02f11752006-12-08 02:39:28 -0800599#define NR_CARDS 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601/*
602 If the total number of ports is larger than NR_PORTS, change this
603 constant in the definition below. No other change is necessary to
604 support more boards/ports. */
605
Jiri Slaby02f11752006-12-08 02:39:28 -0800606#define NR_PORTS 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608#define ZE_V1_NPORTS 64
609#define ZO_V1 0
610#define ZO_V2 1
611#define ZE_V1 2
612
613#define SERIAL_PARANOIA_CHECK
614#undef CY_DEBUG_OPEN
615#undef CY_DEBUG_THROTTLE
616#undef CY_DEBUG_OTHER
617#undef CY_DEBUG_IO
618#undef CY_DEBUG_COUNT
619#undef CY_DEBUG_DTR
620#undef CY_DEBUG_WAIT_UNTIL_SENT
621#undef CY_DEBUG_INTERRUPTS
622#undef CY_16Y_HACK
623#undef CY_ENABLE_MONITORING
624#undef CY_PCI_DEBUG
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626/*
627 * Include section
628 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629#include <linux/module.h>
630#include <linux/errno.h>
631#include <linux/signal.h>
632#include <linux/sched.h>
633#include <linux/timer.h>
634#include <linux/interrupt.h>
635#include <linux/tty.h>
Alan Cox33f0f882006-01-09 20:54:13 -0800636#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637#include <linux/serial.h>
638#include <linux/major.h>
639#include <linux/string.h>
640#include <linux/fcntl.h>
641#include <linux/ptrace.h>
642#include <linux/cyclades.h>
643#include <linux/mm.h>
644#include <linux/ioport.h>
645#include <linux/init.h>
646#include <linux/delay.h>
647#include <linux/spinlock.h>
648#include <linux/bitops.h>
Jiri Slaby054f5b02007-07-17 04:05:16 -0700649#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651#include <asm/system.h>
652#include <asm/io.h>
653#include <asm/irq.h>
654#include <asm/uaccess.h>
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656#include <linux/kernel.h>
657#include <linux/pci.h>
658
659#include <linux/stat.h>
660#include <linux/proc_fs.h>
661
Jiri Slaby02f11752006-12-08 02:39:28 -0800662static void cy_throttle(struct tty_struct *tty);
663static void cy_send_xchar(struct tty_struct *tty, char ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Jiri Slaby65f76a82007-10-18 03:06:22 -0700665#define IS_CYC_Z(card) ((card).num_chips == (unsigned int)-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667#define Z_FPGA_CHECK(card) \
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700668 ((readl(&((struct RUNTIME_9060 __iomem *) \
Jiri Slaby02f11752006-12-08 02:39:28 -0800669 ((card).ctl_addr))->init_ctrl) & (1<<17)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700671#define ISZLOADED(card) (((ZO_V1==readl(&((struct RUNTIME_9060 __iomem *) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 ((card).ctl_addr))->mail_box_0)) || \
673 Z_FPGA_CHECK(card)) && \
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700674 (ZFIRM_ID==readl(&((struct FIRM_ID __iomem *) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 ((card).base_addr+ID_ADDRESS))->signature)))
676
677#ifndef SERIAL_XMIT_SIZE
678#define SERIAL_XMIT_SIZE (min(PAGE_SIZE, 4096))
679#endif
680#define WAKEUP_CHARS 256
681
682#define STD_COM_FLAGS (0)
683
Jiri Slaby054f5b02007-07-17 04:05:16 -0700684/* firmware stuff */
685#define ZL_MAX_BLOCKS 16
686#define DRIVER_VERSION 0x02010203
687#define RAM_SIZE 0x80000
688
689#define Z_FPGA_LOADED(X) ((readl(&(X)->init_ctrl) & (1<<17)) != 0)
690
691enum zblock_type {
692 ZBLOCK_PRG = 0,
693 ZBLOCK_FPGA = 1
694};
695
696struct zfile_header {
697 char name[64];
698 char date[32];
699 char aux[32];
700 u32 n_config;
701 u32 config_offset;
702 u32 n_blocks;
703 u32 block_offset;
704 u32 reserved[9];
705} __attribute__ ((packed));
706
707struct zfile_config {
708 char name[64];
709 u32 mailbox;
710 u32 function;
711 u32 n_blocks;
712 u32 block_list[ZL_MAX_BLOCKS];
713} __attribute__ ((packed));
714
715struct zfile_block {
716 u32 type;
717 u32 file_offset;
718 u32 ram_offset;
719 u32 size;
720} __attribute__ ((packed));
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722static struct tty_driver *cy_serial_driver;
723
724#ifdef CONFIG_ISA
725/* This is the address lookup table. The driver will probe for
726 Cyclom-Y/ISA boards at all addresses in here. If you want the
727 driver to probe addresses at a different address, add it to
728 this table. If the driver is probing some other board and
729 causing problems, remove the offending address from this table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730*/
731
732static unsigned int cy_isa_addresses[] = {
Jiri Slaby02f11752006-12-08 02:39:28 -0800733 0xD0000,
734 0xD2000,
735 0xD4000,
736 0xD6000,
737 0xD8000,
738 0xDA000,
739 0xDC000,
740 0xDE000,
741 0, 0, 0, 0, 0, 0, 0, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742};
Jiri Slaby02f11752006-12-08 02:39:28 -0800743
Tobias Klauserfe971072006-01-09 20:54:02 -0800744#define NR_ISA_ADDRS ARRAY_SIZE(cy_isa_addresses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746#ifdef MODULE
Jiri Slaby3046d502007-05-08 00:36:46 -0700747static long maddr[NR_CARDS];
748static int irq[NR_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750module_param_array(maddr, long, NULL, 0);
751module_param_array(irq, int, NULL, 0);
752#endif
753
Jiri Slaby02f11752006-12-08 02:39:28 -0800754#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756/* This is the per-card data structure containing address, irq, number of
757 channels, etc. This driver supports a maximum of NR_CARDS cards.
758*/
759static struct cyclades_card cy_card[NR_CARDS];
760
Jiri Slaby02f11752006-12-08 02:39:28 -0800761static int cy_next_channel; /* next minor available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 * This is used to look up the divisor speeds and the timeouts
765 * We're normally limited to 15 distinct baud rates. The extra
766 * are accessed via settings in info->flags.
767 * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
768 * 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
769 * HI VHI
770 * 20
771 */
772static int baud_table[] = {
Jiri Slaby02f11752006-12-08 02:39:28 -0800773 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200,
774 1800, 2400, 4800, 9600, 19200, 38400, 57600, 76800, 115200, 150000,
775 230400, 0
776};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Jiri Slaby02f11752006-12-08 02:39:28 -0800778static char baud_co_25[] = { /* 25 MHz clock option table */
779 /* value => 00 01 02 03 04 */
780 /* divide by 8 32 128 512 2048 */
781 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x02,
782 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
783};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Jiri Slaby02f11752006-12-08 02:39:28 -0800785static char baud_bpr_25[] = { /* 25 MHz baud rate period table */
786 0x00, 0xf5, 0xa3, 0x6f, 0x5c, 0x51, 0xf5, 0xa3, 0x51, 0xa3,
787 0x6d, 0x51, 0xa3, 0x51, 0xa3, 0x51, 0x36, 0x29, 0x1b, 0x15
788};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Jiri Slaby02f11752006-12-08 02:39:28 -0800790static char baud_co_60[] = { /* 60 MHz clock option table (CD1400 J) */
791 /* value => 00 01 02 03 04 */
792 /* divide by 8 32 128 512 2048 */
793 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03,
794 0x03, 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
795 0x00
796};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Jiri Slaby02f11752006-12-08 02:39:28 -0800798static char baud_bpr_60[] = { /* 60 MHz baud rate period table (CD1400 J) */
799 0x00, 0x82, 0x21, 0xff, 0xdb, 0xc3, 0x92, 0x62, 0xc3, 0x62,
800 0x41, 0xc3, 0x62, 0xc3, 0x62, 0xc3, 0x82, 0x62, 0x41, 0x32,
801 0x21
802};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Jiri Slaby02f11752006-12-08 02:39:28 -0800804static char baud_cor3[] = { /* receive threshold */
805 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
806 0x0a, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x07,
807 0x07
808};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810/*
811 * The Cyclades driver implements HW flow control as any serial driver.
812 * The cyclades_port structure member rflow and the vector rflow_thr
813 * allows us to take advantage of a special feature in the CD1400 to avoid
814 * data loss even when the system interrupt latency is too high. These flags
815 * are to be used only with very special applications. Setting these flags
816 * requires the use of a special cable (DTR and RTS reversed). In the new
817 * CD1400-based boards (rev. 6.00 or later), there is no need for special
818 * cables.
819 */
820
Jiri Slaby02f11752006-12-08 02:39:28 -0800821static char rflow_thr[] = { /* rflow threshold */
822 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
823 0x00, 0x00, 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
824 0x0a
825};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827/* The Cyclom-Ye has placed the sequential chips in non-sequential
828 * address order. This look-up table overcomes that problem.
829 */
Jiri Slaby02f11752006-12-08 02:39:28 -0800830static int cy_chip_offset[] = { 0x0000,
831 0x0400,
832 0x0800,
833 0x0C00,
834 0x0200,
835 0x0600,
836 0x0A00,
837 0x0E00
838};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840/* PCI related definitions */
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842#ifdef CONFIG_PCI
Jiri Slaby893de2d2007-02-12 00:51:49 -0800843static struct pci_device_id cy_pci_dev_id[] __devinitdata = {
844 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Lo) }, /* PCI < 1Mb */
845 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Hi) }, /* PCI > 1Mb */
846 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Lo) }, /* 4Y PCI < 1Mb */
847 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Hi) }, /* 4Y PCI > 1Mb */
848 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Lo) }, /* 8Y PCI < 1Mb */
849 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Hi) }, /* 8Y PCI > 1Mb */
850 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Lo) }, /* Z PCI < 1Mb */
851 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Hi) }, /* Z PCI > 1Mb */
852 { } /* end of table */
Jiri Slaby02f11752006-12-08 02:39:28 -0800853};
Jiri Slaby893de2d2007-02-12 00:51:49 -0800854MODULE_DEVICE_TABLE(pci, cy_pci_dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855#endif
856
857static void cy_start(struct tty_struct *);
858static void set_line_char(struct cyclades_port *);
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -0700859static int cyz_issue_cmd(struct cyclades_card *, __u32, __u8, __u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860#ifdef CONFIG_ISA
861static unsigned detect_isa_irq(void __iomem *);
Jiri Slaby02f11752006-12-08 02:39:28 -0800862#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Jiri Slaby02f11752006-12-08 02:39:28 -0800864static int cyclades_get_proc_info(char *, char **, off_t, int, int *, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866#ifndef CONFIG_CYZ_INTR
867static void cyz_poll(unsigned long);
868
869/* The Cyclades-Z polling cycle is defined by this variable */
870static long cyz_polling_cycle = CZ_DEF_POLL;
871
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700872static DEFINE_TIMER(cyz_timerlist, cyz_poll, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Jiri Slaby02f11752006-12-08 02:39:28 -0800874#else /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875static void cyz_rx_restart(unsigned long);
876static struct timer_list cyz_rx_full_timer[NR_PORTS];
Jiri Slaby02f11752006-12-08 02:39:28 -0800877#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Jiri Slaby02f11752006-12-08 02:39:28 -0800879static inline int serial_paranoia_check(struct cyclades_port *info,
880 char *name, const char *routine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
882#ifdef SERIAL_PARANOIA_CHECK
Jiri Slaby02f11752006-12-08 02:39:28 -0800883 if (!info) {
Jiri Slaby21719192007-05-08 00:36:42 -0700884 printk(KERN_WARNING "cyc Warning: null cyclades_port for (%s) "
885 "in %s\n", name, routine);
Jiri Slaby02f11752006-12-08 02:39:28 -0800886 return 1;
887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Jiri Slaby02f11752006-12-08 02:39:28 -0800889 if (info->magic != CYCLADES_MAGIC) {
Jiri Slaby21719192007-05-08 00:36:42 -0700890 printk(KERN_WARNING "cyc Warning: bad magic number for serial "
891 "struct (%s) in %s\n", name, routine);
Jiri Slaby02f11752006-12-08 02:39:28 -0800892 return 1;
893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894#endif
Jiri Slaby02f11752006-12-08 02:39:28 -0800895 return 0;
896} /* serial_paranoia_check */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898/***********************************************************/
899/********* Start of block of Cyclom-Y specific code ********/
900
901/* This routine waits up to 1000 micro-seconds for the previous
902 command to the Cirrus chip to complete and then issues the
903 new command. An error is returned if the previous command
904 didn't finish within the time limit.
905
906 This function is only called from inside spinlock-protected code.
907 */
Jiri Slaby02f11752006-12-08 02:39:28 -0800908static int cyy_issue_cmd(void __iomem * base_addr, u_char cmd, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Jiri Slabyad39c302007-05-08 00:35:49 -0700910 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Jiri Slaby02f11752006-12-08 02:39:28 -0800912 /* Check to see that the previous command has completed */
913 for (i = 0; i < 100; i++) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700914 if (readb(base_addr + (CyCCR << index)) == 0) {
Jiri Slaby02f11752006-12-08 02:39:28 -0800915 break;
916 }
917 udelay(10L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
Jiri Slaby02f11752006-12-08 02:39:28 -0800919 /* if the CCR never cleared, the previous command
920 didn't finish within the "reasonable time" */
921 if (i == 100)
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800922 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Jiri Slaby02f11752006-12-08 02:39:28 -0800924 /* Issue the new command */
925 cy_writeb(base_addr + (CyCCR << index), cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800927 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -0800928} /* cyy_issue_cmd */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930#ifdef CONFIG_ISA
931/* ISA interrupt detection code */
Jiri Slaby02f11752006-12-08 02:39:28 -0800932static unsigned detect_isa_irq(void __iomem * address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Jiri Slaby02f11752006-12-08 02:39:28 -0800934 int irq;
935 unsigned long irqs, flags;
936 int save_xir, save_car;
937 int index = 0; /* IRQ probing is only for ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Jiri Slaby02f11752006-12-08 02:39:28 -0800939 /* forget possible initially masked and pending IRQ */
940 irq = probe_irq_off(probe_irq_on());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Jiri Slaby02f11752006-12-08 02:39:28 -0800942 /* Clear interrupts on the board first */
943 cy_writeb(address + (Cy_ClrIntr << index), 0);
944 /* Cy_ClrIntr is 0x1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Jiri Slaby02f11752006-12-08 02:39:28 -0800946 irqs = probe_irq_on();
947 /* Wait ... */
948 udelay(5000L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Jiri Slaby02f11752006-12-08 02:39:28 -0800950 /* Enable the Tx interrupts on the CD1400 */
951 local_irq_save(flags);
952 cy_writeb(address + (CyCAR << index), 0);
953 cyy_issue_cmd(address, CyCHAN_CTL | CyENB_XMTR, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Jiri Slaby02f11752006-12-08 02:39:28 -0800955 cy_writeb(address + (CyCAR << index), 0);
956 cy_writeb(address + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700957 readb(address + (CySRER << index)) | CyTxRdy);
Jiri Slaby02f11752006-12-08 02:39:28 -0800958 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Jiri Slaby02f11752006-12-08 02:39:28 -0800960 /* Wait ... */
961 udelay(5000L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Jiri Slaby02f11752006-12-08 02:39:28 -0800963 /* Check which interrupt is in use */
964 irq = probe_irq_off(irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Jiri Slaby02f11752006-12-08 02:39:28 -0800966 /* Clean up */
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700967 save_xir = (u_char) readb(address + (CyTIR << index));
968 save_car = readb(address + (CyCAR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -0800969 cy_writeb(address + (CyCAR << index), (save_xir & 0x3));
970 cy_writeb(address + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700971 readb(address + (CySRER << index)) & ~CyTxRdy);
Jiri Slaby02f11752006-12-08 02:39:28 -0800972 cy_writeb(address + (CyTIR << index), (save_xir & 0x3f));
973 cy_writeb(address + (CyCAR << index), (save_car));
974 cy_writeb(address + (Cy_ClrIntr << index), 0);
975 /* Cy_ClrIntr is 0x1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Jiri Slaby02f11752006-12-08 02:39:28 -0800977 return (irq > 0) ? irq : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
Jiri Slaby02f11752006-12-08 02:39:28 -0800979#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Jiri Slabyce97a092007-10-18 03:06:21 -0700981static void cyy_chip_rx(struct cyclades_card *cinfo, int chip,
982 void __iomem *base_addr)
Jiri Slabye9410272006-12-08 02:39:28 -0800983{
984 struct cyclades_port *info;
985 struct tty_struct *tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -0700986 int len, index = cinfo->bus_index;
987 u8 save_xir, channel, save_car, data, char_count;
Jiri Slabye9410272006-12-08 02:39:28 -0800988
Jiri Slabye9410272006-12-08 02:39:28 -0800989#ifdef CY_DEBUG_INTERRUPTS
Jiri Slabyce97a092007-10-18 03:06:21 -0700990 printk(KERN_DEBUG "cyy_interrupt: rcvd intr, chip %d\n", chip);
Jiri Slabye9410272006-12-08 02:39:28 -0800991#endif
Jiri Slabyce97a092007-10-18 03:06:21 -0700992 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -0700993 save_xir = readb(base_addr + (CyRIR << index));
994 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -0700995 info = &cinfo->ports[channel + chip * 4];
996 save_car = readb(base_addr + (CyCAR << index));
997 cy_writeb(base_addr + (CyCAR << index), save_xir);
Jiri Slabye9410272006-12-08 02:39:28 -0800998
Jiri Slabyce97a092007-10-18 03:06:21 -0700999 /* if there is nowhere to put the data, discard it */
1000 if (info->tty == NULL) {
Jiri Slaby65f76a82007-10-18 03:06:22 -07001001 if ((readb(base_addr + (CyRIVR << index)) & CyIVRMask) ==
1002 CyIVRRxEx) { /* exception */
Jiri Slabyce97a092007-10-18 03:06:21 -07001003 data = readb(base_addr + (CyRDSR << index));
1004 } else { /* normal character reception */
1005 char_count = readb(base_addr + (CyRDCR << index));
1006 while (char_count--)
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001007 data = readb(base_addr + (CyRDSR << index));
Jiri Slabyce97a092007-10-18 03:06:21 -07001008 }
1009 goto end;
1010 }
1011 /* there is an open port for this data */
1012 tty = info->tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001013 if ((readb(base_addr + (CyRIVR << index)) & CyIVRMask) ==
1014 CyIVRRxEx) { /* exception */
Jiri Slabyce97a092007-10-18 03:06:21 -07001015 data = readb(base_addr + (CyRDSR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001016
Jiri Slabyce97a092007-10-18 03:06:21 -07001017 /* For statistics only */
1018 if (data & CyBREAK)
1019 info->icount.brk++;
1020 else if (data & CyFRAME)
1021 info->icount.frame++;
1022 else if (data & CyPARITY)
1023 info->icount.parity++;
1024 else if (data & CyOVERRUN)
1025 info->icount.overrun++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001026
Jiri Slabyce97a092007-10-18 03:06:21 -07001027 if (data & info->ignore_status_mask) {
1028 info->icount.rx++;
Jiri Slabyce97a092007-10-18 03:06:21 -07001029 return;
1030 }
1031 if (tty_buffer_request_room(tty, 1)) {
1032 if (data & info->read_status_mask) {
1033 if (data & CyBREAK) {
1034 tty_insert_flip_char(tty,
1035 readb(base_addr + (CyRDSR <<
1036 index)), TTY_BREAK);
Jiri Slaby02f11752006-12-08 02:39:28 -08001037 info->icount.rx++;
Jiri Slabyce97a092007-10-18 03:06:21 -07001038 if (info->flags & ASYNC_SAK)
1039 do_SAK(tty);
1040 } else if (data & CyFRAME) {
1041 tty_insert_flip_char( tty,
1042 readb(base_addr + (CyRDSR <<
1043 index)), TTY_FRAME);
1044 info->icount.rx++;
1045 info->idle_stats.frame_errs++;
1046 } else if (data & CyPARITY) {
1047 /* Pieces of seven... */
1048 tty_insert_flip_char(tty,
1049 readb(base_addr + (CyRDSR <<
1050 index)), TTY_PARITY);
1051 info->icount.rx++;
1052 info->idle_stats.parity_errs++;
1053 } else if (data & CyOVERRUN) {
1054 tty_insert_flip_char(tty, 0,
1055 TTY_OVERRUN);
1056 info->icount.rx++;
1057 /* If the flip buffer itself is
1058 overflowing, we still lose
1059 the next incoming character.
1060 */
1061 tty_insert_flip_char(tty,
1062 readb(base_addr + (CyRDSR <<
1063 index)), TTY_FRAME);
1064 info->icount.rx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001065 info->idle_stats.overruns++;
Jiri Slabyce97a092007-10-18 03:06:21 -07001066 /* These two conditions may imply */
1067 /* a normal read should be done. */
1068 /* } else if(data & CyTIMEOUT) { */
1069 /* } else if(data & CySPECHAR) { */
1070 } else {
1071 tty_insert_flip_char(tty, 0,
1072 TTY_NORMAL);
1073 info->icount.rx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001074 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001075 } else {
1076 tty_insert_flip_char(tty, 0, TTY_NORMAL);
1077 info->icount.rx++;
1078 }
1079 } else {
1080 /* there was a software buffer overrun and nothing
1081 * could be done about it!!! */
1082 info->icount.buf_overrun++;
1083 info->idle_stats.overruns++;
1084 }
1085 } else { /* normal character reception */
1086 /* load # chars available from the chip */
1087 char_count = readb(base_addr + (CyRDCR << index));
Jiri Slabye9410272006-12-08 02:39:28 -08001088
1089#ifdef CY_ENABLE_MONITORING
Jiri Slabyce97a092007-10-18 03:06:21 -07001090 ++info->mon.int_count;
1091 info->mon.char_count += char_count;
1092 if (char_count > info->mon.char_max)
1093 info->mon.char_max = char_count;
1094 info->mon.char_last = char_count;
Jiri Slabye9410272006-12-08 02:39:28 -08001095#endif
Jiri Slabyce97a092007-10-18 03:06:21 -07001096 len = tty_buffer_request_room(tty, char_count);
1097 while (len--) {
1098 data = readb(base_addr + (CyRDSR << index));
1099 tty_insert_flip_char(tty, data, TTY_NORMAL);
1100 info->idle_stats.recv_bytes++;
1101 info->icount.rx++;
Jiri Slabye9410272006-12-08 02:39:28 -08001102#ifdef CY_16Y_HACK
Jiri Slabyce97a092007-10-18 03:06:21 -07001103 udelay(10L);
Jiri Slabye9410272006-12-08 02:39:28 -08001104#endif
Jiri Slabye9410272006-12-08 02:39:28 -08001105 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001106 info->idle_stats.recv_idle = jiffies;
1107 }
1108 tty_schedule_flip(tty);
1109end:
1110 /* end of service */
1111 cy_writeb(base_addr + (CyRIR << index), save_xir & 0x3f);
1112 cy_writeb(base_addr + (CyCAR << index), save_car);
Jiri Slabyce97a092007-10-18 03:06:21 -07001113}
1114
Jiri Slaby65f76a82007-10-18 03:06:22 -07001115static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip,
Jiri Slabyce97a092007-10-18 03:06:21 -07001116 void __iomem *base_addr)
1117{
1118 struct cyclades_port *info;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001119 int char_count, index = cinfo->bus_index;
1120 u8 save_xir, channel, save_car, outch;
Jiri Slabyce97a092007-10-18 03:06:21 -07001121
1122 /* Since we only get here when the transmit buffer
1123 is empty, we know we can always stuff a dozen
1124 characters. */
1125#ifdef CY_DEBUG_INTERRUPTS
1126 printk(KERN_DEBUG "cyy_interrupt: xmit intr, chip %d\n", chip);
1127#endif
1128
1129 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -07001130 save_xir = readb(base_addr + (CyTIR << index));
1131 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -07001132 save_car = readb(base_addr + (CyCAR << index));
1133 cy_writeb(base_addr + (CyCAR << index), save_xir);
1134
1135 /* validate the port# (as configured and open) */
1136 if (channel + chip * 4 >= cinfo->nports) {
1137 cy_writeb(base_addr + (CySRER << index),
1138 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
1139 goto end;
1140 }
1141 info = &cinfo->ports[channel + chip * 4];
1142 if (info->tty == NULL) {
1143 cy_writeb(base_addr + (CySRER << index),
1144 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
1145 goto end;
Jiri Slabye9410272006-12-08 02:39:28 -08001146 }
1147
Jiri Slabyce97a092007-10-18 03:06:21 -07001148 /* load the on-chip space for outbound data */
1149 char_count = info->xmit_fifo_size;
Jiri Slabye9410272006-12-08 02:39:28 -08001150
Jiri Slabyce97a092007-10-18 03:06:21 -07001151 if (info->x_char) { /* send special char */
1152 outch = info->x_char;
1153 cy_writeb(base_addr + (CyTDR << index), outch);
1154 char_count--;
1155 info->icount.tx++;
1156 info->x_char = 0;
1157 }
Jiri Slabye9410272006-12-08 02:39:28 -08001158
Jiri Slabyce97a092007-10-18 03:06:21 -07001159 if (info->breakon || info->breakoff) {
1160 if (info->breakon) {
1161 cy_writeb(base_addr + (CyTDR << index), 0);
1162 cy_writeb(base_addr + (CyTDR << index), 0x81);
1163 info->breakon = 0;
1164 char_count -= 2;
Jiri Slaby02f11752006-12-08 02:39:28 -08001165 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001166 if (info->breakoff) {
1167 cy_writeb(base_addr + (CyTDR << index), 0);
1168 cy_writeb(base_addr + (CyTDR << index), 0x83);
1169 info->breakoff = 0;
1170 char_count -= 2;
Jiri Slaby02f11752006-12-08 02:39:28 -08001171 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001172 }
Jiri Slabye9410272006-12-08 02:39:28 -08001173
Jiri Slabyce97a092007-10-18 03:06:21 -07001174 while (char_count-- > 0) {
1175 if (!info->xmit_cnt) {
1176 if (readb(base_addr + (CySRER << index)) & CyTxMpty) {
1177 cy_writeb(base_addr + (CySRER << index),
1178 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001179 ~CyTxMpty);
Jiri Slabyce97a092007-10-18 03:06:21 -07001180 } else {
1181 cy_writeb(base_addr + (CySRER << index),
1182 (readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001183 ~CyTxRdy) | CyTxMpty);
Jiri Slaby02f11752006-12-08 02:39:28 -08001184 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001185 goto done;
1186 }
1187 if (info->xmit_buf == NULL) {
1188 cy_writeb(base_addr + (CySRER << index),
1189 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001190 ~CyTxRdy);
Jiri Slabyce97a092007-10-18 03:06:21 -07001191 goto done;
1192 }
1193 if (info->tty->stopped || info->tty->hw_stopped) {
1194 cy_writeb(base_addr + (CySRER << index),
1195 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001196 ~CyTxRdy);
Jiri Slabyce97a092007-10-18 03:06:21 -07001197 goto done;
1198 }
1199 /* Because the Embedded Transmit Commands have been enabled,
1200 * we must check to see if the escape character, NULL, is being
1201 * sent. If it is, we must ensure that there is room for it to
1202 * be doubled in the output stream. Therefore we no longer
1203 * advance the pointer when the character is fetched, but
1204 * rather wait until after the check for a NULL output
1205 * character. This is necessary because there may not be room
1206 * for the two chars needed to send a NULL.)
1207 */
1208 outch = info->xmit_buf[info->xmit_tail];
1209 if (outch) {
1210 info->xmit_cnt--;
1211 info->xmit_tail = (info->xmit_tail + 1) &
1212 (SERIAL_XMIT_SIZE - 1);
1213 cy_writeb(base_addr + (CyTDR << index), outch);
1214 info->icount.tx++;
1215 } else {
1216 if (char_count > 1) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001217 info->xmit_cnt--;
1218 info->xmit_tail = (info->xmit_tail + 1) &
Jiri Slabyce97a092007-10-18 03:06:21 -07001219 (SERIAL_XMIT_SIZE - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08001220 cy_writeb(base_addr + (CyTDR << index), outch);
Jiri Slabyce97a092007-10-18 03:06:21 -07001221 cy_writeb(base_addr + (CyTDR << index), 0);
Jiri Slaby02f11752006-12-08 02:39:28 -08001222 info->icount.tx++;
Jiri Slabyce97a092007-10-18 03:06:21 -07001223 char_count--;
Jiri Slaby02f11752006-12-08 02:39:28 -08001224 }
1225 }
Jiri Slabye9410272006-12-08 02:39:28 -08001226 }
1227
Jiri Slabyce97a092007-10-18 03:06:21 -07001228done:
1229 tty_wakeup(info->tty);
1230end:
1231 /* end of service */
1232 cy_writeb(base_addr + (CyTIR << index), save_xir & 0x3f);
1233 cy_writeb(base_addr + (CyCAR << index), save_car);
Jiri Slabyce97a092007-10-18 03:06:21 -07001234}
Jiri Slabye9410272006-12-08 02:39:28 -08001235
Jiri Slabyce97a092007-10-18 03:06:21 -07001236static void cyy_chip_modem(struct cyclades_card *cinfo, int chip,
1237 void __iomem *base_addr)
1238{
1239 struct cyclades_port *info;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001240 int index = cinfo->bus_index;
1241 u8 save_xir, channel, save_car, mdm_change, mdm_status;
Jiri Slabye9410272006-12-08 02:39:28 -08001242
Jiri Slabyce97a092007-10-18 03:06:21 -07001243 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -07001244 save_xir = readb(base_addr + (CyMIR << index));
1245 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -07001246 info = &cinfo->ports[channel + chip * 4];
1247 save_car = readb(base_addr + (CyCAR << index));
1248 cy_writeb(base_addr + (CyCAR << index), save_xir);
Jiri Slabye9410272006-12-08 02:39:28 -08001249
Jiri Slabyce97a092007-10-18 03:06:21 -07001250 mdm_change = readb(base_addr + (CyMISR << index));
1251 mdm_status = readb(base_addr + (CyMSVR1 << index));
Jiri Slabye9410272006-12-08 02:39:28 -08001252
Jiri Slabyce97a092007-10-18 03:06:21 -07001253 if (!info->tty)
1254 goto end;
Jiri Slaby02f11752006-12-08 02:39:28 -08001255
Jiri Slabyce97a092007-10-18 03:06:21 -07001256 if (mdm_change & CyANY_DELTA) {
1257 /* For statistics only */
1258 if (mdm_change & CyDCD)
1259 info->icount.dcd++;
1260 if (mdm_change & CyCTS)
1261 info->icount.cts++;
1262 if (mdm_change & CyDSR)
1263 info->icount.dsr++;
1264 if (mdm_change & CyRI)
1265 info->icount.rng++;
1266
1267 wake_up_interruptible(&info->delta_msr_wait);
1268 }
1269
1270 if ((mdm_change & CyDCD) && (info->flags & ASYNC_CHECK_CD)) {
1271 if (!(mdm_status & CyDCD)) {
1272 tty_hangup(info->tty);
1273 info->flags &= ~ASYNC_NORMAL_ACTIVE;
Jiri Slabye9410272006-12-08 02:39:28 -08001274 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001275 wake_up_interruptible(&info->open_wait);
Jiri Slabye9410272006-12-08 02:39:28 -08001276 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001277 if ((mdm_change & CyCTS) && (info->flags & ASYNC_CTS_FLOW)) {
1278 if (info->tty->hw_stopped) {
1279 if (mdm_status & CyCTS) {
1280 /* cy_start isn't used
1281 because... !!! */
1282 info->tty->hw_stopped = 0;
1283 cy_writeb(base_addr + (CySRER << index),
1284 readb(base_addr + (CySRER << index)) |
1285 CyTxRdy);
1286 tty_wakeup(info->tty);
1287 }
1288 } else {
1289 if (!(mdm_status & CyCTS)) {
1290 /* cy_stop isn't used
1291 because ... !!! */
1292 info->tty->hw_stopped = 1;
1293 cy_writeb(base_addr + (CySRER << index),
1294 readb(base_addr + (CySRER << index)) &
1295 ~CyTxRdy);
1296 }
1297 }
1298 }
1299/* if (mdm_change & CyDSR) {
1300 }
1301 if (mdm_change & CyRI) {
1302 }*/
1303end:
1304 /* end of service */
1305 cy_writeb(base_addr + (CyMIR << index), save_xir & 0x3f);
1306 cy_writeb(base_addr + (CyCAR << index), save_car);
Jiri Slabye9410272006-12-08 02:39:28 -08001307}
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309/* The real interrupt service routine is called
1310 whenever the card wants its hand held--chars
1311 received, out buffer empty, modem change, etc.
1312 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001313static irqreturn_t cyy_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Jiri Slaby02f11752006-12-08 02:39:28 -08001315 int status;
Jiri Slabyf7429032007-05-08 00:36:59 -07001316 struct cyclades_card *cinfo = dev_id;
Jiri Slaby02f11752006-12-08 02:39:28 -08001317 void __iomem *base_addr, *card_base_addr;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001318 unsigned int chip, too_many, had_work;
Jiri Slaby02f11752006-12-08 02:39:28 -08001319 int index;
Jiri Slabye9410272006-12-08 02:39:28 -08001320
Jiri Slabyf7429032007-05-08 00:36:59 -07001321 if (unlikely(cinfo == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001323 printk(KERN_DEBUG "cyy_interrupt: spurious interrupt %d\n",irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001325 return IRQ_NONE; /* spurious interrupt */
1326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Jiri Slaby02f11752006-12-08 02:39:28 -08001328 card_base_addr = cinfo->base_addr;
1329 index = cinfo->bus_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Jiri Slabyf1e83c62007-05-08 00:36:24 -07001331 /* card was not initialized yet (e.g. DEBUG_SHIRQ) */
1332 if (unlikely(card_base_addr == NULL))
1333 return IRQ_HANDLED;
1334
Jiri Slaby02f11752006-12-08 02:39:28 -08001335 /* This loop checks all chips in the card. Make a note whenever
1336 _any_ chip had some work to do, as this is considered an
1337 indication that there will be more to do. Only when no chip
1338 has any work does this outermost loop exit.
1339 */
1340 do {
1341 had_work = 0;
1342 for (chip = 0; chip < cinfo->num_chips; chip++) {
1343 base_addr = cinfo->base_addr +
1344 (cy_chip_offset[chip] << index);
1345 too_many = 0;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001346 while ((status = readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001347 (CySVRR << index))) != 0x00) {
1348 had_work++;
1349 /* The purpose of the following test is to ensure that
1350 no chip can monopolize the driver. This forces the
1351 chips to be checked in a round-robin fashion (after
1352 draining each of a bunch (1000) of characters).
1353 */
Jiri Slabyce97a092007-10-18 03:06:21 -07001354 if (1000 < too_many++)
Jiri Slaby02f11752006-12-08 02:39:28 -08001355 break;
Jiri Slaby1c0a3872007-10-18 03:06:22 -07001356 spin_lock(&cinfo->card_lock);
Jiri Slabyce97a092007-10-18 03:06:21 -07001357 if (status & CySRReceive) /* rx intr */
1358 cyy_chip_rx(cinfo, chip, base_addr);
1359 if (status & CySRTransmit) /* tx intr */
1360 cyy_chip_tx(cinfo, chip, base_addr);
1361 if (status & CySRModem) /* modem intr */
1362 cyy_chip_modem(cinfo, chip, base_addr);
Jiri Slaby1c0a3872007-10-18 03:06:22 -07001363 spin_unlock(&cinfo->card_lock);
Jiri Slaby02f11752006-12-08 02:39:28 -08001364 }
1365 }
1366 } while (had_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Jiri Slaby02f11752006-12-08 02:39:28 -08001368 /* clear interrupts */
1369 spin_lock(&cinfo->card_lock);
1370 cy_writeb(card_base_addr + (Cy_ClrIntr << index), 0);
1371 /* Cy_ClrIntr is 0x1800 */
1372 spin_unlock(&cinfo->card_lock);
1373 return IRQ_HANDLED;
1374} /* cyy_interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376/***********************************************************/
1377/********* End of block of Cyclom-Y specific code **********/
1378/******** Start of block of Cyclades-Z specific code *********/
1379/***********************************************************/
1380
1381static int
Jiri Slaby02f11752006-12-08 02:39:28 -08001382cyz_fetch_msg(struct cyclades_card *cinfo,
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001383 __u32 * channel, __u8 * cmd, __u32 * param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
Jiri Slaby02f11752006-12-08 02:39:28 -08001385 struct FIRM_ID __iomem *firm_id;
1386 struct ZFW_CTRL __iomem *zfw_ctrl;
1387 struct BOARD_CTRL __iomem *board_ctrl;
1388 unsigned long loc_doorbell;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Jiri Slaby02f11752006-12-08 02:39:28 -08001390 firm_id = cinfo->base_addr + ID_ADDRESS;
1391 if (!ISZLOADED(*cinfo)) {
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001392 return -1;
Jiri Slaby02f11752006-12-08 02:39:28 -08001393 }
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001394 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001395 board_ctrl = &zfw_ctrl->board_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001397 loc_doorbell = readl(&((struct RUNTIME_9060 __iomem *)
Jiri Slaby02f11752006-12-08 02:39:28 -08001398 (cinfo->ctl_addr))->loc_doorbell);
1399 if (loc_doorbell) {
1400 *cmd = (char)(0xff & loc_doorbell);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001401 *channel = readl(&board_ctrl->fwcmd_channel);
1402 *param = (__u32) readl(&board_ctrl->fwcmd_param);
Jiri Slaby02f11752006-12-08 02:39:28 -08001403 cy_writel(&((struct RUNTIME_9060 __iomem *)(cinfo->ctl_addr))->
1404 loc_doorbell, 0xffffffff);
1405 return 1;
1406 }
1407 return 0;
1408} /* cyz_fetch_msg */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410static int
Jiri Slaby02f11752006-12-08 02:39:28 -08001411cyz_issue_cmd(struct cyclades_card *cinfo,
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001412 __u32 channel, __u8 cmd, __u32 param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
Jiri Slaby02f11752006-12-08 02:39:28 -08001414 struct FIRM_ID __iomem *firm_id;
1415 struct ZFW_CTRL __iomem *zfw_ctrl;
1416 struct BOARD_CTRL __iomem *board_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001417 __u32 __iomem *pci_doorbell;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001418 unsigned int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Jiri Slaby02f11752006-12-08 02:39:28 -08001420 firm_id = cinfo->base_addr + ID_ADDRESS;
1421 if (!ISZLOADED(*cinfo)) {
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001422 return -1;
Jiri Slaby02f11752006-12-08 02:39:28 -08001423 }
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001424 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001425 board_ctrl = &zfw_ctrl->board_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Jiri Slaby02f11752006-12-08 02:39:28 -08001427 index = 0;
1428 pci_doorbell =
1429 &((struct RUNTIME_9060 __iomem *)(cinfo->ctl_addr))->pci_doorbell;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001430 while ((readl(pci_doorbell) & 0xff) != 0) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001431 if (index++ == 1000) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001432 return (int)(readl(pci_doorbell) & 0xff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001433 }
1434 udelay(50L);
1435 }
1436 cy_writel(&board_ctrl->hcmd_channel, channel);
1437 cy_writel(&board_ctrl->hcmd_param, param);
1438 cy_writel(pci_doorbell, (long)cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001440 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08001441} /* cyz_issue_cmd */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Jiri Slaby65f76a82007-10-18 03:06:22 -07001443static void cyz_handle_rx(struct cyclades_port *info,
Jiri Slabyad39c302007-05-08 00:35:49 -07001444 struct BUF_CTRL __iomem *buf_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Jiri Slaby875b2062007-05-08 00:36:49 -07001446 struct cyclades_card *cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001447 struct tty_struct *tty = info->tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001448 unsigned int char_count;
Jiri Slaby02f11752006-12-08 02:39:28 -08001449 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450#ifdef BLOCKMOVE
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001451 unsigned char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001453 char data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454#endif
Jiri Slabyad39c302007-05-08 00:35:49 -07001455 __u32 rx_put, rx_get, new_rx_get, rx_bufsize, rx_bufaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001457 rx_get = new_rx_get = readl(&buf_ctrl->rx_get);
1458 rx_put = readl(&buf_ctrl->rx_put);
1459 rx_bufsize = readl(&buf_ctrl->rx_bufsize);
1460 rx_bufaddr = readl(&buf_ctrl->rx_bufaddr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001461 if (rx_put >= rx_get)
1462 char_count = rx_put - rx_get;
1463 else
1464 char_count = rx_put - rx_get + rx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Jiri Slaby02f11752006-12-08 02:39:28 -08001466 if (char_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467#ifdef CY_ENABLE_MONITORING
Jiri Slaby02f11752006-12-08 02:39:28 -08001468 info->mon.int_count++;
1469 info->mon.char_count += char_count;
1470 if (char_count > info->mon.char_max)
1471 info->mon.char_max = char_count;
1472 info->mon.char_last = char_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473#endif
Jiri Slabyf7429032007-05-08 00:36:59 -07001474 if (tty == NULL) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001475 /* flush received characters */
1476 new_rx_get = (new_rx_get + char_count) &
1477 (rx_bufsize - 1);
1478 info->rflush_count++;
1479 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480#ifdef BLOCKMOVE
Jiri Slaby02f11752006-12-08 02:39:28 -08001481 /* we'd like to use memcpy(t, f, n) and memset(s, c, count)
1482 for performance, but because of buffer boundaries, there
1483 may be several steps to the operation */
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001484 while (1) {
1485 len = tty_prepare_flip_string(tty, &buf,
1486 char_count);
1487 if (!len)
1488 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001490 len = min_t(unsigned int, min(len, char_count),
1491 rx_bufsize - new_rx_get);
1492
1493 memcpy_fromio(buf, cinfo->base_addr +
1494 rx_bufaddr + new_rx_get, len);
1495
1496 new_rx_get = (new_rx_get + len) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001497 (rx_bufsize - 1);
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001498 char_count -= len;
1499 info->icount.rx += len;
1500 info->idle_stats.recv_bytes += len;
Jiri Slaby02f11752006-12-08 02:39:28 -08001501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001503 len = tty_buffer_request_room(tty, char_count);
1504 while (len--) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001505 data = readb(cinfo->base_addr + rx_bufaddr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001506 new_rx_get);
1507 new_rx_get = (new_rx_get + 1)& (rx_bufsize - 1);
1508 tty_insert_flip_char(tty, data, TTY_NORMAL);
1509 info->idle_stats.recv_bytes++;
1510 info->icount.rx++;
1511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512#endif
1513#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001514 /* Recalculate the number of chars in the RX buffer and issue
1515 a cmd in case it's higher than the RX high water mark */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001516 rx_put = readl(&buf_ctrl->rx_put);
Jiri Slaby02f11752006-12-08 02:39:28 -08001517 if (rx_put >= rx_get)
1518 char_count = rx_put - rx_get;
1519 else
1520 char_count = rx_put - rx_get + rx_bufsize;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001521 if (char_count >= readl(&buf_ctrl->rx_threshold) &&
Jiri Slabyebafeef2007-10-18 03:06:20 -07001522 !timer_pending(&cyz_rx_full_timer[
1523 info->line]))
1524 mod_timer(&cyz_rx_full_timer[info->line],
1525 jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001527 info->idle_stats.recv_idle = jiffies;
1528 tty_schedule_flip(tty);
1529 }
1530 /* Update rx_get */
1531 cy_writel(&buf_ctrl->rx_get, new_rx_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
Jiri Slaby65f76a82007-10-18 03:06:22 -07001535static void cyz_handle_tx(struct cyclades_port *info,
Jiri Slabyad39c302007-05-08 00:35:49 -07001536 struct BUF_CTRL __iomem *buf_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Jiri Slaby875b2062007-05-08 00:36:49 -07001538 struct cyclades_card *cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001539 struct tty_struct *tty = info->tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001540 u8 data;
1541 unsigned int char_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542#ifdef BLOCKMOVE
Jiri Slaby02f11752006-12-08 02:39:28 -08001543 int small_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544#endif
Jiri Slabyad39c302007-05-08 00:35:49 -07001545 __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Jiri Slaby02f11752006-12-08 02:39:28 -08001547 if (info->xmit_cnt <= 0) /* Nothing to transmit */
1548 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001550 tx_get = readl(&buf_ctrl->tx_get);
1551 tx_put = readl(&buf_ctrl->tx_put);
1552 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
1553 tx_bufaddr = readl(&buf_ctrl->tx_bufaddr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001554 if (tx_put >= tx_get)
1555 char_count = tx_get - tx_put - 1 + tx_bufsize;
1556 else
1557 char_count = tx_get - tx_put - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Jiri Slaby02f11752006-12-08 02:39:28 -08001559 if (char_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Jiri Slabyf7429032007-05-08 00:36:59 -07001561 if (tty == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08001562 goto ztxdone;
Jiri Slaby02f11752006-12-08 02:39:28 -08001563
1564 if (info->x_char) { /* send special char */
1565 data = info->x_char;
1566
1567 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1568 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1569 info->x_char = 0;
1570 char_count--;
1571 info->icount.tx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001572 }
1573#ifdef BLOCKMOVE
1574 while (0 < (small_count = min_t(unsigned int,
1575 tx_bufsize - tx_put, min_t(unsigned int,
1576 (SERIAL_XMIT_SIZE - info->xmit_tail),
1577 min_t(unsigned int, info->xmit_cnt,
1578 char_count))))) {
1579
1580 memcpy_toio((char *)(cinfo->base_addr + tx_bufaddr +
1581 tx_put),
1582 &info->xmit_buf[info->xmit_tail],
1583 small_count);
1584
1585 tx_put = (tx_put + small_count) & (tx_bufsize - 1);
1586 char_count -= small_count;
1587 info->icount.tx += small_count;
1588 info->xmit_cnt -= small_count;
1589 info->xmit_tail = (info->xmit_tail + small_count) &
1590 (SERIAL_XMIT_SIZE - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08001591 }
1592#else
1593 while (info->xmit_cnt && char_count) {
1594 data = info->xmit_buf[info->xmit_tail];
1595 info->xmit_cnt--;
1596 info->xmit_tail = (info->xmit_tail + 1) &
1597 (SERIAL_XMIT_SIZE - 1);
1598
1599 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1600 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1601 char_count--;
1602 info->icount.tx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604#endif
Jiri Slabyebafeef2007-10-18 03:06:20 -07001605 tty_wakeup(tty);
Jiri Slaby7fa57a02007-10-22 20:45:13 -07001606ztxdone:
Jiri Slaby02f11752006-12-08 02:39:28 -08001607 /* Update tx_put */
1608 cy_writel(&buf_ctrl->tx_put, tx_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610}
1611
Jiri Slaby02f11752006-12-08 02:39:28 -08001612static void cyz_handle_cmd(struct cyclades_card *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613{
Jiri Slaby02f11752006-12-08 02:39:28 -08001614 struct tty_struct *tty;
1615 struct cyclades_port *info;
Jiri Slabyad39c302007-05-08 00:35:49 -07001616 static struct FIRM_ID __iomem *firm_id;
1617 static struct ZFW_CTRL __iomem *zfw_ctrl;
1618 static struct BOARD_CTRL __iomem *board_ctrl;
1619 static struct CH_CTRL __iomem *ch_ctrl;
1620 static struct BUF_CTRL __iomem *buf_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001621 __u32 channel;
1622 __u8 cmd;
1623 __u32 param;
1624 __u32 hw_ver, fw_ver;
Jiri Slaby02f11752006-12-08 02:39:28 -08001625 int special_count;
1626 int delta_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 firm_id = cinfo->base_addr + ID_ADDRESS;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001629 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001630 board_ctrl = &zfw_ctrl->board_ctrl;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001631 fw_ver = readl(&board_ctrl->fw_version);
1632 hw_ver = readl(&((struct RUNTIME_9060 __iomem *)(cinfo->ctl_addr))->
Jiri Slaby02f11752006-12-08 02:39:28 -08001633 mail_box_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Jiri Slaby02f11752006-12-08 02:39:28 -08001635 while (cyz_fetch_msg(cinfo, &channel, &cmd, &param) == 1) {
1636 special_count = 0;
1637 delta_count = 0;
Jiri Slabydd025c02007-05-08 00:37:02 -07001638 info = &cinfo->ports[channel];
Jiri Slabyf7429032007-05-08 00:36:59 -07001639 if ((tty = info->tty) == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08001640 continue;
Jiri Slabyf7429032007-05-08 00:36:59 -07001641
Jiri Slaby02f11752006-12-08 02:39:28 -08001642 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
1643 buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]);
1644
1645 switch (cmd) {
1646 case C_CM_PR_ERROR:
1647 tty_insert_flip_char(tty, 0, TTY_PARITY);
1648 info->icount.rx++;
1649 special_count++;
1650 break;
1651 case C_CM_FR_ERROR:
1652 tty_insert_flip_char(tty, 0, TTY_FRAME);
1653 info->icount.rx++;
1654 special_count++;
1655 break;
1656 case C_CM_RXBRK:
1657 tty_insert_flip_char(tty, 0, TTY_BREAK);
1658 info->icount.rx++;
1659 special_count++;
1660 break;
1661 case C_CM_MDCD:
1662 info->icount.dcd++;
1663 delta_count++;
1664 if (info->flags & ASYNC_CHECK_CD) {
1665 if ((fw_ver > 241 ? ((u_long) param) :
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001666 readl(&ch_ctrl->rs_status)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001667 C_RS_DCD) {
Jiri Slabyebafeef2007-10-18 03:06:20 -07001668 wake_up_interruptible(&info->open_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001669 } else {
Jiri Slabyebafeef2007-10-18 03:06:20 -07001670 tty_hangup(info->tty);
1671 wake_up_interruptible(&info->open_wait);
1672 info->flags &= ~ASYNC_NORMAL_ACTIVE;
Jiri Slaby02f11752006-12-08 02:39:28 -08001673 }
1674 }
1675 break;
1676 case C_CM_MCTS:
1677 info->icount.cts++;
1678 delta_count++;
1679 break;
1680 case C_CM_MRI:
1681 info->icount.rng++;
1682 delta_count++;
1683 break;
1684 case C_CM_MDSR:
1685 info->icount.dsr++;
1686 delta_count++;
1687 break;
1688#ifdef Z_WAKE
1689 case C_CM_IOCTLW:
Jiri Slabyebafeef2007-10-18 03:06:20 -07001690 complete(&info->shutdown_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001691 break;
1692#endif
1693#ifdef CONFIG_CYZ_INTR
1694 case C_CM_RXHIWM:
1695 case C_CM_RXNNDT:
1696 case C_CM_INTBACK2:
1697 /* Reception Interrupt */
1698#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001699 printk(KERN_DEBUG "cyz_interrupt: rcvd intr, card %d, "
1700 "port %ld\n", info->card, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001701#endif
Jiri Slaby65f76a82007-10-18 03:06:22 -07001702 cyz_handle_rx(info, buf_ctrl);
Jiri Slaby02f11752006-12-08 02:39:28 -08001703 break;
1704 case C_CM_TXBEMPTY:
1705 case C_CM_TXLOWWM:
1706 case C_CM_INTBACK:
1707 /* Transmission Interrupt */
1708#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001709 printk(KERN_DEBUG "cyz_interrupt: xmit intr, card %d, "
1710 "port %ld\n", info->card, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001711#endif
Jiri Slaby65f76a82007-10-18 03:06:22 -07001712 cyz_handle_tx(info, buf_ctrl);
Jiri Slaby02f11752006-12-08 02:39:28 -08001713 break;
1714#endif /* CONFIG_CYZ_INTR */
1715 case C_CM_FATAL:
1716 /* should do something with this !!! */
1717 break;
1718 default:
1719 break;
1720 }
1721 if (delta_count)
Jiri Slabyebafeef2007-10-18 03:06:20 -07001722 wake_up_interruptible(&info->delta_msr_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001723 if (special_count)
1724 tty_schedule_flip(tty);
1725 }
1726}
1727
1728#ifdef CONFIG_CYZ_INTR
1729static irqreturn_t cyz_interrupt(int irq, void *dev_id)
1730{
Jiri Slabyf7429032007-05-08 00:36:59 -07001731 struct cyclades_card *cinfo = dev_id;
Jiri Slaby02f11752006-12-08 02:39:28 -08001732
Jiri Slabyf7429032007-05-08 00:36:59 -07001733 if (unlikely(cinfo == NULL)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001734#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001735 printk(KERN_DEBUG "cyz_interrupt: spurious interrupt %d\n",irq);
Jiri Slaby02f11752006-12-08 02:39:28 -08001736#endif
1737 return IRQ_NONE; /* spurious interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
1739
Jiri Slabyf7429032007-05-08 00:36:59 -07001740 if (unlikely(!ISZLOADED(*cinfo))) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001741#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001742 printk(KERN_DEBUG "cyz_interrupt: board not yet loaded "
1743 "(IRQ%d).\n", irq);
Jiri Slaby02f11752006-12-08 02:39:28 -08001744#endif
1745 return IRQ_NONE;
1746 }
1747
1748 /* Handle the interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 cyz_handle_cmd(cinfo);
1750
Jiri Slaby02f11752006-12-08 02:39:28 -08001751 return IRQ_HANDLED;
1752} /* cyz_interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Jiri Slaby02f11752006-12-08 02:39:28 -08001754static void cyz_rx_restart(unsigned long arg)
1755{
1756 struct cyclades_port *info = (struct cyclades_port *)arg;
Jiri Slaby875b2062007-05-08 00:36:49 -07001757 struct cyclades_card *card = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001758 int retval;
Jiri Slaby875b2062007-05-08 00:36:49 -07001759 __u32 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08001760 unsigned long flags;
1761
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001762 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07001763 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK2, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001764 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001765 printk(KERN_ERR "cyc:cyz_rx_restart retval on ttyC%d was %x\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08001766 info->line, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001768 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001769}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Jiri Slaby02f11752006-12-08 02:39:28 -08001771#else /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Jiri Slaby02f11752006-12-08 02:39:28 -08001773static void cyz_poll(unsigned long arg)
1774{
1775 struct cyclades_card *cinfo;
1776 struct cyclades_port *info;
1777 struct tty_struct *tty;
Jiri Slabyc4923b42007-07-17 04:05:17 -07001778 struct FIRM_ID __iomem *firm_id;
1779 struct ZFW_CTRL __iomem *zfw_ctrl;
1780 struct BOARD_CTRL __iomem *board_ctrl;
Jiri Slabyc4923b42007-07-17 04:05:17 -07001781 struct BUF_CTRL __iomem *buf_ctrl;
Jiri Slabyb7050902007-05-08 00:35:48 -07001782 unsigned long expires = jiffies + HZ;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001783 unsigned int port, card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001784
Jiri Slaby02f11752006-12-08 02:39:28 -08001785 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 +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001795 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001796 board_ctrl = &(zfw_ctrl->board_ctrl);
1797
1798 /* Skip first polling cycle to avoid racing conditions with the FW */
1799 if (!cinfo->intr_enabled) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001800 cinfo->nports = (int)readl(&board_ctrl->n_channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001801 cinfo->intr_enabled = 1;
1802 continue;
1803 }
1804
1805 cyz_handle_cmd(cinfo);
1806
1807 for (port = 0; port < cinfo->nports; port++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07001808 info = &cinfo->ports[port];
Jiri Slaby02f11752006-12-08 02:39:28 -08001809 tty = info->tty;
Jiri Slaby02f11752006-12-08 02:39:28 -08001810 buf_ctrl = &(zfw_ctrl->buf_ctrl[port]);
1811
1812 if (!info->throttle)
Jiri Slaby65f76a82007-10-18 03:06:22 -07001813 cyz_handle_rx(info, buf_ctrl);
1814 cyz_handle_tx(info, buf_ctrl);
Jiri Slaby02f11752006-12-08 02:39:28 -08001815 }
1816 /* poll every 'cyz_polling_cycle' period */
Jiri Slabyb7050902007-05-08 00:35:48 -07001817 expires = jiffies + cyz_polling_cycle;
Jiri Slaby02f11752006-12-08 02:39:28 -08001818 }
Jiri Slabyb7050902007-05-08 00:35:48 -07001819 mod_timer(&cyz_timerlist, expires);
Jiri Slaby02f11752006-12-08 02:39:28 -08001820} /* cyz_poll */
1821
1822#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824/********** End of block of Cyclades-Z specific code *********/
1825/***********************************************************/
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827/* This is called whenever a port becomes active;
1828 interrupts are enabled and DTR & RTS are turned on.
1829 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001830static int startup(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Jiri Slaby875b2062007-05-08 00:36:49 -07001832 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001833 unsigned long flags;
1834 int retval = 0;
1835 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07001836 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08001837 unsigned long page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Jiri Slaby02f11752006-12-08 02:39:28 -08001839 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07001840 channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Jiri Slaby02f11752006-12-08 02:39:28 -08001842 page = get_zeroed_page(GFP_KERNEL);
1843 if (!page)
1844 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001846 spin_lock_irqsave(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Jiri Slaby02f11752006-12-08 02:39:28 -08001848 if (info->flags & ASYNC_INITIALIZED) {
1849 free_page(page);
1850 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001852
1853 if (!info->type) {
1854 if (info->tty) {
1855 set_bit(TTY_IO_ERROR, &info->tty->flags);
1856 }
1857 free_page(page);
1858 goto errout;
1859 }
1860
1861 if (info->xmit_buf)
1862 free_page(page);
1863 else
1864 info->xmit_buf = (unsigned char *)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001866 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Jiri Slaby02f11752006-12-08 02:39:28 -08001868 set_line_char(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Jiri Slaby875b2062007-05-08 00:36:49 -07001870 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001871 chip = channel >> 2;
1872 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07001873 index = card->bus_index;
1874 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001877 printk(KERN_DEBUG "cyc startup card %d, chip %d, channel %d, "
1878 "base_addr %p\n",
1879 card, chip, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001880#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001881 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001882
1883 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
1884
1885 cy_writeb(base_addr + (CyRTPR << index),
1886 (info->default_timeout ? info->default_timeout : 0x02));
1887 /* 10ms rx timeout */
1888
1889 cyy_issue_cmd(base_addr, CyCHAN_CTL | CyENB_RCVR | CyENB_XMTR,
1890 index);
1891
1892 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
1893 cy_writeb(base_addr + (CyMSVR1 << index), CyRTS);
1894 cy_writeb(base_addr + (CyMSVR2 << index), CyDTR);
1895
1896#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07001897 printk(KERN_DEBUG "cyc:startup raising DTR\n");
1898 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001899 readb(base_addr + (CyMSVR1 << index)),
1900 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901#endif
1902
Jiri Slaby02f11752006-12-08 02:39:28 -08001903 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001904 readb(base_addr + (CySRER << index)) | CyRxData);
Jiri Slaby02f11752006-12-08 02:39:28 -08001905 info->flags |= ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Jiri Slaby02f11752006-12-08 02:39:28 -08001907 if (info->tty) {
1908 clear_bit(TTY_IO_ERROR, &info->tty->flags);
1909 }
1910 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1911 info->breakon = info->breakoff = 0;
1912 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
1913 info->idle_stats.in_use =
1914 info->idle_stats.recv_idle =
1915 info->idle_stats.xmit_idle = jiffies;
1916
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001917 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001918
1919 } else {
1920 struct FIRM_ID __iomem *firm_id;
1921 struct ZFW_CTRL __iomem *zfw_ctrl;
1922 struct BOARD_CTRL __iomem *board_ctrl;
1923 struct CH_CTRL __iomem *ch_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08001924
Jiri Slaby875b2062007-05-08 00:36:49 -07001925 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08001926
1927 firm_id = base_addr + ID_ADDRESS;
Jiri Slaby875b2062007-05-08 00:36:49 -07001928 if (!ISZLOADED(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001929 return -ENODEV;
1930 }
1931
Jiri Slaby875b2062007-05-08 00:36:49 -07001932 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001933 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001934 board_ctrl = &zfw_ctrl->board_ctrl;
1935 ch_ctrl = zfw_ctrl->ch_ctrl;
1936
1937#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001938 printk(KERN_DEBUG "cyc startup Z card %d, channel %d, "
1939 "base_addr %p\n", card, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001940#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001941 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001942
1943 cy_writel(&ch_ctrl[channel].op_mode, C_CH_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944#ifdef Z_WAKE
1945#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001946 cy_writel(&ch_ctrl[channel].intr_enable,
1947 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
1948 C_IN_RXNNDT | C_IN_IOCTLW | C_IN_MDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001950 cy_writel(&ch_ctrl[channel].intr_enable,
1951 C_IN_IOCTLW | C_IN_MDCD);
1952#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953#else
1954#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001955 cy_writel(&ch_ctrl[channel].intr_enable,
1956 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
1957 C_IN_RXNNDT | C_IN_MDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001959 cy_writel(&ch_ctrl[channel].intr_enable, C_IN_MDCD);
1960#endif /* CONFIG_CYZ_INTR */
1961#endif /* Z_WAKE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Jiri Slaby875b2062007-05-08 00:36:49 -07001963 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001964 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001965 printk(KERN_ERR "cyc:startup(1) retval on ttyC%d was "
1966 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Jiri Slaby02f11752006-12-08 02:39:28 -08001969 /* Flush RX buffers before raising DTR and RTS */
Jiri Slaby875b2062007-05-08 00:36:49 -07001970 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_RX, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001971 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001972 printk(KERN_ERR "cyc:startup(2) retval on ttyC%d was "
1973 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Jiri Slaby02f11752006-12-08 02:39:28 -08001976 /* set timeout !!! */
1977 /* set RTS and DTR !!! */
1978 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001979 readl(&ch_ctrl[channel].rs_control) | C_RS_RTS |
Jiri Slaby02f11752006-12-08 02:39:28 -08001980 C_RS_DTR);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001981 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001982 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001983 printk(KERN_ERR "cyc:startup(3) retval on ttyC%d was "
1984 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07001987 printk(KERN_DEBUG "cyc:startup raising Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988#endif
1989
Jiri Slaby02f11752006-12-08 02:39:28 -08001990 /* enable send, recv, modem !!! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Jiri Slaby02f11752006-12-08 02:39:28 -08001992 info->flags |= ASYNC_INITIALIZED;
1993 if (info->tty) {
1994 clear_bit(TTY_IO_ERROR, &info->tty->flags);
1995 }
1996 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1997 info->breakon = info->breakoff = 0;
1998 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
1999 info->idle_stats.in_use =
2000 info->idle_stats.recv_idle =
2001 info->idle_stats.xmit_idle = jiffies;
2002
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002003 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002007 printk(KERN_DEBUG "cyc startup done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008#endif
2009 return 0;
2010
2011errout:
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002012 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08002014} /* startup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Jiri Slaby02f11752006-12-08 02:39:28 -08002016static void start_xmit(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Jiri Slaby875b2062007-05-08 00:36:49 -07002018 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002019 unsigned long flags;
2020 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002021 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Jiri Slaby02f11752006-12-08 02:39:28 -08002023 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002024 channel = info->line - card->first_line;
2025 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002026 chip = channel >> 2;
2027 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002028 index = card->bus_index;
2029 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002031 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002032 cy_writeb(base_addr + (CyCAR << index), channel);
2033 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002034 readb(base_addr + (CySRER << index)) | CyTxRdy);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002035 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002036 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08002038 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002040 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07002041 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002042 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002043 printk(KERN_ERR "cyc:start_xmit retval on ttyC%d was "
2044 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002045 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002046 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002047#else /* CONFIG_CYZ_INTR */
2048 /* Don't have to do anything at this time */
2049#endif /* CONFIG_CYZ_INTR */
2050 }
2051} /* start_xmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053/*
2054 * This routine shuts down a serial port; interrupts are disabled,
2055 * and DTR is dropped if the hangup on close termio flag is on.
2056 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002057static void shutdown(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
Jiri Slaby875b2062007-05-08 00:36:49 -07002059 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002060 unsigned long flags;
2061 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002062 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Jiri Slaby02f11752006-12-08 02:39:28 -08002064 if (!(info->flags & ASYNC_INITIALIZED)) {
2065 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 }
2067
Jiri Slaby02f11752006-12-08 02:39:28 -08002068 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002069 channel = info->line - card->first_line;
2070 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002071 chip = channel >> 2;
2072 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002073 index = card->bus_index;
2074 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002077 printk(KERN_DEBUG "cyc shutdown Y card %d, chip %d, "
2078 "channel %d, base_addr %p\n",
2079 card, chip, channel, base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002082 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002083
2084 /* Clear delta_msr_wait queue to avoid mem leaks. */
2085 wake_up_interruptible(&info->delta_msr_wait);
2086
2087 if (info->xmit_buf) {
2088 unsigned char *temp;
2089 temp = info->xmit_buf;
2090 info->xmit_buf = NULL;
2091 free_page((unsigned long)temp);
2092 }
2093 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
2094 if (!info->tty || (info->tty->termios->c_cflag & HUPCL)) {
2095 cy_writeb(base_addr + (CyMSVR1 << index), ~CyRTS);
2096 cy_writeb(base_addr + (CyMSVR2 << index), ~CyDTR);
2097#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002098 printk(KERN_DEBUG "cyc shutdown dropping DTR\n");
2099 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002100 readb(base_addr + (CyMSVR1 << index)),
2101 readb(base_addr + (CyMSVR2 << index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08002102#endif
2103 }
2104 cyy_issue_cmd(base_addr, CyCHAN_CTL | CyDIS_RCVR, index);
2105 /* it may be appropriate to clear _XMIT at
2106 some later date (after testing)!!! */
2107
2108 if (info->tty) {
2109 set_bit(TTY_IO_ERROR, &info->tty->flags);
2110 }
2111 info->flags &= ~ASYNC_INITIALIZED;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002112 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002113 } else {
2114 struct FIRM_ID __iomem *firm_id;
2115 struct ZFW_CTRL __iomem *zfw_ctrl;
2116 struct BOARD_CTRL __iomem *board_ctrl;
2117 struct CH_CTRL __iomem *ch_ctrl;
2118 int retval;
2119
Jiri Slaby875b2062007-05-08 00:36:49 -07002120 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002121#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002122 printk(KERN_DEBUG "cyc shutdown Z card %d, channel %d, "
2123 "base_addr %p\n", card, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08002124#endif
2125
2126 firm_id = base_addr + ID_ADDRESS;
Jiri Slaby875b2062007-05-08 00:36:49 -07002127 if (!ISZLOADED(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002128 return;
2129 }
2130
Jiri Slaby875b2062007-05-08 00:36:49 -07002131 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002132 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002133 board_ctrl = &zfw_ctrl->board_ctrl;
2134 ch_ctrl = zfw_ctrl->ch_ctrl;
2135
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002136 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002137
2138 if (info->xmit_buf) {
2139 unsigned char *temp;
2140 temp = info->xmit_buf;
2141 info->xmit_buf = NULL;
2142 free_page((unsigned long)temp);
2143 }
2144
2145 if (!info->tty || (info->tty->termios->c_cflag & HUPCL)) {
2146 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002147 (__u32)(readl(&ch_ctrl[channel].rs_control) &
Jiri Slaby02f11752006-12-08 02:39:28 -08002148 ~(C_RS_RTS | C_RS_DTR)));
Jiri Slaby875b2062007-05-08 00:36:49 -07002149 retval = cyz_issue_cmd(info->card, channel,
Jiri Slaby02f11752006-12-08 02:39:28 -08002150 C_CM_IOCTLM, 0L);
2151 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002152 printk(KERN_ERR"cyc:shutdown retval on ttyC%d "
2153 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002154 }
2155#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002156 printk(KERN_DEBUG "cyc:shutdown dropping Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002157#endif
2158 }
2159
2160 if (info->tty) {
2161 set_bit(TTY_IO_ERROR, &info->tty->flags);
2162 }
2163 info->flags &= ~ASYNC_INITIALIZED;
2164
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002165 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002166 }
2167
2168#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002169 printk(KERN_DEBUG "cyc shutdown done\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002170#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002171} /* shutdown */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173/*
2174 * ------------------------------------------------------------
2175 * cy_open() and friends
2176 * ------------------------------------------------------------
2177 */
2178
2179static int
Jiri Slaby02f11752006-12-08 02:39:28 -08002180block_til_ready(struct tty_struct *tty, struct file *filp,
2181 struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
Jiri Slaby02f11752006-12-08 02:39:28 -08002183 DECLARE_WAITQUEUE(wait, current);
2184 struct cyclades_card *cinfo;
2185 unsigned long flags;
2186 int chip, channel, index;
2187 int retval;
2188 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Jiri Slaby875b2062007-05-08 00:36:49 -07002190 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002191 channel = info->line - cinfo->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Jiri Slaby02f11752006-12-08 02:39:28 -08002193 /*
2194 * If the device is in the middle of being closed, then block
2195 * until it's done, and then try again.
2196 */
2197 if (tty_hung_up_p(filp) || (info->flags & ASYNC_CLOSING)) {
Jiri Slaby2c7fea92007-05-08 00:36:51 -07002198 wait_event_interruptible(info->close_wait,
2199 !(info->flags & ASYNC_CLOSING));
Jiri Slaby096dcfc2006-12-08 02:39:30 -08002200 return (info->flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
Jiri Slaby02f11752006-12-08 02:39:28 -08002201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Jiri Slaby02f11752006-12-08 02:39:28 -08002203 /*
2204 * If non-blocking mode is set, then make the check up front
2205 * and then exit.
2206 */
2207 if ((filp->f_flags & O_NONBLOCK) || (tty->flags & (1 << TTY_IO_ERROR))) {
2208 info->flags |= ASYNC_NORMAL_ACTIVE;
2209 return 0;
2210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Jiri Slaby02f11752006-12-08 02:39:28 -08002212 /*
2213 * Block waiting for the carrier detect and the line to become
2214 * free (i.e., not in use by the callout). While we are in
2215 * this loop, info->count is dropped by one, so that
2216 * cy_close() knows when to free things. We restore it upon
2217 * exit, either normal or abnormal.
2218 */
2219 retval = 0;
2220 add_wait_queue(&info->open_wait, &wait);
2221#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002222 printk(KERN_DEBUG "cyc block_til_ready before block: ttyC%d, "
2223 "count = %d\n", info->line, info->count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002224#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002225 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002226 if (!tty_hung_up_p(filp))
2227 info->count--;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002228 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002229#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002230 printk(KERN_DEBUG "cyc block_til_ready: (%d): decrementing count to "
2231 "%d\n", current->pid, info->count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002232#endif
2233 info->blocked_open++;
2234
2235 if (!IS_CYC_Z(*cinfo)) {
2236 chip = channel >> 2;
2237 channel &= 0x03;
2238 index = cinfo->bus_index;
2239 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
2240
2241 while (1) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002242 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002243 if ((tty->termios->c_cflag & CBAUD)) {
2244 cy_writeb(base_addr + (CyCAR << index),
2245 (u_char) channel);
2246 cy_writeb(base_addr + (CyMSVR1 << index),
2247 CyRTS);
2248 cy_writeb(base_addr + (CyMSVR2 << index),
2249 CyDTR);
2250#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002251 printk(KERN_DEBUG "cyc:block_til_ready raising "
2252 "DTR\n");
2253 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002254 readb(base_addr + (CyMSVR1 << index)),
2255 readb(base_addr + (CyMSVR2 << index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08002256#endif
2257 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002258 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Jiri Slaby02f11752006-12-08 02:39:28 -08002260 set_current_state(TASK_INTERRUPTIBLE);
2261 if (tty_hung_up_p(filp) ||
2262 !(info->flags & ASYNC_INITIALIZED)) {
2263 retval = ((info->flags & ASYNC_HUP_NOTIFY) ?
2264 -EAGAIN : -ERESTARTSYS);
2265 break;
2266 }
2267
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002268 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002269 cy_writeb(base_addr + (CyCAR << index),
2270 (u_char) channel);
2271 if (!(info->flags & ASYNC_CLOSING) && (C_CLOCAL(tty) ||
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002272 (readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08002273 (CyMSVR1 << index)) & CyDCD))) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002274 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002275 break;
2276 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002277 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002278
2279 if (signal_pending(current)) {
2280 retval = -ERESTARTSYS;
2281 break;
2282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002284 printk(KERN_DEBUG "cyc block_til_ready blocking: "
2285 "ttyC%d, count = %d\n",
2286 info->line, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002288 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002290 } else {
2291 struct FIRM_ID __iomem *firm_id;
2292 struct ZFW_CTRL __iomem *zfw_ctrl;
2293 struct BOARD_CTRL __iomem *board_ctrl;
2294 struct CH_CTRL __iomem *ch_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08002295
2296 base_addr = cinfo->base_addr;
2297 firm_id = base_addr + ID_ADDRESS;
2298 if (!ISZLOADED(*cinfo)) {
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07002299 __set_current_state(TASK_RUNNING);
Jiri Slaby02f11752006-12-08 02:39:28 -08002300 remove_wait_queue(&info->open_wait, &wait);
2301 return -EINVAL;
2302 }
2303
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002304 zfw_ctrl = base_addr + (readl(&firm_id->zfwctrl_addr)& 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002305 board_ctrl = &zfw_ctrl->board_ctrl;
2306 ch_ctrl = zfw_ctrl->ch_ctrl;
2307
2308 while (1) {
2309 if ((tty->termios->c_cflag & CBAUD)) {
2310 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002311 readl(&ch_ctrl[channel].rs_control) |
2312 C_RS_RTS | C_RS_DTR);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002313 retval = cyz_issue_cmd(cinfo,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002314 channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002315 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002316 printk(KERN_ERR "cyc:block_til_ready "
2317 "retval on ttyC%d was %x\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08002318 info->line, retval);
2319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002321 printk(KERN_DEBUG "cyc:block_til_ready raising "
2322 "Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Jiri Slaby02f11752006-12-08 02:39:28 -08002326 set_current_state(TASK_INTERRUPTIBLE);
2327 if (tty_hung_up_p(filp) ||
2328 !(info->flags & ASYNC_INITIALIZED)) {
2329 retval = ((info->flags & ASYNC_HUP_NOTIFY) ?
2330 -EAGAIN : -ERESTARTSYS);
2331 break;
2332 }
2333 if (!(info->flags & ASYNC_CLOSING) && (C_CLOCAL(tty) ||
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002334 (readl(&ch_ctrl[channel].rs_status) &
Jiri Slaby02f11752006-12-08 02:39:28 -08002335 C_RS_DCD))) {
2336 break;
2337 }
2338 if (signal_pending(current)) {
2339 retval = -ERESTARTSYS;
2340 break;
2341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002343 printk(KERN_DEBUG "cyc block_til_ready blocking: "
2344 "ttyC%d, count = %d\n",
2345 info->line, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002347 schedule();
2348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 }
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07002350 __set_current_state(TASK_RUNNING);
Jiri Slaby02f11752006-12-08 02:39:28 -08002351 remove_wait_queue(&info->open_wait, &wait);
2352 if (!tty_hung_up_p(filp)) {
2353 info->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002355 printk(KERN_DEBUG "cyc:block_til_ready (%d): incrementing "
2356 "count to %d\n", current->pid, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002358 }
2359 info->blocked_open--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002361 printk(KERN_DEBUG "cyc:block_til_ready after blocking: ttyC%d, "
2362 "count = %d\n", info->line, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002364 if (retval)
2365 return retval;
2366 info->flags |= ASYNC_NORMAL_ACTIVE;
2367 return 0;
2368} /* block_til_ready */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370/*
2371 * This routine is called whenever a serial port is opened. It
2372 * performs the serial-specific initialization for the tty structure.
2373 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002374static int cy_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
Jiri Slaby02f11752006-12-08 02:39:28 -08002376 struct cyclades_port *info;
Jiri Slaby65f76a82007-10-18 03:06:22 -07002377 unsigned int i, line;
2378 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Jiri Slaby02f11752006-12-08 02:39:28 -08002380 line = tty->index;
Jiri Slaby65f76a82007-10-18 03:06:22 -07002381 if ((tty->index < 0) || (NR_PORTS <= line)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 return -ENODEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08002383 }
Jiri Slabydd025c02007-05-08 00:37:02 -07002384 for (i = 0; i < NR_CARDS; i++)
2385 if (line < cy_card[i].first_line + cy_card[i].nports &&
2386 line >= cy_card[i].first_line)
2387 break;
2388 if (i >= NR_CARDS)
2389 return -ENODEV;
2390 info = &cy_card[i].ports[line - cy_card[i].first_line];
Jiri Slaby02f11752006-12-08 02:39:28 -08002391 if (info->line < 0) {
2392 return -ENODEV;
2393 }
2394
2395 /* If the card's firmware hasn't been loaded,
2396 treat it as absent from the system. This
2397 will make the user pay attention.
2398 */
Jiri Slaby875b2062007-05-08 00:36:49 -07002399 if (IS_CYC_Z(*info->card)) {
2400 struct cyclades_card *cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002401 struct FIRM_ID __iomem *firm_id = cinfo->base_addr + ID_ADDRESS;
2402
2403 if (!ISZLOADED(*cinfo)) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002404 if (((ZE_V1 == readl(&((struct RUNTIME_9060 __iomem *)
Jiri Slaby02f11752006-12-08 02:39:28 -08002405 (cinfo->ctl_addr))->mail_box_0)) &&
2406 Z_FPGA_CHECK(*cinfo)) &&
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002407 (ZFIRM_HLT == readl(
Jiri Slaby02f11752006-12-08 02:39:28 -08002408 &firm_id->signature))) {
Jiri Slaby21719192007-05-08 00:36:42 -07002409 printk(KERN_ERR "cyc:Cyclades-Z Error: you "
2410 "need an external power supply for "
2411 "this number of ports.\nFirmware "
2412 "halted.\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002413 } else {
Jiri Slaby21719192007-05-08 00:36:42 -07002414 printk(KERN_ERR "cyc:Cyclades-Z firmware not "
2415 "yet loaded\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002416 }
2417 return -ENODEV;
2418 }
2419#ifdef CONFIG_CYZ_INTR
2420 else {
2421 /* In case this Z board is operating in interrupt mode, its
2422 interrupts should be enabled as soon as the first open
2423 happens to one of its ports. */
2424 if (!cinfo->intr_enabled) {
2425 struct ZFW_CTRL __iomem *zfw_ctrl;
2426 struct BOARD_CTRL __iomem *board_ctrl;
2427
2428 zfw_ctrl = cinfo->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002429 (readl(&firm_id->zfwctrl_addr) &
2430 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002431
2432 board_ctrl = &zfw_ctrl->board_ctrl;
2433
2434 /* Enable interrupts on the PLX chip */
2435 cy_writew(cinfo->ctl_addr + 0x68,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002436 readw(cinfo->ctl_addr + 0x68) | 0x0900);
Jiri Slaby02f11752006-12-08 02:39:28 -08002437 /* Enable interrupts on the FW */
2438 retval = cyz_issue_cmd(cinfo, 0,
2439 C_CM_IRQ_ENBL, 0L);
2440 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002441 printk(KERN_ERR "cyc:IRQ enable retval "
2442 "was %x\n", retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002443 }
2444 cinfo->nports =
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002445 (int)readl(&board_ctrl->n_channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08002446 cinfo->intr_enabled = 1;
2447 }
2448 }
2449#endif /* CONFIG_CYZ_INTR */
2450 /* Make sure this Z port really exists in hardware */
2451 if (info->line > (cinfo->first_line + cinfo->nports - 1))
2452 return -ENODEV;
2453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002455 printk(KERN_DEBUG "cyc:cy_open ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002457 tty->driver_data = info;
2458 info->tty = tty;
2459 if (serial_paranoia_check(info, tty->name, "cy_open")) {
2460 return -ENODEV;
2461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002463 printk(KERN_DEBUG "cyc:cy_open ttyC%d, count = %d\n", info->line,
2464 info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002466 info->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002468 printk(KERN_DEBUG "cyc:cy_open (%d): incrementing count to %d\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08002469 current->pid, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Jiri Slaby02f11752006-12-08 02:39:28 -08002472 /*
2473 * If the port is the middle of closing, bail out now
2474 */
2475 if (tty_hung_up_p(filp) || (info->flags & ASYNC_CLOSING)) {
Jiri Slaby2c7fea92007-05-08 00:36:51 -07002476 wait_event_interruptible(info->close_wait,
2477 !(info->flags & ASYNC_CLOSING));
Jiri Slaby096dcfc2006-12-08 02:39:30 -08002478 return (info->flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
Jiri Slaby02f11752006-12-08 02:39:28 -08002479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Jiri Slaby02f11752006-12-08 02:39:28 -08002481 /*
2482 * Start up serial port
2483 */
2484 retval = startup(info);
2485 if (retval) {
2486 return retval;
2487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Jiri Slaby02f11752006-12-08 02:39:28 -08002489 retval = block_til_ready(tty, filp, info);
2490 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002492 printk(KERN_DEBUG "cyc:cy_open returning after block_til_ready "
2493 "with %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002495 return retval;
2496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Jiri Slaby02f11752006-12-08 02:39:28 -08002498 info->throttle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002501 printk(KERN_DEBUG "cyc:cy_open done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002503 return 0;
2504} /* cy_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506/*
2507 * cy_wait_until_sent() --- wait until the transmitter is empty
2508 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002509static void cy_wait_until_sent(struct tty_struct *tty, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510{
Jiri Slaby875b2062007-05-08 00:36:49 -07002511 struct cyclades_card *card;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002512 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002513 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002514 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08002515 unsigned long orig_jiffies;
2516 int char_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Jiri Slaby02f11752006-12-08 02:39:28 -08002518 if (serial_paranoia_check(info, tty->name, "cy_wait_until_sent"))
2519 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Jiri Slaby02f11752006-12-08 02:39:28 -08002521 if (info->xmit_fifo_size == 0)
2522 return; /* Just in case.... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
Jiri Slaby02f11752006-12-08 02:39:28 -08002524 orig_jiffies = jiffies;
2525 /*
2526 * Set the check interval to be 1/5 of the estimated time to
2527 * send a single character, and make it at least 1. The check
2528 * interval should also be less than the timeout.
2529 *
2530 * Note: we have to use pretty tight timings here to satisfy
2531 * the NIST-PCTS.
2532 */
2533 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2534 char_time = char_time / 5;
2535 if (char_time <= 0)
2536 char_time = 1;
2537 if (timeout < 0)
2538 timeout = 0;
2539 if (timeout)
2540 char_time = min(char_time, timeout);
2541 /*
2542 * If the transmitter hasn't cleared in twice the approximate
2543 * amount of time to send the entire FIFO, it probably won't
2544 * ever clear. This assumes the UART isn't doing flow
2545 * control, which is currently the case. Hence, if it ever
2546 * takes longer than info->timeout, this is probably due to a
2547 * UART bug of some kind. So, we clamp the timeout parameter at
2548 * 2*info->timeout.
2549 */
2550 if (!timeout || timeout > 2 * info->timeout)
2551 timeout = 2 * info->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002553 printk(KERN_DEBUG "In cy_wait_until_sent(%d) check=%d, jiff=%lu...",
2554 timeout, char_time, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002556 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002557 channel = (info->line) - (card->first_line);
2558 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002559 chip = channel >> 2;
2560 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002561 index = card->bus_index;
2562 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002563 while (readb(base_addr + (CySRER << index)) & CyTxRdy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002565 printk(KERN_DEBUG "Not clean (jiff=%lu)...", jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002567 if (msleep_interruptible(jiffies_to_msecs(char_time)))
2568 break;
2569 if (timeout && time_after(jiffies, orig_jiffies +
2570 timeout))
2571 break;
2572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002574 /* Run one more char cycle */
2575 msleep_interruptible(jiffies_to_msecs(char_time * 5));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002577 printk(KERN_DEBUG "Clean (jiff=%lu)...done\n", jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578#endif
2579}
2580
2581/*
2582 * This routine is called when a particular tty device is closed.
2583 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002584static void cy_close(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002586 struct cyclades_port *info = tty->driver_data;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002587 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002588 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
2590#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002591 printk(KERN_DEBUG "cyc:cy_close ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592#endif
2593
Jiri Slaby02f11752006-12-08 02:39:28 -08002594 if (!info || serial_paranoia_check(info, tty->name, "cy_close")) {
2595 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002598 card = info->card;
2599
2600 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002601 /* If the TTY is being hung up, nothing to do */
2602 if (tty_hung_up_p(filp)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002603 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002604 return;
2605 }
2606#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002607 printk(KERN_DEBUG "cyc:cy_close ttyC%d, count = %d\n", info->line,
2608 info->count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002609#endif
2610 if ((tty->count == 1) && (info->count != 1)) {
2611 /*
2612 * Uh, oh. tty->count is 1, which means that the tty
2613 * structure will be freed. Info->count should always
2614 * be one in these conditions. If it's greater than
2615 * one, we've got real problems, since it means the
2616 * serial port won't be shutdown.
2617 */
Jiri Slaby21719192007-05-08 00:36:42 -07002618 printk(KERN_ERR "cyc:cy_close: bad serial port count; "
2619 "tty->count is 1, info->count is %d\n", info->count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002620 info->count = 1;
2621 }
2622#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002623 printk(KERN_DEBUG "cyc:cy_close at (%d): decrementing count to %d\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08002624 current->pid, info->count - 1);
2625#endif
2626 if (--info->count < 0) {
2627#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002628 printk(KERN_DEBUG "cyc:cyc_close setting count to 0\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002629#endif
2630 info->count = 0;
2631 }
2632 if (info->count) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002633 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002634 return;
2635 }
2636 info->flags |= ASYNC_CLOSING;
2637
2638 /*
2639 * Now we wait for the transmit buffer to clear; and we notify
2640 * the line discipline to only process XON/XOFF characters.
2641 */
2642 tty->closing = 1;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002643 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002644 if (info->closing_wait != CY_CLOSING_WAIT_NONE) {
2645 tty_wait_until_sent(tty, info->closing_wait);
2646 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002647 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002648
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002649 if (!IS_CYC_Z(*card)) {
2650 int channel = info->line - card->first_line;
2651 int index = card->bus_index;
2652 void __iomem *base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08002653 (cy_chip_offset[channel >> 2] << index);
2654 /* Stop accepting input */
2655 channel &= 0x03;
2656 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
2657 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002658 readb(base_addr + (CySRER << index)) & ~CyRxData);
Jiri Slaby02f11752006-12-08 02:39:28 -08002659 if (info->flags & ASYNC_INITIALIZED) {
2660 /* Waiting for on-board buffers to be empty before closing
2661 the port */
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002662 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002663 cy_wait_until_sent(tty, info->timeout);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002664 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002665 }
2666 } else {
2667#ifdef Z_WAKE
2668 /* Waiting for on-board buffers to be empty before closing the port */
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002669 void __iomem *base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002670 struct FIRM_ID __iomem *firm_id = base_addr + ID_ADDRESS;
2671 struct ZFW_CTRL __iomem *zfw_ctrl =
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002672 base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002673 struct CH_CTRL __iomem *ch_ctrl = zfw_ctrl->ch_ctrl;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002674 int channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08002675 int retval;
2676
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002677 if (readl(&ch_ctrl[channel].flow_status) != C_FS_TXIDLE) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002678 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLW, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002679 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002680 printk(KERN_DEBUG "cyc:cy_close retval on "
2681 "ttyC%d was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002682 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002683 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07002684 wait_for_completion_interruptible(&info->shutdown_wait);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002685 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002686 }
2687#endif
2688 }
2689
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002690 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002691 shutdown(info);
2692 if (tty->driver->flush_buffer)
2693 tty->driver->flush_buffer(tty);
2694 tty_ldisc_flush(tty);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002695 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002696
2697 tty->closing = 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08002698 info->tty = NULL;
2699 if (info->blocked_open) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002700 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002701 if (info->close_delay) {
2702 msleep_interruptible(jiffies_to_msecs
2703 (info->close_delay));
2704 }
2705 wake_up_interruptible(&info->open_wait);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002706 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002707 }
2708 info->flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
2709 wake_up_interruptible(&info->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
2711#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002712 printk(KERN_DEBUG "cyc:cy_close done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713#endif
2714
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002715 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002716} /* cy_close */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
2718/* This routine gets called when tty_write has put something into
2719 * the write_queue. The characters may come from user space or
2720 * kernel space.
2721 *
2722 * This routine will return the number of characters actually
2723 * accepted for writing.
2724 *
2725 * If the port is not already transmitting stuff, start it off by
2726 * enabling interrupts. The interrupt service routine will then
2727 * ensure that the characters are sent.
2728 * If the port is already active, there is no need to kick it.
2729 *
2730 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002731static int cy_write(struct tty_struct *tty, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002733 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002734 unsigned long flags;
2735 int c, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
2737#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002738 printk(KERN_DEBUG "cyc:cy_write ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739#endif
2740
Jiri Slaby02f11752006-12-08 02:39:28 -08002741 if (serial_paranoia_check(info, tty->name, "cy_write")) {
2742 return 0;
2743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
Jiri Slaby02f11752006-12-08 02:39:28 -08002745 if (!info->xmit_buf)
2746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002748 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002749 while (1) {
Harvey Harrison1a4e2352008-04-30 00:53:52 -07002750 c = min(count, (int)(SERIAL_XMIT_SIZE - info->xmit_cnt - 1));
2751 c = min(c, (int)(SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
Jiri Slaby02f11752006-12-08 02:39:28 -08002753 if (c <= 0)
2754 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
Jiri Slaby02f11752006-12-08 02:39:28 -08002756 memcpy(info->xmit_buf + info->xmit_head, buf, c);
2757 info->xmit_head = (info->xmit_head + c) &
2758 (SERIAL_XMIT_SIZE - 1);
2759 info->xmit_cnt += c;
2760 buf += c;
2761 count -= c;
2762 ret += c;
2763 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002764 spin_unlock_irqrestore(&info->card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Jiri Slaby02f11752006-12-08 02:39:28 -08002766 info->idle_stats.xmit_bytes += ret;
2767 info->idle_stats.xmit_idle = jiffies;
2768
2769 if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped) {
2770 start_xmit(info);
2771 }
2772 return ret;
2773} /* cy_write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
2775/*
2776 * This routine is called by the kernel to write a single
2777 * character to the tty device. If the kernel uses this routine,
2778 * it must call the flush_chars() routine (if defined) when it is
2779 * done stuffing characters into the driver. If there is no room
2780 * in the queue, the character is ignored.
2781 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002782static void cy_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002784 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002785 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
2787#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002788 printk(KERN_DEBUG "cyc:cy_put_char ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789#endif
2790
Jiri Slaby02f11752006-12-08 02:39:28 -08002791 if (serial_paranoia_check(info, tty->name, "cy_put_char"))
2792 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Jiri Slaby02f11752006-12-08 02:39:28 -08002794 if (!info->xmit_buf)
2795 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002797 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby90cc3012006-12-08 02:39:31 -08002798 if (info->xmit_cnt >= (int)(SERIAL_XMIT_SIZE - 1)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002799 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002800 return;
2801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Jiri Slaby02f11752006-12-08 02:39:28 -08002803 info->xmit_buf[info->xmit_head++] = ch;
2804 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
2805 info->xmit_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 info->idle_stats.xmit_bytes++;
2807 info->idle_stats.xmit_idle = jiffies;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002808 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002809} /* cy_put_char */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
2811/*
2812 * This routine is called by the kernel after it has written a
2813 * series of characters to the tty device using put_char().
2814 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002815static void cy_flush_chars(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002817 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002820 printk(KERN_DEBUG "cyc:cy_flush_chars ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821#endif
2822
Jiri Slaby02f11752006-12-08 02:39:28 -08002823 if (serial_paranoia_check(info, tty->name, "cy_flush_chars"))
2824 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Jiri Slaby02f11752006-12-08 02:39:28 -08002826 if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
2827 !info->xmit_buf)
2828 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
Jiri Slaby02f11752006-12-08 02:39:28 -08002830 start_xmit(info);
2831} /* cy_flush_chars */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833/*
2834 * This routine returns the numbers of characters the tty driver
2835 * will accept for queuing to be written. This number is subject
2836 * to change as output buffers get emptied, or if the output flow
2837 * control is activated.
2838 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002839static int cy_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002841 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002842 int ret;
2843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002845 printk(KERN_DEBUG "cyc:cy_write_room ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846#endif
2847
Jiri Slaby02f11752006-12-08 02:39:28 -08002848 if (serial_paranoia_check(info, tty->name, "cy_write_room"))
2849 return 0;
2850 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
2851 if (ret < 0)
2852 ret = 0;
2853 return ret;
2854} /* cy_write_room */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
Jiri Slaby02f11752006-12-08 02:39:28 -08002856static int cy_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857{
Jiri Slaby875b2062007-05-08 00:36:49 -07002858 struct cyclades_card *card;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002859 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07002860 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Jiri Slaby02f11752006-12-08 02:39:28 -08002862 if (serial_paranoia_check(info, tty->name, "cy_chars_in_buffer"))
2863 return 0;
2864
2865 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002866 channel = (info->line) - (card->first_line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
2868#ifdef Z_EXT_CHARS_IN_BUFFER
Jiri Slaby02f11752006-12-08 02:39:28 -08002869 if (!IS_CYC_Z(cy_card[card])) {
2870#endif /* Z_EXT_CHARS_IN_BUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002872 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
2873 info->line, info->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002875 return info->xmit_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876#ifdef Z_EXT_CHARS_IN_BUFFER
Jiri Slaby02f11752006-12-08 02:39:28 -08002877 } else {
Jiri Slabyad39c302007-05-08 00:35:49 -07002878 static struct FIRM_ID *firm_id;
2879 static struct ZFW_CTRL *zfw_ctrl;
2880 static struct CH_CTRL *ch_ctrl;
2881 static struct BUF_CTRL *buf_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08002882 int char_count;
Jiri Slabyad39c302007-05-08 00:35:49 -07002883 __u32 tx_put, tx_get, tx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Jiri Slaby875b2062007-05-08 00:36:49 -07002885 firm_id = card->base_addr + ID_ADDRESS;
2886 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002887 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002888 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
2889 buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002891 tx_get = readl(&buf_ctrl->tx_get);
2892 tx_put = readl(&buf_ctrl->tx_put);
2893 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
Jiri Slaby02f11752006-12-08 02:39:28 -08002894 if (tx_put >= tx_get)
2895 char_count = tx_put - tx_get;
2896 else
2897 char_count = tx_put - tx_get + tx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002899 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
2900 info->line, info->xmit_cnt + char_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901#endif
Jiri Slaby096dcfc2006-12-08 02:39:30 -08002902 return info->xmit_cnt + char_count;
Jiri Slaby02f11752006-12-08 02:39:28 -08002903 }
2904#endif /* Z_EXT_CHARS_IN_BUFFER */
2905} /* cy_chars_in_buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907/*
2908 * ------------------------------------------------------------
2909 * cy_ioctl() and friends
2910 * ------------------------------------------------------------
2911 */
2912
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07002913static void cyy_baud_calc(struct cyclades_port *info, __u32 baud)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
Jiri Slaby02f11752006-12-08 02:39:28 -08002915 int co, co_val, bpr;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07002916 __u32 cy_clock = ((info->chip_rev >= CD1400_REV_J) ? 60000000 :
Jiri Slaby02f11752006-12-08 02:39:28 -08002917 25000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Jiri Slaby02f11752006-12-08 02:39:28 -08002919 if (baud == 0) {
2920 info->tbpr = info->tco = info->rbpr = info->rco = 0;
2921 return;
2922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Jiri Slaby02f11752006-12-08 02:39:28 -08002924 /* determine which prescaler to use */
2925 for (co = 4, co_val = 2048; co; co--, co_val >>= 2) {
2926 if (cy_clock / co_val / baud > 63)
2927 break;
2928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Jiri Slaby02f11752006-12-08 02:39:28 -08002930 bpr = (cy_clock / co_val * 2 / baud + 1) / 2;
2931 if (bpr > 255)
2932 bpr = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Jiri Slaby02f11752006-12-08 02:39:28 -08002934 info->tbpr = info->rbpr = bpr;
2935 info->tco = info->rco = co;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936}
2937
2938/*
2939 * This routine finds or computes the various line characteristics.
2940 * It used to be called config_setup
2941 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002942static void set_line_char(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943{
Jiri Slaby875b2062007-05-08 00:36:49 -07002944 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002945 unsigned long flags;
2946 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002947 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08002948 unsigned cflag, iflag;
2949 unsigned short chip_number;
2950 int baud, baud_rate = 0;
2951 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
Jiri Slaby02f11752006-12-08 02:39:28 -08002953 if (!info->tty || !info->tty->termios) {
2954 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002956 if (info->line == -1) {
2957 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002959 cflag = info->tty->termios->c_cflag;
2960 iflag = info->tty->termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Jiri Slaby02f11752006-12-08 02:39:28 -08002962 /*
2963 * Set up the tty->alt_speed kludge
2964 */
2965 if (info->tty) {
2966 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
2967 info->tty->alt_speed = 57600;
2968 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
2969 info->tty->alt_speed = 115200;
2970 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
2971 info->tty->alt_speed = 230400;
2972 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
2973 info->tty->alt_speed = 460800;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Jiri Slaby02f11752006-12-08 02:39:28 -08002976 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002977 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08002978 chip_number = channel / 4;
2979
Jiri Slaby875b2062007-05-08 00:36:49 -07002980 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002981
Jiri Slaby875b2062007-05-08 00:36:49 -07002982 index = card->bus_index;
Jiri Slaby02f11752006-12-08 02:39:28 -08002983
2984 /* baud rate */
2985 baud = tty_get_baud_rate(info->tty);
2986 if (baud == 38400 && (info->flags & ASYNC_SPD_MASK) ==
2987 ASYNC_SPD_CUST) {
2988 if (info->custom_divisor)
2989 baud_rate = info->baud / info->custom_divisor;
2990 else
2991 baud_rate = info->baud;
2992 } else if (baud > CD1400_MAX_SPEED) {
2993 baud = CD1400_MAX_SPEED;
2994 }
2995 /* find the baud index */
2996 for (i = 0; i < 20; i++) {
2997 if (baud == baud_table[i]) {
2998 break;
2999 }
3000 }
3001 if (i == 20) {
3002 i = 19; /* CD1400_MAX_SPEED */
3003 }
3004
3005 if (baud == 38400 && (info->flags & ASYNC_SPD_MASK) ==
3006 ASYNC_SPD_CUST) {
3007 cyy_baud_calc(info, baud_rate);
3008 } else {
3009 if (info->chip_rev >= CD1400_REV_J) {
3010 /* It is a CD1400 rev. J or later */
3011 info->tbpr = baud_bpr_60[i]; /* Tx BPR */
3012 info->tco = baud_co_60[i]; /* Tx CO */
3013 info->rbpr = baud_bpr_60[i]; /* Rx BPR */
3014 info->rco = baud_co_60[i]; /* Rx CO */
3015 } else {
3016 info->tbpr = baud_bpr_25[i]; /* Tx BPR */
3017 info->tco = baud_co_25[i]; /* Tx CO */
3018 info->rbpr = baud_bpr_25[i]; /* Rx BPR */
3019 info->rco = baud_co_25[i]; /* Rx CO */
3020 }
3021 }
3022 if (baud_table[i] == 134) {
3023 /* get it right for 134.5 baud */
3024 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
3025 2;
3026 } else if (baud == 38400 && (info->flags & ASYNC_SPD_MASK) ==
3027 ASYNC_SPD_CUST) {
3028 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3029 baud_rate) + 2;
3030 } else if (baud_table[i]) {
3031 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3032 baud_table[i]) + 2;
3033 /* this needs to be propagated into the card info */
3034 } else {
3035 info->timeout = 0;
3036 }
3037 /* By tradition (is it a standard?) a baud rate of zero
3038 implies the line should be/has been closed. A bit
3039 later in this routine such a test is performed. */
3040
3041 /* byte size and parity */
3042 info->cor5 = 0;
3043 info->cor4 = 0;
3044 /* receive threshold */
3045 info->cor3 = (info->default_threshold ?
3046 info->default_threshold : baud_cor3[i]);
3047 info->cor2 = CyETC;
3048 switch (cflag & CSIZE) {
3049 case CS5:
3050 info->cor1 = Cy_5_BITS;
3051 break;
3052 case CS6:
3053 info->cor1 = Cy_6_BITS;
3054 break;
3055 case CS7:
3056 info->cor1 = Cy_7_BITS;
3057 break;
3058 case CS8:
3059 info->cor1 = Cy_8_BITS;
3060 break;
3061 }
3062 if (cflag & CSTOPB) {
3063 info->cor1 |= Cy_2_STOP;
3064 }
3065 if (cflag & PARENB) {
3066 if (cflag & PARODD) {
3067 info->cor1 |= CyPARITY_O;
3068 } else {
3069 info->cor1 |= CyPARITY_E;
3070 }
3071 } else {
3072 info->cor1 |= CyPARITY_NONE;
3073 }
3074
3075 /* CTS flow control flag */
3076 if (cflag & CRTSCTS) {
3077 info->flags |= ASYNC_CTS_FLOW;
3078 info->cor2 |= CyCtsAE;
3079 } else {
3080 info->flags &= ~ASYNC_CTS_FLOW;
3081 info->cor2 &= ~CyCtsAE;
3082 }
3083 if (cflag & CLOCAL)
3084 info->flags &= ~ASYNC_CHECK_CD;
3085 else
3086 info->flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
3088 /***********************************************
3089 The hardware option, CyRtsAO, presents RTS when
3090 the chip has characters to send. Since most modems
3091 use RTS as reverse (inbound) flow control, this
3092 option is not used. If inbound flow control is
3093 necessary, DTR can be programmed to provide the
3094 appropriate signals for use with a non-standard
3095 cable. Contact Marcio Saito for details.
3096 ***********************************************/
3097
Jiri Slaby02f11752006-12-08 02:39:28 -08003098 chip = channel >> 2;
3099 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003100 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003102 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003103 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
Jiri Slaby02f11752006-12-08 02:39:28 -08003105 /* tx and rx baud rate */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Jiri Slaby02f11752006-12-08 02:39:28 -08003107 cy_writeb(base_addr + (CyTCOR << index), info->tco);
3108 cy_writeb(base_addr + (CyTBPR << index), info->tbpr);
3109 cy_writeb(base_addr + (CyRCOR << index), info->rco);
3110 cy_writeb(base_addr + (CyRBPR << index), info->rbpr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Jiri Slaby02f11752006-12-08 02:39:28 -08003112 /* set line characteristics according configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Jiri Slaby02f11752006-12-08 02:39:28 -08003114 cy_writeb(base_addr + (CySCHR1 << index),
3115 START_CHAR(info->tty));
3116 cy_writeb(base_addr + (CySCHR2 << index), STOP_CHAR(info->tty));
3117 cy_writeb(base_addr + (CyCOR1 << index), info->cor1);
3118 cy_writeb(base_addr + (CyCOR2 << index), info->cor2);
3119 cy_writeb(base_addr + (CyCOR3 << index), info->cor3);
3120 cy_writeb(base_addr + (CyCOR4 << index), info->cor4);
3121 cy_writeb(base_addr + (CyCOR5 << index), info->cor5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
Jiri Slaby02f11752006-12-08 02:39:28 -08003123 cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR1ch | CyCOR2ch |
3124 CyCOR3ch, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Jiri Slaby02f11752006-12-08 02:39:28 -08003126 cy_writeb(base_addr + (CyCAR << index), (u_char) channel); /* !!! Is this needed? */
3127 cy_writeb(base_addr + (CyRTPR << index),
3128 (info->default_timeout ? info->default_timeout : 0x02));
3129 /* 10ms rx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Jiri Slaby02f11752006-12-08 02:39:28 -08003131 if (C_CLOCAL(info->tty)) {
3132 /* without modem intr */
3133 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003134 readb(base_addr + (CySRER << index)) | CyMdmCh);
Jiri Slaby02f11752006-12-08 02:39:28 -08003135 /* act on 1->0 modem transitions */
3136 if ((cflag & CRTSCTS) && info->rflow) {
3137 cy_writeb(base_addr + (CyMCOR1 << index),
3138 (CyCTS | rflow_thr[i]));
3139 } else {
3140 cy_writeb(base_addr + (CyMCOR1 << index),
3141 CyCTS);
3142 }
3143 /* act on 0->1 modem transitions */
3144 cy_writeb(base_addr + (CyMCOR2 << index), CyCTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08003146 /* without modem intr */
3147 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003148 readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08003149 (CySRER << index)) | CyMdmCh);
3150 /* act on 1->0 modem transitions */
3151 if ((cflag & CRTSCTS) && info->rflow) {
3152 cy_writeb(base_addr + (CyMCOR1 << index),
3153 (CyDSR | CyCTS | CyRI | CyDCD |
3154 rflow_thr[i]));
3155 } else {
3156 cy_writeb(base_addr + (CyMCOR1 << index),
3157 CyDSR | CyCTS | CyRI | CyDCD);
3158 }
3159 /* act on 0->1 modem transitions */
3160 cy_writeb(base_addr + (CyMCOR2 << index),
3161 CyDSR | CyCTS | CyRI | CyDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003163
3164 if (i == 0) { /* baud rate is zero, turn off line */
3165 if (info->rtsdtr_inv) {
3166 cy_writeb(base_addr + (CyMSVR1 << index),
3167 ~CyRTS);
3168 } else {
3169 cy_writeb(base_addr + (CyMSVR2 << index),
3170 ~CyDTR);
3171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003173 printk(KERN_DEBUG "cyc:set_line_char dropping DTR\n");
3174 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003175 readb(base_addr + (CyMSVR1 << index)),
3176 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003178 } else {
3179 if (info->rtsdtr_inv) {
3180 cy_writeb(base_addr + (CyMSVR1 << index),
3181 CyRTS);
3182 } else {
3183 cy_writeb(base_addr + (CyMSVR2 << index),
3184 CyDTR);
3185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003187 printk(KERN_DEBUG "cyc:set_line_char raising DTR\n");
3188 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003189 readb(base_addr + (CyMSVR1 << index)),
3190 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Jiri Slaby02f11752006-12-08 02:39:28 -08003194 if (info->tty) {
3195 clear_bit(TTY_IO_ERROR, &info->tty->flags);
3196 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003197 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08003200 struct FIRM_ID __iomem *firm_id;
3201 struct ZFW_CTRL __iomem *zfw_ctrl;
3202 struct BOARD_CTRL __iomem *board_ctrl;
3203 struct CH_CTRL __iomem *ch_ctrl;
3204 struct BUF_CTRL __iomem *buf_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07003205 __u32 sw_flow;
Jiri Slaby02f11752006-12-08 02:39:28 -08003206 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Jiri Slaby875b2062007-05-08 00:36:49 -07003208 firm_id = card->base_addr + ID_ADDRESS;
3209 if (!ISZLOADED(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003210 return;
3211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
Jiri Slaby875b2062007-05-08 00:36:49 -07003213 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003214 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003215 board_ctrl = &zfw_ctrl->board_ctrl;
3216 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
3217 buf_ctrl = &zfw_ctrl->buf_ctrl[channel];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
Jiri Slaby02f11752006-12-08 02:39:28 -08003219 /* baud rate */
3220 baud = tty_get_baud_rate(info->tty);
3221 if (baud == 38400 && (info->flags & ASYNC_SPD_MASK) ==
3222 ASYNC_SPD_CUST) {
3223 if (info->custom_divisor)
3224 baud_rate = info->baud / info->custom_divisor;
3225 else
3226 baud_rate = info->baud;
3227 } else if (baud > CYZ_MAX_SPEED) {
3228 baud = CYZ_MAX_SPEED;
3229 }
3230 cy_writel(&ch_ctrl->comm_baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
Jiri Slaby02f11752006-12-08 02:39:28 -08003232 if (baud == 134) {
3233 /* get it right for 134.5 baud */
3234 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
3235 2;
3236 } else if (baud == 38400 && (info->flags & ASYNC_SPD_MASK) ==
3237 ASYNC_SPD_CUST) {
3238 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3239 baud_rate) + 2;
3240 } else if (baud) {
3241 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3242 baud) + 2;
3243 /* this needs to be propagated into the card info */
3244 } else {
3245 info->timeout = 0;
3246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Jiri Slaby02f11752006-12-08 02:39:28 -08003248 /* byte size and parity */
3249 switch (cflag & CSIZE) {
3250 case CS5:
3251 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS5);
3252 break;
3253 case CS6:
3254 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS6);
3255 break;
3256 case CS7:
3257 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS7);
3258 break;
3259 case CS8:
3260 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS8);
3261 break;
3262 }
3263 if (cflag & CSTOPB) {
3264 cy_writel(&ch_ctrl->comm_data_l,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003265 readl(&ch_ctrl->comm_data_l) | C_DL_2STOP);
Jiri Slaby02f11752006-12-08 02:39:28 -08003266 } else {
3267 cy_writel(&ch_ctrl->comm_data_l,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003268 readl(&ch_ctrl->comm_data_l) | C_DL_1STOP);
Jiri Slaby02f11752006-12-08 02:39:28 -08003269 }
3270 if (cflag & PARENB) {
3271 if (cflag & PARODD) {
3272 cy_writel(&ch_ctrl->comm_parity, C_PR_ODD);
3273 } else {
3274 cy_writel(&ch_ctrl->comm_parity, C_PR_EVEN);
3275 }
3276 } else {
3277 cy_writel(&ch_ctrl->comm_parity, C_PR_NONE);
3278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Jiri Slaby02f11752006-12-08 02:39:28 -08003280 /* CTS flow control flag */
3281 if (cflag & CRTSCTS) {
3282 cy_writel(&ch_ctrl->hw_flow,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003283 readl(&ch_ctrl->hw_flow) | C_RS_CTS | C_RS_RTS);
Jiri Slaby02f11752006-12-08 02:39:28 -08003284 } else {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003285 cy_writel(&ch_ctrl->hw_flow, readl(&ch_ctrl->hw_flow) &
3286 ~(C_RS_CTS | C_RS_RTS));
Jiri Slaby02f11752006-12-08 02:39:28 -08003287 }
3288 /* As the HW flow control is done in firmware, the driver
3289 doesn't need to care about it */
3290 info->flags &= ~ASYNC_CTS_FLOW;
3291
3292 /* XON/XOFF/XANY flow control flags */
3293 sw_flow = 0;
3294 if (iflag & IXON) {
3295 sw_flow |= C_FL_OXX;
3296 if (iflag & IXANY)
3297 sw_flow |= C_FL_OIXANY;
3298 }
3299 cy_writel(&ch_ctrl->sw_flow, sw_flow);
3300
Jiri Slaby875b2062007-05-08 00:36:49 -07003301 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003302 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003303 printk(KERN_ERR "cyc:set_line_char retval on ttyC%d "
3304 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003305 }
3306
3307 /* CD sensitivity */
3308 if (cflag & CLOCAL) {
3309 info->flags &= ~ASYNC_CHECK_CD;
3310 } else {
3311 info->flags |= ASYNC_CHECK_CD;
3312 }
3313
3314 if (baud == 0) { /* baud rate is zero, turn off line */
3315 cy_writel(&ch_ctrl->rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003316 readl(&ch_ctrl->rs_control) & ~C_RS_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003318 printk(KERN_DEBUG "cyc:set_line_char dropping Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003320 } else {
3321 cy_writel(&ch_ctrl->rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003322 readl(&ch_ctrl->rs_control) | C_RS_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003324 printk(KERN_DEBUG "cyc:set_line_char raising Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
Jiri Slaby875b2062007-05-08 00:36:49 -07003328 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM,0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003329 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003330 printk(KERN_ERR "cyc:set_line_char(2) retval on ttyC%d "
3331 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
Jiri Slaby02f11752006-12-08 02:39:28 -08003334 if (info->tty) {
3335 clear_bit(TTY_IO_ERROR, &info->tty->flags);
3336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003338} /* set_line_char */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
3340static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003341get_serial_info(struct cyclades_port *info,
3342 struct serial_struct __user * retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343{
Jiri Slaby02f11752006-12-08 02:39:28 -08003344 struct serial_struct tmp;
Jiri Slaby875b2062007-05-08 00:36:49 -07003345 struct cyclades_card *cinfo = info->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Jiri Slaby02f11752006-12-08 02:39:28 -08003347 if (!retinfo)
3348 return -EFAULT;
3349 memset(&tmp, 0, sizeof(tmp));
3350 tmp.type = info->type;
3351 tmp.line = info->line;
Jiri Slaby875b2062007-05-08 00:36:49 -07003352 tmp.port = (info->card - cy_card) * 0x100 + info->line -
3353 cinfo->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08003354 tmp.irq = cinfo->irq;
3355 tmp.flags = info->flags;
3356 tmp.close_delay = info->close_delay;
Andrew Mortond5dedf92007-03-05 00:30:04 -08003357 tmp.closing_wait = info->closing_wait;
Jiri Slaby02f11752006-12-08 02:39:28 -08003358 tmp.baud_base = info->baud;
3359 tmp.custom_divisor = info->custom_divisor;
3360 tmp.hub6 = 0; /*!!! */
3361 return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
3362} /* get_serial_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363
3364static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003365set_serial_info(struct cyclades_port *info,
3366 struct serial_struct __user * new_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367{
Jiri Slaby02f11752006-12-08 02:39:28 -08003368 struct serial_struct new_serial;
3369 struct cyclades_port old_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
Jiri Slaby02f11752006-12-08 02:39:28 -08003371 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
3372 return -EFAULT;
3373 old_info = *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374
Jiri Slaby02f11752006-12-08 02:39:28 -08003375 if (!capable(CAP_SYS_ADMIN)) {
3376 if (new_serial.close_delay != info->close_delay ||
3377 new_serial.baud_base != info->baud ||
3378 (new_serial.flags & ASYNC_FLAGS &
3379 ~ASYNC_USR_MASK) !=
3380 (info->flags & ASYNC_FLAGS & ~ASYNC_USR_MASK))
3381 return -EPERM;
3382 info->flags = (info->flags & ~ASYNC_USR_MASK) |
3383 (new_serial.flags & ASYNC_USR_MASK);
3384 info->baud = new_serial.baud_base;
3385 info->custom_divisor = new_serial.custom_divisor;
3386 goto check_and_exit;
3387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
Jiri Slaby02f11752006-12-08 02:39:28 -08003389 /*
3390 * OK, past this point, all the error checking has been done.
3391 * At this point, we start making changes.....
3392 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
Jiri Slaby02f11752006-12-08 02:39:28 -08003394 info->baud = new_serial.baud_base;
3395 info->custom_divisor = new_serial.custom_divisor;
3396 info->flags = (info->flags & ~ASYNC_FLAGS) |
3397 (new_serial.flags & ASYNC_FLAGS);
3398 info->close_delay = new_serial.close_delay * HZ / 100;
3399 info->closing_wait = new_serial.closing_wait * HZ / 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400
3401check_and_exit:
Jiri Slaby02f11752006-12-08 02:39:28 -08003402 if (info->flags & ASYNC_INITIALIZED) {
3403 set_line_char(info);
3404 return 0;
3405 } else {
3406 return startup(info);
3407 }
3408} /* set_serial_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409
3410/*
3411 * get_lsr_info - get line status register info
3412 *
3413 * Purpose: Let user call ioctl() to get info when the UART physically
3414 * is emptied. On bus types like RS485, the transmitter must
3415 * release the bus after transmitting. This must be done when
3416 * the transmit shift register is empty, not be done when the
3417 * transmit holding register is empty. This functionality
3418 * allows an RS485 driver to be written in user space.
3419 */
Jiri Slaby02f11752006-12-08 02:39:28 -08003420static int get_lsr_info(struct cyclades_port *info, unsigned int __user * value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421{
Jiri Slaby875b2062007-05-08 00:36:49 -07003422 struct cyclades_card *card;
3423 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003424 unsigned char status;
3425 unsigned int result;
3426 unsigned long flags;
3427 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
Jiri Slaby02f11752006-12-08 02:39:28 -08003429 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003430 channel = (info->line) - (card->first_line);
3431 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003432 chip = channel >> 2;
3433 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003434 index = card->bus_index;
3435 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003437 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003438 status = readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08003439 (CyTxRdy | CyTxMpty);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003440 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003441 result = (status ? 0 : TIOCSER_TEMT);
3442 } else {
3443 /* Not supported yet */
3444 return -EINVAL;
3445 }
3446 return put_user(result, (unsigned long __user *)value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447}
3448
Jiri Slaby02f11752006-12-08 02:39:28 -08003449static int cy_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003451 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07003452 struct cyclades_card *card;
3453 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003454 void __iomem *base_addr;
3455 unsigned long flags;
3456 unsigned char status;
3457 unsigned long lstatus;
3458 unsigned int result;
3459 struct FIRM_ID __iomem *firm_id;
3460 struct ZFW_CTRL __iomem *zfw_ctrl;
3461 struct BOARD_CTRL __iomem *board_ctrl;
3462 struct CH_CTRL __iomem *ch_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
Jiri Slaby02f11752006-12-08 02:39:28 -08003464 if (serial_paranoia_check(info, tty->name, __FUNCTION__))
3465 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
Alan Cox7b130c02008-04-30 00:53:16 -07003467 lock_kernel();
3468
Jiri Slaby02f11752006-12-08 02:39:28 -08003469 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003470 channel = info->line - card->first_line;
3471 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003472 chip = channel >> 2;
3473 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003474 index = card->bus_index;
3475 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003477 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003478 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003479 status = readb(base_addr + (CyMSVR1 << index));
3480 status |= readb(base_addr + (CyMSVR2 << index));
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003481 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
Jiri Slaby02f11752006-12-08 02:39:28 -08003483 if (info->rtsdtr_inv) {
3484 result = ((status & CyRTS) ? TIOCM_DTR : 0) |
3485 ((status & CyDTR) ? TIOCM_RTS : 0);
3486 } else {
3487 result = ((status & CyRTS) ? TIOCM_RTS : 0) |
3488 ((status & CyDTR) ? TIOCM_DTR : 0);
3489 }
3490 result |= ((status & CyDCD) ? TIOCM_CAR : 0) |
3491 ((status & CyRI) ? TIOCM_RNG : 0) |
3492 ((status & CyDSR) ? TIOCM_DSR : 0) |
3493 ((status & CyCTS) ? TIOCM_CTS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 } else {
Jiri Slaby875b2062007-05-08 00:36:49 -07003495 base_addr = card->base_addr;
3496 firm_id = card->base_addr + ID_ADDRESS;
3497 if (ISZLOADED(*card)) {
3498 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003499 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003500 board_ctrl = &zfw_ctrl->board_ctrl;
3501 ch_ctrl = zfw_ctrl->ch_ctrl;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003502 lstatus = readl(&ch_ctrl[channel].rs_status);
Jiri Slaby02f11752006-12-08 02:39:28 -08003503 result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) |
3504 ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) |
3505 ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) |
3506 ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) |
3507 ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) |
3508 ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0);
3509 } else {
3510 result = 0;
Alan Cox7b130c02008-04-30 00:53:16 -07003511 unlock_kernel();
Jiri Slaby02f11752006-12-08 02:39:28 -08003512 return -ENODEV;
3513 }
3514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 }
Alan Cox7b130c02008-04-30 00:53:16 -07003516 unlock_kernel();
Jiri Slaby02f11752006-12-08 02:39:28 -08003517 return result;
3518} /* cy_tiomget */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
3520static int
3521cy_tiocmset(struct tty_struct *tty, struct file *file,
Jiri Slaby02f11752006-12-08 02:39:28 -08003522 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003524 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07003525 struct cyclades_card *card;
3526 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003527 void __iomem *base_addr;
3528 unsigned long flags;
3529 struct FIRM_ID __iomem *firm_id;
3530 struct ZFW_CTRL __iomem *zfw_ctrl;
3531 struct BOARD_CTRL __iomem *board_ctrl;
3532 struct CH_CTRL __iomem *ch_ctrl;
3533 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Jiri Slaby02f11752006-12-08 02:39:28 -08003535 if (serial_paranoia_check(info, tty->name, __FUNCTION__))
3536 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Jiri Slaby02f11752006-12-08 02:39:28 -08003538 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003539 channel = (info->line) - (card->first_line);
3540 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003541 chip = channel >> 2;
3542 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003543 index = card->bus_index;
3544 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
Jiri Slaby02f11752006-12-08 02:39:28 -08003546 if (set & TIOCM_RTS) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003547 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003548 cy_writeb(base_addr + (CyCAR << index),
3549 (u_char) channel);
3550 if (info->rtsdtr_inv) {
3551 cy_writeb(base_addr + (CyMSVR2 << index),
3552 CyDTR);
3553 } else {
3554 cy_writeb(base_addr + (CyMSVR1 << index),
3555 CyRTS);
3556 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003557 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003558 }
3559 if (clear & TIOCM_RTS) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003560 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003561 cy_writeb(base_addr + (CyCAR << index),
3562 (u_char) channel);
3563 if (info->rtsdtr_inv) {
3564 cy_writeb(base_addr + (CyMSVR2 << index),
3565 ~CyDTR);
3566 } else {
3567 cy_writeb(base_addr + (CyMSVR1 << index),
3568 ~CyRTS);
3569 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003570 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003571 }
3572 if (set & TIOCM_DTR) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003573 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003574 cy_writeb(base_addr + (CyCAR << index),
3575 (u_char) channel);
3576 if (info->rtsdtr_inv) {
3577 cy_writeb(base_addr + (CyMSVR1 << index),
3578 CyRTS);
3579 } else {
3580 cy_writeb(base_addr + (CyMSVR2 << index),
3581 CyDTR);
3582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003584 printk(KERN_DEBUG "cyc:set_modem_info raising DTR\n");
3585 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003586 readb(base_addr + (CyMSVR1 << index)),
3587 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003589 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003590 }
3591 if (clear & TIOCM_DTR) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003592 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003593 cy_writeb(base_addr + (CyCAR << index),
3594 (u_char) channel);
3595 if (info->rtsdtr_inv) {
3596 cy_writeb(base_addr + (CyMSVR1 << index),
3597 ~CyRTS);
3598 } else {
3599 cy_writeb(base_addr + (CyMSVR2 << index),
3600 ~CyDTR);
3601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602
3603#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003604 printk(KERN_DEBUG "cyc:set_modem_info dropping DTR\n");
3605 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003606 readb(base_addr + (CyMSVR1 << index)),
3607 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003609 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003610 }
3611 } else {
Jiri Slaby875b2062007-05-08 00:36:49 -07003612 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08003613
Jiri Slaby875b2062007-05-08 00:36:49 -07003614 firm_id = card->base_addr + ID_ADDRESS;
3615 if (ISZLOADED(*card)) {
3616 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003617 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003618 board_ctrl = &zfw_ctrl->board_ctrl;
3619 ch_ctrl = zfw_ctrl->ch_ctrl;
3620
3621 if (set & TIOCM_RTS) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003622 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003623 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003624 readl(&ch_ctrl[channel].rs_control) |
3625 C_RS_RTS);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003626 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003627 }
3628 if (clear & TIOCM_RTS) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003629 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003630 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003631 readl(&ch_ctrl[channel].rs_control) &
3632 ~C_RS_RTS);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003633 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003634 }
3635 if (set & TIOCM_DTR) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003636 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003637 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003638 readl(&ch_ctrl[channel].rs_control) |
3639 C_RS_DTR);
Jiri Slaby02f11752006-12-08 02:39:28 -08003640#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003641 printk(KERN_DEBUG "cyc:set_modem_info raising "
3642 "Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08003643#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003644 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003645 }
3646 if (clear & TIOCM_DTR) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003647 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003648 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003649 readl(&ch_ctrl[channel].rs_control) &
3650 ~C_RS_DTR);
Jiri Slaby02f11752006-12-08 02:39:28 -08003651#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003652 printk(KERN_DEBUG "cyc:set_modem_info clearing "
3653 "Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08003654#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003655 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003656 }
3657 } else {
3658 return -ENODEV;
3659 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003660 spin_lock_irqsave(&card->card_lock, flags);
3661 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003662 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003663 printk(KERN_ERR "cyc:set_modem_info retval on ttyC%d "
3664 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003665 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003666 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003668 return 0;
3669} /* cy_tiocmset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
3671/*
3672 * cy_break() --- routine which turns the break handling on or off
3673 */
Jiri Slaby02f11752006-12-08 02:39:28 -08003674static void cy_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003676 struct cyclades_port *info = tty->driver_data;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003677 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003678 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
Jiri Slaby02f11752006-12-08 02:39:28 -08003680 if (serial_paranoia_check(info, tty->name, "cy_break"))
3681 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003683 card = info->card;
3684
3685 spin_lock_irqsave(&card->card_lock, flags);
3686 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003687 /* Let the transmit ISR take care of this (since it
3688 requires stuffing characters into the output stream).
3689 */
3690 if (break_state == -1) {
3691 if (!info->breakon) {
3692 info->breakon = 1;
3693 if (!info->xmit_cnt) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003694 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003695 start_xmit(info);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003696 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003697 }
3698 }
3699 } else {
3700 if (!info->breakoff) {
3701 info->breakoff = 1;
3702 if (!info->xmit_cnt) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003703 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003704 start_xmit(info);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003705 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003706 }
3707 }
3708 }
3709 } else {
3710 int retval;
3711
3712 if (break_state == -1) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003713 retval = cyz_issue_cmd(card,
3714 info->line - card->first_line,
Jiri Slaby02f11752006-12-08 02:39:28 -08003715 C_CM_SET_BREAK, 0L);
3716 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003717 printk(KERN_ERR "cyc:cy_break (set) retval on "
3718 "ttyC%d was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003719 }
3720 } else {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003721 retval = cyz_issue_cmd(card,
3722 info->line - card->first_line,
Jiri Slaby02f11752006-12-08 02:39:28 -08003723 C_CM_CLR_BREAK, 0L);
3724 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003725 printk(KERN_DEBUG "cyc:cy_break (clr) retval "
3726 "on ttyC%d was %x\n", info->line,
3727 retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003728 }
3729 }
3730 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003731 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003732} /* cy_break */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
3734static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003735get_mon_info(struct cyclades_port *info, struct cyclades_monitor __user * mon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Jiri Slaby02f11752006-12-08 02:39:28 -08003738 if (copy_to_user(mon, &info->mon, sizeof(struct cyclades_monitor)))
3739 return -EFAULT;
3740 info->mon.int_count = 0;
3741 info->mon.char_count = 0;
3742 info->mon.char_max = 0;
3743 info->mon.char_last = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003745} /* get_mon_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746
Jiri Slaby02f11752006-12-08 02:39:28 -08003747static int set_threshold(struct cyclades_port *info, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748{
Jiri Slaby875b2062007-05-08 00:36:49 -07003749 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003750 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003751 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003752 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
Jiri Slaby02f11752006-12-08 02:39:28 -08003754 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003755 channel = info->line - card->first_line;
3756 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003757 chip = channel >> 2;
3758 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003759 index = card->bus_index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003760 base_addr =
Jiri Slaby875b2062007-05-08 00:36:49 -07003761 card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
Jiri Slaby02f11752006-12-08 02:39:28 -08003763 info->cor3 &= ~CyREC_FIFO;
3764 info->cor3 |= value & CyREC_FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003766 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003767 cy_writeb(base_addr + (CyCOR3 << index), info->cor3);
3768 cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR3ch, index);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003769 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003772} /* set_threshold */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
3774static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003775get_threshold(struct cyclades_port *info, unsigned long __user * value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776{
Jiri Slaby875b2062007-05-08 00:36:49 -07003777 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003778 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003779 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003780 unsigned long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781
Jiri Slaby02f11752006-12-08 02:39:28 -08003782 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003783 channel = info->line - card->first_line;
3784 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003785 chip = channel >> 2;
3786 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003787 index = card->bus_index;
3788 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003789
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003790 tmp = readb(base_addr + (CyCOR3 << index)) & CyREC_FIFO;
Jiri Slaby02f11752006-12-08 02:39:28 -08003791 return put_user(tmp, value);
Jiri Slaby02f11752006-12-08 02:39:28 -08003792 }
Jiri Slabyf7429032007-05-08 00:36:59 -07003793 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003794} /* get_threshold */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795
3796static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003797set_default_threshold(struct cyclades_port *info, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798{
Jiri Slaby02f11752006-12-08 02:39:28 -08003799 info->default_threshold = value & 0x0f;
3800 return 0;
3801} /* set_default_threshold */
3802
3803static int
3804get_default_threshold(struct cyclades_port *info, unsigned long __user * value)
3805{
3806 return put_user(info->default_threshold, value);
3807} /* get_default_threshold */
3808
3809static int set_timeout(struct cyclades_port *info, unsigned long value)
3810{
Jiri Slaby875b2062007-05-08 00:36:49 -07003811 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003812 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003813 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003814 unsigned long flags;
3815
3816 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003817 channel = info->line - card->first_line;
3818 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003819 chip = channel >> 2;
3820 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003821 index = card->bus_index;
3822 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003823
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003824 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003825 cy_writeb(base_addr + (CyRTPR << index), value & 0xff);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003826 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003827 }
3828 return 0;
3829} /* set_timeout */
3830
3831static int get_timeout(struct cyclades_port *info, unsigned long __user * value)
3832{
Jiri Slaby875b2062007-05-08 00:36:49 -07003833 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003834 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003835 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003836 unsigned long tmp;
3837
3838 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003839 channel = info->line - card->first_line;
3840 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003841 chip = channel >> 2;
3842 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003843 index = card->bus_index;
3844 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003845
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003846 tmp = readb(base_addr + (CyRTPR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08003847 return put_user(tmp, value);
Jiri Slaby02f11752006-12-08 02:39:28 -08003848 }
Jiri Slabyf7429032007-05-08 00:36:59 -07003849 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003850} /* get_timeout */
3851
3852static int set_default_timeout(struct cyclades_port *info, unsigned long value)
3853{
3854 info->default_timeout = value & 0xff;
3855 return 0;
3856} /* set_default_timeout */
3857
3858static int
3859get_default_timeout(struct cyclades_port *info, unsigned long __user * value)
3860{
3861 return put_user(info->default_timeout, value);
3862} /* get_default_timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
3864/*
3865 * This routine allows the tty driver to implement device-
3866 * specific ioctl's. If the ioctl number passed in cmd is
3867 * not recognized by the driver, it should return ENOIOCTLCMD.
3868 */
3869static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003870cy_ioctl(struct tty_struct *tty, struct file *file,
3871 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003873 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08003874 struct cyclades_icount cprev, cnow; /* kernel counter temps */
3875 struct serial_icounter_struct __user *p_cuser; /* user space */
3876 int ret_val = 0;
3877 unsigned long flags;
3878 void __user *argp = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
Jiri Slaby02f11752006-12-08 02:39:28 -08003880 if (serial_paranoia_check(info, tty->name, "cy_ioctl"))
3881 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
3883#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07003884 printk(KERN_DEBUG "cyc:cy_ioctl ttyC%d, cmd = %x arg = %lx\n",
3885 info->line, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886#endif
Alan Cox7b130c02008-04-30 00:53:16 -07003887 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Jiri Slaby02f11752006-12-08 02:39:28 -08003889 switch (cmd) {
3890 case CYGETMON:
3891 ret_val = get_mon_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08003893 case CYGETTHRESH:
3894 ret_val = get_threshold(info, argp);
3895 break;
3896 case CYSETTHRESH:
3897 ret_val = set_threshold(info, arg);
3898 break;
3899 case CYGETDEFTHRESH:
3900 ret_val = get_default_threshold(info, argp);
3901 break;
3902 case CYSETDEFTHRESH:
3903 ret_val = set_default_threshold(info, arg);
3904 break;
3905 case CYGETTIMEOUT:
3906 ret_val = get_timeout(info, argp);
3907 break;
3908 case CYSETTIMEOUT:
3909 ret_val = set_timeout(info, arg);
3910 break;
3911 case CYGETDEFTIMEOUT:
3912 ret_val = get_default_timeout(info, argp);
3913 break;
3914 case CYSETDEFTIMEOUT:
3915 ret_val = set_default_timeout(info, arg);
3916 break;
3917 case CYSETRFLOW:
3918 info->rflow = (int)arg;
3919 ret_val = 0;
3920 break;
3921 case CYGETRFLOW:
3922 ret_val = info->rflow;
3923 break;
3924 case CYSETRTSDTR_INV:
3925 info->rtsdtr_inv = (int)arg;
3926 ret_val = 0;
3927 break;
3928 case CYGETRTSDTR_INV:
3929 ret_val = info->rtsdtr_inv;
3930 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 case CYGETCD1400VER:
Jiri Slaby02f11752006-12-08 02:39:28 -08003932 ret_val = info->chip_rev;
3933 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934#ifndef CONFIG_CYZ_INTR
3935 case CYZSETPOLLCYCLE:
Jiri Slaby02f11752006-12-08 02:39:28 -08003936 cyz_polling_cycle = (arg * HZ) / 1000;
3937 ret_val = 0;
3938 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 case CYZGETPOLLCYCLE:
Jiri Slaby02f11752006-12-08 02:39:28 -08003940 ret_val = (cyz_polling_cycle * 1000) / HZ;
3941 break;
3942#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 case CYSETWAIT:
Jiri Slaby02f11752006-12-08 02:39:28 -08003944 info->closing_wait = (unsigned short)arg *HZ / 100;
3945 ret_val = 0;
3946 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 case CYGETWAIT:
Jiri Slaby02f11752006-12-08 02:39:28 -08003948 ret_val = info->closing_wait / (HZ / 100);
3949 break;
3950 case TIOCGSERIAL:
3951 ret_val = get_serial_info(info, argp);
3952 break;
3953 case TIOCSSERIAL:
3954 ret_val = set_serial_info(info, argp);
3955 break;
3956 case TIOCSERGETLSR: /* Get line status register */
3957 ret_val = get_lsr_info(info, argp);
3958 break;
3959 /*
3960 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
3961 * - mask passed in arg for lines of interest
3962 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
3963 * Caller should use TIOCGICOUNT to see which one it was
3964 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 case TIOCMIWAIT:
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003966 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003967 /* note the counters on entry */
Jiri Slaby2c7fea92007-05-08 00:36:51 -07003968 cnow = info->icount;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003969 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07003970 ret_val = wait_event_interruptible(info->delta_msr_wait, ({
3971 cprev = cnow;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003972 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003973 cnow = info->icount; /* atomic copy */
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003974 spin_unlock_irqrestore(&info->card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975
Jiri Slaby2c7fea92007-05-08 00:36:51 -07003976 ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
3977 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
3978 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
3979 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts));
3980 }));
3981 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08003982
3983 /*
3984 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
3985 * Return: write counters to the user passed counter struct
3986 * NB: both 1->0 and 0->1 transitions are counted except for
3987 * RI where only 0->1 is counted.
3988 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 case TIOCGICOUNT:
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003990 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003991 cnow = info->icount;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003992 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003993 p_cuser = argp;
3994 ret_val = put_user(cnow.cts, &p_cuser->cts);
3995 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07003996 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08003997 ret_val = put_user(cnow.dsr, &p_cuser->dsr);
3998 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07003999 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004000 ret_val = put_user(cnow.rng, &p_cuser->rng);
4001 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004002 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004003 ret_val = put_user(cnow.dcd, &p_cuser->dcd);
4004 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004005 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004006 ret_val = put_user(cnow.rx, &p_cuser->rx);
4007 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004008 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004009 ret_val = put_user(cnow.tx, &p_cuser->tx);
4010 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004011 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004012 ret_val = put_user(cnow.frame, &p_cuser->frame);
4013 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004014 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004015 ret_val = put_user(cnow.overrun, &p_cuser->overrun);
4016 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004017 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004018 ret_val = put_user(cnow.parity, &p_cuser->parity);
4019 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004020 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004021 ret_val = put_user(cnow.brk, &p_cuser->brk);
4022 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004023 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004024 ret_val = put_user(cnow.buf_overrun, &p_cuser->buf_overrun);
4025 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004026 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004027 ret_val = 0;
4028 break;
4029 default:
4030 ret_val = -ENOIOCTLCMD;
4031 }
Alan Cox7b130c02008-04-30 00:53:16 -07004032 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
4034#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004035 printk(KERN_DEBUG "cyc:cy_ioctl done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004037 return ret_val;
4038} /* cy_ioctl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
4040/*
4041 * This routine allows the tty driver to be notified when
4042 * device's termios settings have changed. Note that a
4043 * well-designed tty driver should be prepared to accept the case
4044 * where old == NULL, and try to do something rational.
4045 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004046static void cy_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004048 struct cyclades_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
4050#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004051 printk(KERN_DEBUG "cyc:cy_set_termios ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052#endif
4053
Jiri Slaby02f11752006-12-08 02:39:28 -08004054 set_line_char(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
Jiri Slaby02f11752006-12-08 02:39:28 -08004056 if ((old_termios->c_cflag & CRTSCTS) &&
4057 !(tty->termios->c_cflag & CRTSCTS)) {
4058 tty->hw_stopped = 0;
4059 cy_start(tty);
4060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061#if 0
Jiri Slaby02f11752006-12-08 02:39:28 -08004062 /*
4063 * No need to wake up processes in open wait, since they
4064 * sample the CLOCAL flag once, and don't recheck it.
4065 * XXX It's not clear whether the current behavior is correct
4066 * or not. Hence, this may change.....
4067 */
4068 if (!(old_termios->c_cflag & CLOCAL) &&
4069 (tty->termios->c_cflag & CLOCAL))
4070 wake_up_interruptible(&info->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004072} /* cy_set_termios */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073
4074/* This function is used to send a high-priority XON/XOFF character to
4075 the device.
4076*/
Jiri Slaby02f11752006-12-08 02:39:28 -08004077static void cy_send_xchar(struct tty_struct *tty, char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004079 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004080 struct cyclades_card *card;
4081 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
Jiri Slaby02f11752006-12-08 02:39:28 -08004083 if (serial_paranoia_check(info, tty->name, "cy_send_xchar"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 return;
4085
Jiri Slaby02f11752006-12-08 02:39:28 -08004086 info->x_char = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
4088 if (ch)
Jiri Slaby02f11752006-12-08 02:39:28 -08004089 cy_start(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090
4091 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07004092 channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093
Jiri Slaby875b2062007-05-08 00:36:49 -07004094 if (IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004095 if (ch == STOP_CHAR(tty))
Jiri Slaby875b2062007-05-08 00:36:49 -07004096 cyz_issue_cmd(card, channel, C_CM_SENDXOFF, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08004097 else if (ch == START_CHAR(tty))
Jiri Slaby875b2062007-05-08 00:36:49 -07004098 cyz_issue_cmd(card, channel, C_CM_SENDXON, 0L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 }
4100}
4101
4102/* This routine is called by the upper-layer tty layer to signal
4103 that incoming characters should be throttled because the input
4104 buffers are close to full.
4105 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004106static void cy_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004108 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004109 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004110 unsigned long flags;
4111 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07004112 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
4114#ifdef CY_DEBUG_THROTTLE
Jiri Slaby02f11752006-12-08 02:39:28 -08004115 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
Jiri Slaby21719192007-05-08 00:36:42 -07004117 printk(KERN_DEBUG "cyc:throttle %s: %ld...ttyC%d\n", tty_name(tty, buf),
Jiri Slaby02f11752006-12-08 02:39:28 -08004118 tty->ldisc.chars_in_buffer(tty), info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119#endif
4120
Jiri Slaby02f11752006-12-08 02:39:28 -08004121 if (serial_paranoia_check(info, tty->name, "cy_throttle")) {
4122 return;
4123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124
Jiri Slaby02f11752006-12-08 02:39:28 -08004125 card = info->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Jiri Slaby02f11752006-12-08 02:39:28 -08004127 if (I_IXOFF(tty)) {
Jiri Slaby875b2062007-05-08 00:36:49 -07004128 if (!IS_CYC_Z(*card))
Jiri Slaby02f11752006-12-08 02:39:28 -08004129 cy_send_xchar(tty, STOP_CHAR(tty));
4130 else
4131 info->throttle = 1;
4132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
Jiri Slaby02f11752006-12-08 02:39:28 -08004134 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby875b2062007-05-08 00:36:49 -07004135 channel = info->line - card->first_line;
4136 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004137 chip = channel >> 2;
4138 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07004139 index = card->bus_index;
4140 base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004141 (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004143 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004144 cy_writeb(base_addr + (CyCAR << index),
4145 (u_char) channel);
4146 if (info->rtsdtr_inv) {
4147 cy_writeb(base_addr + (CyMSVR2 << index),
4148 ~CyDTR);
4149 } else {
4150 cy_writeb(base_addr + (CyMSVR1 << index),
4151 ~CyRTS);
4152 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004153 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004154 } else {
4155 info->throttle = 1;
4156 }
4157 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004158} /* cy_throttle */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159
4160/*
4161 * This routine notifies the tty driver that it should signal
4162 * that characters can now be sent to the tty without fear of
4163 * overrunning the input buffers of the line disciplines.
4164 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004165static void cy_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004167 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004168 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004169 unsigned long flags;
4170 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07004171 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172
4173#ifdef CY_DEBUG_THROTTLE
Jiri Slaby02f11752006-12-08 02:39:28 -08004174 char buf[64];
4175
Jiri Slaby21719192007-05-08 00:36:42 -07004176 printk(KERN_DEBUG "cyc:unthrottle %s: %ld...ttyC%d\n",
4177 tty_name(tty, buf), tty->ldisc.chars_in_buffer(tty),info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178#endif
4179
Jiri Slaby02f11752006-12-08 02:39:28 -08004180 if (serial_paranoia_check(info, tty->name, "cy_unthrottle")) {
4181 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
Jiri Slaby02f11752006-12-08 02:39:28 -08004184 if (I_IXOFF(tty)) {
4185 if (info->x_char)
4186 info->x_char = 0;
4187 else
4188 cy_send_xchar(tty, START_CHAR(tty));
4189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Jiri Slaby02f11752006-12-08 02:39:28 -08004191 if (tty->termios->c_cflag & CRTSCTS) {
4192 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07004193 channel = info->line - card->first_line;
4194 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004195 chip = channel >> 2;
4196 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07004197 index = card->bus_index;
4198 base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004199 (cy_chip_offset[chip] << index);
4200
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004201 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004202 cy_writeb(base_addr + (CyCAR << index),
4203 (u_char) channel);
4204 if (info->rtsdtr_inv) {
4205 cy_writeb(base_addr + (CyMSVR2 << index),
4206 CyDTR);
4207 } else {
4208 cy_writeb(base_addr + (CyMSVR1 << index),
4209 CyRTS);
4210 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004211 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004212 } else {
4213 info->throttle = 0;
4214 }
4215 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004216} /* cy_unthrottle */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217
4218/* cy_start and cy_stop provide software output flow control as a
4219 function of XON/XOFF, software CTS, and other such stuff.
4220*/
Jiri Slaby02f11752006-12-08 02:39:28 -08004221static void cy_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222{
Jiri Slaby02f11752006-12-08 02:39:28 -08004223 struct cyclades_card *cinfo;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004224 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004225 void __iomem *base_addr;
4226 int chip, channel, index;
4227 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
4229#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004230 printk(KERN_DEBUG "cyc:cy_stop ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231#endif
4232
Jiri Slaby02f11752006-12-08 02:39:28 -08004233 if (serial_paranoia_check(info, tty->name, "cy_stop"))
4234 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235
Jiri Slaby875b2062007-05-08 00:36:49 -07004236 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004237 channel = info->line - cinfo->first_line;
4238 if (!IS_CYC_Z(*cinfo)) {
4239 index = cinfo->bus_index;
4240 chip = channel >> 2;
4241 channel &= 0x03;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004242 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004244 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004245 cy_writeb(base_addr + (CyCAR << index),
4246 (u_char)(channel & 0x0003)); /* index channel */
4247 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004248 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004249 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004251} /* cy_stop */
4252
4253static void cy_start(struct tty_struct *tty)
4254{
4255 struct cyclades_card *cinfo;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004256 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004257 void __iomem *base_addr;
4258 int chip, channel, index;
4259 unsigned long flags;
4260
4261#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004262 printk(KERN_DEBUG "cyc:cy_start ttyC%d\n", info->line);
Jiri Slaby02f11752006-12-08 02:39:28 -08004263#endif
4264
4265 if (serial_paranoia_check(info, tty->name, "cy_start"))
4266 return;
4267
Jiri Slaby875b2062007-05-08 00:36:49 -07004268 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004269 channel = info->line - cinfo->first_line;
4270 index = cinfo->bus_index;
4271 if (!IS_CYC_Z(*cinfo)) {
4272 chip = channel >> 2;
4273 channel &= 0x03;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004274 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08004275
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004276 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004277 cy_writeb(base_addr + (CyCAR << index), (u_char) (channel & 0x0003)); /* index channel */
4278 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004279 readb(base_addr + (CySRER << index)) | CyTxRdy);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004280 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004281 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004282} /* cy_start */
4283
4284static void cy_flush_buffer(struct tty_struct *tty)
4285{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004286 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004287 struct cyclades_card *card;
4288 int channel, retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08004289 unsigned long flags;
4290
4291#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07004292 printk(KERN_DEBUG "cyc:cy_flush_buffer ttyC%d\n", info->line);
Jiri Slaby02f11752006-12-08 02:39:28 -08004293#endif
4294
4295 if (serial_paranoia_check(info, tty->name, "cy_flush_buffer"))
4296 return;
4297
4298 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07004299 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08004300
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004301 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004302 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004303 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004304
Jiri Slaby875b2062007-05-08 00:36:49 -07004305 if (IS_CYC_Z(*card)) { /* If it is a Z card, flush the on-board
Jiri Slaby02f11752006-12-08 02:39:28 -08004306 buffers as well */
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004307 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07004308 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_TX, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08004309 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07004310 printk(KERN_ERR "cyc: flush_buffer retval on ttyC%d "
4311 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08004312 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004313 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004314 }
4315 tty_wakeup(tty);
Jiri Slaby02f11752006-12-08 02:39:28 -08004316} /* cy_flush_buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
4318/*
4319 * cy_hangup() --- called by tty_hangup() when a hangup is signaled.
4320 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004321static void cy_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004323 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004324
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004326 printk(KERN_DEBUG "cyc:cy_hangup ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327#endif
4328
Jiri Slaby02f11752006-12-08 02:39:28 -08004329 if (serial_paranoia_check(info, tty->name, "cy_hangup"))
4330 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
Jiri Slaby02f11752006-12-08 02:39:28 -08004332 cy_flush_buffer(tty);
4333 shutdown(info);
Jiri Slaby02f11752006-12-08 02:39:28 -08004334 info->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07004336 printk(KERN_DEBUG "cyc:cy_hangup (%d): setting count to 0\n",
4337 current->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004339 info->tty = NULL;
4340 info->flags &= ~ASYNC_NORMAL_ACTIVE;
4341 wake_up_interruptible(&info->open_wait);
4342} /* cy_hangup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343
4344/*
4345 * ---------------------------------------------------------------------
4346 * cy_init() and friends
4347 *
4348 * cy_init() is called at boot-time to initialize the serial driver.
4349 * ---------------------------------------------------------------------
4350 */
4351
Jiri Slabydd025c02007-05-08 00:37:02 -07004352static int __devinit cy_init_card(struct cyclades_card *cinfo)
Jiri Slaby0809e262007-05-08 00:36:14 -07004353{
4354 struct cyclades_port *info;
Jeff Garzika6343af2007-07-17 05:39:58 -04004355 u32 uninitialized_var(mailbox);
Jiri Slaby65f76a82007-10-18 03:06:22 -07004356 unsigned int nports, port;
Jiri Slaby0809e262007-05-08 00:36:14 -07004357 unsigned short chip_number;
Jiri Slaby65f76a82007-10-18 03:06:22 -07004358 int uninitialized_var(index);
Jiri Slaby0809e262007-05-08 00:36:14 -07004359
Jiri Slaby3046d502007-05-08 00:36:46 -07004360 spin_lock_init(&cinfo->card_lock);
4361
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07004362 if (IS_CYC_Z(*cinfo)) { /* Cyclades-Z */
Jiri Slaby0809e262007-05-08 00:36:14 -07004363 mailbox = readl(&((struct RUNTIME_9060 __iomem *)
4364 cinfo->ctl_addr)->mail_box_0);
4365 nports = (mailbox == ZE_V1) ? ZE_V1_NPORTS : 8;
4366 cinfo->intr_enabled = 0;
4367 cinfo->nports = 0; /* Will be correctly set later, after
4368 Z FW is loaded */
Jiri Slaby3046d502007-05-08 00:36:46 -07004369 } else {
4370 index = cinfo->bus_index;
4371 nports = cinfo->nports = CyPORTS_PER_CHIP * cinfo->num_chips;
4372 }
4373
Jiri Slabydd025c02007-05-08 00:37:02 -07004374 cinfo->ports = kzalloc(sizeof(*cinfo->ports) * nports, GFP_KERNEL);
4375 if (cinfo->ports == NULL) {
4376 printk(KERN_ERR "Cyclades: cannot allocate ports\n");
Jiri Slaby31375532007-05-08 00:37:04 -07004377 cinfo->nports = 0;
Jiri Slabydd025c02007-05-08 00:37:02 -07004378 return -ENOMEM;
4379 }
4380
Jiri Slaby3046d502007-05-08 00:36:46 -07004381 for (port = cinfo->first_line; port < cinfo->first_line + nports;
4382 port++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07004383 info = &cinfo->ports[port - cinfo->first_line];
Jiri Slaby3046d502007-05-08 00:36:46 -07004384 info->magic = CYCLADES_MAGIC;
Jiri Slaby875b2062007-05-08 00:36:49 -07004385 info->card = cinfo;
Jiri Slaby3046d502007-05-08 00:36:46 -07004386 info->line = port;
4387 info->flags = STD_COM_FLAGS;
4388 info->closing_wait = CLOSING_WAIT_DELAY;
4389 info->close_delay = 5 * HZ / 10;
4390
Jiri Slaby3046d502007-05-08 00:36:46 -07004391 init_waitqueue_head(&info->open_wait);
4392 init_waitqueue_head(&info->close_wait);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07004393 init_completion(&info->shutdown_wait);
Jiri Slaby3046d502007-05-08 00:36:46 -07004394 init_waitqueue_head(&info->delta_msr_wait);
4395
4396 if (IS_CYC_Z(*cinfo)) {
Jiri Slaby0809e262007-05-08 00:36:14 -07004397 info->type = PORT_STARTECH;
Jiri Slaby0809e262007-05-08 00:36:14 -07004398 if (mailbox == ZO_V1)
4399 info->xmit_fifo_size = CYZ_FIFO_SIZE;
4400 else
Jiri Slaby3046d502007-05-08 00:36:46 -07004401 info->xmit_fifo_size = 4 * CYZ_FIFO_SIZE;
Jiri Slaby0809e262007-05-08 00:36:14 -07004402#ifdef CONFIG_CYZ_INTR
Jiri Slaby39914282007-05-08 00:36:54 -07004403 setup_timer(&cyz_rx_full_timer[port],
4404 cyz_rx_restart, (unsigned long)info);
Jiri Slaby0809e262007-05-08 00:36:14 -07004405#endif
Jiri Slaby3046d502007-05-08 00:36:46 -07004406 } else {
Jiri Slaby0809e262007-05-08 00:36:14 -07004407 info->type = PORT_CIRRUS;
Jiri Slaby0809e262007-05-08 00:36:14 -07004408 info->xmit_fifo_size = CyMAX_CHAR_FIFO;
Jiri Slaby3046d502007-05-08 00:36:46 -07004409 info->cor1 = CyPARITY_NONE | Cy_1_STOP | Cy_8_BITS;
Jiri Slaby0809e262007-05-08 00:36:14 -07004410 info->cor2 = CyETC;
4411 info->cor3 = 0x08; /* _very_ small rcv threshold */
Jiri Slaby3046d502007-05-08 00:36:46 -07004412
Jiri Slaby0809e262007-05-08 00:36:14 -07004413 chip_number = (port - cinfo->first_line) / 4;
Jiri Slaby3046d502007-05-08 00:36:46 -07004414 if ((info->chip_rev = readb(cinfo->base_addr +
Jiri Slaby0809e262007-05-08 00:36:14 -07004415 (cy_chip_offset[chip_number] <<
4416 index) + (CyGFRCR << index))) >=
4417 CD1400_REV_J) {
4418 /* It is a CD1400 rev. J or later */
4419 info->tbpr = baud_bpr_60[13]; /* Tx BPR */
4420 info->tco = baud_co_60[13]; /* Tx CO */
4421 info->rbpr = baud_bpr_60[13]; /* Rx BPR */
4422 info->rco = baud_co_60[13]; /* Rx CO */
Jiri Slaby0809e262007-05-08 00:36:14 -07004423 info->rtsdtr_inv = 1;
4424 } else {
4425 info->tbpr = baud_bpr_25[13]; /* Tx BPR */
4426 info->tco = baud_co_25[13]; /* Tx CO */
4427 info->rbpr = baud_bpr_25[13]; /* Rx BPR */
4428 info->rco = baud_co_25[13]; /* Rx CO */
Jiri Slaby0809e262007-05-08 00:36:14 -07004429 info->rtsdtr_inv = 0;
4430 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004431 info->read_status_mask = CyTIMEOUT | CySPECHAR |
4432 CyBREAK | CyPARITY | CyFRAME | CyOVERRUN;
Jiri Slaby0809e262007-05-08 00:36:14 -07004433 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004434
Jiri Slaby0809e262007-05-08 00:36:14 -07004435 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004436
4437#ifndef CONFIG_CYZ_INTR
4438 if (IS_CYC_Z(*cinfo) && !timer_pending(&cyz_timerlist)) {
4439 mod_timer(&cyz_timerlist, jiffies + 1);
4440#ifdef CY_PCI_DEBUG
4441 printk(KERN_DEBUG "Cyclades-Z polling initialized\n");
4442#endif
4443 }
4444#endif
Jiri Slabydd025c02007-05-08 00:37:02 -07004445 return 0;
Jiri Slaby0809e262007-05-08 00:36:14 -07004446}
4447
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448/* initialize chips on Cyclom-Y card -- return number of valid
4449 chips (which is number of ports/4) */
Jiri Slaby31b4f0a2007-05-08 00:36:44 -07004450static unsigned short __devinit cyy_init_card(void __iomem *true_base_addr,
4451 int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452{
Jiri Slaby02f11752006-12-08 02:39:28 -08004453 unsigned int chip_number;
4454 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455
Jiri Slaby02f11752006-12-08 02:39:28 -08004456 cy_writeb(true_base_addr + (Cy_HwReset << index), 0);
4457 /* Cy_HwReset is 0x1400 */
4458 cy_writeb(true_base_addr + (Cy_ClrIntr << index), 0);
4459 /* Cy_ClrIntr is 0x1800 */
4460 udelay(500L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461
Jiri Slaby02f11752006-12-08 02:39:28 -08004462 for (chip_number = 0; chip_number < CyMAX_CHIPS_PER_CARD; chip_number++) {
4463 base_addr =
4464 true_base_addr + (cy_chip_offset[chip_number] << index);
4465 mdelay(1);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004466 if (readb(base_addr + (CyCCR << index)) != 0x00) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004467 /*************
4468 printk(" chip #%d at %#6lx is never idle (CCR != 0)\n",
4469 chip_number, (unsigned long)base_addr);
4470 *************/
4471 return chip_number;
4472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473
Jiri Slaby02f11752006-12-08 02:39:28 -08004474 cy_writeb(base_addr + (CyGFRCR << index), 0);
4475 udelay(10L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476
Jiri Slaby02f11752006-12-08 02:39:28 -08004477 /* The Cyclom-16Y does not decode address bit 9 and therefore
4478 cannot distinguish between references to chip 0 and a non-
4479 existent chip 4. If the preceding clearing of the supposed
4480 chip 4 GFRCR register appears at chip 0, there is no chip 4
4481 and this must be a Cyclom-16Y, not a Cyclom-32Ye.
4482 */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004483 if (chip_number == 4 && readb(true_base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004484 (cy_chip_offset[0] << index) +
4485 (CyGFRCR << index)) == 0) {
4486 return chip_number;
4487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Jiri Slaby02f11752006-12-08 02:39:28 -08004489 cy_writeb(base_addr + (CyCCR << index), CyCHIP_RESET);
4490 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004492 if (readb(base_addr + (CyGFRCR << index)) == 0x00) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004493 /*
4494 printk(" chip #%d at %#6lx is not responding ",
4495 chip_number, (unsigned long)base_addr);
4496 printk("(GFRCR stayed 0)\n",
4497 */
4498 return chip_number;
4499 }
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004500 if ((0xf0 & (readb(base_addr + (CyGFRCR << index)))) !=
Jiri Slaby02f11752006-12-08 02:39:28 -08004501 0x40) {
4502 /*
4503 printk(" chip #%d at %#6lx is not valid (GFRCR == "
4504 "%#2x)\n",
4505 chip_number, (unsigned long)base_addr,
4506 base_addr[CyGFRCR<<index]);
4507 */
4508 return chip_number;
4509 }
4510 cy_writeb(base_addr + (CyGCR << index), CyCH0_SERIAL);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004511 if (readb(base_addr + (CyGFRCR << index)) >= CD1400_REV_J) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004512 /* It is a CD1400 rev. J or later */
4513 /* Impossible to reach 5ms with this chip.
4514 Changed to 2ms instead (f = 500 Hz). */
4515 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_60_2MS);
4516 } else {
4517 /* f = 200 Hz */
4518 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_25_5MS);
4519 }
4520
4521 /*
4522 printk(" chip #%d at %#6lx is rev 0x%2x\n",
4523 chip_number, (unsigned long)base_addr,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004524 readb(base_addr+(CyGFRCR<<index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08004525 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004527 return chip_number;
4528} /* cyy_init_card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529
4530/*
4531 * ---------------------------------------------------------------------
4532 * cy_detect_isa() - Probe for Cyclom-Y/ISA boards.
4533 * sets global variables and return the number of ISA boards found.
4534 * ---------------------------------------------------------------------
4535 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004536static int __init cy_detect_isa(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537{
4538#ifdef CONFIG_ISA
Jiri Slaby02f11752006-12-08 02:39:28 -08004539 unsigned short cy_isa_irq, nboard;
4540 void __iomem *cy_isa_address;
4541 unsigned short i, j, cy_isa_nchan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542#ifdef MODULE
Jiri Slaby02f11752006-12-08 02:39:28 -08004543 int isparam = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544#endif
4545
Jiri Slaby02f11752006-12-08 02:39:28 -08004546 nboard = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547
4548#ifdef MODULE
4549 /* Check for module parameters */
Jiri Slaby02f11752006-12-08 02:39:28 -08004550 for (i = 0; i < NR_CARDS; i++) {
4551 if (maddr[i] || i) {
4552 isparam = 1;
4553 cy_isa_addresses[i] = maddr[i];
4554 }
4555 if (!maddr[i])
4556 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 }
4558#endif
4559
Jiri Slaby02f11752006-12-08 02:39:28 -08004560 /* scan the address table probing for Cyclom-Y/ISA boards */
4561 for (i = 0; i < NR_ISA_ADDRS; i++) {
4562 unsigned int isa_address = cy_isa_addresses[i];
4563 if (isa_address == 0x0000) {
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004564 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
Jiri Slaby02f11752006-12-08 02:39:28 -08004567 /* probe for CD1400... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 cy_isa_address = ioremap(isa_address, CyISA_Ywin);
Jiri Slaby31375532007-05-08 00:37:04 -07004569 if (cy_isa_address == NULL) {
4570 printk(KERN_ERR "Cyclom-Y/ISA: can't remap base "
4571 "address\n");
4572 continue;
4573 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004574 cy_isa_nchan = CyPORTS_PER_CHIP *
4575 cyy_init_card(cy_isa_address, 0);
4576 if (cy_isa_nchan == 0) {
Jiri Slaby31375532007-05-08 00:37:04 -07004577 iounmap(cy_isa_address);
Jiri Slaby02f11752006-12-08 02:39:28 -08004578 continue;
4579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580#ifdef MODULE
4581 if (isparam && irq[i])
Jiri Slaby02f11752006-12-08 02:39:28 -08004582 cy_isa_irq = irq[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 else
4584#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004585 /* find out the board's irq by probing */
4586 cy_isa_irq = detect_isa_irq(cy_isa_address);
4587 if (cy_isa_irq == 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07004588 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but the "
4589 "IRQ could not be detected.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004590 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07004591 iounmap(cy_isa_address);
Jiri Slaby02f11752006-12-08 02:39:28 -08004592 continue;
4593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594
Jiri Slaby02f11752006-12-08 02:39:28 -08004595 if ((cy_next_channel + cy_isa_nchan) > NR_PORTS) {
Jiri Slaby21719192007-05-08 00:36:42 -07004596 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
4597 "more channels are available. Change NR_PORTS "
4598 "in cyclades.c and recompile kernel.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004599 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07004600 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004601 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004602 }
4603 /* fill the next cy_card structure available */
4604 for (j = 0; j < NR_CARDS; j++) {
Jiri Slabyf7429032007-05-08 00:36:59 -07004605 if (cy_card[j].base_addr == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08004606 break;
4607 }
4608 if (j == NR_CARDS) { /* no more cy_cards available */
Jiri Slaby21719192007-05-08 00:36:42 -07004609 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
4610 "more cards can be used. Change NR_CARDS in "
4611 "cyclades.c and recompile kernel.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004612 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07004613 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004614 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
Jiri Slaby02f11752006-12-08 02:39:28 -08004617 /* allocate IRQ */
4618 if (request_irq(cy_isa_irq, cyy_interrupt,
4619 IRQF_DISABLED, "Cyclom-Y", &cy_card[j])) {
Jiri Slaby21719192007-05-08 00:36:42 -07004620 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but "
4621 "could not allocate IRQ#%d.\n",
4622 (unsigned long)cy_isa_address, cy_isa_irq);
Jiri Slaby31375532007-05-08 00:37:04 -07004623 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004624 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
Jiri Slaby02f11752006-12-08 02:39:28 -08004627 /* set cy_card */
4628 cy_card[j].base_addr = cy_isa_address;
4629 cy_card[j].ctl_addr = NULL;
4630 cy_card[j].irq = (int)cy_isa_irq;
4631 cy_card[j].bus_index = 0;
4632 cy_card[j].first_line = cy_next_channel;
4633 cy_card[j].num_chips = cy_isa_nchan / 4;
Jiri Slaby31375532007-05-08 00:37:04 -07004634 if (cy_init_card(&cy_card[j])) {
4635 cy_card[j].base_addr = NULL;
4636 free_irq(cy_isa_irq, &cy_card[j]);
4637 iounmap(cy_isa_address);
4638 continue;
4639 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004640 nboard++;
4641
Jiri Slaby21719192007-05-08 00:36:42 -07004642 printk(KERN_INFO "Cyclom-Y/ISA #%d: 0x%lx-0x%lx, IRQ%d found: "
4643 "%d channels starting from port %d\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004644 j + 1, (unsigned long)cy_isa_address,
4645 (unsigned long)(cy_isa_address + (CyISA_Ywin - 1)),
Jiri Slaby21719192007-05-08 00:36:42 -07004646 cy_isa_irq, cy_isa_nchan, cy_next_channel);
4647
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07004648 for (j = cy_next_channel;
4649 j < cy_next_channel + cy_isa_nchan; j++)
4650 tty_register_device(cy_serial_driver, j, NULL);
Jiri Slaby02f11752006-12-08 02:39:28 -08004651 cy_next_channel += cy_isa_nchan;
4652 }
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004653 return nboard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654#else
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004655 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08004656#endif /* CONFIG_ISA */
4657} /* cy_detect_isa */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658
Jiri Slaby58936d82007-05-08 00:36:13 -07004659#ifdef CONFIG_PCI
Jiri Slaby054f5b02007-07-17 04:05:16 -07004660static inline int __devinit cyc_isfwstr(const char *str, unsigned int size)
4661{
4662 unsigned int a;
4663
4664 for (a = 0; a < size && *str; a++, str++)
4665 if (*str & 0x80)
4666 return -EINVAL;
4667
4668 for (; a < size; a++, str++)
4669 if (*str)
4670 return -EINVAL;
4671
4672 return 0;
4673}
4674
4675static inline void __devinit cyz_fpga_copy(void __iomem *fpga, u8 *data,
4676 unsigned int size)
4677{
4678 for (; size > 0; size--) {
4679 cy_writel(fpga, *data++);
4680 udelay(10);
4681 }
4682}
4683
4684static void __devinit plx_init(struct pci_dev *pdev, int irq,
4685 struct RUNTIME_9060 __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686{
Jiri Slaby02f11752006-12-08 02:39:28 -08004687 /* Reset PLX */
Jiri Slaby054f5b02007-07-17 04:05:16 -07004688 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x40000000);
Jiri Slaby02f11752006-12-08 02:39:28 -08004689 udelay(100L);
Jiri Slaby054f5b02007-07-17 04:05:16 -07004690 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x40000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
Jiri Slaby02f11752006-12-08 02:39:28 -08004692 /* Reload Config. Registers from EEPROM */
Jiri Slaby054f5b02007-07-17 04:05:16 -07004693 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x20000000);
Jiri Slaby02f11752006-12-08 02:39:28 -08004694 udelay(100L);
Jiri Slaby054f5b02007-07-17 04:05:16 -07004695 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x20000000);
4696
4697 /* For some yet unknown reason, once the PLX9060 reloads the EEPROM,
4698 * the IRQ is lost and, thus, we have to re-write it to the PCI config.
4699 * registers. This will remain here until we find a permanent fix.
4700 */
4701 pci_write_config_byte(pdev, PCI_INTERRUPT_LINE, irq);
4702}
4703
4704static int __devinit __cyz_load_fw(const struct firmware *fw,
4705 const char *name, const u32 mailbox, void __iomem *base,
4706 void __iomem *fpga)
4707{
4708 void *ptr = fw->data;
4709 struct zfile_header *h = ptr;
4710 struct zfile_config *c, *cs;
4711 struct zfile_block *b, *bs;
4712 unsigned int a, tmp, len = fw->size;
4713#define BAD_FW KERN_ERR "Bad firmware: "
4714 if (len < sizeof(*h)) {
4715 printk(BAD_FW "too short: %u<%zu\n", len, sizeof(*h));
4716 return -EINVAL;
4717 }
4718
4719 cs = ptr + h->config_offset;
4720 bs = ptr + h->block_offset;
4721
4722 if ((void *)(cs + h->n_config) > ptr + len ||
4723 (void *)(bs + h->n_blocks) > ptr + len) {
4724 printk(BAD_FW "too short");
4725 return -EINVAL;
4726 }
4727
4728 if (cyc_isfwstr(h->name, sizeof(h->name)) ||
4729 cyc_isfwstr(h->date, sizeof(h->date))) {
4730 printk(BAD_FW "bad formatted header string\n");
4731 return -EINVAL;
4732 }
4733
4734 if (strncmp(name, h->name, sizeof(h->name))) {
4735 printk(BAD_FW "bad name '%s' (expected '%s')\n", h->name, name);
4736 return -EINVAL;
4737 }
4738
4739 tmp = 0;
4740 for (c = cs; c < cs + h->n_config; c++) {
4741 for (a = 0; a < c->n_blocks; a++)
4742 if (c->block_list[a] > h->n_blocks) {
4743 printk(BAD_FW "bad block ref number in cfgs\n");
4744 return -EINVAL;
4745 }
4746 if (c->mailbox == mailbox && c->function == 0) /* 0 is normal */
4747 tmp++;
4748 }
4749 if (!tmp) {
4750 printk(BAD_FW "nothing appropriate\n");
4751 return -EINVAL;
4752 }
4753
4754 for (b = bs; b < bs + h->n_blocks; b++)
4755 if (b->file_offset + b->size > len) {
4756 printk(BAD_FW "bad block data offset\n");
4757 return -EINVAL;
4758 }
4759
4760 /* everything is OK, let's seek'n'load it */
4761 for (c = cs; c < cs + h->n_config; c++)
4762 if (c->mailbox == mailbox && c->function == 0)
4763 break;
4764
4765 for (a = 0; a < c->n_blocks; a++) {
4766 b = &bs[c->block_list[a]];
4767 if (b->type == ZBLOCK_FPGA) {
4768 if (fpga != NULL)
4769 cyz_fpga_copy(fpga, ptr + b->file_offset,
4770 b->size);
4771 } else {
4772 if (base != NULL)
4773 memcpy_toio(base + b->ram_offset,
4774 ptr + b->file_offset, b->size);
4775 }
4776 }
4777#undef BAD_FW
4778 return 0;
4779}
4780
4781static int __devinit cyz_load_fw(struct pci_dev *pdev, void __iomem *base_addr,
4782 struct RUNTIME_9060 __iomem *ctl_addr, int irq)
4783{
4784 const struct firmware *fw;
4785 struct FIRM_ID __iomem *fid = base_addr + ID_ADDRESS;
4786 struct CUSTOM_REG __iomem *cust = base_addr;
4787 struct ZFW_CTRL __iomem *pt_zfwctrl;
Jiri Slabyc4923b42007-07-17 04:05:17 -07004788 void __iomem *tmp;
Jiri Slaby054f5b02007-07-17 04:05:16 -07004789 u32 mailbox, status;
4790 unsigned int i;
4791 int retval;
4792
4793 retval = request_firmware(&fw, "cyzfirm.bin", &pdev->dev);
4794 if (retval) {
4795 dev_err(&pdev->dev, "can't get firmware\n");
4796 goto err;
4797 }
4798
4799 /* Check whether the firmware is already loaded and running. If
4800 positive, skip this board */
4801 if (Z_FPGA_LOADED(ctl_addr) && readl(&fid->signature) == ZFIRM_ID) {
4802 u32 cntval = readl(base_addr + 0x190);
4803
4804 udelay(100);
4805 if (cntval != readl(base_addr + 0x190)) {
4806 /* FW counter is working, FW is running */
4807 dev_dbg(&pdev->dev, "Cyclades-Z FW already loaded. "
4808 "Skipping board.\n");
4809 retval = 0;
4810 goto err_rel;
4811 }
4812 }
4813
4814 /* start boot */
4815 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) &
4816 ~0x00030800UL);
4817
4818 mailbox = readl(&ctl_addr->mail_box_0);
4819
4820 if (mailbox == 0 || Z_FPGA_LOADED(ctl_addr)) {
4821 /* stops CPU and set window to beginning of RAM */
4822 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4823 cy_writel(&cust->cpu_stop, 0);
4824 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4825 udelay(100);
4826 }
4827
4828 plx_init(pdev, irq, ctl_addr);
4829
4830 if (mailbox != 0) {
4831 /* load FPGA */
4832 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, NULL,
4833 base_addr);
4834 if (retval)
4835 goto err_rel;
4836 if (!Z_FPGA_LOADED(ctl_addr)) {
4837 dev_err(&pdev->dev, "fw upload successful, but fw is "
4838 "not loaded\n");
4839 goto err_rel;
4840 }
4841 }
4842
4843 /* stops CPU and set window to beginning of RAM */
4844 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4845 cy_writel(&cust->cpu_stop, 0);
4846 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4847 udelay(100);
4848
4849 /* clear memory */
Jiri Slabyc4923b42007-07-17 04:05:17 -07004850 for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++)
Jiri Slaby054f5b02007-07-17 04:05:16 -07004851 cy_writeb(tmp, 255);
4852 if (mailbox != 0) {
4853 /* set window to last 512K of RAM */
4854 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM + RAM_SIZE);
4855 //sleep(1);
Jiri Slabyc4923b42007-07-17 04:05:17 -07004856 for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++)
Jiri Slaby054f5b02007-07-17 04:05:16 -07004857 cy_writeb(tmp, 255);
4858 /* set window to beginning of RAM */
4859 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4860 //sleep(1);
4861 }
4862
4863 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, base_addr, NULL);
4864 release_firmware(fw);
4865 if (retval)
4866 goto err;
4867
4868 /* finish boot and start boards */
4869 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4870 cy_writel(&cust->cpu_start, 0);
4871 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4872 i = 0;
4873 while ((status = readl(&fid->signature)) != ZFIRM_ID && i++ < 40)
4874 msleep(100);
4875 if (status != ZFIRM_ID) {
4876 if (status == ZFIRM_HLT) {
4877 dev_err(&pdev->dev, "you need an external power supply "
4878 "for this number of ports. Firmware halted and "
4879 "board reset.\n");
4880 retval = -EIO;
4881 goto err;
4882 }
4883 dev_warn(&pdev->dev, "fid->signature = 0x%x... Waiting "
4884 "some more time\n", status);
4885 while ((status = readl(&fid->signature)) != ZFIRM_ID &&
4886 i++ < 200)
4887 msleep(100);
4888 if (status != ZFIRM_ID) {
4889 dev_err(&pdev->dev, "Board not started in 20 seconds! "
4890 "Giving up. (fid->signature = 0x%x)\n",
4891 status);
4892 dev_info(&pdev->dev, "*** Warning ***: if you are "
4893 "upgrading the FW, please power cycle the "
4894 "system before loading the new FW to the "
4895 "Cyclades-Z.\n");
4896
4897 if (Z_FPGA_LOADED(ctl_addr))
4898 plx_init(pdev, irq, ctl_addr);
4899
4900 retval = -EIO;
4901 goto err;
4902 }
4903 dev_dbg(&pdev->dev, "Firmware started after %d seconds.\n",
4904 i / 10);
4905 }
4906 pt_zfwctrl = base_addr + readl(&fid->zfwctrl_addr);
4907
4908 dev_dbg(&pdev->dev, "fid=> %p, zfwctrl_addr=> %x, npt_zfwctrl=> %p\n",
4909 base_addr + ID_ADDRESS, readl(&fid->zfwctrl_addr),
4910 base_addr + readl(&fid->zfwctrl_addr));
4911
4912 dev_info(&pdev->dev, "Cyclades-Z FW loaded: version = %x, ports = %u\n",
4913 readl(&pt_zfwctrl->board_ctrl.fw_version),
4914 readl(&pt_zfwctrl->board_ctrl.n_channel));
4915
4916 if (readl(&pt_zfwctrl->board_ctrl.n_channel) == 0) {
4917 dev_warn(&pdev->dev, "no Cyclades-Z ports were found. Please "
4918 "check the connection between the Z host card and the "
4919 "serial expanders.\n");
4920
4921 if (Z_FPGA_LOADED(ctl_addr))
4922 plx_init(pdev, irq, ctl_addr);
4923
4924 dev_info(&pdev->dev, "Null number of ports detected. Board "
4925 "reset.\n");
4926 retval = 0;
4927 goto err;
4928 }
4929
4930 cy_writel(&pt_zfwctrl->board_ctrl.op_system, C_OS_LINUX);
4931 cy_writel(&pt_zfwctrl->board_ctrl.dr_version, DRIVER_VERSION);
4932
4933 /*
4934 Early firmware failed to start looking for commands.
4935 This enables firmware interrupts for those commands.
4936 */
4937 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) |
4938 (1 << 17));
4939 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) |
4940 0x00030800UL);
4941
4942 plx_init(pdev, irq, ctl_addr);
4943
4944 return 0;
4945err_rel:
4946 release_firmware(fw);
4947err:
4948 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949}
4950
Jiri Slaby58936d82007-05-08 00:36:13 -07004951static int __devinit cy_pci_probe(struct pci_dev *pdev,
4952 const struct pci_device_id *ent)
4953{
Jiri Slaby31375532007-05-08 00:37:04 -07004954 void __iomem *addr0 = NULL, *addr2 = NULL;
4955 char *card_name = NULL;
4956 u32 mailbox;
4957 unsigned int device_id, nchan = 0, card_no, i;
4958 unsigned char plx_ver;
4959 int retval, irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07004960
4961 retval = pci_enable_device(pdev);
4962 if (retval) {
4963 dev_err(&pdev->dev, "cannot enable device\n");
Jiri Slaby31375532007-05-08 00:37:04 -07004964 goto err;
Jiri Slaby58936d82007-05-08 00:36:13 -07004965 }
4966
4967 /* read PCI configuration area */
Jiri Slaby31375532007-05-08 00:37:04 -07004968 irq = pdev->irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07004969 device_id = pdev->device & ~PCI_DEVICE_ID_MASK;
4970
Jiri Slaby31375532007-05-08 00:37:04 -07004971#if defined(__alpha__)
4972 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo) { /* below 1M? */
4973 dev_err(&pdev->dev, "Cyclom-Y/PCI not supported for low "
4974 "addresses on Alpha systems.\n");
4975 retval = -EIO;
4976 goto err_dis;
4977 }
4978#endif
4979 if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Lo) {
4980 dev_err(&pdev->dev, "Cyclades-Z/PCI not supported for low "
4981 "addresses\n");
4982 retval = -EIO;
4983 goto err_dis;
4984 }
4985
4986 if (pci_resource_flags(pdev, 2) & IORESOURCE_IO) {
4987 dev_warn(&pdev->dev, "PCI I/O bit incorrectly set. Ignoring "
4988 "it...\n");
4989 pdev->resource[2].flags &= ~IORESOURCE_IO;
4990 }
4991
4992 retval = pci_request_regions(pdev, "cyclades");
4993 if (retval) {
4994 dev_err(&pdev->dev, "failed to reserve resources\n");
4995 goto err_dis;
4996 }
4997
4998 retval = -EIO;
Jiri Slaby58936d82007-05-08 00:36:13 -07004999 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
5000 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby31375532007-05-08 00:37:04 -07005001 card_name = "Cyclom-Y";
Jiri Slaby58936d82007-05-08 00:36:13 -07005002
Jiri Slaby31375532007-05-08 00:37:04 -07005003 addr0 = pci_iomap(pdev, 0, CyPCI_Yctl);
5004 if (addr0 == NULL) {
5005 dev_err(&pdev->dev, "can't remap ctl region\n");
5006 goto err_reg;
5007 }
5008 addr2 = pci_iomap(pdev, 2, CyPCI_Ywin);
5009 if (addr2 == NULL) {
5010 dev_err(&pdev->dev, "can't remap base region\n");
5011 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07005012 }
5013
Jiri Slaby31375532007-05-08 00:37:04 -07005014 nchan = CyPORTS_PER_CHIP * cyy_init_card(addr2, 1);
5015 if (nchan == 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07005016 dev_err(&pdev->dev, "Cyclom-Y PCI host card with no "
5017 "Serial-Modules\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07005018 return -EIO;
5019 }
Jiri Slaby31375532007-05-08 00:37:04 -07005020 } else if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Hi) {
5021 struct RUNTIME_9060 __iomem *ctl_addr;
5022
5023 ctl_addr = addr0 = pci_iomap(pdev, 0, CyPCI_Zctl);
5024 if (addr0 == NULL) {
5025 dev_err(&pdev->dev, "can't remap ctl region\n");
5026 goto err_reg;
Jiri Slaby58936d82007-05-08 00:36:13 -07005027 }
5028
Jiri Slaby31375532007-05-08 00:37:04 -07005029 /* Disable interrupts on the PLX before resetting it */
Jiri Slaby054f5b02007-07-17 04:05:16 -07005030 cy_writew(addr0 + 0x68, readw(addr0 + 0x68) & ~0x0900);
Jiri Slaby31375532007-05-08 00:37:04 -07005031
Jiri Slaby054f5b02007-07-17 04:05:16 -07005032 plx_init(pdev, irq, addr0);
Jiri Slaby31375532007-05-08 00:37:04 -07005033
5034 mailbox = (u32)readl(&ctl_addr->mail_box_0);
5035
5036 addr2 = pci_iomap(pdev, 2, mailbox == ZE_V1 ?
5037 CyPCI_Ze_win : CyPCI_Zwin);
5038 if (addr2 == NULL) {
5039 dev_err(&pdev->dev, "can't remap base region\n");
5040 goto err_unmap;
5041 }
5042
5043 if (mailbox == ZE_V1) {
5044 card_name = "Cyclades-Ze";
5045
5046 readl(&ctl_addr->mail_box_0);
5047 nchan = ZE_V1_NPORTS;
5048 } else {
5049 card_name = "Cyclades-8Zo";
5050
5051#ifdef CY_PCI_DEBUG
5052 if (mailbox == ZO_V1) {
5053 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
5054 dev_info(&pdev->dev, "Cyclades-8Zo/PCI: FPGA "
5055 "id %lx, ver %lx\n", (ulong)(0xff &
5056 readl(&((struct CUSTOM_REG *)addr2)->
5057 fpga_id)), (ulong)(0xff &
5058 readl(&((struct CUSTOM_REG *)addr2)->
5059 fpga_version)));
5060 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
5061 } else {
5062 dev_info(&pdev->dev, "Cyclades-Z/PCI: New "
5063 "Cyclades-Z board. FPGA not loaded\n");
5064 }
5065#endif
5066 /* The following clears the firmware id word. This
5067 ensures that the driver will not attempt to talk to
5068 the board until it has been properly initialized.
5069 */
5070 if ((mailbox == ZO_V1) || (mailbox == ZO_V2))
5071 cy_writel(addr2 + ID_ADDRESS, 0L);
5072
Jiri Slaby054f5b02007-07-17 04:05:16 -07005073 retval = cyz_load_fw(pdev, addr2, addr0, irq);
5074 if (retval)
5075 goto err_unmap;
Jiri Slaby31375532007-05-08 00:37:04 -07005076 /* This must be a Cyclades-8Zo/PCI. The extendable
5077 version will have a different device_id and will
5078 be allocated its maximum number of ports. */
5079 nchan = 8;
5080 }
5081 }
5082
5083 if ((cy_next_channel + nchan) > NR_PORTS) {
5084 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
5085 "channels are available. Change NR_PORTS in "
5086 "cyclades.c and recompile kernel.\n");
5087 goto err_unmap;
5088 }
5089 /* fill the next cy_card structure available */
5090 for (card_no = 0; card_no < NR_CARDS; card_no++) {
5091 if (cy_card[card_no].base_addr == NULL)
5092 break;
5093 }
5094 if (card_no == NR_CARDS) { /* no more cy_cards available */
5095 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
5096 "more cards can be used. Change NR_CARDS in "
5097 "cyclades.c and recompile kernel.\n");
5098 goto err_unmap;
5099 }
5100
5101 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
5102 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby58936d82007-05-08 00:36:13 -07005103 /* allocate IRQ */
Jiri Slaby31375532007-05-08 00:37:04 -07005104 retval = request_irq(irq, cyy_interrupt,
5105 IRQF_SHARED, "Cyclom-Y", &cy_card[card_no]);
Jiri Slaby58936d82007-05-08 00:36:13 -07005106 if (retval) {
Jiri Slaby21719192007-05-08 00:36:42 -07005107 dev_err(&pdev->dev, "could not allocate IRQ\n");
Jiri Slaby31375532007-05-08 00:37:04 -07005108 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07005109 }
Jiri Slaby31375532007-05-08 00:37:04 -07005110 cy_card[card_no].num_chips = nchan / 4;
5111 } else {
5112#ifdef CONFIG_CYZ_INTR
5113 /* allocate IRQ only if board has an IRQ */
5114 if (irq != 0 && irq != 255) {
5115 retval = request_irq(irq, cyz_interrupt,
5116 IRQF_SHARED, "Cyclades-Z",
5117 &cy_card[card_no]);
5118 if (retval) {
5119 dev_err(&pdev->dev, "could not allocate IRQ\n");
5120 goto err_unmap;
5121 }
5122 }
5123#endif /* CONFIG_CYZ_INTR */
Jiri Slaby65f76a82007-10-18 03:06:22 -07005124 cy_card[card_no].num_chips = (unsigned int)-1;
Jiri Slaby31375532007-05-08 00:37:04 -07005125 }
Jiri Slaby58936d82007-05-08 00:36:13 -07005126
Jiri Slaby31375532007-05-08 00:37:04 -07005127 /* set cy_card */
5128 cy_card[card_no].base_addr = addr2;
5129 cy_card[card_no].ctl_addr = addr0;
5130 cy_card[card_no].irq = irq;
5131 cy_card[card_no].bus_index = 1;
5132 cy_card[card_no].first_line = cy_next_channel;
5133 retval = cy_init_card(&cy_card[card_no]);
5134 if (retval)
5135 goto err_null;
Jiri Slaby58936d82007-05-08 00:36:13 -07005136
Jiri Slaby31375532007-05-08 00:37:04 -07005137 pci_set_drvdata(pdev, &cy_card[card_no]);
5138
5139 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
5140 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby58936d82007-05-08 00:36:13 -07005141 /* enable interrupts in the PCI interface */
Jiri Slaby31375532007-05-08 00:37:04 -07005142 plx_ver = readb(addr2 + CyPLX_VER) & 0x0f;
Jiri Slaby58936d82007-05-08 00:36:13 -07005143 switch (plx_ver) {
5144 case PLX_9050:
5145
Jiri Slaby31375532007-05-08 00:37:04 -07005146 cy_writeb(addr0 + 0x4c, 0x43);
Jiri Slaby58936d82007-05-08 00:36:13 -07005147 break;
5148
5149 case PLX_9060:
5150 case PLX_9080:
5151 default: /* Old boards, use PLX_9060 */
Jiri Slaby054f5b02007-07-17 04:05:16 -07005152 plx_init(pdev, irq, addr0);
Jiri Slaby31375532007-05-08 00:37:04 -07005153 cy_writew(addr0 + 0x68, readw(addr0 + 0x68) | 0x0900);
Jiri Slaby58936d82007-05-08 00:36:13 -07005154 break;
5155 }
Jiri Slaby58936d82007-05-08 00:36:13 -07005156 }
5157
Jiri Slaby31375532007-05-08 00:37:04 -07005158 dev_info(&pdev->dev, "%s/PCI #%d found: %d channels starting from "
5159 "port %d.\n", card_name, card_no + 1, nchan, cy_next_channel);
5160 for (i = cy_next_channel; i < cy_next_channel + nchan; i++)
5161 tty_register_device(cy_serial_driver, i, &pdev->dev);
5162 cy_next_channel += nchan;
5163
Jiri Slaby58936d82007-05-08 00:36:13 -07005164 return 0;
Jiri Slaby31375532007-05-08 00:37:04 -07005165err_null:
5166 cy_card[card_no].base_addr = NULL;
5167 free_irq(irq, &cy_card[card_no]);
5168err_unmap:
5169 pci_iounmap(pdev, addr0);
5170 if (addr2)
5171 pci_iounmap(pdev, addr2);
5172err_reg:
5173 pci_release_regions(pdev);
5174err_dis:
5175 pci_disable_device(pdev);
5176err:
5177 return retval;
Jiri Slaby58936d82007-05-08 00:36:13 -07005178}
Jiri Slaby58936d82007-05-08 00:36:13 -07005179
Jiri Slaby6747cd92007-05-08 00:36:34 -07005180static void __devexit cy_pci_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181{
Jiri Slaby38d09092007-05-08 00:36:10 -07005182 struct cyclades_card *cinfo = pci_get_drvdata(pdev);
Jiri Slabyf3851e72007-05-08 00:36:16 -07005183 unsigned int i;
Jiri Slaby38d09092007-05-08 00:36:10 -07005184
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005185 /* non-Z with old PLX */
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07005186 if (!IS_CYC_Z(*cinfo) && (readb(cinfo->base_addr + CyPLX_VER) & 0x0f) ==
5187 PLX_9050)
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005188 cy_writeb(cinfo->ctl_addr + 0x4c, 0);
5189 else
5190#ifndef CONFIG_CYZ_INTR
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07005191 if (!IS_CYC_Z(*cinfo))
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005192#endif
5193 cy_writew(cinfo->ctl_addr + 0x68,
5194 readw(cinfo->ctl_addr + 0x68) & ~0x0900);
5195
Jiri Slaby38d09092007-05-08 00:36:10 -07005196 pci_iounmap(pdev, cinfo->base_addr);
5197 if (cinfo->ctl_addr)
5198 pci_iounmap(pdev, cinfo->ctl_addr);
5199 if (cinfo->irq
5200#ifndef CONFIG_CYZ_INTR
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07005201 && !IS_CYC_Z(*cinfo)
Jiri Slaby38d09092007-05-08 00:36:10 -07005202#endif /* CONFIG_CYZ_INTR */
5203 )
5204 free_irq(cinfo->irq, cinfo);
5205 pci_release_regions(pdev);
5206
5207 cinfo->base_addr = NULL;
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005208 for (i = cinfo->first_line; i < cinfo->first_line +
5209 cinfo->nports; i++)
5210 tty_unregister_device(cy_serial_driver, i);
Jiri Slabydd025c02007-05-08 00:37:02 -07005211 cinfo->nports = 0;
5212 kfree(cinfo->ports);
Jiri Slaby38d09092007-05-08 00:36:10 -07005213}
5214
Jiri Slaby6747cd92007-05-08 00:36:34 -07005215static struct pci_driver cy_pci_driver = {
5216 .name = "cyclades",
5217 .id_table = cy_pci_dev_id,
5218 .probe = cy_pci_probe,
5219 .remove = __devexit_p(cy_pci_remove)
5220};
5221#endif
5222
Jiri Slaby02f11752006-12-08 02:39:28 -08005223static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224cyclades_get_proc_info(char *buf, char **start, off_t offset, int length,
Jiri Slaby02f11752006-12-08 02:39:28 -08005225 int *eof, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226{
Jiri Slaby02f11752006-12-08 02:39:28 -08005227 struct cyclades_port *info;
Jiri Slabydd025c02007-05-08 00:37:02 -07005228 unsigned int i, j;
Jiri Slaby02f11752006-12-08 02:39:28 -08005229 int len = 0;
5230 off_t begin = 0;
5231 off_t pos = 0;
5232 int size;
5233 __u32 cur_jifs = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234
Jiri Slaby02f11752006-12-08 02:39:28 -08005235 size = sprintf(buf, "Dev TimeOpen BytesOut IdleOut BytesIn "
5236 "IdleIn Overruns Ldisc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237
Jiri Slaby02f11752006-12-08 02:39:28 -08005238 pos += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240
Jiri Slaby02f11752006-12-08 02:39:28 -08005241 /* Output one line for each known port */
Jiri Slabydd025c02007-05-08 00:37:02 -07005242 for (i = 0; i < NR_CARDS; i++)
5243 for (j = 0; j < cy_card[i].nports; j++) {
5244 info = &cy_card[i].ports[j];
Jiri Slaby02f11752006-12-08 02:39:28 -08005245
Jiri Slabydd025c02007-05-08 00:37:02 -07005246 if (info->count)
5247 size = sprintf(buf + len, "%3d %8lu %10lu %8lu "
5248 "%10lu %8lu %9lu %6ld\n", info->line,
5249 (cur_jifs - info->idle_stats.in_use) /
5250 HZ, info->idle_stats.xmit_bytes,
5251 (cur_jifs - info->idle_stats.xmit_idle)/
5252 HZ, info->idle_stats.recv_bytes,
5253 (cur_jifs - info->idle_stats.recv_idle)/
5254 HZ, info->idle_stats.overruns,
5255 (long)info->tty->ldisc.num);
5256 else
5257 size = sprintf(buf + len, "%3d %8lu %10lu %8lu "
5258 "%10lu %8lu %9lu %6ld\n",
5259 info->line, 0L, 0L, 0L, 0L, 0L, 0L, 0L);
5260 len += size;
5261 pos = begin + len;
Jiri Slaby02f11752006-12-08 02:39:28 -08005262
Jiri Slabydd025c02007-05-08 00:37:02 -07005263 if (pos < offset) {
5264 len = 0;
5265 begin = pos;
5266 }
5267 if (pos > offset + length)
5268 goto done;
Jiri Slaby02f11752006-12-08 02:39:28 -08005269 }
Jiri Slaby02f11752006-12-08 02:39:28 -08005270 *eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271done:
Jiri Slaby02f11752006-12-08 02:39:28 -08005272 *start = buf + (offset - begin); /* Start of wanted data */
5273 len -= (offset - begin); /* Start slop */
5274 if (len > length)
5275 len = length; /* Ending slop */
5276 if (len < 0)
5277 len = 0;
5278 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279}
5280
5281/* The serial driver boot-time initialization code!
5282 Hardware I/O ports are mapped to character special devices on a
5283 first found, first allocated manner. That is, this code searches
5284 for Cyclom cards in the system. As each is found, it is probed
5285 to discover how many chips (and thus how many ports) are present.
5286 These ports are mapped to the tty ports 32 and upward in monotonic
5287 fashion. If an 8-port card is replaced with a 16-port card, the
5288 port mapping on a following card will shift.
5289
5290 This approach is different from what is used in the other serial
5291 device driver because the Cyclom is more properly a multiplexer,
5292 not just an aggregation of serial ports on one card.
5293
5294 If there are more cards with more ports than have been
5295 statically allocated above, a warning is printed and the
5296 extra ports are ignored.
5297 */
5298
Jeff Dikeb68e31d2006-10-02 02:17:18 -07005299static const struct tty_operations cy_ops = {
Jiri Slaby02f11752006-12-08 02:39:28 -08005300 .open = cy_open,
5301 .close = cy_close,
5302 .write = cy_write,
5303 .put_char = cy_put_char,
5304 .flush_chars = cy_flush_chars,
5305 .write_room = cy_write_room,
5306 .chars_in_buffer = cy_chars_in_buffer,
5307 .flush_buffer = cy_flush_buffer,
5308 .ioctl = cy_ioctl,
5309 .throttle = cy_throttle,
5310 .unthrottle = cy_unthrottle,
5311 .set_termios = cy_set_termios,
5312 .stop = cy_stop,
5313 .start = cy_start,
5314 .hangup = cy_hangup,
5315 .break_ctl = cy_break,
5316 .wait_until_sent = cy_wait_until_sent,
5317 .read_proc = cyclades_get_proc_info,
5318 .tiocmget = cy_tiocmget,
5319 .tiocmset = cy_tiocmset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320};
5321
Jiri Slaby02f11752006-12-08 02:39:28 -08005322static int __init cy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323{
Jiri Slabydd025c02007-05-08 00:37:02 -07005324 unsigned int nboards;
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005325 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326
Jiri Slaby02f11752006-12-08 02:39:28 -08005327 cy_serial_driver = alloc_tty_driver(NR_PORTS);
5328 if (!cy_serial_driver)
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005329 goto err;
Jiri Slaby21719192007-05-08 00:36:42 -07005330
5331 printk(KERN_INFO "Cyclades driver " CY_VERSION " (built %s %s)\n",
5332 __DATE__, __TIME__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333
Jiri Slaby02f11752006-12-08 02:39:28 -08005334 /* Initialize the tty_driver structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335
Jiri Slaby02f11752006-12-08 02:39:28 -08005336 cy_serial_driver->owner = THIS_MODULE;
5337 cy_serial_driver->driver_name = "cyclades";
5338 cy_serial_driver->name = "ttyC";
5339 cy_serial_driver->major = CYCLADES_MAJOR;
5340 cy_serial_driver->minor_start = 0;
5341 cy_serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
5342 cy_serial_driver->subtype = SERIAL_TYPE_NORMAL;
5343 cy_serial_driver->init_termios = tty_std_termios;
5344 cy_serial_driver->init_termios.c_cflag =
5345 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005346 cy_serial_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08005347 tty_set_operations(cy_serial_driver, &cy_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005349 retval = tty_register_driver(cy_serial_driver);
5350 if (retval) {
5351 printk(KERN_ERR "Couldn't register Cyclades serial driver\n");
5352 goto err_frtty;
5353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
Jiri Slaby02f11752006-12-08 02:39:28 -08005355 /* the code below is responsible to find the boards. Each different
5356 type of board has its own detection routine. If a board is found,
5357 the next cy_card structure available is set by the detection
5358 routine. These functions are responsible for checking the
5359 availability of cy_card and cy_port data structures and updating
5360 the cy_next_channel. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361
Jiri Slaby02f11752006-12-08 02:39:28 -08005362 /* look for isa boards */
Jiri Slaby14a55a62007-05-08 00:36:18 -07005363 nboards = cy_detect_isa();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364
Jiri Slaby6747cd92007-05-08 00:36:34 -07005365#ifdef CONFIG_PCI
Jiri Slaby02f11752006-12-08 02:39:28 -08005366 /* look for pci boards */
Jiri Slaby6747cd92007-05-08 00:36:34 -07005367 retval = pci_register_driver(&cy_pci_driver);
Jesper Juhld941ea72007-10-18 03:06:23 -07005368 if (retval && !nboards) {
5369 tty_unregister_driver(cy_serial_driver);
5370 goto err_frtty;
5371 }
Jiri Slaby6747cd92007-05-08 00:36:34 -07005372#endif
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005373
5374 return 0;
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005375err_frtty:
5376 put_tty_driver(cy_serial_driver);
5377err:
5378 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08005379} /* cy_init */
5380
5381static void __exit cy_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382{
Jiri Slabydd025c02007-05-08 00:37:02 -07005383 struct cyclades_card *card;
Jiri Slaby65f76a82007-10-18 03:06:22 -07005384 unsigned int i, e1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
5386#ifndef CONFIG_CYZ_INTR
Jiri Slabyb7050902007-05-08 00:35:48 -07005387 del_timer_sync(&cyz_timerlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388#endif /* CONFIG_CYZ_INTR */
5389
Jiri Slaby02f11752006-12-08 02:39:28 -08005390 if ((e1 = tty_unregister_driver(cy_serial_driver)))
Jiri Slaby21719192007-05-08 00:36:42 -07005391 printk(KERN_ERR "failed to unregister Cyclades serial "
5392 "driver(%d)\n", e1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393
Jiri Slaby6747cd92007-05-08 00:36:34 -07005394#ifdef CONFIG_PCI
5395 pci_unregister_driver(&cy_pci_driver);
5396#endif
5397
Jiri Slaby02f11752006-12-08 02:39:28 -08005398 for (i = 0; i < NR_CARDS; i++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07005399 card = &cy_card[i];
5400 if (card->base_addr) {
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005401 /* clear interrupt */
Jiri Slabydd025c02007-05-08 00:37:02 -07005402 cy_writeb(card->base_addr + Cy_ClrIntr, 0);
5403 iounmap(card->base_addr);
5404 if (card->ctl_addr)
5405 iounmap(card->ctl_addr);
5406 if (card->irq
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407#ifndef CONFIG_CYZ_INTR
Jiri Slabydd025c02007-05-08 00:37:02 -07005408 && !IS_CYC_Z(*card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409#endif /* CONFIG_CYZ_INTR */
Jiri Slaby02f11752006-12-08 02:39:28 -08005410 )
Jiri Slabydd025c02007-05-08 00:37:02 -07005411 free_irq(card->irq, card);
Jiri Slaby65f76a82007-10-18 03:06:22 -07005412 for (e1 = card->first_line; e1 < card->first_line +
Jiri Slabydd025c02007-05-08 00:37:02 -07005413 card->nports; e1++)
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005414 tty_unregister_device(cy_serial_driver, e1);
Jiri Slabydd025c02007-05-08 00:37:02 -07005415 kfree(card->ports);
Jiri Slaby02f11752006-12-08 02:39:28 -08005416 }
5417 }
Jiri Slabyf2462bf2007-05-08 00:37:01 -07005418
5419 put_tty_driver(cy_serial_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420} /* cy_cleanup_module */
5421
5422module_init(cy_init);
5423module_exit(cy_cleanup_module);
5424
5425MODULE_LICENSE("GPL");
Jiri Slabyc8e16932007-05-08 00:37:05 -07005426MODULE_VERSION(CY_VERSION);