blob: 2cbf74134f1b18ab1ae63c662890b0e9c1fcc9e3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#undef BLOCKMOVE
2#define Z_WAKE
3#undef Z_EXT_CHARS_IN_BUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5/*
6 * linux/drivers/char/cyclades.c
7 *
8 * This file contains the driver for the Cyclades async multiport
9 * serial boards.
10 *
11 * Initially written by Randolph Bentson <bentson@grieg.seaslug.org>.
12 * Modified and maintained by Marcio Saito <marcio@cyclades.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Jiri Slabyc8e16932007-05-08 00:37:05 -070014 * Copyright (C) 2007 Jiri Slaby <jirislaby@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
16 * Much of the design and some of the code came from serial.c
17 * which was copyright (C) 1991, 1992 Linus Torvalds. It was
18 * extensively rewritten by Theodore Ts'o, 8/16/92 -- 9/14/92,
19 * and then fixed as suggested by Michael K. Johnson 12/12/92.
Jiri Slabyc8e16932007-05-08 00:37:05 -070020 * Converted to pci probing and cleaned up by Jiri Slaby.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
22 * This version supports shared IRQ's (only for PCI boards).
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * Prevent users from opening non-existing Z ports.
25 *
26 * Revision 2.3.2.8 2000/07/06 18:14:16 ivan
27 * Fixed the PCI detection function to work properly on Alpha systems.
28 * Implemented support for TIOCSERGETLSR ioctl.
29 * Implemented full support for non-standard baud rates.
30 *
31 * Revision 2.3.2.7 2000/06/01 18:26:34 ivan
32 * Request PLX I/O region, although driver doesn't use it, to avoid
33 * problems with other drivers accessing it.
34 * Removed count for on-board buffer characters in cy_chars_in_buffer
35 * (Cyclades-Z only).
36 *
37 * Revision 2.3.2.6 2000/05/05 13:56:05 ivan
38 * Driver now reports physical instead of virtual memory addresses.
39 * Masks were added to some Cyclades-Z read accesses.
40 * Implemented workaround for PLX9050 bug that would cause a system lockup
41 * in certain systems, depending on the MMIO addresses allocated to the
42 * board.
43 * Changed the Tx interrupt programming in the CD1400 chips to boost up
44 * performance (Cyclom-Y only).
45 * Code is now compliant with the new module interface (module_[init|exit]).
46 * Make use of the PCI helper functions to access PCI resources.
47 * Did some code "housekeeping".
48 *
49 * Revision 2.3.2.5 2000/01/19 14:35:33 ivan
50 * Fixed bug in cy_set_termios on CRTSCTS flag turnoff.
51 *
52 * Revision 2.3.2.4 2000/01/17 09:19:40 ivan
53 * Fixed SMP locking in Cyclom-Y interrupt handler.
54 *
55 * Revision 2.3.2.3 1999/12/28 12:11:39 ivan
56 * Added a new cyclades_card field called nports to allow the driver to
57 * know the exact number of ports found by the Z firmware after its load;
58 * RX buffer contention prevention logic on interrupt op mode revisited
59 * (Cyclades-Z only);
60 * Revisited printk's for Z debug;
61 * Driver now makes sure that the constant SERIAL_XMIT_SIZE is defined;
62 *
63 * Revision 2.3.2.2 1999/10/01 11:27:43 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -070064 * Fixed bug in cyz_poll that would make all ports but port 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 * unable to transmit/receive data (Cyclades-Z only);
66 * Implemented logic to prevent the RX buffer from being stuck with data
67 * due to a driver / firmware race condition in interrupt op mode
68 * (Cyclades-Z only);
69 * Fixed bug in block_til_ready logic that would lead to a system crash;
70 * Revisited cy_close spinlock usage;
71 *
72 * Revision 2.3.2.1 1999/09/28 11:01:22 ivan
73 * Revisited CONFIG_PCI conditional compilation for PCI board support;
74 * Implemented TIOCGICOUNT and TIOCMIWAIT ioctl support;
75 * _Major_ cleanup on the Cyclades-Z interrupt support code / logic;
76 * Removed CTS handling from the driver -- this is now completely handled
77 * by the firmware (Cyclades-Z only);
78 * Flush RX on-board buffers on a port open (Cyclades-Z only);
79 * Fixed handling of ASYNC_SPD_* TTY flags;
80 * Module unload now unmaps all memory area allocated by ioremap;
81 *
82 * Revision 2.3.1.1 1999/07/15 16:45:53 ivan
83 * Removed CY_PROC conditional compilation;
84 * Implemented SMP-awareness for the driver;
Alan Cox15ed6cc2008-04-30 00:53:55 -070085 * Implemented a new ISA IRQ autoprobe that uses the irq_probe_[on|off]
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * functions;
87 * The driver now accepts memory addresses (maddr=0xMMMMM) and IRQs
88 * (irq=NN) as parameters (only for ISA boards);
Alan Cox15ed6cc2008-04-30 00:53:55 -070089 * Fixed bug in set_line_char that would prevent the Cyclades-Z
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * ports from being configured at speeds above 115.2Kbps;
91 * Fixed bug in cy_set_termios that would prevent XON/XOFF flow control
92 * switching from working properly;
Alan Cox15ed6cc2008-04-30 00:53:55 -070093 * The driver now only prints IRQ info for the Cyclades-Z if it's
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * configured to work in interrupt mode;
95 *
96 * Revision 2.2.2.3 1999/06/28 11:13:29 ivan
97 * Added support for interrupt mode operation for the Z cards;
98 * Removed the driver inactivity control for the Z;
Alan Cox15ed6cc2008-04-30 00:53:55 -070099 * Added a missing MOD_DEC_USE_COUNT in the cy_open function for when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 * the Z firmware is not loaded yet;
Alan Cox15ed6cc2008-04-30 00:53:55 -0700101 * Replaced the "manual" Z Tx flush buffer by a call to a FW command of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * same functionality;
Alan Cox15ed6cc2008-04-30 00:53:55 -0700103 * Implemented workaround for IRQ setting loss on the PCI configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 * registers after a PCI bridge EEPROM reload (affects PLX9060 only);
105 *
106 * Revision 2.2.2.2 1999/05/14 17:18:15 ivan
107 * /proc entry location changed to /proc/tty/driver/cyclades;
108 * Added support to shared IRQ's (only for PCI boards);
109 * Added support for Cobalt Qube2 systems;
110 * IRQ [de]allocation scheme revisited;
111 * BREAK implementation changed in order to make use of the 'break_ctl'
112 * TTY facility;
113 * Fixed typo in TTY structure field 'driver_name';
Alan Cox15ed6cc2008-04-30 00:53:55 -0700114 * Included a PCI bridge reset and EEPROM reload in the board
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * initialization code (for both Y and Z series).
116 *
117 * Revision 2.2.2.1 1999/04/08 16:17:43 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700118 * Fixed a bug in cy_wait_until_sent that was preventing the port to be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * closed properly after a SIGINT;
120 * Module usage counter scheme revisited;
121 * Added support to the upcoming Y PCI boards (i.e., support to additional
122 * PCI Device ID's).
Alan Cox15ed6cc2008-04-30 00:53:55 -0700123 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * Revision 2.2.1.10 1999/01/20 16:14:29 ivan
125 * Removed all unnecessary page-alignement operations in ioremap calls
126 * (ioremap is currently safe for these operations).
127 *
128 * Revision 2.2.1.9 1998/12/30 18:18:30 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700129 * Changed access to PLX PCI bridge registers from I/O to MMIO, in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * order to make PLX9050-based boards work with certain motherboards.
131 *
132 * Revision 2.2.1.8 1998/11/13 12:46:20 ivan
133 * cy_close function now resets (correctly) the tty->closing flag;
134 * JIFFIES_DIFF macro fixed.
135 *
136 * Revision 2.2.1.7 1998/09/03 12:07:28 ivan
137 * Fixed bug in cy_close function, which was not informing HW of
138 * which port should have the reception disabled before doing so;
139 * fixed Cyclom-8YoP hardware detection bug.
140 *
141 * Revision 2.2.1.6 1998/08/20 17:15:39 ivan
142 * Fixed bug in cy_close function, which causes malfunction
143 * of one of the first 4 ports when a higher port is closed
144 * (Cyclom-Y only).
145 *
146 * Revision 2.2.1.5 1998/08/10 18:10:28 ivan
147 * Fixed Cyclom-4Yo hardware detection bug.
148 *
149 * Revision 2.2.1.4 1998/08/04 11:02:50 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700150 * /proc/cyclades implementation with great collaboration of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 * Marc Lewis <marc@blarg.net>;
152 * cyy_interrupt was changed to avoid occurrence of kernel oopses
153 * during PPP operation.
154 *
155 * Revision 2.2.1.3 1998/06/01 12:09:10 ivan
156 * General code review in order to comply with 2.1 kernel standards;
157 * data loss prevention for slow devices revisited (cy_wait_until_sent
158 * was created);
Alan Cox15ed6cc2008-04-30 00:53:55 -0700159 * removed conditional compilation for new/old PCI structure support
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * (now the driver only supports the new PCI structure).
161 *
162 * Revision 2.2.1.1 1998/03/19 16:43:12 ivan
163 * added conditional compilation for new/old PCI structure support;
164 * removed kernel series (2.0.x / 2.1.x) conditional compilation.
165 *
166 * Revision 2.1.1.3 1998/03/16 18:01:12 ivan
167 * cleaned up the data loss fix;
168 * fixed XON/XOFF handling once more (Cyclades-Z);
169 * general review of the driver routines;
Alan Cox15ed6cc2008-04-30 00:53:55 -0700170 * introduction of a mechanism to prevent data loss with slow
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * printers, by forcing a delay before closing the port.
172 *
173 * Revision 2.1.1.2 1998/02/17 16:50:00 ivan
174 * fixed detection/handling of new CD1400 in Ye boards;
175 * fixed XON/XOFF handling (Cyclades-Z);
176 * fixed data loss caused by a premature port close;
177 * introduction of a flag that holds the CD1400 version ID per port
178 * (used by the CYGETCD1400VER new ioctl).
179 *
180 * Revision 2.1.1.1 1997/12/03 17:31:19 ivan
181 * Code review for the module cleanup routine;
182 * fixed RTS and DTR status report for new CD1400's in get_modem_info;
183 * includes anonymous changes regarding signal_pending.
Alan Cox15ed6cc2008-04-30 00:53:55 -0700184 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * Revision 2.1 1997/11/01 17:42:41 ivan
186 * Changes in the driver to support Alpha systems (except 8Zo V_1);
187 * BREAK fix for the Cyclades-Z boards;
188 * driver inactivity control by FW implemented;
Alan Cox15ed6cc2008-04-30 00:53:55 -0700189 * introduction of flag that allows driver to take advantage of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 * a special CD1400 feature related to HW flow control;
191 * added support for the CD1400 rev. J (Cyclom-Y boards);
192 * introduction of ioctls to:
193 * - control the rtsdtr_inv flag (Cyclom-Y);
194 * - control the rflow flag (Cyclom-Y);
195 * - adjust the polling interval (Cyclades-Z);
196 *
197 * Revision 1.36.4.33 1997/06/27 19:00:00 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700198 * Fixes related to kernel version conditional
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * compilation.
Alan Cox15ed6cc2008-04-30 00:53:55 -0700200 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 * Revision 1.36.4.32 1997/06/14 19:30:00 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700202 * Compatibility issues between kernels 2.0.x and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * 2.1.x (mainly related to clear_bit function).
Alan Cox15ed6cc2008-04-30 00:53:55 -0700204 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * Revision 1.36.4.31 1997/06/03 15:30:00 ivan
Alan Cox15ed6cc2008-04-30 00:53:55 -0700206 * Changes to define the memory window according to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * board type.
Alan Cox15ed6cc2008-04-30 00:53:55 -0700208 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * Revision 1.36.4.30 1997/05/16 15:30:00 daniel
210 * Changes to support new cycladesZ boards.
211 *
212 * Revision 1.36.4.29 1997/05/12 11:30:00 daniel
213 * Merge of Bentson's and Daniel's version 1.36.4.28.
214 * Corrects bug in cy_detect_pci: check if there are more
215 * ports than the number of static structs allocated.
216 * Warning message during initialization if this driver is
217 * used with the new generation of cycladesZ boards. Those
218 * will be supported only in next release of the driver.
219 * Corrects bug in cy_detect_pci and cy_detect_isa that
220 * returned wrong number of VALID boards, when a cyclomY
221 * was found with no serial modules connected.
222 * Changes to use current (2.1.x) kernel subroutine names
223 * and created macros for compilation with 2.0.x kernel,
224 * instead of the other way around.
225 *
226 * Revision 1.36.4.28 1997/05/?? ??:00:00 bentson
227 * Change queue_task_irq_off to queue_task_irq.
228 * The inline function queue_task_irq_off (tqueue.h)
229 * was removed from latest releases of 2.1.x kernel.
230 * Use of macro __init to mark the initialization
231 * routines, so memory can be reused.
232 * Also incorporate implementation of critical region
233 * in function cleanup_module() created by anonymous
234 * linuxer.
235 *
236 * Revision 1.36.4.28 1997/04/25 16:00:00 daniel
237 * Change to support new firmware that solves DCD problem:
238 * application could fail to receive SIGHUP signal when DCD
239 * varying too fast.
240 *
241 * Revision 1.36.4.27 1997/03/26 10:30:00 daniel
242 * Changed for support linux versions 2.1.X.
243 * Backward compatible with linux versions 2.0.X.
244 * Corrected illegal use of filler field in
245 * CH_CTRL struct.
246 * Deleted some debug messages.
247 *
248 * Revision 1.36.4.26 1997/02/27 12:00:00 daniel
249 * Included check for NULL tty pointer in cyz_poll.
250 *
251 * Revision 1.36.4.25 1997/02/26 16:28:30 bentson
252 * Bill Foster at Blarg! Online services noticed that
253 * some of the switch elements of -Z modem control
254 * lacked a closing "break;"
255 *
256 * Revision 1.36.4.24 1997/02/24 11:00:00 daniel
257 * Changed low water threshold for buffer xmit_buf
258 *
259 * Revision 1.36.4.23 1996/12/02 21:50:16 bentson
260 * Marcio provided fix to modem status fetch for -Z
261 *
262 * Revision 1.36.4.22 1996/10/28 22:41:17 bentson
263 * improve mapping of -Z control page (thanks to Steve
264 * Price <stevep@fa.tdktca.com> for help on this)
265 *
266 * Revision 1.36.4.21 1996/09/10 17:00:10 bentson
267 * shift from CPU-bound to memcopy in cyz_polling operation
268 *
269 * Revision 1.36.4.20 1996/09/09 18:30:32 Bentson
270 * Added support to set and report higher speeds.
271 *
272 * Revision 1.36.4.19c 1996/08/09 10:00:00 Marcio Saito
273 * Some fixes in the HW flow control for the BETA release.
274 * Don't try to register the IRQ.
275 *
276 * Revision 1.36.4.19 1996/08/08 16:23:18 Bentson
277 * make sure "cyc" appears in all kernel messages; all soft interrupts
278 * handled by same routine; recognize out-of-band reception; comment
279 * out some diagnostic messages; leave RTS/CTS flow control to hardware;
Jean Delvare33430dc2005-10-30 15:02:20 -0800280 * fix race condition in -Z buffer management; only -Y needs to explicitly
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * flush chars; tidy up some startup messages;
282 *
283 * Revision 1.36.4.18 1996/07/25 18:57:31 bentson
284 * shift MOD_INC_USE_COUNT location to match
285 * serial.c; purge some diagnostic messages;
286 *
287 * Revision 1.36.4.17 1996/07/25 18:01:08 bentson
288 * enable modem status messages and fetch & process them; note
289 * time of last activity type for each port; set_line_char now
290 * supports more than line 0 and treats 0 baud correctly;
291 * get_modem_info senses rs_status;
292 *
293 * Revision 1.36.4.16 1996/07/20 08:43:15 bentson
294 * barely works--now's time to turn on
295 * more features 'til it breaks
296 *
297 * Revision 1.36.4.15 1996/07/19 22:30:06 bentson
298 * check more -Z board status; shorten boot message
299 *
300 * Revision 1.36.4.14 1996/07/19 22:20:37 bentson
301 * fix reference to ch_ctrl in startup; verify return
302 * values from cyz_issue_cmd and cyz_update_channel;
303 * more stuff to get modem control correct;
304 *
305 * Revision 1.36.4.13 1996/07/11 19:53:33 bentson
306 * more -Z stuff folded in; re-order changes to put -Z stuff
307 * after -Y stuff (to make changes clearer)
308 *
309 * Revision 1.36.4.12 1996/07/11 15:40:55 bentson
310 * Add code to poll Cyclades-Z. Add code to get & set RS-232 control.
311 * Add code to send break. Clear firmware ID word at startup (so
312 * that other code won't talk to inactive board).
313 *
314 * Revision 1.36.4.11 1996/07/09 05:28:29 bentson
315 * add code for -Z in set_line_char
316 *
317 * Revision 1.36.4.10 1996/07/08 19:28:37 bentson
318 * fold more -Z stuff (or in some cases, error messages)
319 * into driver; add text to "don't know what to do" messages.
320 *
321 * Revision 1.36.4.9 1996/07/08 18:38:38 bentson
322 * moved compile-time flags near top of file; cosmetic changes
323 * to narrow text (to allow 2-up printing); changed many declarations
324 * to "static" to limit external symbols; shuffled code order to
325 * coalesce -Y and -Z specific code, also to put internal functions
326 * in order of tty_driver structure; added code to recognize -Z
327 * ports (and for moment, do nothing or report error); add cy_startup
328 * to parse boot command line for extra base addresses for ISA probes;
329 *
330 * Revision 1.36.4.8 1996/06/25 17:40:19 bentson
331 * reorder some code, fix types of some vars (int vs. long),
332 * add cy_setup to support user declared ISA addresses
333 *
334 * Revision 1.36.4.7 1996/06/21 23:06:18 bentson
335 * dump ioctl based firmware load (it's now a user level
336 * program); ensure uninitialzed ports cannot be used
337 *
338 * Revision 1.36.4.6 1996/06/20 23:17:19 bentson
339 * rename vars and restructure some code
340 *
341 * Revision 1.36.4.5 1996/06/14 15:09:44 bentson
342 * get right status back after boot load
343 *
344 * Revision 1.36.4.4 1996/06/13 19:51:44 bentson
345 * successfully loads firmware
346 *
347 * Revision 1.36.4.3 1996/06/13 06:08:33 bentson
348 * add more of the code for the boot/load ioctls
349 *
350 * Revision 1.36.4.2 1996/06/11 21:00:51 bentson
351 * start to add Z functionality--starting with ioctl
352 * for loading firmware
353 *
354 * Revision 1.36.4.1 1996/06/10 18:03:02 bentson
355 * added code to recognize Z/PCI card at initialization; report
356 * presence, but card is not initialized (because firmware needs
357 * to be loaded)
358 *
359 * Revision 1.36.3.8 1996/06/07 16:29:00 bentson
360 * starting minor number at zero; added missing verify_area
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200361 * as noted by Heiko Eißfeldt <heiko@colossus.escape.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 *
363 * Revision 1.36.3.7 1996/04/19 21:06:18 bentson
364 * remove unneeded boot message & fix CLOCAL hardware flow
365 * control (Miquel van Smoorenburg <miquels@Q.cistron.nl>);
366 * remove unused diagnostic statements; minor 0 is first;
367 *
368 * Revision 1.36.3.6 1996/03/13 13:21:17 marcio
369 * The kernel function vremap (available only in later 1.3.xx kernels)
370 * allows the access to memory addresses above the RAM. This revision
371 * of the driver supports PCI boards below 1Mb (device id 0x100) and
372 * above 1Mb (device id 0x101).
373 *
374 * Revision 1.36.3.5 1996/03/07 15:20:17 bentson
375 * Some global changes to interrupt handling spilled into
376 * this driver--mostly unused arguments in system function
377 * calls. Also added change by Marcio Saito which should
378 * reduce lost interrupts at startup by fast processors.
379 *
380 * Revision 1.36.3.4 1995/11/13 20:45:10 bentson
381 * Changes by Corey Minyard <minyard@wf-rch.cirr.com> distributed
382 * in 1.3.41 kernel to remove a possible race condition, extend
383 * some error messages, and let the driver run as a loadable module
384 * Change by Alan Wendt <alan@ez0.ezlink.com> to remove a
385 * possible race condition.
386 * Change by Marcio Saito <marcio@cyclades.com> to fix PCI addressing.
387 *
388 * Revision 1.36.3.3 1995/11/13 19:44:48 bentson
389 * Changes by Linus Torvalds in 1.3.33 kernel distribution
390 * required due to reordering of driver initialization.
391 * Drivers are now initialized *after* memory management.
392 *
393 * Revision 1.36.3.2 1995/09/08 22:07:14 bentson
394 * remove printk from ISR; fix typo
395 *
396 * Revision 1.36.3.1 1995/09/01 12:00:42 marcio
397 * Minor fixes in the PCI board support. PCI function calls in
398 * conditional compilation (CONFIG_PCI). Thanks to Jim Duncan
399 * <duncan@okay.com>. "bad serial count" message removed.
400 *
401 * Revision 1.36.3 1995/08/22 09:19:42 marcio
402 * Cyclom-Y/PCI support added. Changes in the cy_init routine and
403 * board initialization. Changes in the boot messages. The driver
404 * supports up to 4 boards and 64 ports by default.
405 *
406 * Revision 1.36.1.4 1995/03/29 06:14:14 bentson
407 * disambiguate between Cyclom-16Y and Cyclom-32Ye;
408 *
409 * Revision 1.36.1.3 1995/03/23 22:15:35 bentson
410 * add missing break in modem control block in ioctl switch statement
411 * (discovered by Michael Edward Chastain <mec@jobe.shell.portal.com>);
412 *
413 * Revision 1.36.1.2 1995/03/22 19:16:22 bentson
414 * make sure CTS flow control is set as soon as possible (thanks
415 * to note from David Lambert <lambert@chesapeake.rps.slb.com>);
416 *
417 * Revision 1.36.1.1 1995/03/13 15:44:43 bentson
418 * initialize defaults for receive threshold and stale data timeout;
419 * cosmetic changes;
420 *
421 * Revision 1.36 1995/03/10 23:33:53 bentson
422 * added support of chips 4-7 in 32 port Cyclom-Ye;
423 * fix cy_interrupt pointer dereference problem
424 * (Joe Portman <baron@aa.net>);
425 * give better error response if open is attempted on non-existent port
426 * (Zachariah Vaum <jchryslr@netcom.com>);
427 * correct command timeout (Kenneth Lerman <lerman@@seltd.newnet.com>);
428 * conditional compilation for -16Y on systems with fast, noisy bus;
429 * comment out diagnostic print function;
430 * cleaned up table of base addresses;
431 * set receiver time-out period register to correct value,
432 * set receive threshold to better default values,
433 * set chip timer to more accurate 200 Hz ticking,
434 * add code to monitor and modify receive parameters
435 * (Rik Faith <faith@cs.unc.edu> Nick Simicich
436 * <njs@scifi.emi.net>);
437 *
438 * Revision 1.35 1994/12/16 13:54:18 steffen
439 * additional patch by Marcio Saito for board detection
440 * Accidently left out in 1.34
441 *
442 * Revision 1.34 1994/12/10 12:37:12 steffen
443 * This is the corrected version as suggested by Marcio Saito
444 *
445 * Revision 1.33 1994/12/01 22:41:18 bentson
446 * add hooks to support more high speeds directly; add tytso
447 * patch regarding CLOCAL wakeups
448 *
449 * Revision 1.32 1994/11/23 19:50:04 bentson
450 * allow direct kernel control of higher signalling rates;
451 * look for cards at additional locations
452 *
453 * Revision 1.31 1994/11/16 04:33:28 bentson
454 * ANOTHER fix from Corey Minyard, minyard@wf-rch.cirr.com--
455 * a problem in chars_in_buffer has been resolved by some
456 * small changes; this should yield smoother output
457 *
458 * Revision 1.30 1994/11/16 04:28:05 bentson
459 * Fix from Corey Minyard, Internet: minyard@metronet.com,
460 * UUCP: minyard@wf-rch.cirr.com, WORK: minyardbnr.ca, to
461 * cy_hangup that appears to clear up much (all?) of the
462 * DTR glitches; also he's added/cleaned-up diagnostic messages
463 *
464 * Revision 1.29 1994/11/16 04:16:07 bentson
465 * add change proposed by Ralph Sims, ralphs@halcyon.com, to
466 * operate higher speeds in same way as other serial ports;
467 * add more serial ports (for up to two 16-port muxes).
468 *
469 * Revision 1.28 1994/11/04 00:13:16 root
470 * turn off diagnostic messages
471 *
472 * Revision 1.27 1994/11/03 23:46:37 root
473 * bunch of changes to bring driver into greater conformance
474 * with the serial.c driver (looking for missed fixes)
475 *
476 * Revision 1.26 1994/11/03 22:40:36 root
477 * automatic interrupt probing fixed.
478 *
479 * Revision 1.25 1994/11/03 20:17:02 root
480 * start to implement auto-irq
481 *
482 * Revision 1.24 1994/11/03 18:01:55 root
483 * still working on modem signals--trying not to drop DTR
484 * during the getty/login processes
485 *
486 * Revision 1.23 1994/11/03 17:51:36 root
487 * extend baud rate support; set receive threshold as function
488 * of baud rate; fix some problems with RTS/CTS;
489 *
490 * Revision 1.22 1994/11/02 18:05:35 root
491 * changed arguments to udelay to type long to get
492 * delays to be of correct duration
493 *
494 * Revision 1.21 1994/11/02 17:37:30 root
495 * employ udelay (after calibrating loops_per_second earlier
496 * in init/main.c) instead of using home-grown delay routines
497 *
498 * Revision 1.20 1994/11/02 03:11:38 root
499 * cy_chars_in_buffer forces a return value of 0 to let
500 * login work (don't know why it does); some functions
501 * that were returning EFAULT, now executes the code;
502 * more work on deciding when to disable xmit interrupts;
503 *
504 * Revision 1.19 1994/11/01 20:10:14 root
505 * define routine to start transmission interrupts (by enabling
506 * transmit interrupts); directly enable/disable modem interrupts;
507 *
508 * Revision 1.18 1994/11/01 18:40:45 bentson
509 * Don't always enable transmit interrupts in startup; interrupt on
510 * TxMpty instead of TxRdy to help characters get out before shutdown;
511 * restructure xmit interrupt to check for chars first and quit if
512 * none are ready to go; modem status (MXVRx) is upright, _not_ inverted
513 * (to my view);
514 *
515 * Revision 1.17 1994/10/30 04:39:45 bentson
516 * rename serial_driver and callout_driver to cy_serial_driver and
517 * cy_callout_driver to avoid linkage interference; initialize
518 * info->type to PORT_CIRRUS; ruggedize paranoia test; elide ->port
519 * from cyclades_port structure; add paranoia check to cy_close;
520 *
521 * Revision 1.16 1994/10/30 01:14:33 bentson
522 * change major numbers; add some _early_ return statements;
523 *
524 * Revision 1.15 1994/10/29 06:43:15 bentson
525 * final tidying up for clean compile; enable some error reporting
526 *
527 * Revision 1.14 1994/10/28 20:30:22 Bentson
528 * lots of changes to drag the driver towards the new tty_io
529 * structures and operation. not expected to work, but may
530 * compile cleanly.
531 *
532 * Revision 1.13 1994/07/21 23:08:57 Bentson
533 * add some diagnostic cruft; support 24 lines (for testing
534 * both -8Y and -16Y cards; be more thorough in servicing all
535 * chips during interrupt; add "volatile" a few places to
536 * circumvent compiler optimizations; fix base & offset
537 * computations in block_til_ready (was causing chip 0 to
538 * stop operation)
539 *
540 * Revision 1.12 1994/07/19 16:42:11 Bentson
541 * add some hackery for kernel version 1.1.8; expand
542 * error messages; refine timing for delay loops and
543 * declare loop params volatile
544 *
545 * Revision 1.11 1994/06/11 21:53:10 bentson
546 * get use of save_car right in transmit interrupt service
547 *
548 * Revision 1.10.1.1 1994/06/11 21:31:18 bentson
549 * add some diagnostic printing; try to fix save_car stuff
550 *
551 * Revision 1.10 1994/06/11 20:36:08 bentson
552 * clean up compiler warnings
553 *
554 * Revision 1.9 1994/06/11 19:42:46 bentson
555 * added a bunch of code to support modem signalling
556 *
557 * Revision 1.8 1994/06/11 17:57:07 bentson
558 * recognize break & parity error
559 *
560 * Revision 1.7 1994/06/05 05:51:34 bentson
561 * Reorder baud table to be monotonic; add cli to CP; discard
562 * incoming characters and status if the line isn't open; start to
563 * fold code into cy_throttle; start to port get_serial_info,
564 * set_serial_info, get_modem_info, set_modem_info, and send_break
565 * from serial.c; expand cy_ioctl; relocate and expand config_setup;
566 * get flow control characters from tty struct; invalidate ports w/o
567 * hardware;
568 *
569 * Revision 1.6 1994/05/31 18:42:21 bentson
570 * add a loop-breaker in the interrupt service routine;
571 * note when port is initialized so that it can be shut
572 * down under the right conditions; receive works without
573 * any obvious errors
574 *
575 * Revision 1.5 1994/05/30 00:55:02 bentson
576 * transmit works without obvious errors
577 *
578 * Revision 1.4 1994/05/27 18:46:27 bentson
579 * incorporated more code from lib_y.c; can now print short
580 * strings under interrupt control to port zero; seems to
581 * select ports/channels/lines correctly
582 *
583 * Revision 1.3 1994/05/25 22:12:44 bentson
584 * shifting from multi-port on a card to proper multiplexor
585 * data structures; added skeletons of most routines
586 *
587 * Revision 1.2 1994/05/19 13:21:43 bentson
588 * start to crib from other sources
589 *
590 */
591
Jiri Slabyc8e16932007-05-08 00:37:05 -0700592#define CY_VERSION "2.5"
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594/* If you need to install more boards than NR_CARDS, change the constant
595 in the definition below. No other change is necessary to support up to
596 eight boards. Beyond that you'll have to extend cy_isa_addresses. */
597
Jiri Slaby02f11752006-12-08 02:39:28 -0800598#define NR_CARDS 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600/*
601 If the total number of ports is larger than NR_PORTS, change this
602 constant in the definition below. No other change is necessary to
603 support more boards/ports. */
604
Jiri Slaby02f11752006-12-08 02:39:28 -0800605#define NR_PORTS 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607#define ZE_V1_NPORTS 64
608#define ZO_V1 0
609#define ZO_V2 1
610#define ZE_V1 2
611
612#define SERIAL_PARANOIA_CHECK
613#undef CY_DEBUG_OPEN
614#undef CY_DEBUG_THROTTLE
615#undef CY_DEBUG_OTHER
616#undef CY_DEBUG_IO
617#undef CY_DEBUG_COUNT
618#undef CY_DEBUG_DTR
619#undef CY_DEBUG_WAIT_UNTIL_SENT
620#undef CY_DEBUG_INTERRUPTS
621#undef CY_16Y_HACK
622#undef CY_ENABLE_MONITORING
623#undef CY_PCI_DEBUG
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625/*
Alan Cox15ed6cc2008-04-30 00:53:55 -0700626 * Include section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628#include <linux/module.h>
629#include <linux/errno.h>
630#include <linux/signal.h>
631#include <linux/sched.h>
632#include <linux/timer.h>
633#include <linux/interrupt.h>
634#include <linux/tty.h>
Alan Cox33f0f882006-01-09 20:54:13 -0800635#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636#include <linux/serial.h>
637#include <linux/major.h>
638#include <linux/string.h>
639#include <linux/fcntl.h>
640#include <linux/ptrace.h>
641#include <linux/cyclades.h>
642#include <linux/mm.h>
643#include <linux/ioport.h>
644#include <linux/init.h>
645#include <linux/delay.h>
646#include <linux/spinlock.h>
647#include <linux/bitops.h>
Jiri Slaby054f5b02007-07-17 04:05:16 -0700648#include <linux/firmware.h>
Scott James Remnant9f56fad2009-04-06 17:33:04 +0100649#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651#include <asm/system.h>
Alan Cox15ed6cc2008-04-30 00:53:55 -0700652#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653#include <asm/irq.h>
Alan Cox15ed6cc2008-04-30 00:53:55 -0700654#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
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>
Alexey Dobriyan444697d2009-03-31 15:19:15 -0700661#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Jiri Slaby02f11752006-12-08 02:39:28 -0800663static void cy_throttle(struct tty_struct *tty);
664static void cy_send_xchar(struct tty_struct *tty, char ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Jiri Slaby65f76a82007-10-18 03:06:22 -0700666#define IS_CYC_Z(card) ((card).num_chips == (unsigned int)-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668#define Z_FPGA_CHECK(card) \
Jiri Slaby97e87f82009-06-11 12:29:27 +0100669 ((readl(&(card).ctl_addr.p9060->init_ctrl) & (1<<17)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Jiri Slaby97e87f82009-06-11 12:29:27 +0100671#define ISZLOADED(card) (((ZO_V1 == readl(&(card).ctl_addr.p9060->mail_box_0)) \
672 || Z_FPGA_CHECK(card)) && \
Alan Cox15ed6cc2008-04-30 00:53:55 -0700673 (ZFIRM_ID == readl(&((struct FIRM_ID __iomem *) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 ((card).base_addr+ID_ADDRESS))->signature)))
675
676#ifndef SERIAL_XMIT_SIZE
677#define SERIAL_XMIT_SIZE (min(PAGE_SIZE, 4096))
678#endif
679#define WAKEUP_CHARS 256
680
681#define STD_COM_FLAGS (0)
682
Jiri Slaby054f5b02007-07-17 04:05:16 -0700683/* firmware stuff */
684#define ZL_MAX_BLOCKS 16
685#define DRIVER_VERSION 0x02010203
686#define RAM_SIZE 0x80000
687
688#define Z_FPGA_LOADED(X) ((readl(&(X)->init_ctrl) & (1<<17)) != 0)
689
690enum zblock_type {
691 ZBLOCK_PRG = 0,
692 ZBLOCK_FPGA = 1
693};
694
695struct zfile_header {
696 char name[64];
697 char date[32];
698 char aux[32];
699 u32 n_config;
700 u32 config_offset;
701 u32 n_blocks;
702 u32 block_offset;
703 u32 reserved[9];
704} __attribute__ ((packed));
705
706struct zfile_config {
707 char name[64];
708 u32 mailbox;
709 u32 function;
710 u32 n_blocks;
711 u32 block_list[ZL_MAX_BLOCKS];
712} __attribute__ ((packed));
713
714struct zfile_block {
715 u32 type;
716 u32 file_offset;
717 u32 ram_offset;
718 u32 size;
719} __attribute__ ((packed));
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721static struct tty_driver *cy_serial_driver;
722
723#ifdef CONFIG_ISA
724/* This is the address lookup table. The driver will probe for
725 Cyclom-Y/ISA boards at all addresses in here. If you want the
726 driver to probe addresses at a different address, add it to
727 this table. If the driver is probing some other board and
728 causing problems, remove the offending address from this table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729*/
730
731static unsigned int cy_isa_addresses[] = {
Jiri Slaby02f11752006-12-08 02:39:28 -0800732 0xD0000,
733 0xD2000,
734 0xD4000,
735 0xD6000,
736 0xD8000,
737 0xDA000,
738 0xDC000,
739 0xDE000,
740 0, 0, 0, 0, 0, 0, 0, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741};
Jiri Slaby02f11752006-12-08 02:39:28 -0800742
Tobias Klauserfe971072006-01-09 20:54:02 -0800743#define NR_ISA_ADDRS ARRAY_SIZE(cy_isa_addresses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745#ifdef MODULE
Jiri Slaby3046d502007-05-08 00:36:46 -0700746static long maddr[NR_CARDS];
747static int irq[NR_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749module_param_array(maddr, long, NULL, 0);
750module_param_array(irq, int, NULL, 0);
751#endif
752
Jiri Slaby02f11752006-12-08 02:39:28 -0800753#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755/* This is the per-card data structure containing address, irq, number of
756 channels, etc. This driver supports a maximum of NR_CARDS cards.
757*/
758static struct cyclades_card cy_card[NR_CARDS];
759
Jiri Slaby02f11752006-12-08 02:39:28 -0800760static int cy_next_channel; /* next minor available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * This is used to look up the divisor speeds and the timeouts
764 * We're normally limited to 15 distinct baud rates. The extra
Alan Cox77451e52008-07-16 21:57:02 +0100765 * are accessed via settings in info->port.flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
767 * 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
768 * HI VHI
769 * 20
770 */
771static int baud_table[] = {
Jiri Slaby02f11752006-12-08 02:39:28 -0800772 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200,
773 1800, 2400, 4800, 9600, 19200, 38400, 57600, 76800, 115200, 150000,
774 230400, 0
775};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Jiri Slaby02f11752006-12-08 02:39:28 -0800777static char baud_co_25[] = { /* 25 MHz clock option table */
778 /* value => 00 01 02 03 04 */
779 /* divide by 8 32 128 512 2048 */
780 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x02,
781 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
782};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Jiri Slaby02f11752006-12-08 02:39:28 -0800784static char baud_bpr_25[] = { /* 25 MHz baud rate period table */
785 0x00, 0xf5, 0xa3, 0x6f, 0x5c, 0x51, 0xf5, 0xa3, 0x51, 0xa3,
786 0x6d, 0x51, 0xa3, 0x51, 0xa3, 0x51, 0x36, 0x29, 0x1b, 0x15
787};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Jiri Slaby02f11752006-12-08 02:39:28 -0800789static char baud_co_60[] = { /* 60 MHz clock option table (CD1400 J) */
790 /* value => 00 01 02 03 04 */
791 /* divide by 8 32 128 512 2048 */
792 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03,
793 0x03, 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
794 0x00
795};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Jiri Slaby02f11752006-12-08 02:39:28 -0800797static char baud_bpr_60[] = { /* 60 MHz baud rate period table (CD1400 J) */
798 0x00, 0x82, 0x21, 0xff, 0xdb, 0xc3, 0x92, 0x62, 0xc3, 0x62,
799 0x41, 0xc3, 0x62, 0xc3, 0x62, 0xc3, 0x82, 0x62, 0x41, 0x32,
800 0x21
801};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Jiri Slaby02f11752006-12-08 02:39:28 -0800803static char baud_cor3[] = { /* receive threshold */
804 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
805 0x0a, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x07,
806 0x07
807};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809/*
810 * The Cyclades driver implements HW flow control as any serial driver.
Alan Cox15ed6cc2008-04-30 00:53:55 -0700811 * The cyclades_port structure member rflow and the vector rflow_thr
812 * allows us to take advantage of a special feature in the CD1400 to avoid
813 * data loss even when the system interrupt latency is too high. These flags
814 * are to be used only with very special applications. Setting these flags
815 * requires the use of a special cable (DTR and RTS reversed). In the new
816 * CD1400-based boards (rev. 6.00 or later), there is no need for special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * cables.
818 */
819
Jiri Slaby02f11752006-12-08 02:39:28 -0800820static char rflow_thr[] = { /* rflow threshold */
821 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
822 0x00, 0x00, 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
823 0x0a
824};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826/* The Cyclom-Ye has placed the sequential chips in non-sequential
827 * address order. This look-up table overcomes that problem.
828 */
Jiri Slaby02f11752006-12-08 02:39:28 -0800829static int cy_chip_offset[] = { 0x0000,
830 0x0400,
831 0x0800,
832 0x0C00,
833 0x0200,
834 0x0600,
835 0x0A00,
836 0x0E00
837};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839/* PCI related definitions */
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841#ifdef CONFIG_PCI
Jiri Slaby893de2d2007-02-12 00:51:49 -0800842static struct pci_device_id cy_pci_dev_id[] __devinitdata = {
Alan Cox15ed6cc2008-04-30 00:53:55 -0700843 /* PCI < 1Mb */
844 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Lo) },
845 /* PCI > 1Mb */
846 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Hi) },
847 /* 4Y PCI < 1Mb */
848 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Lo) },
849 /* 4Y PCI > 1Mb */
850 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_4Y_Hi) },
851 /* 8Y PCI < 1Mb */
852 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Lo) },
853 /* 8Y PCI > 1Mb */
854 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_8Y_Hi) },
855 /* Z PCI < 1Mb */
856 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Lo) },
857 /* Z PCI > 1Mb */
858 { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Z_Hi) },
Jiri Slaby893de2d2007-02-12 00:51:49 -0800859 { } /* end of table */
Jiri Slaby02f11752006-12-08 02:39:28 -0800860};
Jiri Slaby893de2d2007-02-12 00:51:49 -0800861MODULE_DEVICE_TABLE(pci, cy_pci_dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862#endif
863
864static void cy_start(struct tty_struct *);
865static void set_line_char(struct cyclades_port *);
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -0700866static int cyz_issue_cmd(struct cyclades_card *, __u32, __u8, __u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867#ifdef CONFIG_ISA
868static unsigned detect_isa_irq(void __iomem *);
Jiri Slaby02f11752006-12-08 02:39:28 -0800869#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871#ifndef CONFIG_CYZ_INTR
872static void cyz_poll(unsigned long);
873
874/* The Cyclades-Z polling cycle is defined by this variable */
875static long cyz_polling_cycle = CZ_DEF_POLL;
876
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700877static DEFINE_TIMER(cyz_timerlist, cyz_poll, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Jiri Slaby02f11752006-12-08 02:39:28 -0800879#else /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880static void cyz_rx_restart(unsigned long);
881static struct timer_list cyz_rx_full_timer[NR_PORTS];
Jiri Slaby02f11752006-12-08 02:39:28 -0800882#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Jiri Slaby02f11752006-12-08 02:39:28 -0800884static inline int serial_paranoia_check(struct cyclades_port *info,
885 char *name, const char *routine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887#ifdef SERIAL_PARANOIA_CHECK
Jiri Slaby02f11752006-12-08 02:39:28 -0800888 if (!info) {
Jiri Slaby21719192007-05-08 00:36:42 -0700889 printk(KERN_WARNING "cyc Warning: null cyclades_port for (%s) "
890 "in %s\n", name, routine);
Jiri Slaby02f11752006-12-08 02:39:28 -0800891 return 1;
892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Jiri Slaby02f11752006-12-08 02:39:28 -0800894 if (info->magic != CYCLADES_MAGIC) {
Jiri Slaby21719192007-05-08 00:36:42 -0700895 printk(KERN_WARNING "cyc Warning: bad magic number for serial "
896 "struct (%s) in %s\n", name, routine);
Jiri Slaby02f11752006-12-08 02:39:28 -0800897 return 1;
898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899#endif
Jiri Slaby02f11752006-12-08 02:39:28 -0800900 return 0;
901} /* serial_paranoia_check */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/***********************************************************/
904/********* Start of block of Cyclom-Y specific code ********/
905
906/* This routine waits up to 1000 micro-seconds for the previous
907 command to the Cirrus chip to complete and then issues the
908 new command. An error is returned if the previous command
909 didn't finish within the time limit.
910
911 This function is only called from inside spinlock-protected code.
912 */
Alan Cox15ed6cc2008-04-30 00:53:55 -0700913static int cyy_issue_cmd(void __iomem *base_addr, u_char cmd, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Jiri Slabyad39c302007-05-08 00:35:49 -0700915 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Jiri Slaby02f11752006-12-08 02:39:28 -0800917 /* Check to see that the previous command has completed */
918 for (i = 0; i < 100; i++) {
Alan Cox15ed6cc2008-04-30 00:53:55 -0700919 if (readb(base_addr + (CyCCR << index)) == 0)
Jiri Slaby02f11752006-12-08 02:39:28 -0800920 break;
Jiri Slaby02f11752006-12-08 02:39:28 -0800921 udelay(10L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
Jiri Slaby02f11752006-12-08 02:39:28 -0800923 /* if the CCR never cleared, the previous command
924 didn't finish within the "reasonable time" */
925 if (i == 100)
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800926 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Jiri Slaby02f11752006-12-08 02:39:28 -0800928 /* Issue the new command */
929 cy_writeb(base_addr + (CyCCR << index), cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Jiri Slaby096dcfc2006-12-08 02:39:30 -0800931 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -0800932} /* cyy_issue_cmd */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934#ifdef CONFIG_ISA
935/* ISA interrupt detection code */
Alan Cox15ed6cc2008-04-30 00:53:55 -0700936static unsigned detect_isa_irq(void __iomem *address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Jiri Slaby02f11752006-12-08 02:39:28 -0800938 int irq;
939 unsigned long irqs, flags;
940 int save_xir, save_car;
941 int index = 0; /* IRQ probing is only for ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Jiri Slaby02f11752006-12-08 02:39:28 -0800943 /* forget possible initially masked and pending IRQ */
944 irq = probe_irq_off(probe_irq_on());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Jiri Slaby02f11752006-12-08 02:39:28 -0800946 /* Clear interrupts on the board first */
947 cy_writeb(address + (Cy_ClrIntr << index), 0);
948 /* Cy_ClrIntr is 0x1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Jiri Slaby02f11752006-12-08 02:39:28 -0800950 irqs = probe_irq_on();
951 /* Wait ... */
952 udelay(5000L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Jiri Slaby02f11752006-12-08 02:39:28 -0800954 /* Enable the Tx interrupts on the CD1400 */
955 local_irq_save(flags);
956 cy_writeb(address + (CyCAR << index), 0);
957 cyy_issue_cmd(address, CyCHAN_CTL | CyENB_XMTR, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Jiri Slaby02f11752006-12-08 02:39:28 -0800959 cy_writeb(address + (CyCAR << index), 0);
960 cy_writeb(address + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700961 readb(address + (CySRER << index)) | CyTxRdy);
Jiri Slaby02f11752006-12-08 02:39:28 -0800962 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Jiri Slaby02f11752006-12-08 02:39:28 -0800964 /* Wait ... */
965 udelay(5000L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Jiri Slaby02f11752006-12-08 02:39:28 -0800967 /* Check which interrupt is in use */
968 irq = probe_irq_off(irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Jiri Slaby02f11752006-12-08 02:39:28 -0800970 /* Clean up */
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700971 save_xir = (u_char) readb(address + (CyTIR << index));
972 save_car = readb(address + (CyCAR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -0800973 cy_writeb(address + (CyCAR << index), (save_xir & 0x3));
974 cy_writeb(address + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -0700975 readb(address + (CySRER << index)) & ~CyTxRdy);
Jiri Slaby02f11752006-12-08 02:39:28 -0800976 cy_writeb(address + (CyTIR << index), (save_xir & 0x3f));
977 cy_writeb(address + (CyCAR << index), (save_car));
978 cy_writeb(address + (Cy_ClrIntr << index), 0);
979 /* Cy_ClrIntr is 0x1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Jiri Slaby02f11752006-12-08 02:39:28 -0800981 return (irq > 0) ? irq : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
Jiri Slaby02f11752006-12-08 02:39:28 -0800983#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Jiri Slabyce97a092007-10-18 03:06:21 -0700985static void cyy_chip_rx(struct cyclades_card *cinfo, int chip,
986 void __iomem *base_addr)
Jiri Slabye9410272006-12-08 02:39:28 -0800987{
988 struct cyclades_port *info;
989 struct tty_struct *tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -0700990 int len, index = cinfo->bus_index;
991 u8 save_xir, channel, save_car, data, char_count;
Jiri Slabye9410272006-12-08 02:39:28 -0800992
Jiri Slabye9410272006-12-08 02:39:28 -0800993#ifdef CY_DEBUG_INTERRUPTS
Jiri Slabyce97a092007-10-18 03:06:21 -0700994 printk(KERN_DEBUG "cyy_interrupt: rcvd intr, chip %d\n", chip);
Jiri Slabye9410272006-12-08 02:39:28 -0800995#endif
Jiri Slabyce97a092007-10-18 03:06:21 -0700996 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -0700997 save_xir = readb(base_addr + (CyRIR << index));
998 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -0700999 info = &cinfo->ports[channel + chip * 4];
1000 save_car = readb(base_addr + (CyCAR << index));
1001 cy_writeb(base_addr + (CyCAR << index), save_xir);
Jiri Slabye9410272006-12-08 02:39:28 -08001002
Jiri Slabyce97a092007-10-18 03:06:21 -07001003 /* if there is nowhere to put the data, discard it */
Alan Cox77451e52008-07-16 21:57:02 +01001004 if (info->port.tty == NULL) {
Jiri Slaby65f76a82007-10-18 03:06:22 -07001005 if ((readb(base_addr + (CyRIVR << index)) & CyIVRMask) ==
1006 CyIVRRxEx) { /* exception */
Jiri Slabyce97a092007-10-18 03:06:21 -07001007 data = readb(base_addr + (CyRDSR << index));
1008 } else { /* normal character reception */
1009 char_count = readb(base_addr + (CyRDCR << index));
1010 while (char_count--)
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001011 data = readb(base_addr + (CyRDSR << index));
Jiri Slabyce97a092007-10-18 03:06:21 -07001012 }
1013 goto end;
1014 }
1015 /* there is an open port for this data */
Alan Cox77451e52008-07-16 21:57:02 +01001016 tty = info->port.tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001017 if ((readb(base_addr + (CyRIVR << index)) & CyIVRMask) ==
1018 CyIVRRxEx) { /* exception */
Jiri Slabyce97a092007-10-18 03:06:21 -07001019 data = readb(base_addr + (CyRDSR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08001020
Jiri Slabyce97a092007-10-18 03:06:21 -07001021 /* For statistics only */
1022 if (data & CyBREAK)
1023 info->icount.brk++;
1024 else if (data & CyFRAME)
1025 info->icount.frame++;
1026 else if (data & CyPARITY)
1027 info->icount.parity++;
1028 else if (data & CyOVERRUN)
1029 info->icount.overrun++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001030
Jiri Slabyce97a092007-10-18 03:06:21 -07001031 if (data & info->ignore_status_mask) {
1032 info->icount.rx++;
Jiri Slabyce97a092007-10-18 03:06:21 -07001033 return;
1034 }
1035 if (tty_buffer_request_room(tty, 1)) {
1036 if (data & info->read_status_mask) {
1037 if (data & CyBREAK) {
1038 tty_insert_flip_char(tty,
1039 readb(base_addr + (CyRDSR <<
1040 index)), TTY_BREAK);
Jiri Slaby02f11752006-12-08 02:39:28 -08001041 info->icount.rx++;
Alan Cox77451e52008-07-16 21:57:02 +01001042 if (info->port.flags & ASYNC_SAK)
Jiri Slabyce97a092007-10-18 03:06:21 -07001043 do_SAK(tty);
1044 } else if (data & CyFRAME) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07001045 tty_insert_flip_char(tty,
Jiri Slabyce97a092007-10-18 03:06:21 -07001046 readb(base_addr + (CyRDSR <<
1047 index)), TTY_FRAME);
1048 info->icount.rx++;
1049 info->idle_stats.frame_errs++;
1050 } else if (data & CyPARITY) {
1051 /* Pieces of seven... */
1052 tty_insert_flip_char(tty,
1053 readb(base_addr + (CyRDSR <<
1054 index)), TTY_PARITY);
1055 info->icount.rx++;
1056 info->idle_stats.parity_errs++;
1057 } else if (data & CyOVERRUN) {
1058 tty_insert_flip_char(tty, 0,
1059 TTY_OVERRUN);
1060 info->icount.rx++;
1061 /* If the flip buffer itself is
1062 overflowing, we still lose
1063 the next incoming character.
1064 */
1065 tty_insert_flip_char(tty,
1066 readb(base_addr + (CyRDSR <<
1067 index)), TTY_FRAME);
1068 info->icount.rx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001069 info->idle_stats.overruns++;
Jiri Slabyce97a092007-10-18 03:06:21 -07001070 /* These two conditions may imply */
1071 /* a normal read should be done. */
1072 /* } else if(data & CyTIMEOUT) { */
1073 /* } else if(data & CySPECHAR) { */
1074 } else {
1075 tty_insert_flip_char(tty, 0,
1076 TTY_NORMAL);
1077 info->icount.rx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001078 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001079 } else {
1080 tty_insert_flip_char(tty, 0, TTY_NORMAL);
1081 info->icount.rx++;
1082 }
1083 } else {
1084 /* there was a software buffer overrun and nothing
1085 * could be done about it!!! */
1086 info->icount.buf_overrun++;
1087 info->idle_stats.overruns++;
1088 }
1089 } else { /* normal character reception */
1090 /* load # chars available from the chip */
1091 char_count = readb(base_addr + (CyRDCR << index));
Jiri Slabye9410272006-12-08 02:39:28 -08001092
1093#ifdef CY_ENABLE_MONITORING
Jiri Slabyce97a092007-10-18 03:06:21 -07001094 ++info->mon.int_count;
1095 info->mon.char_count += char_count;
1096 if (char_count > info->mon.char_max)
1097 info->mon.char_max = char_count;
1098 info->mon.char_last = char_count;
Jiri Slabye9410272006-12-08 02:39:28 -08001099#endif
Jiri Slabyce97a092007-10-18 03:06:21 -07001100 len = tty_buffer_request_room(tty, char_count);
1101 while (len--) {
1102 data = readb(base_addr + (CyRDSR << index));
1103 tty_insert_flip_char(tty, data, TTY_NORMAL);
1104 info->idle_stats.recv_bytes++;
1105 info->icount.rx++;
Jiri Slabye9410272006-12-08 02:39:28 -08001106#ifdef CY_16Y_HACK
Jiri Slabyce97a092007-10-18 03:06:21 -07001107 udelay(10L);
Jiri Slabye9410272006-12-08 02:39:28 -08001108#endif
Jiri Slabye9410272006-12-08 02:39:28 -08001109 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001110 info->idle_stats.recv_idle = jiffies;
1111 }
1112 tty_schedule_flip(tty);
1113end:
1114 /* end of service */
1115 cy_writeb(base_addr + (CyRIR << index), save_xir & 0x3f);
1116 cy_writeb(base_addr + (CyCAR << index), save_car);
Jiri Slabyce97a092007-10-18 03:06:21 -07001117}
1118
Jiri Slaby65f76a82007-10-18 03:06:22 -07001119static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip,
Jiri Slabyce97a092007-10-18 03:06:21 -07001120 void __iomem *base_addr)
1121{
1122 struct cyclades_port *info;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001123 int char_count, index = cinfo->bus_index;
1124 u8 save_xir, channel, save_car, outch;
Jiri Slabyce97a092007-10-18 03:06:21 -07001125
1126 /* Since we only get here when the transmit buffer
1127 is empty, we know we can always stuff a dozen
1128 characters. */
1129#ifdef CY_DEBUG_INTERRUPTS
1130 printk(KERN_DEBUG "cyy_interrupt: xmit intr, chip %d\n", chip);
1131#endif
1132
1133 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -07001134 save_xir = readb(base_addr + (CyTIR << index));
1135 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -07001136 save_car = readb(base_addr + (CyCAR << index));
1137 cy_writeb(base_addr + (CyCAR << index), save_xir);
1138
1139 /* validate the port# (as configured and open) */
1140 if (channel + chip * 4 >= cinfo->nports) {
1141 cy_writeb(base_addr + (CySRER << index),
1142 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
1143 goto end;
1144 }
1145 info = &cinfo->ports[channel + chip * 4];
Alan Cox77451e52008-07-16 21:57:02 +01001146 if (info->port.tty == NULL) {
Jiri Slabyce97a092007-10-18 03:06:21 -07001147 cy_writeb(base_addr + (CySRER << index),
1148 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
1149 goto end;
Jiri Slabye9410272006-12-08 02:39:28 -08001150 }
1151
Jiri Slabyce97a092007-10-18 03:06:21 -07001152 /* load the on-chip space for outbound data */
1153 char_count = info->xmit_fifo_size;
Jiri Slabye9410272006-12-08 02:39:28 -08001154
Jiri Slabyce97a092007-10-18 03:06:21 -07001155 if (info->x_char) { /* send special char */
1156 outch = info->x_char;
1157 cy_writeb(base_addr + (CyTDR << index), outch);
1158 char_count--;
1159 info->icount.tx++;
1160 info->x_char = 0;
1161 }
Jiri Slabye9410272006-12-08 02:39:28 -08001162
Jiri Slabyce97a092007-10-18 03:06:21 -07001163 if (info->breakon || info->breakoff) {
1164 if (info->breakon) {
1165 cy_writeb(base_addr + (CyTDR << index), 0);
1166 cy_writeb(base_addr + (CyTDR << index), 0x81);
1167 info->breakon = 0;
1168 char_count -= 2;
Jiri Slaby02f11752006-12-08 02:39:28 -08001169 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001170 if (info->breakoff) {
1171 cy_writeb(base_addr + (CyTDR << index), 0);
1172 cy_writeb(base_addr + (CyTDR << index), 0x83);
1173 info->breakoff = 0;
1174 char_count -= 2;
Jiri Slaby02f11752006-12-08 02:39:28 -08001175 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001176 }
Jiri Slabye9410272006-12-08 02:39:28 -08001177
Jiri Slabyce97a092007-10-18 03:06:21 -07001178 while (char_count-- > 0) {
1179 if (!info->xmit_cnt) {
1180 if (readb(base_addr + (CySRER << index)) & CyTxMpty) {
1181 cy_writeb(base_addr + (CySRER << index),
1182 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001183 ~CyTxMpty);
Jiri Slabyce97a092007-10-18 03:06:21 -07001184 } else {
1185 cy_writeb(base_addr + (CySRER << index),
1186 (readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001187 ~CyTxRdy) | CyTxMpty);
Jiri Slaby02f11752006-12-08 02:39:28 -08001188 }
Jiri Slabyce97a092007-10-18 03:06:21 -07001189 goto done;
1190 }
Alan Cox77451e52008-07-16 21:57:02 +01001191 if (info->port.xmit_buf == NULL) {
Jiri Slabyce97a092007-10-18 03:06:21 -07001192 cy_writeb(base_addr + (CySRER << index),
1193 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001194 ~CyTxRdy);
Jiri Slabyce97a092007-10-18 03:06:21 -07001195 goto done;
1196 }
Alan Cox77451e52008-07-16 21:57:02 +01001197 if (info->port.tty->stopped || info->port.tty->hw_stopped) {
Jiri Slabyce97a092007-10-18 03:06:21 -07001198 cy_writeb(base_addr + (CySRER << index),
1199 readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001200 ~CyTxRdy);
Jiri Slabyce97a092007-10-18 03:06:21 -07001201 goto done;
1202 }
1203 /* Because the Embedded Transmit Commands have been enabled,
1204 * we must check to see if the escape character, NULL, is being
1205 * sent. If it is, we must ensure that there is room for it to
1206 * be doubled in the output stream. Therefore we no longer
1207 * advance the pointer when the character is fetched, but
1208 * rather wait until after the check for a NULL output
1209 * character. This is necessary because there may not be room
1210 * for the two chars needed to send a NULL.)
1211 */
Alan Cox77451e52008-07-16 21:57:02 +01001212 outch = info->port.xmit_buf[info->xmit_tail];
Jiri Slabyce97a092007-10-18 03:06:21 -07001213 if (outch) {
1214 info->xmit_cnt--;
1215 info->xmit_tail = (info->xmit_tail + 1) &
1216 (SERIAL_XMIT_SIZE - 1);
1217 cy_writeb(base_addr + (CyTDR << index), outch);
1218 info->icount.tx++;
1219 } else {
1220 if (char_count > 1) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001221 info->xmit_cnt--;
1222 info->xmit_tail = (info->xmit_tail + 1) &
Jiri Slabyce97a092007-10-18 03:06:21 -07001223 (SERIAL_XMIT_SIZE - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08001224 cy_writeb(base_addr + (CyTDR << index), outch);
Jiri Slabyce97a092007-10-18 03:06:21 -07001225 cy_writeb(base_addr + (CyTDR << index), 0);
Jiri Slaby02f11752006-12-08 02:39:28 -08001226 info->icount.tx++;
Jiri Slabyce97a092007-10-18 03:06:21 -07001227 char_count--;
Jiri Slaby02f11752006-12-08 02:39:28 -08001228 }
1229 }
Jiri Slabye9410272006-12-08 02:39:28 -08001230 }
1231
Jiri Slabyce97a092007-10-18 03:06:21 -07001232done:
Alan Cox77451e52008-07-16 21:57:02 +01001233 tty_wakeup(info->port.tty);
Jiri Slabyce97a092007-10-18 03:06:21 -07001234end:
1235 /* end of service */
1236 cy_writeb(base_addr + (CyTIR << index), save_xir & 0x3f);
1237 cy_writeb(base_addr + (CyCAR << index), save_car);
Jiri Slabyce97a092007-10-18 03:06:21 -07001238}
Jiri Slabye9410272006-12-08 02:39:28 -08001239
Jiri Slabyce97a092007-10-18 03:06:21 -07001240static void cyy_chip_modem(struct cyclades_card *cinfo, int chip,
1241 void __iomem *base_addr)
1242{
1243 struct cyclades_port *info;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001244 int index = cinfo->bus_index;
1245 u8 save_xir, channel, save_car, mdm_change, mdm_status;
Jiri Slabye9410272006-12-08 02:39:28 -08001246
Jiri Slabyce97a092007-10-18 03:06:21 -07001247 /* determine the channel & change to that context */
Jiri Slaby65f76a82007-10-18 03:06:22 -07001248 save_xir = readb(base_addr + (CyMIR << index));
1249 channel = save_xir & CyIRChannel;
Jiri Slabyce97a092007-10-18 03:06:21 -07001250 info = &cinfo->ports[channel + chip * 4];
1251 save_car = readb(base_addr + (CyCAR << index));
1252 cy_writeb(base_addr + (CyCAR << index), save_xir);
Jiri Slabye9410272006-12-08 02:39:28 -08001253
Jiri Slabyce97a092007-10-18 03:06:21 -07001254 mdm_change = readb(base_addr + (CyMISR << index));
1255 mdm_status = readb(base_addr + (CyMSVR1 << index));
Jiri Slabye9410272006-12-08 02:39:28 -08001256
Alan Cox77451e52008-07-16 21:57:02 +01001257 if (!info->port.tty)
Jiri Slabyce97a092007-10-18 03:06:21 -07001258 goto end;
Jiri Slaby02f11752006-12-08 02:39:28 -08001259
Jiri Slabyce97a092007-10-18 03:06:21 -07001260 if (mdm_change & CyANY_DELTA) {
1261 /* For statistics only */
1262 if (mdm_change & CyDCD)
1263 info->icount.dcd++;
1264 if (mdm_change & CyCTS)
1265 info->icount.cts++;
1266 if (mdm_change & CyDSR)
1267 info->icount.dsr++;
1268 if (mdm_change & CyRI)
1269 info->icount.rng++;
1270
1271 wake_up_interruptible(&info->delta_msr_wait);
1272 }
1273
Alan Cox77451e52008-07-16 21:57:02 +01001274 if ((mdm_change & CyDCD) && (info->port.flags & ASYNC_CHECK_CD)) {
Jiri Slabyce97a092007-10-18 03:06:21 -07001275 if (!(mdm_status & CyDCD)) {
Alan Cox77451e52008-07-16 21:57:02 +01001276 tty_hangup(info->port.tty);
1277 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
Jiri Slabye9410272006-12-08 02:39:28 -08001278 }
Alan Cox77451e52008-07-16 21:57:02 +01001279 wake_up_interruptible(&info->port.open_wait);
Jiri Slabye9410272006-12-08 02:39:28 -08001280 }
Alan Cox77451e52008-07-16 21:57:02 +01001281 if ((mdm_change & CyCTS) && (info->port.flags & ASYNC_CTS_FLOW)) {
1282 if (info->port.tty->hw_stopped) {
Jiri Slabyce97a092007-10-18 03:06:21 -07001283 if (mdm_status & CyCTS) {
1284 /* cy_start isn't used
1285 because... !!! */
Alan Cox77451e52008-07-16 21:57:02 +01001286 info->port.tty->hw_stopped = 0;
Jiri Slabyce97a092007-10-18 03:06:21 -07001287 cy_writeb(base_addr + (CySRER << index),
1288 readb(base_addr + (CySRER << index)) |
1289 CyTxRdy);
Alan Cox77451e52008-07-16 21:57:02 +01001290 tty_wakeup(info->port.tty);
Jiri Slabyce97a092007-10-18 03:06:21 -07001291 }
1292 } else {
1293 if (!(mdm_status & CyCTS)) {
1294 /* cy_stop isn't used
1295 because ... !!! */
Alan Cox77451e52008-07-16 21:57:02 +01001296 info->port.tty->hw_stopped = 1;
Jiri Slabyce97a092007-10-18 03:06:21 -07001297 cy_writeb(base_addr + (CySRER << index),
1298 readb(base_addr + (CySRER << index)) &
1299 ~CyTxRdy);
1300 }
1301 }
1302 }
1303/* if (mdm_change & CyDSR) {
1304 }
1305 if (mdm_change & CyRI) {
1306 }*/
1307end:
1308 /* end of service */
1309 cy_writeb(base_addr + (CyMIR << index), save_xir & 0x3f);
1310 cy_writeb(base_addr + (CyCAR << index), save_car);
Jiri Slabye9410272006-12-08 02:39:28 -08001311}
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313/* The real interrupt service routine is called
1314 whenever the card wants its hand held--chars
1315 received, out buffer empty, modem change, etc.
1316 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001317static irqreturn_t cyy_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
Jiri Slaby02f11752006-12-08 02:39:28 -08001319 int status;
Jiri Slabyf7429032007-05-08 00:36:59 -07001320 struct cyclades_card *cinfo = dev_id;
Jiri Slaby02f11752006-12-08 02:39:28 -08001321 void __iomem *base_addr, *card_base_addr;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001322 unsigned int chip, too_many, had_work;
Jiri Slaby02f11752006-12-08 02:39:28 -08001323 int index;
Jiri Slabye9410272006-12-08 02:39:28 -08001324
Jiri Slabyf7429032007-05-08 00:36:59 -07001325 if (unlikely(cinfo == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326#ifdef CY_DEBUG_INTERRUPTS
Alan Cox15ed6cc2008-04-30 00:53:55 -07001327 printk(KERN_DEBUG "cyy_interrupt: spurious interrupt %d\n",
1328 irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001330 return IRQ_NONE; /* spurious interrupt */
1331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Jiri Slaby02f11752006-12-08 02:39:28 -08001333 card_base_addr = cinfo->base_addr;
1334 index = cinfo->bus_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Jiri Slabyf1e83c62007-05-08 00:36:24 -07001336 /* card was not initialized yet (e.g. DEBUG_SHIRQ) */
1337 if (unlikely(card_base_addr == NULL))
1338 return IRQ_HANDLED;
1339
Jiri Slaby02f11752006-12-08 02:39:28 -08001340 /* This loop checks all chips in the card. Make a note whenever
1341 _any_ chip had some work to do, as this is considered an
1342 indication that there will be more to do. Only when no chip
1343 has any work does this outermost loop exit.
1344 */
1345 do {
1346 had_work = 0;
1347 for (chip = 0; chip < cinfo->num_chips; chip++) {
1348 base_addr = cinfo->base_addr +
1349 (cy_chip_offset[chip] << index);
1350 too_many = 0;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001351 while ((status = readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001352 (CySVRR << index))) != 0x00) {
1353 had_work++;
1354 /* The purpose of the following test is to ensure that
1355 no chip can monopolize the driver. This forces the
1356 chips to be checked in a round-robin fashion (after
1357 draining each of a bunch (1000) of characters).
1358 */
Jiri Slabyce97a092007-10-18 03:06:21 -07001359 if (1000 < too_many++)
Jiri Slaby02f11752006-12-08 02:39:28 -08001360 break;
Jiri Slaby1c0a3872007-10-18 03:06:22 -07001361 spin_lock(&cinfo->card_lock);
Jiri Slabyce97a092007-10-18 03:06:21 -07001362 if (status & CySRReceive) /* rx intr */
1363 cyy_chip_rx(cinfo, chip, base_addr);
1364 if (status & CySRTransmit) /* tx intr */
1365 cyy_chip_tx(cinfo, chip, base_addr);
1366 if (status & CySRModem) /* modem intr */
1367 cyy_chip_modem(cinfo, chip, base_addr);
Jiri Slaby1c0a3872007-10-18 03:06:22 -07001368 spin_unlock(&cinfo->card_lock);
Jiri Slaby02f11752006-12-08 02:39:28 -08001369 }
1370 }
1371 } while (had_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Jiri Slaby02f11752006-12-08 02:39:28 -08001373 /* clear interrupts */
1374 spin_lock(&cinfo->card_lock);
1375 cy_writeb(card_base_addr + (Cy_ClrIntr << index), 0);
1376 /* Cy_ClrIntr is 0x1800 */
1377 spin_unlock(&cinfo->card_lock);
1378 return IRQ_HANDLED;
1379} /* cyy_interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381/***********************************************************/
1382/********* End of block of Cyclom-Y specific code **********/
Alan Cox15ed6cc2008-04-30 00:53:55 -07001383/******** Start of block of Cyclades-Z specific code *******/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384/***********************************************************/
1385
1386static int
Jiri Slaby02f11752006-12-08 02:39:28 -08001387cyz_fetch_msg(struct cyclades_card *cinfo,
Alan Cox15ed6cc2008-04-30 00:53:55 -07001388 __u32 *channel, __u8 *cmd, __u32 *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
Jiri Slaby02f11752006-12-08 02:39:28 -08001390 struct FIRM_ID __iomem *firm_id;
1391 struct ZFW_CTRL __iomem *zfw_ctrl;
1392 struct BOARD_CTRL __iomem *board_ctrl;
1393 unsigned long loc_doorbell;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Jiri Slaby02f11752006-12-08 02:39:28 -08001395 firm_id = cinfo->base_addr + ID_ADDRESS;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001396 if (!ISZLOADED(*cinfo))
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001397 return -1;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001398 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001399 board_ctrl = &zfw_ctrl->board_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Jiri Slaby97e87f82009-06-11 12:29:27 +01001401 loc_doorbell = readl(&cinfo->ctl_addr.p9060->loc_doorbell);
Jiri Slaby02f11752006-12-08 02:39:28 -08001402 if (loc_doorbell) {
1403 *cmd = (char)(0xff & loc_doorbell);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001404 *channel = readl(&board_ctrl->fwcmd_channel);
1405 *param = (__u32) readl(&board_ctrl->fwcmd_param);
Jiri Slaby97e87f82009-06-11 12:29:27 +01001406 cy_writel(&cinfo->ctl_addr.p9060->loc_doorbell, 0xffffffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001407 return 1;
1408 }
1409 return 0;
1410} /* cyz_fetch_msg */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412static int
Jiri Slaby02f11752006-12-08 02:39:28 -08001413cyz_issue_cmd(struct cyclades_card *cinfo,
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001414 __u32 channel, __u8 cmd, __u32 param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
Jiri Slaby02f11752006-12-08 02:39:28 -08001416 struct FIRM_ID __iomem *firm_id;
1417 struct ZFW_CTRL __iomem *zfw_ctrl;
1418 struct BOARD_CTRL __iomem *board_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001419 __u32 __iomem *pci_doorbell;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001420 unsigned int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Jiri Slaby02f11752006-12-08 02:39:28 -08001422 firm_id = cinfo->base_addr + ID_ADDRESS;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001423 if (!ISZLOADED(*cinfo))
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001424 return -1;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001425
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001426 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001427 board_ctrl = &zfw_ctrl->board_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Jiri Slaby02f11752006-12-08 02:39:28 -08001429 index = 0;
Jiri Slaby97e87f82009-06-11 12:29:27 +01001430 pci_doorbell = &cinfo->ctl_addr.p9060->pci_doorbell;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001431 while ((readl(pci_doorbell) & 0xff) != 0) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07001432 if (index++ == 1000)
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001433 return (int)(readl(pci_doorbell) & 0xff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001434 udelay(50L);
1435 }
1436 cy_writel(&board_ctrl->hcmd_channel, channel);
1437 cy_writel(&board_ctrl->hcmd_param, param);
1438 cy_writel(pci_doorbell, (long)cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Jiri Slaby096dcfc2006-12-08 02:39:30 -08001440 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08001441} /* cyz_issue_cmd */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Jiri Slaby65f76a82007-10-18 03:06:22 -07001443static void cyz_handle_rx(struct cyclades_port *info,
Jiri Slabyad39c302007-05-08 00:35:49 -07001444 struct BUF_CTRL __iomem *buf_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Jiri Slaby875b2062007-05-08 00:36:49 -07001446 struct cyclades_card *cinfo = info->card;
Alan Cox77451e52008-07-16 21:57:02 +01001447 struct tty_struct *tty = info->port.tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001448 unsigned int char_count;
Jiri Slaby02f11752006-12-08 02:39:28 -08001449 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450#ifdef BLOCKMOVE
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001451 unsigned char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001453 char data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454#endif
Jiri Slabyad39c302007-05-08 00:35:49 -07001455 __u32 rx_put, rx_get, new_rx_get, rx_bufsize, rx_bufaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001457 rx_get = new_rx_get = readl(&buf_ctrl->rx_get);
1458 rx_put = readl(&buf_ctrl->rx_put);
1459 rx_bufsize = readl(&buf_ctrl->rx_bufsize);
1460 rx_bufaddr = readl(&buf_ctrl->rx_bufaddr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001461 if (rx_put >= rx_get)
1462 char_count = rx_put - rx_get;
1463 else
1464 char_count = rx_put - rx_get + rx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Jiri Slaby02f11752006-12-08 02:39:28 -08001466 if (char_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467#ifdef CY_ENABLE_MONITORING
Jiri Slaby02f11752006-12-08 02:39:28 -08001468 info->mon.int_count++;
1469 info->mon.char_count += char_count;
1470 if (char_count > info->mon.char_max)
1471 info->mon.char_max = char_count;
1472 info->mon.char_last = char_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473#endif
Jiri Slabyf7429032007-05-08 00:36:59 -07001474 if (tty == NULL) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001475 /* flush received characters */
1476 new_rx_get = (new_rx_get + char_count) &
1477 (rx_bufsize - 1);
1478 info->rflush_count++;
1479 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480#ifdef BLOCKMOVE
Jiri Slaby02f11752006-12-08 02:39:28 -08001481 /* we'd like to use memcpy(t, f, n) and memset(s, c, count)
1482 for performance, but because of buffer boundaries, there
1483 may be several steps to the operation */
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001484 while (1) {
1485 len = tty_prepare_flip_string(tty, &buf,
1486 char_count);
1487 if (!len)
1488 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001490 len = min_t(unsigned int, min(len, char_count),
1491 rx_bufsize - new_rx_get);
1492
1493 memcpy_fromio(buf, cinfo->base_addr +
1494 rx_bufaddr + new_rx_get, len);
1495
1496 new_rx_get = (new_rx_get + len) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001497 (rx_bufsize - 1);
Jiri Slabyce71b0f2007-05-08 00:36:53 -07001498 char_count -= len;
1499 info->icount.rx += len;
1500 info->idle_stats.recv_bytes += len;
Jiri Slaby02f11752006-12-08 02:39:28 -08001501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001503 len = tty_buffer_request_room(tty, char_count);
1504 while (len--) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001505 data = readb(cinfo->base_addr + rx_bufaddr +
Jiri Slaby02f11752006-12-08 02:39:28 -08001506 new_rx_get);
Alan Cox15ed6cc2008-04-30 00:53:55 -07001507 new_rx_get = (new_rx_get + 1) &
1508 (rx_bufsize - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08001509 tty_insert_flip_char(tty, data, TTY_NORMAL);
1510 info->idle_stats.recv_bytes++;
1511 info->icount.rx++;
1512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513#endif
1514#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001515 /* Recalculate the number of chars in the RX buffer and issue
1516 a cmd in case it's higher than the RX high water mark */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001517 rx_put = readl(&buf_ctrl->rx_put);
Jiri Slaby02f11752006-12-08 02:39:28 -08001518 if (rx_put >= rx_get)
1519 char_count = rx_put - rx_get;
1520 else
1521 char_count = rx_put - rx_get + rx_bufsize;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001522 if (char_count >= readl(&buf_ctrl->rx_threshold) &&
Jiri Slabyebafeef2007-10-18 03:06:20 -07001523 !timer_pending(&cyz_rx_full_timer[
1524 info->line]))
1525 mod_timer(&cyz_rx_full_timer[info->line],
1526 jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08001528 info->idle_stats.recv_idle = jiffies;
1529 tty_schedule_flip(tty);
1530 }
1531 /* Update rx_get */
1532 cy_writel(&buf_ctrl->rx_get, new_rx_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
Jiri Slaby65f76a82007-10-18 03:06:22 -07001536static void cyz_handle_tx(struct cyclades_port *info,
Jiri Slabyad39c302007-05-08 00:35:49 -07001537 struct BUF_CTRL __iomem *buf_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Jiri Slaby875b2062007-05-08 00:36:49 -07001539 struct cyclades_card *cinfo = info->card;
Alan Cox77451e52008-07-16 21:57:02 +01001540 struct tty_struct *tty = info->port.tty;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001541 u8 data;
1542 unsigned int char_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543#ifdef BLOCKMOVE
Jiri Slaby02f11752006-12-08 02:39:28 -08001544 int small_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545#endif
Jiri Slabyad39c302007-05-08 00:35:49 -07001546 __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Jiri Slaby02f11752006-12-08 02:39:28 -08001548 if (info->xmit_cnt <= 0) /* Nothing to transmit */
1549 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001551 tx_get = readl(&buf_ctrl->tx_get);
1552 tx_put = readl(&buf_ctrl->tx_put);
1553 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
1554 tx_bufaddr = readl(&buf_ctrl->tx_bufaddr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001555 if (tx_put >= tx_get)
1556 char_count = tx_get - tx_put - 1 + tx_bufsize;
1557 else
1558 char_count = tx_get - tx_put - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Jiri Slaby02f11752006-12-08 02:39:28 -08001560 if (char_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Jiri Slabyf7429032007-05-08 00:36:59 -07001562 if (tty == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08001563 goto ztxdone;
Jiri Slaby02f11752006-12-08 02:39:28 -08001564
1565 if (info->x_char) { /* send special char */
1566 data = info->x_char;
1567
1568 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1569 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1570 info->x_char = 0;
1571 char_count--;
1572 info->icount.tx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001573 }
1574#ifdef BLOCKMOVE
1575 while (0 < (small_count = min_t(unsigned int,
1576 tx_bufsize - tx_put, min_t(unsigned int,
1577 (SERIAL_XMIT_SIZE - info->xmit_tail),
1578 min_t(unsigned int, info->xmit_cnt,
1579 char_count))))) {
1580
1581 memcpy_toio((char *)(cinfo->base_addr + tx_bufaddr +
1582 tx_put),
Alan Cox77451e52008-07-16 21:57:02 +01001583 &info->port.xmit_buf[info->xmit_tail],
Jiri Slaby02f11752006-12-08 02:39:28 -08001584 small_count);
1585
1586 tx_put = (tx_put + small_count) & (tx_bufsize - 1);
1587 char_count -= small_count;
1588 info->icount.tx += small_count;
1589 info->xmit_cnt -= small_count;
1590 info->xmit_tail = (info->xmit_tail + small_count) &
1591 (SERIAL_XMIT_SIZE - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08001592 }
1593#else
1594 while (info->xmit_cnt && char_count) {
Alan Cox77451e52008-07-16 21:57:02 +01001595 data = info->port.xmit_buf[info->xmit_tail];
Jiri Slaby02f11752006-12-08 02:39:28 -08001596 info->xmit_cnt--;
1597 info->xmit_tail = (info->xmit_tail + 1) &
1598 (SERIAL_XMIT_SIZE - 1);
1599
1600 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1601 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1602 char_count--;
1603 info->icount.tx++;
Jiri Slaby02f11752006-12-08 02:39:28 -08001604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605#endif
Jiri Slabyebafeef2007-10-18 03:06:20 -07001606 tty_wakeup(tty);
Jiri Slaby7fa57a02007-10-22 20:45:13 -07001607ztxdone:
Jiri Slaby02f11752006-12-08 02:39:28 -08001608 /* Update tx_put */
1609 cy_writel(&buf_ctrl->tx_put, tx_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
Jiri Slaby02f11752006-12-08 02:39:28 -08001613static void cyz_handle_cmd(struct cyclades_card *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
Jiri Slaby02f11752006-12-08 02:39:28 -08001615 struct tty_struct *tty;
1616 struct cyclades_port *info;
Jiri Slabyad39c302007-05-08 00:35:49 -07001617 static struct FIRM_ID __iomem *firm_id;
1618 static struct ZFW_CTRL __iomem *zfw_ctrl;
1619 static struct BOARD_CTRL __iomem *board_ctrl;
1620 static struct CH_CTRL __iomem *ch_ctrl;
1621 static struct BUF_CTRL __iomem *buf_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07001622 __u32 channel;
1623 __u8 cmd;
1624 __u32 param;
1625 __u32 hw_ver, fw_ver;
Jiri Slaby02f11752006-12-08 02:39:28 -08001626 int special_count;
1627 int delta_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 firm_id = cinfo->base_addr + ID_ADDRESS;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001630 zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001631 board_ctrl = &zfw_ctrl->board_ctrl;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001632 fw_ver = readl(&board_ctrl->fw_version);
Jiri Slaby97e87f82009-06-11 12:29:27 +01001633 hw_ver = readl(&cinfo->ctl_addr.p9060->mail_box_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Jiri Slaby02f11752006-12-08 02:39:28 -08001635 while (cyz_fetch_msg(cinfo, &channel, &cmd, &param) == 1) {
1636 special_count = 0;
1637 delta_count = 0;
Jiri Slabydd025c02007-05-08 00:37:02 -07001638 info = &cinfo->ports[channel];
Alan Cox77451e52008-07-16 21:57:02 +01001639 tty = info->port.tty;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001640 if (tty == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08001641 continue;
Jiri Slabyf7429032007-05-08 00:36:59 -07001642
Jiri Slaby02f11752006-12-08 02:39:28 -08001643 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
1644 buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]);
1645
1646 switch (cmd) {
1647 case C_CM_PR_ERROR:
1648 tty_insert_flip_char(tty, 0, TTY_PARITY);
1649 info->icount.rx++;
1650 special_count++;
1651 break;
1652 case C_CM_FR_ERROR:
1653 tty_insert_flip_char(tty, 0, TTY_FRAME);
1654 info->icount.rx++;
1655 special_count++;
1656 break;
1657 case C_CM_RXBRK:
1658 tty_insert_flip_char(tty, 0, TTY_BREAK);
1659 info->icount.rx++;
1660 special_count++;
1661 break;
1662 case C_CM_MDCD:
1663 info->icount.dcd++;
1664 delta_count++;
Alan Cox77451e52008-07-16 21:57:02 +01001665 if (info->port.flags & ASYNC_CHECK_CD) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001666 if ((fw_ver > 241 ? ((u_long) param) :
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001667 readl(&ch_ctrl->rs_status)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08001668 C_RS_DCD) {
Alan Cox77451e52008-07-16 21:57:02 +01001669 wake_up_interruptible(&info->port.open_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001670 } else {
Alan Cox77451e52008-07-16 21:57:02 +01001671 tty_hangup(info->port.tty);
1672 wake_up_interruptible(&info->port.open_wait);
1673 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
Jiri Slaby02f11752006-12-08 02:39:28 -08001674 }
1675 }
1676 break;
1677 case C_CM_MCTS:
1678 info->icount.cts++;
1679 delta_count++;
1680 break;
1681 case C_CM_MRI:
1682 info->icount.rng++;
1683 delta_count++;
1684 break;
1685 case C_CM_MDSR:
1686 info->icount.dsr++;
1687 delta_count++;
1688 break;
1689#ifdef Z_WAKE
1690 case C_CM_IOCTLW:
Jiri Slabyebafeef2007-10-18 03:06:20 -07001691 complete(&info->shutdown_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001692 break;
1693#endif
1694#ifdef CONFIG_CYZ_INTR
1695 case C_CM_RXHIWM:
1696 case C_CM_RXNNDT:
1697 case C_CM_INTBACK2:
1698 /* Reception Interrupt */
1699#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001700 printk(KERN_DEBUG "cyz_interrupt: rcvd intr, card %d, "
1701 "port %ld\n", info->card, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001702#endif
Jiri Slaby65f76a82007-10-18 03:06:22 -07001703 cyz_handle_rx(info, buf_ctrl);
Jiri Slaby02f11752006-12-08 02:39:28 -08001704 break;
1705 case C_CM_TXBEMPTY:
1706 case C_CM_TXLOWWM:
1707 case C_CM_INTBACK:
1708 /* Transmission Interrupt */
1709#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001710 printk(KERN_DEBUG "cyz_interrupt: xmit intr, card %d, "
1711 "port %ld\n", info->card, channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001712#endif
Jiri Slaby65f76a82007-10-18 03:06:22 -07001713 cyz_handle_tx(info, buf_ctrl);
Jiri Slaby02f11752006-12-08 02:39:28 -08001714 break;
1715#endif /* CONFIG_CYZ_INTR */
1716 case C_CM_FATAL:
1717 /* should do something with this !!! */
1718 break;
1719 default:
1720 break;
1721 }
1722 if (delta_count)
Jiri Slabyebafeef2007-10-18 03:06:20 -07001723 wake_up_interruptible(&info->delta_msr_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08001724 if (special_count)
1725 tty_schedule_flip(tty);
1726 }
1727}
1728
1729#ifdef CONFIG_CYZ_INTR
1730static irqreturn_t cyz_interrupt(int irq, void *dev_id)
1731{
Jiri Slabyf7429032007-05-08 00:36:59 -07001732 struct cyclades_card *cinfo = dev_id;
Jiri Slaby02f11752006-12-08 02:39:28 -08001733
Jiri Slabyf7429032007-05-08 00:36:59 -07001734 if (unlikely(!ISZLOADED(*cinfo))) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001735#ifdef CY_DEBUG_INTERRUPTS
Jiri Slaby21719192007-05-08 00:36:42 -07001736 printk(KERN_DEBUG "cyz_interrupt: board not yet loaded "
1737 "(IRQ%d).\n", irq);
Jiri Slaby02f11752006-12-08 02:39:28 -08001738#endif
1739 return IRQ_NONE;
1740 }
1741
1742 /* Handle the interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 cyz_handle_cmd(cinfo);
1744
Jiri Slaby02f11752006-12-08 02:39:28 -08001745 return IRQ_HANDLED;
1746} /* cyz_interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Jiri Slaby02f11752006-12-08 02:39:28 -08001748static void cyz_rx_restart(unsigned long arg)
1749{
1750 struct cyclades_port *info = (struct cyclades_port *)arg;
Jiri Slaby875b2062007-05-08 00:36:49 -07001751 struct cyclades_card *card = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001752 int retval;
Jiri Slaby875b2062007-05-08 00:36:49 -07001753 __u32 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08001754 unsigned long flags;
1755
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001756 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07001757 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK2, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001758 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001759 printk(KERN_ERR "cyc:cyz_rx_restart retval on ttyC%d was %x\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08001760 info->line, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001762 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001763}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Jiri Slaby02f11752006-12-08 02:39:28 -08001765#else /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Jiri Slaby02f11752006-12-08 02:39:28 -08001767static void cyz_poll(unsigned long arg)
1768{
1769 struct cyclades_card *cinfo;
1770 struct cyclades_port *info;
1771 struct tty_struct *tty;
Jiri Slabyc4923b42007-07-17 04:05:17 -07001772 struct FIRM_ID __iomem *firm_id;
1773 struct ZFW_CTRL __iomem *zfw_ctrl;
1774 struct BOARD_CTRL __iomem *board_ctrl;
Jiri Slabyc4923b42007-07-17 04:05:17 -07001775 struct BUF_CTRL __iomem *buf_ctrl;
Jiri Slabyb7050902007-05-08 00:35:48 -07001776 unsigned long expires = jiffies + HZ;
Jiri Slaby65f76a82007-10-18 03:06:22 -07001777 unsigned int port, card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001778
Jiri Slaby02f11752006-12-08 02:39:28 -08001779 for (card = 0; card < NR_CARDS; card++) {
1780 cinfo = &cy_card[card];
1781
1782 if (!IS_CYC_Z(*cinfo))
1783 continue;
1784 if (!ISZLOADED(*cinfo))
1785 continue;
1786
1787 firm_id = cinfo->base_addr + ID_ADDRESS;
1788 zfw_ctrl = cinfo->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001789 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001790 board_ctrl = &(zfw_ctrl->board_ctrl);
1791
1792 /* Skip first polling cycle to avoid racing conditions with the FW */
1793 if (!cinfo->intr_enabled) {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001794 cinfo->nports = (int)readl(&board_ctrl->n_channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08001795 cinfo->intr_enabled = 1;
1796 continue;
1797 }
1798
1799 cyz_handle_cmd(cinfo);
1800
1801 for (port = 0; port < cinfo->nports; port++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07001802 info = &cinfo->ports[port];
Alan Cox77451e52008-07-16 21:57:02 +01001803 tty = info->port.tty;
Jiri Slaby02f11752006-12-08 02:39:28 -08001804 buf_ctrl = &(zfw_ctrl->buf_ctrl[port]);
1805
1806 if (!info->throttle)
Jiri Slaby65f76a82007-10-18 03:06:22 -07001807 cyz_handle_rx(info, buf_ctrl);
1808 cyz_handle_tx(info, buf_ctrl);
Jiri Slaby02f11752006-12-08 02:39:28 -08001809 }
1810 /* poll every 'cyz_polling_cycle' period */
Jiri Slabyb7050902007-05-08 00:35:48 -07001811 expires = jiffies + cyz_polling_cycle;
Jiri Slaby02f11752006-12-08 02:39:28 -08001812 }
Jiri Slabyb7050902007-05-08 00:35:48 -07001813 mod_timer(&cyz_timerlist, expires);
Jiri Slaby02f11752006-12-08 02:39:28 -08001814} /* cyz_poll */
1815
1816#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
1818/********** End of block of Cyclades-Z specific code *********/
1819/***********************************************************/
1820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821/* This is called whenever a port becomes active;
1822 interrupts are enabled and DTR & RTS are turned on.
1823 */
Jiri Slaby02f11752006-12-08 02:39:28 -08001824static int startup(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Jiri Slaby875b2062007-05-08 00:36:49 -07001826 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08001827 unsigned long flags;
1828 int retval = 0;
1829 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07001830 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08001831 unsigned long page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Jiri Slaby02f11752006-12-08 02:39:28 -08001833 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07001834 channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Jiri Slaby02f11752006-12-08 02:39:28 -08001836 page = get_zeroed_page(GFP_KERNEL);
1837 if (!page)
1838 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001840 spin_lock_irqsave(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Alan Cox77451e52008-07-16 21:57:02 +01001842 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001843 free_page(page);
1844 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 }
Jiri Slaby02f11752006-12-08 02:39:28 -08001846
1847 if (!info->type) {
Alan Cox77451e52008-07-16 21:57:02 +01001848 if (info->port.tty)
1849 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001850 free_page(page);
1851 goto errout;
1852 }
1853
Alan Cox77451e52008-07-16 21:57:02 +01001854 if (info->port.xmit_buf)
Jiri Slaby02f11752006-12-08 02:39:28 -08001855 free_page(page);
1856 else
Alan Cox77451e52008-07-16 21:57:02 +01001857 info->port.xmit_buf = (unsigned char *)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001859 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Jiri Slaby02f11752006-12-08 02:39:28 -08001861 set_line_char(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Jiri Slaby875b2062007-05-08 00:36:49 -07001863 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08001864 chip = channel >> 2;
1865 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07001866 index = card->bus_index;
1867 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001870 printk(KERN_DEBUG "cyc startup card %d, chip %d, channel %d, "
1871 "base_addr %p\n",
1872 card, chip, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001873#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001874 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001875
1876 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
1877
1878 cy_writeb(base_addr + (CyRTPR << index),
1879 (info->default_timeout ? info->default_timeout : 0x02));
1880 /* 10ms rx timeout */
1881
1882 cyy_issue_cmd(base_addr, CyCHAN_CTL | CyENB_RCVR | CyENB_XMTR,
1883 index);
1884
1885 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
1886 cy_writeb(base_addr + (CyMSVR1 << index), CyRTS);
1887 cy_writeb(base_addr + (CyMSVR2 << index), CyDTR);
1888
1889#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07001890 printk(KERN_DEBUG "cyc:startup raising DTR\n");
1891 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001892 readb(base_addr + (CyMSVR1 << index)),
1893 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894#endif
1895
Jiri Slaby02f11752006-12-08 02:39:28 -08001896 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001897 readb(base_addr + (CySRER << index)) | CyRxData);
Alan Cox77451e52008-07-16 21:57:02 +01001898 info->port.flags |= ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Alan Cox77451e52008-07-16 21:57:02 +01001900 if (info->port.tty)
1901 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001902 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1903 info->breakon = info->breakoff = 0;
1904 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
1905 info->idle_stats.in_use =
1906 info->idle_stats.recv_idle =
1907 info->idle_stats.xmit_idle = jiffies;
1908
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001909 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001910
1911 } else {
1912 struct FIRM_ID __iomem *firm_id;
1913 struct ZFW_CTRL __iomem *zfw_ctrl;
1914 struct BOARD_CTRL __iomem *board_ctrl;
1915 struct CH_CTRL __iomem *ch_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08001916
Jiri Slaby875b2062007-05-08 00:36:49 -07001917 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08001918
1919 firm_id = base_addr + ID_ADDRESS;
Alan Cox15ed6cc2008-04-30 00:53:55 -07001920 if (!ISZLOADED(*card))
Jiri Slaby02f11752006-12-08 02:39:28 -08001921 return -ENODEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08001922
Jiri Slaby875b2062007-05-08 00:36:49 -07001923 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001924 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08001925 board_ctrl = &zfw_ctrl->board_ctrl;
1926 ch_ctrl = zfw_ctrl->ch_ctrl;
1927
1928#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001929 printk(KERN_DEBUG "cyc startup Z card %d, channel %d, "
1930 "base_addr %p\n", card, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08001931#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001932 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001933
1934 cy_writel(&ch_ctrl[channel].op_mode, C_CH_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935#ifdef Z_WAKE
1936#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001937 cy_writel(&ch_ctrl[channel].intr_enable,
1938 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
1939 C_IN_RXNNDT | C_IN_IOCTLW | C_IN_MDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001941 cy_writel(&ch_ctrl[channel].intr_enable,
1942 C_IN_IOCTLW | C_IN_MDCD);
1943#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944#else
1945#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08001946 cy_writel(&ch_ctrl[channel].intr_enable,
1947 C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM |
1948 C_IN_RXNNDT | C_IN_MDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949#else
Jiri Slaby02f11752006-12-08 02:39:28 -08001950 cy_writel(&ch_ctrl[channel].intr_enable, C_IN_MDCD);
1951#endif /* CONFIG_CYZ_INTR */
1952#endif /* Z_WAKE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Jiri Slaby875b2062007-05-08 00:36:49 -07001954 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001955 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001956 printk(KERN_ERR "cyc:startup(1) retval on ttyC%d was "
1957 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Jiri Slaby02f11752006-12-08 02:39:28 -08001960 /* Flush RX buffers before raising DTR and RTS */
Jiri Slaby875b2062007-05-08 00:36:49 -07001961 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_RX, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001962 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001963 printk(KERN_ERR "cyc:startup(2) retval on ttyC%d was "
1964 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Jiri Slaby02f11752006-12-08 02:39:28 -08001967 /* set timeout !!! */
1968 /* set RTS and DTR !!! */
1969 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07001970 readl(&ch_ctrl[channel].rs_control) | C_RS_RTS |
Jiri Slaby02f11752006-12-08 02:39:28 -08001971 C_RS_DTR);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001972 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08001973 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07001974 printk(KERN_ERR "cyc:startup(3) retval on ttyC%d was "
1975 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08001976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07001978 printk(KERN_DEBUG "cyc:startup raising Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979#endif
1980
Jiri Slaby02f11752006-12-08 02:39:28 -08001981 /* enable send, recv, modem !!! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Alan Cox77451e52008-07-16 21:57:02 +01001983 info->port.flags |= ASYNC_INITIALIZED;
1984 if (info->port.tty)
1985 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08001986 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1987 info->breakon = info->breakoff = 0;
1988 memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats));
1989 info->idle_stats.in_use =
1990 info->idle_stats.recv_idle =
1991 info->idle_stats.xmit_idle = jiffies;
1992
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07001993 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07001997 printk(KERN_DEBUG "cyc startup done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998#endif
1999 return 0;
2000
2001errout:
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002002 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08002004} /* startup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Jiri Slaby02f11752006-12-08 02:39:28 -08002006static void start_xmit(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007{
Jiri Slaby875b2062007-05-08 00:36:49 -07002008 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002009 unsigned long flags;
2010 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002011 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Jiri Slaby02f11752006-12-08 02:39:28 -08002013 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002014 channel = info->line - card->first_line;
2015 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002016 chip = channel >> 2;
2017 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002018 index = card->bus_index;
2019 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002021 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002022 cy_writeb(base_addr + (CyCAR << index), channel);
2023 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002024 readb(base_addr + (CySRER << index)) | CyTxRdy);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002025 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002026 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027#ifdef CONFIG_CYZ_INTR
Jiri Slaby02f11752006-12-08 02:39:28 -08002028 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002030 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby875b2062007-05-08 00:36:49 -07002031 retval = cyz_issue_cmd(card, channel, C_CM_INTBACK, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002032 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002033 printk(KERN_ERR "cyc:start_xmit retval on ttyC%d was "
2034 "%x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002035 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002036 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002037#else /* CONFIG_CYZ_INTR */
2038 /* Don't have to do anything at this time */
2039#endif /* CONFIG_CYZ_INTR */
2040 }
2041} /* start_xmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043/*
2044 * This routine shuts down a serial port; interrupts are disabled,
2045 * and DTR is dropped if the hangup on close termio flag is on.
2046 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002047static void shutdown(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Jiri Slaby875b2062007-05-08 00:36:49 -07002049 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002050 unsigned long flags;
2051 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002052 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Alan Cox77451e52008-07-16 21:57:02 +01002054 if (!(info->port.flags & ASYNC_INITIALIZED))
Jiri Slaby02f11752006-12-08 02:39:28 -08002055 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Jiri Slaby02f11752006-12-08 02:39:28 -08002057 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002058 channel = info->line - card->first_line;
2059 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002060 chip = channel >> 2;
2061 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002062 index = card->bus_index;
2063 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002066 printk(KERN_DEBUG "cyc shutdown Y card %d, chip %d, "
2067 "channel %d, base_addr %p\n",
2068 card, chip, channel, base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002071 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002072
2073 /* Clear delta_msr_wait queue to avoid mem leaks. */
2074 wake_up_interruptible(&info->delta_msr_wait);
2075
Alan Cox77451e52008-07-16 21:57:02 +01002076 if (info->port.xmit_buf) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002077 unsigned char *temp;
Alan Cox77451e52008-07-16 21:57:02 +01002078 temp = info->port.xmit_buf;
2079 info->port.xmit_buf = NULL;
Jiri Slaby02f11752006-12-08 02:39:28 -08002080 free_page((unsigned long)temp);
2081 }
2082 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Alan Cox77451e52008-07-16 21:57:02 +01002083 if (!info->port.tty || (info->port.tty->termios->c_cflag & HUPCL)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002084 cy_writeb(base_addr + (CyMSVR1 << index), ~CyRTS);
2085 cy_writeb(base_addr + (CyMSVR2 << index), ~CyDTR);
2086#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002087 printk(KERN_DEBUG "cyc shutdown dropping DTR\n");
2088 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002089 readb(base_addr + (CyMSVR1 << index)),
2090 readb(base_addr + (CyMSVR2 << index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08002091#endif
2092 }
2093 cyy_issue_cmd(base_addr, CyCHAN_CTL | CyDIS_RCVR, index);
2094 /* it may be appropriate to clear _XMIT at
2095 some later date (after testing)!!! */
2096
Alan Cox77451e52008-07-16 21:57:02 +01002097 if (info->port.tty)
2098 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
2099 info->port.flags &= ~ASYNC_INITIALIZED;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002100 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002101 } else {
2102 struct FIRM_ID __iomem *firm_id;
2103 struct ZFW_CTRL __iomem *zfw_ctrl;
2104 struct BOARD_CTRL __iomem *board_ctrl;
2105 struct CH_CTRL __iomem *ch_ctrl;
2106 int retval;
2107
Jiri Slaby875b2062007-05-08 00:36:49 -07002108 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002109#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002110 printk(KERN_DEBUG "cyc shutdown Z card %d, channel %d, "
2111 "base_addr %p\n", card, channel, base_addr);
Jiri Slaby02f11752006-12-08 02:39:28 -08002112#endif
2113
2114 firm_id = base_addr + ID_ADDRESS;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002115 if (!ISZLOADED(*card))
Jiri Slaby02f11752006-12-08 02:39:28 -08002116 return;
Jiri Slaby02f11752006-12-08 02:39:28 -08002117
Jiri Slaby875b2062007-05-08 00:36:49 -07002118 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002119 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002120 board_ctrl = &zfw_ctrl->board_ctrl;
2121 ch_ctrl = zfw_ctrl->ch_ctrl;
2122
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002123 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002124
Alan Cox77451e52008-07-16 21:57:02 +01002125 if (info->port.xmit_buf) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002126 unsigned char *temp;
Alan Cox77451e52008-07-16 21:57:02 +01002127 temp = info->port.xmit_buf;
2128 info->port.xmit_buf = NULL;
Jiri Slaby02f11752006-12-08 02:39:28 -08002129 free_page((unsigned long)temp);
2130 }
2131
Alan Cox77451e52008-07-16 21:57:02 +01002132 if (!info->port.tty || (info->port.tty->termios->c_cflag & HUPCL)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002133 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002134 (__u32)(readl(&ch_ctrl[channel].rs_control) &
Jiri Slaby02f11752006-12-08 02:39:28 -08002135 ~(C_RS_RTS | C_RS_DTR)));
Jiri Slaby875b2062007-05-08 00:36:49 -07002136 retval = cyz_issue_cmd(info->card, channel,
Jiri Slaby02f11752006-12-08 02:39:28 -08002137 C_CM_IOCTLM, 0L);
2138 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002139 printk(KERN_ERR"cyc:shutdown retval on ttyC%d "
2140 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002141 }
2142#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002143 printk(KERN_DEBUG "cyc:shutdown dropping Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002144#endif
2145 }
2146
Alan Cox77451e52008-07-16 21:57:02 +01002147 if (info->port.tty)
2148 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
2149 info->port.flags &= ~ASYNC_INITIALIZED;
Jiri Slaby02f11752006-12-08 02:39:28 -08002150
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002151 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002152 }
2153
2154#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002155 printk(KERN_DEBUG "cyc shutdown done\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002156#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002157} /* shutdown */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
2159/*
2160 * ------------------------------------------------------------
2161 * cy_open() and friends
2162 * ------------------------------------------------------------
2163 */
2164
2165static int
Jiri Slaby02f11752006-12-08 02:39:28 -08002166block_til_ready(struct tty_struct *tty, struct file *filp,
2167 struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
Jiri Slaby02f11752006-12-08 02:39:28 -08002169 DECLARE_WAITQUEUE(wait, current);
2170 struct cyclades_card *cinfo;
2171 unsigned long flags;
2172 int chip, channel, index;
2173 int retval;
2174 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Jiri Slaby875b2062007-05-08 00:36:49 -07002176 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002177 channel = info->line - cinfo->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Jiri Slaby02f11752006-12-08 02:39:28 -08002179 /*
2180 * If the device is in the middle of being closed, then block
2181 * until it's done, and then try again.
2182 */
Alan Cox77451e52008-07-16 21:57:02 +01002183 if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) {
2184 wait_event_interruptible(info->port.close_wait,
2185 !(info->port.flags & ASYNC_CLOSING));
2186 return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
Jiri Slaby02f11752006-12-08 02:39:28 -08002187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Jiri Slaby02f11752006-12-08 02:39:28 -08002189 /*
2190 * If non-blocking mode is set, then make the check up front
2191 * and then exit.
2192 */
Alan Cox15ed6cc2008-04-30 00:53:55 -07002193 if ((filp->f_flags & O_NONBLOCK) ||
2194 (tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox77451e52008-07-16 21:57:02 +01002195 info->port.flags |= ASYNC_NORMAL_ACTIVE;
Jiri Slaby02f11752006-12-08 02:39:28 -08002196 return 0;
2197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Jiri Slaby02f11752006-12-08 02:39:28 -08002199 /*
2200 * Block waiting for the carrier detect and the line to become
2201 * free (i.e., not in use by the callout). While we are in
Alan Cox77451e52008-07-16 21:57:02 +01002202 * this loop, info->port.count is dropped by one, so that
Jiri Slaby02f11752006-12-08 02:39:28 -08002203 * cy_close() knows when to free things. We restore it upon
2204 * exit, either normal or abnormal.
2205 */
2206 retval = 0;
Alan Cox77451e52008-07-16 21:57:02 +01002207 add_wait_queue(&info->port.open_wait, &wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08002208#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002209 printk(KERN_DEBUG "cyc block_til_ready before block: ttyC%d, "
Alan Cox77451e52008-07-16 21:57:02 +01002210 "count = %d\n", info->line, info->port.count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002211#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002212 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002213 if (!tty_hung_up_p(filp))
Alan Cox77451e52008-07-16 21:57:02 +01002214 info->port.count--;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002215 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002216#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002217 printk(KERN_DEBUG "cyc block_til_ready: (%d): decrementing count to "
Alan Cox77451e52008-07-16 21:57:02 +01002218 "%d\n", current->pid, info->port.count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002219#endif
Alan Cox77451e52008-07-16 21:57:02 +01002220 info->port.blocked_open++;
Jiri Slaby02f11752006-12-08 02:39:28 -08002221
2222 if (!IS_CYC_Z(*cinfo)) {
2223 chip = channel >> 2;
2224 channel &= 0x03;
2225 index = cinfo->bus_index;
2226 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
2227
2228 while (1) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002229 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002230 if ((tty->termios->c_cflag & CBAUD)) {
2231 cy_writeb(base_addr + (CyCAR << index),
2232 (u_char) channel);
2233 cy_writeb(base_addr + (CyMSVR1 << index),
2234 CyRTS);
2235 cy_writeb(base_addr + (CyMSVR2 << index),
2236 CyDTR);
2237#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002238 printk(KERN_DEBUG "cyc:block_til_ready raising "
2239 "DTR\n");
2240 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002241 readb(base_addr + (CyMSVR1 << index)),
2242 readb(base_addr + (CyMSVR2 << index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08002243#endif
2244 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002245 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Jiri Slaby02f11752006-12-08 02:39:28 -08002247 set_current_state(TASK_INTERRUPTIBLE);
2248 if (tty_hung_up_p(filp) ||
Alan Cox77451e52008-07-16 21:57:02 +01002249 !(info->port.flags & ASYNC_INITIALIZED)) {
2250 retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
Jiri Slaby02f11752006-12-08 02:39:28 -08002251 -EAGAIN : -ERESTARTSYS);
2252 break;
2253 }
2254
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002255 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002256 cy_writeb(base_addr + (CyCAR << index),
2257 (u_char) channel);
Alan Cox77451e52008-07-16 21:57:02 +01002258 if (!(info->port.flags & ASYNC_CLOSING) && (C_CLOCAL(tty) ||
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002259 (readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08002260 (CyMSVR1 << index)) & CyDCD))) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002261 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002262 break;
2263 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002264 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002265
2266 if (signal_pending(current)) {
2267 retval = -ERESTARTSYS;
2268 break;
2269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002271 printk(KERN_DEBUG "cyc block_til_ready blocking: "
2272 "ttyC%d, count = %d\n",
Alan Cox77451e52008-07-16 21:57:02 +01002273 info->line, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002275 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002277 } else {
2278 struct FIRM_ID __iomem *firm_id;
2279 struct ZFW_CTRL __iomem *zfw_ctrl;
2280 struct BOARD_CTRL __iomem *board_ctrl;
2281 struct CH_CTRL __iomem *ch_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08002282
2283 base_addr = cinfo->base_addr;
2284 firm_id = base_addr + ID_ADDRESS;
2285 if (!ISZLOADED(*cinfo)) {
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07002286 __set_current_state(TASK_RUNNING);
Alan Cox77451e52008-07-16 21:57:02 +01002287 remove_wait_queue(&info->port.open_wait, &wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08002288 return -EINVAL;
2289 }
2290
Alan Cox15ed6cc2008-04-30 00:53:55 -07002291 zfw_ctrl = base_addr + (readl(&firm_id->zfwctrl_addr)
2292 & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002293 board_ctrl = &zfw_ctrl->board_ctrl;
2294 ch_ctrl = zfw_ctrl->ch_ctrl;
2295
2296 while (1) {
2297 if ((tty->termios->c_cflag & CBAUD)) {
2298 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002299 readl(&ch_ctrl[channel].rs_control) |
2300 C_RS_RTS | C_RS_DTR);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002301 retval = cyz_issue_cmd(cinfo,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002302 channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002303 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002304 printk(KERN_ERR "cyc:block_til_ready "
2305 "retval on ttyC%d was %x\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08002306 info->line, retval);
2307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07002309 printk(KERN_DEBUG "cyc:block_til_ready raising "
2310 "Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Jiri Slaby02f11752006-12-08 02:39:28 -08002314 set_current_state(TASK_INTERRUPTIBLE);
2315 if (tty_hung_up_p(filp) ||
Alan Cox77451e52008-07-16 21:57:02 +01002316 !(info->port.flags & ASYNC_INITIALIZED)) {
2317 retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
Jiri Slaby02f11752006-12-08 02:39:28 -08002318 -EAGAIN : -ERESTARTSYS);
2319 break;
2320 }
Alan Cox77451e52008-07-16 21:57:02 +01002321 if (!(info->port.flags & ASYNC_CLOSING) && (C_CLOCAL(tty) ||
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002322 (readl(&ch_ctrl[channel].rs_status) &
Jiri Slaby02f11752006-12-08 02:39:28 -08002323 C_RS_DCD))) {
2324 break;
2325 }
2326 if (signal_pending(current)) {
2327 retval = -ERESTARTSYS;
2328 break;
2329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002331 printk(KERN_DEBUG "cyc block_til_ready blocking: "
2332 "ttyC%d, count = %d\n",
Alan Cox77451e52008-07-16 21:57:02 +01002333 info->line, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002335 schedule();
2336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 }
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07002338 __set_current_state(TASK_RUNNING);
Alan Cox77451e52008-07-16 21:57:02 +01002339 remove_wait_queue(&info->port.open_wait, &wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08002340 if (!tty_hung_up_p(filp)) {
Alan Cox77451e52008-07-16 21:57:02 +01002341 info->port.count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002343 printk(KERN_DEBUG "cyc:block_til_ready (%d): incrementing "
Alan Cox77451e52008-07-16 21:57:02 +01002344 "count to %d\n", current->pid, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002346 }
Alan Cox77451e52008-07-16 21:57:02 +01002347 info->port.blocked_open--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002349 printk(KERN_DEBUG "cyc:block_til_ready after blocking: ttyC%d, "
Alan Cox77451e52008-07-16 21:57:02 +01002350 "count = %d\n", info->line, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002352 if (retval)
2353 return retval;
Alan Cox77451e52008-07-16 21:57:02 +01002354 info->port.flags |= ASYNC_NORMAL_ACTIVE;
Jiri Slaby02f11752006-12-08 02:39:28 -08002355 return 0;
2356} /* block_til_ready */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
2358/*
2359 * This routine is called whenever a serial port is opened. It
2360 * performs the serial-specific initialization for the tty structure.
2361 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002362static int cy_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363{
Jiri Slaby02f11752006-12-08 02:39:28 -08002364 struct cyclades_port *info;
Jiri Slaby65f76a82007-10-18 03:06:22 -07002365 unsigned int i, line;
2366 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Jiri Slaby02f11752006-12-08 02:39:28 -08002368 line = tty->index;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002369 if (tty->index < 0 || NR_PORTS <= line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 return -ENODEV;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002371
Jiri Slabydd025c02007-05-08 00:37:02 -07002372 for (i = 0; i < NR_CARDS; i++)
2373 if (line < cy_card[i].first_line + cy_card[i].nports &&
2374 line >= cy_card[i].first_line)
2375 break;
2376 if (i >= NR_CARDS)
2377 return -ENODEV;
2378 info = &cy_card[i].ports[line - cy_card[i].first_line];
Alan Cox15ed6cc2008-04-30 00:53:55 -07002379 if (info->line < 0)
Jiri Slaby02f11752006-12-08 02:39:28 -08002380 return -ENODEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08002381
2382 /* If the card's firmware hasn't been loaded,
2383 treat it as absent from the system. This
2384 will make the user pay attention.
2385 */
Jiri Slaby875b2062007-05-08 00:36:49 -07002386 if (IS_CYC_Z(*info->card)) {
2387 struct cyclades_card *cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002388 struct FIRM_ID __iomem *firm_id = cinfo->base_addr + ID_ADDRESS;
2389
2390 if (!ISZLOADED(*cinfo)) {
Jiri Slaby97e87f82009-06-11 12:29:27 +01002391 if (((ZE_V1 == readl(&cinfo->ctl_addr.p9060->
2392 mail_box_0)) &&
Jiri Slaby02f11752006-12-08 02:39:28 -08002393 Z_FPGA_CHECK(*cinfo)) &&
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002394 (ZFIRM_HLT == readl(
Jiri Slaby02f11752006-12-08 02:39:28 -08002395 &firm_id->signature))) {
Jiri Slaby21719192007-05-08 00:36:42 -07002396 printk(KERN_ERR "cyc:Cyclades-Z Error: you "
2397 "need an external power supply for "
2398 "this number of ports.\nFirmware "
2399 "halted.\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002400 } else {
Jiri Slaby21719192007-05-08 00:36:42 -07002401 printk(KERN_ERR "cyc:Cyclades-Z firmware not "
2402 "yet loaded\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002403 }
2404 return -ENODEV;
2405 }
2406#ifdef CONFIG_CYZ_INTR
2407 else {
2408 /* In case this Z board is operating in interrupt mode, its
2409 interrupts should be enabled as soon as the first open
2410 happens to one of its ports. */
2411 if (!cinfo->intr_enabled) {
2412 struct ZFW_CTRL __iomem *zfw_ctrl;
2413 struct BOARD_CTRL __iomem *board_ctrl;
Jiri Slaby97e87f82009-06-11 12:29:27 +01002414 u16 intr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002415
2416 zfw_ctrl = cinfo->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002417 (readl(&firm_id->zfwctrl_addr) &
2418 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002419
2420 board_ctrl = &zfw_ctrl->board_ctrl;
2421
2422 /* Enable interrupts on the PLX chip */
Jiri Slaby97e87f82009-06-11 12:29:27 +01002423 intr = readw(&cinfo->ctl_addr.p9060->
2424 intr_ctrl_stat) | 0x0900;
2425 cy_writew(&cinfo->ctl_addr.p9060->
2426 intr_ctrl_stat, intr);
Jiri Slaby02f11752006-12-08 02:39:28 -08002427 /* Enable interrupts on the FW */
2428 retval = cyz_issue_cmd(cinfo, 0,
2429 C_CM_IRQ_ENBL, 0L);
2430 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002431 printk(KERN_ERR "cyc:IRQ enable retval "
2432 "was %x\n", retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002433 }
2434 cinfo->nports =
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002435 (int)readl(&board_ctrl->n_channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08002436 cinfo->intr_enabled = 1;
2437 }
2438 }
2439#endif /* CONFIG_CYZ_INTR */
2440 /* Make sure this Z port really exists in hardware */
2441 if (info->line > (cinfo->first_line + cinfo->nports - 1))
2442 return -ENODEV;
2443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002445 printk(KERN_DEBUG "cyc:cy_open ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002447 tty->driver_data = info;
Alan Cox77451e52008-07-16 21:57:02 +01002448 info->port.tty = tty;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002449 if (serial_paranoia_check(info, tty->name, "cy_open"))
Jiri Slaby02f11752006-12-08 02:39:28 -08002450 return -ENODEV;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002453 printk(KERN_DEBUG "cyc:cy_open ttyC%d, count = %d\n", info->line,
Alan Cox77451e52008-07-16 21:57:02 +01002454 info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455#endif
Alan Cox77451e52008-07-16 21:57:02 +01002456 info->port.count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002458 printk(KERN_DEBUG "cyc:cy_open (%d): incrementing count to %d\n",
Alan Cox77451e52008-07-16 21:57:02 +01002459 current->pid, info->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Jiri Slaby02f11752006-12-08 02:39:28 -08002462 /*
2463 * If the port is the middle of closing, bail out now
2464 */
Alan Cox77451e52008-07-16 21:57:02 +01002465 if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) {
2466 wait_event_interruptible(info->port.close_wait,
2467 !(info->port.flags & ASYNC_CLOSING));
2468 return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS;
Jiri Slaby02f11752006-12-08 02:39:28 -08002469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Jiri Slaby02f11752006-12-08 02:39:28 -08002471 /*
2472 * Start up serial port
2473 */
2474 retval = startup(info);
Alan Cox15ed6cc2008-04-30 00:53:55 -07002475 if (retval)
Jiri Slaby02f11752006-12-08 02:39:28 -08002476 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Jiri Slaby02f11752006-12-08 02:39:28 -08002478 retval = block_til_ready(tty, filp, info);
2479 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002481 printk(KERN_DEBUG "cyc:cy_open returning after block_til_ready "
2482 "with %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002484 return retval;
2485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Jiri Slaby02f11752006-12-08 02:39:28 -08002487 info->throttle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
2489#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002490 printk(KERN_DEBUG "cyc:cy_open done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002492 return 0;
2493} /* cy_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
2495/*
2496 * cy_wait_until_sent() --- wait until the transmitter is empty
2497 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002498static void cy_wait_until_sent(struct tty_struct *tty, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
Jiri Slaby875b2062007-05-08 00:36:49 -07002500 struct cyclades_card *card;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002501 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002502 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002503 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08002504 unsigned long orig_jiffies;
2505 int char_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Jiri Slaby02f11752006-12-08 02:39:28 -08002507 if (serial_paranoia_check(info, tty->name, "cy_wait_until_sent"))
2508 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Jiri Slaby02f11752006-12-08 02:39:28 -08002510 if (info->xmit_fifo_size == 0)
2511 return; /* Just in case.... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Jiri Slaby02f11752006-12-08 02:39:28 -08002513 orig_jiffies = jiffies;
Alan Cox978e5952008-04-30 00:53:59 -07002514 lock_kernel();
Jiri Slaby02f11752006-12-08 02:39:28 -08002515 /*
2516 * Set the check interval to be 1/5 of the estimated time to
2517 * send a single character, and make it at least 1. The check
2518 * interval should also be less than the timeout.
2519 *
2520 * Note: we have to use pretty tight timings here to satisfy
2521 * the NIST-PCTS.
2522 */
2523 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2524 char_time = char_time / 5;
2525 if (char_time <= 0)
2526 char_time = 1;
2527 if (timeout < 0)
2528 timeout = 0;
2529 if (timeout)
2530 char_time = min(char_time, timeout);
2531 /*
2532 * If the transmitter hasn't cleared in twice the approximate
2533 * amount of time to send the entire FIFO, it probably won't
2534 * ever clear. This assumes the UART isn't doing flow
2535 * control, which is currently the case. Hence, if it ever
2536 * takes longer than info->timeout, this is probably due to a
2537 * UART bug of some kind. So, we clamp the timeout parameter at
2538 * 2*info->timeout.
2539 */
2540 if (!timeout || timeout > 2 * info->timeout)
2541 timeout = 2 * info->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002543 printk(KERN_DEBUG "In cy_wait_until_sent(%d) check=%d, jiff=%lu...",
2544 timeout, char_time, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002546 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002547 channel = (info->line) - (card->first_line);
2548 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002549 chip = channel >> 2;
2550 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07002551 index = card->bus_index;
2552 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002553 while (readb(base_addr + (CySRER << index)) & CyTxRdy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002555 printk(KERN_DEBUG "Not clean (jiff=%lu)...", jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002557 if (msleep_interruptible(jiffies_to_msecs(char_time)))
2558 break;
2559 if (timeout && time_after(jiffies, orig_jiffies +
2560 timeout))
2561 break;
2562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 }
Jiri Slaby02f11752006-12-08 02:39:28 -08002564 /* Run one more char cycle */
2565 msleep_interruptible(jiffies_to_msecs(char_time * 5));
Alan Cox978e5952008-04-30 00:53:59 -07002566 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567#ifdef CY_DEBUG_WAIT_UNTIL_SENT
Jiri Slaby21719192007-05-08 00:36:42 -07002568 printk(KERN_DEBUG "Clean (jiff=%lu)...done\n", jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569#endif
2570}
2571
Alan Cox978e5952008-04-30 00:53:59 -07002572static void cy_flush_buffer(struct tty_struct *tty)
2573{
2574 struct cyclades_port *info = tty->driver_data;
2575 struct cyclades_card *card;
2576 int channel, retval;
2577 unsigned long flags;
2578
2579#ifdef CY_DEBUG_IO
2580 printk(KERN_DEBUG "cyc:cy_flush_buffer ttyC%d\n", info->line);
2581#endif
2582
2583 if (serial_paranoia_check(info, tty->name, "cy_flush_buffer"))
2584 return;
2585
2586 card = info->card;
2587 channel = info->line - card->first_line;
2588
2589 spin_lock_irqsave(&card->card_lock, flags);
2590 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
2591 spin_unlock_irqrestore(&card->card_lock, flags);
2592
2593 if (IS_CYC_Z(*card)) { /* If it is a Z card, flush the on-board
2594 buffers as well */
2595 spin_lock_irqsave(&card->card_lock, flags);
2596 retval = cyz_issue_cmd(card, channel, C_CM_FLUSH_TX, 0L);
2597 if (retval != 0) {
2598 printk(KERN_ERR "cyc: flush_buffer retval on ttyC%d "
2599 "was %x\n", info->line, retval);
2600 }
2601 spin_unlock_irqrestore(&card->card_lock, flags);
2602 }
2603 tty_wakeup(tty);
2604} /* cy_flush_buffer */
2605
2606
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607/*
2608 * This routine is called when a particular tty device is closed.
2609 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002610static void cy_close(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002612 struct cyclades_port *info = tty->driver_data;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002613 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002614 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
2616#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002617 printk(KERN_DEBUG "cyc:cy_close ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618#endif
2619
Alan Cox15ed6cc2008-04-30 00:53:55 -07002620 if (!info || serial_paranoia_check(info, tty->name, "cy_close"))
Jiri Slaby02f11752006-12-08 02:39:28 -08002621 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002623 card = info->card;
2624
2625 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002626 /* If the TTY is being hung up, nothing to do */
2627 if (tty_hung_up_p(filp)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002628 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002629 return;
2630 }
2631#ifdef CY_DEBUG_OPEN
Jiri Slaby21719192007-05-08 00:36:42 -07002632 printk(KERN_DEBUG "cyc:cy_close ttyC%d, count = %d\n", info->line,
Alan Cox77451e52008-07-16 21:57:02 +01002633 info->port.count);
Jiri Slaby02f11752006-12-08 02:39:28 -08002634#endif
Alan Cox77451e52008-07-16 21:57:02 +01002635 if ((tty->count == 1) && (info->port.count != 1)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002636 /*
2637 * Uh, oh. tty->count is 1, which means that the tty
2638 * structure will be freed. Info->count should always
2639 * be one in these conditions. If it's greater than
2640 * one, we've got real problems, since it means the
2641 * serial port won't be shutdown.
2642 */
Jiri Slaby21719192007-05-08 00:36:42 -07002643 printk(KERN_ERR "cyc:cy_close: bad serial port count; "
Alan Cox77451e52008-07-16 21:57:02 +01002644 "tty->count is 1, info->port.count is %d\n", info->port.count);
2645 info->port.count = 1;
Jiri Slaby02f11752006-12-08 02:39:28 -08002646 }
2647#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002648 printk(KERN_DEBUG "cyc:cy_close at (%d): decrementing count to %d\n",
Alan Cox77451e52008-07-16 21:57:02 +01002649 current->pid, info->port.count - 1);
Jiri Slaby02f11752006-12-08 02:39:28 -08002650#endif
Alan Cox77451e52008-07-16 21:57:02 +01002651 if (--info->port.count < 0) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002652#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07002653 printk(KERN_DEBUG "cyc:cyc_close setting count to 0\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08002654#endif
Alan Cox77451e52008-07-16 21:57:02 +01002655 info->port.count = 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08002656 }
Alan Cox77451e52008-07-16 21:57:02 +01002657 if (info->port.count) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002658 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002659 return;
2660 }
Alan Cox77451e52008-07-16 21:57:02 +01002661 info->port.flags |= ASYNC_CLOSING;
Jiri Slaby02f11752006-12-08 02:39:28 -08002662
2663 /*
2664 * Now we wait for the transmit buffer to clear; and we notify
2665 * the line discipline to only process XON/XOFF characters.
2666 */
2667 tty->closing = 1;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002668 spin_unlock_irqrestore(&card->card_lock, flags);
Alan Cox44b7d1b2008-07-16 21:57:18 +01002669 if (info->port.closing_wait != CY_CLOSING_WAIT_NONE)
2670 tty_wait_until_sent(tty, info->port.closing_wait);
Alan Cox15ed6cc2008-04-30 00:53:55 -07002671
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002672 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002673
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002674 if (!IS_CYC_Z(*card)) {
2675 int channel = info->line - card->first_line;
2676 int index = card->bus_index;
2677 void __iomem *base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08002678 (cy_chip_offset[channel >> 2] << index);
2679 /* Stop accepting input */
2680 channel &= 0x03;
2681 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
2682 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002683 readb(base_addr + (CySRER << index)) & ~CyRxData);
Alan Cox77451e52008-07-16 21:57:02 +01002684 if (info->port.flags & ASYNC_INITIALIZED) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07002685 /* Waiting for on-board buffers to be empty before
2686 closing the port */
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002687 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002688 cy_wait_until_sent(tty, info->timeout);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002689 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002690 }
2691 } else {
2692#ifdef Z_WAKE
Alan Cox15ed6cc2008-04-30 00:53:55 -07002693 /* Waiting for on-board buffers to be empty before closing
2694 the port */
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002695 void __iomem *base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08002696 struct FIRM_ID __iomem *firm_id = base_addr + ID_ADDRESS;
2697 struct ZFW_CTRL __iomem *zfw_ctrl =
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002698 base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002699 struct CH_CTRL __iomem *ch_ctrl = zfw_ctrl->ch_ctrl;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002700 int channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08002701 int retval;
2702
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002703 if (readl(&ch_ctrl[channel].flow_status) != C_FS_TXIDLE) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002704 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLW, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08002705 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07002706 printk(KERN_DEBUG "cyc:cy_close retval on "
2707 "ttyC%d was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08002708 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002709 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07002710 wait_for_completion_interruptible(&info->shutdown_wait);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002711 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002712 }
2713#endif
2714 }
2715
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002716 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002717 shutdown(info);
Alan Cox978e5952008-04-30 00:53:59 -07002718 cy_flush_buffer(tty);
Jiri Slaby02f11752006-12-08 02:39:28 -08002719 tty_ldisc_flush(tty);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002720 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002721
2722 tty->closing = 0;
Alan Cox77451e52008-07-16 21:57:02 +01002723 info->port.tty = NULL;
2724 if (info->port.blocked_open) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002725 spin_unlock_irqrestore(&card->card_lock, flags);
Alan Cox44b7d1b2008-07-16 21:57:18 +01002726 if (info->port.close_delay) {
Jiri Slaby02f11752006-12-08 02:39:28 -08002727 msleep_interruptible(jiffies_to_msecs
Alan Cox44b7d1b2008-07-16 21:57:18 +01002728 (info->port.close_delay));
Jiri Slaby02f11752006-12-08 02:39:28 -08002729 }
Alan Cox77451e52008-07-16 21:57:02 +01002730 wake_up_interruptible(&info->port.open_wait);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002731 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002732 }
Alan Cox77451e52008-07-16 21:57:02 +01002733 info->port.flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
2734 wake_up_interruptible(&info->port.close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
2736#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07002737 printk(KERN_DEBUG "cyc:cy_close done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738#endif
2739
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002740 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002741} /* cy_close */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743/* This routine gets called when tty_write has put something into
2744 * the write_queue. The characters may come from user space or
2745 * kernel space.
2746 *
2747 * This routine will return the number of characters actually
2748 * accepted for writing.
2749 *
2750 * If the port is not already transmitting stuff, start it off by
2751 * enabling interrupts. The interrupt service routine will then
2752 * ensure that the characters are sent.
2753 * If the port is already active, there is no need to kick it.
2754 *
2755 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002756static int cy_write(struct tty_struct *tty, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002758 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002759 unsigned long flags;
2760 int c, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002763 printk(KERN_DEBUG "cyc:cy_write ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764#endif
2765
Alan Cox15ed6cc2008-04-30 00:53:55 -07002766 if (serial_paranoia_check(info, tty->name, "cy_write"))
Jiri Slaby02f11752006-12-08 02:39:28 -08002767 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Alan Cox77451e52008-07-16 21:57:02 +01002769 if (!info->port.xmit_buf)
Jiri Slaby02f11752006-12-08 02:39:28 -08002770 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002772 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08002773 while (1) {
Harvey Harrison1a4e2352008-04-30 00:53:52 -07002774 c = min(count, (int)(SERIAL_XMIT_SIZE - info->xmit_cnt - 1));
2775 c = min(c, (int)(SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
Jiri Slaby02f11752006-12-08 02:39:28 -08002777 if (c <= 0)
2778 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Alan Cox77451e52008-07-16 21:57:02 +01002780 memcpy(info->port.xmit_buf + info->xmit_head, buf, c);
Jiri Slaby02f11752006-12-08 02:39:28 -08002781 info->xmit_head = (info->xmit_head + c) &
2782 (SERIAL_XMIT_SIZE - 1);
2783 info->xmit_cnt += c;
2784 buf += c;
2785 count -= c;
2786 ret += c;
2787 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002788 spin_unlock_irqrestore(&info->card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Jiri Slaby02f11752006-12-08 02:39:28 -08002790 info->idle_stats.xmit_bytes += ret;
2791 info->idle_stats.xmit_idle = jiffies;
2792
Alan Cox15ed6cc2008-04-30 00:53:55 -07002793 if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped)
Jiri Slaby02f11752006-12-08 02:39:28 -08002794 start_xmit(info);
Alan Cox15ed6cc2008-04-30 00:53:55 -07002795
Jiri Slaby02f11752006-12-08 02:39:28 -08002796 return ret;
2797} /* cy_write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
2799/*
2800 * This routine is called by the kernel to write a single
2801 * character to the tty device. If the kernel uses this routine,
2802 * it must call the flush_chars() routine (if defined) when it is
2803 * done stuffing characters into the driver. If there is no room
2804 * in the queue, the character is ignored.
2805 */
Alan Cox76b25a52008-04-30 00:54:03 -07002806static int cy_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002808 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002809 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
2811#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002812 printk(KERN_DEBUG "cyc:cy_put_char ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813#endif
2814
Jiri Slaby02f11752006-12-08 02:39:28 -08002815 if (serial_paranoia_check(info, tty->name, "cy_put_char"))
Alan Cox76b25a52008-04-30 00:54:03 -07002816 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
Alan Cox77451e52008-07-16 21:57:02 +01002818 if (!info->port.xmit_buf)
Alan Cox76b25a52008-04-30 00:54:03 -07002819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002821 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby90cc3012006-12-08 02:39:31 -08002822 if (info->xmit_cnt >= (int)(SERIAL_XMIT_SIZE - 1)) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002823 spin_unlock_irqrestore(&info->card->card_lock, flags);
Alan Cox76b25a52008-04-30 00:54:03 -07002824 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08002825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
Alan Cox77451e52008-07-16 21:57:02 +01002827 info->port.xmit_buf[info->xmit_head++] = ch;
Jiri Slaby02f11752006-12-08 02:39:28 -08002828 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
2829 info->xmit_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 info->idle_stats.xmit_bytes++;
2831 info->idle_stats.xmit_idle = jiffies;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07002832 spin_unlock_irqrestore(&info->card->card_lock, flags);
Alan Cox76b25a52008-04-30 00:54:03 -07002833 return 1;
Jiri Slaby02f11752006-12-08 02:39:28 -08002834} /* cy_put_char */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836/*
2837 * This routine is called by the kernel after it has written a
Alan Cox15ed6cc2008-04-30 00:53:55 -07002838 * series of characters to the tty device using put_char().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002840static void cy_flush_chars(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002842 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002845 printk(KERN_DEBUG "cyc:cy_flush_chars ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846#endif
2847
Jiri Slaby02f11752006-12-08 02:39:28 -08002848 if (serial_paranoia_check(info, tty->name, "cy_flush_chars"))
2849 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
Jiri Slaby02f11752006-12-08 02:39:28 -08002851 if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
Alan Cox77451e52008-07-16 21:57:02 +01002852 !info->port.xmit_buf)
Jiri Slaby02f11752006-12-08 02:39:28 -08002853 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Jiri Slaby02f11752006-12-08 02:39:28 -08002855 start_xmit(info);
2856} /* cy_flush_chars */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
2858/*
2859 * This routine returns the numbers of characters the tty driver
2860 * will accept for queuing to be written. This number is subject
2861 * to change as output buffers get emptied, or if the output flow
2862 * control is activated.
2863 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002864static int cy_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002866 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08002867 int ret;
2868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002870 printk(KERN_DEBUG "cyc:cy_write_room ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871#endif
2872
Jiri Slaby02f11752006-12-08 02:39:28 -08002873 if (serial_paranoia_check(info, tty->name, "cy_write_room"))
2874 return 0;
2875 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
2876 if (ret < 0)
2877 ret = 0;
2878 return ret;
2879} /* cy_write_room */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Jiri Slaby02f11752006-12-08 02:39:28 -08002881static int cy_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882{
Jiri Slaby875b2062007-05-08 00:36:49 -07002883 struct cyclades_card *card;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07002884 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07002885 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Jiri Slaby02f11752006-12-08 02:39:28 -08002887 if (serial_paranoia_check(info, tty->name, "cy_chars_in_buffer"))
2888 return 0;
2889
2890 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07002891 channel = (info->line) - (card->first_line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893#ifdef Z_EXT_CHARS_IN_BUFFER
Jiri Slaby02f11752006-12-08 02:39:28 -08002894 if (!IS_CYC_Z(cy_card[card])) {
2895#endif /* Z_EXT_CHARS_IN_BUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002897 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
2898 info->line, info->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08002900 return info->xmit_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901#ifdef Z_EXT_CHARS_IN_BUFFER
Jiri Slaby02f11752006-12-08 02:39:28 -08002902 } else {
Jiri Slabyad39c302007-05-08 00:35:49 -07002903 static struct FIRM_ID *firm_id;
2904 static struct ZFW_CTRL *zfw_ctrl;
2905 static struct CH_CTRL *ch_ctrl;
2906 static struct BUF_CTRL *buf_ctrl;
Jiri Slaby02f11752006-12-08 02:39:28 -08002907 int char_count;
Jiri Slabyad39c302007-05-08 00:35:49 -07002908 __u32 tx_put, tx_get, tx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Alan Cox978e5952008-04-30 00:53:59 -07002910 lock_kernel();
Jiri Slaby875b2062007-05-08 00:36:49 -07002911 firm_id = card->base_addr + ID_ADDRESS;
2912 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002913 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08002914 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
2915 buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Jiri Slabydb05c3b2007-05-08 00:35:46 -07002917 tx_get = readl(&buf_ctrl->tx_get);
2918 tx_put = readl(&buf_ctrl->tx_put);
2919 tx_bufsize = readl(&buf_ctrl->tx_bufsize);
Jiri Slaby02f11752006-12-08 02:39:28 -08002920 if (tx_put >= tx_get)
2921 char_count = tx_put - tx_get;
2922 else
2923 char_count = tx_put - tx_get + tx_bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924#ifdef CY_DEBUG_IO
Jiri Slaby21719192007-05-08 00:36:42 -07002925 printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n",
2926 info->line, info->xmit_cnt + char_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927#endif
Alan Cox978e5952008-04-30 00:53:59 -07002928 unlock_kernel();
Jiri Slaby096dcfc2006-12-08 02:39:30 -08002929 return info->xmit_cnt + char_count;
Jiri Slaby02f11752006-12-08 02:39:28 -08002930 }
2931#endif /* Z_EXT_CHARS_IN_BUFFER */
2932} /* cy_chars_in_buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
2934/*
2935 * ------------------------------------------------------------
2936 * cy_ioctl() and friends
2937 * ------------------------------------------------------------
2938 */
2939
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07002940static void cyy_baud_calc(struct cyclades_port *info, __u32 baud)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941{
Jiri Slaby02f11752006-12-08 02:39:28 -08002942 int co, co_val, bpr;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07002943 __u32 cy_clock = ((info->chip_rev >= CD1400_REV_J) ? 60000000 :
Jiri Slaby02f11752006-12-08 02:39:28 -08002944 25000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
Jiri Slaby02f11752006-12-08 02:39:28 -08002946 if (baud == 0) {
2947 info->tbpr = info->tco = info->rbpr = info->rco = 0;
2948 return;
2949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Jiri Slaby02f11752006-12-08 02:39:28 -08002951 /* determine which prescaler to use */
2952 for (co = 4, co_val = 2048; co; co--, co_val >>= 2) {
2953 if (cy_clock / co_val / baud > 63)
2954 break;
2955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
Jiri Slaby02f11752006-12-08 02:39:28 -08002957 bpr = (cy_clock / co_val * 2 / baud + 1) / 2;
2958 if (bpr > 255)
2959 bpr = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Jiri Slaby02f11752006-12-08 02:39:28 -08002961 info->tbpr = info->rbpr = bpr;
2962 info->tco = info->rco = co;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963}
2964
2965/*
2966 * This routine finds or computes the various line characteristics.
2967 * It used to be called config_setup
2968 */
Jiri Slaby02f11752006-12-08 02:39:28 -08002969static void set_line_char(struct cyclades_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970{
Jiri Slaby875b2062007-05-08 00:36:49 -07002971 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08002972 unsigned long flags;
2973 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07002974 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08002975 unsigned cflag, iflag;
2976 unsigned short chip_number;
2977 int baud, baud_rate = 0;
2978 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Alan Cox77451e52008-07-16 21:57:02 +01002980 if (!info->port.tty || !info->port.tty->termios)
Jiri Slaby02f11752006-12-08 02:39:28 -08002981 return;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002982
2983 if (info->line == -1)
Jiri Slaby02f11752006-12-08 02:39:28 -08002984 return;
Alan Cox15ed6cc2008-04-30 00:53:55 -07002985
Alan Cox77451e52008-07-16 21:57:02 +01002986 cflag = info->port.tty->termios->c_cflag;
2987 iflag = info->port.tty->termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Jiri Slaby02f11752006-12-08 02:39:28 -08002989 /*
2990 * Set up the tty->alt_speed kludge
2991 */
Alan Cox77451e52008-07-16 21:57:02 +01002992 if (info->port.tty) {
2993 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
2994 info->port.tty->alt_speed = 57600;
2995 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
2996 info->port.tty->alt_speed = 115200;
2997 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
2998 info->port.tty->alt_speed = 230400;
2999 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
3000 info->port.tty->alt_speed = 460800;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Jiri Slaby02f11752006-12-08 02:39:28 -08003003 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003004 channel = info->line - card->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08003005 chip_number = channel / 4;
3006
Jiri Slaby875b2062007-05-08 00:36:49 -07003007 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003008
Jiri Slaby875b2062007-05-08 00:36:49 -07003009 index = card->bus_index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003010
3011 /* baud rate */
Alan Cox77451e52008-07-16 21:57:02 +01003012 baud = tty_get_baud_rate(info->port.tty);
3013 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08003014 ASYNC_SPD_CUST) {
3015 if (info->custom_divisor)
3016 baud_rate = info->baud / info->custom_divisor;
3017 else
3018 baud_rate = info->baud;
3019 } else if (baud > CD1400_MAX_SPEED) {
3020 baud = CD1400_MAX_SPEED;
3021 }
3022 /* find the baud index */
3023 for (i = 0; i < 20; i++) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07003024 if (baud == baud_table[i])
Jiri Slaby02f11752006-12-08 02:39:28 -08003025 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08003026 }
Alan Cox15ed6cc2008-04-30 00:53:55 -07003027 if (i == 20)
Jiri Slaby02f11752006-12-08 02:39:28 -08003028 i = 19; /* CD1400_MAX_SPEED */
Jiri Slaby02f11752006-12-08 02:39:28 -08003029
Alan Cox77451e52008-07-16 21:57:02 +01003030 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08003031 ASYNC_SPD_CUST) {
3032 cyy_baud_calc(info, baud_rate);
3033 } else {
3034 if (info->chip_rev >= CD1400_REV_J) {
3035 /* It is a CD1400 rev. J or later */
3036 info->tbpr = baud_bpr_60[i]; /* Tx BPR */
3037 info->tco = baud_co_60[i]; /* Tx CO */
3038 info->rbpr = baud_bpr_60[i]; /* Rx BPR */
3039 info->rco = baud_co_60[i]; /* Rx CO */
3040 } else {
3041 info->tbpr = baud_bpr_25[i]; /* Tx BPR */
3042 info->tco = baud_co_25[i]; /* Tx CO */
3043 info->rbpr = baud_bpr_25[i]; /* Rx BPR */
3044 info->rco = baud_co_25[i]; /* Rx CO */
3045 }
3046 }
3047 if (baud_table[i] == 134) {
3048 /* get it right for 134.5 baud */
3049 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
3050 2;
Alan Cox77451e52008-07-16 21:57:02 +01003051 } else if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08003052 ASYNC_SPD_CUST) {
3053 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3054 baud_rate) + 2;
3055 } else if (baud_table[i]) {
3056 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3057 baud_table[i]) + 2;
3058 /* this needs to be propagated into the card info */
3059 } else {
3060 info->timeout = 0;
3061 }
3062 /* By tradition (is it a standard?) a baud rate of zero
3063 implies the line should be/has been closed. A bit
3064 later in this routine such a test is performed. */
3065
3066 /* byte size and parity */
3067 info->cor5 = 0;
3068 info->cor4 = 0;
3069 /* receive threshold */
3070 info->cor3 = (info->default_threshold ?
3071 info->default_threshold : baud_cor3[i]);
3072 info->cor2 = CyETC;
3073 switch (cflag & CSIZE) {
3074 case CS5:
3075 info->cor1 = Cy_5_BITS;
3076 break;
3077 case CS6:
3078 info->cor1 = Cy_6_BITS;
3079 break;
3080 case CS7:
3081 info->cor1 = Cy_7_BITS;
3082 break;
3083 case CS8:
3084 info->cor1 = Cy_8_BITS;
3085 break;
3086 }
Alan Cox15ed6cc2008-04-30 00:53:55 -07003087 if (cflag & CSTOPB)
Jiri Slaby02f11752006-12-08 02:39:28 -08003088 info->cor1 |= Cy_2_STOP;
Alan Cox15ed6cc2008-04-30 00:53:55 -07003089
Jiri Slaby02f11752006-12-08 02:39:28 -08003090 if (cflag & PARENB) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07003091 if (cflag & PARODD)
Jiri Slaby02f11752006-12-08 02:39:28 -08003092 info->cor1 |= CyPARITY_O;
Alan Cox15ed6cc2008-04-30 00:53:55 -07003093 else
Jiri Slaby02f11752006-12-08 02:39:28 -08003094 info->cor1 |= CyPARITY_E;
Alan Cox15ed6cc2008-04-30 00:53:55 -07003095 } else
Jiri Slaby02f11752006-12-08 02:39:28 -08003096 info->cor1 |= CyPARITY_NONE;
Jiri Slaby02f11752006-12-08 02:39:28 -08003097
3098 /* CTS flow control flag */
3099 if (cflag & CRTSCTS) {
Alan Cox77451e52008-07-16 21:57:02 +01003100 info->port.flags |= ASYNC_CTS_FLOW;
Jiri Slaby02f11752006-12-08 02:39:28 -08003101 info->cor2 |= CyCtsAE;
3102 } else {
Alan Cox77451e52008-07-16 21:57:02 +01003103 info->port.flags &= ~ASYNC_CTS_FLOW;
Jiri Slaby02f11752006-12-08 02:39:28 -08003104 info->cor2 &= ~CyCtsAE;
3105 }
3106 if (cflag & CLOCAL)
Alan Cox77451e52008-07-16 21:57:02 +01003107 info->port.flags &= ~ASYNC_CHECK_CD;
Jiri Slaby02f11752006-12-08 02:39:28 -08003108 else
Alan Cox77451e52008-07-16 21:57:02 +01003109 info->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
3111 /***********************************************
3112 The hardware option, CyRtsAO, presents RTS when
3113 the chip has characters to send. Since most modems
3114 use RTS as reverse (inbound) flow control, this
3115 option is not used. If inbound flow control is
3116 necessary, DTR can be programmed to provide the
3117 appropriate signals for use with a non-standard
3118 cable. Contact Marcio Saito for details.
3119 ***********************************************/
3120
Jiri Slaby02f11752006-12-08 02:39:28 -08003121 chip = channel >> 2;
3122 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003123 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003125 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003126 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
Jiri Slaby02f11752006-12-08 02:39:28 -08003128 /* tx and rx baud rate */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129
Jiri Slaby02f11752006-12-08 02:39:28 -08003130 cy_writeb(base_addr + (CyTCOR << index), info->tco);
3131 cy_writeb(base_addr + (CyTBPR << index), info->tbpr);
3132 cy_writeb(base_addr + (CyRCOR << index), info->rco);
3133 cy_writeb(base_addr + (CyRBPR << index), info->rbpr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
Jiri Slaby02f11752006-12-08 02:39:28 -08003135 /* set line characteristics according configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
Jiri Slaby02f11752006-12-08 02:39:28 -08003137 cy_writeb(base_addr + (CySCHR1 << index),
Alan Cox77451e52008-07-16 21:57:02 +01003138 START_CHAR(info->port.tty));
3139 cy_writeb(base_addr + (CySCHR2 << index), STOP_CHAR(info->port.tty));
Jiri Slaby02f11752006-12-08 02:39:28 -08003140 cy_writeb(base_addr + (CyCOR1 << index), info->cor1);
3141 cy_writeb(base_addr + (CyCOR2 << index), info->cor2);
3142 cy_writeb(base_addr + (CyCOR3 << index), info->cor3);
3143 cy_writeb(base_addr + (CyCOR4 << index), info->cor4);
3144 cy_writeb(base_addr + (CyCOR5 << index), info->cor5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Jiri Slaby02f11752006-12-08 02:39:28 -08003146 cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR1ch | CyCOR2ch |
3147 CyCOR3ch, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Alan Cox15ed6cc2008-04-30 00:53:55 -07003149 /* !!! Is this needed? */
3150 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Jiri Slaby02f11752006-12-08 02:39:28 -08003151 cy_writeb(base_addr + (CyRTPR << index),
3152 (info->default_timeout ? info->default_timeout : 0x02));
3153 /* 10ms rx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Alan Cox77451e52008-07-16 21:57:02 +01003155 if (C_CLOCAL(info->port.tty)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003156 /* without modem intr */
3157 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003158 readb(base_addr + (CySRER << index)) | CyMdmCh);
Jiri Slaby02f11752006-12-08 02:39:28 -08003159 /* act on 1->0 modem transitions */
3160 if ((cflag & CRTSCTS) && info->rflow) {
3161 cy_writeb(base_addr + (CyMCOR1 << index),
3162 (CyCTS | rflow_thr[i]));
3163 } else {
3164 cy_writeb(base_addr + (CyMCOR1 << index),
3165 CyCTS);
3166 }
3167 /* act on 0->1 modem transitions */
3168 cy_writeb(base_addr + (CyMCOR2 << index), CyCTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08003170 /* without modem intr */
3171 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003172 readb(base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08003173 (CySRER << index)) | CyMdmCh);
3174 /* act on 1->0 modem transitions */
3175 if ((cflag & CRTSCTS) && info->rflow) {
3176 cy_writeb(base_addr + (CyMCOR1 << index),
3177 (CyDSR | CyCTS | CyRI | CyDCD |
3178 rflow_thr[i]));
3179 } else {
3180 cy_writeb(base_addr + (CyMCOR1 << index),
3181 CyDSR | CyCTS | CyRI | CyDCD);
3182 }
3183 /* act on 0->1 modem transitions */
3184 cy_writeb(base_addr + (CyMCOR2 << index),
3185 CyDSR | CyCTS | CyRI | CyDCD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003187
3188 if (i == 0) { /* baud rate is zero, turn off line */
3189 if (info->rtsdtr_inv) {
3190 cy_writeb(base_addr + (CyMSVR1 << index),
3191 ~CyRTS);
3192 } else {
3193 cy_writeb(base_addr + (CyMSVR2 << index),
3194 ~CyDTR);
3195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003197 printk(KERN_DEBUG "cyc:set_line_char dropping DTR\n");
3198 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003199 readb(base_addr + (CyMSVR1 << index)),
3200 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003202 } else {
3203 if (info->rtsdtr_inv) {
3204 cy_writeb(base_addr + (CyMSVR1 << index),
3205 CyRTS);
3206 } else {
3207 cy_writeb(base_addr + (CyMSVR2 << index),
3208 CyDTR);
3209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003211 printk(KERN_DEBUG "cyc:set_line_char raising DTR\n");
3212 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003213 readb(base_addr + (CyMSVR1 << index)),
3214 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
Alan Cox77451e52008-07-16 21:57:02 +01003218 if (info->port.tty)
3219 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003220 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08003223 struct FIRM_ID __iomem *firm_id;
3224 struct ZFW_CTRL __iomem *zfw_ctrl;
3225 struct BOARD_CTRL __iomem *board_ctrl;
3226 struct CH_CTRL __iomem *ch_ctrl;
3227 struct BUF_CTRL __iomem *buf_ctrl;
Klaus Kudielka1a86b5e2007-05-08 00:26:26 -07003228 __u32 sw_flow;
Jiri Slaby02f11752006-12-08 02:39:28 -08003229 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
Jiri Slaby875b2062007-05-08 00:36:49 -07003231 firm_id = card->base_addr + ID_ADDRESS;
Alan Cox15ed6cc2008-04-30 00:53:55 -07003232 if (!ISZLOADED(*card))
Jiri Slaby02f11752006-12-08 02:39:28 -08003233 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
Jiri Slaby875b2062007-05-08 00:36:49 -07003235 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003236 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003237 board_ctrl = &zfw_ctrl->board_ctrl;
3238 ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]);
3239 buf_ctrl = &zfw_ctrl->buf_ctrl[channel];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
Jiri Slaby02f11752006-12-08 02:39:28 -08003241 /* baud rate */
Alan Cox77451e52008-07-16 21:57:02 +01003242 baud = tty_get_baud_rate(info->port.tty);
3243 if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08003244 ASYNC_SPD_CUST) {
3245 if (info->custom_divisor)
3246 baud_rate = info->baud / info->custom_divisor;
3247 else
3248 baud_rate = info->baud;
3249 } else if (baud > CYZ_MAX_SPEED) {
3250 baud = CYZ_MAX_SPEED;
3251 }
3252 cy_writel(&ch_ctrl->comm_baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Jiri Slaby02f11752006-12-08 02:39:28 -08003254 if (baud == 134) {
3255 /* get it right for 134.5 baud */
3256 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
3257 2;
Alan Cox77451e52008-07-16 21:57:02 +01003258 } else if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) ==
Jiri Slaby02f11752006-12-08 02:39:28 -08003259 ASYNC_SPD_CUST) {
3260 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3261 baud_rate) + 2;
3262 } else if (baud) {
3263 info->timeout = (info->xmit_fifo_size * HZ * 15 /
3264 baud) + 2;
3265 /* this needs to be propagated into the card info */
3266 } else {
3267 info->timeout = 0;
3268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269
Jiri Slaby02f11752006-12-08 02:39:28 -08003270 /* byte size and parity */
3271 switch (cflag & CSIZE) {
3272 case CS5:
3273 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS5);
3274 break;
3275 case CS6:
3276 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS6);
3277 break;
3278 case CS7:
3279 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS7);
3280 break;
3281 case CS8:
3282 cy_writel(&ch_ctrl->comm_data_l, C_DL_CS8);
3283 break;
3284 }
3285 if (cflag & CSTOPB) {
3286 cy_writel(&ch_ctrl->comm_data_l,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003287 readl(&ch_ctrl->comm_data_l) | C_DL_2STOP);
Jiri Slaby02f11752006-12-08 02:39:28 -08003288 } else {
3289 cy_writel(&ch_ctrl->comm_data_l,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003290 readl(&ch_ctrl->comm_data_l) | C_DL_1STOP);
Jiri Slaby02f11752006-12-08 02:39:28 -08003291 }
3292 if (cflag & PARENB) {
Alan Cox15ed6cc2008-04-30 00:53:55 -07003293 if (cflag & PARODD)
Jiri Slaby02f11752006-12-08 02:39:28 -08003294 cy_writel(&ch_ctrl->comm_parity, C_PR_ODD);
Alan Cox15ed6cc2008-04-30 00:53:55 -07003295 else
Jiri Slaby02f11752006-12-08 02:39:28 -08003296 cy_writel(&ch_ctrl->comm_parity, C_PR_EVEN);
Alan Cox15ed6cc2008-04-30 00:53:55 -07003297 } else
Jiri Slaby02f11752006-12-08 02:39:28 -08003298 cy_writel(&ch_ctrl->comm_parity, C_PR_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Jiri Slaby02f11752006-12-08 02:39:28 -08003300 /* CTS flow control flag */
3301 if (cflag & CRTSCTS) {
3302 cy_writel(&ch_ctrl->hw_flow,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003303 readl(&ch_ctrl->hw_flow) | C_RS_CTS | C_RS_RTS);
Jiri Slaby02f11752006-12-08 02:39:28 -08003304 } else {
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003305 cy_writel(&ch_ctrl->hw_flow, readl(&ch_ctrl->hw_flow) &
3306 ~(C_RS_CTS | C_RS_RTS));
Jiri Slaby02f11752006-12-08 02:39:28 -08003307 }
3308 /* As the HW flow control is done in firmware, the driver
3309 doesn't need to care about it */
Alan Cox77451e52008-07-16 21:57:02 +01003310 info->port.flags &= ~ASYNC_CTS_FLOW;
Jiri Slaby02f11752006-12-08 02:39:28 -08003311
3312 /* XON/XOFF/XANY flow control flags */
3313 sw_flow = 0;
3314 if (iflag & IXON) {
3315 sw_flow |= C_FL_OXX;
3316 if (iflag & IXANY)
3317 sw_flow |= C_FL_OIXANY;
3318 }
3319 cy_writel(&ch_ctrl->sw_flow, sw_flow);
3320
Jiri Slaby875b2062007-05-08 00:36:49 -07003321 retval = cyz_issue_cmd(card, channel, C_CM_IOCTL, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003322 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003323 printk(KERN_ERR "cyc:set_line_char retval on ttyC%d "
3324 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003325 }
3326
3327 /* CD sensitivity */
Alan Cox15ed6cc2008-04-30 00:53:55 -07003328 if (cflag & CLOCAL)
Alan Cox77451e52008-07-16 21:57:02 +01003329 info->port.flags &= ~ASYNC_CHECK_CD;
Alan Cox15ed6cc2008-04-30 00:53:55 -07003330 else
Alan Cox77451e52008-07-16 21:57:02 +01003331 info->port.flags |= ASYNC_CHECK_CD;
Jiri Slaby02f11752006-12-08 02:39:28 -08003332
3333 if (baud == 0) { /* baud rate is zero, turn off line */
3334 cy_writel(&ch_ctrl->rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003335 readl(&ch_ctrl->rs_control) & ~C_RS_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003337 printk(KERN_DEBUG "cyc:set_line_char dropping Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003339 } else {
3340 cy_writel(&ch_ctrl->rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003341 readl(&ch_ctrl->rs_control) | C_RS_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003343 printk(KERN_DEBUG "cyc:set_line_char raising Z DTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08003345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Alan Cox15ed6cc2008-04-30 00:53:55 -07003347 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003348 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003349 printk(KERN_ERR "cyc:set_line_char(2) retval on ttyC%d "
3350 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352
Alan Cox77451e52008-07-16 21:57:02 +01003353 if (info->port.tty)
3354 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003356} /* set_line_char */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
3358static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003359get_serial_info(struct cyclades_port *info,
Alan Cox15ed6cc2008-04-30 00:53:55 -07003360 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361{
Jiri Slaby02f11752006-12-08 02:39:28 -08003362 struct serial_struct tmp;
Jiri Slaby875b2062007-05-08 00:36:49 -07003363 struct cyclades_card *cinfo = info->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Jiri Slaby02f11752006-12-08 02:39:28 -08003365 if (!retinfo)
3366 return -EFAULT;
3367 memset(&tmp, 0, sizeof(tmp));
3368 tmp.type = info->type;
3369 tmp.line = info->line;
Jiri Slaby875b2062007-05-08 00:36:49 -07003370 tmp.port = (info->card - cy_card) * 0x100 + info->line -
3371 cinfo->first_line;
Jiri Slaby02f11752006-12-08 02:39:28 -08003372 tmp.irq = cinfo->irq;
Alan Cox77451e52008-07-16 21:57:02 +01003373 tmp.flags = info->port.flags;
Alan Cox44b7d1b2008-07-16 21:57:18 +01003374 tmp.close_delay = info->port.close_delay;
3375 tmp.closing_wait = info->port.closing_wait;
Jiri Slaby02f11752006-12-08 02:39:28 -08003376 tmp.baud_base = info->baud;
3377 tmp.custom_divisor = info->custom_divisor;
3378 tmp.hub6 = 0; /*!!! */
3379 return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
3380} /* get_serial_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
3382static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003383set_serial_info(struct cyclades_port *info,
Alan Cox15ed6cc2008-04-30 00:53:55 -07003384 struct serial_struct __user *new_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385{
Jiri Slaby02f11752006-12-08 02:39:28 -08003386 struct serial_struct new_serial;
3387 struct cyclades_port old_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
Jiri Slaby02f11752006-12-08 02:39:28 -08003389 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
3390 return -EFAULT;
3391 old_info = *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
Jiri Slaby02f11752006-12-08 02:39:28 -08003393 if (!capable(CAP_SYS_ADMIN)) {
Alan Cox44b7d1b2008-07-16 21:57:18 +01003394 if (new_serial.close_delay != info->port.close_delay ||
Jiri Slaby02f11752006-12-08 02:39:28 -08003395 new_serial.baud_base != info->baud ||
3396 (new_serial.flags & ASYNC_FLAGS &
3397 ~ASYNC_USR_MASK) !=
Alan Cox77451e52008-07-16 21:57:02 +01003398 (info->port.flags & ASYNC_FLAGS & ~ASYNC_USR_MASK))
Jiri Slaby02f11752006-12-08 02:39:28 -08003399 return -EPERM;
Alan Cox77451e52008-07-16 21:57:02 +01003400 info->port.flags = (info->port.flags & ~ASYNC_USR_MASK) |
Jiri Slaby02f11752006-12-08 02:39:28 -08003401 (new_serial.flags & ASYNC_USR_MASK);
3402 info->baud = new_serial.baud_base;
3403 info->custom_divisor = new_serial.custom_divisor;
3404 goto check_and_exit;
3405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Jiri Slaby02f11752006-12-08 02:39:28 -08003407 /*
3408 * OK, past this point, all the error checking has been done.
3409 * At this point, we start making changes.....
3410 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
Jiri Slaby02f11752006-12-08 02:39:28 -08003412 info->baud = new_serial.baud_base;
3413 info->custom_divisor = new_serial.custom_divisor;
Alan Cox77451e52008-07-16 21:57:02 +01003414 info->port.flags = (info->port.flags & ~ASYNC_FLAGS) |
Jiri Slaby02f11752006-12-08 02:39:28 -08003415 (new_serial.flags & ASYNC_FLAGS);
Alan Cox44b7d1b2008-07-16 21:57:18 +01003416 info->port.close_delay = new_serial.close_delay * HZ / 100;
3417 info->port.closing_wait = new_serial.closing_wait * HZ / 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
3419check_and_exit:
Alan Cox77451e52008-07-16 21:57:02 +01003420 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003421 set_line_char(info);
3422 return 0;
3423 } else {
3424 return startup(info);
3425 }
3426} /* set_serial_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
3428/*
3429 * get_lsr_info - get line status register info
3430 *
3431 * Purpose: Let user call ioctl() to get info when the UART physically
3432 * is emptied. On bus types like RS485, the transmitter must
3433 * release the bus after transmitting. This must be done when
3434 * the transmit shift register is empty, not be done when the
3435 * transmit holding register is empty. This functionality
3436 * allows an RS485 driver to be written in user space.
3437 */
Alan Cox15ed6cc2008-04-30 00:53:55 -07003438static int get_lsr_info(struct cyclades_port *info, unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439{
Jiri Slaby875b2062007-05-08 00:36:49 -07003440 struct cyclades_card *card;
3441 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003442 unsigned char status;
3443 unsigned int result;
3444 unsigned long flags;
3445 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
Jiri Slaby02f11752006-12-08 02:39:28 -08003447 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003448 channel = (info->line) - (card->first_line);
3449 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003450 chip = channel >> 2;
3451 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003452 index = card->bus_index;
3453 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003455 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003456 status = readb(base_addr + (CySRER << index)) &
Jiri Slaby02f11752006-12-08 02:39:28 -08003457 (CyTxRdy | CyTxMpty);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003458 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003459 result = (status ? 0 : TIOCSER_TEMT);
3460 } else {
3461 /* Not supported yet */
3462 return -EINVAL;
3463 }
3464 return put_user(result, (unsigned long __user *)value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465}
3466
Jiri Slaby02f11752006-12-08 02:39:28 -08003467static int cy_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003469 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07003470 struct cyclades_card *card;
3471 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003472 void __iomem *base_addr;
3473 unsigned long flags;
3474 unsigned char status;
3475 unsigned long lstatus;
3476 unsigned int result;
3477 struct FIRM_ID __iomem *firm_id;
3478 struct ZFW_CTRL __iomem *zfw_ctrl;
3479 struct BOARD_CTRL __iomem *board_ctrl;
3480 struct CH_CTRL __iomem *ch_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Harvey Harrisonbf9d8922008-04-30 00:55:10 -07003482 if (serial_paranoia_check(info, tty->name, __func__))
Jiri Slaby02f11752006-12-08 02:39:28 -08003483 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
Alan Cox7b130c02008-04-30 00:53:16 -07003485 lock_kernel();
3486
Jiri Slaby02f11752006-12-08 02:39:28 -08003487 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003488 channel = info->line - card->first_line;
3489 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003490 chip = channel >> 2;
3491 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003492 index = card->bus_index;
3493 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003495 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003496 cy_writeb(base_addr + (CyCAR << index), (u_char) channel);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003497 status = readb(base_addr + (CyMSVR1 << index));
3498 status |= readb(base_addr + (CyMSVR2 << index));
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003499 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
Jiri Slaby02f11752006-12-08 02:39:28 -08003501 if (info->rtsdtr_inv) {
3502 result = ((status & CyRTS) ? TIOCM_DTR : 0) |
3503 ((status & CyDTR) ? TIOCM_RTS : 0);
3504 } else {
3505 result = ((status & CyRTS) ? TIOCM_RTS : 0) |
3506 ((status & CyDTR) ? TIOCM_DTR : 0);
3507 }
3508 result |= ((status & CyDCD) ? TIOCM_CAR : 0) |
3509 ((status & CyRI) ? TIOCM_RNG : 0) |
3510 ((status & CyDSR) ? TIOCM_DSR : 0) |
3511 ((status & CyCTS) ? TIOCM_CTS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 } else {
Jiri Slaby875b2062007-05-08 00:36:49 -07003513 base_addr = card->base_addr;
3514 firm_id = card->base_addr + ID_ADDRESS;
3515 if (ISZLOADED(*card)) {
3516 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003517 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003518 board_ctrl = &zfw_ctrl->board_ctrl;
3519 ch_ctrl = zfw_ctrl->ch_ctrl;
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003520 lstatus = readl(&ch_ctrl[channel].rs_status);
Jiri Slaby02f11752006-12-08 02:39:28 -08003521 result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) |
3522 ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) |
3523 ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) |
3524 ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) |
3525 ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) |
3526 ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0);
3527 } else {
3528 result = 0;
Alan Cox7b130c02008-04-30 00:53:16 -07003529 unlock_kernel();
Jiri Slaby02f11752006-12-08 02:39:28 -08003530 return -ENODEV;
3531 }
3532
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 }
Alan Cox7b130c02008-04-30 00:53:16 -07003534 unlock_kernel();
Jiri Slaby02f11752006-12-08 02:39:28 -08003535 return result;
3536} /* cy_tiomget */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
3538static int
3539cy_tiocmset(struct tty_struct *tty, struct file *file,
Jiri Slaby02f11752006-12-08 02:39:28 -08003540 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003542 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07003543 struct cyclades_card *card;
3544 int chip, channel, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003545 void __iomem *base_addr;
3546 unsigned long flags;
3547 struct FIRM_ID __iomem *firm_id;
3548 struct ZFW_CTRL __iomem *zfw_ctrl;
3549 struct BOARD_CTRL __iomem *board_ctrl;
3550 struct CH_CTRL __iomem *ch_ctrl;
3551 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
Harvey Harrisonbf9d8922008-04-30 00:55:10 -07003553 if (serial_paranoia_check(info, tty->name, __func__))
Jiri Slaby02f11752006-12-08 02:39:28 -08003554 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
Jiri Slaby02f11752006-12-08 02:39:28 -08003556 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003557 channel = (info->line) - (card->first_line);
3558 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003559 chip = channel >> 2;
3560 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003561 index = card->bus_index;
3562 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
Jiri Slaby02f11752006-12-08 02:39:28 -08003564 if (set & TIOCM_RTS) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003565 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003566 cy_writeb(base_addr + (CyCAR << index),
3567 (u_char) channel);
3568 if (info->rtsdtr_inv) {
3569 cy_writeb(base_addr + (CyMSVR2 << index),
3570 CyDTR);
3571 } else {
3572 cy_writeb(base_addr + (CyMSVR1 << index),
3573 CyRTS);
3574 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003575 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003576 }
3577 if (clear & TIOCM_RTS) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003578 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003579 cy_writeb(base_addr + (CyCAR << index),
3580 (u_char) channel);
3581 if (info->rtsdtr_inv) {
3582 cy_writeb(base_addr + (CyMSVR2 << index),
3583 ~CyDTR);
3584 } else {
3585 cy_writeb(base_addr + (CyMSVR1 << index),
3586 ~CyRTS);
3587 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003588 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003589 }
3590 if (set & TIOCM_DTR) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003591 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003592 cy_writeb(base_addr + (CyCAR << index),
3593 (u_char) channel);
3594 if (info->rtsdtr_inv) {
3595 cy_writeb(base_addr + (CyMSVR1 << index),
3596 CyRTS);
3597 } else {
3598 cy_writeb(base_addr + (CyMSVR2 << index),
3599 CyDTR);
3600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003602 printk(KERN_DEBUG "cyc:set_modem_info raising DTR\n");
3603 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003604 readb(base_addr + (CyMSVR1 << index)),
3605 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003607 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003608 }
3609 if (clear & TIOCM_DTR) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003610 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003611 cy_writeb(base_addr + (CyCAR << index),
3612 (u_char) channel);
3613 if (info->rtsdtr_inv) {
3614 cy_writeb(base_addr + (CyMSVR1 << index),
3615 ~CyRTS);
3616 } else {
3617 cy_writeb(base_addr + (CyMSVR2 << index),
3618 ~CyDTR);
3619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620
3621#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003622 printk(KERN_DEBUG "cyc:set_modem_info dropping DTR\n");
3623 printk(KERN_DEBUG " status: 0x%x, 0x%x\n",
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003624 readb(base_addr + (CyMSVR1 << index)),
3625 readb(base_addr + (CyMSVR2 << index)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003627 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003628 }
3629 } else {
Jiri Slaby875b2062007-05-08 00:36:49 -07003630 base_addr = card->base_addr;
Jiri Slaby02f11752006-12-08 02:39:28 -08003631
Jiri Slaby875b2062007-05-08 00:36:49 -07003632 firm_id = card->base_addr + ID_ADDRESS;
3633 if (ISZLOADED(*card)) {
3634 zfw_ctrl = card->base_addr +
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003635 (readl(&firm_id->zfwctrl_addr) & 0xfffff);
Jiri Slaby02f11752006-12-08 02:39:28 -08003636 board_ctrl = &zfw_ctrl->board_ctrl;
3637 ch_ctrl = zfw_ctrl->ch_ctrl;
3638
3639 if (set & TIOCM_RTS) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003640 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003641 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003642 readl(&ch_ctrl[channel].rs_control) |
3643 C_RS_RTS);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003644 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003645 }
3646 if (clear & TIOCM_RTS) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003647 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003648 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003649 readl(&ch_ctrl[channel].rs_control) &
3650 ~C_RS_RTS);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003651 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003652 }
3653 if (set & TIOCM_DTR) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003654 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003655 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003656 readl(&ch_ctrl[channel].rs_control) |
3657 C_RS_DTR);
Jiri Slaby02f11752006-12-08 02:39:28 -08003658#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003659 printk(KERN_DEBUG "cyc:set_modem_info raising "
3660 "Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08003661#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003662 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003663 }
3664 if (clear & TIOCM_DTR) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003665 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003666 cy_writel(&ch_ctrl[channel].rs_control,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003667 readl(&ch_ctrl[channel].rs_control) &
3668 ~C_RS_DTR);
Jiri Slaby02f11752006-12-08 02:39:28 -08003669#ifdef CY_DEBUG_DTR
Jiri Slaby21719192007-05-08 00:36:42 -07003670 printk(KERN_DEBUG "cyc:set_modem_info clearing "
3671 "Z DTR\n");
Jiri Slaby02f11752006-12-08 02:39:28 -08003672#endif
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003673 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003674 }
3675 } else {
3676 return -ENODEV;
3677 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003678 spin_lock_irqsave(&card->card_lock, flags);
3679 retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08003680 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003681 printk(KERN_ERR "cyc:set_modem_info retval on ttyC%d "
3682 "was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003683 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003684 spin_unlock_irqrestore(&card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 }
Jiri Slaby02f11752006-12-08 02:39:28 -08003686 return 0;
3687} /* cy_tiocmset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
3689/*
3690 * cy_break() --- routine which turns the break handling on or off
3691 */
Alan Cox9e989662008-07-22 11:18:03 +01003692static int cy_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003694 struct cyclades_port *info = tty->driver_data;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003695 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003696 unsigned long flags;
Alan Cox9e989662008-07-22 11:18:03 +01003697 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
Jiri Slaby02f11752006-12-08 02:39:28 -08003699 if (serial_paranoia_check(info, tty->name, "cy_break"))
Alan Cox9e989662008-07-22 11:18:03 +01003700 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003702 card = info->card;
3703
3704 spin_lock_irqsave(&card->card_lock, flags);
3705 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003706 /* Let the transmit ISR take care of this (since it
3707 requires stuffing characters into the output stream).
3708 */
3709 if (break_state == -1) {
3710 if (!info->breakon) {
3711 info->breakon = 1;
3712 if (!info->xmit_cnt) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003713 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003714 start_xmit(info);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003715 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003716 }
3717 }
3718 } else {
3719 if (!info->breakoff) {
3720 info->breakoff = 1;
3721 if (!info->xmit_cnt) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003722 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003723 start_xmit(info);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003724 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003725 }
3726 }
3727 }
3728 } else {
Jiri Slaby02f11752006-12-08 02:39:28 -08003729 if (break_state == -1) {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003730 retval = cyz_issue_cmd(card,
3731 info->line - card->first_line,
Jiri Slaby02f11752006-12-08 02:39:28 -08003732 C_CM_SET_BREAK, 0L);
3733 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003734 printk(KERN_ERR "cyc:cy_break (set) retval on "
3735 "ttyC%d was %x\n", info->line, retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003736 }
3737 } else {
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003738 retval = cyz_issue_cmd(card,
3739 info->line - card->first_line,
Jiri Slaby02f11752006-12-08 02:39:28 -08003740 C_CM_CLR_BREAK, 0L);
3741 if (retval != 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07003742 printk(KERN_DEBUG "cyc:cy_break (clr) retval "
3743 "on ttyC%d was %x\n", info->line,
3744 retval);
Jiri Slaby02f11752006-12-08 02:39:28 -08003745 }
3746 }
3747 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003748 spin_unlock_irqrestore(&card->card_lock, flags);
Alan Cox9e989662008-07-22 11:18:03 +01003749 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08003750} /* cy_break */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
Alan Cox15ed6cc2008-04-30 00:53:55 -07003752static int get_mon_info(struct cyclades_port *info,
3753 struct cyclades_monitor __user *mon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
Jiri Slaby02f11752006-12-08 02:39:28 -08003756 if (copy_to_user(mon, &info->mon, sizeof(struct cyclades_monitor)))
3757 return -EFAULT;
3758 info->mon.int_count = 0;
3759 info->mon.char_count = 0;
3760 info->mon.char_max = 0;
3761 info->mon.char_last = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003763} /* get_mon_info */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
Jiri Slaby02f11752006-12-08 02:39:28 -08003765static int set_threshold(struct cyclades_port *info, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766{
Jiri Slaby875b2062007-05-08 00:36:49 -07003767 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003768 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003769 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003770 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Jiri Slaby02f11752006-12-08 02:39:28 -08003772 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003773 channel = info->line - card->first_line;
3774 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003775 chip = channel >> 2;
3776 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003777 index = card->bus_index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003778 base_addr =
Jiri Slaby875b2062007-05-08 00:36:49 -07003779 card->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
Jiri Slaby02f11752006-12-08 02:39:28 -08003781 info->cor3 &= ~CyREC_FIFO;
3782 info->cor3 |= value & CyREC_FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003784 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003785 cy_writeb(base_addr + (CyCOR3 << index), info->cor3);
3786 cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR3ch, index);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003787 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003790} /* set_threshold */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Alan Cox15ed6cc2008-04-30 00:53:55 -07003792static int get_threshold(struct cyclades_port *info,
3793 unsigned long __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794{
Jiri Slaby875b2062007-05-08 00:36:49 -07003795 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003796 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003797 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003798 unsigned long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
Jiri Slaby02f11752006-12-08 02:39:28 -08003800 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003801 channel = info->line - card->first_line;
3802 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003803 chip = channel >> 2;
3804 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003805 index = card->bus_index;
3806 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003807
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003808 tmp = readb(base_addr + (CyCOR3 << index)) & CyREC_FIFO;
Jiri Slaby02f11752006-12-08 02:39:28 -08003809 return put_user(tmp, value);
Jiri Slaby02f11752006-12-08 02:39:28 -08003810 }
Jiri Slabyf7429032007-05-08 00:36:59 -07003811 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003812} /* get_threshold */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Alan Cox15ed6cc2008-04-30 00:53:55 -07003814static int set_default_threshold(struct cyclades_port *info,
3815 unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816{
Jiri Slaby02f11752006-12-08 02:39:28 -08003817 info->default_threshold = value & 0x0f;
3818 return 0;
3819} /* set_default_threshold */
3820
Alan Cox15ed6cc2008-04-30 00:53:55 -07003821static int get_default_threshold(struct cyclades_port *info,
3822 unsigned long __user *value)
Jiri Slaby02f11752006-12-08 02:39:28 -08003823{
3824 return put_user(info->default_threshold, value);
3825} /* get_default_threshold */
3826
3827static int set_timeout(struct cyclades_port *info, unsigned long value)
3828{
Jiri Slaby875b2062007-05-08 00:36:49 -07003829 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003830 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003831 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003832 unsigned long flags;
3833
3834 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003835 channel = info->line - card->first_line;
3836 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003837 chip = channel >> 2;
3838 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003839 index = card->bus_index;
3840 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003841
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003842 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003843 cy_writeb(base_addr + (CyRTPR << index), value & 0xff);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003844 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003845 }
3846 return 0;
3847} /* set_timeout */
3848
Alan Cox15ed6cc2008-04-30 00:53:55 -07003849static int get_timeout(struct cyclades_port *info,
3850 unsigned long __user *value)
Jiri Slaby02f11752006-12-08 02:39:28 -08003851{
Jiri Slaby875b2062007-05-08 00:36:49 -07003852 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08003853 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07003854 int channel, chip, index;
Jiri Slaby02f11752006-12-08 02:39:28 -08003855 unsigned long tmp;
3856
3857 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07003858 channel = info->line - card->first_line;
3859 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08003860 chip = channel >> 2;
3861 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07003862 index = card->bus_index;
3863 base_addr = card->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08003864
Jiri Slabydb05c3b2007-05-08 00:35:46 -07003865 tmp = readb(base_addr + (CyRTPR << index));
Jiri Slaby02f11752006-12-08 02:39:28 -08003866 return put_user(tmp, value);
Jiri Slaby02f11752006-12-08 02:39:28 -08003867 }
Jiri Slabyf7429032007-05-08 00:36:59 -07003868 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08003869} /* get_timeout */
3870
3871static int set_default_timeout(struct cyclades_port *info, unsigned long value)
3872{
3873 info->default_timeout = value & 0xff;
3874 return 0;
3875} /* set_default_timeout */
3876
Alan Cox15ed6cc2008-04-30 00:53:55 -07003877static int get_default_timeout(struct cyclades_port *info,
3878 unsigned long __user *value)
Jiri Slaby02f11752006-12-08 02:39:28 -08003879{
3880 return put_user(info->default_timeout, value);
3881} /* get_default_timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
3883/*
3884 * This routine allows the tty driver to implement device-
3885 * specific ioctl's. If the ioctl number passed in cmd is
3886 * not recognized by the driver, it should return ENOIOCTLCMD.
3887 */
3888static int
Jiri Slaby02f11752006-12-08 02:39:28 -08003889cy_ioctl(struct tty_struct *tty, struct file *file,
3890 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07003892 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08003893 struct cyclades_icount cprev, cnow; /* kernel counter temps */
3894 struct serial_icounter_struct __user *p_cuser; /* user space */
3895 int ret_val = 0;
3896 unsigned long flags;
3897 void __user *argp = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Jiri Slaby02f11752006-12-08 02:39:28 -08003899 if (serial_paranoia_check(info, tty->name, "cy_ioctl"))
3900 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
3902#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07003903 printk(KERN_DEBUG "cyc:cy_ioctl ttyC%d, cmd = %x arg = %lx\n",
3904 info->line, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905#endif
Alan Cox7b130c02008-04-30 00:53:16 -07003906 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Jiri Slaby02f11752006-12-08 02:39:28 -08003908 switch (cmd) {
3909 case CYGETMON:
3910 ret_val = get_mon_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08003912 case CYGETTHRESH:
3913 ret_val = get_threshold(info, argp);
3914 break;
3915 case CYSETTHRESH:
3916 ret_val = set_threshold(info, arg);
3917 break;
3918 case CYGETDEFTHRESH:
3919 ret_val = get_default_threshold(info, argp);
3920 break;
3921 case CYSETDEFTHRESH:
3922 ret_val = set_default_threshold(info, arg);
3923 break;
3924 case CYGETTIMEOUT:
3925 ret_val = get_timeout(info, argp);
3926 break;
3927 case CYSETTIMEOUT:
3928 ret_val = set_timeout(info, arg);
3929 break;
3930 case CYGETDEFTIMEOUT:
3931 ret_val = get_default_timeout(info, argp);
3932 break;
3933 case CYSETDEFTIMEOUT:
3934 ret_val = set_default_timeout(info, arg);
3935 break;
3936 case CYSETRFLOW:
3937 info->rflow = (int)arg;
3938 ret_val = 0;
3939 break;
3940 case CYGETRFLOW:
3941 ret_val = info->rflow;
3942 break;
3943 case CYSETRTSDTR_INV:
3944 info->rtsdtr_inv = (int)arg;
3945 ret_val = 0;
3946 break;
3947 case CYGETRTSDTR_INV:
3948 ret_val = info->rtsdtr_inv;
3949 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 case CYGETCD1400VER:
Jiri Slaby02f11752006-12-08 02:39:28 -08003951 ret_val = info->chip_rev;
3952 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953#ifndef CONFIG_CYZ_INTR
3954 case CYZSETPOLLCYCLE:
Jiri Slaby02f11752006-12-08 02:39:28 -08003955 cyz_polling_cycle = (arg * HZ) / 1000;
3956 ret_val = 0;
3957 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 case CYZGETPOLLCYCLE:
Jiri Slaby02f11752006-12-08 02:39:28 -08003959 ret_val = (cyz_polling_cycle * 1000) / HZ;
3960 break;
3961#endif /* CONFIG_CYZ_INTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 case CYSETWAIT:
Alan Cox44b7d1b2008-07-16 21:57:18 +01003963 info->port.closing_wait = (unsigned short)arg * HZ / 100;
Jiri Slaby02f11752006-12-08 02:39:28 -08003964 ret_val = 0;
3965 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 case CYGETWAIT:
Alan Cox44b7d1b2008-07-16 21:57:18 +01003967 ret_val = info->port.closing_wait / (HZ / 100);
Jiri Slaby02f11752006-12-08 02:39:28 -08003968 break;
3969 case TIOCGSERIAL:
3970 ret_val = get_serial_info(info, argp);
3971 break;
3972 case TIOCSSERIAL:
3973 ret_val = set_serial_info(info, argp);
3974 break;
3975 case TIOCSERGETLSR: /* Get line status register */
3976 ret_val = get_lsr_info(info, argp);
3977 break;
3978 /*
3979 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
3980 * - mask passed in arg for lines of interest
3981 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
3982 * Caller should use TIOCGICOUNT to see which one it was
3983 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 case TIOCMIWAIT:
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003985 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003986 /* note the counters on entry */
Jiri Slaby2c7fea92007-05-08 00:36:51 -07003987 cnow = info->icount;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003988 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby2c7fea92007-05-08 00:36:51 -07003989 ret_val = wait_event_interruptible(info->delta_msr_wait, ({
3990 cprev = cnow;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003991 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08003992 cnow = info->icount; /* atomic copy */
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07003993 spin_unlock_irqrestore(&info->card->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
Jiri Slaby2c7fea92007-05-08 00:36:51 -07003995 ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
3996 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
3997 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
3998 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts));
3999 }));
4000 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004001
4002 /*
4003 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
4004 * Return: write counters to the user passed counter struct
4005 * NB: both 1->0 and 0->1 transitions are counted except for
4006 * RI where only 0->1 is counted.
4007 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 case TIOCGICOUNT:
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004009 spin_lock_irqsave(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004010 cnow = info->icount;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004011 spin_unlock_irqrestore(&info->card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004012 p_cuser = argp;
4013 ret_val = put_user(cnow.cts, &p_cuser->cts);
4014 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004015 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004016 ret_val = put_user(cnow.dsr, &p_cuser->dsr);
4017 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004018 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004019 ret_val = put_user(cnow.rng, &p_cuser->rng);
4020 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004021 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004022 ret_val = put_user(cnow.dcd, &p_cuser->dcd);
4023 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004024 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004025 ret_val = put_user(cnow.rx, &p_cuser->rx);
4026 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004027 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004028 ret_val = put_user(cnow.tx, &p_cuser->tx);
4029 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004030 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004031 ret_val = put_user(cnow.frame, &p_cuser->frame);
4032 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004033 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004034 ret_val = put_user(cnow.overrun, &p_cuser->overrun);
4035 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004036 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004037 ret_val = put_user(cnow.parity, &p_cuser->parity);
4038 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004039 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004040 ret_val = put_user(cnow.brk, &p_cuser->brk);
4041 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004042 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004043 ret_val = put_user(cnow.buf_overrun, &p_cuser->buf_overrun);
4044 if (ret_val)
Alan Cox7b130c02008-04-30 00:53:16 -07004045 break;
Jiri Slaby02f11752006-12-08 02:39:28 -08004046 ret_val = 0;
4047 break;
4048 default:
4049 ret_val = -ENOIOCTLCMD;
4050 }
Alan Cox7b130c02008-04-30 00:53:16 -07004051 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052
4053#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004054 printk(KERN_DEBUG "cyc:cy_ioctl done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004056 return ret_val;
4057} /* cy_ioctl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
4059/*
4060 * This routine allows the tty driver to be notified when
4061 * device's termios settings have changed. Note that a
4062 * well-designed tty driver should be prepared to accept the case
4063 * where old == NULL, and try to do something rational.
4064 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004065static void cy_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004067 struct cyclades_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068
4069#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004070 printk(KERN_DEBUG "cyc:cy_set_termios ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071#endif
4072
Jiri Slaby02f11752006-12-08 02:39:28 -08004073 set_line_char(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
Jiri Slaby02f11752006-12-08 02:39:28 -08004075 if ((old_termios->c_cflag & CRTSCTS) &&
4076 !(tty->termios->c_cflag & CRTSCTS)) {
4077 tty->hw_stopped = 0;
4078 cy_start(tty);
4079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080#if 0
Jiri Slaby02f11752006-12-08 02:39:28 -08004081 /*
4082 * No need to wake up processes in open wait, since they
4083 * sample the CLOCAL flag once, and don't recheck it.
4084 * XXX It's not clear whether the current behavior is correct
4085 * or not. Hence, this may change.....
4086 */
4087 if (!(old_termios->c_cflag & CLOCAL) &&
4088 (tty->termios->c_cflag & CLOCAL))
Alan Cox77451e52008-07-16 21:57:02 +01004089 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004091} /* cy_set_termios */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092
4093/* This function is used to send a high-priority XON/XOFF character to
4094 the device.
4095*/
Jiri Slaby02f11752006-12-08 02:39:28 -08004096static void cy_send_xchar(struct tty_struct *tty, char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004098 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004099 struct cyclades_card *card;
4100 int channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101
Jiri Slaby02f11752006-12-08 02:39:28 -08004102 if (serial_paranoia_check(info, tty->name, "cy_send_xchar"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 return;
4104
Jiri Slaby02f11752006-12-08 02:39:28 -08004105 info->x_char = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106
4107 if (ch)
Jiri Slaby02f11752006-12-08 02:39:28 -08004108 cy_start(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109
4110 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07004111 channel = info->line - card->first_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112
Jiri Slaby875b2062007-05-08 00:36:49 -07004113 if (IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004114 if (ch == STOP_CHAR(tty))
Jiri Slaby875b2062007-05-08 00:36:49 -07004115 cyz_issue_cmd(card, channel, C_CM_SENDXOFF, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08004116 else if (ch == START_CHAR(tty))
Jiri Slaby875b2062007-05-08 00:36:49 -07004117 cyz_issue_cmd(card, channel, C_CM_SENDXON, 0L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 }
4119}
4120
4121/* This routine is called by the upper-layer tty layer to signal
4122 that incoming characters should be throttled because the input
4123 buffers are close to full.
4124 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004125static void cy_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004127 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004128 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004129 unsigned long flags;
4130 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07004131 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
4133#ifdef CY_DEBUG_THROTTLE
Jiri Slaby02f11752006-12-08 02:39:28 -08004134 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Jiri Slaby21719192007-05-08 00:36:42 -07004136 printk(KERN_DEBUG "cyc:throttle %s: %ld...ttyC%d\n", tty_name(tty, buf),
Jiri Slaby02f11752006-12-08 02:39:28 -08004137 tty->ldisc.chars_in_buffer(tty), info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138#endif
4139
Alan Cox15ed6cc2008-04-30 00:53:55 -07004140 if (serial_paranoia_check(info, tty->name, "cy_throttle"))
Jiri Slaby02f11752006-12-08 02:39:28 -08004141 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142
Jiri Slaby02f11752006-12-08 02:39:28 -08004143 card = info->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
Jiri Slaby02f11752006-12-08 02:39:28 -08004145 if (I_IXOFF(tty)) {
Jiri Slaby875b2062007-05-08 00:36:49 -07004146 if (!IS_CYC_Z(*card))
Jiri Slaby02f11752006-12-08 02:39:28 -08004147 cy_send_xchar(tty, STOP_CHAR(tty));
4148 else
4149 info->throttle = 1;
4150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
Jiri Slaby02f11752006-12-08 02:39:28 -08004152 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby875b2062007-05-08 00:36:49 -07004153 channel = info->line - card->first_line;
4154 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004155 chip = channel >> 2;
4156 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07004157 index = card->bus_index;
4158 base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004159 (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004161 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004162 cy_writeb(base_addr + (CyCAR << index),
4163 (u_char) channel);
4164 if (info->rtsdtr_inv) {
4165 cy_writeb(base_addr + (CyMSVR2 << index),
4166 ~CyDTR);
4167 } else {
4168 cy_writeb(base_addr + (CyMSVR1 << index),
4169 ~CyRTS);
4170 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004171 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004172 } else {
4173 info->throttle = 1;
4174 }
4175 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004176} /* cy_throttle */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
4178/*
4179 * This routine notifies the tty driver that it should signal
4180 * that characters can now be sent to the tty without fear of
4181 * overrunning the input buffers of the line disciplines.
4182 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004183static void cy_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004185 struct cyclades_port *info = tty->driver_data;
Jiri Slaby875b2062007-05-08 00:36:49 -07004186 struct cyclades_card *card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004187 unsigned long flags;
4188 void __iomem *base_addr;
Jiri Slaby875b2062007-05-08 00:36:49 -07004189 int chip, channel, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
4191#ifdef CY_DEBUG_THROTTLE
Jiri Slaby02f11752006-12-08 02:39:28 -08004192 char buf[64];
4193
Jiri Slaby21719192007-05-08 00:36:42 -07004194 printk(KERN_DEBUG "cyc:unthrottle %s: %ld...ttyC%d\n",
Alan Cox15ed6cc2008-04-30 00:53:55 -07004195 tty_name(tty, buf), tty_chars_in_buffer(tty), info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196#endif
4197
Alan Cox15ed6cc2008-04-30 00:53:55 -07004198 if (serial_paranoia_check(info, tty->name, "cy_unthrottle"))
Jiri Slaby02f11752006-12-08 02:39:28 -08004199 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
Jiri Slaby02f11752006-12-08 02:39:28 -08004201 if (I_IXOFF(tty)) {
4202 if (info->x_char)
4203 info->x_char = 0;
4204 else
4205 cy_send_xchar(tty, START_CHAR(tty));
4206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
Jiri Slaby02f11752006-12-08 02:39:28 -08004208 if (tty->termios->c_cflag & CRTSCTS) {
4209 card = info->card;
Jiri Slaby875b2062007-05-08 00:36:49 -07004210 channel = info->line - card->first_line;
4211 if (!IS_CYC_Z(*card)) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004212 chip = channel >> 2;
4213 channel &= 0x03;
Jiri Slaby875b2062007-05-08 00:36:49 -07004214 index = card->bus_index;
4215 base_addr = card->base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004216 (cy_chip_offset[chip] << index);
4217
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004218 spin_lock_irqsave(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004219 cy_writeb(base_addr + (CyCAR << index),
4220 (u_char) channel);
4221 if (info->rtsdtr_inv) {
4222 cy_writeb(base_addr + (CyMSVR2 << index),
4223 CyDTR);
4224 } else {
4225 cy_writeb(base_addr + (CyMSVR1 << index),
4226 CyRTS);
4227 }
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004228 spin_unlock_irqrestore(&card->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004229 } else {
4230 info->throttle = 0;
4231 }
4232 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004233} /* cy_unthrottle */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
4235/* cy_start and cy_stop provide software output flow control as a
4236 function of XON/XOFF, software CTS, and other such stuff.
4237*/
Jiri Slaby02f11752006-12-08 02:39:28 -08004238static void cy_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239{
Jiri Slaby02f11752006-12-08 02:39:28 -08004240 struct cyclades_card *cinfo;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004241 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004242 void __iomem *base_addr;
4243 int chip, channel, index;
4244 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245
4246#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004247 printk(KERN_DEBUG "cyc:cy_stop ttyC%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248#endif
4249
Jiri Slaby02f11752006-12-08 02:39:28 -08004250 if (serial_paranoia_check(info, tty->name, "cy_stop"))
4251 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
Jiri Slaby875b2062007-05-08 00:36:49 -07004253 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004254 channel = info->line - cinfo->first_line;
4255 if (!IS_CYC_Z(*cinfo)) {
4256 index = cinfo->bus_index;
4257 chip = channel >> 2;
4258 channel &= 0x03;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004259 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004261 spin_lock_irqsave(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004262 cy_writeb(base_addr + (CyCAR << index),
4263 (u_char)(channel & 0x0003)); /* index channel */
4264 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004265 readb(base_addr + (CySRER << index)) & ~CyTxRdy);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004266 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004268} /* cy_stop */
4269
4270static void cy_start(struct tty_struct *tty)
4271{
4272 struct cyclades_card *cinfo;
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004273 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004274 void __iomem *base_addr;
4275 int chip, channel, index;
4276 unsigned long flags;
4277
4278#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004279 printk(KERN_DEBUG "cyc:cy_start ttyC%d\n", info->line);
Jiri Slaby02f11752006-12-08 02:39:28 -08004280#endif
4281
4282 if (serial_paranoia_check(info, tty->name, "cy_start"))
4283 return;
4284
Jiri Slaby875b2062007-05-08 00:36:49 -07004285 cinfo = info->card;
Jiri Slaby02f11752006-12-08 02:39:28 -08004286 channel = info->line - cinfo->first_line;
4287 index = cinfo->bus_index;
4288 if (!IS_CYC_Z(*cinfo)) {
4289 chip = channel >> 2;
4290 channel &= 0x03;
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004291 base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index);
Jiri Slaby02f11752006-12-08 02:39:28 -08004292
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004293 spin_lock_irqsave(&cinfo->card_lock, flags);
Alan Cox15ed6cc2008-04-30 00:53:55 -07004294 cy_writeb(base_addr + (CyCAR << index),
4295 (u_char) (channel & 0x0003)); /* index channel */
Jiri Slaby02f11752006-12-08 02:39:28 -08004296 cy_writeb(base_addr + (CySRER << index),
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004297 readb(base_addr + (CySRER << index)) | CyTxRdy);
Jiri Slaby9fa1b3b182007-05-08 00:36:57 -07004298 spin_unlock_irqrestore(&cinfo->card_lock, flags);
Jiri Slaby02f11752006-12-08 02:39:28 -08004299 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004300} /* cy_start */
4301
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302/*
4303 * cy_hangup() --- called by tty_hangup() when a hangup is signaled.
4304 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004305static void cy_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306{
Jiri Slabycab9bdd2007-05-08 00:35:51 -07004307 struct cyclades_port *info = tty->driver_data;
Jiri Slaby02f11752006-12-08 02:39:28 -08004308
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309#ifdef CY_DEBUG_OTHER
Jiri Slaby21719192007-05-08 00:36:42 -07004310 printk(KERN_DEBUG "cyc:cy_hangup 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_hangup"))
4314 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315
Jiri Slaby02f11752006-12-08 02:39:28 -08004316 cy_flush_buffer(tty);
4317 shutdown(info);
Alan Cox77451e52008-07-16 21:57:02 +01004318 info->port.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319#ifdef CY_DEBUG_COUNT
Jiri Slaby21719192007-05-08 00:36:42 -07004320 printk(KERN_DEBUG "cyc:cy_hangup (%d): setting count to 0\n",
4321 current->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322#endif
Alan Cox77451e52008-07-16 21:57:02 +01004323 info->port.tty = NULL;
4324 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
4325 wake_up_interruptible(&info->port.open_wait);
Jiri Slaby02f11752006-12-08 02:39:28 -08004326} /* cy_hangup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
4328/*
4329 * ---------------------------------------------------------------------
4330 * cy_init() and friends
4331 *
4332 * cy_init() is called at boot-time to initialize the serial driver.
4333 * ---------------------------------------------------------------------
4334 */
4335
Jiri Slabydd025c02007-05-08 00:37:02 -07004336static int __devinit cy_init_card(struct cyclades_card *cinfo)
Jiri Slaby0809e262007-05-08 00:36:14 -07004337{
4338 struct cyclades_port *info;
Jeff Garzika6343af2007-07-17 05:39:58 -04004339 u32 uninitialized_var(mailbox);
Jiri Slaby65f76a82007-10-18 03:06:22 -07004340 unsigned int nports, port;
Jiri Slaby0809e262007-05-08 00:36:14 -07004341 unsigned short chip_number;
Jiri Slaby65f76a82007-10-18 03:06:22 -07004342 int uninitialized_var(index);
Jiri Slaby0809e262007-05-08 00:36:14 -07004343
Jiri Slaby3046d502007-05-08 00:36:46 -07004344 spin_lock_init(&cinfo->card_lock);
4345
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07004346 if (IS_CYC_Z(*cinfo)) { /* Cyclades-Z */
Jiri Slaby97e87f82009-06-11 12:29:27 +01004347 mailbox = readl(&cinfo->ctl_addr.p9060->mail_box_0);
Jiri Slaby0809e262007-05-08 00:36:14 -07004348 nports = (mailbox == ZE_V1) ? ZE_V1_NPORTS : 8;
4349 cinfo->intr_enabled = 0;
4350 cinfo->nports = 0; /* Will be correctly set later, after
4351 Z FW is loaded */
Jiri Slaby3046d502007-05-08 00:36:46 -07004352 } else {
4353 index = cinfo->bus_index;
4354 nports = cinfo->nports = CyPORTS_PER_CHIP * cinfo->num_chips;
4355 }
4356
Jiri Slabydd025c02007-05-08 00:37:02 -07004357 cinfo->ports = kzalloc(sizeof(*cinfo->ports) * nports, GFP_KERNEL);
4358 if (cinfo->ports == NULL) {
4359 printk(KERN_ERR "Cyclades: cannot allocate ports\n");
Jiri Slaby31375532007-05-08 00:37:04 -07004360 cinfo->nports = 0;
Jiri Slabydd025c02007-05-08 00:37:02 -07004361 return -ENOMEM;
4362 }
4363
Jiri Slaby3046d502007-05-08 00:36:46 -07004364 for (port = cinfo->first_line; port < cinfo->first_line + nports;
4365 port++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07004366 info = &cinfo->ports[port - cinfo->first_line];
Alan Cox44b7d1b2008-07-16 21:57:18 +01004367 tty_port_init(&info->port);
Jiri Slaby3046d502007-05-08 00:36:46 -07004368 info->magic = CYCLADES_MAGIC;
Jiri Slaby875b2062007-05-08 00:36:49 -07004369 info->card = cinfo;
Jiri Slaby3046d502007-05-08 00:36:46 -07004370 info->line = port;
Jiri Slaby3046d502007-05-08 00:36:46 -07004371
Alan Cox44b7d1b2008-07-16 21:57:18 +01004372 info->port.closing_wait = CLOSING_WAIT_DELAY;
4373 info->port.close_delay = 5 * HZ / 10;
Alan Cox77451e52008-07-16 21:57:02 +01004374 info->port.flags = STD_COM_FLAGS;
Jiri Slaby2c7fea92007-05-08 00:36:51 -07004375 init_completion(&info->shutdown_wait);
Jiri Slaby3046d502007-05-08 00:36:46 -07004376 init_waitqueue_head(&info->delta_msr_wait);
4377
4378 if (IS_CYC_Z(*cinfo)) {
Jiri Slaby0809e262007-05-08 00:36:14 -07004379 info->type = PORT_STARTECH;
Jiri Slaby0809e262007-05-08 00:36:14 -07004380 if (mailbox == ZO_V1)
4381 info->xmit_fifo_size = CYZ_FIFO_SIZE;
4382 else
Jiri Slaby3046d502007-05-08 00:36:46 -07004383 info->xmit_fifo_size = 4 * CYZ_FIFO_SIZE;
Jiri Slaby0809e262007-05-08 00:36:14 -07004384#ifdef CONFIG_CYZ_INTR
Jiri Slaby39914282007-05-08 00:36:54 -07004385 setup_timer(&cyz_rx_full_timer[port],
4386 cyz_rx_restart, (unsigned long)info);
Jiri Slaby0809e262007-05-08 00:36:14 -07004387#endif
Jiri Slaby3046d502007-05-08 00:36:46 -07004388 } else {
Jiri Slaby0809e262007-05-08 00:36:14 -07004389 info->type = PORT_CIRRUS;
Jiri Slaby0809e262007-05-08 00:36:14 -07004390 info->xmit_fifo_size = CyMAX_CHAR_FIFO;
Jiri Slaby3046d502007-05-08 00:36:46 -07004391 info->cor1 = CyPARITY_NONE | Cy_1_STOP | Cy_8_BITS;
Jiri Slaby0809e262007-05-08 00:36:14 -07004392 info->cor2 = CyETC;
4393 info->cor3 = 0x08; /* _very_ small rcv threshold */
Jiri Slaby3046d502007-05-08 00:36:46 -07004394
Jiri Slaby0809e262007-05-08 00:36:14 -07004395 chip_number = (port - cinfo->first_line) / 4;
Alan Cox15ed6cc2008-04-30 00:53:55 -07004396 info->chip_rev = readb(cinfo->base_addr +
4397 (cy_chip_offset[chip_number] << index) +
4398 (CyGFRCR << index));
4399
4400 if (info->chip_rev >= CD1400_REV_J) {
Jiri Slaby0809e262007-05-08 00:36:14 -07004401 /* It is a CD1400 rev. J or later */
4402 info->tbpr = baud_bpr_60[13]; /* Tx BPR */
4403 info->tco = baud_co_60[13]; /* Tx CO */
4404 info->rbpr = baud_bpr_60[13]; /* Rx BPR */
4405 info->rco = baud_co_60[13]; /* Rx CO */
Jiri Slaby0809e262007-05-08 00:36:14 -07004406 info->rtsdtr_inv = 1;
4407 } else {
4408 info->tbpr = baud_bpr_25[13]; /* Tx BPR */
4409 info->tco = baud_co_25[13]; /* Tx CO */
4410 info->rbpr = baud_bpr_25[13]; /* Rx BPR */
4411 info->rco = baud_co_25[13]; /* Rx CO */
Jiri Slaby0809e262007-05-08 00:36:14 -07004412 info->rtsdtr_inv = 0;
4413 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004414 info->read_status_mask = CyTIMEOUT | CySPECHAR |
4415 CyBREAK | CyPARITY | CyFRAME | CyOVERRUN;
Jiri Slaby0809e262007-05-08 00:36:14 -07004416 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004417
Jiri Slaby0809e262007-05-08 00:36:14 -07004418 }
Jiri Slaby3046d502007-05-08 00:36:46 -07004419
4420#ifndef CONFIG_CYZ_INTR
4421 if (IS_CYC_Z(*cinfo) && !timer_pending(&cyz_timerlist)) {
4422 mod_timer(&cyz_timerlist, jiffies + 1);
4423#ifdef CY_PCI_DEBUG
4424 printk(KERN_DEBUG "Cyclades-Z polling initialized\n");
4425#endif
4426 }
4427#endif
Jiri Slabydd025c02007-05-08 00:37:02 -07004428 return 0;
Jiri Slaby0809e262007-05-08 00:36:14 -07004429}
4430
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431/* initialize chips on Cyclom-Y card -- return number of valid
4432 chips (which is number of ports/4) */
Jiri Slaby31b4f0a2007-05-08 00:36:44 -07004433static unsigned short __devinit cyy_init_card(void __iomem *true_base_addr,
4434 int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435{
Jiri Slaby02f11752006-12-08 02:39:28 -08004436 unsigned int chip_number;
4437 void __iomem *base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438
Jiri Slaby02f11752006-12-08 02:39:28 -08004439 cy_writeb(true_base_addr + (Cy_HwReset << index), 0);
4440 /* Cy_HwReset is 0x1400 */
4441 cy_writeb(true_base_addr + (Cy_ClrIntr << index), 0);
4442 /* Cy_ClrIntr is 0x1800 */
4443 udelay(500L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
Alan Cox15ed6cc2008-04-30 00:53:55 -07004445 for (chip_number = 0; chip_number < CyMAX_CHIPS_PER_CARD;
4446 chip_number++) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004447 base_addr =
4448 true_base_addr + (cy_chip_offset[chip_number] << index);
4449 mdelay(1);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004450 if (readb(base_addr + (CyCCR << index)) != 0x00) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004451 /*************
4452 printk(" chip #%d at %#6lx is never idle (CCR != 0)\n",
4453 chip_number, (unsigned long)base_addr);
4454 *************/
4455 return chip_number;
4456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
Jiri Slaby02f11752006-12-08 02:39:28 -08004458 cy_writeb(base_addr + (CyGFRCR << index), 0);
4459 udelay(10L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460
Jiri Slaby02f11752006-12-08 02:39:28 -08004461 /* The Cyclom-16Y does not decode address bit 9 and therefore
4462 cannot distinguish between references to chip 0 and a non-
4463 existent chip 4. If the preceding clearing of the supposed
4464 chip 4 GFRCR register appears at chip 0, there is no chip 4
4465 and this must be a Cyclom-16Y, not a Cyclom-32Ye.
4466 */
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004467 if (chip_number == 4 && readb(true_base_addr +
Jiri Slaby02f11752006-12-08 02:39:28 -08004468 (cy_chip_offset[0] << index) +
4469 (CyGFRCR << index)) == 0) {
4470 return chip_number;
4471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472
Jiri Slaby02f11752006-12-08 02:39:28 -08004473 cy_writeb(base_addr + (CyCCR << index), CyCHIP_RESET);
4474 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004476 if (readb(base_addr + (CyGFRCR << index)) == 0x00) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004477 /*
4478 printk(" chip #%d at %#6lx is not responding ",
4479 chip_number, (unsigned long)base_addr);
4480 printk("(GFRCR stayed 0)\n",
4481 */
4482 return chip_number;
4483 }
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004484 if ((0xf0 & (readb(base_addr + (CyGFRCR << index)))) !=
Jiri Slaby02f11752006-12-08 02:39:28 -08004485 0x40) {
4486 /*
4487 printk(" chip #%d at %#6lx is not valid (GFRCR == "
4488 "%#2x)\n",
4489 chip_number, (unsigned long)base_addr,
4490 base_addr[CyGFRCR<<index]);
4491 */
4492 return chip_number;
4493 }
4494 cy_writeb(base_addr + (CyGCR << index), CyCH0_SERIAL);
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004495 if (readb(base_addr + (CyGFRCR << index)) >= CD1400_REV_J) {
Jiri Slaby02f11752006-12-08 02:39:28 -08004496 /* It is a CD1400 rev. J or later */
4497 /* Impossible to reach 5ms with this chip.
4498 Changed to 2ms instead (f = 500 Hz). */
4499 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_60_2MS);
4500 } else {
4501 /* f = 200 Hz */
4502 cy_writeb(base_addr + (CyPPR << index), CyCLOCK_25_5MS);
4503 }
4504
4505 /*
4506 printk(" chip #%d at %#6lx is rev 0x%2x\n",
4507 chip_number, (unsigned long)base_addr,
Jiri Slabydb05c3b2007-05-08 00:35:46 -07004508 readb(base_addr+(CyGFRCR<<index)));
Jiri Slaby02f11752006-12-08 02:39:28 -08004509 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004511 return chip_number;
4512} /* cyy_init_card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513
4514/*
4515 * ---------------------------------------------------------------------
4516 * cy_detect_isa() - Probe for Cyclom-Y/ISA boards.
4517 * sets global variables and return the number of ISA boards found.
4518 * ---------------------------------------------------------------------
4519 */
Jiri Slaby02f11752006-12-08 02:39:28 -08004520static int __init cy_detect_isa(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521{
4522#ifdef CONFIG_ISA
Jiri Slaby02f11752006-12-08 02:39:28 -08004523 unsigned short cy_isa_irq, nboard;
4524 void __iomem *cy_isa_address;
4525 unsigned short i, j, cy_isa_nchan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526#ifdef MODULE
Jiri Slaby02f11752006-12-08 02:39:28 -08004527 int isparam = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528#endif
4529
Jiri Slaby02f11752006-12-08 02:39:28 -08004530 nboard = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531
4532#ifdef MODULE
4533 /* Check for module parameters */
Jiri Slaby02f11752006-12-08 02:39:28 -08004534 for (i = 0; i < NR_CARDS; i++) {
4535 if (maddr[i] || i) {
4536 isparam = 1;
4537 cy_isa_addresses[i] = maddr[i];
4538 }
4539 if (!maddr[i])
4540 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 }
4542#endif
4543
Jiri Slaby02f11752006-12-08 02:39:28 -08004544 /* scan the address table probing for Cyclom-Y/ISA boards */
4545 for (i = 0; i < NR_ISA_ADDRS; i++) {
4546 unsigned int isa_address = cy_isa_addresses[i];
Alan Cox15ed6cc2008-04-30 00:53:55 -07004547 if (isa_address == 0x0000)
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004548 return nboard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549
Jiri Slaby02f11752006-12-08 02:39:28 -08004550 /* probe for CD1400... */
Alan Coxcd989b32008-04-30 00:53:56 -07004551 cy_isa_address = ioremap_nocache(isa_address, CyISA_Ywin);
Jiri Slaby31375532007-05-08 00:37:04 -07004552 if (cy_isa_address == NULL) {
4553 printk(KERN_ERR "Cyclom-Y/ISA: can't remap base "
4554 "address\n");
4555 continue;
4556 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004557 cy_isa_nchan = CyPORTS_PER_CHIP *
4558 cyy_init_card(cy_isa_address, 0);
4559 if (cy_isa_nchan == 0) {
Jiri Slaby31375532007-05-08 00:37:04 -07004560 iounmap(cy_isa_address);
Jiri Slaby02f11752006-12-08 02:39:28 -08004561 continue;
4562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563#ifdef MODULE
4564 if (isparam && irq[i])
Jiri Slaby02f11752006-12-08 02:39:28 -08004565 cy_isa_irq = irq[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 else
4567#endif
Jiri Slaby02f11752006-12-08 02:39:28 -08004568 /* find out the board's irq by probing */
4569 cy_isa_irq = detect_isa_irq(cy_isa_address);
4570 if (cy_isa_irq == 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07004571 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but the "
4572 "IRQ could not be detected.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004573 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07004574 iounmap(cy_isa_address);
Jiri Slaby02f11752006-12-08 02:39:28 -08004575 continue;
4576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577
Jiri Slaby02f11752006-12-08 02:39:28 -08004578 if ((cy_next_channel + cy_isa_nchan) > NR_PORTS) {
Jiri Slaby21719192007-05-08 00:36:42 -07004579 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
4580 "more channels are available. Change NR_PORTS "
4581 "in cyclades.c and recompile kernel.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004582 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07004583 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004584 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004585 }
4586 /* fill the next cy_card structure available */
4587 for (j = 0; j < NR_CARDS; j++) {
Jiri Slabyf7429032007-05-08 00:36:59 -07004588 if (cy_card[j].base_addr == NULL)
Jiri Slaby02f11752006-12-08 02:39:28 -08004589 break;
4590 }
4591 if (j == NR_CARDS) { /* no more cy_cards available */
Jiri Slaby21719192007-05-08 00:36:42 -07004592 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but no "
4593 "more cards can be used. Change NR_CARDS in "
4594 "cyclades.c and recompile kernel.\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004595 (unsigned long)cy_isa_address);
Jiri Slaby31375532007-05-08 00:37:04 -07004596 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004597 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599
Jiri Slaby02f11752006-12-08 02:39:28 -08004600 /* allocate IRQ */
4601 if (request_irq(cy_isa_irq, cyy_interrupt,
4602 IRQF_DISABLED, "Cyclom-Y", &cy_card[j])) {
Jiri Slaby21719192007-05-08 00:36:42 -07004603 printk(KERN_ERR "Cyclom-Y/ISA found at 0x%lx, but "
4604 "could not allocate IRQ#%d.\n",
4605 (unsigned long)cy_isa_address, cy_isa_irq);
Jiri Slaby31375532007-05-08 00:37:04 -07004606 iounmap(cy_isa_address);
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004607 return nboard;
Jiri Slaby02f11752006-12-08 02:39:28 -08004608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
Jiri Slaby02f11752006-12-08 02:39:28 -08004610 /* set cy_card */
4611 cy_card[j].base_addr = cy_isa_address;
Jiri Slaby97e87f82009-06-11 12:29:27 +01004612 cy_card[j].ctl_addr.p9050 = NULL;
Jiri Slaby02f11752006-12-08 02:39:28 -08004613 cy_card[j].irq = (int)cy_isa_irq;
4614 cy_card[j].bus_index = 0;
4615 cy_card[j].first_line = cy_next_channel;
4616 cy_card[j].num_chips = cy_isa_nchan / 4;
Jiri Slaby31375532007-05-08 00:37:04 -07004617 if (cy_init_card(&cy_card[j])) {
4618 cy_card[j].base_addr = NULL;
4619 free_irq(cy_isa_irq, &cy_card[j]);
4620 iounmap(cy_isa_address);
4621 continue;
4622 }
Jiri Slaby02f11752006-12-08 02:39:28 -08004623 nboard++;
4624
Jiri Slaby21719192007-05-08 00:36:42 -07004625 printk(KERN_INFO "Cyclom-Y/ISA #%d: 0x%lx-0x%lx, IRQ%d found: "
4626 "%d channels starting from port %d\n",
Jiri Slaby02f11752006-12-08 02:39:28 -08004627 j + 1, (unsigned long)cy_isa_address,
4628 (unsigned long)(cy_isa_address + (CyISA_Ywin - 1)),
Jiri Slaby21719192007-05-08 00:36:42 -07004629 cy_isa_irq, cy_isa_nchan, cy_next_channel);
4630
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07004631 for (j = cy_next_channel;
4632 j < cy_next_channel + cy_isa_nchan; j++)
4633 tty_register_device(cy_serial_driver, j, NULL);
Jiri Slaby02f11752006-12-08 02:39:28 -08004634 cy_next_channel += cy_isa_nchan;
4635 }
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004636 return nboard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637#else
Jiri Slaby096dcfc2006-12-08 02:39:30 -08004638 return 0;
Jiri Slaby02f11752006-12-08 02:39:28 -08004639#endif /* CONFIG_ISA */
4640} /* cy_detect_isa */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641
Jiri Slaby58936d82007-05-08 00:36:13 -07004642#ifdef CONFIG_PCI
Jiri Slaby054f5b02007-07-17 04:05:16 -07004643static inline int __devinit cyc_isfwstr(const char *str, unsigned int size)
4644{
4645 unsigned int a;
4646
4647 for (a = 0; a < size && *str; a++, str++)
4648 if (*str & 0x80)
4649 return -EINVAL;
4650
4651 for (; a < size; a++, str++)
4652 if (*str)
4653 return -EINVAL;
4654
4655 return 0;
4656}
4657
David Woodhousef61e7612008-05-23 23:57:19 +01004658static inline void __devinit cyz_fpga_copy(void __iomem *fpga, const u8 *data,
Jiri Slaby054f5b02007-07-17 04:05:16 -07004659 unsigned int size)
4660{
4661 for (; size > 0; size--) {
4662 cy_writel(fpga, *data++);
4663 udelay(10);
4664 }
4665}
4666
4667static void __devinit plx_init(struct pci_dev *pdev, int irq,
4668 struct RUNTIME_9060 __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669{
Jiri Slaby02f11752006-12-08 02:39:28 -08004670 /* Reset PLX */
Jiri Slaby054f5b02007-07-17 04:05:16 -07004671 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x40000000);
Jiri Slaby02f11752006-12-08 02:39:28 -08004672 udelay(100L);
Jiri Slaby054f5b02007-07-17 04:05:16 -07004673 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x40000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674
Jiri Slaby02f11752006-12-08 02:39:28 -08004675 /* Reload Config. Registers from EEPROM */
Jiri Slaby054f5b02007-07-17 04:05:16 -07004676 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) | 0x20000000);
Jiri Slaby02f11752006-12-08 02:39:28 -08004677 udelay(100L);
Jiri Slaby054f5b02007-07-17 04:05:16 -07004678 cy_writel(&addr->init_ctrl, readl(&addr->init_ctrl) & ~0x20000000);
4679
4680 /* For some yet unknown reason, once the PLX9060 reloads the EEPROM,
4681 * the IRQ is lost and, thus, we have to re-write it to the PCI config.
4682 * registers. This will remain here until we find a permanent fix.
4683 */
4684 pci_write_config_byte(pdev, PCI_INTERRUPT_LINE, irq);
4685}
4686
4687static int __devinit __cyz_load_fw(const struct firmware *fw,
4688 const char *name, const u32 mailbox, void __iomem *base,
4689 void __iomem *fpga)
4690{
David Woodhousef61e7612008-05-23 23:57:19 +01004691 const void *ptr = fw->data;
4692 const struct zfile_header *h = ptr;
4693 const struct zfile_config *c, *cs;
4694 const struct zfile_block *b, *bs;
Jiri Slaby054f5b02007-07-17 04:05:16 -07004695 unsigned int a, tmp, len = fw->size;
4696#define BAD_FW KERN_ERR "Bad firmware: "
4697 if (len < sizeof(*h)) {
4698 printk(BAD_FW "too short: %u<%zu\n", len, sizeof(*h));
4699 return -EINVAL;
4700 }
4701
4702 cs = ptr + h->config_offset;
4703 bs = ptr + h->block_offset;
4704
4705 if ((void *)(cs + h->n_config) > ptr + len ||
4706 (void *)(bs + h->n_blocks) > ptr + len) {
4707 printk(BAD_FW "too short");
4708 return -EINVAL;
4709 }
4710
4711 if (cyc_isfwstr(h->name, sizeof(h->name)) ||
4712 cyc_isfwstr(h->date, sizeof(h->date))) {
4713 printk(BAD_FW "bad formatted header string\n");
4714 return -EINVAL;
4715 }
4716
4717 if (strncmp(name, h->name, sizeof(h->name))) {
4718 printk(BAD_FW "bad name '%s' (expected '%s')\n", h->name, name);
4719 return -EINVAL;
4720 }
4721
4722 tmp = 0;
4723 for (c = cs; c < cs + h->n_config; c++) {
4724 for (a = 0; a < c->n_blocks; a++)
4725 if (c->block_list[a] > h->n_blocks) {
4726 printk(BAD_FW "bad block ref number in cfgs\n");
4727 return -EINVAL;
4728 }
4729 if (c->mailbox == mailbox && c->function == 0) /* 0 is normal */
4730 tmp++;
4731 }
4732 if (!tmp) {
4733 printk(BAD_FW "nothing appropriate\n");
4734 return -EINVAL;
4735 }
4736
4737 for (b = bs; b < bs + h->n_blocks; b++)
4738 if (b->file_offset + b->size > len) {
4739 printk(BAD_FW "bad block data offset\n");
4740 return -EINVAL;
4741 }
4742
4743 /* everything is OK, let's seek'n'load it */
4744 for (c = cs; c < cs + h->n_config; c++)
4745 if (c->mailbox == mailbox && c->function == 0)
4746 break;
4747
4748 for (a = 0; a < c->n_blocks; a++) {
4749 b = &bs[c->block_list[a]];
4750 if (b->type == ZBLOCK_FPGA) {
4751 if (fpga != NULL)
4752 cyz_fpga_copy(fpga, ptr + b->file_offset,
4753 b->size);
4754 } else {
4755 if (base != NULL)
4756 memcpy_toio(base + b->ram_offset,
4757 ptr + b->file_offset, b->size);
4758 }
4759 }
4760#undef BAD_FW
4761 return 0;
4762}
4763
4764static int __devinit cyz_load_fw(struct pci_dev *pdev, void __iomem *base_addr,
4765 struct RUNTIME_9060 __iomem *ctl_addr, int irq)
4766{
4767 const struct firmware *fw;
4768 struct FIRM_ID __iomem *fid = base_addr + ID_ADDRESS;
4769 struct CUSTOM_REG __iomem *cust = base_addr;
4770 struct ZFW_CTRL __iomem *pt_zfwctrl;
Jiri Slabyc4923b42007-07-17 04:05:17 -07004771 void __iomem *tmp;
Jiri Slaby054f5b02007-07-17 04:05:16 -07004772 u32 mailbox, status;
4773 unsigned int i;
4774 int retval;
4775
4776 retval = request_firmware(&fw, "cyzfirm.bin", &pdev->dev);
4777 if (retval) {
4778 dev_err(&pdev->dev, "can't get firmware\n");
4779 goto err;
4780 }
4781
4782 /* Check whether the firmware is already loaded and running. If
4783 positive, skip this board */
4784 if (Z_FPGA_LOADED(ctl_addr) && readl(&fid->signature) == ZFIRM_ID) {
4785 u32 cntval = readl(base_addr + 0x190);
4786
4787 udelay(100);
4788 if (cntval != readl(base_addr + 0x190)) {
4789 /* FW counter is working, FW is running */
4790 dev_dbg(&pdev->dev, "Cyclades-Z FW already loaded. "
4791 "Skipping board.\n");
4792 retval = 0;
4793 goto err_rel;
4794 }
4795 }
4796
4797 /* start boot */
4798 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) &
4799 ~0x00030800UL);
4800
4801 mailbox = readl(&ctl_addr->mail_box_0);
4802
4803 if (mailbox == 0 || Z_FPGA_LOADED(ctl_addr)) {
4804 /* stops CPU and set window to beginning of RAM */
4805 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4806 cy_writel(&cust->cpu_stop, 0);
4807 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4808 udelay(100);
4809 }
4810
4811 plx_init(pdev, irq, ctl_addr);
4812
4813 if (mailbox != 0) {
4814 /* load FPGA */
4815 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, NULL,
4816 base_addr);
4817 if (retval)
4818 goto err_rel;
4819 if (!Z_FPGA_LOADED(ctl_addr)) {
4820 dev_err(&pdev->dev, "fw upload successful, but fw is "
4821 "not loaded\n");
4822 goto err_rel;
4823 }
4824 }
4825
4826 /* stops CPU and set window to beginning of RAM */
4827 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4828 cy_writel(&cust->cpu_stop, 0);
4829 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4830 udelay(100);
4831
4832 /* clear memory */
Jiri Slabyc4923b42007-07-17 04:05:17 -07004833 for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++)
Jiri Slaby054f5b02007-07-17 04:05:16 -07004834 cy_writeb(tmp, 255);
4835 if (mailbox != 0) {
4836 /* set window to last 512K of RAM */
4837 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM + RAM_SIZE);
Jiri Slabyc4923b42007-07-17 04:05:17 -07004838 for (tmp = base_addr; tmp < base_addr + RAM_SIZE; tmp++)
Jiri Slaby054f5b02007-07-17 04:05:16 -07004839 cy_writeb(tmp, 255);
4840 /* set window to beginning of RAM */
4841 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
Jiri Slaby054f5b02007-07-17 04:05:16 -07004842 }
4843
4844 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, base_addr, NULL);
4845 release_firmware(fw);
4846 if (retval)
4847 goto err;
4848
4849 /* finish boot and start boards */
4850 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
4851 cy_writel(&cust->cpu_start, 0);
4852 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
4853 i = 0;
4854 while ((status = readl(&fid->signature)) != ZFIRM_ID && i++ < 40)
4855 msleep(100);
4856 if (status != ZFIRM_ID) {
4857 if (status == ZFIRM_HLT) {
4858 dev_err(&pdev->dev, "you need an external power supply "
4859 "for this number of ports. Firmware halted and "
4860 "board reset.\n");
4861 retval = -EIO;
4862 goto err;
4863 }
4864 dev_warn(&pdev->dev, "fid->signature = 0x%x... Waiting "
4865 "some more time\n", status);
4866 while ((status = readl(&fid->signature)) != ZFIRM_ID &&
4867 i++ < 200)
4868 msleep(100);
4869 if (status != ZFIRM_ID) {
4870 dev_err(&pdev->dev, "Board not started in 20 seconds! "
4871 "Giving up. (fid->signature = 0x%x)\n",
4872 status);
4873 dev_info(&pdev->dev, "*** Warning ***: if you are "
4874 "upgrading the FW, please power cycle the "
4875 "system before loading the new FW to the "
4876 "Cyclades-Z.\n");
4877
4878 if (Z_FPGA_LOADED(ctl_addr))
4879 plx_init(pdev, irq, ctl_addr);
4880
4881 retval = -EIO;
4882 goto err;
4883 }
4884 dev_dbg(&pdev->dev, "Firmware started after %d seconds.\n",
4885 i / 10);
4886 }
4887 pt_zfwctrl = base_addr + readl(&fid->zfwctrl_addr);
4888
4889 dev_dbg(&pdev->dev, "fid=> %p, zfwctrl_addr=> %x, npt_zfwctrl=> %p\n",
4890 base_addr + ID_ADDRESS, readl(&fid->zfwctrl_addr),
4891 base_addr + readl(&fid->zfwctrl_addr));
4892
4893 dev_info(&pdev->dev, "Cyclades-Z FW loaded: version = %x, ports = %u\n",
4894 readl(&pt_zfwctrl->board_ctrl.fw_version),
4895 readl(&pt_zfwctrl->board_ctrl.n_channel));
4896
4897 if (readl(&pt_zfwctrl->board_ctrl.n_channel) == 0) {
4898 dev_warn(&pdev->dev, "no Cyclades-Z ports were found. Please "
4899 "check the connection between the Z host card and the "
4900 "serial expanders.\n");
4901
4902 if (Z_FPGA_LOADED(ctl_addr))
4903 plx_init(pdev, irq, ctl_addr);
4904
4905 dev_info(&pdev->dev, "Null number of ports detected. Board "
4906 "reset.\n");
4907 retval = 0;
4908 goto err;
4909 }
4910
4911 cy_writel(&pt_zfwctrl->board_ctrl.op_system, C_OS_LINUX);
4912 cy_writel(&pt_zfwctrl->board_ctrl.dr_version, DRIVER_VERSION);
4913
4914 /*
4915 Early firmware failed to start looking for commands.
4916 This enables firmware interrupts for those commands.
4917 */
4918 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) |
4919 (1 << 17));
4920 cy_writel(&ctl_addr->intr_ctrl_stat, readl(&ctl_addr->intr_ctrl_stat) |
4921 0x00030800UL);
4922
Jiri Slaby054f5b02007-07-17 04:05:16 -07004923 return 0;
4924err_rel:
4925 release_firmware(fw);
4926err:
4927 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928}
4929
Jiri Slaby58936d82007-05-08 00:36:13 -07004930static int __devinit cy_pci_probe(struct pci_dev *pdev,
4931 const struct pci_device_id *ent)
4932{
Jiri Slaby31375532007-05-08 00:37:04 -07004933 void __iomem *addr0 = NULL, *addr2 = NULL;
4934 char *card_name = NULL;
4935 u32 mailbox;
4936 unsigned int device_id, nchan = 0, card_no, i;
4937 unsigned char plx_ver;
4938 int retval, irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07004939
4940 retval = pci_enable_device(pdev);
4941 if (retval) {
4942 dev_err(&pdev->dev, "cannot enable device\n");
Jiri Slaby31375532007-05-08 00:37:04 -07004943 goto err;
Jiri Slaby58936d82007-05-08 00:36:13 -07004944 }
4945
4946 /* read PCI configuration area */
Jiri Slaby31375532007-05-08 00:37:04 -07004947 irq = pdev->irq;
Jiri Slaby58936d82007-05-08 00:36:13 -07004948 device_id = pdev->device & ~PCI_DEVICE_ID_MASK;
4949
Jiri Slaby31375532007-05-08 00:37:04 -07004950#if defined(__alpha__)
4951 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo) { /* below 1M? */
4952 dev_err(&pdev->dev, "Cyclom-Y/PCI not supported for low "
4953 "addresses on Alpha systems.\n");
4954 retval = -EIO;
4955 goto err_dis;
4956 }
4957#endif
4958 if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Lo) {
4959 dev_err(&pdev->dev, "Cyclades-Z/PCI not supported for low "
4960 "addresses\n");
4961 retval = -EIO;
4962 goto err_dis;
4963 }
4964
4965 if (pci_resource_flags(pdev, 2) & IORESOURCE_IO) {
4966 dev_warn(&pdev->dev, "PCI I/O bit incorrectly set. Ignoring "
4967 "it...\n");
4968 pdev->resource[2].flags &= ~IORESOURCE_IO;
4969 }
4970
4971 retval = pci_request_regions(pdev, "cyclades");
4972 if (retval) {
4973 dev_err(&pdev->dev, "failed to reserve resources\n");
4974 goto err_dis;
4975 }
4976
4977 retval = -EIO;
Jiri Slaby58936d82007-05-08 00:36:13 -07004978 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
4979 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby31375532007-05-08 00:37:04 -07004980 card_name = "Cyclom-Y";
Jiri Slaby58936d82007-05-08 00:36:13 -07004981
Jiri Slaby24e6fd42008-10-13 10:34:09 +01004982 addr0 = ioremap_nocache(pci_resource_start(pdev, 0),
4983 CyPCI_Yctl);
Jiri Slaby31375532007-05-08 00:37:04 -07004984 if (addr0 == NULL) {
4985 dev_err(&pdev->dev, "can't remap ctl region\n");
4986 goto err_reg;
4987 }
Jiri Slaby24e6fd42008-10-13 10:34:09 +01004988 addr2 = ioremap_nocache(pci_resource_start(pdev, 2),
4989 CyPCI_Ywin);
Jiri Slaby31375532007-05-08 00:37:04 -07004990 if (addr2 == NULL) {
4991 dev_err(&pdev->dev, "can't remap base region\n");
4992 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07004993 }
4994
Jiri Slaby31375532007-05-08 00:37:04 -07004995 nchan = CyPORTS_PER_CHIP * cyy_init_card(addr2, 1);
4996 if (nchan == 0) {
Jiri Slaby21719192007-05-08 00:36:42 -07004997 dev_err(&pdev->dev, "Cyclom-Y PCI host card with no "
4998 "Serial-Modules\n");
Andrew Mortonc847d472009-01-02 13:50:07 +00004999 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07005000 }
Jiri Slaby31375532007-05-08 00:37:04 -07005001 } else if (device_id == PCI_DEVICE_ID_CYCLOM_Z_Hi) {
5002 struct RUNTIME_9060 __iomem *ctl_addr;
5003
Jiri Slaby24e6fd42008-10-13 10:34:09 +01005004 ctl_addr = addr0 = ioremap_nocache(pci_resource_start(pdev, 0),
5005 CyPCI_Zctl);
Jiri Slaby31375532007-05-08 00:37:04 -07005006 if (addr0 == NULL) {
5007 dev_err(&pdev->dev, "can't remap ctl region\n");
5008 goto err_reg;
Jiri Slaby58936d82007-05-08 00:36:13 -07005009 }
5010
Jiri Slaby31375532007-05-08 00:37:04 -07005011 /* Disable interrupts on the PLX before resetting it */
Jiri Slaby97e87f82009-06-11 12:29:27 +01005012 cy_writew(&ctl_addr->intr_ctrl_stat,
5013 readw(&ctl_addr->intr_ctrl_stat) & ~0x0900);
Jiri Slaby31375532007-05-08 00:37:04 -07005014
Jiri Slaby054f5b02007-07-17 04:05:16 -07005015 plx_init(pdev, irq, addr0);
Jiri Slaby31375532007-05-08 00:37:04 -07005016
5017 mailbox = (u32)readl(&ctl_addr->mail_box_0);
5018
Jiri Slaby24e6fd42008-10-13 10:34:09 +01005019 addr2 = ioremap_nocache(pci_resource_start(pdev, 2),
5020 mailbox == ZE_V1 ? CyPCI_Ze_win : CyPCI_Zwin);
Jiri Slaby31375532007-05-08 00:37:04 -07005021 if (addr2 == NULL) {
5022 dev_err(&pdev->dev, "can't remap base region\n");
5023 goto err_unmap;
5024 }
5025
5026 if (mailbox == ZE_V1) {
5027 card_name = "Cyclades-Ze";
5028
5029 readl(&ctl_addr->mail_box_0);
5030 nchan = ZE_V1_NPORTS;
5031 } else {
5032 card_name = "Cyclades-8Zo";
Jiri Slabyace08c32009-06-11 12:20:38 +01005033 nchan = 8;
Jiri Slaby31375532007-05-08 00:37:04 -07005034
5035#ifdef CY_PCI_DEBUG
5036 if (mailbox == ZO_V1) {
5037 cy_writel(&ctl_addr->loc_addr_base, WIN_CREG);
5038 dev_info(&pdev->dev, "Cyclades-8Zo/PCI: FPGA "
5039 "id %lx, ver %lx\n", (ulong)(0xff &
5040 readl(&((struct CUSTOM_REG *)addr2)->
5041 fpga_id)), (ulong)(0xff &
5042 readl(&((struct CUSTOM_REG *)addr2)->
5043 fpga_version)));
5044 cy_writel(&ctl_addr->loc_addr_base, WIN_RAM);
5045 } else {
5046 dev_info(&pdev->dev, "Cyclades-Z/PCI: New "
5047 "Cyclades-Z board. FPGA not loaded\n");
5048 }
5049#endif
5050 /* The following clears the firmware id word. This
5051 ensures that the driver will not attempt to talk to
5052 the board until it has been properly initialized.
5053 */
5054 if ((mailbox == ZO_V1) || (mailbox == ZO_V2))
5055 cy_writel(addr2 + ID_ADDRESS, 0L);
Jiri Slaby31375532007-05-08 00:37:04 -07005056 }
Jiri Slabyace08c32009-06-11 12:20:38 +01005057
5058 retval = cyz_load_fw(pdev, addr2, addr0, irq);
5059 if (retval)
5060 goto err_unmap;
Jiri Slaby31375532007-05-08 00:37:04 -07005061 }
5062
5063 if ((cy_next_channel + nchan) > NR_PORTS) {
5064 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
5065 "channels are available. Change NR_PORTS in "
5066 "cyclades.c and recompile kernel.\n");
5067 goto err_unmap;
5068 }
5069 /* fill the next cy_card structure available */
5070 for (card_no = 0; card_no < NR_CARDS; card_no++) {
5071 if (cy_card[card_no].base_addr == NULL)
5072 break;
5073 }
5074 if (card_no == NR_CARDS) { /* no more cy_cards available */
5075 dev_err(&pdev->dev, "Cyclades-8Zo/PCI found, but no "
5076 "more cards can be used. Change NR_CARDS in "
5077 "cyclades.c and recompile kernel.\n");
5078 goto err_unmap;
5079 }
5080
5081 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
5082 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby58936d82007-05-08 00:36:13 -07005083 /* allocate IRQ */
Jiri Slaby31375532007-05-08 00:37:04 -07005084 retval = request_irq(irq, cyy_interrupt,
5085 IRQF_SHARED, "Cyclom-Y", &cy_card[card_no]);
Jiri Slaby58936d82007-05-08 00:36:13 -07005086 if (retval) {
Jiri Slaby21719192007-05-08 00:36:42 -07005087 dev_err(&pdev->dev, "could not allocate IRQ\n");
Jiri Slaby31375532007-05-08 00:37:04 -07005088 goto err_unmap;
Jiri Slaby58936d82007-05-08 00:36:13 -07005089 }
Jiri Slaby31375532007-05-08 00:37:04 -07005090 cy_card[card_no].num_chips = nchan / 4;
5091 } else {
5092#ifdef CONFIG_CYZ_INTR
5093 /* allocate IRQ only if board has an IRQ */
5094 if (irq != 0 && irq != 255) {
5095 retval = request_irq(irq, cyz_interrupt,
5096 IRQF_SHARED, "Cyclades-Z",
5097 &cy_card[card_no]);
5098 if (retval) {
5099 dev_err(&pdev->dev, "could not allocate IRQ\n");
5100 goto err_unmap;
5101 }
5102 }
5103#endif /* CONFIG_CYZ_INTR */
Jiri Slaby65f76a82007-10-18 03:06:22 -07005104 cy_card[card_no].num_chips = (unsigned int)-1;
Jiri Slaby31375532007-05-08 00:37:04 -07005105 }
Jiri Slaby58936d82007-05-08 00:36:13 -07005106
Jiri Slaby31375532007-05-08 00:37:04 -07005107 /* set cy_card */
5108 cy_card[card_no].base_addr = addr2;
Jiri Slaby97e87f82009-06-11 12:29:27 +01005109 cy_card[card_no].ctl_addr.p9050 = addr0;
Jiri Slaby31375532007-05-08 00:37:04 -07005110 cy_card[card_no].irq = irq;
5111 cy_card[card_no].bus_index = 1;
5112 cy_card[card_no].first_line = cy_next_channel;
5113 retval = cy_init_card(&cy_card[card_no]);
5114 if (retval)
5115 goto err_null;
Jiri Slaby58936d82007-05-08 00:36:13 -07005116
Jiri Slaby31375532007-05-08 00:37:04 -07005117 pci_set_drvdata(pdev, &cy_card[card_no]);
5118
5119 if (device_id == PCI_DEVICE_ID_CYCLOM_Y_Lo ||
5120 device_id == PCI_DEVICE_ID_CYCLOM_Y_Hi) {
Jiri Slaby58936d82007-05-08 00:36:13 -07005121 /* enable interrupts in the PCI interface */
Jiri Slaby31375532007-05-08 00:37:04 -07005122 plx_ver = readb(addr2 + CyPLX_VER) & 0x0f;
Jiri Slaby58936d82007-05-08 00:36:13 -07005123 switch (plx_ver) {
5124 case PLX_9050:
Jiri Slaby31375532007-05-08 00:37:04 -07005125 cy_writeb(addr0 + 0x4c, 0x43);
Jiri Slaby58936d82007-05-08 00:36:13 -07005126 break;
5127
5128 case PLX_9060:
5129 case PLX_9080:
5130 default: /* Old boards, use PLX_9060 */
Jiri Slaby97e87f82009-06-11 12:29:27 +01005131 {
5132 struct RUNTIME_9060 __iomem *ctl_addr = addr0;
5133 plx_init(pdev, irq, ctl_addr);
5134 cy_writew(&ctl_addr->intr_ctrl_stat,
5135 readw(&ctl_addr->intr_ctrl_stat) | 0x0900);
Jiri Slaby58936d82007-05-08 00:36:13 -07005136 break;
5137 }
Jiri Slaby97e87f82009-06-11 12:29:27 +01005138 }
Jiri Slaby58936d82007-05-08 00:36:13 -07005139 }
5140
Jiri Slaby31375532007-05-08 00:37:04 -07005141 dev_info(&pdev->dev, "%s/PCI #%d found: %d channels starting from "
5142 "port %d.\n", card_name, card_no + 1, nchan, cy_next_channel);
5143 for (i = cy_next_channel; i < cy_next_channel + nchan; i++)
5144 tty_register_device(cy_serial_driver, i, &pdev->dev);
5145 cy_next_channel += nchan;
5146
Jiri Slaby58936d82007-05-08 00:36:13 -07005147 return 0;
Jiri Slaby31375532007-05-08 00:37:04 -07005148err_null:
5149 cy_card[card_no].base_addr = NULL;
5150 free_irq(irq, &cy_card[card_no]);
5151err_unmap:
Jiri Slaby24e6fd42008-10-13 10:34:09 +01005152 iounmap(addr0);
Jiri Slaby31375532007-05-08 00:37:04 -07005153 if (addr2)
Jiri Slaby24e6fd42008-10-13 10:34:09 +01005154 iounmap(addr2);
Jiri Slaby31375532007-05-08 00:37:04 -07005155err_reg:
5156 pci_release_regions(pdev);
5157err_dis:
5158 pci_disable_device(pdev);
5159err:
5160 return retval;
Jiri Slaby58936d82007-05-08 00:36:13 -07005161}
Jiri Slaby58936d82007-05-08 00:36:13 -07005162
Jiri Slaby6747cd92007-05-08 00:36:34 -07005163static void __devexit cy_pci_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164{
Jiri Slaby38d09092007-05-08 00:36:10 -07005165 struct cyclades_card *cinfo = pci_get_drvdata(pdev);
Jiri Slabyf3851e72007-05-08 00:36:16 -07005166 unsigned int i;
Jiri Slaby38d09092007-05-08 00:36:10 -07005167
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005168 /* non-Z with old PLX */
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07005169 if (!IS_CYC_Z(*cinfo) && (readb(cinfo->base_addr + CyPLX_VER) & 0x0f) ==
5170 PLX_9050)
Jiri Slaby97e87f82009-06-11 12:29:27 +01005171 cy_writeb(cinfo->ctl_addr.p9050 + 0x4c, 0);
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005172 else
5173#ifndef CONFIG_CYZ_INTR
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07005174 if (!IS_CYC_Z(*cinfo))
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005175#endif
Jiri Slaby97e87f82009-06-11 12:29:27 +01005176 cy_writew(&cinfo->ctl_addr.p9060->intr_ctrl_stat,
5177 readw(&cinfo->ctl_addr.p9060->intr_ctrl_stat) &
5178 ~0x0900);
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005179
Jiri Slaby24e6fd42008-10-13 10:34:09 +01005180 iounmap(cinfo->base_addr);
Jiri Slaby97e87f82009-06-11 12:29:27 +01005181 if (cinfo->ctl_addr.p9050)
5182 iounmap(cinfo->ctl_addr.p9050);
Jiri Slaby38d09092007-05-08 00:36:10 -07005183 if (cinfo->irq
5184#ifndef CONFIG_CYZ_INTR
Jiri Slabyc2ad4c72007-05-08 00:36:32 -07005185 && !IS_CYC_Z(*cinfo)
Jiri Slaby38d09092007-05-08 00:36:10 -07005186#endif /* CONFIG_CYZ_INTR */
5187 )
5188 free_irq(cinfo->irq, cinfo);
5189 pci_release_regions(pdev);
5190
5191 cinfo->base_addr = NULL;
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005192 for (i = cinfo->first_line; i < cinfo->first_line +
5193 cinfo->nports; i++)
5194 tty_unregister_device(cy_serial_driver, i);
Jiri Slabydd025c02007-05-08 00:37:02 -07005195 cinfo->nports = 0;
5196 kfree(cinfo->ports);
Jiri Slaby38d09092007-05-08 00:36:10 -07005197}
5198
Jiri Slaby6747cd92007-05-08 00:36:34 -07005199static struct pci_driver cy_pci_driver = {
5200 .name = "cyclades",
5201 .id_table = cy_pci_dev_id,
5202 .probe = cy_pci_probe,
5203 .remove = __devexit_p(cy_pci_remove)
5204};
5205#endif
5206
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005207static int cyclades_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208{
Jiri Slaby02f11752006-12-08 02:39:28 -08005209 struct cyclades_port *info;
Jiri Slabydd025c02007-05-08 00:37:02 -07005210 unsigned int i, j;
Jiri Slaby02f11752006-12-08 02:39:28 -08005211 __u32 cur_jifs = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005213 seq_puts(m, "Dev TimeOpen BytesOut IdleOut BytesIn "
Jiri Slaby02f11752006-12-08 02:39:28 -08005214 "IdleIn Overruns Ldisc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215
Jiri Slaby02f11752006-12-08 02:39:28 -08005216 /* Output one line for each known port */
Jiri Slabydd025c02007-05-08 00:37:02 -07005217 for (i = 0; i < NR_CARDS; i++)
5218 for (j = 0; j < cy_card[i].nports; j++) {
5219 info = &cy_card[i].ports[j];
Jiri Slaby02f11752006-12-08 02:39:28 -08005220
Alan Cox77451e52008-07-16 21:57:02 +01005221 if (info->port.count)
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005222 seq_printf(m, "%3d %8lu %10lu %8lu "
Jiri Slabydd025c02007-05-08 00:37:02 -07005223 "%10lu %8lu %9lu %6ld\n", info->line,
5224 (cur_jifs - info->idle_stats.in_use) /
5225 HZ, info->idle_stats.xmit_bytes,
5226 (cur_jifs - info->idle_stats.xmit_idle)/
5227 HZ, info->idle_stats.recv_bytes,
5228 (cur_jifs - info->idle_stats.recv_idle)/
5229 HZ, info->idle_stats.overruns,
Alan Coxa352def2008-07-16 21:53:12 +01005230 /* FIXME: double check locking */
Alan Cox77451e52008-07-16 21:57:02 +01005231 (long)info->port.tty->ldisc.ops->num);
Jiri Slabydd025c02007-05-08 00:37:02 -07005232 else
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005233 seq_printf(m, "%3d %8lu %10lu %8lu "
Jiri Slabydd025c02007-05-08 00:37:02 -07005234 "%10lu %8lu %9lu %6ld\n",
5235 info->line, 0L, 0L, 0L, 0L, 0L, 0L, 0L);
Jiri Slaby02f11752006-12-08 02:39:28 -08005236 }
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238}
5239
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005240static int cyclades_proc_open(struct inode *inode, struct file *file)
5241{
5242 return single_open(file, cyclades_proc_show, NULL);
5243}
5244
5245static const struct file_operations cyclades_proc_fops = {
5246 .owner = THIS_MODULE,
5247 .open = cyclades_proc_open,
5248 .read = seq_read,
5249 .llseek = seq_lseek,
5250 .release = single_release,
5251};
5252
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253/* The serial driver boot-time initialization code!
5254 Hardware I/O ports are mapped to character special devices on a
5255 first found, first allocated manner. That is, this code searches
5256 for Cyclom cards in the system. As each is found, it is probed
5257 to discover how many chips (and thus how many ports) are present.
5258 These ports are mapped to the tty ports 32 and upward in monotonic
5259 fashion. If an 8-port card is replaced with a 16-port card, the
5260 port mapping on a following card will shift.
5261
5262 This approach is different from what is used in the other serial
5263 device driver because the Cyclom is more properly a multiplexer,
5264 not just an aggregation of serial ports on one card.
5265
5266 If there are more cards with more ports than have been
5267 statically allocated above, a warning is printed and the
5268 extra ports are ignored.
5269 */
5270
Jeff Dikeb68e31d2006-10-02 02:17:18 -07005271static const struct tty_operations cy_ops = {
Jiri Slaby02f11752006-12-08 02:39:28 -08005272 .open = cy_open,
5273 .close = cy_close,
5274 .write = cy_write,
5275 .put_char = cy_put_char,
5276 .flush_chars = cy_flush_chars,
5277 .write_room = cy_write_room,
5278 .chars_in_buffer = cy_chars_in_buffer,
5279 .flush_buffer = cy_flush_buffer,
5280 .ioctl = cy_ioctl,
5281 .throttle = cy_throttle,
5282 .unthrottle = cy_unthrottle,
5283 .set_termios = cy_set_termios,
5284 .stop = cy_stop,
5285 .start = cy_start,
5286 .hangup = cy_hangup,
5287 .break_ctl = cy_break,
5288 .wait_until_sent = cy_wait_until_sent,
Jiri Slaby02f11752006-12-08 02:39:28 -08005289 .tiocmget = cy_tiocmget,
5290 .tiocmset = cy_tiocmset,
Alexey Dobriyan444697d2009-03-31 15:19:15 -07005291 .proc_fops = &cyclades_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292};
5293
Jiri Slaby02f11752006-12-08 02:39:28 -08005294static int __init cy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295{
Jiri Slabydd025c02007-05-08 00:37:02 -07005296 unsigned int nboards;
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005297 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298
Jiri Slaby02f11752006-12-08 02:39:28 -08005299 cy_serial_driver = alloc_tty_driver(NR_PORTS);
5300 if (!cy_serial_driver)
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005301 goto err;
Jiri Slaby21719192007-05-08 00:36:42 -07005302
5303 printk(KERN_INFO "Cyclades driver " CY_VERSION " (built %s %s)\n",
5304 __DATE__, __TIME__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305
Jiri Slaby02f11752006-12-08 02:39:28 -08005306 /* Initialize the tty_driver structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307
Jiri Slaby02f11752006-12-08 02:39:28 -08005308 cy_serial_driver->owner = THIS_MODULE;
5309 cy_serial_driver->driver_name = "cyclades";
5310 cy_serial_driver->name = "ttyC";
5311 cy_serial_driver->major = CYCLADES_MAJOR;
5312 cy_serial_driver->minor_start = 0;
5313 cy_serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
5314 cy_serial_driver->subtype = SERIAL_TYPE_NORMAL;
5315 cy_serial_driver->init_termios = tty_std_termios;
5316 cy_serial_driver->init_termios.c_cflag =
5317 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005318 cy_serial_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Jiri Slaby02f11752006-12-08 02:39:28 -08005319 tty_set_operations(cy_serial_driver, &cy_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005321 retval = tty_register_driver(cy_serial_driver);
5322 if (retval) {
5323 printk(KERN_ERR "Couldn't register Cyclades serial driver\n");
5324 goto err_frtty;
5325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326
Jiri Slaby02f11752006-12-08 02:39:28 -08005327 /* the code below is responsible to find the boards. Each different
5328 type of board has its own detection routine. If a board is found,
5329 the next cy_card structure available is set by the detection
5330 routine. These functions are responsible for checking the
5331 availability of cy_card and cy_port data structures and updating
5332 the cy_next_channel. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333
Jiri Slaby02f11752006-12-08 02:39:28 -08005334 /* look for isa boards */
Jiri Slaby14a55a62007-05-08 00:36:18 -07005335 nboards = cy_detect_isa();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336
Jiri Slaby6747cd92007-05-08 00:36:34 -07005337#ifdef CONFIG_PCI
Jiri Slaby02f11752006-12-08 02:39:28 -08005338 /* look for pci boards */
Jiri Slaby6747cd92007-05-08 00:36:34 -07005339 retval = pci_register_driver(&cy_pci_driver);
Jesper Juhld941ea72007-10-18 03:06:23 -07005340 if (retval && !nboards) {
5341 tty_unregister_driver(cy_serial_driver);
5342 goto err_frtty;
5343 }
Jiri Slaby6747cd92007-05-08 00:36:34 -07005344#endif
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005345
5346 return 0;
Jiri Slaby9dacf3b2007-05-08 00:36:20 -07005347err_frtty:
5348 put_tty_driver(cy_serial_driver);
5349err:
5350 return retval;
Jiri Slaby02f11752006-12-08 02:39:28 -08005351} /* cy_init */
5352
5353static void __exit cy_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354{
Jiri Slabydd025c02007-05-08 00:37:02 -07005355 struct cyclades_card *card;
Jiri Slaby65f76a82007-10-18 03:06:22 -07005356 unsigned int i, e1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
5358#ifndef CONFIG_CYZ_INTR
Jiri Slabyb7050902007-05-08 00:35:48 -07005359 del_timer_sync(&cyz_timerlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360#endif /* CONFIG_CYZ_INTR */
5361
Alan Cox15ed6cc2008-04-30 00:53:55 -07005362 e1 = tty_unregister_driver(cy_serial_driver);
5363 if (e1)
Jiri Slaby21719192007-05-08 00:36:42 -07005364 printk(KERN_ERR "failed to unregister Cyclades serial "
5365 "driver(%d)\n", e1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366
Jiri Slaby6747cd92007-05-08 00:36:34 -07005367#ifdef CONFIG_PCI
5368 pci_unregister_driver(&cy_pci_driver);
5369#endif
5370
Jiri Slaby02f11752006-12-08 02:39:28 -08005371 for (i = 0; i < NR_CARDS; i++) {
Jiri Slabydd025c02007-05-08 00:37:02 -07005372 card = &cy_card[i];
5373 if (card->base_addr) {
Jiri Slaby85c93fa2007-05-08 00:36:23 -07005374 /* clear interrupt */
Jiri Slabydd025c02007-05-08 00:37:02 -07005375 cy_writeb(card->base_addr + Cy_ClrIntr, 0);
5376 iounmap(card->base_addr);
Jiri Slaby97e87f82009-06-11 12:29:27 +01005377 if (card->ctl_addr.p9050)
5378 iounmap(card->ctl_addr.p9050);
Jiri Slabydd025c02007-05-08 00:37:02 -07005379 if (card->irq
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380#ifndef CONFIG_CYZ_INTR
Jiri Slabydd025c02007-05-08 00:37:02 -07005381 && !IS_CYC_Z(*card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382#endif /* CONFIG_CYZ_INTR */
Jiri Slaby02f11752006-12-08 02:39:28 -08005383 )
Jiri Slabydd025c02007-05-08 00:37:02 -07005384 free_irq(card->irq, card);
Jiri Slaby65f76a82007-10-18 03:06:22 -07005385 for (e1 = card->first_line; e1 < card->first_line +
Jiri Slabydd025c02007-05-08 00:37:02 -07005386 card->nports; e1++)
Jiri Slaby6ad1ccc2007-05-08 00:36:22 -07005387 tty_unregister_device(cy_serial_driver, e1);
Jiri Slabydd025c02007-05-08 00:37:02 -07005388 kfree(card->ports);
Jiri Slaby02f11752006-12-08 02:39:28 -08005389 }
5390 }
Jiri Slabyf2462bf2007-05-08 00:37:01 -07005391
5392 put_tty_driver(cy_serial_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393} /* cy_cleanup_module */
5394
5395module_init(cy_init);
5396module_exit(cy_cleanup_module);
5397
5398MODULE_LICENSE("GPL");
Jiri Slabyc8e16932007-05-08 00:37:05 -07005399MODULE_VERSION(CY_VERSION);
Scott James Remnant9f56fad2009-04-06 17:33:04 +01005400MODULE_ALIAS_CHARDEV_MAJOR(CYCLADES_MAJOR);