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