blob: 7fe4bb60f690c25883efdf6b7baa6a8e66acd047 [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>.
13 * Currently maintained by Cyclades team <async@cyclades.com>.
14 *
15 * For Technical support and installation problems, please send e-mail
16 * to support@cyclades.com.
17 *
18 * Much of the design and some of the code came from serial.c
19 * which was copyright (C) 1991, 1992 Linus Torvalds. It was
20 * extensively rewritten by Theodore Ts'o, 8/16/92 -- 9/14/92,
21 * and then fixed as suggested by Michael K. Johnson 12/12/92.
22 *
23 * This version supports shared IRQ's (only for PCI boards).
24 *
25 * $Log: cyclades.c,v $
26 * Prevent users from opening non-existing Z ports.
27 *
28 * Revision 2.3.2.8 2000/07/06 18:14:16 ivan
29 * Fixed the PCI detection function to work properly on Alpha systems.
30 * Implemented support for TIOCSERGETLSR ioctl.
31 * Implemented full support for non-standard baud rates.
32 *
33 * Revision 2.3.2.7 2000/06/01 18:26:34 ivan
34 * Request PLX I/O region, although driver doesn't use it, to avoid
35 * problems with other drivers accessing it.
36 * Removed count for on-board buffer characters in cy_chars_in_buffer
37 * (Cyclades-Z only).
38 *
39 * Revision 2.3.2.6 2000/05/05 13:56:05 ivan
40 * Driver now reports physical instead of virtual memory addresses.
41 * Masks were added to some Cyclades-Z read accesses.
42 * Implemented workaround for PLX9050 bug that would cause a system lockup
43 * in certain systems, depending on the MMIO addresses allocated to the
44 * board.
45 * Changed the Tx interrupt programming in the CD1400 chips to boost up
46 * performance (Cyclom-Y only).
47 * Code is now compliant with the new module interface (module_[init|exit]).
48 * Make use of the PCI helper functions to access PCI resources.
49 * Did some code "housekeeping".
50 *
51 * Revision 2.3.2.5 2000/01/19 14:35:33 ivan
52 * Fixed bug in cy_set_termios on CRTSCTS flag turnoff.
53 *
54 * Revision 2.3.2.4 2000/01/17 09:19:40 ivan
55 * Fixed SMP locking in Cyclom-Y interrupt handler.
56 *
57 * Revision 2.3.2.3 1999/12/28 12:11:39 ivan
58 * Added a new cyclades_card field called nports to allow the driver to
59 * know the exact number of ports found by the Z firmware after its load;
60 * RX buffer contention prevention logic on interrupt op mode revisited
61 * (Cyclades-Z only);
62 * Revisited printk's for Z debug;
63 * Driver now makes sure that the constant SERIAL_XMIT_SIZE is defined;
64 *
65 * Revision 2.3.2.2 1999/10/01 11:27:43 ivan
66 * Fixed bug in cyz_poll that would make all ports but port 0
67 * unable to transmit/receive data (Cyclades-Z only);
68 * Implemented logic to prevent the RX buffer from being stuck with data
69 * due to a driver / firmware race condition in interrupt op mode
70 * (Cyclades-Z only);
71 * Fixed bug in block_til_ready logic that would lead to a system crash;
72 * Revisited cy_close spinlock usage;
73 *
74 * Revision 2.3.2.1 1999/09/28 11:01:22 ivan
75 * Revisited CONFIG_PCI conditional compilation for PCI board support;
76 * Implemented TIOCGICOUNT and TIOCMIWAIT ioctl support;
77 * _Major_ cleanup on the Cyclades-Z interrupt support code / logic;
78 * Removed CTS handling from the driver -- this is now completely handled
79 * by the firmware (Cyclades-Z only);
80 * Flush RX on-board buffers on a port open (Cyclades-Z only);
81 * Fixed handling of ASYNC_SPD_* TTY flags;
82 * Module unload now unmaps all memory area allocated by ioremap;
83 *
84 * Revision 2.3.1.1 1999/07/15 16:45:53 ivan
85 * Removed CY_PROC conditional compilation;
86 * Implemented SMP-awareness for the driver;
87 * Implemented a new ISA IRQ autoprobe that uses the irq_probe_[on|off]
88 * functions;
89 * The driver now accepts memory addresses (maddr=0xMMMMM) and IRQs
90 * (irq=NN) as parameters (only for ISA boards);
91 * Fixed bug in set_line_char that would prevent the Cyclades-Z
92 * ports from being configured at speeds above 115.2Kbps;
93 * Fixed bug in cy_set_termios that would prevent XON/XOFF flow control
94 * switching from working properly;
95 * The driver now only prints IRQ info for the Cyclades-Z if it's
96 * configured to work in interrupt mode;
97 *
98 * Revision 2.2.2.3 1999/06/28 11:13:29 ivan
99 * Added support for interrupt mode operation for the Z cards;
100 * Removed the driver inactivity control for the Z;
101 * Added a missing MOD_DEC_USE_COUNT in the cy_open function for when
102 * the Z firmware is not loaded yet;
103 * Replaced the "manual" Z Tx flush buffer by a call to a FW command of
104 * same functionality;
105 * Implemented workaround for IRQ setting loss on the PCI configuration
106 * registers after a PCI bridge EEPROM reload (affects PLX9060 only);
107 *
108 * Revision 2.2.2.2 1999/05/14 17:18:15 ivan
109 * /proc entry location changed to /proc/tty/driver/cyclades;
110 * Added support to shared IRQ's (only for PCI boards);
111 * Added support for Cobalt Qube2 systems;
112 * IRQ [de]allocation scheme revisited;
113 * BREAK implementation changed in order to make use of the 'break_ctl'
114 * TTY facility;
115 * Fixed typo in TTY structure field 'driver_name';
116 * Included a PCI bridge reset and EEPROM reload in the board
117 * initialization code (for both Y and Z series).
118 *
119 * Revision 2.2.2.1 1999/04/08 16:17:43 ivan
120 * Fixed a bug in cy_wait_until_sent that was preventing the port to be
121 * closed properly after a SIGINT;
122 * Module usage counter scheme revisited;
123 * Added support to the upcoming Y PCI boards (i.e., support to additional
124 * PCI Device ID's).
125 *
126 * Revision 2.2.1.10 1999/01/20 16:14:29 ivan
127 * Removed all unnecessary page-alignement operations in ioremap calls
128 * (ioremap is currently safe for these operations).
129 *
130 * Revision 2.2.1.9 1998/12/30 18:18:30 ivan
131 * Changed access to PLX PCI bridge registers from I/O to MMIO, in
132 * order to make PLX9050-based boards work with certain motherboards.
133 *
134 * Revision 2.2.1.8 1998/11/13 12:46:20 ivan
135 * cy_close function now resets (correctly) the tty->closing flag;
136 * JIFFIES_DIFF macro fixed.
137 *
138 * Revision 2.2.1.7 1998/09/03 12:07:28 ivan
139 * Fixed bug in cy_close function, which was not informing HW of
140 * which port should have the reception disabled before doing so;
141 * fixed Cyclom-8YoP hardware detection bug.
142 *
143 * Revision 2.2.1.6 1998/08/20 17:15:39 ivan
144 * Fixed bug in cy_close function, which causes malfunction
145 * of one of the first 4 ports when a higher port is closed
146 * (Cyclom-Y only).
147 *
148 * Revision 2.2.1.5 1998/08/10 18:10:28 ivan
149 * Fixed Cyclom-4Yo hardware detection bug.
150 *
151 * Revision 2.2.1.4 1998/08/04 11:02:50 ivan
152 * /proc/cyclades implementation with great collaboration of
153 * Marc Lewis <marc@blarg.net>;
154 * cyy_interrupt was changed to avoid occurrence of kernel oopses
155 * during PPP operation.
156 *
157 * Revision 2.2.1.3 1998/06/01 12:09:10 ivan
158 * General code review in order to comply with 2.1 kernel standards;
159 * data loss prevention for slow devices revisited (cy_wait_until_sent
160 * was created);
161 * removed conditional compilation for new/old PCI structure support
162 * (now the driver only supports the new PCI structure).
163 *
164 * Revision 2.2.1.1 1998/03/19 16:43:12 ivan
165 * added conditional compilation for new/old PCI structure support;
166 * removed kernel series (2.0.x / 2.1.x) conditional compilation.
167 *
168 * Revision 2.1.1.3 1998/03/16 18:01:12 ivan
169 * cleaned up the data loss fix;
170 * fixed XON/XOFF handling once more (Cyclades-Z);
171 * general review of the driver routines;
172 * introduction of a mechanism to prevent data loss with slow
173 * printers, by forcing a delay before closing the port.
174 *
175 * Revision 2.1.1.2 1998/02/17 16:50:00 ivan
176 * fixed detection/handling of new CD1400 in Ye boards;
177 * fixed XON/XOFF handling (Cyclades-Z);
178 * fixed data loss caused by a premature port close;
179 * introduction of a flag that holds the CD1400 version ID per port
180 * (used by the CYGETCD1400VER new ioctl).
181 *
182 * Revision 2.1.1.1 1997/12/03 17:31:19 ivan
183 * Code review for the module cleanup routine;
184 * fixed RTS and DTR status report for new CD1400's in get_modem_info;
185 * includes anonymous changes regarding signal_pending.
186 *
187 * Revision 2.1 1997/11/01 17:42:41 ivan
188 * Changes in the driver to support Alpha systems (except 8Zo V_1);
189 * BREAK fix for the Cyclades-Z boards;
190 * driver inactivity control by FW implemented;
191 * introduction of flag that allows driver to take advantage of
192 * a special CD1400 feature related to HW flow control;
193 * added support for the CD1400 rev. J (Cyclom-Y boards);
194 * introduction of ioctls to:
195 * - control the rtsdtr_inv flag (Cyclom-Y);
196 * - control the rflow flag (Cyclom-Y);
197 * - adjust the polling interval (Cyclades-Z);
198 *
199 * Revision 1.36.4.33 1997/06/27 19:00:00 ivan
200 * Fixes related to kernel version conditional
201 * compilation.
202 *
203 * Revision 1.36.4.32 1997/06/14 19:30:00 ivan
204 * Compatibility issues between kernels 2.0.x and
205 * 2.1.x (mainly related to clear_bit function).
206 *
207 * Revision 1.36.4.31 1997/06/03 15:30:00 ivan
208 * Changes to define the memory window according to the
209 * board type.
210 *
211 * Revision 1.36.4.30 1997/05/16 15:30:00 daniel
212 * Changes to support new cycladesZ boards.
213 *
214 * Revision 1.36.4.29 1997/05/12 11:30:00 daniel
215 * Merge of Bentson's and Daniel's version 1.36.4.28.
216 * Corrects bug in cy_detect_pci: check if there are more
217 * ports than the number of static structs allocated.
218 * Warning message during initialization if this driver is
219 * used with the new generation of cycladesZ boards. Those
220 * will be supported only in next release of the driver.
221 * Corrects bug in cy_detect_pci and cy_detect_isa that
222 * returned wrong number of VALID boards, when a cyclomY
223 * was found with no serial modules connected.
224 * Changes to use current (2.1.x) kernel subroutine names
225 * and created macros for compilation with 2.0.x kernel,
226 * instead of the other way around.
227 *
228 * Revision 1.36.4.28 1997/05/?? ??:00:00 bentson
229 * Change queue_task_irq_off to queue_task_irq.
230 * The inline function queue_task_irq_off (tqueue.h)
231 * was removed from latest releases of 2.1.x kernel.
232 * Use of macro __init to mark the initialization
233 * routines, so memory can be reused.
234 * Also incorporate implementation of critical region
235 * in function cleanup_module() created by anonymous
236 * linuxer.
237 *
238 * Revision 1.36.4.28 1997/04/25 16:00:00 daniel
239 * Change to support new firmware that solves DCD problem:
240 * application could fail to receive SIGHUP signal when DCD
241 * varying too fast.
242 *
243 * Revision 1.36.4.27 1997/03/26 10:30:00 daniel
244 * Changed for support linux versions 2.1.X.
245 * Backward compatible with linux versions 2.0.X.
246 * Corrected illegal use of filler field in
247 * CH_CTRL struct.
248 * Deleted some debug messages.
249 *
250 * Revision 1.36.4.26 1997/02/27 12:00:00 daniel
251 * Included check for NULL tty pointer in cyz_poll.
252 *
253 * Revision 1.36.4.25 1997/02/26 16:28:30 bentson
254 * Bill Foster at Blarg! Online services noticed that
255 * some of the switch elements of -Z modem control
256 * lacked a closing "break;"
257 *
258 * Revision 1.36.4.24 1997/02/24 11:00:00 daniel
259 * Changed low water threshold for buffer xmit_buf
260 *
261 * Revision 1.36.4.23 1996/12/02 21:50:16 bentson
262 * Marcio provided fix to modem status fetch for -Z
263 *
264 * Revision 1.36.4.22 1996/10/28 22:41:17 bentson
265 * improve mapping of -Z control page (thanks to Steve
266 * Price <stevep@fa.tdktca.com> for help on this)
267 *
268 * Revision 1.36.4.21 1996/09/10 17:00:10 bentson
269 * shift from CPU-bound to memcopy in cyz_polling operation
270 *
271 * Revision 1.36.4.20 1996/09/09 18:30:32 Bentson
272 * Added support to set and report higher speeds.
273 *
274 * Revision 1.36.4.19c 1996/08/09 10:00:00 Marcio Saito
275 * Some fixes in the HW flow control for the BETA release.
276 * Don't try to register the IRQ.
277 *
278 * Revision 1.36.4.19 1996/08/08 16:23:18 Bentson
279 * make sure "cyc" appears in all kernel messages; all soft interrupts
280 * handled by same routine; recognize out-of-band reception; comment
281 * out some diagnostic messages; leave RTS/CTS flow control to hardware;
Jean Delvare33430dc2005-10-30 15:02:20 -0800282 * fix race condition in -Z buffer management; only -Y needs to explicitly
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 * flush chars; tidy up some startup messages;
284 *
285 * Revision 1.36.4.18 1996/07/25 18:57:31 bentson
286 * shift MOD_INC_USE_COUNT location to match
287 * serial.c; purge some diagnostic messages;
288 *
289 * Revision 1.36.4.17 1996/07/25 18:01:08 bentson
290 * enable modem status messages and fetch & process them; note
291 * time of last activity type for each port; set_line_char now
292 * supports more than line 0 and treats 0 baud correctly;
293 * get_modem_info senses rs_status;
294 *
295 * Revision 1.36.4.16 1996/07/20 08:43:15 bentson
296 * barely works--now's time to turn on
297 * more features 'til it breaks
298 *
299 * Revision 1.36.4.15 1996/07/19 22:30:06 bentson
300 * check more -Z board status; shorten boot message
301 *
302 * Revision 1.36.4.14 1996/07/19 22:20:37 bentson
303 * fix reference to ch_ctrl in startup; verify return
304 * values from cyz_issue_cmd and cyz_update_channel;
305 * more stuff to get modem control correct;
306 *
307 * Revision 1.36.4.13 1996/07/11 19:53:33 bentson
308 * more -Z stuff folded in; re-order changes to put -Z stuff
309 * after -Y stuff (to make changes clearer)
310 *
311 * Revision 1.36.4.12 1996/07/11 15:40:55 bentson
312 * Add code to poll Cyclades-Z. Add code to get & set RS-232 control.
313 * Add code to send break. Clear firmware ID word at startup (so
314 * that other code won't talk to inactive board).
315 *
316 * Revision 1.36.4.11 1996/07/09 05:28:29 bentson
317 * add code for -Z in set_line_char
318 *
319 * Revision 1.36.4.10 1996/07/08 19:28:37 bentson
320 * fold more -Z stuff (or in some cases, error messages)
321 * into driver; add text to "don't know what to do" messages.
322 *
323 * Revision 1.36.4.9 1996/07/08 18:38:38 bentson
324 * moved compile-time flags near top of file; cosmetic changes
325 * to narrow text (to allow 2-up printing); changed many declarations
326 * to "static" to limit external symbols; shuffled code order to
327 * coalesce -Y and -Z specific code, also to put internal functions
328 * in order of tty_driver structure; added code to recognize -Z
329 * ports (and for moment, do nothing or report error); add cy_startup
330 * to parse boot command line for extra base addresses for ISA probes;
331 *
332 * Revision 1.36.4.8 1996/06/25 17:40:19 bentson
333 * reorder some code, fix types of some vars (int vs. long),
334 * add cy_setup to support user declared ISA addresses
335 *
336 * Revision 1.36.4.7 1996/06/21 23:06:18 bentson
337 * dump ioctl based firmware load (it's now a user level
338 * program); ensure uninitialzed ports cannot be used
339 *
340 * Revision 1.36.4.6 1996/06/20 23:17:19 bentson
341 * rename vars and restructure some code
342 *
343 * Revision 1.36.4.5 1996/06/14 15:09:44 bentson
344 * get right status back after boot load
345 *
346 * Revision 1.36.4.4 1996/06/13 19:51:44 bentson
347 * successfully loads firmware
348 *
349 * Revision 1.36.4.3 1996/06/13 06:08:33 bentson
350 * add more of the code for the boot/load ioctls
351 *
352 * Revision 1.36.4.2 1996/06/11 21:00:51 bentson
353 * start to add Z functionality--starting with ioctl
354 * for loading firmware
355 *
356 * Revision 1.36.4.1 1996/06/10 18:03:02 bentson
357 * added code to recognize Z/PCI card at initialization; report
358 * presence, but card is not initialized (because firmware needs
359 * to be loaded)
360 *
361 * Revision 1.36.3.8 1996/06/07 16:29:00 bentson
362 * starting minor number at zero; added missing verify_area
363 * as noted by Heiko Eissfeldt <heiko@colossus.escape.de>
364 *
365 * Revision 1.36.3.7 1996/04/19 21:06:18 bentson
366 * remove unneeded boot message & fix CLOCAL hardware flow
367 * control (Miquel van Smoorenburg <miquels@Q.cistron.nl>);
368 * remove unused diagnostic statements; minor 0 is first;
369 *
370 * Revision 1.36.3.6 1996/03/13 13:21:17 marcio
371 * The kernel function vremap (available only in later 1.3.xx kernels)
372 * allows the access to memory addresses above the RAM. This revision
373 * of the driver supports PCI boards below 1Mb (device id 0x100) and
374 * above 1Mb (device id 0x101).
375 *
376 * Revision 1.36.3.5 1996/03/07 15:20:17 bentson
377 * Some global changes to interrupt handling spilled into
378 * this driver--mostly unused arguments in system function
379 * calls. Also added change by Marcio Saito which should
380 * reduce lost interrupts at startup by fast processors.
381 *
382 * Revision 1.36.3.4 1995/11/13 20:45:10 bentson
383 * Changes by Corey Minyard <minyard@wf-rch.cirr.com> distributed
384 * in 1.3.41 kernel to remove a possible race condition, extend
385 * some error messages, and let the driver run as a loadable module
386 * Change by Alan Wendt <alan@ez0.ezlink.com> to remove a
387 * possible race condition.
388 * Change by Marcio Saito <marcio@cyclades.com> to fix PCI addressing.
389 *
390 * Revision 1.36.3.3 1995/11/13 19:44:48 bentson
391 * Changes by Linus Torvalds in 1.3.33 kernel distribution
392 * required due to reordering of driver initialization.
393 * Drivers are now initialized *after* memory management.
394 *
395 * Revision 1.36.3.2 1995/09/08 22:07:14 bentson
396 * remove printk from ISR; fix typo
397 *
398 * Revision 1.36.3.1 1995/09/01 12:00:42 marcio
399 * Minor fixes in the PCI board support. PCI function calls in
400 * conditional compilation (CONFIG_PCI). Thanks to Jim Duncan
401 * <duncan@okay.com>. "bad serial count" message removed.
402 *
403 * Revision 1.36.3 1995/08/22 09:19:42 marcio
404 * Cyclom-Y/PCI support added. Changes in the cy_init routine and
405 * board initialization. Changes in the boot messages. The driver
406 * supports up to 4 boards and 64 ports by default.
407 *
408 * Revision 1.36.1.4 1995/03/29 06:14:14 bentson
409 * disambiguate between Cyclom-16Y and Cyclom-32Ye;
410 *
411 * Revision 1.36.1.3 1995/03/23 22:15:35 bentson
412 * add missing break in modem control block in ioctl switch statement
413 * (discovered by Michael Edward Chastain <mec@jobe.shell.portal.com>);
414 *
415 * Revision 1.36.1.2 1995/03/22 19:16:22 bentson
416 * make sure CTS flow control is set as soon as possible (thanks
417 * to note from David Lambert <lambert@chesapeake.rps.slb.com>);
418 *
419 * Revision 1.36.1.1 1995/03/13 15:44:43 bentson
420 * initialize defaults for receive threshold and stale data timeout;
421 * cosmetic changes;
422 *
423 * Revision 1.36 1995/03/10 23:33:53 bentson
424 * added support of chips 4-7 in 32 port Cyclom-Ye;
425 * fix cy_interrupt pointer dereference problem
426 * (Joe Portman <baron@aa.net>);
427 * give better error response if open is attempted on non-existent port
428 * (Zachariah Vaum <jchryslr@netcom.com>);
429 * correct command timeout (Kenneth Lerman <lerman@@seltd.newnet.com>);
430 * conditional compilation for -16Y on systems with fast, noisy bus;
431 * comment out diagnostic print function;
432 * cleaned up table of base addresses;
433 * set receiver time-out period register to correct value,
434 * set receive threshold to better default values,
435 * set chip timer to more accurate 200 Hz ticking,
436 * add code to monitor and modify receive parameters
437 * (Rik Faith <faith@cs.unc.edu> Nick Simicich
438 * <njs@scifi.emi.net>);
439 *
440 * Revision 1.35 1994/12/16 13:54:18 steffen
441 * additional patch by Marcio Saito for board detection
442 * Accidently left out in 1.34
443 *
444 * Revision 1.34 1994/12/10 12:37:12 steffen
445 * This is the corrected version as suggested by Marcio Saito
446 *
447 * Revision 1.33 1994/12/01 22:41:18 bentson
448 * add hooks to support more high speeds directly; add tytso
449 * patch regarding CLOCAL wakeups
450 *
451 * Revision 1.32 1994/11/23 19:50:04 bentson
452 * allow direct kernel control of higher signalling rates;
453 * look for cards at additional locations
454 *
455 * Revision 1.31 1994/11/16 04:33:28 bentson
456 * ANOTHER fix from Corey Minyard, minyard@wf-rch.cirr.com--
457 * a problem in chars_in_buffer has been resolved by some
458 * small changes; this should yield smoother output
459 *
460 * Revision 1.30 1994/11/16 04:28:05 bentson
461 * Fix from Corey Minyard, Internet: minyard@metronet.com,
462 * UUCP: minyard@wf-rch.cirr.com, WORK: minyardbnr.ca, to
463 * cy_hangup that appears to clear up much (all?) of the
464 * DTR glitches; also he's added/cleaned-up diagnostic messages
465 *
466 * Revision 1.29 1994/11/16 04:16:07 bentson
467 * add change proposed by Ralph Sims, ralphs@halcyon.com, to
468 * operate higher speeds in same way as other serial ports;
469 * add more serial ports (for up to two 16-port muxes).
470 *
471 * Revision 1.28 1994/11/04 00:13:16 root
472 * turn off diagnostic messages
473 *
474 * Revision 1.27 1994/11/03 23:46:37 root
475 * bunch of changes to bring driver into greater conformance
476 * with the serial.c driver (looking for missed fixes)
477 *
478 * Revision 1.26 1994/11/03 22:40:36 root
479 * automatic interrupt probing fixed.
480 *
481 * Revision 1.25 1994/11/03 20:17:02 root
482 * start to implement auto-irq
483 *
484 * Revision 1.24 1994/11/03 18:01:55 root
485 * still working on modem signals--trying not to drop DTR
486 * during the getty/login processes
487 *
488 * Revision 1.23 1994/11/03 17:51:36 root
489 * extend baud rate support; set receive threshold as function
490 * of baud rate; fix some problems with RTS/CTS;
491 *
492 * Revision 1.22 1994/11/02 18:05:35 root
493 * changed arguments to udelay to type long to get
494 * delays to be of correct duration
495 *
496 * Revision 1.21 1994/11/02 17:37:30 root
497 * employ udelay (after calibrating loops_per_second earlier
498 * in init/main.c) instead of using home-grown delay routines
499 *
500 * Revision 1.20 1994/11/02 03:11:38 root
501 * cy_chars_in_buffer forces a return value of 0 to let
502 * login work (don't know why it does); some functions
503 * that were returning EFAULT, now executes the code;
504 * more work on deciding when to disable xmit interrupts;
505 *
506 * Revision 1.19 1994/11/01 20:10:14 root
507 * define routine to start transmission interrupts (by enabling
508 * transmit interrupts); directly enable/disable modem interrupts;
509 *
510 * Revision 1.18 1994/11/01 18:40:45 bentson
511 * Don't always enable transmit interrupts in startup; interrupt on
512 * TxMpty instead of TxRdy to help characters get out before shutdown;
513 * restructure xmit interrupt to check for chars first and quit if
514 * none are ready to go; modem status (MXVRx) is upright, _not_ inverted
515 * (to my view);
516 *
517 * Revision 1.17 1994/10/30 04:39:45 bentson
518 * rename serial_driver and callout_driver to cy_serial_driver and
519 * cy_callout_driver to avoid linkage interference; initialize
520 * info->type to PORT_CIRRUS; ruggedize paranoia test; elide ->port
521 * from cyclades_port structure; add paranoia check to cy_close;
522 *
523 * Revision 1.16 1994/10/30 01:14:33 bentson
524 * change major numbers; add some _early_ return statements;
525 *
526 * Revision 1.15 1994/10/29 06:43:15 bentson
527 * final tidying up for clean compile; enable some error reporting
528 *
529 * Revision 1.14 1994/10/28 20:30:22 Bentson
530 * lots of changes to drag the driver towards the new tty_io
531 * structures and operation. not expected to work, but may
532 * compile cleanly.
533 *
534 * Revision 1.13 1994/07/21 23:08:57 Bentson
535 * add some diagnostic cruft; support 24 lines (for testing
536 * both -8Y and -16Y cards; be more thorough in servicing all
537 * chips during interrupt; add "volatile" a few places to
538 * circumvent compiler optimizations; fix base & offset
539 * computations in block_til_ready (was causing chip 0 to
540 * stop operation)
541 *
542 * Revision 1.12 1994/07/19 16:42:11 Bentson
543 * add some hackery for kernel version 1.1.8; expand
544 * error messages; refine timing for delay loops and
545 * declare loop params volatile
546 *
547 * Revision 1.11 1994/06/11 21:53:10 bentson
548 * get use of save_car right in transmit interrupt service
549 *
550 * Revision 1.10.1.1 1994/06/11 21:31:18 bentson
551 * add some diagnostic printing; try to fix save_car stuff
552 *
553 * Revision 1.10 1994/06/11 20:36:08 bentson
554 * clean up compiler warnings
555 *
556 * Revision 1.9 1994/06/11 19:42:46 bentson
557 * added a bunch of code to support modem signalling
558 *
559 * Revision 1.8 1994/06/11 17:57:07 bentson
560 * recognize break & parity error
561 *
562 * Revision 1.7 1994/06/05 05:51:34 bentson
563 * Reorder baud table to be monotonic; add cli to CP; discard
564 * incoming characters and status if the line isn't open; start to
565 * fold code into cy_throttle; start to port get_serial_info,
566 * set_serial_info, get_modem_info, set_modem_info, and send_break
567 * from serial.c; expand cy_ioctl; relocate and expand config_setup;
568 * get flow control characters from tty struct; invalidate ports w/o
569 * hardware;
570 *
571 * Revision 1.6 1994/05/31 18:42:21 bentson
572 * add a loop-breaker in the interrupt service routine;
573 * note when port is initialized so that it can be shut
574 * down under the right conditions; receive works without
575 * any obvious errors
576 *
577 * Revision 1.5 1994/05/30 00:55:02 bentson
578 * transmit works without obvious errors
579 *
580 * Revision 1.4 1994/05/27 18:46:27 bentson
581 * incorporated more code from lib_y.c; can now print short
582 * strings under interrupt control to port zero; seems to
583 * select ports/channels/lines correctly
584 *
585 * Revision 1.3 1994/05/25 22:12:44 bentson
586 * shifting from multi-port on a card to proper multiplexor
587 * data structures; added skeletons of most routines
588 *
589 * Revision 1.2 1994/05/19 13:21:43 bentson
590 * start to crib from other sources
591 *
592 */
593
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800594#define CY_VERSION "2.4"
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596/* If you need to install more boards than NR_CARDS, change the constant
597 in the definition below. No other change is necessary to support up to
598 eight boards. Beyond that you'll have to extend cy_isa_addresses. */
599
Jiri Slaby02f11752006-12-08 02:39:28 -0800600#define NR_CARDS 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602/*
603 If the total number of ports is larger than NR_PORTS, change this
604 constant in the definition below. No other change is necessary to
605 support more boards/ports. */
606
Jiri Slaby02f11752006-12-08 02:39:28 -0800607#define NR_PORTS 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609#define ZE_V1_NPORTS 64
610#define ZO_V1 0
611#define ZO_V2 1
612#define ZE_V1 2
613
614#define SERIAL_PARANOIA_CHECK
615#undef CY_DEBUG_OPEN
616#undef CY_DEBUG_THROTTLE
617#undef CY_DEBUG_OTHER
618#undef CY_DEBUG_IO
619#undef CY_DEBUG_COUNT
620#undef CY_DEBUG_DTR
621#undef CY_DEBUG_WAIT_UNTIL_SENT
622#undef CY_DEBUG_INTERRUPTS
623#undef CY_16Y_HACK
624#undef CY_ENABLE_MONITORING
625#undef CY_PCI_DEBUG
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627/*
628 * Include section
629 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630#include <linux/module.h>
631#include <linux/errno.h>
632#include <linux/signal.h>
633#include <linux/sched.h>
634#include <linux/timer.h>
635#include <linux/interrupt.h>
636#include <linux/tty.h>
Alan Cox33f0f882006-01-09 20:54:13 -0800637#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638#include <linux/serial.h>
639#include <linux/major.h>
640#include <linux/string.h>
641#include <linux/fcntl.h>
642#include <linux/ptrace.h>
643#include <linux/cyclades.h>
644#include <linux/mm.h>
645#include <linux/ioport.h>
646#include <linux/init.h>
647#include <linux/delay.h>
648#include <linux/spinlock.h>
649#include <linux/bitops.h>
650
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
665#define IS_CYC_Z(card) ((card).num_chips == -1)
666
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684static struct tty_driver *cy_serial_driver;
685
686#ifdef CONFIG_ISA
687/* This is the address lookup table. The driver will probe for
688 Cyclom-Y/ISA boards at all addresses in here. If you want the
689 driver to probe addresses at a different address, add it to
690 this table. If the driver is probing some other board and
691 causing problems, remove the offending address from this table.
692 The cy_setup function extracts additional addresses from the
693 boot options line. The form is "cyclades=address,address..."
694*/
695
696static unsigned int cy_isa_addresses[] = {
Jiri Slaby02f11752006-12-08 02:39:28 -0800697 0xD0000,
698 0xD2000,
699 0xD4000,
700 0xD6000,
701 0xD8000,
702 0xDA000,
703 0xDC000,
704 0xDE000,
705 0, 0, 0, 0, 0, 0, 0, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706};
Jiri Slaby02f11752006-12-08 02:39:28 -0800707
Tobias Klauserfe971072006-01-09 20:54:02 -0800708#define NR_ISA_ADDRS ARRAY_SIZE(cy_isa_addresses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710#ifdef MODULE
Jiri Slaby3046d502007-05-08 00:36:46 -0700711static long maddr[NR_CARDS];
712static int irq[NR_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714module_param_array(maddr, long, NULL, 0);
715module_param_array(irq, int, NULL, 0);
716#endif
717
Jiri Slaby02f11752006-12-08 02:39:28 -0800718#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720/* This is the per-card data structure containing address, irq, number of
721 channels, etc. This driver supports a maximum of NR_CARDS cards.
722*/
723static struct cyclades_card cy_card[NR_CARDS];
724
Jiri Slaby02f11752006-12-08 02:39:28 -0800725static int cy_next_channel; /* next minor available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 * This is used to look up the divisor speeds and the timeouts
729 * We're normally limited to 15 distinct baud rates. The extra
730 * are accessed via settings in info->flags.
731 * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
732 * 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
733 * HI VHI
734 * 20
735 */
736static int baud_table[] = {
Jiri Slaby02f11752006-12-08 02:39:28 -0800737 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200,
738 1800, 2400, 4800, 9600, 19200, 38400, 57600, 76800, 115200, 150000,
739 230400, 0
740};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Jiri Slaby02f11752006-12-08 02:39:28 -0800742static char baud_co_25[] = { /* 25 MHz clock option table */
743 /* value => 00 01 02 03 04 */
744 /* divide by 8 32 128 512 2048 */
745 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x02,
746 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
747};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Jiri Slaby02f11752006-12-08 02:39:28 -0800749static char baud_bpr_25[] = { /* 25 MHz baud rate period table */
750 0x00, 0xf5, 0xa3, 0x6f, 0x5c, 0x51, 0xf5, 0xa3, 0x51, 0xa3,
751 0x6d, 0x51, 0xa3, 0x51, 0xa3, 0x51, 0x36, 0x29, 0x1b, 0x15
752};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Jiri Slaby02f11752006-12-08 02:39:28 -0800754static char baud_co_60[] = { /* 60 MHz clock option table (CD1400 J) */
755 /* value => 00 01 02 03 04 */
756 /* divide by 8 32 128 512 2048 */
757 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03,
758 0x03, 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
759 0x00
760};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Jiri Slaby02f11752006-12-08 02:39:28 -0800762static char baud_bpr_60[] = { /* 60 MHz baud rate period table (CD1400 J) */
763 0x00, 0x82, 0x21, 0xff, 0xdb, 0xc3, 0x92, 0x62, 0xc3, 0x62,
764 0x41, 0xc3, 0x62, 0xc3, 0x62, 0xc3, 0x82, 0x62, 0x41, 0x32,
765 0x21
766};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Jiri Slaby02f11752006-12-08 02:39:28 -0800768static char baud_cor3[] = { /* receive threshold */
769 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
770 0x0a, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x07,
771 0x07
772};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774/*
775 * The Cyclades driver implements HW flow control as any serial driver.
776 * The cyclades_port structure member rflow and the vector rflow_thr
777 * allows us to take advantage of a special feature in the CD1400 to avoid
778 * data loss even when the system interrupt latency is too high. These flags
779 * are to be used only with very special applications. Setting these flags
780 * requires the use of a special cable (DTR and RTS reversed). In the new
781 * CD1400-based boards (rev. 6.00 or later), there is no need for special
782 * cables.
783 */
784
Jiri Slaby02f11752006-12-08 02:39:28 -0800785static char rflow_thr[] = { /* rflow threshold */
786 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
787 0x00, 0x00, 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
788 0x0a
789};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791/* The Cyclom-Ye has placed the sequential chips in non-sequential
792 * address order. This look-up table overcomes that problem.
793 */
Jiri Slaby02f11752006-12-08 02:39:28 -0800794static int cy_chip_offset[] = { 0x0000,
795 0x0400,
796 0x0800,
797 0x0C00,
798 0x0200,
799 0x0600,
800 0x0A00,
801 0x0E00
802};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804/* PCI related definitions */
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806#ifdef CONFIG_PCI
Jiri Slaby893de2d2007-02-12 00:51:49 -0800807static struct pci_device_id cy_pci_dev_id[] __devinitdata = {
808 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Lo) }, /* PCI < 1Mb */
809 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Hi) }, /* PCI > 1Mb */
810 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Lo) }, /* 4Y PCI < 1Mb */
811 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Hi) }, /* 4Y PCI > 1Mb */
812 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Lo) }, /* 8Y PCI < 1Mb */
813 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Hi) }, /* 8Y PCI > 1Mb */
814 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Lo) }, /* Z PCI < 1Mb */
815 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Hi) }, /* Z PCI > 1Mb */
816 { } /* end of table */
Jiri Slaby02f11752006-12-08 02:39:28 -0800817};
Jiri Slaby893de2d2007-02-12 00:51:49 -0800818MODULE_DEVICE_TABLE(pci, cy_pci_dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819#endif
820
821static void cy_start(struct tty_struct *);
822static void set_line_char(struct cyclades_port *);
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -0700823static int cyz_issue_cmd(struct cyclades_card *, __u32, __u8, __u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824#ifdef CONFIG_ISA
825static unsigned detect_isa_irq(void __iomem *);
Jiri Slaby02f11752006-12-08 02:39:28 -0800826#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Jiri Slaby02f11752006-12-08 02:39:28 -0800828static int cyclades_get_proc_info(char *, char **, off_t, int, int *, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830#ifndef CONFIG_CYZ_INTR
831static void cyz_poll(unsigned long);
832
833/* The Cyclades-Z polling cycle is defined by this variable */
834static long cyz_polling_cycle = CZ_DEF_POLL;
835
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700836static DEFINE_TIMER(cyz_timerlist, cyz_poll, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Jiri Slaby02f11752006-12-08 02:39:28 -0800838#else /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839static void cyz_rx_restart(unsigned long);
840static struct timer_list cyz_rx_full_timer[NR_PORTS];
Jiri Slaby02f11752006-12-08 02:39:28 -0800841#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Jiri Slaby02f11752006-12-08 02:39:28 -0800843static inline int serial_paranoia_check(struct cyclades_port *info,
844 char *name, const char *routine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846#ifdef SERIAL_PARANOIA_CHECK
Jiri Slaby02f11752006-12-08 02:39:28 -0800847 if (!info) {
Jiri Slaby21719192007-05-08 00:36:42 -0700848 printk(KERN_WARNING "cyc Warning: null cyclades_port for (%s) "
849 "in %s\n", name, routine);
Jiri Slaby02f11752006-12-08 02:39:28 -0800850 return 1;
851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Jiri Slaby02f11752006-12-08 02:39:28 -0800853 if (info->magic != CYCLADES_MAGIC) {
Jiri Slaby21719192007-05-08 00:36:42 -0700854 printk(KERN_WARNING "cyc Warning: bad magic number for serial "
855 "struct (%s) in %s\n", name, routine);
Jiri Slaby02f11752006-12-08 02:39:28 -0800856 return 1;
857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858#endif
Jiri Slaby02f11752006-12-08 02:39:28 -0800859 return 0;
860} /* serial_paranoia_check */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862/*
863 * This routine is used by the interrupt handler to schedule
864 * processing in the software interrupt portion of the driver
865 * (also known as the "bottom half"). This can be called any
866 * number of times for any channel without harm.
867 */
Jiri Slaby02f11752006-12-08 02:39:28 -0800868static inline void cy_sched_event(struct cyclades_port *info, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Jiri Slaby02f11752006-12-08 02:39:28 -0800870 info->event |= 1 << event; /* remember what kind of event and who */
871 schedule_work(&info->tqueue);
872} /* cy_sched_event */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874/*
875 * This routine is used to handle the "bottom half" processing for the
876 * serial driver, known also the "software interrupt" processing.
877 * This processing is done at the kernel interrupt level, after the
878 * cy#/_interrupt() has returned, BUT WITH INTERRUPTS TURNED ON. This
879 * is where time-consuming activities which can not be done in the
880 * interrupt driver proper are done; the interrupt driver schedules
881 * them using cy_sched_event(), and they get done here.
882 *
883 * This is done through one level of indirection--the task queue.
884 * When a hardware interrupt service routine wants service by the
885 * driver's bottom half, it enqueues the appropriate tq_struct (one
886 * per port) to the keventd work queue and sets a request flag
887 * that the work queue be processed.
888 *
889 * Although this may seem unwieldy, it gives the system a way to
890 * pass an argument (in this case the pointer to the cyclades_port
891 * structure) to the bottom half of the driver. Previous kernels
892 * had to poll every port to see if that port needed servicing.
893 */
894static void
David Howellsc4028952006-11-22 14:57:56 +0000895do_softint(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
David Howellsc4028952006-11-22 14:57:56 +0000897 struct cyclades_port *info =
898 container_of(work, struct cyclades_port, tqueue);
Jiri Slaby02f11752006-12-08 02:39:28 -0800899 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Jiri Slaby02f11752006-12-08 02:39:28 -0800901 tty = info->tty;
902 if (!tty)
903 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Jiri Slaby02f11752006-12-08 02:39:28 -0800905 if (test_and_clear_bit(Cy_EVENT_HANGUP, &info->event)) {
906 tty_hangup(info->tty);
907 wake_up_interruptible(&info->open_wait);
908 info->flags &= ~ASYNC_NORMAL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
Jiri Slaby02f11752006-12-08 02:39:28 -0800910 if (test_and_clear_bit(Cy_EVENT_OPEN_WAKEUP, &info->event))
911 wake_up_interruptible(&info->open_wait);
912#ifdef CONFIG_CYZ_INTR
Jiri Slaby39914282007-05-08 00:36:54 -0700913 if (test_and_clear_bit(Cy_EVENT_Z_RX_FULL, &info->event) &&
914 !timer_pending(&cyz_rx_full_timer[info->line]))
915 mod_timer(&cyz_rx_full_timer[info->line], jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916#endif
Jiri Slaby02f11752006-12-08 02:39:28 -0800917 if (test_and_clear_bit(Cy_EVENT_DELTA_WAKEUP, &info->event))
918 wake_up_interruptible(&info->delta_msr_wait);
919 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920#ifdef Z_WAKE
Jiri Slaby02f11752006-12-08 02:39:28 -0800921 if (test_and_clear_bit(Cy_EVENT_SHUTDOWN_WAKEUP, &info->event))
Jiri Slaby2c7fea92007-05-08 00:36:51 -0700922 complete(&info->shutdown_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923#endif
924} /* do_softint */
925
926
927/***********************************************************/
928/********* Start of block of Cyclom-Y specific code ********/
929
930/* This routine waits up to 1000 micro-seconds for the previous
931 command to the Cirrus chip to complete and then issues the
932 new command. An error is returned if the previous command
933 didn't finish within the time limit.
934
935 This function is only called from inside spinlock-protected code.
936 */
Jiri Slaby02f11752006-12-08 02:39:28 -0800937static int cyy_issue_cmd(void __iomem * base_addr, u_char cmd, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Jiri Slabyad39c302007-05-08 00:35:49 -0700939 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Jiri Slaby02f11752006-12-08 02:39:28 -0800941 /* Check to see that the previous command has completed */
942 for (i = 0; i < 100; i++) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700943 if (readb(base_addr + (CyCCR << index)) == 0) {
Jiri Slaby02f11752006-12-08 02:39:28 -0800944 break;
945 }
946 udelay(10L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
Jiri Slaby02f11752006-12-08 02:39:28 -0800948 /* if the CCR never cleared, the previous command
949 didn't finish within the "reasonable time" */
950 if (i == 100)
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800951 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Jiri Slaby02f11752006-12-08 02:39:28 -0800953 /* Issue the new command */
954 cy_writeb(base_addr + (CyCCR << index), cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800956 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -0800957} /* cyy_issue_cmd */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959#ifdef CONFIG_ISA
960/* ISA interrupt detection code */
Jiri Slaby02f11752006-12-08 02:39:28 -0800961static unsigned detect_isa_irq(void __iomem * address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Jiri Slaby02f11752006-12-08 02:39:28 -0800963 int irq;
964 unsigned long irqs, flags;
965 int save_xir, save_car;
966 int index = 0; /* IRQ probing is only for ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Jiri Slaby02f11752006-12-08 02:39:28 -0800968 /* forget possible initially masked and pending IRQ */
969 irq = probe_irq_off(probe_irq_on());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Jiri Slaby02f11752006-12-08 02:39:28 -0800971 /* Clear interrupts on the board first */
972 cy_writeb(address + (Cy_ClrIntr << index), 0);
973 /* Cy_ClrIntr is 0x1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Jiri Slaby02f11752006-12-08 02:39:28 -0800975 irqs = probe_irq_on();
976 /* Wait ... */
977 udelay(5000L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Jiri Slaby02f11752006-12-08 02:39:28 -0800979 /* Enable the Tx interrupts on the CD1400 */
980 local_irq_save(flags);
981 cy_writeb(address + (CyCAR << index), 0);
982 cyy_issue_cmd(address, CyCHAN_CTL | CyENB_XMTR, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Jiri Slaby02f11752006-12-08 02:39:28 -0800984 cy_writeb(address + (CyCAR << index), 0);
985 cy_writeb(address + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700986 readb(address + (CySRER << index)) | CyTxRdy);
Jiri Slaby02f11752006-12-08 02:39:28 -0800987 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Jiri Slaby02f11752006-12-08 02:39:28 -0800989 /* Wait ... */
990 udelay(5000L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Jiri Slaby02f11752006-12-08 02:39:28 -0800992 /* Check which interrupt is in use */
993 irq = probe_irq_off(irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Jiri Slaby02f11752006-12-08 02:39:28 -0800995 /* Clean up */
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700996 save_xir = (u_char) readb(address + (CyTIR << index));
997 save_car = readb(address + (CyCAR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -0800998 cy_writeb(address + (CyCAR << index), (save_xir & 0x3));
999 cy_writeb(address + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001000 readb(address + (CySRER << index)) & ~CyTxRdy);
Jiri Slaby02f11752006-12-08 02:39:28 -08001001 cy_writeb(address + (CyTIR << index), (save_xir & 0x3f));
1002 cy_writeb(address + (CyCAR << index), (save_car));
1003 cy_writeb(address + (Cy_ClrIntr << index), 0);
1004 /* Cy_ClrIntr is 0x1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Jiri Slaby02f11752006-12-08 02:39:28 -08001006 return (irq > 0) ? irq : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
Jiri Slaby02f11752006-12-08 02:39:28 -08001008#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Jiri Slabye9410272006-12-08 02:39:28 -08001010static void cyy_intr_chip(struct cyclades_card *cinfo, int chip,
Jiri Slaby02f11752006-12-08 02:39:28 -08001011 void __iomem * base_addr, int status, int index)
Jiri Slabye9410272006-12-08 02:39:28 -08001012{
1013 struct cyclades_port *info;
1014 struct tty_struct *tty;
Jiri Slabyad39c302007-05-08 00:35:49 -07001015 int char_count;
Jiri Slabydd025c02007-05-08 00:37:02 -07001016 int j, len, mdm_change, mdm_status, outch;
Jiri Slabye9410272006-12-08 02:39:28 -08001017 int save_xir, channel, save_car;
1018 char data;
1019
Jiri Slaby02f11752006-12-08 02:39:28 -08001020 if (status & CySRReceive) { /* reception interrupt */
Jiri Slabye9410272006-12-08 02:39:28 -08001021#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001022 printk(KERN_DEBUG "cyy_interrupt: rcvd intr, chip %d\n", chip);
Jiri Slabye9410272006-12-08 02:39:28 -08001023#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001024 /* determine the channel & change to that context */
1025 spin_lock(&cinfo->card_lock);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001026 save_xir = (u_char) readb(base_addr + (CyRIR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001027 channel = (u_short) (save_xir & CyIRChannel);
Jiri Slabydd025c02007-05-08 00:37:02 -07001028 info = &cinfo->ports[channel + chip * 4];
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001029 save_car = readb(base_addr + (CyCAR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001030 cy_writeb(base_addr + (CyCAR << index), save_xir);
Jiri Slabye9410272006-12-08 02:39:28 -08001031
Jiri Slaby02f11752006-12-08 02:39:28 -08001032 /* if there is nowhere to put the data, discard it */
Jiri Slabyf7429032007-05-08 00:36:59 -07001033 if (info->tty == NULL) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001034 j = (readb(base_addr + (CyRIVR << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001035 CyIVRMask);
1036 if (j == CyIVRRxEx) { /* exception */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001037 data = readb(base_addr + (CyRDSR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001038 } else { /* normal character reception */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001039 char_count = readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001040 (CyRDCR << index));
1041 while (char_count--) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001042 data = readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001043 (CyRDSR << index));
Jiri Slabye9410272006-12-08 02:39:28 -08001044 }
Jiri Slabye9410272006-12-08 02:39:28 -08001045 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001046 } else { /* there is an open port for this data */
1047 tty = info->tty;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001048 j = (readb(base_addr + (CyRIVR << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001049 CyIVRMask);
1050 if (j == CyIVRRxEx) { /* exception */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001051 data = readb(base_addr + (CyRDSR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001052
1053 /* For statistics only */
1054 if (data & CyBREAK)
1055 info->icount.brk++;
1056 else if (data & CyFRAME)
1057 info->icount.frame++;
1058 else if (data & CyPARITY)
1059 info->icount.parity++;
1060 else if (data & CyOVERRUN)
1061 info->icount.overrun++;
1062
1063 if (data & info->ignore_status_mask) {
1064 info->icount.rx++;
1065 return;
1066 }
1067 if (tty_buffer_request_room(tty, 1)) {
1068 if (data & info->read_status_mask) {
1069 if (data & CyBREAK) {
1070 tty_insert_flip_char(
1071 tty,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001072 readb(
Jiri Slaby02f11752006-12-08 02:39:28 -08001073 base_addr +
1074 (CyRDSR <<
1075 index)),
1076 TTY_BREAK);
1077 info->icount.rx++;
1078 if (info->flags &
1079 ASYNC_SAK) {
1080 do_SAK(tty);
1081 }
1082 } else if (data & CyFRAME) {
1083 tty_insert_flip_char(
1084 tty,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001085 readb(
Jiri Slaby02f11752006-12-08 02:39:28 -08001086 base_addr +
1087 (CyRDSR <<
1088 index)),
1089 TTY_FRAME);
1090 info->icount.rx++;
1091 info->idle_stats.
1092 frame_errs++;
1093 } else if (data & CyPARITY) {
1094 /* Pieces of seven... */
1095 tty_insert_flip_char(
1096 tty,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001097 readb(
Jiri Slaby02f11752006-12-08 02:39:28 -08001098 base_addr +
1099 (CyRDSR <<
1100 index)),
1101 TTY_PARITY);
1102 info->icount.rx++;
1103 info->idle_stats.
1104 parity_errs++;
1105 } else if (data & CyOVERRUN) {
1106 tty_insert_flip_char(
1107 tty, 0,
1108 TTY_OVERRUN);
1109 info->icount.rx++;
1110 /* If the flip buffer itself is
1111 overflowing, we still lose
1112 the next incoming character.
1113 */
1114 tty_insert_flip_char(
1115 tty,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001116 readb(
Jiri Slaby02f11752006-12-08 02:39:28 -08001117 base_addr +
1118 (CyRDSR <<
1119 index)),
1120 TTY_FRAME);
1121 info->icount.rx++;
1122 info->idle_stats.
1123 overruns++;
1124 /* These two conditions may imply */
1125 /* a normal read should be done. */
1126 /* }else if(data & CyTIMEOUT){ */
1127 /* }else if(data & CySPECHAR){ */
1128 } else {
1129 tty_insert_flip_char(
1130 tty, 0,
1131 TTY_NORMAL);
1132 info->icount.rx++;
1133 }
1134 } else {
1135 tty_insert_flip_char(tty, 0,
1136 TTY_NORMAL);
1137 info->icount.rx++;
1138 }
1139 } else {
1140 /* there was a software buffer
1141 overrun and nothing could be
1142 done about it!!! */
1143 info->icount.buf_overrun++;
1144 info->idle_stats.overruns++;
1145 }
1146 } else { /* normal character reception */
1147 /* load # chars available from the chip */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001148 char_count = readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001149 (CyRDCR << index));
Jiri Slabye9410272006-12-08 02:39:28 -08001150
1151#ifdef CY_ENABLE_MONITORING
Jiri Slaby02f11752006-12-08 02:39:28 -08001152 ++info->mon.int_count;
1153 info->mon.char_count += char_count;
1154 if (char_count > info->mon.char_max)
1155 info->mon.char_max = char_count;
1156 info->mon.char_last = char_count;
Jiri Slabye9410272006-12-08 02:39:28 -08001157#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001158 len = tty_buffer_request_room(tty, char_count);
1159 while (len--) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001160 data = readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001161 (CyRDSR << index));
1162 tty_insert_flip_char(tty, data,
1163 TTY_NORMAL);
1164 info->idle_stats.recv_bytes++;
1165 info->icount.rx++;
Jiri Slabye9410272006-12-08 02:39:28 -08001166#ifdef CY_16Y_HACK
Jiri Slaby02f11752006-12-08 02:39:28 -08001167 udelay(10L);
Jiri Slabye9410272006-12-08 02:39:28 -08001168#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001169 }
1170 info->idle_stats.recv_idle = jiffies;
1171 }
1172 tty_schedule_flip(tty);
Jiri Slabye9410272006-12-08 02:39:28 -08001173 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001174 /* end of service */
1175 cy_writeb(base_addr + (CyRIR << index), (save_xir & 0x3f));
1176 cy_writeb(base_addr + (CyCAR << index), (save_car));
1177 spin_unlock(&cinfo->card_lock);
Jiri Slabye9410272006-12-08 02:39:28 -08001178 }
1179
Jiri Slaby02f11752006-12-08 02:39:28 -08001180 if (status & CySRTransmit) { /* transmission interrupt */
1181 /* Since we only get here when the transmit buffer
1182 is empty, we know we can always stuff a dozen
1183 characters. */
Jiri Slabye9410272006-12-08 02:39:28 -08001184#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001185 printk(KERN_DEBUG "cyy_interrupt: xmit intr, chip %d\n", chip);
Jiri Slabye9410272006-12-08 02:39:28 -08001186#endif
1187
Jiri Slaby02f11752006-12-08 02:39:28 -08001188 /* determine the channel & change to that context */
1189 spin_lock(&cinfo->card_lock);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001190 save_xir = (u_char) readb(base_addr + (CyTIR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001191 channel = (u_short) (save_xir & CyIRChannel);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001192 save_car = readb(base_addr + (CyCAR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001193 cy_writeb(base_addr + (CyCAR << index), save_xir);
Jiri Slabye9410272006-12-08 02:39:28 -08001194
Jiri Slaby02f11752006-12-08 02:39:28 -08001195 /* validate the port# (as configured and open) */
Jiri Slabydd025c02007-05-08 00:37:02 -07001196 if (channel + chip * 4 >= cinfo->nports) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001197 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001198 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001199 ~CyTxRdy);
1200 goto txend;
1201 }
Jiri Slabydd025c02007-05-08 00:37:02 -07001202 info = &cinfo->ports[channel + chip * 4];
Jiri Slabyf7429032007-05-08 00:36:59 -07001203 if (info->tty == NULL) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001204 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001205 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001206 ~CyTxRdy);
1207 goto txdone;
1208 }
Jiri Slabye9410272006-12-08 02:39:28 -08001209
Jiri Slaby02f11752006-12-08 02:39:28 -08001210 /* load the on-chip space for outbound data */
1211 char_count = info->xmit_fifo_size;
Jiri Slabye9410272006-12-08 02:39:28 -08001212
Jiri Slaby02f11752006-12-08 02:39:28 -08001213 if (info->x_char) { /* send special char */
1214 outch = info->x_char;
1215 cy_writeb(base_addr + (CyTDR << index), outch);
Jiri Slabye9410272006-12-08 02:39:28 -08001216 char_count--;
Jiri Slaby02f11752006-12-08 02:39:28 -08001217 info->icount.tx++;
1218 info->x_char = 0;
Jiri Slabye9410272006-12-08 02:39:28 -08001219 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001220
1221 if (info->breakon || info->breakoff) {
1222 if (info->breakon) {
1223 cy_writeb(base_addr + (CyTDR << index), 0);
1224 cy_writeb(base_addr + (CyTDR << index), 0x81);
1225 info->breakon = 0;
1226 char_count -= 2;
1227 }
1228 if (info->breakoff) {
1229 cy_writeb(base_addr + (CyTDR << index), 0);
1230 cy_writeb(base_addr + (CyTDR << index), 0x83);
1231 info->breakoff = 0;
1232 char_count -= 2;
1233 }
1234 }
1235
1236 while (char_count-- > 0) {
1237 if (!info->xmit_cnt) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001238 if (readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001239 CyTxMpty) {
1240 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001241 readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001242 (CySRER << index)) &
1243 ~CyTxMpty);
1244 } else {
1245 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001246 (readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001247 (CySRER << index)) &
1248 ~CyTxRdy) | CyTxMpty);
1249 }
1250 goto txdone;
1251 }
Jiri Slabyf7429032007-05-08 00:36:59 -07001252 if (info->xmit_buf == NULL) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001253 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001254 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001255 ~CyTxRdy);
1256 goto txdone;
1257 }
1258 if (info->tty->stopped || info->tty->hw_stopped) {
1259 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001260 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001261 ~CyTxRdy);
1262 goto txdone;
1263 }
1264 /* Because the Embedded Transmit Commands have
1265 been enabled, we must check to see if the
1266 escape character, NULL, is being sent. If it
1267 is, we must ensure that there is room for it
1268 to be doubled in the output stream. Therefore
1269 we no longer advance the pointer when the
1270 character is fetched, but rather wait until
1271 after the check for a NULL output character.
1272 This is necessary because there may not be
1273 room for the two chars needed to send a NULL.)
1274 */
1275 outch = info->xmit_buf[info->xmit_tail];
1276 if (outch) {
1277 info->xmit_cnt--;
1278 info->xmit_tail = (info->xmit_tail + 1) &
1279 (SERIAL_XMIT_SIZE - 1);
1280 cy_writeb(base_addr + (CyTDR << index), outch);
1281 info->icount.tx++;
1282 } else {
1283 if (char_count > 1) {
1284 info->xmit_cnt--;
1285 info->xmit_tail = (info->xmit_tail + 1)&
1286 (SERIAL_XMIT_SIZE - 1);
1287 cy_writeb(base_addr + (CyTDR << index),
1288 outch);
1289 cy_writeb(base_addr + (CyTDR << index),
1290 0);
1291 info->icount.tx++;
1292 char_count--;
Jiri Slaby02f11752006-12-08 02:39:28 -08001293 }
1294 }
1295 }
Jiri Slabye9410272006-12-08 02:39:28 -08001296
1297txdone:
Jiri Slaby02f11752006-12-08 02:39:28 -08001298 if (info->xmit_cnt < WAKEUP_CHARS) {
1299 cy_sched_event(info, Cy_EVENT_WRITE_WAKEUP);
1300 }
Jiri Slabye9410272006-12-08 02:39:28 -08001301txend:
Jiri Slaby02f11752006-12-08 02:39:28 -08001302 /* end of service */
1303 cy_writeb(base_addr + (CyTIR << index), (save_xir & 0x3f));
1304 cy_writeb(base_addr + (CyCAR << index), (save_car));
1305 spin_unlock(&cinfo->card_lock);
Jiri Slabye9410272006-12-08 02:39:28 -08001306 }
1307
Jiri Slaby02f11752006-12-08 02:39:28 -08001308 if (status & CySRModem) { /* modem interrupt */
Jiri Slabye9410272006-12-08 02:39:28 -08001309
Jiri Slaby02f11752006-12-08 02:39:28 -08001310 /* determine the channel & change to that context */
1311 spin_lock(&cinfo->card_lock);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001312 save_xir = (u_char) readb(base_addr + (CyMIR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001313 channel = (u_short) (save_xir & CyIRChannel);
Jiri Slabydd025c02007-05-08 00:37:02 -07001314 info = &cinfo->ports[channel + chip * 4];
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001315 save_car = readb(base_addr + (CyCAR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001316 cy_writeb(base_addr + (CyCAR << index), save_xir);
Jiri Slabye9410272006-12-08 02:39:28 -08001317
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001318 mdm_change = readb(base_addr + (CyMISR << index));
1319 mdm_status = readb(base_addr + (CyMSVR1 << index));
Jiri Slabye9410272006-12-08 02:39:28 -08001320
Jiri Slabyf7429032007-05-08 00:36:59 -07001321 if (info->tty) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001322 if (mdm_change & CyANY_DELTA) {
1323 /* For statistics only */
1324 if (mdm_change & CyDCD)
1325 info->icount.dcd++;
1326 if (mdm_change & CyCTS)
1327 info->icount.cts++;
1328 if (mdm_change & CyDSR)
1329 info->icount.dsr++;
1330 if (mdm_change & CyRI)
1331 info->icount.rng++;
Jiri Slabye9410272006-12-08 02:39:28 -08001332
Jiri Slaby02f11752006-12-08 02:39:28 -08001333 cy_sched_event(info, Cy_EVENT_DELTA_WAKEUP);
Jiri Slabye9410272006-12-08 02:39:28 -08001334 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001335
1336 if ((mdm_change & CyDCD) &&
1337 (info->flags & ASYNC_CHECK_CD)) {
1338 if (mdm_status & CyDCD) {
1339 cy_sched_event(info,
1340 Cy_EVENT_OPEN_WAKEUP);
1341 } else {
1342 cy_sched_event(info, Cy_EVENT_HANGUP);
1343 }
Jiri Slabye9410272006-12-08 02:39:28 -08001344 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001345 if ((mdm_change & CyCTS) &&
1346 (info->flags & ASYNC_CTS_FLOW)) {
1347 if (info->tty->hw_stopped) {
1348 if (mdm_status & CyCTS) {
1349 /* cy_start isn't used
1350 because... !!! */
1351 info->tty->hw_stopped = 0;
1352 cy_writeb(base_addr +
1353 (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001354 readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001355 (CySRER <<
1356 index))|
1357 CyTxRdy);
1358 cy_sched_event(info,
1359 Cy_EVENT_WRITE_WAKEUP);
1360 }
1361 } else {
1362 if (!(mdm_status & CyCTS)) {
1363 /* cy_stop isn't used
1364 because ... !!! */
1365 info->tty->hw_stopped = 1;
1366 cy_writeb(base_addr +
1367 (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001368 readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001369 (CySRER <<
1370 index)) &
1371 ~CyTxRdy);
1372 }
1373 }
1374 }
Jiri Slabyf7429032007-05-08 00:36:59 -07001375/* if (mdm_change & CyDSR) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001376 }
1377 if (mdm_change & CyRI) {
Jiri Slabyf7429032007-05-08 00:36:59 -07001378 }*/
Jiri Slabye9410272006-12-08 02:39:28 -08001379 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001380 /* end of service */
1381 cy_writeb(base_addr + (CyMIR << index), (save_xir & 0x3f));
1382 cy_writeb(base_addr + (CyCAR << index), save_car);
1383 spin_unlock(&cinfo->card_lock);
Jiri Slabye9410272006-12-08 02:39:28 -08001384 }
1385}
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387/* The real interrupt service routine is called
1388 whenever the card wants its hand held--chars
1389 received, out buffer empty, modem change, etc.
1390 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001391static irqreturn_t cyy_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Jiri Slaby02f11752006-12-08 02:39:28 -08001393 int status;
Jiri Slabyf7429032007-05-08 00:36:59 -07001394 struct cyclades_card *cinfo = dev_id;
Jiri Slaby02f11752006-12-08 02:39:28 -08001395 void __iomem *base_addr, *card_base_addr;
1396 int chip;
1397 int index;
1398 int too_many;
1399 int had_work;
Jiri Slabye9410272006-12-08 02:39:28 -08001400
Jiri Slabyf7429032007-05-08 00:36:59 -07001401 if (unlikely(cinfo == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001403 printk(KERN_DEBUG "cyy_interrupt: spurious interrupt %d\n",irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001405 return IRQ_NONE; /* spurious interrupt */
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Jiri Slaby02f11752006-12-08 02:39:28 -08001408 card_base_addr = cinfo->base_addr;
1409 index = cinfo->bus_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Jiri Slabyf1e83c62007-05-08 00:36:24 -07001411 /* card was not initialized yet (e.g. DEBUG_SHIRQ) */
1412 if (unlikely(card_base_addr == NULL))
1413 return IRQ_HANDLED;
1414
Jiri Slaby02f11752006-12-08 02:39:28 -08001415 /* This loop checks all chips in the card. Make a note whenever
1416 _any_ chip had some work to do, as this is considered an
1417 indication that there will be more to do. Only when no chip
1418 has any work does this outermost loop exit.
1419 */
1420 do {
1421 had_work = 0;
1422 for (chip = 0; chip < cinfo->num_chips; chip++) {
1423 base_addr = cinfo->base_addr +
1424 (cy_chip_offset[chip] << index);
1425 too_many = 0;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001426 while ((status = readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001427 (CySVRR << index))) != 0x00) {
1428 had_work++;
1429 /* The purpose of the following test is to ensure that
1430 no chip can monopolize the driver. This forces the
1431 chips to be checked in a round-robin fashion (after
1432 draining each of a bunch (1000) of characters).
1433 */
1434 if (1000 < too_many++) {
1435 break;
1436 }
1437 cyy_intr_chip(cinfo, chip, base_addr, status,
1438 index);
1439 }
1440 }
1441 } while (had_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Jiri Slaby02f11752006-12-08 02:39:28 -08001443 /* clear interrupts */
1444 spin_lock(&cinfo->card_lock);
1445 cy_writeb(card_base_addr + (Cy_ClrIntr << index), 0);
1446 /* Cy_ClrIntr is 0x1800 */
1447 spin_unlock(&cinfo->card_lock);
1448 return IRQ_HANDLED;
1449} /* cyy_interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451/***********************************************************/
1452/********* End of block of Cyclom-Y specific code **********/
1453/******** Start of block of Cyclades-Z specific code *********/
1454/***********************************************************/
1455
1456static int
Jiri Slaby02f11752006-12-08 02:39:28 -08001457cyz_fetch_msg(struct cyclades_card *cinfo,
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001458 __u32 * channel, __u8 * cmd, __u32 * param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
Jiri Slaby02f11752006-12-08 02:39:28 -08001460 struct FIRM_ID __iomem *firm_id;
1461 struct ZFW_CTRL __iomem *zfw_ctrl;
1462 struct BOARD_CTRL __iomem *board_ctrl;
1463 unsigned long loc_doorbell;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Jiri Slaby02f11752006-12-08 02:39:28 -08001465 firm_id = cinfo->base_addr + ID_ADDRESS;
1466 if (!ISZLOADED(*cinfo)) {
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001467 return -1;
Jiri Slaby02f11752006-12-08 02:39:28 -08001468 }
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001469 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001470 board_ctrl = &zfw_ctrl->board_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001472 loc_doorbell = readl(&((struct RUNTIME_9060 __iomem *)
Jiri Slaby02f11752006-12-08 02:39:28 -08001473 (cinfo->ctl_addr))->loc_doorbell);
1474 if (loc_doorbell) {
1475 *cmd = (char)(0xff & loc_doorbell);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001476 *channel = readl(&board_ctrl->fwcmd_channel);
1477 *param = (__u32) readl(&board_ctrl->fwcmd_param);
Jiri Slaby02f11752006-12-08 02:39:28 -08001478 cy_writel(&((struct RUNTIME_9060 __iomem *)(cinfo->ctl_addr))->
1479 loc_doorbell, 0xffffffff);
1480 return 1;
1481 }
1482 return 0;
1483} /* cyz_fetch_msg */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485static int
Jiri Slaby02f11752006-12-08 02:39:28 -08001486cyz_issue_cmd(struct cyclades_card *cinfo,
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001487 __u32 channel, __u8 cmd, __u32 param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Jiri Slaby02f11752006-12-08 02:39:28 -08001489 struct FIRM_ID __iomem *firm_id;
1490 struct ZFW_CTRL __iomem *zfw_ctrl;
1491 struct BOARD_CTRL __iomem *board_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001492 __u32 __iomem *pci_doorbell;
Jiri Slaby02f11752006-12-08 02:39:28 -08001493 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Jiri Slaby02f11752006-12-08 02:39:28 -08001495 firm_id = cinfo->base_addr + ID_ADDRESS;
1496 if (!ISZLOADED(*cinfo)) {
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001497 return -1;
Jiri Slaby02f11752006-12-08 02:39:28 -08001498 }
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001499 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001500 board_ctrl = &zfw_ctrl->board_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Jiri Slaby02f11752006-12-08 02:39:28 -08001502 index = 0;
1503 pci_doorbell =
1504 &((struct RUNTIME_9060 __iomem *)(cinfo->ctl_addr))->pci_doorbell;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001505 while ((readl(pci_doorbell) & 0xff) != 0) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001506 if (index++ == 1000) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001507 return (int)(readl(pci_doorbell) & 0xff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001508 }
1509 udelay(50L);
1510 }
1511 cy_writel(&board_ctrl->hcmd_channel, channel);
1512 cy_writel(&board_ctrl->hcmd_param, param);
1513 cy_writel(pci_doorbell, (long)cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001515 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08001516} /* cyz_issue_cmd */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518static void
Jiri Slabyad39c302007-05-08 00:35:49 -07001519cyz_handle_rx(struct cyclades_port *info, struct CH_CTRL __iomem *ch_ctrl,
1520 struct BUF_CTRL __iomem *buf_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
Jiri Slaby875b2062007-05-08 00:36:49 -07001522 struct cyclades_card *cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001523 struct tty_struct *tty = info->tty;
Jiri Slabyad39c302007-05-08 00:35:49 -07001524 int char_count;
Jiri Slaby02f11752006-12-08 02:39:28 -08001525 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526#ifdef BLOCKMOVE
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001527 unsigned char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001529 char data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530#endif
Jiri Slabyad39c302007-05-08 00:35:49 -07001531 __u32 rx_put, rx_get, new_rx_get, rx_bufsize, rx_bufaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001533 rx_get = new_rx_get = readl(&buf_ctrl->rx_get);
1534 rx_put = readl(&buf_ctrl->rx_put);
1535 rx_bufsize = readl(&buf_ctrl->rx_bufsize);
1536 rx_bufaddr = readl(&buf_ctrl->rx_bufaddr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001537 if (rx_put >= rx_get)
1538 char_count = rx_put - rx_get;
1539 else
1540 char_count = rx_put - rx_get + rx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Jiri Slaby02f11752006-12-08 02:39:28 -08001542 if (char_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543#ifdef CY_ENABLE_MONITORING
Jiri Slaby02f11752006-12-08 02:39:28 -08001544 info->mon.int_count++;
1545 info->mon.char_count += char_count;
1546 if (char_count > info->mon.char_max)
1547 info->mon.char_max = char_count;
1548 info->mon.char_last = char_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549#endif
Jiri Slabyf7429032007-05-08 00:36:59 -07001550 if (tty == NULL) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001551 /* flush received characters */
1552 new_rx_get = (new_rx_get + char_count) &
1553 (rx_bufsize - 1);
1554 info->rflush_count++;
1555 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556#ifdef BLOCKMOVE
Jiri Slaby02f11752006-12-08 02:39:28 -08001557 /* we'd like to use memcpy(t, f, n) and memset(s, c, count)
1558 for performance, but because of buffer boundaries, there
1559 may be several steps to the operation */
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001560 while (1) {
1561 len = tty_prepare_flip_string(tty, &buf,
1562 char_count);
1563 if (!len)
1564 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001566 len = min_t(unsigned int, min(len, char_count),
1567 rx_bufsize - new_rx_get);
1568
1569 memcpy_fromio(buf, cinfo->base_addr +
1570 rx_bufaddr + new_rx_get, len);
1571
1572 new_rx_get = (new_rx_get + len) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001573 (rx_bufsize - 1);
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001574 char_count -= len;
1575 info->icount.rx += len;
1576 info->idle_stats.recv_bytes += len;
Jiri Slaby02f11752006-12-08 02:39:28 -08001577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001579 len = tty_buffer_request_room(tty, char_count);
1580 while (len--) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001581 data = readb(cinfo->base_addr + rx_bufaddr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001582 new_rx_get);
1583 new_rx_get = (new_rx_get + 1)& (rx_bufsize - 1);
1584 tty_insert_flip_char(tty, data, TTY_NORMAL);
1585 info->idle_stats.recv_bytes++;
1586 info->icount.rx++;
1587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588#endif
1589#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001590 /* Recalculate the number of chars in the RX buffer and issue
1591 a cmd in case it's higher than the RX high water mark */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001592 rx_put = readl(&buf_ctrl->rx_put);
Jiri Slaby02f11752006-12-08 02:39:28 -08001593 if (rx_put >= rx_get)
1594 char_count = rx_put - rx_get;
1595 else
1596 char_count = rx_put - rx_get + rx_bufsize;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001597 if (char_count >= (int)readl(&buf_ctrl->rx_threshold)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001598 cy_sched_event(info, Cy_EVENT_Z_RX_FULL);
1599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001601 info->idle_stats.recv_idle = jiffies;
1602 tty_schedule_flip(tty);
1603 }
1604 /* Update rx_get */
1605 cy_writel(&buf_ctrl->rx_get, new_rx_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
1608
1609static void
Jiri Slabyad39c302007-05-08 00:35:49 -07001610cyz_handle_tx(struct cyclades_port *info, struct CH_CTRL __iomem *ch_ctrl,
1611 struct BUF_CTRL __iomem *buf_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
Jiri Slaby875b2062007-05-08 00:36:49 -07001613 struct cyclades_card *cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001614 struct tty_struct *tty = info->tty;
1615 char data;
Jiri Slabyad39c302007-05-08 00:35:49 -07001616 int char_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617#ifdef BLOCKMOVE
Jiri Slaby02f11752006-12-08 02:39:28 -08001618 int small_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619#endif
Jiri Slabyad39c302007-05-08 00:35:49 -07001620 __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Jiri Slaby02f11752006-12-08 02:39:28 -08001622 if (info->xmit_cnt <= 0) /* Nothing to transmit */
1623 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001625 tx_get = readl(&buf_ctrl->tx_get);
1626 tx_put = readl(&buf_ctrl->tx_put);
1627 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
1628 tx_bufaddr = readl(&buf_ctrl->tx_bufaddr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001629 if (tx_put >= tx_get)
1630 char_count = tx_get - tx_put - 1 + tx_bufsize;
1631 else
1632 char_count = tx_get - tx_put - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Jiri Slaby02f11752006-12-08 02:39:28 -08001634 if (char_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Jiri Slabyf7429032007-05-08 00:36:59 -07001636 if (tty == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08001637 goto ztxdone;
Jiri Slaby02f11752006-12-08 02:39:28 -08001638
1639 if (info->x_char) { /* send special char */
1640 data = info->x_char;
1641
1642 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1643 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1644 info->x_char = 0;
1645 char_count--;
1646 info->icount.tx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001647 }
1648#ifdef BLOCKMOVE
1649 while (0 < (small_count = min_t(unsigned int,
1650 tx_bufsize - tx_put, min_t(unsigned int,
1651 (SERIAL_XMIT_SIZE - info->xmit_tail),
1652 min_t(unsigned int, info->xmit_cnt,
1653 char_count))))) {
1654
1655 memcpy_toio((char *)(cinfo->base_addr + tx_bufaddr +
1656 tx_put),
1657 &info->xmit_buf[info->xmit_tail],
1658 small_count);
1659
1660 tx_put = (tx_put + small_count) & (tx_bufsize - 1);
1661 char_count -= small_count;
1662 info->icount.tx += small_count;
1663 info->xmit_cnt -= small_count;
1664 info->xmit_tail = (info->xmit_tail + small_count) &
1665 (SERIAL_XMIT_SIZE - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08001666 }
1667#else
1668 while (info->xmit_cnt && char_count) {
1669 data = info->xmit_buf[info->xmit_tail];
1670 info->xmit_cnt--;
1671 info->xmit_tail = (info->xmit_tail + 1) &
1672 (SERIAL_XMIT_SIZE - 1);
1673
1674 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1675 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1676 char_count--;
1677 info->icount.tx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001680ztxdone:
1681 if (info->xmit_cnt < WAKEUP_CHARS) {
1682 cy_sched_event(info, Cy_EVENT_WRITE_WAKEUP);
1683 }
1684 /* Update tx_put */
1685 cy_writel(&buf_ctrl->tx_put, tx_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
Jiri Slaby02f11752006-12-08 02:39:28 -08001689static void cyz_handle_cmd(struct cyclades_card *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
Jiri Slaby02f11752006-12-08 02:39:28 -08001691 struct tty_struct *tty;
1692 struct cyclades_port *info;
Jiri Slabyad39c302007-05-08 00:35:49 -07001693 static struct FIRM_ID __iomem *firm_id;
1694 static struct ZFW_CTRL __iomem *zfw_ctrl;
1695 static struct BOARD_CTRL __iomem *board_ctrl;
1696 static struct CH_CTRL __iomem *ch_ctrl;
1697 static struct BUF_CTRL __iomem *buf_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001698 __u32 channel;
1699 __u8 cmd;
1700 __u32 param;
1701 __u32 hw_ver, fw_ver;
Jiri Slaby02f11752006-12-08 02:39:28 -08001702 int special_count;
1703 int delta_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
1705 firm_id = cinfo->base_addr + ID_ADDRESS;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001706 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001707 board_ctrl = &zfw_ctrl->board_ctrl;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001708 fw_ver = readl(&board_ctrl->fw_version);
1709 hw_ver = readl(&((struct RUNTIME_9060 __iomem *)(cinfo->ctl_addr))->
Jiri Slaby02f11752006-12-08 02:39:28 -08001710 mail_box_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Jiri Slaby02f11752006-12-08 02:39:28 -08001712 while (cyz_fetch_msg(cinfo, &channel, &cmd, &param) == 1) {
1713 special_count = 0;
1714 delta_count = 0;
Jiri Slabydd025c02007-05-08 00:37:02 -07001715 info = &cinfo->ports[channel];
Jiri Slabyf7429032007-05-08 00:36:59 -07001716 if ((tty = info->tty) == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08001717 continue;
Jiri Slabyf7429032007-05-08 00:36:59 -07001718
Jiri Slaby02f11752006-12-08 02:39:28 -08001719 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
1720 buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]);
1721
1722 switch (cmd) {
1723 case C_CM_PR_ERROR:
1724 tty_insert_flip_char(tty, 0, TTY_PARITY);
1725 info->icount.rx++;
1726 special_count++;
1727 break;
1728 case C_CM_FR_ERROR:
1729 tty_insert_flip_char(tty, 0, TTY_FRAME);
1730 info->icount.rx++;
1731 special_count++;
1732 break;
1733 case C_CM_RXBRK:
1734 tty_insert_flip_char(tty, 0, TTY_BREAK);
1735 info->icount.rx++;
1736 special_count++;
1737 break;
1738 case C_CM_MDCD:
1739 info->icount.dcd++;
1740 delta_count++;
1741 if (info->flags & ASYNC_CHECK_CD) {
1742 if ((fw_ver > 241 ? ((u_long) param) :
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001743 readl(&ch_ctrl->rs_status)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001744 C_RS_DCD) {
1745 cy_sched_event(info,
1746 Cy_EVENT_OPEN_WAKEUP);
1747 } else {
1748 cy_sched_event(info, Cy_EVENT_HANGUP);
1749 }
1750 }
1751 break;
1752 case C_CM_MCTS:
1753 info->icount.cts++;
1754 delta_count++;
1755 break;
1756 case C_CM_MRI:
1757 info->icount.rng++;
1758 delta_count++;
1759 break;
1760 case C_CM_MDSR:
1761 info->icount.dsr++;
1762 delta_count++;
1763 break;
1764#ifdef Z_WAKE
1765 case C_CM_IOCTLW:
1766 cy_sched_event(info, Cy_EVENT_SHUTDOWN_WAKEUP);
1767 break;
1768#endif
1769#ifdef CONFIG_CYZ_INTR
1770 case C_CM_RXHIWM:
1771 case C_CM_RXNNDT:
1772 case C_CM_INTBACK2:
1773 /* Reception Interrupt */
1774#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001775 printk(KERN_DEBUG "cyz_interrupt: rcvd intr, card %d, "
1776 "port %ld\n", info->card, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001777#endif
1778 cyz_handle_rx(info, ch_ctrl, buf_ctrl);
1779 break;
1780 case C_CM_TXBEMPTY:
1781 case C_CM_TXLOWWM:
1782 case C_CM_INTBACK:
1783 /* Transmission Interrupt */
1784#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001785 printk(KERN_DEBUG "cyz_interrupt: xmit intr, card %d, "
1786 "port %ld\n", info->card, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001787#endif
1788 cyz_handle_tx(info, ch_ctrl, buf_ctrl);
1789 break;
1790#endif /* CONFIG_CYZ_INTR */
1791 case C_CM_FATAL:
1792 /* should do something with this !!! */
1793 break;
1794 default:
1795 break;
1796 }
1797 if (delta_count)
1798 cy_sched_event(info, Cy_EVENT_DELTA_WAKEUP);
1799 if (special_count)
1800 tty_schedule_flip(tty);
1801 }
1802}
1803
1804#ifdef CONFIG_CYZ_INTR
1805static irqreturn_t cyz_interrupt(int irq, void *dev_id)
1806{
Jiri Slabyf7429032007-05-08 00:36:59 -07001807 struct cyclades_card *cinfo = dev_id;
Jiri Slaby02f11752006-12-08 02:39:28 -08001808
Jiri Slabyf7429032007-05-08 00:36:59 -07001809 if (unlikely(cinfo == NULL)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001810#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001811 printk(KERN_DEBUG "cyz_interrupt: spurious interrupt %d\n",irq);
Jiri Slaby02f11752006-12-08 02:39:28 -08001812#endif
1813 return IRQ_NONE; /* spurious interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815
Jiri Slabyf7429032007-05-08 00:36:59 -07001816 if (unlikely(!ISZLOADED(*cinfo))) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001817#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001818 printk(KERN_DEBUG "cyz_interrupt: board not yet loaded "
1819 "(IRQ%d).\n", irq);
Jiri Slaby02f11752006-12-08 02:39:28 -08001820#endif
1821 return IRQ_NONE;
1822 }
1823
1824 /* Handle the interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 cyz_handle_cmd(cinfo);
1826
Jiri Slaby02f11752006-12-08 02:39:28 -08001827 return IRQ_HANDLED;
1828} /* cyz_interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Jiri Slaby02f11752006-12-08 02:39:28 -08001830static void cyz_rx_restart(unsigned long arg)
1831{
1832 struct cyclades_port *info = (struct cyclades_port *)arg;
Jiri Slaby875b2062007-05-08 00:36:49 -07001833 struct cyclades_card *card = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001834 int retval;
Jiri Slaby875b2062007-05-08 00:36:49 -07001835 __u32 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08001836 unsigned long flags;
1837
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001838 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07001839 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK2, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001840 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001841 printk(KERN_ERR "cyc:cyz_rx_restart retval on ttyC%d was %x\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08001842 info->line, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001844 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001845}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Jiri Slaby02f11752006-12-08 02:39:28 -08001847#else /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Jiri Slaby02f11752006-12-08 02:39:28 -08001849static void cyz_poll(unsigned long arg)
1850{
1851 struct cyclades_card *cinfo;
1852 struct cyclades_port *info;
1853 struct tty_struct *tty;
Jiri Slabyad39c302007-05-08 00:35:49 -07001854 static struct FIRM_ID *firm_id;
1855 static struct ZFW_CTRL *zfw_ctrl;
1856 static struct BOARD_CTRL *board_ctrl;
1857 static struct CH_CTRL *ch_ctrl;
1858 static struct BUF_CTRL *buf_ctrl;
Jiri Slabyb7050902007-05-08 00:35:48 -07001859 unsigned long expires = jiffies + HZ;
Jiri Slaby02f11752006-12-08 02:39:28 -08001860 int card, port;
1861
Jiri Slaby02f11752006-12-08 02:39:28 -08001862 for (card = 0; card < NR_CARDS; card++) {
1863 cinfo = &cy_card[card];
1864
1865 if (!IS_CYC_Z(*cinfo))
1866 continue;
1867 if (!ISZLOADED(*cinfo))
1868 continue;
1869
1870 firm_id = cinfo->base_addr + ID_ADDRESS;
1871 zfw_ctrl = cinfo->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001872 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001873 board_ctrl = &(zfw_ctrl->board_ctrl);
1874
1875 /* Skip first polling cycle to avoid racing conditions with the FW */
1876 if (!cinfo->intr_enabled) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001877 cinfo->nports = (int)readl(&board_ctrl->n_channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001878 cinfo->intr_enabled = 1;
1879 continue;
1880 }
1881
1882 cyz_handle_cmd(cinfo);
1883
1884 for (port = 0; port < cinfo->nports; port++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07001885 info = &cinfo->ports[port];
Jiri Slaby02f11752006-12-08 02:39:28 -08001886 tty = info->tty;
1887 ch_ctrl = &(zfw_ctrl->ch_ctrl[port]);
1888 buf_ctrl = &(zfw_ctrl->buf_ctrl[port]);
1889
1890 if (!info->throttle)
1891 cyz_handle_rx(info, ch_ctrl, buf_ctrl);
1892 cyz_handle_tx(info, ch_ctrl, buf_ctrl);
1893 }
1894 /* poll every 'cyz_polling_cycle' period */
Jiri Slabyb7050902007-05-08 00:35:48 -07001895 expires = jiffies + cyz_polling_cycle;
Jiri Slaby02f11752006-12-08 02:39:28 -08001896 }
Jiri Slabyb7050902007-05-08 00:35:48 -07001897 mod_timer(&cyz_timerlist, expires);
Jiri Slaby02f11752006-12-08 02:39:28 -08001898} /* cyz_poll */
1899
1900#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902/********** End of block of Cyclades-Z specific code *********/
1903/***********************************************************/
1904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905/* This is called whenever a port becomes active;
1906 interrupts are enabled and DTR & RTS are turned on.
1907 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001908static int startup(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Jiri Slaby875b2062007-05-08 00:36:49 -07001910 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001911 unsigned long flags;
1912 int retval = 0;
1913 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07001914 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08001915 unsigned long page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Jiri Slaby02f11752006-12-08 02:39:28 -08001917 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07001918 channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Jiri Slaby02f11752006-12-08 02:39:28 -08001920 page = get_zeroed_page(GFP_KERNEL);
1921 if (!page)
1922 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001924 spin_lock_irqsave(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Jiri Slaby02f11752006-12-08 02:39:28 -08001926 if (info->flags & ASYNC_INITIALIZED) {
1927 free_page(page);
1928 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001930
1931 if (!info->type) {
1932 if (info->tty) {
1933 set_bit(TTY_IO_ERROR, &info->tty->flags);
1934 }
1935 free_page(page);
1936 goto errout;
1937 }
1938
1939 if (info->xmit_buf)
1940 free_page(page);
1941 else
1942 info->xmit_buf = (unsigned char *)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001944 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Jiri Slaby02f11752006-12-08 02:39:28 -08001946 set_line_char(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Jiri Slaby875b2062007-05-08 00:36:49 -07001948 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001949 chip = channel >> 2;
1950 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07001951 index = card->bus_index;
1952 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001955 printk(KERN_DEBUG "cyc startup card %d, chip %d, channel %d, "
1956 "base_addr %p\n",
1957 card, chip, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001958#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001959 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001960
1961 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
1962
1963 cy_writeb(base_addr + (CyRTPR << index),
1964 (info->default_timeout ? info->default_timeout : 0x02));
1965 /* 10ms rx timeout */
1966
1967 cyy_issue_cmd(base_addr, CyCHAN_CTL | CyENB_RCVR | CyENB_XMTR,
1968 index);
1969
1970 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
1971 cy_writeb(base_addr + (CyMSVR1 << index), CyRTS);
1972 cy_writeb(base_addr + (CyMSVR2 << index), CyDTR);
1973
1974#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07001975 printk(KERN_DEBUG "cyc:startup raising DTR\n");
1976 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001977 readb(base_addr + (CyMSVR1 << index)),
1978 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979#endif
1980
Jiri Slaby02f11752006-12-08 02:39:28 -08001981 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001982 readb(base_addr + (CySRER << index)) | CyRxData);
Jiri Slaby02f11752006-12-08 02:39:28 -08001983 info->flags |= ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Jiri Slaby02f11752006-12-08 02:39:28 -08001985 if (info->tty) {
1986 clear_bit(TTY_IO_ERROR, &info->tty->flags);
1987 }
1988 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1989 info->breakon = info->breakoff = 0;
1990 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
1991 info->idle_stats.in_use =
1992 info->idle_stats.recv_idle =
1993 info->idle_stats.xmit_idle = jiffies;
1994
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07001995 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001996
1997 } else {
1998 struct FIRM_ID __iomem *firm_id;
1999 struct ZFW_CTRL __iomem *zfw_ctrl;
2000 struct BOARD_CTRL __iomem *board_ctrl;
2001 struct CH_CTRL __iomem *ch_ctrl;
2002 int retval;
2003
Jiri Slaby875b2062007-05-08 00:36:49 -07002004 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002005
2006 firm_id = base_addr + ID_ADDRESS;
Jiri Slaby875b2062007-05-08 00:36:49 -07002007 if (!ISZLOADED(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002008 return -ENODEV;
2009 }
2010
Jiri Slaby875b2062007-05-08 00:36:49 -07002011 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002012 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002013 board_ctrl = &zfw_ctrl->board_ctrl;
2014 ch_ctrl = zfw_ctrl->ch_ctrl;
2015
2016#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002017 printk(KERN_DEBUG "cyc startup Z card %d, channel %d, "
2018 "base_addr %p\n", card, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08002019#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002020 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002021
2022 cy_writel(&ch_ctrl[channel].op_mode, C_CH_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023#ifdef Z_WAKE
2024#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08002025 cy_writel(&ch_ctrl[channel].intr_enable,
2026 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
2027 C_IN_RXNNDT | C_IN_IOCTLW | C_IN_MDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028#else
Jiri Slaby02f11752006-12-08 02:39:28 -08002029 cy_writel(&ch_ctrl[channel].intr_enable,
2030 C_IN_IOCTLW | C_IN_MDCD);
2031#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032#else
2033#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08002034 cy_writel(&ch_ctrl[channel].intr_enable,
2035 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
2036 C_IN_RXNNDT | C_IN_MDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037#else
Jiri Slaby02f11752006-12-08 02:39:28 -08002038 cy_writel(&ch_ctrl[channel].intr_enable, C_IN_MDCD);
2039#endif /* CONFIG_CYZ_INTR */
2040#endif /* Z_WAKE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Jiri Slaby875b2062007-05-08 00:36:49 -07002042 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002043 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002044 printk(KERN_ERR "cyc:startup(1) retval on ttyC%d was "
2045 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Jiri Slaby02f11752006-12-08 02:39:28 -08002048 /* Flush RX buffers before raising DTR and RTS */
Jiri Slaby875b2062007-05-08 00:36:49 -07002049 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_RX, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002050 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002051 printk(KERN_ERR "cyc:startup(2) retval on ttyC%d was "
2052 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Jiri Slaby02f11752006-12-08 02:39:28 -08002055 /* set timeout !!! */
2056 /* set RTS and DTR !!! */
2057 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002058 readl(&ch_ctrl[channel].rs_control) | C_RS_RTS |
Jiri Slaby02f11752006-12-08 02:39:28 -08002059 C_RS_DTR);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002060 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002061 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002062 printk(KERN_ERR "cyc:startup(3) retval on ttyC%d was "
2063 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002066 printk(KERN_DEBUG "cyc:startup raising Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067#endif
2068
Jiri Slaby02f11752006-12-08 02:39:28 -08002069 /* enable send, recv, modem !!! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Jiri Slaby02f11752006-12-08 02:39:28 -08002071 info->flags |= ASYNC_INITIALIZED;
2072 if (info->tty) {
2073 clear_bit(TTY_IO_ERROR, &info->tty->flags);
2074 }
2075 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
2076 info->breakon = info->breakoff = 0;
2077 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
2078 info->idle_stats.in_use =
2079 info->idle_stats.recv_idle =
2080 info->idle_stats.xmit_idle = jiffies;
2081
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002082 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002086 printk(KERN_DEBUG "cyc startup done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087#endif
2088 return 0;
2089
2090errout:
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002091 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08002093} /* startup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Jiri Slaby02f11752006-12-08 02:39:28 -08002095static void start_xmit(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
Jiri Slaby875b2062007-05-08 00:36:49 -07002097 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002098 unsigned long flags;
2099 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002100 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Jiri Slaby02f11752006-12-08 02:39:28 -08002102 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002103 channel = info->line - card->first_line;
2104 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002105 chip = channel >> 2;
2106 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002107 index = card->bus_index;
2108 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002110 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002111 cy_writeb(base_addr + (CyCAR << index), channel);
2112 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002113 readb(base_addr + (CySRER << index)) | CyTxRdy);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002114 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002115 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08002117 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002119 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07002120 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002121 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002122 printk(KERN_ERR "cyc:start_xmit retval on ttyC%d was "
2123 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002124 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002125 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002126#else /* CONFIG_CYZ_INTR */
2127 /* Don't have to do anything at this time */
2128#endif /* CONFIG_CYZ_INTR */
2129 }
2130} /* start_xmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132/*
2133 * This routine shuts down a serial port; interrupts are disabled,
2134 * and DTR is dropped if the hangup on close termio flag is on.
2135 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002136static void shutdown(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
Jiri Slaby875b2062007-05-08 00:36:49 -07002138 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002139 unsigned long flags;
2140 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002141 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Jiri Slaby02f11752006-12-08 02:39:28 -08002143 if (!(info->flags & ASYNC_INITIALIZED)) {
2144 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146
Jiri Slaby02f11752006-12-08 02:39:28 -08002147 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002148 channel = info->line - card->first_line;
2149 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002150 chip = channel >> 2;
2151 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002152 index = card->bus_index;
2153 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
2155#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002156 printk(KERN_DEBUG "cyc shutdown Y card %d, chip %d, "
2157 "channel %d, base_addr %p\n",
2158 card, chip, channel, base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002161 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002162
2163 /* Clear delta_msr_wait queue to avoid mem leaks. */
2164 wake_up_interruptible(&info->delta_msr_wait);
2165
2166 if (info->xmit_buf) {
2167 unsigned char *temp;
2168 temp = info->xmit_buf;
2169 info->xmit_buf = NULL;
2170 free_page((unsigned long)temp);
2171 }
2172 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
2173 if (!info->tty || (info->tty->termios->c_cflag & HUPCL)) {
2174 cy_writeb(base_addr + (CyMSVR1 << index), ~CyRTS);
2175 cy_writeb(base_addr + (CyMSVR2 << index), ~CyDTR);
2176#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002177 printk(KERN_DEBUG "cyc shutdown dropping DTR\n");
2178 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002179 readb(base_addr + (CyMSVR1 << index)),
2180 readb(base_addr + (CyMSVR2 << index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08002181#endif
2182 }
2183 cyy_issue_cmd(base_addr, CyCHAN_CTL | CyDIS_RCVR, index);
2184 /* it may be appropriate to clear _XMIT at
2185 some later date (after testing)!!! */
2186
2187 if (info->tty) {
2188 set_bit(TTY_IO_ERROR, &info->tty->flags);
2189 }
2190 info->flags &= ~ASYNC_INITIALIZED;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002191 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002192 } else {
2193 struct FIRM_ID __iomem *firm_id;
2194 struct ZFW_CTRL __iomem *zfw_ctrl;
2195 struct BOARD_CTRL __iomem *board_ctrl;
2196 struct CH_CTRL __iomem *ch_ctrl;
2197 int retval;
2198
Jiri Slaby875b2062007-05-08 00:36:49 -07002199 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002200#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002201 printk(KERN_DEBUG "cyc shutdown Z card %d, channel %d, "
2202 "base_addr %p\n", card, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08002203#endif
2204
2205 firm_id = base_addr + ID_ADDRESS;
Jiri Slaby875b2062007-05-08 00:36:49 -07002206 if (!ISZLOADED(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002207 return;
2208 }
2209
Jiri Slaby875b2062007-05-08 00:36:49 -07002210 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002211 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002212 board_ctrl = &zfw_ctrl->board_ctrl;
2213 ch_ctrl = zfw_ctrl->ch_ctrl;
2214
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002215 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002216
2217 if (info->xmit_buf) {
2218 unsigned char *temp;
2219 temp = info->xmit_buf;
2220 info->xmit_buf = NULL;
2221 free_page((unsigned long)temp);
2222 }
2223
2224 if (!info->tty || (info->tty->termios->c_cflag & HUPCL)) {
2225 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002226 (__u32)(readl(&ch_ctrl[channel].rs_control) &
Jiri Slaby02f11752006-12-08 02:39:28 -08002227 ~(C_RS_RTS | C_RS_DTR)));
Jiri Slaby875b2062007-05-08 00:36:49 -07002228 retval = cyz_issue_cmd(info->card, channel,
Jiri Slaby02f11752006-12-08 02:39:28 -08002229 C_CM_IOCTLM, 0L);
2230 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002231 printk(KERN_ERR"cyc:shutdown retval on ttyC%d "
2232 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002233 }
2234#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002235 printk(KERN_DEBUG "cyc:shutdown dropping Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002236#endif
2237 }
2238
2239 if (info->tty) {
2240 set_bit(TTY_IO_ERROR, &info->tty->flags);
2241 }
2242 info->flags &= ~ASYNC_INITIALIZED;
2243
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002244 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002245 }
2246
2247#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002248 printk(KERN_DEBUG "cyc shutdown done\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002249#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002250} /* shutdown */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252/*
2253 * ------------------------------------------------------------
2254 * cy_open() and friends
2255 * ------------------------------------------------------------
2256 */
2257
2258static int
Jiri Slaby02f11752006-12-08 02:39:28 -08002259block_til_ready(struct tty_struct *tty, struct file *filp,
2260 struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261{
Jiri Slaby02f11752006-12-08 02:39:28 -08002262 DECLARE_WAITQUEUE(wait, current);
2263 struct cyclades_card *cinfo;
2264 unsigned long flags;
2265 int chip, channel, index;
2266 int retval;
2267 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Jiri Slaby875b2062007-05-08 00:36:49 -07002269 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002270 channel = info->line - cinfo->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Jiri Slaby02f11752006-12-08 02:39:28 -08002272 /*
2273 * If the device is in the middle of being closed, then block
2274 * until it's done, and then try again.
2275 */
2276 if (tty_hung_up_p(filp) || (info->flags & ASYNC_CLOSING)) {
Jiri Slaby2c7fea92007-05-08 00:36:51 -07002277 wait_event_interruptible(info->close_wait,
2278 !(info->flags & ASYNC_CLOSING));
Jiri Slaby096dcfc2006-12-08 02:39:30 -08002279 return (info->flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
Jiri Slaby02f11752006-12-08 02:39:28 -08002280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Jiri Slaby02f11752006-12-08 02:39:28 -08002282 /*
2283 * If non-blocking mode is set, then make the check up front
2284 * and then exit.
2285 */
2286 if ((filp->f_flags & O_NONBLOCK) || (tty->flags & (1 << TTY_IO_ERROR))) {
2287 info->flags |= ASYNC_NORMAL_ACTIVE;
2288 return 0;
2289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Jiri Slaby02f11752006-12-08 02:39:28 -08002291 /*
2292 * Block waiting for the carrier detect and the line to become
2293 * free (i.e., not in use by the callout). While we are in
2294 * this loop, info->count is dropped by one, so that
2295 * cy_close() knows when to free things. We restore it upon
2296 * exit, either normal or abnormal.
2297 */
2298 retval = 0;
2299 add_wait_queue(&info->open_wait, &wait);
2300#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002301 printk(KERN_DEBUG "cyc block_til_ready before block: ttyC%d, "
2302 "count = %d\n", info->line, info->count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002303#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002304 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002305 if (!tty_hung_up_p(filp))
2306 info->count--;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002307 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002308#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002309 printk(KERN_DEBUG "cyc block_til_ready: (%d): decrementing count to "
2310 "%d\n", current->pid, info->count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002311#endif
2312 info->blocked_open++;
2313
2314 if (!IS_CYC_Z(*cinfo)) {
2315 chip = channel >> 2;
2316 channel &= 0x03;
2317 index = cinfo->bus_index;
2318 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
2319
2320 while (1) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002321 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002322 if ((tty->termios->c_cflag & CBAUD)) {
2323 cy_writeb(base_addr + (CyCAR << index),
2324 (u_char) channel);
2325 cy_writeb(base_addr + (CyMSVR1 << index),
2326 CyRTS);
2327 cy_writeb(base_addr + (CyMSVR2 << index),
2328 CyDTR);
2329#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002330 printk(KERN_DEBUG "cyc:block_til_ready raising "
2331 "DTR\n");
2332 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002333 readb(base_addr + (CyMSVR1 << index)),
2334 readb(base_addr + (CyMSVR2 << index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08002335#endif
2336 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002337 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
Jiri Slaby02f11752006-12-08 02:39:28 -08002339 set_current_state(TASK_INTERRUPTIBLE);
2340 if (tty_hung_up_p(filp) ||
2341 !(info->flags & ASYNC_INITIALIZED)) {
2342 retval = ((info->flags & ASYNC_HUP_NOTIFY) ?
2343 -EAGAIN : -ERESTARTSYS);
2344 break;
2345 }
2346
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002347 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002348 cy_writeb(base_addr + (CyCAR << index),
2349 (u_char) channel);
2350 if (!(info->flags & ASYNC_CLOSING) && (C_CLOCAL(tty) ||
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002351 (readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08002352 (CyMSVR1 << index)) & CyDCD))) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002353 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002354 break;
2355 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002356 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002357
2358 if (signal_pending(current)) {
2359 retval = -ERESTARTSYS;
2360 break;
2361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002363 printk(KERN_DEBUG "cyc block_til_ready blocking: "
2364 "ttyC%d, count = %d\n",
2365 info->line, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002367 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002369 } else {
2370 struct FIRM_ID __iomem *firm_id;
2371 struct ZFW_CTRL __iomem *zfw_ctrl;
2372 struct BOARD_CTRL __iomem *board_ctrl;
2373 struct CH_CTRL __iomem *ch_ctrl;
2374 int retval;
2375
2376 base_addr = cinfo->base_addr;
2377 firm_id = base_addr + ID_ADDRESS;
2378 if (!ISZLOADED(*cinfo)) {
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07002379 __set_current_state(TASK_RUNNING);
Jiri Slaby02f11752006-12-08 02:39:28 -08002380 remove_wait_queue(&info->open_wait, &wait);
2381 return -EINVAL;
2382 }
2383
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002384 zfw_ctrl = base_addr + (readl(&firm_id->zfwctrl_addr)& 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002385 board_ctrl = &zfw_ctrl->board_ctrl;
2386 ch_ctrl = zfw_ctrl->ch_ctrl;
2387
2388 while (1) {
2389 if ((tty->termios->c_cflag & CBAUD)) {
2390 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002391 readl(&ch_ctrl[channel].rs_control) |
2392 C_RS_RTS | C_RS_DTR);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002393 retval = cyz_issue_cmd(cinfo,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002394 channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002395 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002396 printk(KERN_ERR "cyc:block_til_ready "
2397 "retval on ttyC%d was %x\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08002398 info->line, retval);
2399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002401 printk(KERN_DEBUG "cyc:block_til_ready raising "
2402 "Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Jiri Slaby02f11752006-12-08 02:39:28 -08002406 set_current_state(TASK_INTERRUPTIBLE);
2407 if (tty_hung_up_p(filp) ||
2408 !(info->flags & ASYNC_INITIALIZED)) {
2409 retval = ((info->flags & ASYNC_HUP_NOTIFY) ?
2410 -EAGAIN : -ERESTARTSYS);
2411 break;
2412 }
2413 if (!(info->flags & ASYNC_CLOSING) && (C_CLOCAL(tty) ||
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002414 (readl(&ch_ctrl[channel].rs_status) &
Jiri Slaby02f11752006-12-08 02:39:28 -08002415 C_RS_DCD))) {
2416 break;
2417 }
2418 if (signal_pending(current)) {
2419 retval = -ERESTARTSYS;
2420 break;
2421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002423 printk(KERN_DEBUG "cyc block_til_ready blocking: "
2424 "ttyC%d, count = %d\n",
2425 info->line, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002427 schedule();
2428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 }
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07002430 __set_current_state(TASK_RUNNING);
Jiri Slaby02f11752006-12-08 02:39:28 -08002431 remove_wait_queue(&info->open_wait, &wait);
2432 if (!tty_hung_up_p(filp)) {
2433 info->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002435 printk(KERN_DEBUG "cyc:block_til_ready (%d): incrementing "
2436 "count to %d\n", current->pid, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002438 }
2439 info->blocked_open--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002441 printk(KERN_DEBUG "cyc:block_til_ready after blocking: ttyC%d, "
2442 "count = %d\n", info->line, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002444 if (retval)
2445 return retval;
2446 info->flags |= ASYNC_NORMAL_ACTIVE;
2447 return 0;
2448} /* block_til_ready */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
2450/*
2451 * This routine is called whenever a serial port is opened. It
2452 * performs the serial-specific initialization for the tty structure.
2453 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002454static int cy_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455{
Jiri Slaby02f11752006-12-08 02:39:28 -08002456 struct cyclades_port *info;
Jiri Slabydd025c02007-05-08 00:37:02 -07002457 unsigned int i;
Jiri Slaby02f11752006-12-08 02:39:28 -08002458 int retval, line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Jiri Slaby02f11752006-12-08 02:39:28 -08002460 line = tty->index;
2461 if ((line < 0) || (NR_PORTS <= line)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 return -ENODEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08002463 }
Jiri Slabydd025c02007-05-08 00:37:02 -07002464 for (i = 0; i < NR_CARDS; i++)
2465 if (line < cy_card[i].first_line + cy_card[i].nports &&
2466 line >= cy_card[i].first_line)
2467 break;
2468 if (i >= NR_CARDS)
2469 return -ENODEV;
2470 info = &cy_card[i].ports[line - cy_card[i].first_line];
Jiri Slaby02f11752006-12-08 02:39:28 -08002471 if (info->line < 0) {
2472 return -ENODEV;
2473 }
2474
2475 /* If the card's firmware hasn't been loaded,
2476 treat it as absent from the system. This
2477 will make the user pay attention.
2478 */
Jiri Slaby875b2062007-05-08 00:36:49 -07002479 if (IS_CYC_Z(*info->card)) {
2480 struct cyclades_card *cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002481 struct FIRM_ID __iomem *firm_id = cinfo->base_addr + ID_ADDRESS;
2482
2483 if (!ISZLOADED(*cinfo)) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002484 if (((ZE_V1 == readl(&((struct RUNTIME_9060 __iomem *)
Jiri Slaby02f11752006-12-08 02:39:28 -08002485 (cinfo->ctl_addr))->mail_box_0)) &&
2486 Z_FPGA_CHECK(*cinfo)) &&
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002487 (ZFIRM_HLT == readl(
Jiri Slaby02f11752006-12-08 02:39:28 -08002488 &firm_id->signature))) {
Jiri Slaby21719192007-05-08 00:36:42 -07002489 printk(KERN_ERR "cyc:Cyclades-Z Error: you "
2490 "need an external power supply for "
2491 "this number of ports.\nFirmware "
2492 "halted.\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002493 } else {
Jiri Slaby21719192007-05-08 00:36:42 -07002494 printk(KERN_ERR "cyc:Cyclades-Z firmware not "
2495 "yet loaded\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002496 }
2497 return -ENODEV;
2498 }
2499#ifdef CONFIG_CYZ_INTR
2500 else {
2501 /* In case this Z board is operating in interrupt mode, its
2502 interrupts should be enabled as soon as the first open
2503 happens to one of its ports. */
2504 if (!cinfo->intr_enabled) {
2505 struct ZFW_CTRL __iomem *zfw_ctrl;
2506 struct BOARD_CTRL __iomem *board_ctrl;
2507
2508 zfw_ctrl = cinfo->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002509 (readl(&firm_id->zfwctrl_addr) &
2510 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002511
2512 board_ctrl = &zfw_ctrl->board_ctrl;
2513
2514 /* Enable interrupts on the PLX chip */
2515 cy_writew(cinfo->ctl_addr + 0x68,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002516 readw(cinfo->ctl_addr + 0x68) | 0x0900);
Jiri Slaby02f11752006-12-08 02:39:28 -08002517 /* Enable interrupts on the FW */
2518 retval = cyz_issue_cmd(cinfo, 0,
2519 C_CM_IRQ_ENBL, 0L);
2520 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002521 printk(KERN_ERR "cyc:IRQ enable retval "
2522 "was %x\n", retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002523 }
2524 cinfo->nports =
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002525 (int)readl(&board_ctrl->n_channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08002526 cinfo->intr_enabled = 1;
2527 }
2528 }
2529#endif /* CONFIG_CYZ_INTR */
2530 /* Make sure this Z port really exists in hardware */
2531 if (info->line > (cinfo->first_line + cinfo->nports - 1))
2532 return -ENODEV;
2533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002535 printk(KERN_DEBUG "cyc:cy_open ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002537 tty->driver_data = info;
2538 info->tty = tty;
2539 if (serial_paranoia_check(info, tty->name, "cy_open")) {
2540 return -ENODEV;
2541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002543 printk(KERN_DEBUG "cyc:cy_open ttyC%d, count = %d\n", info->line,
2544 info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002546 info->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002548 printk(KERN_DEBUG "cyc:cy_open (%d): incrementing count to %d\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08002549 current->pid, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Jiri Slaby02f11752006-12-08 02:39:28 -08002552 /*
2553 * If the port is the middle of closing, bail out now
2554 */
2555 if (tty_hung_up_p(filp) || (info->flags & ASYNC_CLOSING)) {
Jiri Slaby2c7fea92007-05-08 00:36:51 -07002556 wait_event_interruptible(info->close_wait,
2557 !(info->flags & ASYNC_CLOSING));
Jiri Slaby096dcfc2006-12-08 02:39:30 -08002558 return (info->flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
Jiri Slaby02f11752006-12-08 02:39:28 -08002559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Jiri Slaby02f11752006-12-08 02:39:28 -08002561 /*
2562 * Start up serial port
2563 */
2564 retval = startup(info);
2565 if (retval) {
2566 return retval;
2567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Jiri Slaby02f11752006-12-08 02:39:28 -08002569 retval = block_til_ready(tty, filp, info);
2570 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002572 printk(KERN_DEBUG "cyc:cy_open returning after block_til_ready "
2573 "with %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002575 return retval;
2576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Jiri Slaby02f11752006-12-08 02:39:28 -08002578 info->throttle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
2580#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002581 printk(KERN_DEBUG "cyc:cy_open done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002583 return 0;
2584} /* cy_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
2586/*
2587 * cy_wait_until_sent() --- wait until the transmitter is empty
2588 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002589static void cy_wait_until_sent(struct tty_struct *tty, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590{
Jiri Slaby875b2062007-05-08 00:36:49 -07002591 struct cyclades_card *card;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002592 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002593 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002594 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08002595 unsigned long orig_jiffies;
2596 int char_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
Jiri Slaby02f11752006-12-08 02:39:28 -08002598 if (serial_paranoia_check(info, tty->name, "cy_wait_until_sent"))
2599 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Jiri Slaby02f11752006-12-08 02:39:28 -08002601 if (info->xmit_fifo_size == 0)
2602 return; /* Just in case.... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Jiri Slaby02f11752006-12-08 02:39:28 -08002604 orig_jiffies = jiffies;
2605 /*
2606 * Set the check interval to be 1/5 of the estimated time to
2607 * send a single character, and make it at least 1. The check
2608 * interval should also be less than the timeout.
2609 *
2610 * Note: we have to use pretty tight timings here to satisfy
2611 * the NIST-PCTS.
2612 */
2613 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2614 char_time = char_time / 5;
2615 if (char_time <= 0)
2616 char_time = 1;
2617 if (timeout < 0)
2618 timeout = 0;
2619 if (timeout)
2620 char_time = min(char_time, timeout);
2621 /*
2622 * If the transmitter hasn't cleared in twice the approximate
2623 * amount of time to send the entire FIFO, it probably won't
2624 * ever clear. This assumes the UART isn't doing flow
2625 * control, which is currently the case. Hence, if it ever
2626 * takes longer than info->timeout, this is probably due to a
2627 * UART bug of some kind. So, we clamp the timeout parameter at
2628 * 2*info->timeout.
2629 */
2630 if (!timeout || timeout > 2 * info->timeout)
2631 timeout = 2 * info->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002633 printk(KERN_DEBUG "In cy_wait_until_sent(%d) check=%d, jiff=%lu...",
2634 timeout, char_time, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002636 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002637 channel = (info->line) - (card->first_line);
2638 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002639 chip = channel >> 2;
2640 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002641 index = card->bus_index;
2642 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002643 while (readb(base_addr + (CySRER << index)) & CyTxRdy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002645 printk(KERN_DEBUG "Not clean (jiff=%lu)...", jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002647 if (msleep_interruptible(jiffies_to_msecs(char_time)))
2648 break;
2649 if (timeout && time_after(jiffies, orig_jiffies +
2650 timeout))
2651 break;
2652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002654 /* Run one more char cycle */
2655 msleep_interruptible(jiffies_to_msecs(char_time * 5));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002657 printk(KERN_DEBUG "Clean (jiff=%lu)...done\n", jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658#endif
2659}
2660
2661/*
2662 * This routine is called when a particular tty device is closed.
2663 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002664static void cy_close(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002666 struct cyclades_port *info = tty->driver_data;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002667 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002668 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002671 printk(KERN_DEBUG "cyc:cy_close ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672#endif
2673
Jiri Slaby02f11752006-12-08 02:39:28 -08002674 if (!info || serial_paranoia_check(info, tty->name, "cy_close")) {
2675 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002678 card = info->card;
2679
2680 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002681 /* If the TTY is being hung up, nothing to do */
2682 if (tty_hung_up_p(filp)) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002683 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002684 return;
2685 }
2686#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002687 printk(KERN_DEBUG "cyc:cy_close ttyC%d, count = %d\n", info->line,
2688 info->count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002689#endif
2690 if ((tty->count == 1) && (info->count != 1)) {
2691 /*
2692 * Uh, oh. tty->count is 1, which means that the tty
2693 * structure will be freed. Info->count should always
2694 * be one in these conditions. If it's greater than
2695 * one, we've got real problems, since it means the
2696 * serial port won't be shutdown.
2697 */
Jiri Slaby21719192007-05-08 00:36:42 -07002698 printk(KERN_ERR "cyc:cy_close: bad serial port count; "
2699 "tty->count is 1, info->count is %d\n", info->count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002700 info->count = 1;
2701 }
2702#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002703 printk(KERN_DEBUG "cyc:cy_close at (%d): decrementing count to %d\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08002704 current->pid, info->count - 1);
2705#endif
2706 if (--info->count < 0) {
2707#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002708 printk(KERN_DEBUG "cyc:cyc_close setting count to 0\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002709#endif
2710 info->count = 0;
2711 }
2712 if (info->count) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002713 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002714 return;
2715 }
2716 info->flags |= ASYNC_CLOSING;
2717
2718 /*
2719 * Now we wait for the transmit buffer to clear; and we notify
2720 * the line discipline to only process XON/XOFF characters.
2721 */
2722 tty->closing = 1;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002723 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002724 if (info->closing_wait != CY_CLOSING_WAIT_NONE) {
2725 tty_wait_until_sent(tty, info->closing_wait);
2726 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002727 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002728
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002729 if (!IS_CYC_Z(*card)) {
2730 int channel = info->line - card->first_line;
2731 int index = card->bus_index;
2732 void __iomem *base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08002733 (cy_chip_offset[channel >> 2] << index);
2734 /* Stop accepting input */
2735 channel &= 0x03;
2736 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
2737 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002738 readb(base_addr + (CySRER << index)) & ~CyRxData);
Jiri Slaby02f11752006-12-08 02:39:28 -08002739 if (info->flags & ASYNC_INITIALIZED) {
2740 /* Waiting for on-board buffers to be empty before closing
2741 the port */
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002742 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002743 cy_wait_until_sent(tty, info->timeout);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002744 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002745 }
2746 } else {
2747#ifdef Z_WAKE
2748 /* Waiting for on-board buffers to be empty before closing the port */
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002749 void __iomem *base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002750 struct FIRM_ID __iomem *firm_id = base_addr + ID_ADDRESS;
2751 struct ZFW_CTRL __iomem *zfw_ctrl =
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002752 base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002753 struct CH_CTRL __iomem *ch_ctrl = zfw_ctrl->ch_ctrl;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002754 int channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08002755 int retval;
2756
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002757 if (readl(&ch_ctrl[channel].flow_status) != C_FS_TXIDLE) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002758 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLW, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002759 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002760 printk(KERN_DEBUG "cyc:cy_close retval on "
2761 "ttyC%d was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002762 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002763 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07002764 wait_for_completion_interruptible(&info->shutdown_wait);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002765 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002766 }
2767#endif
2768 }
2769
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002770 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002771 shutdown(info);
2772 if (tty->driver->flush_buffer)
2773 tty->driver->flush_buffer(tty);
2774 tty_ldisc_flush(tty);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002775 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002776
2777 tty->closing = 0;
2778 info->event = 0;
2779 info->tty = NULL;
2780 if (info->blocked_open) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002781 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002782 if (info->close_delay) {
2783 msleep_interruptible(jiffies_to_msecs
2784 (info->close_delay));
2785 }
2786 wake_up_interruptible(&info->open_wait);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002787 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002788 }
2789 info->flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
2790 wake_up_interruptible(&info->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002793 printk(KERN_DEBUG "cyc:cy_close done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794#endif
2795
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002796 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002797} /* cy_close */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
2799/* This routine gets called when tty_write has put something into
2800 * the write_queue. The characters may come from user space or
2801 * kernel space.
2802 *
2803 * This routine will return the number of characters actually
2804 * accepted for writing.
2805 *
2806 * If the port is not already transmitting stuff, start it off by
2807 * enabling interrupts. The interrupt service routine will then
2808 * ensure that the characters are sent.
2809 * If the port is already active, there is no need to kick it.
2810 *
2811 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002812static int cy_write(struct tty_struct *tty, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002814 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002815 unsigned long flags;
2816 int c, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
2818#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002819 printk(KERN_DEBUG "cyc:cy_write ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820#endif
2821
Jiri Slaby02f11752006-12-08 02:39:28 -08002822 if (serial_paranoia_check(info, tty->name, "cy_write")) {
2823 return 0;
2824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Jiri Slaby02f11752006-12-08 02:39:28 -08002826 if (!info->xmit_buf)
2827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002829 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002830 while (1) {
2831 c = min(count, min((int)(SERIAL_XMIT_SIZE - info->xmit_cnt - 1),
2832 (int)(SERIAL_XMIT_SIZE - info->xmit_head)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Jiri Slaby02f11752006-12-08 02:39:28 -08002834 if (c <= 0)
2835 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
Jiri Slaby02f11752006-12-08 02:39:28 -08002837 memcpy(info->xmit_buf + info->xmit_head, buf, c);
2838 info->xmit_head = (info->xmit_head + c) &
2839 (SERIAL_XMIT_SIZE - 1);
2840 info->xmit_cnt += c;
2841 buf += c;
2842 count -= c;
2843 ret += c;
2844 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002845 spin_unlock_irqrestore(&info->card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Jiri Slaby02f11752006-12-08 02:39:28 -08002847 info->idle_stats.xmit_bytes += ret;
2848 info->idle_stats.xmit_idle = jiffies;
2849
2850 if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped) {
2851 start_xmit(info);
2852 }
2853 return ret;
2854} /* cy_write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
2856/*
2857 * This routine is called by the kernel to write a single
2858 * character to the tty device. If the kernel uses this routine,
2859 * it must call the flush_chars() routine (if defined) when it is
2860 * done stuffing characters into the driver. If there is no room
2861 * in the queue, the character is ignored.
2862 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002863static void cy_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002865 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002866 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
2868#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002869 printk(KERN_DEBUG "cyc:cy_put_char ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870#endif
2871
Jiri Slaby02f11752006-12-08 02:39:28 -08002872 if (serial_paranoia_check(info, tty->name, "cy_put_char"))
2873 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Jiri Slaby02f11752006-12-08 02:39:28 -08002875 if (!info->xmit_buf)
2876 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002878 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby90cc3012006-12-08 02:39:31 -08002879 if (info->xmit_cnt >= (int)(SERIAL_XMIT_SIZE - 1)) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002880 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002881 return;
2882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Jiri Slaby02f11752006-12-08 02:39:28 -08002884 info->xmit_buf[info->xmit_head++] = ch;
2885 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
2886 info->xmit_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 info->idle_stats.xmit_bytes++;
2888 info->idle_stats.xmit_idle = jiffies;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07002889 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002890} /* cy_put_char */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892/*
2893 * This routine is called by the kernel after it has written a
2894 * series of characters to the tty device using put_char().
2895 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002896static void cy_flush_chars(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002898 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002901 printk(KERN_DEBUG "cyc:cy_flush_chars ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902#endif
2903
Jiri Slaby02f11752006-12-08 02:39:28 -08002904 if (serial_paranoia_check(info, tty->name, "cy_flush_chars"))
2905 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Jiri Slaby02f11752006-12-08 02:39:28 -08002907 if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
2908 !info->xmit_buf)
2909 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Jiri Slaby02f11752006-12-08 02:39:28 -08002911 start_xmit(info);
2912} /* cy_flush_chars */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914/*
2915 * This routine returns the numbers of characters the tty driver
2916 * will accept for queuing to be written. This number is subject
2917 * to change as output buffers get emptied, or if the output flow
2918 * control is activated.
2919 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002920static int cy_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002922 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002923 int ret;
2924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002926 printk(KERN_DEBUG "cyc:cy_write_room ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927#endif
2928
Jiri Slaby02f11752006-12-08 02:39:28 -08002929 if (serial_paranoia_check(info, tty->name, "cy_write_room"))
2930 return 0;
2931 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
2932 if (ret < 0)
2933 ret = 0;
2934 return ret;
2935} /* cy_write_room */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Jiri Slaby02f11752006-12-08 02:39:28 -08002937static int cy_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938{
Jiri Slaby875b2062007-05-08 00:36:49 -07002939 struct cyclades_card *card;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002940 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07002941 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Jiri Slaby02f11752006-12-08 02:39:28 -08002943 if (serial_paranoia_check(info, tty->name, "cy_chars_in_buffer"))
2944 return 0;
2945
2946 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002947 channel = (info->line) - (card->first_line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
2949#ifdef Z_EXT_CHARS_IN_BUFFER
Jiri Slaby02f11752006-12-08 02:39:28 -08002950 if (!IS_CYC_Z(cy_card[card])) {
2951#endif /* Z_EXT_CHARS_IN_BUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002953 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
2954 info->line, info->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002956 return info->xmit_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957#ifdef Z_EXT_CHARS_IN_BUFFER
Jiri Slaby02f11752006-12-08 02:39:28 -08002958 } else {
Jiri Slabyad39c302007-05-08 00:35:49 -07002959 static struct FIRM_ID *firm_id;
2960 static struct ZFW_CTRL *zfw_ctrl;
2961 static struct CH_CTRL *ch_ctrl;
2962 static struct BUF_CTRL *buf_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08002963 int char_count;
Jiri Slabyad39c302007-05-08 00:35:49 -07002964 __u32 tx_put, tx_get, tx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
Jiri Slaby875b2062007-05-08 00:36:49 -07002966 firm_id = card->base_addr + ID_ADDRESS;
2967 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002968 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002969 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
2970 buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002972 tx_get = readl(&buf_ctrl->tx_get);
2973 tx_put = readl(&buf_ctrl->tx_put);
2974 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
Jiri Slaby02f11752006-12-08 02:39:28 -08002975 if (tx_put >= tx_get)
2976 char_count = tx_put - tx_get;
2977 else
2978 char_count = tx_put - tx_get + tx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002980 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
2981 info->line, info->xmit_cnt + char_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982#endif
Jiri Slaby096dcfc2006-12-08 02:39:30 -08002983 return info->xmit_cnt + char_count;
Jiri Slaby02f11752006-12-08 02:39:28 -08002984 }
2985#endif /* Z_EXT_CHARS_IN_BUFFER */
2986} /* cy_chars_in_buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
2988/*
2989 * ------------------------------------------------------------
2990 * cy_ioctl() and friends
2991 * ------------------------------------------------------------
2992 */
2993
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07002994static void cyy_baud_calc(struct cyclades_port *info, __u32 baud)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
Jiri Slaby02f11752006-12-08 02:39:28 -08002996 int co, co_val, bpr;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07002997 __u32 cy_clock = ((info->chip_rev >= CD1400_REV_J) ? 60000000 :
Jiri Slaby02f11752006-12-08 02:39:28 -08002998 25000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Jiri Slaby02f11752006-12-08 02:39:28 -08003000 if (baud == 0) {
3001 info->tbpr = info->tco = info->rbpr = info->rco = 0;
3002 return;
3003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Jiri Slaby02f11752006-12-08 02:39:28 -08003005 /* determine which prescaler to use */
3006 for (co = 4, co_val = 2048; co; co--, co_val >>= 2) {
3007 if (cy_clock / co_val / baud > 63)
3008 break;
3009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
Jiri Slaby02f11752006-12-08 02:39:28 -08003011 bpr = (cy_clock / co_val * 2 / baud + 1) / 2;
3012 if (bpr > 255)
3013 bpr = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Jiri Slaby02f11752006-12-08 02:39:28 -08003015 info->tbpr = info->rbpr = bpr;
3016 info->tco = info->rco = co;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017}
3018
3019/*
3020 * This routine finds or computes the various line characteristics.
3021 * It used to be called config_setup
3022 */
Jiri Slaby02f11752006-12-08 02:39:28 -08003023static void set_line_char(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024{
Jiri Slaby875b2062007-05-08 00:36:49 -07003025 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003026 unsigned long flags;
3027 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003028 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003029 unsigned cflag, iflag;
3030 unsigned short chip_number;
3031 int baud, baud_rate = 0;
3032 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
Jiri Slaby02f11752006-12-08 02:39:28 -08003034 if (!info->tty || !info->tty->termios) {
3035 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003037 if (info->line == -1) {
3038 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003040 cflag = info->tty->termios->c_cflag;
3041 iflag = info->tty->termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Jiri Slaby02f11752006-12-08 02:39:28 -08003043 /*
3044 * Set up the tty->alt_speed kludge
3045 */
3046 if (info->tty) {
3047 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
3048 info->tty->alt_speed = 57600;
3049 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
3050 info->tty->alt_speed = 115200;
3051 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
3052 info->tty->alt_speed = 230400;
3053 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
3054 info->tty->alt_speed = 460800;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Jiri Slaby02f11752006-12-08 02:39:28 -08003057 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003058 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08003059 chip_number = channel / 4;
3060
Jiri Slaby875b2062007-05-08 00:36:49 -07003061 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003062
Jiri Slaby875b2062007-05-08 00:36:49 -07003063 index = card->bus_index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003064
3065 /* baud rate */
3066 baud = tty_get_baud_rate(info->tty);
3067 if (baud == 38400 && (info->flags & ASYNC_SPD_MASK) ==
3068 ASYNC_SPD_CUST) {
3069 if (info->custom_divisor)
3070 baud_rate = info->baud / info->custom_divisor;
3071 else
3072 baud_rate = info->baud;
3073 } else if (baud > CD1400_MAX_SPEED) {
3074 baud = CD1400_MAX_SPEED;
3075 }
3076 /* find the baud index */
3077 for (i = 0; i < 20; i++) {
3078 if (baud == baud_table[i]) {
3079 break;
3080 }
3081 }
3082 if (i == 20) {
3083 i = 19; /* CD1400_MAX_SPEED */
3084 }
3085
3086 if (baud == 38400 && (info->flags & ASYNC_SPD_MASK) ==
3087 ASYNC_SPD_CUST) {
3088 cyy_baud_calc(info, baud_rate);
3089 } else {
3090 if (info->chip_rev >= CD1400_REV_J) {
3091 /* It is a CD1400 rev. J or later */
3092 info->tbpr = baud_bpr_60[i]; /* Tx BPR */
3093 info->tco = baud_co_60[i]; /* Tx CO */
3094 info->rbpr = baud_bpr_60[i]; /* Rx BPR */
3095 info->rco = baud_co_60[i]; /* Rx CO */
3096 } else {
3097 info->tbpr = baud_bpr_25[i]; /* Tx BPR */
3098 info->tco = baud_co_25[i]; /* Tx CO */
3099 info->rbpr = baud_bpr_25[i]; /* Rx BPR */
3100 info->rco = baud_co_25[i]; /* Rx CO */
3101 }
3102 }
3103 if (baud_table[i] == 134) {
3104 /* get it right for 134.5 baud */
3105 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
3106 2;
3107 } else if (baud == 38400 && (info->flags & ASYNC_SPD_MASK) ==
3108 ASYNC_SPD_CUST) {
3109 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3110 baud_rate) + 2;
3111 } else if (baud_table[i]) {
3112 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3113 baud_table[i]) + 2;
3114 /* this needs to be propagated into the card info */
3115 } else {
3116 info->timeout = 0;
3117 }
3118 /* By tradition (is it a standard?) a baud rate of zero
3119 implies the line should be/has been closed. A bit
3120 later in this routine such a test is performed. */
3121
3122 /* byte size and parity */
3123 info->cor5 = 0;
3124 info->cor4 = 0;
3125 /* receive threshold */
3126 info->cor3 = (info->default_threshold ?
3127 info->default_threshold : baud_cor3[i]);
3128 info->cor2 = CyETC;
3129 switch (cflag & CSIZE) {
3130 case CS5:
3131 info->cor1 = Cy_5_BITS;
3132 break;
3133 case CS6:
3134 info->cor1 = Cy_6_BITS;
3135 break;
3136 case CS7:
3137 info->cor1 = Cy_7_BITS;
3138 break;
3139 case CS8:
3140 info->cor1 = Cy_8_BITS;
3141 break;
3142 }
3143 if (cflag & CSTOPB) {
3144 info->cor1 |= Cy_2_STOP;
3145 }
3146 if (cflag & PARENB) {
3147 if (cflag & PARODD) {
3148 info->cor1 |= CyPARITY_O;
3149 } else {
3150 info->cor1 |= CyPARITY_E;
3151 }
3152 } else {
3153 info->cor1 |= CyPARITY_NONE;
3154 }
3155
3156 /* CTS flow control flag */
3157 if (cflag & CRTSCTS) {
3158 info->flags |= ASYNC_CTS_FLOW;
3159 info->cor2 |= CyCtsAE;
3160 } else {
3161 info->flags &= ~ASYNC_CTS_FLOW;
3162 info->cor2 &= ~CyCtsAE;
3163 }
3164 if (cflag & CLOCAL)
3165 info->flags &= ~ASYNC_CHECK_CD;
3166 else
3167 info->flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
3169 /***********************************************
3170 The hardware option, CyRtsAO, presents RTS when
3171 the chip has characters to send. Since most modems
3172 use RTS as reverse (inbound) flow control, this
3173 option is not used. If inbound flow control is
3174 necessary, DTR can be programmed to provide the
3175 appropriate signals for use with a non-standard
3176 cable. Contact Marcio Saito for details.
3177 ***********************************************/
3178
Jiri Slaby02f11752006-12-08 02:39:28 -08003179 chip = channel >> 2;
3180 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003181 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003183 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003184 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
Jiri Slaby02f11752006-12-08 02:39:28 -08003186 /* tx and rx baud rate */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
Jiri Slaby02f11752006-12-08 02:39:28 -08003188 cy_writeb(base_addr + (CyTCOR << index), info->tco);
3189 cy_writeb(base_addr + (CyTBPR << index), info->tbpr);
3190 cy_writeb(base_addr + (CyRCOR << index), info->rco);
3191 cy_writeb(base_addr + (CyRBPR << index), info->rbpr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Jiri Slaby02f11752006-12-08 02:39:28 -08003193 /* set line characteristics according configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Jiri Slaby02f11752006-12-08 02:39:28 -08003195 cy_writeb(base_addr + (CySCHR1 << index),
3196 START_CHAR(info->tty));
3197 cy_writeb(base_addr + (CySCHR2 << index), STOP_CHAR(info->tty));
3198 cy_writeb(base_addr + (CyCOR1 << index), info->cor1);
3199 cy_writeb(base_addr + (CyCOR2 << index), info->cor2);
3200 cy_writeb(base_addr + (CyCOR3 << index), info->cor3);
3201 cy_writeb(base_addr + (CyCOR4 << index), info->cor4);
3202 cy_writeb(base_addr + (CyCOR5 << index), info->cor5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Jiri Slaby02f11752006-12-08 02:39:28 -08003204 cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR1ch | CyCOR2ch |
3205 CyCOR3ch, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
Jiri Slaby02f11752006-12-08 02:39:28 -08003207 cy_writeb(base_addr + (CyCAR << index), (u_char) channel); /* !!! Is this needed? */
3208 cy_writeb(base_addr + (CyRTPR << index),
3209 (info->default_timeout ? info->default_timeout : 0x02));
3210 /* 10ms rx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
Jiri Slaby02f11752006-12-08 02:39:28 -08003212 if (C_CLOCAL(info->tty)) {
3213 /* without modem intr */
3214 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003215 readb(base_addr + (CySRER << index)) | CyMdmCh);
Jiri Slaby02f11752006-12-08 02:39:28 -08003216 /* act on 1->0 modem transitions */
3217 if ((cflag & CRTSCTS) && info->rflow) {
3218 cy_writeb(base_addr + (CyMCOR1 << index),
3219 (CyCTS | rflow_thr[i]));
3220 } else {
3221 cy_writeb(base_addr + (CyMCOR1 << index),
3222 CyCTS);
3223 }
3224 /* act on 0->1 modem transitions */
3225 cy_writeb(base_addr + (CyMCOR2 << index), CyCTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08003227 /* without modem intr */
3228 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003229 readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08003230 (CySRER << index)) | CyMdmCh);
3231 /* act on 1->0 modem transitions */
3232 if ((cflag & CRTSCTS) && info->rflow) {
3233 cy_writeb(base_addr + (CyMCOR1 << index),
3234 (CyDSR | CyCTS | CyRI | CyDCD |
3235 rflow_thr[i]));
3236 } else {
3237 cy_writeb(base_addr + (CyMCOR1 << index),
3238 CyDSR | CyCTS | CyRI | CyDCD);
3239 }
3240 /* act on 0->1 modem transitions */
3241 cy_writeb(base_addr + (CyMCOR2 << index),
3242 CyDSR | CyCTS | CyRI | CyDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003244
3245 if (i == 0) { /* baud rate is zero, turn off line */
3246 if (info->rtsdtr_inv) {
3247 cy_writeb(base_addr + (CyMSVR1 << index),
3248 ~CyRTS);
3249 } else {
3250 cy_writeb(base_addr + (CyMSVR2 << index),
3251 ~CyDTR);
3252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003254 printk(KERN_DEBUG "cyc:set_line_char dropping DTR\n");
3255 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003256 readb(base_addr + (CyMSVR1 << index)),
3257 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003259 } else {
3260 if (info->rtsdtr_inv) {
3261 cy_writeb(base_addr + (CyMSVR1 << index),
3262 CyRTS);
3263 } else {
3264 cy_writeb(base_addr + (CyMSVR2 << index),
3265 CyDTR);
3266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003268 printk(KERN_DEBUG "cyc:set_line_char raising DTR\n");
3269 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003270 readb(base_addr + (CyMSVR1 << index)),
3271 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
Jiri Slaby02f11752006-12-08 02:39:28 -08003275 if (info->tty) {
3276 clear_bit(TTY_IO_ERROR, &info->tty->flags);
3277 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003278 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08003281 struct FIRM_ID __iomem *firm_id;
3282 struct ZFW_CTRL __iomem *zfw_ctrl;
3283 struct BOARD_CTRL __iomem *board_ctrl;
3284 struct CH_CTRL __iomem *ch_ctrl;
3285 struct BUF_CTRL __iomem *buf_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07003286 __u32 sw_flow;
Jiri Slaby02f11752006-12-08 02:39:28 -08003287 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
Jiri Slaby875b2062007-05-08 00:36:49 -07003289 firm_id = card->base_addr + ID_ADDRESS;
3290 if (!ISZLOADED(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003291 return;
3292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293
Jiri Slaby875b2062007-05-08 00:36:49 -07003294 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003295 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003296 board_ctrl = &zfw_ctrl->board_ctrl;
3297 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
3298 buf_ctrl = &zfw_ctrl->buf_ctrl[channel];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Jiri Slaby02f11752006-12-08 02:39:28 -08003300 /* baud rate */
3301 baud = tty_get_baud_rate(info->tty);
3302 if (baud == 38400 && (info->flags & ASYNC_SPD_MASK) ==
3303 ASYNC_SPD_CUST) {
3304 if (info->custom_divisor)
3305 baud_rate = info->baud / info->custom_divisor;
3306 else
3307 baud_rate = info->baud;
3308 } else if (baud > CYZ_MAX_SPEED) {
3309 baud = CYZ_MAX_SPEED;
3310 }
3311 cy_writel(&ch_ctrl->comm_baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Jiri Slaby02f11752006-12-08 02:39:28 -08003313 if (baud == 134) {
3314 /* get it right for 134.5 baud */
3315 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
3316 2;
3317 } else if (baud == 38400 && (info->flags & ASYNC_SPD_MASK) ==
3318 ASYNC_SPD_CUST) {
3319 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3320 baud_rate) + 2;
3321 } else if (baud) {
3322 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3323 baud) + 2;
3324 /* this needs to be propagated into the card info */
3325 } else {
3326 info->timeout = 0;
3327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
Jiri Slaby02f11752006-12-08 02:39:28 -08003329 /* byte size and parity */
3330 switch (cflag & CSIZE) {
3331 case CS5:
3332 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS5);
3333 break;
3334 case CS6:
3335 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS6);
3336 break;
3337 case CS7:
3338 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS7);
3339 break;
3340 case CS8:
3341 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS8);
3342 break;
3343 }
3344 if (cflag & CSTOPB) {
3345 cy_writel(&ch_ctrl->comm_data_l,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003346 readl(&ch_ctrl->comm_data_l) | C_DL_2STOP);
Jiri Slaby02f11752006-12-08 02:39:28 -08003347 } else {
3348 cy_writel(&ch_ctrl->comm_data_l,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003349 readl(&ch_ctrl->comm_data_l) | C_DL_1STOP);
Jiri Slaby02f11752006-12-08 02:39:28 -08003350 }
3351 if (cflag & PARENB) {
3352 if (cflag & PARODD) {
3353 cy_writel(&ch_ctrl->comm_parity, C_PR_ODD);
3354 } else {
3355 cy_writel(&ch_ctrl->comm_parity, C_PR_EVEN);
3356 }
3357 } else {
3358 cy_writel(&ch_ctrl->comm_parity, C_PR_NONE);
3359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
Jiri Slaby02f11752006-12-08 02:39:28 -08003361 /* CTS flow control flag */
3362 if (cflag & CRTSCTS) {
3363 cy_writel(&ch_ctrl->hw_flow,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003364 readl(&ch_ctrl->hw_flow) | C_RS_CTS | C_RS_RTS);
Jiri Slaby02f11752006-12-08 02:39:28 -08003365 } else {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003366 cy_writel(&ch_ctrl->hw_flow, readl(&ch_ctrl->hw_flow) &
3367 ~(C_RS_CTS | C_RS_RTS));
Jiri Slaby02f11752006-12-08 02:39:28 -08003368 }
3369 /* As the HW flow control is done in firmware, the driver
3370 doesn't need to care about it */
3371 info->flags &= ~ASYNC_CTS_FLOW;
3372
3373 /* XON/XOFF/XANY flow control flags */
3374 sw_flow = 0;
3375 if (iflag & IXON) {
3376 sw_flow |= C_FL_OXX;
3377 if (iflag & IXANY)
3378 sw_flow |= C_FL_OIXANY;
3379 }
3380 cy_writel(&ch_ctrl->sw_flow, sw_flow);
3381
Jiri Slaby875b2062007-05-08 00:36:49 -07003382 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003383 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003384 printk(KERN_ERR "cyc:set_line_char retval on ttyC%d "
3385 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003386 }
3387
3388 /* CD sensitivity */
3389 if (cflag & CLOCAL) {
3390 info->flags &= ~ASYNC_CHECK_CD;
3391 } else {
3392 info->flags |= ASYNC_CHECK_CD;
3393 }
3394
3395 if (baud == 0) { /* baud rate is zero, turn off line */
3396 cy_writel(&ch_ctrl->rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003397 readl(&ch_ctrl->rs_control) & ~C_RS_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003399 printk(KERN_DEBUG "cyc:set_line_char dropping Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003401 } else {
3402 cy_writel(&ch_ctrl->rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003403 readl(&ch_ctrl->rs_control) | C_RS_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003405 printk(KERN_DEBUG "cyc:set_line_char raising Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Jiri Slaby875b2062007-05-08 00:36:49 -07003409 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM,0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003410 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003411 printk(KERN_ERR "cyc:set_line_char(2) retval on ttyC%d "
3412 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
Jiri Slaby02f11752006-12-08 02:39:28 -08003415 if (info->tty) {
3416 clear_bit(TTY_IO_ERROR, &info->tty->flags);
3417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003419} /* set_line_char */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420
3421static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003422get_serial_info(struct cyclades_port *info,
3423 struct serial_struct __user * retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424{
Jiri Slaby02f11752006-12-08 02:39:28 -08003425 struct serial_struct tmp;
Jiri Slaby875b2062007-05-08 00:36:49 -07003426 struct cyclades_card *cinfo = info->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
Jiri Slaby02f11752006-12-08 02:39:28 -08003428 if (!retinfo)
3429 return -EFAULT;
3430 memset(&tmp, 0, sizeof(tmp));
3431 tmp.type = info->type;
3432 tmp.line = info->line;
Jiri Slaby875b2062007-05-08 00:36:49 -07003433 tmp.port = (info->card - cy_card) * 0x100 + info->line -
3434 cinfo->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08003435 tmp.irq = cinfo->irq;
3436 tmp.flags = info->flags;
3437 tmp.close_delay = info->close_delay;
Andrew Mortond5dedf92007-03-05 00:30:04 -08003438 tmp.closing_wait = info->closing_wait;
Jiri Slaby02f11752006-12-08 02:39:28 -08003439 tmp.baud_base = info->baud;
3440 tmp.custom_divisor = info->custom_divisor;
3441 tmp.hub6 = 0; /*!!! */
3442 return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
3443} /* get_serial_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
3445static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003446set_serial_info(struct cyclades_port *info,
3447 struct serial_struct __user * new_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448{
Jiri Slaby02f11752006-12-08 02:39:28 -08003449 struct serial_struct new_serial;
3450 struct cyclades_port old_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
Jiri Slaby02f11752006-12-08 02:39:28 -08003452 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
3453 return -EFAULT;
3454 old_info = *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Jiri Slaby02f11752006-12-08 02:39:28 -08003456 if (!capable(CAP_SYS_ADMIN)) {
3457 if (new_serial.close_delay != info->close_delay ||
3458 new_serial.baud_base != info->baud ||
3459 (new_serial.flags & ASYNC_FLAGS &
3460 ~ASYNC_USR_MASK) !=
3461 (info->flags & ASYNC_FLAGS & ~ASYNC_USR_MASK))
3462 return -EPERM;
3463 info->flags = (info->flags & ~ASYNC_USR_MASK) |
3464 (new_serial.flags & ASYNC_USR_MASK);
3465 info->baud = new_serial.baud_base;
3466 info->custom_divisor = new_serial.custom_divisor;
3467 goto check_and_exit;
3468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469
Jiri Slaby02f11752006-12-08 02:39:28 -08003470 /*
3471 * OK, past this point, all the error checking has been done.
3472 * At this point, we start making changes.....
3473 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Jiri Slaby02f11752006-12-08 02:39:28 -08003475 info->baud = new_serial.baud_base;
3476 info->custom_divisor = new_serial.custom_divisor;
3477 info->flags = (info->flags & ~ASYNC_FLAGS) |
3478 (new_serial.flags & ASYNC_FLAGS);
3479 info->close_delay = new_serial.close_delay * HZ / 100;
3480 info->closing_wait = new_serial.closing_wait * HZ / 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
3482check_and_exit:
Jiri Slaby02f11752006-12-08 02:39:28 -08003483 if (info->flags & ASYNC_INITIALIZED) {
3484 set_line_char(info);
3485 return 0;
3486 } else {
3487 return startup(info);
3488 }
3489} /* set_serial_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
3491/*
3492 * get_lsr_info - get line status register info
3493 *
3494 * Purpose: Let user call ioctl() to get info when the UART physically
3495 * is emptied. On bus types like RS485, the transmitter must
3496 * release the bus after transmitting. This must be done when
3497 * the transmit shift register is empty, not be done when the
3498 * transmit holding register is empty. This functionality
3499 * allows an RS485 driver to be written in user space.
3500 */
Jiri Slaby02f11752006-12-08 02:39:28 -08003501static int get_lsr_info(struct cyclades_port *info, unsigned int __user * value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502{
Jiri Slaby875b2062007-05-08 00:36:49 -07003503 struct cyclades_card *card;
3504 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003505 unsigned char status;
3506 unsigned int result;
3507 unsigned long flags;
3508 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
Jiri Slaby02f11752006-12-08 02:39:28 -08003510 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003511 channel = (info->line) - (card->first_line);
3512 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003513 chip = channel >> 2;
3514 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003515 index = card->bus_index;
3516 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003518 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003519 status = readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08003520 (CyTxRdy | CyTxMpty);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003521 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003522 result = (status ? 0 : TIOCSER_TEMT);
3523 } else {
3524 /* Not supported yet */
3525 return -EINVAL;
3526 }
3527 return put_user(result, (unsigned long __user *)value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528}
3529
Jiri Slaby02f11752006-12-08 02:39:28 -08003530static int cy_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003532 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07003533 struct cyclades_card *card;
3534 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003535 void __iomem *base_addr;
3536 unsigned long flags;
3537 unsigned char status;
3538 unsigned long lstatus;
3539 unsigned int result;
3540 struct FIRM_ID __iomem *firm_id;
3541 struct ZFW_CTRL __iomem *zfw_ctrl;
3542 struct BOARD_CTRL __iomem *board_ctrl;
3543 struct CH_CTRL __iomem *ch_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
Jiri Slaby02f11752006-12-08 02:39:28 -08003545 if (serial_paranoia_check(info, tty->name, __FUNCTION__))
3546 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
Jiri Slaby02f11752006-12-08 02:39:28 -08003548 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003549 channel = info->line - card->first_line;
3550 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003551 chip = channel >> 2;
3552 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003553 index = card->bus_index;
3554 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003556 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003557 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003558 status = readb(base_addr + (CyMSVR1 << index));
3559 status |= readb(base_addr + (CyMSVR2 << index));
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003560 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561
Jiri Slaby02f11752006-12-08 02:39:28 -08003562 if (info->rtsdtr_inv) {
3563 result = ((status & CyRTS) ? TIOCM_DTR : 0) |
3564 ((status & CyDTR) ? TIOCM_RTS : 0);
3565 } else {
3566 result = ((status & CyRTS) ? TIOCM_RTS : 0) |
3567 ((status & CyDTR) ? TIOCM_DTR : 0);
3568 }
3569 result |= ((status & CyDCD) ? TIOCM_CAR : 0) |
3570 ((status & CyRI) ? TIOCM_RNG : 0) |
3571 ((status & CyDSR) ? TIOCM_DSR : 0) |
3572 ((status & CyCTS) ? TIOCM_CTS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 } else {
Jiri Slaby875b2062007-05-08 00:36:49 -07003574 base_addr = card->base_addr;
3575 firm_id = card->base_addr + ID_ADDRESS;
3576 if (ISZLOADED(*card)) {
3577 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003578 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003579 board_ctrl = &zfw_ctrl->board_ctrl;
3580 ch_ctrl = zfw_ctrl->ch_ctrl;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003581 lstatus = readl(&ch_ctrl[channel].rs_status);
Jiri Slaby02f11752006-12-08 02:39:28 -08003582 result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) |
3583 ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) |
3584 ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) |
3585 ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) |
3586 ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) |
3587 ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0);
3588 } else {
3589 result = 0;
3590 return -ENODEV;
3591 }
3592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003594 return result;
3595} /* cy_tiomget */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596
3597static int
3598cy_tiocmset(struct tty_struct *tty, struct file *file,
Jiri Slaby02f11752006-12-08 02:39:28 -08003599 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003601 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07003602 struct cyclades_card *card;
3603 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003604 void __iomem *base_addr;
3605 unsigned long flags;
3606 struct FIRM_ID __iomem *firm_id;
3607 struct ZFW_CTRL __iomem *zfw_ctrl;
3608 struct BOARD_CTRL __iomem *board_ctrl;
3609 struct CH_CTRL __iomem *ch_ctrl;
3610 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
Jiri Slaby02f11752006-12-08 02:39:28 -08003612 if (serial_paranoia_check(info, tty->name, __FUNCTION__))
3613 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Jiri Slaby02f11752006-12-08 02:39:28 -08003615 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003616 channel = (info->line) - (card->first_line);
3617 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003618 chip = channel >> 2;
3619 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003620 index = card->bus_index;
3621 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
Jiri Slaby02f11752006-12-08 02:39:28 -08003623 if (set & TIOCM_RTS) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003624 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003625 cy_writeb(base_addr + (CyCAR << index),
3626 (u_char) channel);
3627 if (info->rtsdtr_inv) {
3628 cy_writeb(base_addr + (CyMSVR2 << index),
3629 CyDTR);
3630 } else {
3631 cy_writeb(base_addr + (CyMSVR1 << index),
3632 CyRTS);
3633 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003634 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003635 }
3636 if (clear & TIOCM_RTS) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003637 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003638 cy_writeb(base_addr + (CyCAR << index),
3639 (u_char) channel);
3640 if (info->rtsdtr_inv) {
3641 cy_writeb(base_addr + (CyMSVR2 << index),
3642 ~CyDTR);
3643 } else {
3644 cy_writeb(base_addr + (CyMSVR1 << index),
3645 ~CyRTS);
3646 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003647 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003648 }
3649 if (set & TIOCM_DTR) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003650 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003651 cy_writeb(base_addr + (CyCAR << index),
3652 (u_char) channel);
3653 if (info->rtsdtr_inv) {
3654 cy_writeb(base_addr + (CyMSVR1 << index),
3655 CyRTS);
3656 } else {
3657 cy_writeb(base_addr + (CyMSVR2 << index),
3658 CyDTR);
3659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003661 printk(KERN_DEBUG "cyc:set_modem_info raising DTR\n");
3662 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003663 readb(base_addr + (CyMSVR1 << index)),
3664 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003666 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003667 }
3668 if (clear & TIOCM_DTR) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003669 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003670 cy_writeb(base_addr + (CyCAR << index),
3671 (u_char) channel);
3672 if (info->rtsdtr_inv) {
3673 cy_writeb(base_addr + (CyMSVR1 << index),
3674 ~CyRTS);
3675 } else {
3676 cy_writeb(base_addr + (CyMSVR2 << index),
3677 ~CyDTR);
3678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
3680#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003681 printk(KERN_DEBUG "cyc:set_modem_info dropping DTR\n");
3682 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003683 readb(base_addr + (CyMSVR1 << index)),
3684 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003686 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003687 }
3688 } else {
Jiri Slaby875b2062007-05-08 00:36:49 -07003689 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08003690
Jiri Slaby875b2062007-05-08 00:36:49 -07003691 firm_id = card->base_addr + ID_ADDRESS;
3692 if (ISZLOADED(*card)) {
3693 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003694 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003695 board_ctrl = &zfw_ctrl->board_ctrl;
3696 ch_ctrl = zfw_ctrl->ch_ctrl;
3697
3698 if (set & TIOCM_RTS) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003699 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003700 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003701 readl(&ch_ctrl[channel].rs_control) |
3702 C_RS_RTS);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003703 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003704 }
3705 if (clear & TIOCM_RTS) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003706 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003707 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003708 readl(&ch_ctrl[channel].rs_control) &
3709 ~C_RS_RTS);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003710 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003711 }
3712 if (set & TIOCM_DTR) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003713 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003714 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003715 readl(&ch_ctrl[channel].rs_control) |
3716 C_RS_DTR);
Jiri Slaby02f11752006-12-08 02:39:28 -08003717#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003718 printk(KERN_DEBUG "cyc:set_modem_info raising "
3719 "Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08003720#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003721 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003722 }
3723 if (clear & TIOCM_DTR) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003724 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003725 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003726 readl(&ch_ctrl[channel].rs_control) &
3727 ~C_RS_DTR);
Jiri Slaby02f11752006-12-08 02:39:28 -08003728#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003729 printk(KERN_DEBUG "cyc:set_modem_info clearing "
3730 "Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08003731#endif
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003732 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003733 }
3734 } else {
3735 return -ENODEV;
3736 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003737 spin_lock_irqsave(&card->card_lock, flags);
3738 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003739 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003740 printk(KERN_ERR "cyc:set_modem_info retval on ttyC%d "
3741 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003742 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003743 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003745 return 0;
3746} /* cy_tiocmset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
3748/*
3749 * cy_break() --- routine which turns the break handling on or off
3750 */
Jiri Slaby02f11752006-12-08 02:39:28 -08003751static void cy_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003753 struct cyclades_port *info = tty->driver_data;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003754 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003755 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Jiri Slaby02f11752006-12-08 02:39:28 -08003757 if (serial_paranoia_check(info, tty->name, "cy_break"))
3758 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003760 card = info->card;
3761
3762 spin_lock_irqsave(&card->card_lock, flags);
3763 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003764 /* Let the transmit ISR take care of this (since it
3765 requires stuffing characters into the output stream).
3766 */
3767 if (break_state == -1) {
3768 if (!info->breakon) {
3769 info->breakon = 1;
3770 if (!info->xmit_cnt) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003771 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003772 start_xmit(info);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003773 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003774 }
3775 }
3776 } else {
3777 if (!info->breakoff) {
3778 info->breakoff = 1;
3779 if (!info->xmit_cnt) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003780 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003781 start_xmit(info);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003782 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003783 }
3784 }
3785 }
3786 } else {
3787 int retval;
3788
3789 if (break_state == -1) {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003790 retval = cyz_issue_cmd(card,
3791 info->line - card->first_line,
Jiri Slaby02f11752006-12-08 02:39:28 -08003792 C_CM_SET_BREAK, 0L);
3793 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003794 printk(KERN_ERR "cyc:cy_break (set) retval on "
3795 "ttyC%d was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003796 }
3797 } else {
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003798 retval = cyz_issue_cmd(card,
3799 info->line - card->first_line,
Jiri Slaby02f11752006-12-08 02:39:28 -08003800 C_CM_CLR_BREAK, 0L);
3801 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003802 printk(KERN_DEBUG "cyc:cy_break (clr) retval "
3803 "on ttyC%d was %x\n", info->line,
3804 retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003805 }
3806 }
3807 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003808 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003809} /* cy_break */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
3811static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003812get_mon_info(struct cyclades_port *info, struct cyclades_monitor __user * mon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Jiri Slaby02f11752006-12-08 02:39:28 -08003815 if (copy_to_user(mon, &info->mon, sizeof(struct cyclades_monitor)))
3816 return -EFAULT;
3817 info->mon.int_count = 0;
3818 info->mon.char_count = 0;
3819 info->mon.char_max = 0;
3820 info->mon.char_last = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003822} /* get_mon_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Jiri Slaby02f11752006-12-08 02:39:28 -08003824static int set_threshold(struct cyclades_port *info, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825{
Jiri Slaby875b2062007-05-08 00:36:49 -07003826 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003827 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003828 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003829 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Jiri Slaby02f11752006-12-08 02:39:28 -08003831 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003832 channel = info->line - card->first_line;
3833 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003834 chip = channel >> 2;
3835 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003836 index = card->bus_index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003837 base_addr =
Jiri Slaby875b2062007-05-08 00:36:49 -07003838 card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839
Jiri Slaby02f11752006-12-08 02:39:28 -08003840 info->cor3 &= ~CyREC_FIFO;
3841 info->cor3 |= value & CyREC_FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003843 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003844 cy_writeb(base_addr + (CyCOR3 << index), info->cor3);
3845 cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR3ch, index);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003846 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003849} /* set_threshold */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
3851static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003852get_threshold(struct cyclades_port *info, unsigned long __user * value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853{
Jiri Slaby875b2062007-05-08 00:36:49 -07003854 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003855 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003856 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003857 unsigned long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
Jiri Slaby02f11752006-12-08 02:39:28 -08003859 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003860 channel = info->line - card->first_line;
3861 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003862 chip = channel >> 2;
3863 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003864 index = card->bus_index;
3865 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003866
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003867 tmp = readb(base_addr + (CyCOR3 << index)) & CyREC_FIFO;
Jiri Slaby02f11752006-12-08 02:39:28 -08003868 return put_user(tmp, value);
Jiri Slaby02f11752006-12-08 02:39:28 -08003869 }
Jiri Slabyf7429032007-05-08 00:36:59 -07003870 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003871} /* get_threshold */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
3873static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003874set_default_threshold(struct cyclades_port *info, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875{
Jiri Slaby02f11752006-12-08 02:39:28 -08003876 info->default_threshold = value & 0x0f;
3877 return 0;
3878} /* set_default_threshold */
3879
3880static int
3881get_default_threshold(struct cyclades_port *info, unsigned long __user * value)
3882{
3883 return put_user(info->default_threshold, value);
3884} /* get_default_threshold */
3885
3886static int set_timeout(struct cyclades_port *info, unsigned long value)
3887{
Jiri Slaby875b2062007-05-08 00:36:49 -07003888 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003889 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003890 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003891 unsigned long flags;
3892
3893 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003894 channel = info->line - card->first_line;
3895 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003896 chip = channel >> 2;
3897 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003898 index = card->bus_index;
3899 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003900
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003901 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003902 cy_writeb(base_addr + (CyRTPR << index), value & 0xff);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07003903 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003904 }
3905 return 0;
3906} /* set_timeout */
3907
3908static int get_timeout(struct cyclades_port *info, unsigned long __user * value)
3909{
Jiri Slaby875b2062007-05-08 00:36:49 -07003910 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003911 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003912 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003913 unsigned long tmp;
3914
3915 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003916 channel = info->line - card->first_line;
3917 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003918 chip = channel >> 2;
3919 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003920 index = card->bus_index;
3921 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003922
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003923 tmp = readb(base_addr + (CyRTPR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08003924 return put_user(tmp, value);
Jiri Slaby02f11752006-12-08 02:39:28 -08003925 }
Jiri Slabyf7429032007-05-08 00:36:59 -07003926 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003927} /* get_timeout */
3928
3929static int set_default_timeout(struct cyclades_port *info, unsigned long value)
3930{
3931 info->default_timeout = value & 0xff;
3932 return 0;
3933} /* set_default_timeout */
3934
3935static int
3936get_default_timeout(struct cyclades_port *info, unsigned long __user * value)
3937{
3938 return put_user(info->default_timeout, value);
3939} /* get_default_timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
3941/*
3942 * This routine allows the tty driver to implement device-
3943 * specific ioctl's. If the ioctl number passed in cmd is
3944 * not recognized by the driver, it should return ENOIOCTLCMD.
3945 */
3946static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003947cy_ioctl(struct tty_struct *tty, struct file *file,
3948 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003950 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08003951 struct cyclades_icount cprev, cnow; /* kernel counter temps */
3952 struct serial_icounter_struct __user *p_cuser; /* user space */
3953 int ret_val = 0;
3954 unsigned long flags;
3955 void __user *argp = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Jiri Slaby02f11752006-12-08 02:39:28 -08003957 if (serial_paranoia_check(info, tty->name, "cy_ioctl"))
3958 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959
3960#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07003961 printk(KERN_DEBUG "cyc:cy_ioctl ttyC%d, cmd = %x arg = %lx\n",
3962 info->line, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963#endif
3964
Jiri Slaby02f11752006-12-08 02:39:28 -08003965 switch (cmd) {
3966 case CYGETMON:
3967 ret_val = get_mon_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08003969 case CYGETTHRESH:
3970 ret_val = get_threshold(info, argp);
3971 break;
3972 case CYSETTHRESH:
3973 ret_val = set_threshold(info, arg);
3974 break;
3975 case CYGETDEFTHRESH:
3976 ret_val = get_default_threshold(info, argp);
3977 break;
3978 case CYSETDEFTHRESH:
3979 ret_val = set_default_threshold(info, arg);
3980 break;
3981 case CYGETTIMEOUT:
3982 ret_val = get_timeout(info, argp);
3983 break;
3984 case CYSETTIMEOUT:
3985 ret_val = set_timeout(info, arg);
3986 break;
3987 case CYGETDEFTIMEOUT:
3988 ret_val = get_default_timeout(info, argp);
3989 break;
3990 case CYSETDEFTIMEOUT:
3991 ret_val = set_default_timeout(info, arg);
3992 break;
3993 case CYSETRFLOW:
3994 info->rflow = (int)arg;
3995 ret_val = 0;
3996 break;
3997 case CYGETRFLOW:
3998 ret_val = info->rflow;
3999 break;
4000 case CYSETRTSDTR_INV:
4001 info->rtsdtr_inv = (int)arg;
4002 ret_val = 0;
4003 break;
4004 case CYGETRTSDTR_INV:
4005 ret_val = info->rtsdtr_inv;
4006 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 case CYGETCD1400VER:
Jiri Slaby02f11752006-12-08 02:39:28 -08004008 ret_val = info->chip_rev;
4009 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010#ifndef CONFIG_CYZ_INTR
4011 case CYZSETPOLLCYCLE:
Jiri Slaby02f11752006-12-08 02:39:28 -08004012 cyz_polling_cycle = (arg * HZ) / 1000;
4013 ret_val = 0;
4014 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 case CYZGETPOLLCYCLE:
Jiri Slaby02f11752006-12-08 02:39:28 -08004016 ret_val = (cyz_polling_cycle * 1000) / HZ;
4017 break;
4018#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 case CYSETWAIT:
Jiri Slaby02f11752006-12-08 02:39:28 -08004020 info->closing_wait = (unsigned short)arg *HZ / 100;
4021 ret_val = 0;
4022 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 case CYGETWAIT:
Jiri Slaby02f11752006-12-08 02:39:28 -08004024 ret_val = info->closing_wait / (HZ / 100);
4025 break;
4026 case TIOCGSERIAL:
4027 ret_val = get_serial_info(info, argp);
4028 break;
4029 case TIOCSSERIAL:
4030 ret_val = set_serial_info(info, argp);
4031 break;
4032 case TIOCSERGETLSR: /* Get line status register */
4033 ret_val = get_lsr_info(info, argp);
4034 break;
4035 /*
4036 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
4037 * - mask passed in arg for lines of interest
4038 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
4039 * Caller should use TIOCGICOUNT to see which one it was
4040 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 case TIOCMIWAIT:
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004042 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004043 /* note the counters on entry */
Jiri Slaby2c7fea92007-05-08 00:36:51 -07004044 cnow = info->icount;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004045 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07004046 ret_val = wait_event_interruptible(info->delta_msr_wait, ({
4047 cprev = cnow;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004048 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004049 cnow = info->icount; /* atomic copy */
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004050 spin_unlock_irqrestore(&info->card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
Jiri Slaby2c7fea92007-05-08 00:36:51 -07004052 ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
4053 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
4054 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
4055 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts));
4056 }));
4057 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004058
4059 /*
4060 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
4061 * Return: write counters to the user passed counter struct
4062 * NB: both 1->0 and 0->1 transitions are counted except for
4063 * RI where only 0->1 is counted.
4064 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 case TIOCGICOUNT:
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004066 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004067 cnow = info->icount;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004068 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004069 p_cuser = argp;
4070 ret_val = put_user(cnow.cts, &p_cuser->cts);
4071 if (ret_val)
4072 return ret_val;
4073 ret_val = put_user(cnow.dsr, &p_cuser->dsr);
4074 if (ret_val)
4075 return ret_val;
4076 ret_val = put_user(cnow.rng, &p_cuser->rng);
4077 if (ret_val)
4078 return ret_val;
4079 ret_val = put_user(cnow.dcd, &p_cuser->dcd);
4080 if (ret_val)
4081 return ret_val;
4082 ret_val = put_user(cnow.rx, &p_cuser->rx);
4083 if (ret_val)
4084 return ret_val;
4085 ret_val = put_user(cnow.tx, &p_cuser->tx);
4086 if (ret_val)
4087 return ret_val;
4088 ret_val = put_user(cnow.frame, &p_cuser->frame);
4089 if (ret_val)
4090 return ret_val;
4091 ret_val = put_user(cnow.overrun, &p_cuser->overrun);
4092 if (ret_val)
4093 return ret_val;
4094 ret_val = put_user(cnow.parity, &p_cuser->parity);
4095 if (ret_val)
4096 return ret_val;
4097 ret_val = put_user(cnow.brk, &p_cuser->brk);
4098 if (ret_val)
4099 return ret_val;
4100 ret_val = put_user(cnow.buf_overrun, &p_cuser->buf_overrun);
4101 if (ret_val)
4102 return ret_val;
4103 ret_val = 0;
4104 break;
4105 default:
4106 ret_val = -ENOIOCTLCMD;
4107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108
4109#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004110 printk(KERN_DEBUG "cyc:cy_ioctl done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111#endif
4112
Jiri Slaby02f11752006-12-08 02:39:28 -08004113 return ret_val;
4114} /* cy_ioctl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
4116/*
4117 * This routine allows the tty driver to be notified when
4118 * device's termios settings have changed. Note that a
4119 * well-designed tty driver should be prepared to accept the case
4120 * where old == NULL, and try to do something rational.
4121 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004122static void cy_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004124 struct cyclades_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
4126#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004127 printk(KERN_DEBUG "cyc:cy_set_termios ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128#endif
4129
Jiri Slaby02f11752006-12-08 02:39:28 -08004130 if (tty->termios->c_cflag == old_termios->c_cflag &&
4131 (tty->termios->c_iflag & (IXON | IXANY)) ==
4132 (old_termios->c_iflag & (IXON | IXANY)))
4133 return;
4134 set_line_char(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Jiri Slaby02f11752006-12-08 02:39:28 -08004136 if ((old_termios->c_cflag & CRTSCTS) &&
4137 !(tty->termios->c_cflag & CRTSCTS)) {
4138 tty->hw_stopped = 0;
4139 cy_start(tty);
4140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141#if 0
Jiri Slaby02f11752006-12-08 02:39:28 -08004142 /*
4143 * No need to wake up processes in open wait, since they
4144 * sample the CLOCAL flag once, and don't recheck it.
4145 * XXX It's not clear whether the current behavior is correct
4146 * or not. Hence, this may change.....
4147 */
4148 if (!(old_termios->c_cflag & CLOCAL) &&
4149 (tty->termios->c_cflag & CLOCAL))
4150 wake_up_interruptible(&info->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004152} /* cy_set_termios */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153
4154/* This function is used to send a high-priority XON/XOFF character to
4155 the device.
4156*/
Jiri Slaby02f11752006-12-08 02:39:28 -08004157static void cy_send_xchar(struct tty_struct *tty, char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004159 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004160 struct cyclades_card *card;
4161 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
Jiri Slaby02f11752006-12-08 02:39:28 -08004163 if (serial_paranoia_check(info, tty->name, "cy_send_xchar"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 return;
4165
Jiri Slaby02f11752006-12-08 02:39:28 -08004166 info->x_char = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
4168 if (ch)
Jiri Slaby02f11752006-12-08 02:39:28 -08004169 cy_start(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170
4171 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07004172 channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173
Jiri Slaby875b2062007-05-08 00:36:49 -07004174 if (IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004175 if (ch == STOP_CHAR(tty))
Jiri Slaby875b2062007-05-08 00:36:49 -07004176 cyz_issue_cmd(card, channel, C_CM_SENDXOFF, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08004177 else if (ch == START_CHAR(tty))
Jiri Slaby875b2062007-05-08 00:36:49 -07004178 cyz_issue_cmd(card, channel, C_CM_SENDXON, 0L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 }
4180}
4181
4182/* This routine is called by the upper-layer tty layer to signal
4183 that incoming characters should be throttled because the input
4184 buffers are close to full.
4185 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004186static void cy_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004188 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004189 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004190 unsigned long flags;
4191 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07004192 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
4194#ifdef CY_DEBUG_THROTTLE
Jiri Slaby02f11752006-12-08 02:39:28 -08004195 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196
Jiri Slaby21719192007-05-08 00:36:42 -07004197 printk(KERN_DEBUG "cyc:throttle %s: %ld...ttyC%d\n", tty_name(tty, buf),
Jiri Slaby02f11752006-12-08 02:39:28 -08004198 tty->ldisc.chars_in_buffer(tty), info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199#endif
4200
Jiri Slaby02f11752006-12-08 02:39:28 -08004201 if (serial_paranoia_check(info, tty->name, "cy_throttle")) {
4202 return;
4203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Jiri Slaby02f11752006-12-08 02:39:28 -08004205 card = info->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
Jiri Slaby02f11752006-12-08 02:39:28 -08004207 if (I_IXOFF(tty)) {
Jiri Slaby875b2062007-05-08 00:36:49 -07004208 if (!IS_CYC_Z(*card))
Jiri Slaby02f11752006-12-08 02:39:28 -08004209 cy_send_xchar(tty, STOP_CHAR(tty));
4210 else
4211 info->throttle = 1;
4212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213
Jiri Slaby02f11752006-12-08 02:39:28 -08004214 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby875b2062007-05-08 00:36:49 -07004215 channel = info->line - card->first_line;
4216 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004217 chip = channel >> 2;
4218 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07004219 index = card->bus_index;
4220 base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004221 (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004223 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004224 cy_writeb(base_addr + (CyCAR << index),
4225 (u_char) channel);
4226 if (info->rtsdtr_inv) {
4227 cy_writeb(base_addr + (CyMSVR2 << index),
4228 ~CyDTR);
4229 } else {
4230 cy_writeb(base_addr + (CyMSVR1 << index),
4231 ~CyRTS);
4232 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004233 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004234 } else {
4235 info->throttle = 1;
4236 }
4237 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004238} /* cy_throttle */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
4240/*
4241 * This routine notifies the tty driver that it should signal
4242 * that characters can now be sent to the tty without fear of
4243 * overrunning the input buffers of the line disciplines.
4244 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004245static void cy_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004247 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004248 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004249 unsigned long flags;
4250 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07004251 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
4253#ifdef CY_DEBUG_THROTTLE
Jiri Slaby02f11752006-12-08 02:39:28 -08004254 char buf[64];
4255
Jiri Slaby21719192007-05-08 00:36:42 -07004256 printk(KERN_DEBUG "cyc:unthrottle %s: %ld...ttyC%d\n",
4257 tty_name(tty, buf), tty->ldisc.chars_in_buffer(tty),info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258#endif
4259
Jiri Slaby02f11752006-12-08 02:39:28 -08004260 if (serial_paranoia_check(info, tty->name, "cy_unthrottle")) {
4261 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263
Jiri Slaby02f11752006-12-08 02:39:28 -08004264 if (I_IXOFF(tty)) {
4265 if (info->x_char)
4266 info->x_char = 0;
4267 else
4268 cy_send_xchar(tty, START_CHAR(tty));
4269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
Jiri Slaby02f11752006-12-08 02:39:28 -08004271 if (tty->termios->c_cflag & CRTSCTS) {
4272 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07004273 channel = info->line - card->first_line;
4274 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004275 chip = channel >> 2;
4276 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07004277 index = card->bus_index;
4278 base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004279 (cy_chip_offset[chip] << index);
4280
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004281 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004282 cy_writeb(base_addr + (CyCAR << index),
4283 (u_char) channel);
4284 if (info->rtsdtr_inv) {
4285 cy_writeb(base_addr + (CyMSVR2 << index),
4286 CyDTR);
4287 } else {
4288 cy_writeb(base_addr + (CyMSVR1 << index),
4289 CyRTS);
4290 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004291 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004292 } else {
4293 info->throttle = 0;
4294 }
4295 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004296} /* cy_unthrottle */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297
4298/* cy_start and cy_stop provide software output flow control as a
4299 function of XON/XOFF, software CTS, and other such stuff.
4300*/
Jiri Slaby02f11752006-12-08 02:39:28 -08004301static void cy_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302{
Jiri Slaby02f11752006-12-08 02:39:28 -08004303 struct cyclades_card *cinfo;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004304 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004305 void __iomem *base_addr;
4306 int chip, channel, index;
4307 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
4309#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004310 printk(KERN_DEBUG "cyc:cy_stop ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311#endif
4312
Jiri Slaby02f11752006-12-08 02:39:28 -08004313 if (serial_paranoia_check(info, tty->name, "cy_stop"))
4314 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315
Jiri Slaby875b2062007-05-08 00:36:49 -07004316 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004317 channel = info->line - cinfo->first_line;
4318 if (!IS_CYC_Z(*cinfo)) {
4319 index = cinfo->bus_index;
4320 chip = channel >> 2;
4321 channel &= 0x03;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004322 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004324 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004325 cy_writeb(base_addr + (CyCAR << index),
4326 (u_char)(channel & 0x0003)); /* index channel */
4327 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004328 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004329 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004331} /* cy_stop */
4332
4333static void cy_start(struct tty_struct *tty)
4334{
4335 struct cyclades_card *cinfo;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004336 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004337 void __iomem *base_addr;
4338 int chip, channel, index;
4339 unsigned long flags;
4340
4341#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004342 printk(KERN_DEBUG "cyc:cy_start ttyC%d\n", info->line);
Jiri Slaby02f11752006-12-08 02:39:28 -08004343#endif
4344
4345 if (serial_paranoia_check(info, tty->name, "cy_start"))
4346 return;
4347
Jiri Slaby875b2062007-05-08 00:36:49 -07004348 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004349 channel = info->line - cinfo->first_line;
4350 index = cinfo->bus_index;
4351 if (!IS_CYC_Z(*cinfo)) {
4352 chip = channel >> 2;
4353 channel &= 0x03;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004354 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08004355
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004356 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004357 cy_writeb(base_addr + (CyCAR << index), (u_char) (channel & 0x0003)); /* index channel */
4358 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004359 readb(base_addr + (CySRER << index)) | CyTxRdy);
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004360 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004361 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004362} /* cy_start */
4363
4364static void cy_flush_buffer(struct tty_struct *tty)
4365{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004366 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004367 struct cyclades_card *card;
4368 int channel, retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08004369 unsigned long flags;
4370
4371#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07004372 printk(KERN_DEBUG "cyc:cy_flush_buffer ttyC%d\n", info->line);
Jiri Slaby02f11752006-12-08 02:39:28 -08004373#endif
4374
4375 if (serial_paranoia_check(info, tty->name, "cy_flush_buffer"))
4376 return;
4377
4378 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07004379 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08004380
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004381 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004382 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004383 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004384
Jiri Slaby875b2062007-05-08 00:36:49 -07004385 if (IS_CYC_Z(*card)) { /* If it is a Z card, flush the on-board
Jiri Slaby02f11752006-12-08 02:39:28 -08004386 buffers as well */
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004387 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07004388 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_TX, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08004389 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07004390 printk(KERN_ERR "cyc: flush_buffer retval on ttyC%d "
4391 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08004392 }
Jiri Slaby9fa1b3b2007-05-08 00:36:57 -07004393 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004394 }
4395 tty_wakeup(tty);
Jiri Slaby02f11752006-12-08 02:39:28 -08004396} /* cy_flush_buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397
4398/*
4399 * cy_hangup() --- called by tty_hangup() when a hangup is signaled.
4400 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004401static void cy_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004403 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004404
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004406 printk(KERN_DEBUG "cyc:cy_hangup ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407#endif
4408
Jiri Slaby02f11752006-12-08 02:39:28 -08004409 if (serial_paranoia_check(info, tty->name, "cy_hangup"))
4410 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
Jiri Slaby02f11752006-12-08 02:39:28 -08004412 cy_flush_buffer(tty);
4413 shutdown(info);
4414 info->event = 0;
4415 info->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07004417 printk(KERN_DEBUG "cyc:cy_hangup (%d): setting count to 0\n",
4418 current->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004420 info->tty = NULL;
4421 info->flags &= ~ASYNC_NORMAL_ACTIVE;
4422 wake_up_interruptible(&info->open_wait);
4423} /* cy_hangup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424
4425/*
4426 * ---------------------------------------------------------------------
4427 * cy_init() and friends
4428 *
4429 * cy_init() is called at boot-time to initialize the serial driver.
4430 * ---------------------------------------------------------------------
4431 */
4432
Jiri Slabydd025c02007-05-08 00:37:02 -07004433static int __devinit cy_init_card(struct cyclades_card *cinfo)
Jiri Slaby0809e262007-05-08 00:36:14 -07004434{
4435 struct cyclades_port *info;
4436 u32 mailbox;
4437 unsigned int nports;
4438 unsigned short chip_number;
4439 int index, port;
4440
Jiri Slaby3046d502007-05-08 00:36:46 -07004441 spin_lock_init(&cinfo->card_lock);
4442
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07004443 if (IS_CYC_Z(*cinfo)) { /* Cyclades-Z */
Jiri Slaby0809e262007-05-08 00:36:14 -07004444 mailbox = readl(&((struct RUNTIME_9060 __iomem *)
4445 cinfo->ctl_addr)->mail_box_0);
4446 nports = (mailbox == ZE_V1) ? ZE_V1_NPORTS : 8;
4447 cinfo->intr_enabled = 0;
4448 cinfo->nports = 0; /* Will be correctly set later, after
4449 Z FW is loaded */
Jiri Slaby3046d502007-05-08 00:36:46 -07004450 } else {
4451 index = cinfo->bus_index;
4452 nports = cinfo->nports = CyPORTS_PER_CHIP * cinfo->num_chips;
4453 }
4454
Jiri Slabydd025c02007-05-08 00:37:02 -07004455 cinfo->ports = kzalloc(sizeof(*cinfo->ports) * nports, GFP_KERNEL);
4456 if (cinfo->ports == NULL) {
4457 printk(KERN_ERR "Cyclades: cannot allocate ports\n");
4458 return -ENOMEM;
4459 }
4460
Jiri Slaby3046d502007-05-08 00:36:46 -07004461 for (port = cinfo->first_line; port < cinfo->first_line + nports;
4462 port++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07004463 info = &cinfo->ports[port - cinfo->first_line];
Jiri Slaby3046d502007-05-08 00:36:46 -07004464 info->magic = CYCLADES_MAGIC;
Jiri Slaby875b2062007-05-08 00:36:49 -07004465 info->card = cinfo;
Jiri Slaby3046d502007-05-08 00:36:46 -07004466 info->line = port;
4467 info->flags = STD_COM_FLAGS;
4468 info->closing_wait = CLOSING_WAIT_DELAY;
4469 info->close_delay = 5 * HZ / 10;
4470
4471 INIT_WORK(&info->tqueue, do_softint);
4472 init_waitqueue_head(&info->open_wait);
4473 init_waitqueue_head(&info->close_wait);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07004474 init_completion(&info->shutdown_wait);
Jiri Slaby3046d502007-05-08 00:36:46 -07004475 init_waitqueue_head(&info->delta_msr_wait);
4476
4477 if (IS_CYC_Z(*cinfo)) {
Jiri Slaby0809e262007-05-08 00:36:14 -07004478 info->type = PORT_STARTECH;
Jiri Slaby0809e262007-05-08 00:36:14 -07004479 if (mailbox == ZO_V1)
4480 info->xmit_fifo_size = CYZ_FIFO_SIZE;
4481 else
Jiri Slaby3046d502007-05-08 00:36:46 -07004482 info->xmit_fifo_size = 4 * CYZ_FIFO_SIZE;
Jiri Slaby0809e262007-05-08 00:36:14 -07004483#ifdef CONFIG_CYZ_INTR
Jiri Slaby39914282007-05-08 00:36:54 -07004484 setup_timer(&cyz_rx_full_timer[port],
4485 cyz_rx_restart, (unsigned long)info);
Jiri Slaby0809e262007-05-08 00:36:14 -07004486#endif
Jiri Slaby3046d502007-05-08 00:36:46 -07004487 } else {
Jiri Slaby0809e262007-05-08 00:36:14 -07004488 info->type = PORT_CIRRUS;
Jiri Slaby0809e262007-05-08 00:36:14 -07004489 info->xmit_fifo_size = CyMAX_CHAR_FIFO;
Jiri Slaby3046d502007-05-08 00:36:46 -07004490 info->cor1 = CyPARITY_NONE | Cy_1_STOP | Cy_8_BITS;
Jiri Slaby0809e262007-05-08 00:36:14 -07004491 info->cor2 = CyETC;
4492 info->cor3 = 0x08; /* _very_ small rcv threshold */
Jiri Slaby3046d502007-05-08 00:36:46 -07004493
Jiri Slaby0809e262007-05-08 00:36:14 -07004494 chip_number = (port - cinfo->first_line) / 4;
Jiri Slaby3046d502007-05-08 00:36:46 -07004495 if ((info->chip_rev = readb(cinfo->base_addr +
Jiri Slaby0809e262007-05-08 00:36:14 -07004496 (cy_chip_offset[chip_number] <<
4497 index) + (CyGFRCR << index))) >=
4498 CD1400_REV_J) {
4499 /* It is a CD1400 rev. J or later */
4500 info->tbpr = baud_bpr_60[13]; /* Tx BPR */
4501 info->tco = baud_co_60[13]; /* Tx CO */
4502 info->rbpr = baud_bpr_60[13]; /* Rx BPR */
4503 info->rco = baud_co_60[13]; /* Rx CO */
Jiri Slaby0809e262007-05-08 00:36:14 -07004504 info->rtsdtr_inv = 1;
4505 } else {
4506 info->tbpr = baud_bpr_25[13]; /* Tx BPR */
4507 info->tco = baud_co_25[13]; /* Tx CO */
4508 info->rbpr = baud_bpr_25[13]; /* Rx BPR */
4509 info->rco = baud_co_25[13]; /* Rx CO */
Jiri Slaby0809e262007-05-08 00:36:14 -07004510 info->rtsdtr_inv = 0;
4511 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004512 info->read_status_mask = CyTIMEOUT | CySPECHAR |
4513 CyBREAK | CyPARITY | CyFRAME | CyOVERRUN;
Jiri Slaby0809e262007-05-08 00:36:14 -07004514 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004515
Jiri Slaby0809e262007-05-08 00:36:14 -07004516 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004517
4518#ifndef CONFIG_CYZ_INTR
4519 if (IS_CYC_Z(*cinfo) && !timer_pending(&cyz_timerlist)) {
4520 mod_timer(&cyz_timerlist, jiffies + 1);
4521#ifdef CY_PCI_DEBUG
4522 printk(KERN_DEBUG "Cyclades-Z polling initialized\n");
4523#endif
4524 }
4525#endif
Jiri Slabydd025c02007-05-08 00:37:02 -07004526 return 0;
Jiri Slaby0809e262007-05-08 00:36:14 -07004527}
4528
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529/* initialize chips on Cyclom-Y card -- return number of valid
4530 chips (which is number of ports/4) */
Jiri Slaby31b4f0a2007-05-08 00:36:44 -07004531static unsigned short __devinit cyy_init_card(void __iomem *true_base_addr,
4532 int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533{
Jiri Slaby02f11752006-12-08 02:39:28 -08004534 unsigned int chip_number;
4535 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
Jiri Slaby02f11752006-12-08 02:39:28 -08004537 cy_writeb(true_base_addr + (Cy_HwReset << index), 0);
4538 /* Cy_HwReset is 0x1400 */
4539 cy_writeb(true_base_addr + (Cy_ClrIntr << index), 0);
4540 /* Cy_ClrIntr is 0x1800 */
4541 udelay(500L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542
Jiri Slaby02f11752006-12-08 02:39:28 -08004543 for (chip_number = 0; chip_number < CyMAX_CHIPS_PER_CARD; chip_number++) {
4544 base_addr =
4545 true_base_addr + (cy_chip_offset[chip_number] << index);
4546 mdelay(1);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004547 if (readb(base_addr + (CyCCR << index)) != 0x00) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004548 /*************
4549 printk(" chip #%d at %#6lx is never idle (CCR != 0)\n",
4550 chip_number, (unsigned long)base_addr);
4551 *************/
4552 return chip_number;
4553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
Jiri Slaby02f11752006-12-08 02:39:28 -08004555 cy_writeb(base_addr + (CyGFRCR << index), 0);
4556 udelay(10L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557
Jiri Slaby02f11752006-12-08 02:39:28 -08004558 /* The Cyclom-16Y does not decode address bit 9 and therefore
4559 cannot distinguish between references to chip 0 and a non-
4560 existent chip 4. If the preceding clearing of the supposed
4561 chip 4 GFRCR register appears at chip 0, there is no chip 4
4562 and this must be a Cyclom-16Y, not a Cyclom-32Ye.
4563 */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004564 if (chip_number == 4 && readb(true_base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004565 (cy_chip_offset[0] << index) +
4566 (CyGFRCR << index)) == 0) {
4567 return chip_number;
4568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
Jiri Slaby02f11752006-12-08 02:39:28 -08004570 cy_writeb(base_addr + (CyCCR << index), CyCHIP_RESET);
4571 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004573 if (readb(base_addr + (CyGFRCR << index)) == 0x00) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004574 /*
4575 printk(" chip #%d at %#6lx is not responding ",
4576 chip_number, (unsigned long)base_addr);
4577 printk("(GFRCR stayed 0)\n",
4578 */
4579 return chip_number;
4580 }
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004581 if ((0xf0 & (readb(base_addr + (CyGFRCR << index)))) !=
Jiri Slaby02f11752006-12-08 02:39:28 -08004582 0x40) {
4583 /*
4584 printk(" chip #%d at %#6lx is not valid (GFRCR == "
4585 "%#2x)\n",
4586 chip_number, (unsigned long)base_addr,
4587 base_addr[CyGFRCR<<index]);
4588 */
4589 return chip_number;
4590 }
4591 cy_writeb(base_addr + (CyGCR << index), CyCH0_SERIAL);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004592 if (readb(base_addr + (CyGFRCR << index)) >= CD1400_REV_J) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004593 /* It is a CD1400 rev. J or later */
4594 /* Impossible to reach 5ms with this chip.
4595 Changed to 2ms instead (f = 500 Hz). */
4596 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_60_2MS);
4597 } else {
4598 /* f = 200 Hz */
4599 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_25_5MS);
4600 }
4601
4602 /*
4603 printk(" chip #%d at %#6lx is rev 0x%2x\n",
4604 chip_number, (unsigned long)base_addr,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004605 readb(base_addr+(CyGFRCR<<index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08004606 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004608 return chip_number;
4609} /* cyy_init_card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610
4611/*
4612 * ---------------------------------------------------------------------
4613 * cy_detect_isa() - Probe for Cyclom-Y/ISA boards.
4614 * sets global variables and return the number of ISA boards found.
4615 * ---------------------------------------------------------------------
4616 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004617static int __init cy_detect_isa(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618{
4619#ifdef CONFIG_ISA
Jiri Slaby02f11752006-12-08 02:39:28 -08004620 unsigned short cy_isa_irq, nboard;
4621 void __iomem *cy_isa_address;
4622 unsigned short i, j, cy_isa_nchan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623#ifdef MODULE
Jiri Slaby02f11752006-12-08 02:39:28 -08004624 int isparam = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625#endif
4626
Jiri Slaby02f11752006-12-08 02:39:28 -08004627 nboard = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628
4629#ifdef MODULE
4630 /* Check for module parameters */
Jiri Slaby02f11752006-12-08 02:39:28 -08004631 for (i = 0; i < NR_CARDS; i++) {
4632 if (maddr[i] || i) {
4633 isparam = 1;
4634 cy_isa_addresses[i] = maddr[i];
4635 }
4636 if (!maddr[i])
4637 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 }
4639#endif
4640
Jiri Slaby02f11752006-12-08 02:39:28 -08004641 /* scan the address table probing for Cyclom-Y/ISA boards */
4642 for (i = 0; i < NR_ISA_ADDRS; i++) {
4643 unsigned int isa_address = cy_isa_addresses[i];
4644 if (isa_address == 0x0000) {
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004645 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647
Jiri Slaby02f11752006-12-08 02:39:28 -08004648 /* probe for CD1400... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 cy_isa_address = ioremap(isa_address, CyISA_Ywin);
Jiri Slaby02f11752006-12-08 02:39:28 -08004650 cy_isa_nchan = CyPORTS_PER_CHIP *
4651 cyy_init_card(cy_isa_address, 0);
4652 if (cy_isa_nchan == 0) {
4653 continue;
4654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655#ifdef MODULE
4656 if (isparam && irq[i])
Jiri Slaby02f11752006-12-08 02:39:28 -08004657 cy_isa_irq = irq[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 else
4659#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004660 /* find out the board's irq by probing */
4661 cy_isa_irq = detect_isa_irq(cy_isa_address);
4662 if (cy_isa_irq == 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07004663 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but the "
4664 "IRQ could not be detected.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004665 (unsigned long)cy_isa_address);
Jiri Slaby02f11752006-12-08 02:39:28 -08004666 continue;
4667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668
Jiri Slaby02f11752006-12-08 02:39:28 -08004669 if ((cy_next_channel + cy_isa_nchan) > NR_PORTS) {
Jiri Slaby21719192007-05-08 00:36:42 -07004670 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
4671 "more channels are available. Change NR_PORTS "
4672 "in cyclades.c and recompile kernel.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004673 (unsigned long)cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004674 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004675 }
4676 /* fill the next cy_card structure available */
4677 for (j = 0; j < NR_CARDS; j++) {
Jiri Slabyf7429032007-05-08 00:36:59 -07004678 if (cy_card[j].base_addr == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08004679 break;
4680 }
4681 if (j == NR_CARDS) { /* no more cy_cards available */
Jiri Slaby21719192007-05-08 00:36:42 -07004682 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
4683 "more cards can be used. Change NR_CARDS in "
4684 "cyclades.c and recompile kernel.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004685 (unsigned long)cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004686 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688
Jiri Slaby02f11752006-12-08 02:39:28 -08004689 /* allocate IRQ */
4690 if (request_irq(cy_isa_irq, cyy_interrupt,
4691 IRQF_DISABLED, "Cyclom-Y", &cy_card[j])) {
Jiri Slaby21719192007-05-08 00:36:42 -07004692 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but "
4693 "could not allocate IRQ#%d.\n",
4694 (unsigned long)cy_isa_address, cy_isa_irq);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004695 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
Jiri Slaby02f11752006-12-08 02:39:28 -08004698 /* set cy_card */
4699 cy_card[j].base_addr = cy_isa_address;
4700 cy_card[j].ctl_addr = NULL;
4701 cy_card[j].irq = (int)cy_isa_irq;
4702 cy_card[j].bus_index = 0;
4703 cy_card[j].first_line = cy_next_channel;
4704 cy_card[j].num_chips = cy_isa_nchan / 4;
Jiri Slaby875b2062007-05-08 00:36:49 -07004705 cy_init_card(&cy_card[j]);
Jiri Slaby02f11752006-12-08 02:39:28 -08004706 nboard++;
4707
Jiri Slaby21719192007-05-08 00:36:42 -07004708 printk(KERN_INFO "Cyclom-Y/ISA #%d: 0x%lx-0x%lx, IRQ%d found: "
4709 "%d channels starting from port %d\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004710 j + 1, (unsigned long)cy_isa_address,
4711 (unsigned long)(cy_isa_address + (CyISA_Ywin - 1)),
Jiri Slaby21719192007-05-08 00:36:42 -07004712 cy_isa_irq, cy_isa_nchan, cy_next_channel);
4713
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07004714 for (j = cy_next_channel;
4715 j < cy_next_channel + cy_isa_nchan; j++)
4716 tty_register_device(cy_serial_driver, j, NULL);
Jiri Slaby02f11752006-12-08 02:39:28 -08004717 cy_next_channel += cy_isa_nchan;
4718 }
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004719 return nboard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720#else
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004721 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08004722#endif /* CONFIG_ISA */
4723} /* cy_detect_isa */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
Jiri Slaby58936d82007-05-08 00:36:13 -07004725#ifdef CONFIG_PCI
4726static void __devinit plx_init(void __iomem * addr, __u32 initctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727{
Jiri Slaby02f11752006-12-08 02:39:28 -08004728 /* Reset PLX */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004729 cy_writel(addr + initctl, readl(addr + initctl) | 0x40000000);
Jiri Slaby02f11752006-12-08 02:39:28 -08004730 udelay(100L);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004731 cy_writel(addr + initctl, readl(addr + initctl) & ~0x40000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732
Jiri Slaby02f11752006-12-08 02:39:28 -08004733 /* Reload Config. Registers from EEPROM */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004734 cy_writel(addr + initctl, readl(addr + initctl) | 0x20000000);
Jiri Slaby02f11752006-12-08 02:39:28 -08004735 udelay(100L);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004736 cy_writel(addr + initctl, readl(addr + initctl) & ~0x20000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737}
4738
Jiri Slaby6d8248e82007-05-08 00:36:47 -07004739static int __devinit cy_init_Ze(struct RUNTIME_9060 __iomem *cy_pci_addr0,
Jiri Slaby2b1da41f2007-05-08 00:36:12 -07004740 int cy_pci_irq, struct pci_dev *pdev)
Jiri Slabyd407c782007-05-08 00:36:09 -07004741{
Jiri Slaby2b1da41f2007-05-08 00:36:12 -07004742 void __iomem *cy_pci_addr2;
Jiri Slabyd407c782007-05-08 00:36:09 -07004743 unsigned int j;
4744 unsigned short cy_pci_nchan;
4745
Jiri Slaby2b1da41f2007-05-08 00:36:12 -07004746 cy_pci_addr2 = pci_iomap(pdev, 2, CyPCI_Ze_win);
4747
Jiri Slabyd407c782007-05-08 00:36:09 -07004748 readl(&cy_pci_addr0->mail_box_0);
Jiri Slaby21719192007-05-08 00:36:42 -07004749 dev_dbg(&pdev->dev, "new Cyclades-Z board. FPGA not loaded\n");
4750
Jiri Slabyd407c782007-05-08 00:36:09 -07004751 /* This must be the new Cyclades-Ze/PCI. */
4752 cy_pci_nchan = ZE_V1_NPORTS;
4753
4754 if ((cy_next_channel + cy_pci_nchan) > NR_PORTS) {
Jiri Slaby21719192007-05-08 00:36:42 -07004755 dev_err(&pdev->dev, "Cyclades-Ze/PCI found, but no channels "
Jiri Slabyd407c782007-05-08 00:36:09 -07004756 "are available.\nChange NR_PORTS in cyclades.c "
Jiri Slaby21719192007-05-08 00:36:42 -07004757 "and recompile kernel.\n");
Jiri Slabyd407c782007-05-08 00:36:09 -07004758 return -EIO;
4759 }
4760
4761 /* fill the next cy_card structure available */
4762 for (j = 0; j < NR_CARDS; j++) {
Jiri Slabyf7429032007-05-08 00:36:59 -07004763 if (cy_card[j].base_addr == NULL)
Jiri Slabyd407c782007-05-08 00:36:09 -07004764 break;
4765 }
4766 if (j == NR_CARDS) { /* no more cy_cards available */
Jiri Slaby21719192007-05-08 00:36:42 -07004767 dev_err(&pdev->dev, "Cyclades-Ze/PCI found, but no more "
Jiri Slabyd407c782007-05-08 00:36:09 -07004768 "cards can be used.\nChange NR_CARDS in "
Jiri Slaby21719192007-05-08 00:36:42 -07004769 "cyclades.c and recompile kernel.\n");
Jiri Slabyd407c782007-05-08 00:36:09 -07004770 return -EIO;
4771 }
4772#ifdef CONFIG_CYZ_INTR
4773 /* allocate IRQ only if board has an IRQ */
4774 if ((cy_pci_irq != 0) && (cy_pci_irq != 255)) {
4775 if (request_irq(cy_pci_irq, cyz_interrupt,
4776 IRQF_SHARED, "Cyclades-Z",
4777 &cy_card[j])) {
Jiri Slaby21719192007-05-08 00:36:42 -07004778 dev_err(&pdev->dev, "could not allocate IRQ.\n");
Jiri Slabyd407c782007-05-08 00:36:09 -07004779 return -EIO;
4780 }
4781 }
4782#endif /* CONFIG_CYZ_INTR */
4783
4784 /* set cy_card */
Jiri Slabyd407c782007-05-08 00:36:09 -07004785 cy_card[j].base_addr = cy_pci_addr2;
4786 cy_card[j].ctl_addr = cy_pci_addr0;
Jiri Slaby80fada52007-05-08 00:36:41 -07004787 cy_card[j].irq = cy_pci_irq;
Jiri Slabyd407c782007-05-08 00:36:09 -07004788 cy_card[j].bus_index = 1;
4789 cy_card[j].first_line = cy_next_channel;
4790 cy_card[j].num_chips = -1;
Jiri Slaby875b2062007-05-08 00:36:49 -07004791 cy_init_card(&cy_card[j]);
Jiri Slaby38d09092007-05-08 00:36:10 -07004792 pci_set_drvdata(pdev, &cy_card[j]);
Jiri Slabyd407c782007-05-08 00:36:09 -07004793
Jiri Slaby21719192007-05-08 00:36:42 -07004794 dev_info(&pdev->dev, "Cyclades-Ze/PCI #%d found: %d channels starting "
4795 "from port %d.\n", j + 1, cy_pci_nchan, cy_next_channel);
Jiri Slabyd407c782007-05-08 00:36:09 -07004796
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07004797 for (j = cy_next_channel; j < cy_next_channel + cy_pci_nchan; j++)
4798 tty_register_device(cy_serial_driver, j, &pdev->dev);
Jiri Slabyd407c782007-05-08 00:36:09 -07004799 cy_next_channel += cy_pci_nchan;
4800
4801 return 0;
4802}
4803
Jiri Slaby58936d82007-05-08 00:36:13 -07004804static int __devinit cy_pci_probe(struct pci_dev *pdev,
4805 const struct pci_device_id *ent)
4806{
4807 unsigned char cyy_rev_id;
Jiri Slaby80fada52007-05-08 00:36:41 -07004808 int cy_pci_irq;
Jiri Slaby6d8248e82007-05-08 00:36:47 -07004809 __u32 mailbox;
Jiri Slaby58936d82007-05-08 00:36:13 -07004810 void __iomem *cy_pci_addr0, *cy_pci_addr2;
4811 unsigned int device_id;
4812 unsigned short j, cy_pci_nchan, plx_ver;
4813 int retval;
4814
4815 retval = pci_enable_device(pdev);
4816 if (retval) {
4817 dev_err(&pdev->dev, "cannot enable device\n");
4818 return retval;
4819 }
4820
4821 /* read PCI configuration area */
4822 cy_pci_irq = pdev->irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07004823 pci_read_config_byte(pdev, PCI_REVISION_ID, &cyy_rev_id);
4824
4825 device_id = pdev->device & ~PCI_DEVICE_ID_MASK;
4826
4827 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
4828 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby21719192007-05-08 00:36:42 -07004829 dev_dbg(&pdev->dev, "Cyclom-Y/PCI found\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07004830
4831 if (pci_resource_flags(pdev, 2) & IORESOURCE_IO) {
Jiri Slaby21719192007-05-08 00:36:42 -07004832 dev_warn(&pdev->dev, "PCI I/O bit incorrectly "
Jiri Slaby58936d82007-05-08 00:36:13 -07004833 "set. Ignoring it...\n");
4834 pdev->resource[2].flags &= ~IORESOURCE_IO;
4835 }
4836
4837 /* Although we don't use this I/O region, we should
4838 request it from the kernel anyway, to avoid problems
4839 with other drivers accessing it. */
4840 retval = pci_request_regions(pdev, "Cyclom-Y");
4841 if (retval) {
Jiri Slaby21719192007-05-08 00:36:42 -07004842 dev_err(&pdev->dev, "failed to reserve resources\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07004843 return retval;
4844 }
4845#if defined(__alpha__)
4846 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo) { /* below 1M? */
Jiri Slaby21719192007-05-08 00:36:42 -07004847 dev_err(&pdev->dev, "Cyclom-Y/PCI not supported for "
4848 "low addresses on Alpha systems.\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07004849 return -EIO;
4850 }
4851#endif
4852 cy_pci_addr0 = pci_iomap(pdev, 0, CyPCI_Yctl);
4853 cy_pci_addr2 = pci_iomap(pdev, 2, CyPCI_Ywin);
4854
Jiri Slaby21719192007-05-08 00:36:42 -07004855 dev_dbg(&pdev->dev, "Cyclom-Y/PCI: relocate winaddr=0x%p "
4856 "ctladdr=0x%p\n", cy_pci_addr2, cy_pci_addr0);
4857
Jiri Slaby58936d82007-05-08 00:36:13 -07004858 cy_pci_nchan = (unsigned short)(CyPORTS_PER_CHIP *
4859 cyy_init_card(cy_pci_addr2, 1));
4860 if (cy_pci_nchan == 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07004861 dev_err(&pdev->dev, "Cyclom-Y PCI host card with no "
4862 "Serial-Modules\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07004863 return -EIO;
4864 }
4865 if ((cy_next_channel + cy_pci_nchan) > NR_PORTS) {
Jiri Slaby21719192007-05-08 00:36:42 -07004866 dev_err(&pdev->dev, "Cyclom-Y/PCI found, but no "
4867 "channels are available. Change NR_PORTS in "
4868 "cyclades.c and recompile kernel.\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07004869 return -EIO;
4870 }
4871 /* fill the next cy_card structure available */
4872 for (j = 0; j < NR_CARDS; j++) {
Jiri Slabyf7429032007-05-08 00:36:59 -07004873 if (cy_card[j].base_addr == NULL)
Jiri Slaby58936d82007-05-08 00:36:13 -07004874 break;
4875 }
4876 if (j == NR_CARDS) { /* no more cy_cards available */
Jiri Slaby21719192007-05-08 00:36:42 -07004877 dev_err(&pdev->dev, "Cyclom-Y/PCI found, but no more "
4878 "cards can be used. Change NR_CARDS in "
4879 "cyclades.c and recompile kernel.\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07004880 return -EIO;
4881 }
4882
4883 /* allocate IRQ */
4884 retval = request_irq(cy_pci_irq, cyy_interrupt,
4885 IRQF_SHARED, "Cyclom-Y", &cy_card[j]);
4886 if (retval) {
Jiri Slaby21719192007-05-08 00:36:42 -07004887 dev_err(&pdev->dev, "could not allocate IRQ\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07004888 return retval;
4889 }
4890
4891 /* set cy_card */
Jiri Slaby58936d82007-05-08 00:36:13 -07004892 cy_card[j].base_addr = cy_pci_addr2;
4893 cy_card[j].ctl_addr = cy_pci_addr0;
Jiri Slaby80fada52007-05-08 00:36:41 -07004894 cy_card[j].irq = cy_pci_irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07004895 cy_card[j].bus_index = 1;
4896 cy_card[j].first_line = cy_next_channel;
4897 cy_card[j].num_chips = cy_pci_nchan / 4;
Jiri Slaby875b2062007-05-08 00:36:49 -07004898 cy_init_card(&cy_card[j]);
Jiri Slaby58936d82007-05-08 00:36:13 -07004899 pci_set_drvdata(pdev, &cy_card[j]);
4900
4901 /* enable interrupts in the PCI interface */
4902 plx_ver = readb(cy_pci_addr2 + CyPLX_VER) & 0x0f;
4903 switch (plx_ver) {
4904 case PLX_9050:
4905
4906 cy_writeb(cy_pci_addr0 + 0x4c, 0x43);
4907 break;
4908
4909 case PLX_9060:
4910 case PLX_9080:
4911 default: /* Old boards, use PLX_9060 */
4912
4913 plx_init(cy_pci_addr0, 0x6c);
4914 /* For some yet unknown reason, once the PLX9060 reloads
4915 the EEPROM, the IRQ is lost and, thus, we have to
4916 re-write it to the PCI config. registers.
4917 This will remain here until we find a permanent
4918 fix. */
4919 pci_write_config_byte(pdev, PCI_INTERRUPT_LINE,
4920 cy_pci_irq);
4921
4922 cy_writew(cy_pci_addr0 + 0x68,
4923 readw(cy_pci_addr0 + 0x68) | 0x0900);
4924 break;
4925 }
4926
Jiri Slaby21719192007-05-08 00:36:42 -07004927 dev_info(&pdev->dev, "Cyclom-Y/PCI #%d found: %d channels "
4928 "starting from port %d.\n", j + 1, cy_pci_nchan,
4929 cy_next_channel);
4930
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07004931 for (j = cy_next_channel;
4932 j < cy_next_channel + cy_pci_nchan; j++)
4933 tty_register_device(cy_serial_driver, j, &pdev->dev);
Jiri Slaby58936d82007-05-08 00:36:13 -07004934
4935 cy_next_channel += cy_pci_nchan;
4936 } else if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Lo) {
Jiri Slaby21719192007-05-08 00:36:42 -07004937 dev_err(&pdev->dev, "Cyclades-Z/PCI not supported for "
4938 "low addresses\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07004939 return -EIO;
4940 } else if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Hi) {
Jiri Slaby21719192007-05-08 00:36:42 -07004941 dev_dbg(&pdev->dev, "Cyclades-Z/PCI found\n");
4942
Jiri Slaby58936d82007-05-08 00:36:13 -07004943 cy_pci_addr0 = pci_iomap(pdev, 0, CyPCI_Zctl);
4944
4945 /* Disable interrupts on the PLX before resetting it */
4946 cy_writew(cy_pci_addr0 + 0x68,
4947 readw(cy_pci_addr0 + 0x68) & ~0x0900);
4948
4949 plx_init(cy_pci_addr0, 0x6c);
4950 /* For some yet unknown reason, once the PLX9060 reloads
4951 the EEPROM, the IRQ is lost and, thus, we have to
4952 re-write it to the PCI config. registers.
4953 This will remain here until we find a permanent
4954 fix. */
Jiri Slaby80fada52007-05-08 00:36:41 -07004955 pci_write_config_byte(pdev, PCI_INTERRUPT_LINE, cy_pci_irq);
Jiri Slaby58936d82007-05-08 00:36:13 -07004956
4957 mailbox = (__u32)readl(&((struct RUNTIME_9060 __iomem *)
4958 cy_pci_addr0)->mail_box_0);
4959
4960 if (pci_resource_flags(pdev, 2) & IORESOURCE_IO) {
Jiri Slaby21719192007-05-08 00:36:42 -07004961 dev_warn(&pdev->dev, "PCI I/O bit incorrectly "
Jiri Slaby58936d82007-05-08 00:36:13 -07004962 "set. Ignoring it...\n");
4963 pdev->resource[2].flags &= ~IORESOURCE_IO;
4964 }
4965
4966 /* Although we don't use this I/O region, we should
4967 request it from the kernel anyway, to avoid problems
4968 with other drivers accessing it. */
4969 retval = pci_request_regions(pdev, "Cyclades-Z");
4970 if (retval) {
Jiri Slaby21719192007-05-08 00:36:42 -07004971 dev_err(&pdev->dev, "failed to reserve resources\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07004972 return retval;
4973 }
4974
4975 if (mailbox == ZE_V1) {
Jiri Slaby6d8248e82007-05-08 00:36:47 -07004976 retval = cy_init_Ze(cy_pci_addr0, cy_pci_irq, pdev);
Jiri Slaby58936d82007-05-08 00:36:13 -07004977 return retval;
4978 } else {
4979 cy_pci_addr2 = pci_iomap(pdev, 2, CyPCI_Zwin);
4980 }
4981
Jiri Slaby21719192007-05-08 00:36:42 -07004982 dev_dbg(&pdev->dev, "Cyclades-Z/PCI: relocate winaddr=0x%p "
4983 "ctladdr=0x%p\n", cy_pci_addr2, cy_pci_addr0);
Jiri Slaby58936d82007-05-08 00:36:13 -07004984#ifdef CY_PCI_DEBUG
Jiri Slaby58936d82007-05-08 00:36:13 -07004985 if (mailbox == ZO_V1) {
4986 cy_writel(&((struct RUNTIME_9060 *)
4987 (cy_pci_addr0))->loc_addr_base,
4988 WIN_CREG);
Jiri Slaby21719192007-05-08 00:36:42 -07004989 dev_info(&pdev->dev, "Cyclades-8Zo/PCI: FPGA id %lx, "
4990 "ver %lx\n", (ulong)(0xff &
Jiri Slaby58936d82007-05-08 00:36:13 -07004991 readl(&((struct CUSTOM_REG *)
Jiri Slaby21719192007-05-08 00:36:42 -07004992 cy_pci_addr2)->fpga_id)),
4993 (ulong)(0xff & readl(&((struct CUSTOM_REG *)
4994 cy_pci_addr2)->fpga_version)));
Jiri Slaby58936d82007-05-08 00:36:13 -07004995 cy_writel(&((struct RUNTIME_9060 *)
Jiri Slaby21719192007-05-08 00:36:42 -07004996 cy_pci_addr0)->loc_addr_base, WIN_RAM);
Jiri Slaby58936d82007-05-08 00:36:13 -07004997 } else {
Jiri Slaby21719192007-05-08 00:36:42 -07004998 dev_info(&pdev->dev, "Cyclades-Z/PCI: New Cyclades-Z "
4999 "board. FPGA not loaded\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07005000 }
5001#endif
5002 /* The following clears the firmware id word. This
5003 ensures that the driver will not attempt to talk to
5004 the board until it has been properly initialized.
5005 */
5006 if ((mailbox == ZO_V1) || (mailbox == ZO_V2))
5007 cy_writel(cy_pci_addr2 + ID_ADDRESS, 0L);
5008
5009 /* This must be a Cyclades-8Zo/PCI. The extendable
5010 version will have a different device_id and will
5011 be allocated its maximum number of ports. */
5012 cy_pci_nchan = 8;
5013
5014 if ((cy_next_channel + cy_pci_nchan) > NR_PORTS) {
Jiri Slaby21719192007-05-08 00:36:42 -07005015 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
5016 "channels are available. Change NR_PORTS in "
5017 "cyclades.c and recompile kernel.\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07005018 return -EIO;
5019 }
5020
5021 /* fill the next cy_card structure available */
5022 for (j = 0; j < NR_CARDS; j++) {
Jiri Slabyf7429032007-05-08 00:36:59 -07005023 if (cy_card[j].base_addr == NULL)
Jiri Slaby58936d82007-05-08 00:36:13 -07005024 break;
5025 }
5026 if (j == NR_CARDS) { /* no more cy_cards available */
Jiri Slaby21719192007-05-08 00:36:42 -07005027 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
5028 "more cards can be used. Change NR_CARDS in "
5029 "cyclades.c and recompile kernel.\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07005030 return -EIO;
5031 }
5032#ifdef CONFIG_CYZ_INTR
5033 /* allocate IRQ only if board has an IRQ */
5034 if ((cy_pci_irq != 0) && (cy_pci_irq != 255)) {
5035 retval = request_irq(cy_pci_irq, cyz_interrupt,
5036 IRQF_SHARED, "Cyclades-Z",
5037 &cy_card[j]);
5038 if (retval) {
Jiri Slaby21719192007-05-08 00:36:42 -07005039 dev_err(&pdev->dev, "could not allocate IRQ\n");
Jiri Slaby58936d82007-05-08 00:36:13 -07005040 return retval;
5041 }
5042 }
5043#endif /* CONFIG_CYZ_INTR */
5044
5045 /* set cy_card */
Jiri Slaby58936d82007-05-08 00:36:13 -07005046 cy_card[j].base_addr = cy_pci_addr2;
5047 cy_card[j].ctl_addr = cy_pci_addr0;
Jiri Slaby80fada52007-05-08 00:36:41 -07005048 cy_card[j].irq = cy_pci_irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07005049 cy_card[j].bus_index = 1;
5050 cy_card[j].first_line = cy_next_channel;
5051 cy_card[j].num_chips = -1;
Jiri Slaby875b2062007-05-08 00:36:49 -07005052 cy_init_card(&cy_card[j]);
Jiri Slaby58936d82007-05-08 00:36:13 -07005053 pci_set_drvdata(pdev, &cy_card[j]);
5054
Jiri Slaby21719192007-05-08 00:36:42 -07005055 dev_info(&pdev->dev, "Cyclades-8Zo/PCI #%d found: %d channels "
5056 "starting from port %d.\n", j + 1, cy_pci_nchan,
5057 cy_next_channel);
Jiri Slaby58936d82007-05-08 00:36:13 -07005058
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005059 for (j = cy_next_channel;
5060 j < cy_next_channel + cy_pci_nchan; j++)
5061 tty_register_device(cy_serial_driver, j, &pdev->dev);
Jiri Slaby58936d82007-05-08 00:36:13 -07005062 cy_next_channel += cy_pci_nchan;
5063 }
5064
5065 return 0;
5066}
Jiri Slaby58936d82007-05-08 00:36:13 -07005067
Jiri Slaby6747cd92007-05-08 00:36:34 -07005068static void __devexit cy_pci_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069{
Jiri Slaby38d09092007-05-08 00:36:10 -07005070 struct cyclades_card *cinfo = pci_get_drvdata(pdev);
Jiri Slabyf3851e72007-05-08 00:36:16 -07005071 unsigned int i;
Jiri Slaby38d09092007-05-08 00:36:10 -07005072
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005073 /* non-Z with old PLX */
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07005074 if (!IS_CYC_Z(*cinfo) && (readb(cinfo->base_addr + CyPLX_VER) & 0x0f) ==
5075 PLX_9050)
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005076 cy_writeb(cinfo->ctl_addr + 0x4c, 0);
5077 else
5078#ifndef CONFIG_CYZ_INTR
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07005079 if (!IS_CYC_Z(*cinfo))
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005080#endif
5081 cy_writew(cinfo->ctl_addr + 0x68,
5082 readw(cinfo->ctl_addr + 0x68) & ~0x0900);
5083
Jiri Slaby38d09092007-05-08 00:36:10 -07005084 pci_iounmap(pdev, cinfo->base_addr);
5085 if (cinfo->ctl_addr)
5086 pci_iounmap(pdev, cinfo->ctl_addr);
5087 if (cinfo->irq
5088#ifndef CONFIG_CYZ_INTR
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07005089 && !IS_CYC_Z(*cinfo)
Jiri Slaby38d09092007-05-08 00:36:10 -07005090#endif /* CONFIG_CYZ_INTR */
5091 )
5092 free_irq(cinfo->irq, cinfo);
5093 pci_release_regions(pdev);
5094
5095 cinfo->base_addr = NULL;
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005096 for (i = cinfo->first_line; i < cinfo->first_line +
5097 cinfo->nports; i++)
5098 tty_unregister_device(cy_serial_driver, i);
Jiri Slabydd025c02007-05-08 00:37:02 -07005099 cinfo->nports = 0;
5100 kfree(cinfo->ports);
Jiri Slaby38d09092007-05-08 00:36:10 -07005101}
5102
Jiri Slaby6747cd92007-05-08 00:36:34 -07005103static struct pci_driver cy_pci_driver = {
5104 .name = "cyclades",
5105 .id_table = cy_pci_dev_id,
5106 .probe = cy_pci_probe,
5107 .remove = __devexit_p(cy_pci_remove)
5108};
5109#endif
5110
Jiri Slaby02f11752006-12-08 02:39:28 -08005111static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112cyclades_get_proc_info(char *buf, char **start, off_t offset, int length,
Jiri Slaby02f11752006-12-08 02:39:28 -08005113 int *eof, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114{
Jiri Slaby02f11752006-12-08 02:39:28 -08005115 struct cyclades_port *info;
Jiri Slabydd025c02007-05-08 00:37:02 -07005116 unsigned int i, j;
Jiri Slaby02f11752006-12-08 02:39:28 -08005117 int len = 0;
5118 off_t begin = 0;
5119 off_t pos = 0;
5120 int size;
5121 __u32 cur_jifs = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
Jiri Slaby02f11752006-12-08 02:39:28 -08005123 size = sprintf(buf, "Dev TimeOpen BytesOut IdleOut BytesIn "
5124 "IdleIn Overruns Ldisc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125
Jiri Slaby02f11752006-12-08 02:39:28 -08005126 pos += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127 len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128
Jiri Slaby02f11752006-12-08 02:39:28 -08005129 /* Output one line for each known port */
Jiri Slabydd025c02007-05-08 00:37:02 -07005130 for (i = 0; i < NR_CARDS; i++)
5131 for (j = 0; j < cy_card[i].nports; j++) {
5132 info = &cy_card[i].ports[j];
Jiri Slaby02f11752006-12-08 02:39:28 -08005133
Jiri Slabydd025c02007-05-08 00:37:02 -07005134 if (info->count)
5135 size = sprintf(buf + len, "%3d %8lu %10lu %8lu "
5136 "%10lu %8lu %9lu %6ld\n", info->line,
5137 (cur_jifs - info->idle_stats.in_use) /
5138 HZ, info->idle_stats.xmit_bytes,
5139 (cur_jifs - info->idle_stats.xmit_idle)/
5140 HZ, info->idle_stats.recv_bytes,
5141 (cur_jifs - info->idle_stats.recv_idle)/
5142 HZ, info->idle_stats.overruns,
5143 (long)info->tty->ldisc.num);
5144 else
5145 size = sprintf(buf + len, "%3d %8lu %10lu %8lu "
5146 "%10lu %8lu %9lu %6ld\n",
5147 info->line, 0L, 0L, 0L, 0L, 0L, 0L, 0L);
5148 len += size;
5149 pos = begin + len;
Jiri Slaby02f11752006-12-08 02:39:28 -08005150
Jiri Slabydd025c02007-05-08 00:37:02 -07005151 if (pos < offset) {
5152 len = 0;
5153 begin = pos;
5154 }
5155 if (pos > offset + length)
5156 goto done;
Jiri Slaby02f11752006-12-08 02:39:28 -08005157 }
Jiri Slaby02f11752006-12-08 02:39:28 -08005158 *eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159done:
Jiri Slaby02f11752006-12-08 02:39:28 -08005160 *start = buf + (offset - begin); /* Start of wanted data */
5161 len -= (offset - begin); /* Start slop */
5162 if (len > length)
5163 len = length; /* Ending slop */
5164 if (len < 0)
5165 len = 0;
5166 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167}
5168
5169/* The serial driver boot-time initialization code!
5170 Hardware I/O ports are mapped to character special devices on a
5171 first found, first allocated manner. That is, this code searches
5172 for Cyclom cards in the system. As each is found, it is probed
5173 to discover how many chips (and thus how many ports) are present.
5174 These ports are mapped to the tty ports 32 and upward in monotonic
5175 fashion. If an 8-port card is replaced with a 16-port card, the
5176 port mapping on a following card will shift.
5177
5178 This approach is different from what is used in the other serial
5179 device driver because the Cyclom is more properly a multiplexer,
5180 not just an aggregation of serial ports on one card.
5181
5182 If there are more cards with more ports than have been
5183 statically allocated above, a warning is printed and the
5184 extra ports are ignored.
5185 */
5186
Jeff Dikeb68e31d2006-10-02 02:17:18 -07005187static const struct tty_operations cy_ops = {
Jiri Slaby02f11752006-12-08 02:39:28 -08005188 .open = cy_open,
5189 .close = cy_close,
5190 .write = cy_write,
5191 .put_char = cy_put_char,
5192 .flush_chars = cy_flush_chars,
5193 .write_room = cy_write_room,
5194 .chars_in_buffer = cy_chars_in_buffer,
5195 .flush_buffer = cy_flush_buffer,
5196 .ioctl = cy_ioctl,
5197 .throttle = cy_throttle,
5198 .unthrottle = cy_unthrottle,
5199 .set_termios = cy_set_termios,
5200 .stop = cy_stop,
5201 .start = cy_start,
5202 .hangup = cy_hangup,
5203 .break_ctl = cy_break,
5204 .wait_until_sent = cy_wait_until_sent,
5205 .read_proc = cyclades_get_proc_info,
5206 .tiocmget = cy_tiocmget,
5207 .tiocmset = cy_tiocmset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208};
5209
Jiri Slaby02f11752006-12-08 02:39:28 -08005210static int __init cy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211{
Jiri Slabydd025c02007-05-08 00:37:02 -07005212 unsigned int nboards;
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005213 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214
Jiri Slaby02f11752006-12-08 02:39:28 -08005215 cy_serial_driver = alloc_tty_driver(NR_PORTS);
5216 if (!cy_serial_driver)
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005217 goto err;
Jiri Slaby21719192007-05-08 00:36:42 -07005218
5219 printk(KERN_INFO "Cyclades driver " CY_VERSION " (built %s %s)\n",
5220 __DATE__, __TIME__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221
Jiri Slaby02f11752006-12-08 02:39:28 -08005222 /* Initialize the tty_driver structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223
Jiri Slaby02f11752006-12-08 02:39:28 -08005224 cy_serial_driver->owner = THIS_MODULE;
5225 cy_serial_driver->driver_name = "cyclades";
5226 cy_serial_driver->name = "ttyC";
5227 cy_serial_driver->major = CYCLADES_MAJOR;
5228 cy_serial_driver->minor_start = 0;
5229 cy_serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
5230 cy_serial_driver->subtype = SERIAL_TYPE_NORMAL;
5231 cy_serial_driver->init_termios = tty_std_termios;
5232 cy_serial_driver->init_termios.c_cflag =
5233 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005234 cy_serial_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08005235 tty_set_operations(cy_serial_driver, &cy_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005237 retval = tty_register_driver(cy_serial_driver);
5238 if (retval) {
5239 printk(KERN_ERR "Couldn't register Cyclades serial driver\n");
5240 goto err_frtty;
5241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242
Jiri Slaby02f11752006-12-08 02:39:28 -08005243 /* the code below is responsible to find the boards. Each different
5244 type of board has its own detection routine. If a board is found,
5245 the next cy_card structure available is set by the detection
5246 routine. These functions are responsible for checking the
5247 availability of cy_card and cy_port data structures and updating
5248 the cy_next_channel. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249
Jiri Slaby02f11752006-12-08 02:39:28 -08005250 /* look for isa boards */
Jiri Slaby14a55a62007-05-08 00:36:18 -07005251 nboards = cy_detect_isa();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252
Jiri Slaby6747cd92007-05-08 00:36:34 -07005253#ifdef CONFIG_PCI
Jiri Slaby02f11752006-12-08 02:39:28 -08005254 /* look for pci boards */
Jiri Slaby6747cd92007-05-08 00:36:34 -07005255 retval = pci_register_driver(&cy_pci_driver);
5256 if (retval && !nboards)
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005257 goto err_unr;
Jiri Slaby6747cd92007-05-08 00:36:34 -07005258#endif
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005259
5260 return 0;
5261err_unr:
5262 tty_unregister_driver(cy_serial_driver);
5263err_frtty:
5264 put_tty_driver(cy_serial_driver);
5265err:
5266 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08005267} /* cy_init */
5268
5269static void __exit cy_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270{
Jiri Slabydd025c02007-05-08 00:37:02 -07005271 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08005272 int i, e1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273
5274#ifndef CONFIG_CYZ_INTR
Jiri Slabyb7050902007-05-08 00:35:48 -07005275 del_timer_sync(&cyz_timerlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276#endif /* CONFIG_CYZ_INTR */
5277
Jiri Slaby02f11752006-12-08 02:39:28 -08005278 if ((e1 = tty_unregister_driver(cy_serial_driver)))
Jiri Slaby21719192007-05-08 00:36:42 -07005279 printk(KERN_ERR "failed to unregister Cyclades serial "
5280 "driver(%d)\n", e1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281
Jiri Slaby6747cd92007-05-08 00:36:34 -07005282#ifdef CONFIG_PCI
5283 pci_unregister_driver(&cy_pci_driver);
5284#endif
5285
Jiri Slaby02f11752006-12-08 02:39:28 -08005286 for (i = 0; i < NR_CARDS; i++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07005287 card = &cy_card[i];
5288 if (card->base_addr) {
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005289 /* clear interrupt */
Jiri Slabydd025c02007-05-08 00:37:02 -07005290 cy_writeb(card->base_addr + Cy_ClrIntr, 0);
5291 iounmap(card->base_addr);
5292 if (card->ctl_addr)
5293 iounmap(card->ctl_addr);
5294 if (card->irq
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295#ifndef CONFIG_CYZ_INTR
Jiri Slabydd025c02007-05-08 00:37:02 -07005296 && !IS_CYC_Z(*card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297#endif /* CONFIG_CYZ_INTR */
Jiri Slaby02f11752006-12-08 02:39:28 -08005298 )
Jiri Slabydd025c02007-05-08 00:37:02 -07005299 free_irq(card->irq, card);
5300 for (e1 = card->first_line;
5301 e1 < card->first_line +
5302 card->nports; e1++)
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005303 tty_unregister_device(cy_serial_driver, e1);
Jiri Slabydd025c02007-05-08 00:37:02 -07005304 kfree(card->ports);
Jiri Slaby02f11752006-12-08 02:39:28 -08005305 }
5306 }
Jiri Slabyf2462bf2007-05-08 00:37:01 -07005307
5308 put_tty_driver(cy_serial_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309} /* cy_cleanup_module */
5310
5311module_init(cy_init);
5312module_exit(cy_cleanup_module);
5313
5314MODULE_LICENSE("GPL");