blob: 1c8afd98e14e9e65d023b85827da621ae4e9a5d8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/serial/pmac_zilog.c
3 *
4 * Driver for PowerMac Z85c30 based ESCC cell found in the
5 * "macio" ASICs of various PowerMac models
6 *
7 * Copyright (C) 2003 Ben. Herrenschmidt (benh@kernel.crashing.org)
8 *
9 * Derived from drivers/macintosh/macserial.c by Paul Mackerras
10 * and drivers/serial/sunzilog.c by David S. Miller
11 *
12 * Hrm... actually, I ripped most of sunzilog (Thanks David !) and
13 * adapted special tweaks needed for us. I don't think it's worth
14 * merging back those though. The DMA code still has to get in
15 * and once done, I expect that driver to remain fairly stable in
16 * the long term, unless we change the driver model again...
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 *
32 * 2004-08-06 Harald Welte <laforge@gnumonks.org>
33 * - Enable BREAK interrupt
34 * - Add support for sysreq
35 *
36 * TODO: - Add DMA support
37 * - Defer port shutdown to a few seconds after close
38 * - maybe put something right into uap->clk_divisor
39 */
40
41#undef DEBUG
42#undef DEBUG_HARD
43#undef USE_CTRL_O_SYSRQ
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/module.h>
46#include <linux/tty.h>
47
48#include <linux/tty_flip.h>
49#include <linux/major.h>
50#include <linux/string.h>
51#include <linux/fcntl.h>
52#include <linux/mm.h>
53#include <linux/kernel.h>
54#include <linux/delay.h>
55#include <linux/init.h>
56#include <linux/console.h>
57#include <linux/slab.h>
58#include <linux/adb.h>
59#include <linux/pmu.h>
60#include <linux/bitops.h>
61#include <linux/sysrq.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000062#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <asm/sections.h>
64#include <asm/io.h>
65#include <asm/irq.h>
66#include <asm/prom.h>
67#include <asm/machdep.h>
68#include <asm/pmac_feature.h>
69#include <asm/dbdma.h>
70#include <asm/macio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#if defined (CONFIG_SERIAL_PMACZILOG_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
73#define SUPPORT_SYSRQ
74#endif
75
76#include <linux/serial.h>
77#include <linux/serial_core.h>
78
79#include "pmac_zilog.h"
80
81/* Not yet implemented */
82#undef HAS_DBDMA
83
84static char version[] __initdata = "pmac_zilog: 0.6 (Benjamin Herrenschmidt <benh@kernel.crashing.org>)";
85MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
86MODULE_DESCRIPTION("Driver for the PowerMac serial ports.");
87MODULE_LICENSE("GPL");
88
89#define PWRDBG(fmt, arg...) printk(KERN_DEBUG fmt , ## arg)
90
David Woodhousee4533b22007-04-05 00:19:43 +100091#ifdef CONFIG_SERIAL_PMACZILOG_TTYS
92#define PMACZILOG_MAJOR TTY_MAJOR
93#define PMACZILOG_MINOR 64
94#define PMACZILOG_NAME "ttyS"
95#else
96#define PMACZILOG_MAJOR 204
97#define PMACZILOG_MINOR 192
98#define PMACZILOG_NAME "ttyPZ"
99#endif
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102/*
103 * For the sake of early serial console, we can do a pre-probe
104 * (optional) of the ports at rather early boot time.
105 */
106static struct uart_pmac_port pmz_ports[MAX_ZS_PORTS];
107static int pmz_ports_count;
Arjan van de Venf392ecf2006-01-12 18:44:32 +0000108static DEFINE_MUTEX(pmz_irq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110static struct uart_driver pmz_uart_reg = {
111 .owner = THIS_MODULE,
David Woodhousee4533b22007-04-05 00:19:43 +1000112 .driver_name = PMACZILOG_NAME,
113 .dev_name = PMACZILOG_NAME,
114 .major = PMACZILOG_MAJOR,
115 .minor = PMACZILOG_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
118
119/*
120 * Load all registers to reprogram the port
121 * This function must only be called when the TX is not busy. The UART
122 * port lock must be held and local interrupts disabled.
123 */
124static void pmz_load_zsregs(struct uart_pmac_port *uap, u8 *regs)
125{
126 int i;
127
128 if (ZS_IS_ASLEEP(uap))
129 return;
130
131 /* Let pending transmits finish. */
132 for (i = 0; i < 1000; i++) {
133 unsigned char stat = read_zsreg(uap, R1);
134 if (stat & ALL_SNT)
135 break;
136 udelay(100);
137 }
138
139 ZS_CLEARERR(uap);
140 zssync(uap);
141 ZS_CLEARFIFO(uap);
142 zssync(uap);
143 ZS_CLEARERR(uap);
144
145 /* Disable all interrupts. */
146 write_zsreg(uap, R1,
147 regs[R1] & ~(RxINT_MASK | TxINT_ENAB | EXT_INT_ENAB));
148
149 /* Set parity, sync config, stop bits, and clock divisor. */
150 write_zsreg(uap, R4, regs[R4]);
151
152 /* Set misc. TX/RX control bits. */
153 write_zsreg(uap, R10, regs[R10]);
154
155 /* Set TX/RX controls sans the enable bits. */
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100156 write_zsreg(uap, R3, regs[R3] & ~RxENABLE);
157 write_zsreg(uap, R5, regs[R5] & ~TxENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* now set R7 "prime" on ESCC */
160 write_zsreg(uap, R15, regs[R15] | EN85C30);
161 write_zsreg(uap, R7, regs[R7P]);
162
163 /* make sure we use R7 "non-prime" on ESCC */
164 write_zsreg(uap, R15, regs[R15] & ~EN85C30);
165
166 /* Synchronous mode config. */
167 write_zsreg(uap, R6, regs[R6]);
168 write_zsreg(uap, R7, regs[R7]);
169
170 /* Disable baud generator. */
171 write_zsreg(uap, R14, regs[R14] & ~BRENAB);
172
173 /* Clock mode control. */
174 write_zsreg(uap, R11, regs[R11]);
175
176 /* Lower and upper byte of baud rate generator divisor. */
177 write_zsreg(uap, R12, regs[R12]);
178 write_zsreg(uap, R13, regs[R13]);
179
180 /* Now rewrite R14, with BRENAB (if set). */
181 write_zsreg(uap, R14, regs[R14]);
182
183 /* Reset external status interrupts. */
184 write_zsreg(uap, R0, RES_EXT_INT);
185 write_zsreg(uap, R0, RES_EXT_INT);
186
187 /* Rewrite R3/R5, this time without enables masked. */
188 write_zsreg(uap, R3, regs[R3]);
189 write_zsreg(uap, R5, regs[R5]);
190
191 /* Rewrite R1, this time without IRQ enabled masked. */
192 write_zsreg(uap, R1, regs[R1]);
193
194 /* Enable interrupts */
195 write_zsreg(uap, R9, regs[R9]);
196}
197
198/*
199 * We do like sunzilog to avoid disrupting pending Tx
200 * Reprogram the Zilog channel HW registers with the copies found in the
201 * software state struct. If the transmitter is busy, we defer this update
202 * until the next TX complete interrupt. Else, we do it right now.
203 *
204 * The UART port lock must be held and local interrupts disabled.
205 */
206static void pmz_maybe_update_regs(struct uart_pmac_port *uap)
207{
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100208 if (!ZS_REGS_HELD(uap)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (ZS_TX_ACTIVE(uap)) {
210 uap->flags |= PMACZILOG_FLAG_REGS_HELD;
211 } else {
212 pmz_debug("pmz: maybe_update_regs: updating\n");
213 pmz_load_zsregs(uap, uap->curregs);
214 }
215 }
216}
217
David Howells7d12e782006-10-05 14:55:46 +0100218static struct tty_struct *pmz_receive_chars(struct uart_pmac_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 struct tty_struct *tty = NULL;
Alan Cox33f0f882006-01-09 20:54:13 -0800221 unsigned char ch, r1, drop, error, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 int loops = 0;
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* The interrupt can be enabled when the port isn't open, typically
225 * that happens when using one port is open and the other closed (stale
226 * interrupt) or when one port is used as a console.
227 */
228 if (!ZS_IS_OPEN(uap)) {
229 pmz_debug("pmz: draining input\n");
230 /* Port is closed, drain input data */
231 for (;;) {
232 if ((++loops) > 1000)
233 goto flood;
234 (void)read_zsreg(uap, R1);
235 write_zsreg(uap, R0, ERR_RES);
236 (void)read_zsdata(uap);
237 ch = read_zsreg(uap, R0);
238 if (!(ch & Rx_CH_AV))
239 break;
240 }
241 return NULL;
242 }
243
244 /* Sanity check, make sure the old bug is no longer happening */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700245 if (uap->port.state == NULL || uap->port.state->port.tty == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 WARN_ON(1);
247 (void)read_zsdata(uap);
248 return NULL;
249 }
Alan Coxebd2c8f2009-09-19 13:13:28 -0700250 tty = uap->port.state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 while (1) {
253 error = 0;
254 drop = 0;
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 r1 = read_zsreg(uap, R1);
257 ch = read_zsdata(uap);
258
259 if (r1 & (PAR_ERR | Rx_OVR | CRC_ERR)) {
260 write_zsreg(uap, R0, ERR_RES);
261 zssync(uap);
262 }
263
264 ch &= uap->parity_mask;
265 if (ch == 0 && uap->flags & PMACZILOG_FLAG_BREAK) {
266 uap->flags &= ~PMACZILOG_FLAG_BREAK;
267 }
268
269#if defined(CONFIG_MAGIC_SYSRQ) && defined(CONFIG_SERIAL_CORE_CONSOLE)
270#ifdef USE_CTRL_O_SYSRQ
271 /* Handle the SysRq ^O Hack */
272 if (ch == '\x0f') {
273 uap->port.sysrq = jiffies + HZ*5;
274 goto next_char;
275 }
276#endif /* USE_CTRL_O_SYSRQ */
277 if (uap->port.sysrq) {
278 int swallow;
279 spin_unlock(&uap->port.lock);
David Howells7d12e782006-10-05 14:55:46 +0100280 swallow = uart_handle_sysrq_char(&uap->port, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 spin_lock(&uap->port.lock);
282 if (swallow)
283 goto next_char;
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285#endif /* CONFIG_MAGIC_SYSRQ && CONFIG_SERIAL_CORE_CONSOLE */
286
287 /* A real serial line, record the character and status. */
288 if (drop)
289 goto next_char;
290
Alan Cox33f0f882006-01-09 20:54:13 -0800291 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 uap->port.icount.rx++;
293
294 if (r1 & (PAR_ERR | Rx_OVR | CRC_ERR | BRK_ABRT)) {
295 error = 1;
296 if (r1 & BRK_ABRT) {
297 pmz_debug("pmz: got break !\n");
298 r1 &= ~(PAR_ERR | CRC_ERR);
299 uap->port.icount.brk++;
300 if (uart_handle_break(&uap->port))
301 goto next_char;
302 }
303 else if (r1 & PAR_ERR)
304 uap->port.icount.parity++;
305 else if (r1 & CRC_ERR)
306 uap->port.icount.frame++;
307 if (r1 & Rx_OVR)
308 uap->port.icount.overrun++;
309 r1 &= uap->port.read_status_mask;
310 if (r1 & BRK_ABRT)
Alan Cox33f0f882006-01-09 20:54:13 -0800311 flag = TTY_BREAK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 else if (r1 & PAR_ERR)
Alan Cox33f0f882006-01-09 20:54:13 -0800313 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 else if (r1 & CRC_ERR)
Alan Cox33f0f882006-01-09 20:54:13 -0800315 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
317
318 if (uap->port.ignore_status_mask == 0xff ||
319 (r1 & uap->port.ignore_status_mask) == 0) {
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100320 tty_insert_flip_char(tty, ch, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Alan Cox33f0f882006-01-09 20:54:13 -0800322 if (r1 & Rx_OVR)
323 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 next_char:
325 /* We can get stuck in an infinite loop getting char 0 when the
326 * line is in a wrong HW state, we break that here.
327 * When that happens, I disable the receive side of the driver.
328 * Note that what I've been experiencing is a real irq loop where
329 * I'm getting flooded regardless of the actual port speed.
330 * Something stange is going on with the HW
331 */
332 if ((++loops) > 1000)
333 goto flood;
334 ch = read_zsreg(uap, R0);
335 if (!(ch & Rx_CH_AV))
336 break;
337 }
338
339 return tty;
340 flood:
341 uap->curregs[R1] &= ~(EXT_INT_ENAB | TxINT_ENAB | RxINT_MASK);
342 write_zsreg(uap, R1, uap->curregs[R1]);
343 zssync(uap);
344 dev_err(&uap->dev->ofdev.dev, "pmz: rx irq flood !\n");
345 return tty;
346}
347
David Howells7d12e782006-10-05 14:55:46 +0100348static void pmz_status_handle(struct uart_pmac_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 unsigned char status;
351
352 status = read_zsreg(uap, R0);
353 write_zsreg(uap, R0, RES_EXT_INT);
354 zssync(uap);
355
356 if (ZS_IS_OPEN(uap) && ZS_WANTS_MODEM_STATUS(uap)) {
357 if (status & SYNC_HUNT)
358 uap->port.icount.dsr++;
359
360 /* The Zilog just gives us an interrupt when DCD/CTS/etc. change.
361 * But it does not tell us which bit has changed, we have to keep
362 * track of this ourselves.
363 * The CTS input is inverted for some reason. -- paulus
364 */
365 if ((status ^ uap->prev_status) & DCD)
366 uart_handle_dcd_change(&uap->port,
367 (status & DCD));
368 if ((status ^ uap->prev_status) & CTS)
369 uart_handle_cts_change(&uap->port,
370 !(status & CTS));
371
Alan Coxbdc04e32009-09-19 13:13:31 -0700372 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
375 if (status & BRK_ABRT)
376 uap->flags |= PMACZILOG_FLAG_BREAK;
377
378 uap->prev_status = status;
379}
380
381static void pmz_transmit_chars(struct uart_pmac_port *uap)
382{
383 struct circ_buf *xmit;
384
385 if (ZS_IS_ASLEEP(uap))
386 return;
387 if (ZS_IS_CONS(uap)) {
388 unsigned char status = read_zsreg(uap, R0);
389
390 /* TX still busy? Just wait for the next TX done interrupt.
391 *
392 * It can occur because of how we do serial console writes. It would
393 * be nice to transmit console writes just like we normally would for
394 * a TTY line. (ie. buffered and TX interrupt driven). That is not
395 * easy because console writes cannot sleep. One solution might be
396 * to poll on enough port->xmit space becomming free. -DaveM
397 */
398 if (!(status & Tx_BUF_EMP))
399 return;
400 }
401
402 uap->flags &= ~PMACZILOG_FLAG_TX_ACTIVE;
403
404 if (ZS_REGS_HELD(uap)) {
405 pmz_load_zsregs(uap, uap->curregs);
406 uap->flags &= ~PMACZILOG_FLAG_REGS_HELD;
407 }
408
409 if (ZS_TX_STOPPED(uap)) {
410 uap->flags &= ~PMACZILOG_FLAG_TX_STOPPED;
411 goto ack_tx_int;
412 }
413
Benjamin Herrenschmidt02ab8512010-01-10 17:51:42 +0000414 /* Under some circumstances, we see interrupts reported for
415 * a closed channel. The interrupt mask in R1 is clear, but
416 * R3 still signals the interrupts and we see them when taking
417 * an interrupt for the other channel (this could be a qemu
418 * bug but since the ESCC doc doesn't specify precsiely whether
419 * R3 interrup status bits are masked by R1 interrupt enable
420 * bits, better safe than sorry). --BenH.
421 */
422 if (!ZS_IS_OPEN(uap))
423 goto ack_tx_int;
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (uap->port.x_char) {
426 uap->flags |= PMACZILOG_FLAG_TX_ACTIVE;
427 write_zsdata(uap, uap->port.x_char);
428 zssync(uap);
429 uap->port.icount.tx++;
430 uap->port.x_char = 0;
431 return;
432 }
433
Alan Coxebd2c8f2009-09-19 13:13:28 -0700434 if (uap->port.state == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 goto ack_tx_int;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700436 xmit = &uap->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (uart_circ_empty(xmit)) {
438 uart_write_wakeup(&uap->port);
439 goto ack_tx_int;
440 }
441 if (uart_tx_stopped(&uap->port))
442 goto ack_tx_int;
443
444 uap->flags |= PMACZILOG_FLAG_TX_ACTIVE;
445 write_zsdata(uap, xmit->buf[xmit->tail]);
446 zssync(uap);
447
448 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
449 uap->port.icount.tx++;
450
451 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
452 uart_write_wakeup(&uap->port);
453
454 return;
455
456ack_tx_int:
457 write_zsreg(uap, R0, RES_Tx_P);
458 zssync(uap);
459}
460
461/* Hrm... we register that twice, fixme later.... */
David Howells7d12e782006-10-05 14:55:46 +0100462static irqreturn_t pmz_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 struct uart_pmac_port *uap = dev_id;
465 struct uart_pmac_port *uap_a;
466 struct uart_pmac_port *uap_b;
467 int rc = IRQ_NONE;
468 struct tty_struct *tty;
469 u8 r3;
470
471 uap_a = pmz_get_port_A(uap);
472 uap_b = uap_a->mate;
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100473
474 spin_lock(&uap_a->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 r3 = read_zsreg(uap_a, R3);
476
477#ifdef DEBUG_HARD
478 pmz_debug("irq, r3: %x\n", r3);
479#endif
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100480 /* Channel A */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 tty = NULL;
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100482 if (r3 & (CHAEXT | CHATxIP | CHARxIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 write_zsreg(uap_a, R0, RES_H_IUS);
484 zssync(uap_a);
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100485 if (r3 & CHAEXT)
486 pmz_status_handle(uap_a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (r3 & CHARxIP)
David Howells7d12e782006-10-05 14:55:46 +0100488 tty = pmz_receive_chars(uap_a);
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100489 if (r3 & CHATxIP)
490 pmz_transmit_chars(uap_a);
491 rc = IRQ_HANDLED;
492 }
493 spin_unlock(&uap_a->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (tty != NULL)
495 tty_flip_buffer_push(tty);
496
497 if (uap_b->node == NULL)
498 goto out;
499
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100500 spin_lock(&uap_b->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 tty = NULL;
502 if (r3 & (CHBEXT | CHBTxIP | CHBRxIP)) {
503 write_zsreg(uap_b, R0, RES_H_IUS);
504 zssync(uap_b);
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100505 if (r3 & CHBEXT)
506 pmz_status_handle(uap_b);
507 if (r3 & CHBRxIP)
508 tty = pmz_receive_chars(uap_b);
509 if (r3 & CHBTxIP)
510 pmz_transmit_chars(uap_b);
511 rc = IRQ_HANDLED;
512 }
513 spin_unlock(&uap_b->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (tty != NULL)
515 tty_flip_buffer_push(tty);
516
517 out:
518#ifdef DEBUG_HARD
519 pmz_debug("irq done.\n");
520#endif
521 return rc;
522}
523
524/*
525 * Peek the status register, lock not held by caller
526 */
527static inline u8 pmz_peek_status(struct uart_pmac_port *uap)
528{
529 unsigned long flags;
530 u8 status;
531
532 spin_lock_irqsave(&uap->port.lock, flags);
533 status = read_zsreg(uap, R0);
534 spin_unlock_irqrestore(&uap->port.lock, flags);
535
536 return status;
537}
538
539/*
540 * Check if transmitter is empty
541 * The port lock is not held.
542 */
543static unsigned int pmz_tx_empty(struct uart_port *port)
544{
545 struct uart_pmac_port *uap = to_pmz(port);
546 unsigned char status;
547
548 if (ZS_IS_ASLEEP(uap) || uap->node == NULL)
549 return TIOCSER_TEMT;
550
551 status = pmz_peek_status(to_pmz(port));
552 if (status & Tx_BUF_EMP)
553 return TIOCSER_TEMT;
554 return 0;
555}
556
557/*
558 * Set Modem Control (RTS & DTR) bits
559 * The port lock is held and interrupts are disabled.
560 * Note: Shall we really filter out RTS on external ports or
561 * should that be dealt at higher level only ?
562 */
563static void pmz_set_mctrl(struct uart_port *port, unsigned int mctrl)
564{
565 struct uart_pmac_port *uap = to_pmz(port);
566 unsigned char set_bits, clear_bits;
567
568 /* Do nothing for irda for now... */
569 if (ZS_IS_IRDA(uap))
570 return;
571 /* We get called during boot with a port not up yet */
572 if (ZS_IS_ASLEEP(uap) ||
573 !(ZS_IS_OPEN(uap) || ZS_IS_CONS(uap)))
574 return;
575
576 set_bits = clear_bits = 0;
577
578 if (ZS_IS_INTMODEM(uap)) {
579 if (mctrl & TIOCM_RTS)
580 set_bits |= RTS;
581 else
582 clear_bits |= RTS;
583 }
584 if (mctrl & TIOCM_DTR)
585 set_bits |= DTR;
586 else
587 clear_bits |= DTR;
588
589 /* NOTE: Not subject to 'transmitter active' rule. */
590 uap->curregs[R5] |= set_bits;
591 uap->curregs[R5] &= ~clear_bits;
592 if (ZS_IS_ASLEEP(uap))
593 return;
594 write_zsreg(uap, R5, uap->curregs[R5]);
595 pmz_debug("pmz_set_mctrl: set bits: %x, clear bits: %x -> %x\n",
596 set_bits, clear_bits, uap->curregs[R5]);
597 zssync(uap);
598}
599
600/*
601 * Get Modem Control bits (only the input ones, the core will
602 * or that with a cached value of the control ones)
Russell Kingc5f46442005-06-29 09:42:38 +0100603 * The port lock is held and interrupts are disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
605static unsigned int pmz_get_mctrl(struct uart_port *port)
606{
607 struct uart_pmac_port *uap = to_pmz(port);
608 unsigned char status;
609 unsigned int ret;
610
611 if (ZS_IS_ASLEEP(uap) || uap->node == NULL)
612 return 0;
613
Russell Kingc5f46442005-06-29 09:42:38 +0100614 status = read_zsreg(uap, R0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 ret = 0;
617 if (status & DCD)
618 ret |= TIOCM_CAR;
619 if (status & SYNC_HUNT)
620 ret |= TIOCM_DSR;
621 if (!(status & CTS))
622 ret |= TIOCM_CTS;
623
624 return ret;
625}
626
627/*
628 * Stop TX side. Dealt like sunzilog at next Tx interrupt,
Russell Kingb129a8c2005-08-31 10:12:14 +0100629 * though for DMA, we will have to do a bit more.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 * The port lock is held and interrupts are disabled.
631 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100632static void pmz_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 to_pmz(port)->flags |= PMACZILOG_FLAG_TX_STOPPED;
635}
636
637/*
638 * Kick the Tx side.
639 * The port lock is held and interrupts are disabled.
640 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100641static void pmz_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 struct uart_pmac_port *uap = to_pmz(port);
644 unsigned char status;
645
646 pmz_debug("pmz: start_tx()\n");
647
648 uap->flags |= PMACZILOG_FLAG_TX_ACTIVE;
649 uap->flags &= ~PMACZILOG_FLAG_TX_STOPPED;
650
651 if (ZS_IS_ASLEEP(uap) || uap->node == NULL)
652 return;
653
654 status = read_zsreg(uap, R0);
655
656 /* TX busy? Just wait for the TX done interrupt. */
657 if (!(status & Tx_BUF_EMP))
658 return;
659
660 /* Send the first character to jump-start the TX done
661 * IRQ sending engine.
662 */
663 if (port->x_char) {
664 write_zsdata(uap, port->x_char);
665 zssync(uap);
666 port->icount.tx++;
667 port->x_char = 0;
668 } else {
Alan Coxebd2c8f2009-09-19 13:13:28 -0700669 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 write_zsdata(uap, xmit->buf[xmit->tail]);
672 zssync(uap);
673 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
674 port->icount.tx++;
675
676 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
677 uart_write_wakeup(&uap->port);
678 }
679 pmz_debug("pmz: start_tx() done.\n");
680}
681
682/*
683 * Stop Rx side, basically disable emitting of
684 * Rx interrupts on the port. We don't disable the rx
685 * side of the chip proper though
686 * The port lock is held.
687 */
688static void pmz_stop_rx(struct uart_port *port)
689{
690 struct uart_pmac_port *uap = to_pmz(port);
691
692 if (ZS_IS_ASLEEP(uap) || uap->node == NULL)
693 return;
694
695 pmz_debug("pmz: stop_rx()()\n");
696
697 /* Disable all RX interrupts. */
698 uap->curregs[R1] &= ~RxINT_MASK;
699 pmz_maybe_update_regs(uap);
700
701 pmz_debug("pmz: stop_rx() done.\n");
702}
703
704/*
705 * Enable modem status change interrupts
706 * The port lock is held.
707 */
708static void pmz_enable_ms(struct uart_port *port)
709{
710 struct uart_pmac_port *uap = to_pmz(port);
711 unsigned char new_reg;
712
713 if (ZS_IS_IRDA(uap) || uap->node == NULL)
714 return;
715 new_reg = uap->curregs[R15] | (DCDIE | SYNCIE | CTSIE);
716 if (new_reg != uap->curregs[R15]) {
717 uap->curregs[R15] = new_reg;
718
719 if (ZS_IS_ASLEEP(uap))
720 return;
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100721 /* NOTE: Not subject to 'transmitter active' rule. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 write_zsreg(uap, R15, uap->curregs[R15]);
723 }
724}
725
726/*
727 * Control break state emission
728 * The port lock is not held.
729 */
730static void pmz_break_ctl(struct uart_port *port, int break_state)
731{
732 struct uart_pmac_port *uap = to_pmz(port);
733 unsigned char set_bits, clear_bits, new_reg;
734 unsigned long flags;
735
736 if (uap->node == NULL)
737 return;
738 set_bits = clear_bits = 0;
739
740 if (break_state)
741 set_bits |= SND_BRK;
742 else
743 clear_bits |= SND_BRK;
744
745 spin_lock_irqsave(&port->lock, flags);
746
747 new_reg = (uap->curregs[R5] | set_bits) & ~clear_bits;
748 if (new_reg != uap->curregs[R5]) {
749 uap->curregs[R5] = new_reg;
750
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100751 /* NOTE: Not subject to 'transmitter active' rule. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (ZS_IS_ASLEEP(uap))
753 return;
754 write_zsreg(uap, R5, uap->curregs[R5]);
755 }
756
757 spin_unlock_irqrestore(&port->lock, flags);
758}
759
760/*
761 * Turn power on or off to the SCC and associated stuff
762 * (port drivers, modem, IR port, etc.)
763 * Returns the number of milliseconds we should wait before
764 * trying to use the port.
765 */
766static int pmz_set_scc_power(struct uart_pmac_port *uap, int state)
767{
768 int delay = 0;
769 int rc;
770
771 if (state) {
772 rc = pmac_call_feature(
773 PMAC_FTR_SCC_ENABLE, uap->node, uap->port_type, 1);
774 pmz_debug("port power on result: %d\n", rc);
775 if (ZS_IS_INTMODEM(uap)) {
776 rc = pmac_call_feature(
777 PMAC_FTR_MODEM_ENABLE, uap->node, 0, 1);
778 delay = 2500; /* wait for 2.5s before using */
779 pmz_debug("modem power result: %d\n", rc);
780 }
781 } else {
782 /* TODO: Make that depend on a timer, don't power down
783 * immediately
784 */
785 if (ZS_IS_INTMODEM(uap)) {
786 rc = pmac_call_feature(
787 PMAC_FTR_MODEM_ENABLE, uap->node, 0, 0);
788 pmz_debug("port power off result: %d\n", rc);
789 }
790 pmac_call_feature(PMAC_FTR_SCC_ENABLE, uap->node, uap->port_type, 0);
791 }
792 return delay;
793}
794
795/*
796 * FixZeroBug....Works around a bug in the SCC receving channel.
797 * Inspired from Darwin code, 15 Sept. 2000 -DanM
798 *
799 * The following sequence prevents a problem that is seen with O'Hare ASICs
800 * (most versions -- also with some Heathrow and Hydra ASICs) where a zero
801 * at the input to the receiver becomes 'stuck' and locks up the receiver.
802 * This problem can occur as a result of a zero bit at the receiver input
803 * coincident with any of the following events:
804 *
805 * The SCC is initialized (hardware or software).
806 * A framing error is detected.
807 * The clocking option changes from synchronous or X1 asynchronous
808 * clocking to X16, X32, or X64 asynchronous clocking.
809 * The decoding mode is changed among NRZ, NRZI, FM0, or FM1.
810 *
811 * This workaround attempts to recover from the lockup condition by placing
812 * the SCC in synchronous loopback mode with a fast clock before programming
813 * any of the asynchronous modes.
814 */
815static void pmz_fix_zero_bug_scc(struct uart_pmac_port *uap)
816{
817 write_zsreg(uap, 9, ZS_IS_CHANNEL_A(uap) ? CHRA : CHRB);
818 zssync(uap);
819 udelay(10);
820 write_zsreg(uap, 9, (ZS_IS_CHANNEL_A(uap) ? CHRA : CHRB) | NV);
821 zssync(uap);
822
823 write_zsreg(uap, 4, X1CLK | MONSYNC);
824 write_zsreg(uap, 3, Rx8);
825 write_zsreg(uap, 5, Tx8 | RTS);
826 write_zsreg(uap, 9, NV); /* Didn't we already do this? */
827 write_zsreg(uap, 11, RCBR | TCBR);
828 write_zsreg(uap, 12, 0);
829 write_zsreg(uap, 13, 0);
830 write_zsreg(uap, 14, (LOOPBAK | BRSRC));
831 write_zsreg(uap, 14, (LOOPBAK | BRSRC | BRENAB));
832 write_zsreg(uap, 3, Rx8 | RxENABLE);
833 write_zsreg(uap, 0, RES_EXT_INT);
834 write_zsreg(uap, 0, RES_EXT_INT);
835 write_zsreg(uap, 0, RES_EXT_INT); /* to kill some time */
836
837 /* The channel should be OK now, but it is probably receiving
838 * loopback garbage.
839 * Switch to asynchronous mode, disable the receiver,
840 * and discard everything in the receive buffer.
841 */
842 write_zsreg(uap, 9, NV);
843 write_zsreg(uap, 4, X16CLK | SB_MASK);
844 write_zsreg(uap, 3, Rx8);
845
846 while (read_zsreg(uap, 0) & Rx_CH_AV) {
847 (void)read_zsreg(uap, 8);
848 write_zsreg(uap, 0, RES_EXT_INT);
849 write_zsreg(uap, 0, ERR_RES);
850 }
851}
852
853/*
854 * Real startup routine, powers up the hardware and sets up
855 * the SCC. Returns a delay in ms where you need to wait before
856 * actually using the port, this is typically the internal modem
857 * powerup delay. This routine expect the lock to be taken.
858 */
859static int __pmz_startup(struct uart_pmac_port *uap)
860{
861 int pwr_delay = 0;
862
863 memset(&uap->curregs, 0, sizeof(uap->curregs));
864
865 /* Power up the SCC & underlying hardware (modem/irda) */
866 pwr_delay = pmz_set_scc_power(uap, 1);
867
868 /* Nice buggy HW ... */
869 pmz_fix_zero_bug_scc(uap);
870
871 /* Reset the channel */
872 uap->curregs[R9] = 0;
873 write_zsreg(uap, 9, ZS_IS_CHANNEL_A(uap) ? CHRA : CHRB);
874 zssync(uap);
875 udelay(10);
876 write_zsreg(uap, 9, 0);
877 zssync(uap);
878
879 /* Clear the interrupt registers */
880 write_zsreg(uap, R1, 0);
881 write_zsreg(uap, R0, ERR_RES);
882 write_zsreg(uap, R0, ERR_RES);
883 write_zsreg(uap, R0, RES_H_IUS);
884 write_zsreg(uap, R0, RES_H_IUS);
885
886 /* Setup some valid baud rate */
887 uap->curregs[R4] = X16CLK | SB1;
888 uap->curregs[R3] = Rx8;
889 uap->curregs[R5] = Tx8 | RTS;
890 if (!ZS_IS_IRDA(uap))
891 uap->curregs[R5] |= DTR;
892 uap->curregs[R12] = 0;
893 uap->curregs[R13] = 0;
894 uap->curregs[R14] = BRENAB;
895
896 /* Clear handshaking, enable BREAK interrupts */
897 uap->curregs[R15] = BRKIE;
898
899 /* Master interrupt enable */
900 uap->curregs[R9] |= NV | MIE;
901
902 pmz_load_zsregs(uap, uap->curregs);
903
904 /* Enable receiver and transmitter. */
905 write_zsreg(uap, R3, uap->curregs[R3] |= RxENABLE);
906 write_zsreg(uap, R5, uap->curregs[R5] |= TxENABLE);
907
908 /* Remember status for DCD/CTS changes */
909 uap->prev_status = read_zsreg(uap, R0);
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return pwr_delay;
912}
913
914static void pmz_irda_reset(struct uart_pmac_port *uap)
915{
916 uap->curregs[R5] |= DTR;
917 write_zsreg(uap, R5, uap->curregs[R5]);
918 zssync(uap);
919 mdelay(110);
920 uap->curregs[R5] &= ~DTR;
921 write_zsreg(uap, R5, uap->curregs[R5]);
922 zssync(uap);
923 mdelay(10);
924}
925
926/*
927 * This is the "normal" startup routine, using the above one
928 * wrapped with the lock and doing a schedule delay
929 */
930static int pmz_startup(struct uart_port *port)
931{
932 struct uart_pmac_port *uap = to_pmz(port);
933 unsigned long flags;
934 int pwr_delay = 0;
935
936 pmz_debug("pmz: startup()\n");
937
938 if (ZS_IS_ASLEEP(uap))
939 return -EAGAIN;
940 if (uap->node == NULL)
941 return -ENODEV;
942
Arjan van de Venf392ecf2006-01-12 18:44:32 +0000943 mutex_lock(&pmz_irq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 uap->flags |= PMACZILOG_FLAG_IS_OPEN;
946
947 /* A console is never powered down. Else, power up and
948 * initialize the chip
949 */
950 if (!ZS_IS_CONS(uap)) {
951 spin_lock_irqsave(&port->lock, flags);
952 pwr_delay = __pmz_startup(uap);
953 spin_unlock_irqrestore(&port->lock, flags);
954 }
955
956 pmz_get_port_A(uap)->flags |= PMACZILOG_FLAG_IS_IRQ_ON;
Thomas Gleixner40663cc2006-07-01 19:29:43 -0700957 if (request_irq(uap->port.irq, pmz_interrupt, IRQF_SHARED, "PowerMac Zilog", uap)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 dev_err(&uap->dev->ofdev.dev,
959 "Unable to register zs interrupt handler.\n");
960 pmz_set_scc_power(uap, 0);
Arjan van de Venf392ecf2006-01-12 18:44:32 +0000961 mutex_unlock(&pmz_irq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return -ENXIO;
963 }
964
Arjan van de Venf392ecf2006-01-12 18:44:32 +0000965 mutex_unlock(&pmz_irq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 /* Right now, we deal with delay by blocking here, I'll be
968 * smarter later on
969 */
970 if (pwr_delay != 0) {
971 pmz_debug("pmz: delaying %d ms\n", pwr_delay);
972 msleep(pwr_delay);
973 }
974
975 /* IrDA reset is done now */
976 if (ZS_IS_IRDA(uap))
977 pmz_irda_reset(uap);
978
979 /* Enable interrupts emission from the chip */
980 spin_lock_irqsave(&port->lock, flags);
981 uap->curregs[R1] |= INT_ALL_Rx | TxINT_ENAB;
982 if (!ZS_IS_EXTCLK(uap))
983 uap->curregs[R1] |= EXT_INT_ENAB;
984 write_zsreg(uap, R1, uap->curregs[R1]);
Finn Thain1f7b5ff2009-11-04 00:40:23 +1100985 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 pmz_debug("pmz: startup() done.\n");
988
989 return 0;
990}
991
992static void pmz_shutdown(struct uart_port *port)
993{
994 struct uart_pmac_port *uap = to_pmz(port);
995 unsigned long flags;
996
997 pmz_debug("pmz: shutdown()\n");
998
999 if (uap->node == NULL)
1000 return;
1001
Arjan van de Venf392ecf2006-01-12 18:44:32 +00001002 mutex_lock(&pmz_irq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 /* Release interrupt handler */
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001005 free_irq(uap->port.irq, uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 spin_lock_irqsave(&port->lock, flags);
1008
1009 uap->flags &= ~PMACZILOG_FLAG_IS_OPEN;
1010
1011 if (!ZS_IS_OPEN(uap->mate))
1012 pmz_get_port_A(uap)->flags &= ~PMACZILOG_FLAG_IS_IRQ_ON;
1013
1014 /* Disable interrupts */
1015 if (!ZS_IS_ASLEEP(uap)) {
1016 uap->curregs[R1] &= ~(EXT_INT_ENAB | TxINT_ENAB | RxINT_MASK);
1017 write_zsreg(uap, R1, uap->curregs[R1]);
1018 zssync(uap);
1019 }
1020
1021 if (ZS_IS_CONS(uap) || ZS_IS_ASLEEP(uap)) {
1022 spin_unlock_irqrestore(&port->lock, flags);
Arjan van de Venf392ecf2006-01-12 18:44:32 +00001023 mutex_unlock(&pmz_irq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return;
1025 }
1026
1027 /* Disable receiver and transmitter. */
1028 uap->curregs[R3] &= ~RxENABLE;
1029 uap->curregs[R5] &= ~TxENABLE;
1030
1031 /* Disable all interrupts and BRK assertion. */
1032 uap->curregs[R5] &= ~SND_BRK;
1033 pmz_maybe_update_regs(uap);
1034
1035 /* Shut the chip down */
1036 pmz_set_scc_power(uap, 0);
1037
1038 spin_unlock_irqrestore(&port->lock, flags);
1039
Arjan van de Venf392ecf2006-01-12 18:44:32 +00001040 mutex_unlock(&pmz_irq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 pmz_debug("pmz: shutdown() done.\n");
1043}
1044
1045/* Shared by TTY driver and serial console setup. The port lock is held
1046 * and local interrupts are disabled.
1047 */
1048static void pmz_convert_to_zs(struct uart_pmac_port *uap, unsigned int cflag,
1049 unsigned int iflag, unsigned long baud)
1050{
1051 int brg;
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 /* Switch to external clocking for IrDA high clock rates. That
1054 * code could be re-used for Midi interfaces with different
1055 * multipliers
1056 */
1057 if (baud >= 115200 && ZS_IS_IRDA(uap)) {
1058 uap->curregs[R4] = X1CLK;
1059 uap->curregs[R11] = RCTRxCP | TCTRxCP;
1060 uap->curregs[R14] = 0; /* BRG off */
1061 uap->curregs[R12] = 0;
1062 uap->curregs[R13] = 0;
1063 uap->flags |= PMACZILOG_FLAG_IS_EXTCLK;
1064 } else {
1065 switch (baud) {
1066 case ZS_CLOCK/16: /* 230400 */
1067 uap->curregs[R4] = X16CLK;
1068 uap->curregs[R11] = 0;
1069 uap->curregs[R14] = 0;
1070 break;
1071 case ZS_CLOCK/32: /* 115200 */
1072 uap->curregs[R4] = X32CLK;
1073 uap->curregs[R11] = 0;
1074 uap->curregs[R14] = 0;
1075 break;
1076 default:
1077 uap->curregs[R4] = X16CLK;
1078 uap->curregs[R11] = TCBR | RCBR;
1079 brg = BPS_TO_BRG(baud, ZS_CLOCK / 16);
1080 uap->curregs[R12] = (brg & 255);
1081 uap->curregs[R13] = ((brg >> 8) & 255);
1082 uap->curregs[R14] = BRENAB;
1083 }
1084 uap->flags &= ~PMACZILOG_FLAG_IS_EXTCLK;
1085 }
1086
1087 /* Character size, stop bits, and parity. */
1088 uap->curregs[3] &= ~RxN_MASK;
1089 uap->curregs[5] &= ~TxN_MASK;
1090
1091 switch (cflag & CSIZE) {
1092 case CS5:
1093 uap->curregs[3] |= Rx5;
1094 uap->curregs[5] |= Tx5;
1095 uap->parity_mask = 0x1f;
1096 break;
1097 case CS6:
1098 uap->curregs[3] |= Rx6;
1099 uap->curregs[5] |= Tx6;
1100 uap->parity_mask = 0x3f;
1101 break;
1102 case CS7:
1103 uap->curregs[3] |= Rx7;
1104 uap->curregs[5] |= Tx7;
1105 uap->parity_mask = 0x7f;
1106 break;
1107 case CS8:
1108 default:
1109 uap->curregs[3] |= Rx8;
1110 uap->curregs[5] |= Tx8;
1111 uap->parity_mask = 0xff;
1112 break;
1113 };
1114 uap->curregs[4] &= ~(SB_MASK);
1115 if (cflag & CSTOPB)
1116 uap->curregs[4] |= SB2;
1117 else
1118 uap->curregs[4] |= SB1;
1119 if (cflag & PARENB)
1120 uap->curregs[4] |= PAR_ENAB;
1121 else
1122 uap->curregs[4] &= ~PAR_ENAB;
1123 if (!(cflag & PARODD))
1124 uap->curregs[4] |= PAR_EVEN;
1125 else
1126 uap->curregs[4] &= ~PAR_EVEN;
1127
1128 uap->port.read_status_mask = Rx_OVR;
1129 if (iflag & INPCK)
1130 uap->port.read_status_mask |= CRC_ERR | PAR_ERR;
1131 if (iflag & (BRKINT | PARMRK))
1132 uap->port.read_status_mask |= BRK_ABRT;
1133
1134 uap->port.ignore_status_mask = 0;
1135 if (iflag & IGNPAR)
1136 uap->port.ignore_status_mask |= CRC_ERR | PAR_ERR;
1137 if (iflag & IGNBRK) {
1138 uap->port.ignore_status_mask |= BRK_ABRT;
1139 if (iflag & IGNPAR)
1140 uap->port.ignore_status_mask |= Rx_OVR;
1141 }
1142
1143 if ((cflag & CREAD) == 0)
1144 uap->port.ignore_status_mask = 0xff;
1145}
1146
1147
1148/*
1149 * Set the irda codec on the imac to the specified baud rate.
1150 */
1151static void pmz_irda_setup(struct uart_pmac_port *uap, unsigned long *baud)
1152{
1153 u8 cmdbyte;
1154 int t, version;
1155
1156 switch (*baud) {
1157 /* SIR modes */
1158 case 2400:
1159 cmdbyte = 0x53;
1160 break;
1161 case 4800:
1162 cmdbyte = 0x52;
1163 break;
1164 case 9600:
1165 cmdbyte = 0x51;
1166 break;
1167 case 19200:
1168 cmdbyte = 0x50;
1169 break;
1170 case 38400:
1171 cmdbyte = 0x4f;
1172 break;
1173 case 57600:
1174 cmdbyte = 0x4e;
1175 break;
1176 case 115200:
1177 cmdbyte = 0x4d;
1178 break;
1179 /* The FIR modes aren't really supported at this point, how
1180 * do we select the speed ? via the FCR on KeyLargo ?
1181 */
1182 case 1152000:
1183 cmdbyte = 0;
1184 break;
1185 case 4000000:
1186 cmdbyte = 0;
1187 break;
1188 default: /* 9600 */
1189 cmdbyte = 0x51;
1190 *baud = 9600;
1191 break;
1192 }
1193
1194 /* Wait for transmitter to drain */
1195 t = 10000;
1196 while ((read_zsreg(uap, R0) & Tx_BUF_EMP) == 0
1197 || (read_zsreg(uap, R1) & ALL_SNT) == 0) {
1198 if (--t <= 0) {
1199 dev_err(&uap->dev->ofdev.dev, "transmitter didn't drain\n");
1200 return;
1201 }
1202 udelay(10);
1203 }
1204
1205 /* Drain the receiver too */
1206 t = 100;
1207 (void)read_zsdata(uap);
1208 (void)read_zsdata(uap);
1209 (void)read_zsdata(uap);
1210 mdelay(10);
1211 while (read_zsreg(uap, R0) & Rx_CH_AV) {
1212 read_zsdata(uap);
1213 mdelay(10);
1214 if (--t <= 0) {
1215 dev_err(&uap->dev->ofdev.dev, "receiver didn't drain\n");
1216 return;
1217 }
1218 }
1219
1220 /* Switch to command mode */
1221 uap->curregs[R5] |= DTR;
1222 write_zsreg(uap, R5, uap->curregs[R5]);
1223 zssync(uap);
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001224 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 /* Switch SCC to 19200 */
1227 pmz_convert_to_zs(uap, CS8, 0, 19200);
1228 pmz_load_zsregs(uap, uap->curregs);
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001229 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 /* Write get_version command byte */
1232 write_zsdata(uap, 1);
1233 t = 5000;
1234 while ((read_zsreg(uap, R0) & Rx_CH_AV) == 0) {
1235 if (--t <= 0) {
1236 dev_err(&uap->dev->ofdev.dev,
1237 "irda_setup timed out on get_version byte\n");
1238 goto out;
1239 }
1240 udelay(10);
1241 }
1242 version = read_zsdata(uap);
1243
1244 if (version < 4) {
1245 dev_info(&uap->dev->ofdev.dev, "IrDA: dongle version %d not supported\n",
1246 version);
1247 goto out;
1248 }
1249
1250 /* Send speed mode */
1251 write_zsdata(uap, cmdbyte);
1252 t = 5000;
1253 while ((read_zsreg(uap, R0) & Rx_CH_AV) == 0) {
1254 if (--t <= 0) {
1255 dev_err(&uap->dev->ofdev.dev,
1256 "irda_setup timed out on speed mode byte\n");
1257 goto out;
1258 }
1259 udelay(10);
1260 }
1261 t = read_zsdata(uap);
1262 if (t != cmdbyte)
1263 dev_err(&uap->dev->ofdev.dev,
1264 "irda_setup speed mode byte = %x (%x)\n", t, cmdbyte);
1265
1266 dev_info(&uap->dev->ofdev.dev, "IrDA setup for %ld bps, dongle version: %d\n",
1267 *baud, version);
1268
1269 (void)read_zsdata(uap);
1270 (void)read_zsdata(uap);
1271 (void)read_zsdata(uap);
1272
1273 out:
1274 /* Switch back to data mode */
1275 uap->curregs[R5] &= ~DTR;
1276 write_zsreg(uap, R5, uap->curregs[R5]);
1277 zssync(uap);
1278
1279 (void)read_zsdata(uap);
1280 (void)read_zsdata(uap);
1281 (void)read_zsdata(uap);
1282}
1283
1284
Alan Cox606d0992006-12-08 02:38:45 -08001285static void __pmz_set_termios(struct uart_port *port, struct ktermios *termios,
1286 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
1288 struct uart_pmac_port *uap = to_pmz(port);
1289 unsigned long baud;
1290
1291 pmz_debug("pmz: set_termios()\n");
1292
1293 if (ZS_IS_ASLEEP(uap))
1294 return;
1295
Alan Cox606d0992006-12-08 02:38:45 -08001296 memcpy(&uap->termios_cache, termios, sizeof(struct ktermios));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 /* XXX Check which revs of machines actually allow 1 and 4Mb speeds
1299 * on the IR dongle. Note that the IRTTY driver currently doesn't know
1300 * about the FIR mode and high speed modes. So these are unused. For
1301 * implementing proper support for these, we should probably add some
1302 * DMA as well, at least on the Rx side, which isn't a simple thing
1303 * at this point.
1304 */
1305 if (ZS_IS_IRDA(uap)) {
1306 /* Calc baud rate */
1307 baud = uart_get_baud_rate(port, termios, old, 1200, 4000000);
1308 pmz_debug("pmz: switch IRDA to %ld bauds\n", baud);
1309 /* Cet the irda codec to the right rate */
1310 pmz_irda_setup(uap, &baud);
1311 /* Set final baud rate */
1312 pmz_convert_to_zs(uap, termios->c_cflag, termios->c_iflag, baud);
1313 pmz_load_zsregs(uap, uap->curregs);
1314 zssync(uap);
1315 } else {
1316 baud = uart_get_baud_rate(port, termios, old, 1200, 230400);
1317 pmz_convert_to_zs(uap, termios->c_cflag, termios->c_iflag, baud);
1318 /* Make sure modem status interrupts are correctly configured */
1319 if (UART_ENABLE_MS(&uap->port, termios->c_cflag)) {
1320 uap->curregs[R15] |= DCDIE | SYNCIE | CTSIE;
1321 uap->flags |= PMACZILOG_FLAG_MODEM_STATUS;
1322 } else {
1323 uap->curregs[R15] &= ~(DCDIE | SYNCIE | CTSIE);
1324 uap->flags &= ~PMACZILOG_FLAG_MODEM_STATUS;
1325 }
1326
1327 /* Load registers to the chip */
1328 pmz_maybe_update_regs(uap);
1329 }
1330 uart_update_timeout(port, termios->c_cflag, baud);
1331
1332 pmz_debug("pmz: set_termios() done.\n");
1333}
1334
1335/* The port lock is not held. */
Alan Cox606d0992006-12-08 02:38:45 -08001336static void pmz_set_termios(struct uart_port *port, struct ktermios *termios,
1337 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 struct uart_pmac_port *uap = to_pmz(port);
1340 unsigned long flags;
1341
1342 spin_lock_irqsave(&port->lock, flags);
1343
1344 /* Disable IRQs on the port */
1345 uap->curregs[R1] &= ~(EXT_INT_ENAB | TxINT_ENAB | RxINT_MASK);
1346 write_zsreg(uap, R1, uap->curregs[R1]);
1347
1348 /* Setup new port configuration */
1349 __pmz_set_termios(port, termios, old);
1350
1351 /* Re-enable IRQs on the port */
1352 if (ZS_IS_OPEN(uap)) {
1353 uap->curregs[R1] |= INT_ALL_Rx | TxINT_ENAB;
1354 if (!ZS_IS_EXTCLK(uap))
1355 uap->curregs[R1] |= EXT_INT_ENAB;
1356 write_zsreg(uap, R1, uap->curregs[R1]);
1357 }
1358 spin_unlock_irqrestore(&port->lock, flags);
1359}
1360
1361static const char *pmz_type(struct uart_port *port)
1362{
1363 struct uart_pmac_port *uap = to_pmz(port);
1364
1365 if (ZS_IS_IRDA(uap))
1366 return "Z85c30 ESCC - Infrared port";
1367 else if (ZS_IS_INTMODEM(uap))
1368 return "Z85c30 ESCC - Internal modem";
1369 return "Z85c30 ESCC - Serial port";
1370}
1371
1372/* We do not request/release mappings of the registers here, this
1373 * happens at early serial probe time.
1374 */
1375static void pmz_release_port(struct uart_port *port)
1376{
1377}
1378
1379static int pmz_request_port(struct uart_port *port)
1380{
1381 return 0;
1382}
1383
1384/* These do not need to do anything interesting either. */
1385static void pmz_config_port(struct uart_port *port, int flags)
1386{
1387}
1388
1389/* We do not support letting the user mess with the divisor, IRQ, etc. */
1390static int pmz_verify_port(struct uart_port *port, struct serial_struct *ser)
1391{
1392 return -EINVAL;
1393}
1394
Chris J Arges8c653182008-11-04 12:19:06 +00001395#ifdef CONFIG_CONSOLE_POLL
1396
1397static int pmz_poll_get_char(struct uart_port *port)
1398{
1399 struct uart_pmac_port *uap = (struct uart_pmac_port *)port;
1400
1401 while ((read_zsreg(uap, R0) & Rx_CH_AV) == 0)
1402 udelay(5);
1403 return read_zsdata(uap);
1404}
1405
1406static void pmz_poll_put_char(struct uart_port *port, unsigned char c)
1407{
1408 struct uart_pmac_port *uap = (struct uart_pmac_port *)port;
1409
1410 /* Wait for the transmit buffer to empty. */
1411 while ((read_zsreg(uap, R0) & Tx_BUF_EMP) == 0)
1412 udelay(5);
1413 write_zsdata(uap, c);
1414}
1415
1416#endif
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418static struct uart_ops pmz_pops = {
1419 .tx_empty = pmz_tx_empty,
1420 .set_mctrl = pmz_set_mctrl,
1421 .get_mctrl = pmz_get_mctrl,
1422 .stop_tx = pmz_stop_tx,
1423 .start_tx = pmz_start_tx,
1424 .stop_rx = pmz_stop_rx,
1425 .enable_ms = pmz_enable_ms,
1426 .break_ctl = pmz_break_ctl,
1427 .startup = pmz_startup,
1428 .shutdown = pmz_shutdown,
1429 .set_termios = pmz_set_termios,
1430 .type = pmz_type,
1431 .release_port = pmz_release_port,
1432 .request_port = pmz_request_port,
1433 .config_port = pmz_config_port,
1434 .verify_port = pmz_verify_port,
Chris J Arges8c653182008-11-04 12:19:06 +00001435#ifdef CONFIG_CONSOLE_POLL
1436 .poll_get_char = pmz_poll_get_char,
1437 .poll_put_char = pmz_poll_put_char,
1438#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439};
1440
1441/*
1442 * Setup one port structure after probing, HW is down at this point,
1443 * Unlike sunzilog, we don't need to pre-init the spinlock as we don't
1444 * register our console before uart_add_one_port() is called
1445 */
1446static int __init pmz_init_port(struct uart_pmac_port *uap)
1447{
1448 struct device_node *np = uap->node;
Jeremy Kerr018a3d12006-07-12 15:40:29 +10001449 const char *conn;
1450 const struct slot_names_prop {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 int count;
1452 char name[1];
1453 } *slots;
1454 int len;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001455 struct resource r_ports, r_rxdma, r_txdma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 /*
1458 * Request & map chip registers
1459 */
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001460 if (of_address_to_resource(np, 0, &r_ports))
1461 return -ENODEV;
1462 uap->port.mapbase = r_ports.start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 uap->port.membase = ioremap(uap->port.mapbase, 0x1000);
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 uap->control_reg = uap->port.membase;
1466 uap->data_reg = uap->control_reg + 0x10;
1467
1468 /*
1469 * Request & map DBDMA registers
1470 */
1471#ifdef HAS_DBDMA
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001472 if (of_address_to_resource(np, 1, &r_txdma) == 0 &&
1473 of_address_to_resource(np, 2, &r_rxdma) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 uap->flags |= PMACZILOG_FLAG_HAS_DMA;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001475#else
1476 memset(&r_txdma, 0, sizeof(struct resource));
1477 memset(&r_rxdma, 0, sizeof(struct resource));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478#endif
1479 if (ZS_HAS_DMA(uap)) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001480 uap->tx_dma_regs = ioremap(r_txdma.start, 0x100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 if (uap->tx_dma_regs == NULL) {
1482 uap->flags &= ~PMACZILOG_FLAG_HAS_DMA;
1483 goto no_dma;
1484 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001485 uap->rx_dma_regs = ioremap(r_rxdma.start, 0x100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (uap->rx_dma_regs == NULL) {
1487 iounmap(uap->tx_dma_regs);
1488 uap->tx_dma_regs = NULL;
1489 uap->flags &= ~PMACZILOG_FLAG_HAS_DMA;
1490 goto no_dma;
1491 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001492 uap->tx_dma_irq = irq_of_parse_and_map(np, 1);
1493 uap->rx_dma_irq = irq_of_parse_and_map(np, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
1495no_dma:
1496
1497 /*
1498 * Detect port type
1499 */
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001500 if (of_device_is_compatible(np, "cobalt"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 uap->flags |= PMACZILOG_FLAG_IS_INTMODEM;
Stephen Rothwell40cd3a42007-05-01 13:54:02 +10001502 conn = of_get_property(np, "AAPL,connector", &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (conn && (strcmp(conn, "infrared") == 0))
1504 uap->flags |= PMACZILOG_FLAG_IS_IRDA;
1505 uap->port_type = PMAC_SCC_ASYNC;
1506 /* 1999 Powerbook G3 has slot-names property instead */
Stephen Rothwell40cd3a42007-05-01 13:54:02 +10001507 slots = of_get_property(np, "slot-names", &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 if (slots && slots->count > 0) {
1509 if (strcmp(slots->name, "IrDA") == 0)
1510 uap->flags |= PMACZILOG_FLAG_IS_IRDA;
1511 else if (strcmp(slots->name, "Modem") == 0)
1512 uap->flags |= PMACZILOG_FLAG_IS_INTMODEM;
1513 }
1514 if (ZS_IS_IRDA(uap))
1515 uap->port_type = PMAC_SCC_IRDA;
1516 if (ZS_IS_INTMODEM(uap)) {
Stephen Rothwell30686ba2007-04-24 13:53:04 +10001517 struct device_node* i2c_modem =
1518 of_find_node_by_name(NULL, "i2c-modem");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (i2c_modem) {
Jeremy Kerr018a3d12006-07-12 15:40:29 +10001520 const char* mid =
Stephen Rothwell40cd3a42007-05-01 13:54:02 +10001521 of_get_property(i2c_modem, "modem-id", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 if (mid) switch(*mid) {
1523 case 0x04 :
1524 case 0x05 :
1525 case 0x07 :
1526 case 0x08 :
1527 case 0x0b :
1528 case 0x0c :
1529 uap->port_type = PMAC_SCC_I2S1;
1530 }
1531 printk(KERN_INFO "pmac_zilog: i2c-modem detected, id: %d\n",
1532 mid ? (*mid) : 0);
Stephen Rothwell30686ba2007-04-24 13:53:04 +10001533 of_node_put(i2c_modem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 } else {
1535 printk(KERN_INFO "pmac_zilog: serial modem detected\n");
1536 }
1537 }
1538
1539 /*
1540 * Init remaining bits of "port" structure
1541 */
Russell King9b4a1612006-02-05 10:48:10 +00001542 uap->port.iotype = UPIO_MEM;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001543 uap->port.irq = irq_of_parse_and_map(np, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 uap->port.uartclk = ZS_CLOCK;
1545 uap->port.fifosize = 1;
1546 uap->port.ops = &pmz_pops;
1547 uap->port.type = PORT_PMAC_ZILOG;
1548 uap->port.flags = 0;
1549
Benjamin Herrenschmidtf08b7e92009-03-30 17:34:04 +00001550 /*
1551 * Fixup for the port on Gatwick for which the device-tree has
1552 * missing interrupts. Normally, the macio_dev would contain
1553 * fixed up interrupt info, but we use the device-tree directly
1554 * here due to early probing so we need the fixup too.
1555 */
1556 if (uap->port.irq == NO_IRQ &&
1557 np->parent && np->parent->parent &&
1558 of_device_is_compatible(np->parent->parent, "gatwick")) {
1559 /* IRQs on gatwick are offset by 64 */
1560 uap->port.irq = irq_create_mapping(NULL, 64 + 15);
1561 uap->tx_dma_irq = irq_create_mapping(NULL, 64 + 4);
1562 uap->rx_dma_irq = irq_create_mapping(NULL, 64 + 5);
1563 }
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 /* Setup some valid baud rate information in the register
1566 * shadows so we don't write crap there before baud rate is
1567 * first initialized.
1568 */
1569 pmz_convert_to_zs(uap, CS8, 0, 9600);
1570
1571 return 0;
1572}
1573
1574/*
1575 * Get rid of a port on module removal
1576 */
1577static void pmz_dispose_port(struct uart_pmac_port *uap)
1578{
1579 struct device_node *np;
1580
1581 np = uap->node;
1582 iounmap(uap->rx_dma_regs);
1583 iounmap(uap->tx_dma_regs);
1584 iounmap(uap->control_reg);
1585 uap->node = NULL;
1586 of_node_put(np);
1587 memset(uap, 0, sizeof(struct uart_pmac_port));
1588}
1589
1590/*
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001591 * Called upon match with an escc node in the device-tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 */
Jeff Mahoney5e655772005-07-06 15:44:41 -04001593static int pmz_attach(struct macio_dev *mdev, const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
1595 int i;
1596
1597 /* Iterate the pmz_ports array to find a matching entry
1598 */
1599 for (i = 0; i < MAX_ZS_PORTS; i++)
1600 if (pmz_ports[i].node == mdev->ofdev.node) {
1601 struct uart_pmac_port *uap = &pmz_ports[i];
1602
1603 uap->dev = mdev;
1604 dev_set_drvdata(&mdev->ofdev.dev, uap);
1605 if (macio_request_resources(uap->dev, "pmac_zilog"))
1606 printk(KERN_WARNING "%s: Failed to request resource"
1607 ", port still active\n",
1608 uap->node->name);
1609 else
1610 uap->flags |= PMACZILOG_FLAG_RSRC_REQUESTED;
1611 return 0;
1612 }
1613 return -ENODEV;
1614}
1615
1616/*
1617 * That one should not be called, macio isn't really a hotswap device,
1618 * we don't expect one of those serial ports to go away...
1619 */
1620static int pmz_detach(struct macio_dev *mdev)
1621{
1622 struct uart_pmac_port *uap = dev_get_drvdata(&mdev->ofdev.dev);
1623
1624 if (!uap)
1625 return -ENODEV;
1626
1627 if (uap->flags & PMACZILOG_FLAG_RSRC_REQUESTED) {
1628 macio_release_resources(uap->dev);
1629 uap->flags &= ~PMACZILOG_FLAG_RSRC_REQUESTED;
1630 }
1631 dev_set_drvdata(&mdev->ofdev.dev, NULL);
1632 uap->dev = NULL;
1633
1634 return 0;
1635}
1636
1637
Pavel Machek0370aff2005-04-16 15:25:35 -07001638static int pmz_suspend(struct macio_dev *mdev, pm_message_t pm_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
1640 struct uart_pmac_port *uap = dev_get_drvdata(&mdev->ofdev.dev);
1641 struct uart_state *state;
1642 unsigned long flags;
1643
1644 if (uap == NULL) {
1645 printk("HRM... pmz_suspend with NULL uap\n");
1646 return 0;
1647 }
1648
Pavel Machekca078ba2005-09-03 15:56:57 -07001649 if (pm_state.event == mdev->ofdev.dev.power.power_state.event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 return 0;
1651
Olaf Heringaa015422007-08-26 19:10:59 +10001652 pmz_debug("suspend, switching to state %d\n", pm_state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 state = pmz_uart_reg.state + uap->port.line;
1655
Arjan van de Venf392ecf2006-01-12 18:44:32 +00001656 mutex_lock(&pmz_irq_mutex);
Alan Coxa2bceae2009-09-19 13:13:31 -07001657 mutex_lock(&state->port.mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 spin_lock_irqsave(&uap->port.lock, flags);
1660
1661 if (ZS_IS_OPEN(uap) || ZS_IS_CONS(uap)) {
1662 /* Disable receiver and transmitter. */
1663 uap->curregs[R3] &= ~RxENABLE;
1664 uap->curregs[R5] &= ~TxENABLE;
1665
1666 /* Disable all interrupts and BRK assertion. */
1667 uap->curregs[R1] &= ~(EXT_INT_ENAB | TxINT_ENAB | RxINT_MASK);
1668 uap->curregs[R5] &= ~SND_BRK;
1669 pmz_load_zsregs(uap, uap->curregs);
1670 uap->flags |= PMACZILOG_FLAG_IS_ASLEEP;
1671 mb();
1672 }
1673
1674 spin_unlock_irqrestore(&uap->port.lock, flags);
1675
1676 if (ZS_IS_OPEN(uap) || ZS_IS_OPEN(uap->mate))
1677 if (ZS_IS_ASLEEP(uap->mate) && ZS_IS_IRQ_ON(pmz_get_port_A(uap))) {
1678 pmz_get_port_A(uap)->flags &= ~PMACZILOG_FLAG_IS_IRQ_ON;
1679 disable_irq(uap->port.irq);
1680 }
1681
1682 if (ZS_IS_CONS(uap))
1683 uap->port.cons->flags &= ~CON_ENABLED;
1684
1685 /* Shut the chip down */
1686 pmz_set_scc_power(uap, 0);
1687
Alan Coxa2bceae2009-09-19 13:13:31 -07001688 mutex_unlock(&state->port.mutex);
Arjan van de Venf392ecf2006-01-12 18:44:32 +00001689 mutex_unlock(&pmz_irq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 pmz_debug("suspend, switching complete\n");
1692
1693 mdev->ofdev.dev.power.power_state = pm_state;
1694
1695 return 0;
1696}
1697
1698
1699static int pmz_resume(struct macio_dev *mdev)
1700{
1701 struct uart_pmac_port *uap = dev_get_drvdata(&mdev->ofdev.dev);
1702 struct uart_state *state;
1703 unsigned long flags;
1704 int pwr_delay = 0;
1705
1706 if (uap == NULL)
1707 return 0;
1708
Pavel Machekca078ba2005-09-03 15:56:57 -07001709 if (mdev->ofdev.dev.power.power_state.event == PM_EVENT_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 return 0;
1711
1712 pmz_debug("resume, switching to state 0\n");
1713
1714 state = pmz_uart_reg.state + uap->port.line;
1715
Arjan van de Venf392ecf2006-01-12 18:44:32 +00001716 mutex_lock(&pmz_irq_mutex);
Alan Coxa2bceae2009-09-19 13:13:31 -07001717 mutex_lock(&state->port.mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 spin_lock_irqsave(&uap->port.lock, flags);
1720 if (!ZS_IS_OPEN(uap) && !ZS_IS_CONS(uap)) {
1721 spin_unlock_irqrestore(&uap->port.lock, flags);
1722 goto bail;
1723 }
1724 pwr_delay = __pmz_startup(uap);
1725
1726 /* Take care of config that may have changed while asleep */
1727 __pmz_set_termios(&uap->port, &uap->termios_cache, NULL);
1728
1729 if (ZS_IS_OPEN(uap)) {
1730 /* Enable interrupts */
1731 uap->curregs[R1] |= INT_ALL_Rx | TxINT_ENAB;
1732 if (!ZS_IS_EXTCLK(uap))
1733 uap->curregs[R1] |= EXT_INT_ENAB;
1734 write_zsreg(uap, R1, uap->curregs[R1]);
1735 }
1736
1737 spin_unlock_irqrestore(&uap->port.lock, flags);
1738
1739 if (ZS_IS_CONS(uap))
1740 uap->port.cons->flags |= CON_ENABLED;
1741
1742 /* Re-enable IRQ on the controller */
1743 if (ZS_IS_OPEN(uap) && !ZS_IS_IRQ_ON(pmz_get_port_A(uap))) {
1744 pmz_get_port_A(uap)->flags |= PMACZILOG_FLAG_IS_IRQ_ON;
1745 enable_irq(uap->port.irq);
1746 }
1747
1748 bail:
Alan Coxa2bceae2009-09-19 13:13:31 -07001749 mutex_unlock(&state->port.mutex);
Arjan van de Venf392ecf2006-01-12 18:44:32 +00001750 mutex_unlock(&pmz_irq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 /* Right now, we deal with delay by blocking here, I'll be
1753 * smarter later on
1754 */
1755 if (pwr_delay != 0) {
1756 pmz_debug("pmz: delaying %d ms\n", pwr_delay);
1757 msleep(pwr_delay);
1758 }
1759
1760 pmz_debug("resume, switching complete\n");
1761
Pavel Machekca078ba2005-09-03 15:56:57 -07001762 mdev->ofdev.dev.power.power_state.event = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
1764 return 0;
1765}
1766
1767/*
1768 * Probe all ports in the system and build the ports array, we register
1769 * with the serial layer at this point, the macio-type probing is only
1770 * used later to "attach" to the sysfs tree so we get power management
1771 * events
1772 */
1773static int __init pmz_probe(void)
1774{
1775 struct device_node *node_p, *node_a, *node_b, *np;
1776 int count = 0;
1777 int rc;
1778
1779 /*
1780 * Find all escc chips in the system
1781 */
1782 node_p = of_find_node_by_name(NULL, "escc");
1783 while (node_p) {
1784 /*
1785 * First get channel A/B node pointers
1786 *
1787 * TODO: Add routines with proper locking to do that...
1788 */
1789 node_a = node_b = NULL;
1790 for (np = NULL; (np = of_get_next_child(node_p, np)) != NULL;) {
1791 if (strncmp(np->name, "ch-a", 4) == 0)
1792 node_a = of_node_get(np);
1793 else if (strncmp(np->name, "ch-b", 4) == 0)
1794 node_b = of_node_get(np);
1795 }
1796 if (!node_a && !node_b) {
1797 of_node_put(node_a);
1798 of_node_put(node_b);
1799 printk(KERN_ERR "pmac_zilog: missing node %c for escc %s\n",
1800 (!node_a) ? 'a' : 'b', node_p->full_name);
1801 goto next;
1802 }
1803
1804 /*
1805 * Fill basic fields in the port structures
1806 */
1807 pmz_ports[count].mate = &pmz_ports[count+1];
1808 pmz_ports[count+1].mate = &pmz_ports[count];
1809 pmz_ports[count].flags = PMACZILOG_FLAG_IS_CHANNEL_A;
1810 pmz_ports[count].node = node_a;
1811 pmz_ports[count+1].node = node_b;
1812 pmz_ports[count].port.line = count;
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001813 pmz_ports[count+1].port.line = count+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815 /*
1816 * Setup the ports for real
1817 */
1818 rc = pmz_init_port(&pmz_ports[count]);
1819 if (rc == 0 && node_b != NULL)
1820 rc = pmz_init_port(&pmz_ports[count+1]);
1821 if (rc != 0) {
1822 of_node_put(node_a);
1823 of_node_put(node_b);
1824 memset(&pmz_ports[count], 0, sizeof(struct uart_pmac_port));
1825 memset(&pmz_ports[count+1], 0, sizeof(struct uart_pmac_port));
1826 goto next;
1827 }
1828 count += 2;
1829next:
1830 node_p = of_find_node_by_name(node_p, "escc");
1831 }
1832 pmz_ports_count = count;
1833
1834 return 0;
1835}
1836
1837#ifdef CONFIG_SERIAL_PMACZILOG_CONSOLE
1838
1839static void pmz_console_write(struct console *con, const char *s, unsigned int count);
1840static int __init pmz_console_setup(struct console *co, char *options);
1841
1842static struct console pmz_console = {
David Woodhousee4533b22007-04-05 00:19:43 +10001843 .name = PMACZILOG_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 .write = pmz_console_write,
1845 .device = uart_console_device,
1846 .setup = pmz_console_setup,
1847 .flags = CON_PRINTBUFFER,
1848 .index = -1,
1849 .data = &pmz_uart_reg,
1850};
1851
1852#define PMACZILOG_CONSOLE &pmz_console
1853#else /* CONFIG_SERIAL_PMACZILOG_CONSOLE */
1854#define PMACZILOG_CONSOLE (NULL)
1855#endif /* CONFIG_SERIAL_PMACZILOG_CONSOLE */
1856
1857/*
1858 * Register the driver, console driver and ports with the serial
1859 * core
1860 */
1861static int __init pmz_register(void)
1862{
1863 int i, rc;
1864
1865 pmz_uart_reg.nr = pmz_ports_count;
1866 pmz_uart_reg.cons = PMACZILOG_CONSOLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 /*
1869 * Register this driver with the serial core
1870 */
1871 rc = uart_register_driver(&pmz_uart_reg);
1872 if (rc)
1873 return rc;
1874
1875 /*
1876 * Register each port with the serial core
1877 */
1878 for (i = 0; i < pmz_ports_count; i++) {
1879 struct uart_pmac_port *uport = &pmz_ports[i];
1880 /* NULL node may happen on wallstreet */
1881 if (uport->node != NULL)
1882 rc = uart_add_one_port(&pmz_uart_reg, &uport->port);
1883 if (rc)
1884 goto err_out;
1885 }
1886
1887 return 0;
1888err_out:
1889 while (i-- > 0) {
1890 struct uart_pmac_port *uport = &pmz_ports[i];
1891 uart_remove_one_port(&pmz_uart_reg, &uport->port);
1892 }
1893 uart_unregister_driver(&pmz_uart_reg);
1894 return rc;
1895}
1896
Jeff Mahoney5e655772005-07-06 15:44:41 -04001897static struct of_device_id pmz_match[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
1899 {
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001900 .name = "ch-a",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 },
1902 {
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001903 .name = "ch-b",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 },
1905 {},
1906};
Jeff Mahoney5e655772005-07-06 15:44:41 -04001907MODULE_DEVICE_TABLE (of, pmz_match);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001909static struct macio_driver pmz_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 .name = "pmac_zilog",
1911 .match_table = pmz_match,
1912 .probe = pmz_attach,
1913 .remove = pmz_detach,
1914 .suspend = pmz_suspend,
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001915 .resume = pmz_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916};
1917
1918static int __init init_pmz(void)
1919{
1920 int rc, i;
1921 printk(KERN_INFO "%s\n", version);
1922
1923 /*
1924 * First, we need to do a direct OF-based probe pass. We
1925 * do that because we want serial console up before the
1926 * macio stuffs calls us back, and since that makes it
1927 * easier to pass the proper number of channels to
1928 * uart_register_driver()
1929 */
1930 if (pmz_ports_count == 0)
1931 pmz_probe();
1932
1933 /*
1934 * Bail early if no port found
1935 */
1936 if (pmz_ports_count == 0)
1937 return -ENODEV;
1938
1939 /*
1940 * Now we register with the serial layer
1941 */
1942 rc = pmz_register();
1943 if (rc) {
1944 printk(KERN_ERR
1945 "pmac_zilog: Error registering serial device, disabling pmac_zilog.\n"
1946 "pmac_zilog: Did another serial driver already claim the minors?\n");
1947 /* effectively "pmz_unprobe()" */
1948 for (i=0; i < pmz_ports_count; i++)
1949 pmz_dispose_port(&pmz_ports[i]);
1950 return rc;
1951 }
Finn Thain1f7b5ff2009-11-04 00:40:23 +11001952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 /*
1954 * Then we register the macio driver itself
1955 */
1956 return macio_register_driver(&pmz_driver);
1957}
1958
1959static void __exit exit_pmz(void)
1960{
1961 int i;
1962
1963 /* Get rid of macio-driver (detach from macio) */
1964 macio_unregister_driver(&pmz_driver);
1965
1966 for (i = 0; i < pmz_ports_count; i++) {
1967 struct uart_pmac_port *uport = &pmz_ports[i];
1968 if (uport->node != NULL) {
1969 uart_remove_one_port(&pmz_uart_reg, &uport->port);
1970 pmz_dispose_port(uport);
1971 }
1972 }
1973 /* Unregister UART driver */
1974 uart_unregister_driver(&pmz_uart_reg);
1975}
1976
1977#ifdef CONFIG_SERIAL_PMACZILOG_CONSOLE
1978
Russell Kingd3587882006-03-20 20:00:09 +00001979static void pmz_console_putchar(struct uart_port *port, int ch)
1980{
1981 struct uart_pmac_port *uap = (struct uart_pmac_port *)port;
1982
1983 /* Wait for the transmit buffer to empty. */
1984 while ((read_zsreg(uap, R0) & Tx_BUF_EMP) == 0)
1985 udelay(5);
1986 write_zsdata(uap, ch);
1987}
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989/*
1990 * Print a string to the serial port trying not to disturb
1991 * any possible real use of the port...
1992 */
1993static void pmz_console_write(struct console *con, const char *s, unsigned int count)
1994{
1995 struct uart_pmac_port *uap = &pmz_ports[con->index];
1996 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 if (ZS_IS_ASLEEP(uap))
1999 return;
2000 spin_lock_irqsave(&uap->port.lock, flags);
2001
2002 /* Turn of interrupts and enable the transmitter. */
2003 write_zsreg(uap, R1, uap->curregs[1] & ~TxINT_ENAB);
2004 write_zsreg(uap, R5, uap->curregs[5] | TxENABLE | RTS | DTR);
2005
Russell Kingd3587882006-03-20 20:00:09 +00002006 uart_console_write(&uap->port, s, count, pmz_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
2008 /* Restore the values in the registers. */
2009 write_zsreg(uap, R1, uap->curregs[1]);
2010 /* Don't disable the transmitter. */
2011
2012 spin_unlock_irqrestore(&uap->port.lock, flags);
2013}
2014
2015/*
2016 * Setup the serial console
2017 */
2018static int __init pmz_console_setup(struct console *co, char *options)
2019{
2020 struct uart_pmac_port *uap;
2021 struct uart_port *port;
2022 int baud = 38400;
2023 int bits = 8;
2024 int parity = 'n';
2025 int flow = 'n';
2026 unsigned long pwr_delay;
2027
2028 /*
2029 * XServe's default to 57600 bps
2030 */
Grant Likely71a157e2010-02-01 21:34:14 -07002031 if (of_machine_is_compatible("RackMac1,1")
2032 || of_machine_is_compatible("RackMac1,2")
2033 || of_machine_is_compatible("MacRISC4"))
Finn Thain1f7b5ff2009-11-04 00:40:23 +11002034 baud = 57600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 /*
2037 * Check whether an invalid uart number has been specified, and
2038 * if so, search for the first available port that does have
2039 * console support.
2040 */
2041 if (co->index >= pmz_ports_count)
2042 co->index = 0;
2043 uap = &pmz_ports[co->index];
2044 if (uap->node == NULL)
2045 return -ENODEV;
2046 port = &uap->port;
2047
2048 /*
2049 * Mark port as beeing a console
2050 */
2051 uap->flags |= PMACZILOG_FLAG_IS_CONS;
2052
2053 /*
2054 * Temporary fix for uart layer who didn't setup the spinlock yet
2055 */
2056 spin_lock_init(&port->lock);
2057
2058 /*
2059 * Enable the hardware
2060 */
2061 pwr_delay = __pmz_startup(uap);
2062 if (pwr_delay)
2063 mdelay(pwr_delay);
2064
2065 if (options)
2066 uart_parse_options(options, &baud, &parity, &bits, &flow);
2067
2068 return uart_set_options(port, co, baud, parity, bits, flow);
2069}
2070
2071static int __init pmz_console_init(void)
2072{
2073 /* Probe ports */
2074 pmz_probe();
2075
2076 /* TODO: Autoprobe console based on OF */
2077 /* pmz_console.index = i; */
2078 register_console(&pmz_console);
2079
2080 return 0;
2081
2082}
2083console_initcall(pmz_console_init);
2084#endif /* CONFIG_SERIAL_PMACZILOG_CONSOLE */
2085
2086module_init(init_pmz);
2087module_exit(exit_pmz);