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 the PSC of the Freescale MPC52xx PSCs configured as UARTs. |
| 3 | * |
| 4 | * FIXME According to the usermanual the status bits in the status register |
| 5 | * are only updated when the peripherals access the FIFO and not when the |
| 6 | * CPU access them. So since we use this bits to know when we stop writing |
| 7 | * and reading, they may not be updated in-time and a race condition may |
| 8 | * exists. But I haven't be able to prove this and I don't care. But if |
| 9 | * any problem arises, it might worth checking. The TX/RX FIFO Stats |
| 10 | * registers should be used in addition. |
| 11 | * Update: Actually, they seem updated ... At least the bits we use. |
| 12 | * |
| 13 | * |
| 14 | * Maintainer : Sylvain Munaut <tnt@246tNt.com> |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 15 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * Some of the code has been inspired/copied from the 2.4 code written |
| 17 | * by Dale Farnsworth <dfarnsworth@mvista.com>. |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 18 | * |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 19 | * Copyright (C) 2008 Freescale Semiconductor Inc. |
| 20 | * John Rigby <jrigby@gmail.com> |
| 21 | * Added support for MPC5121 |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 22 | * Copyright (C) 2006 Secret Lab Technologies Ltd. |
| 23 | * Grant Likely <grant.likely@secretlab.ca> |
| 24 | * Copyright (C) 2004-2006 Sylvain Munaut <tnt@246tNt.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | * Copyright (C) 2003 MontaVista, Software, Inc. |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 26 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | * This file is licensed under the terms of the GNU General Public License |
| 28 | * version 2. This program is licensed "as is" without any warranty of any |
| 29 | * kind, whether express or implied. |
| 30 | */ |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | /* Platform device Usage : |
| 33 | * |
| 34 | * Since PSCs can have multiple function, the correct driver for each one |
| 35 | * is selected by calling mpc52xx_match_psc_function(...). The function |
| 36 | * handled by this driver is "uart". |
| 37 | * |
| 38 | * The driver init all necessary registers to place the PSC in uart mode without |
| 39 | * DCD. However, the pin multiplexing aren't changed and should be set either |
| 40 | * by the bootloader or in the platform init code. |
| 41 | * |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 42 | * The idx field must be equal to the PSC index (e.g. 0 for PSC1, 1 for PSC2, |
Sylvain Munaut | d62de3a | 2006-01-06 00:11:32 -0800 | [diff] [blame] | 43 | * and so on). So the PSC1 is mapped to /dev/ttyPSC0, PSC2 to /dev/ttyPSC1 and |
| 44 | * so on. But be warned, it's an ABSOLUTE REQUIREMENT ! This is needed mainly |
| 45 | * fpr the console code : without this 1:1 mapping, at early boot time, when we |
Uwe Zeisberger | c30fe7f | 2006-03-24 18:23:14 +0100 | [diff] [blame] | 46 | * are parsing the kernel args console=ttyPSC?, we wouldn't know which PSC it |
Sylvain Munaut | d62de3a | 2006-01-06 00:11:32 -0800 | [diff] [blame] | 47 | * will be mapped to. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | */ |
| 49 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 50 | /* OF Platform device Usage : |
| 51 | * |
| 52 | * This driver is only used for PSCs configured in uart mode. The device |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 53 | * tree will have a node for each PSC with "mpc52xx-psc-uart" in the compatible |
| 54 | * list. |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 55 | * |
| 56 | * By default, PSC devices are enumerated in the order they are found. However |
| 57 | * a particular PSC number can be forces by adding 'device_no = <port#>' |
| 58 | * to the device node. |
| 59 | * |
| 60 | * The driver init all necessary registers to place the PSC in uart mode without |
| 61 | * DCD. However, the pin multiplexing aren't changed and should be set either |
| 62 | * by the bootloader or in the platform init code. |
| 63 | */ |
| 64 | |
| 65 | #undef DEBUG |
| 66 | |
| 67 | #include <linux/device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #include <linux/module.h> |
| 69 | #include <linux/tty.h> |
| 70 | #include <linux/serial.h> |
| 71 | #include <linux/sysrq.h> |
| 72 | #include <linux/console.h> |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 73 | #include <linux/delay.h> |
| 74 | #include <linux/io.h> |
Grant Likely | 283029d | 2008-01-09 06:20:40 +1100 | [diff] [blame] | 75 | #include <linux/of.h> |
| 76 | #include <linux/of_platform.h> |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | #include <asm/mpc52xx.h> |
| 79 | #include <asm/mpc52xx_psc.h> |
| 80 | |
| 81 | #if defined(CONFIG_SERIAL_MPC52xx_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) |
| 82 | #define SUPPORT_SYSRQ |
| 83 | #endif |
| 84 | |
| 85 | #include <linux/serial_core.h> |
| 86 | |
| 87 | |
Sylvain Munaut | d62de3a | 2006-01-06 00:11:32 -0800 | [diff] [blame] | 88 | /* We've been assigned a range on the "Low-density serial ports" major */ |
| 89 | #define SERIAL_PSC_MAJOR 204 |
| 90 | #define SERIAL_PSC_MINOR 148 |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
| 93 | #define ISR_PASS_LIMIT 256 /* Max number of iteration in the interrupt */ |
| 94 | |
| 95 | |
| 96 | static struct uart_port mpc52xx_uart_ports[MPC52xx_PSC_MAXNUM]; |
| 97 | /* Rem: - We use the read_status_mask as a shadow of |
| 98 | * psc->mpc52xx_psc_imr |
| 99 | * - It's important that is array is all zero on start as we |
| 100 | * use it to know if it's initialized or not ! If it's not sure |
| 101 | * it's cleared, then a memset(...,0,...) should be added to |
| 102 | * the console_init |
| 103 | */ |
Kumar Gala | 8d1fb8c | 2008-08-01 11:09:34 -0500 | [diff] [blame] | 104 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 105 | /* lookup table for matching device nodes to index numbers */ |
| 106 | static struct device_node *mpc52xx_uart_nodes[MPC52xx_PSC_MAXNUM]; |
| 107 | |
| 108 | static void mpc52xx_uart_of_enumerate(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | #define PSC(port) ((struct mpc52xx_psc __iomem *)((port)->membase)) |
| 112 | |
| 113 | |
| 114 | /* Forward declaration of the interruption handling routine */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 115 | static irqreturn_t mpc52xx_uart_int(int irq, void *dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | |
| 118 | /* Simple macro to test if a port is console or not. This one is taken |
| 119 | * for serial_core.c and maybe should be moved to serial_core.h ? */ |
| 120 | #ifdef CONFIG_SERIAL_CORE_CONSOLE |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 121 | #define uart_console(port) \ |
| 122 | ((port)->cons && (port)->cons->index == (port)->line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | #else |
| 124 | #define uart_console(port) (0) |
| 125 | #endif |
| 126 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 127 | /* ======================================================================== */ |
| 128 | /* PSC fifo operations for isolating differences between 52xx and 512x */ |
| 129 | /* ======================================================================== */ |
| 130 | |
| 131 | struct psc_ops { |
| 132 | void (*fifo_init)(struct uart_port *port); |
| 133 | int (*raw_rx_rdy)(struct uart_port *port); |
| 134 | int (*raw_tx_rdy)(struct uart_port *port); |
| 135 | int (*rx_rdy)(struct uart_port *port); |
| 136 | int (*tx_rdy)(struct uart_port *port); |
| 137 | int (*tx_empty)(struct uart_port *port); |
| 138 | void (*stop_rx)(struct uart_port *port); |
| 139 | void (*start_tx)(struct uart_port *port); |
| 140 | void (*stop_tx)(struct uart_port *port); |
| 141 | void (*rx_clr_irq)(struct uart_port *port); |
| 142 | void (*tx_clr_irq)(struct uart_port *port); |
| 143 | void (*write_char)(struct uart_port *port, unsigned char c); |
| 144 | unsigned char (*read_char)(struct uart_port *port); |
| 145 | void (*cw_disable_ints)(struct uart_port *port); |
| 146 | void (*cw_restore_ints)(struct uart_port *port); |
| 147 | unsigned long (*getuartclk)(void *p); |
| 148 | }; |
| 149 | |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 150 | #ifdef CONFIG_PPC_MPC52xx |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 151 | #define FIFO_52xx(port) ((struct mpc52xx_psc_fifo __iomem *)(PSC(port)+1)) |
| 152 | static void mpc52xx_psc_fifo_init(struct uart_port *port) |
| 153 | { |
| 154 | struct mpc52xx_psc __iomem *psc = PSC(port); |
| 155 | struct mpc52xx_psc_fifo __iomem *fifo = FIFO_52xx(port); |
| 156 | |
| 157 | /* /32 prescaler */ |
| 158 | out_be16(&psc->mpc52xx_psc_clock_select, 0xdd00); |
| 159 | |
| 160 | out_8(&fifo->rfcntl, 0x00); |
| 161 | out_be16(&fifo->rfalarm, 0x1ff); |
| 162 | out_8(&fifo->tfcntl, 0x07); |
| 163 | out_be16(&fifo->tfalarm, 0x80); |
| 164 | |
| 165 | port->read_status_mask |= MPC52xx_PSC_IMR_RXRDY | MPC52xx_PSC_IMR_TXRDY; |
| 166 | out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask); |
| 167 | } |
| 168 | |
| 169 | static int mpc52xx_psc_raw_rx_rdy(struct uart_port *port) |
| 170 | { |
| 171 | return in_be16(&PSC(port)->mpc52xx_psc_status) |
| 172 | & MPC52xx_PSC_SR_RXRDY; |
| 173 | } |
| 174 | |
| 175 | static int mpc52xx_psc_raw_tx_rdy(struct uart_port *port) |
| 176 | { |
| 177 | return in_be16(&PSC(port)->mpc52xx_psc_status) |
| 178 | & MPC52xx_PSC_SR_TXRDY; |
| 179 | } |
| 180 | |
| 181 | |
| 182 | static int mpc52xx_psc_rx_rdy(struct uart_port *port) |
| 183 | { |
| 184 | return in_be16(&PSC(port)->mpc52xx_psc_isr) |
| 185 | & port->read_status_mask |
| 186 | & MPC52xx_PSC_IMR_RXRDY; |
| 187 | } |
| 188 | |
| 189 | static int mpc52xx_psc_tx_rdy(struct uart_port *port) |
| 190 | { |
| 191 | return in_be16(&PSC(port)->mpc52xx_psc_isr) |
| 192 | & port->read_status_mask |
| 193 | & MPC52xx_PSC_IMR_TXRDY; |
| 194 | } |
| 195 | |
| 196 | static int mpc52xx_psc_tx_empty(struct uart_port *port) |
| 197 | { |
| 198 | return in_be16(&PSC(port)->mpc52xx_psc_status) |
| 199 | & MPC52xx_PSC_SR_TXEMP; |
| 200 | } |
| 201 | |
| 202 | static void mpc52xx_psc_start_tx(struct uart_port *port) |
| 203 | { |
| 204 | port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY; |
| 205 | out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); |
| 206 | } |
| 207 | |
| 208 | static void mpc52xx_psc_stop_tx(struct uart_port *port) |
| 209 | { |
| 210 | port->read_status_mask &= ~MPC52xx_PSC_IMR_TXRDY; |
| 211 | out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); |
| 212 | } |
| 213 | |
| 214 | static void mpc52xx_psc_stop_rx(struct uart_port *port) |
| 215 | { |
| 216 | port->read_status_mask &= ~MPC52xx_PSC_IMR_RXRDY; |
| 217 | out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); |
| 218 | } |
| 219 | |
| 220 | static void mpc52xx_psc_rx_clr_irq(struct uart_port *port) |
| 221 | { |
| 222 | } |
| 223 | |
| 224 | static void mpc52xx_psc_tx_clr_irq(struct uart_port *port) |
| 225 | { |
| 226 | } |
| 227 | |
| 228 | static void mpc52xx_psc_write_char(struct uart_port *port, unsigned char c) |
| 229 | { |
| 230 | out_8(&PSC(port)->mpc52xx_psc_buffer_8, c); |
| 231 | } |
| 232 | |
| 233 | static unsigned char mpc52xx_psc_read_char(struct uart_port *port) |
| 234 | { |
| 235 | return in_8(&PSC(port)->mpc52xx_psc_buffer_8); |
| 236 | } |
| 237 | |
| 238 | static void mpc52xx_psc_cw_disable_ints(struct uart_port *port) |
| 239 | { |
| 240 | out_be16(&PSC(port)->mpc52xx_psc_imr, 0); |
| 241 | } |
| 242 | |
| 243 | static void mpc52xx_psc_cw_restore_ints(struct uart_port *port) |
| 244 | { |
| 245 | out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); |
| 246 | } |
| 247 | |
| 248 | /* Search for bus-frequency property in this node or a parent */ |
| 249 | static unsigned long mpc52xx_getuartclk(void *p) |
| 250 | { |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 251 | /* |
| 252 | * 5200 UARTs have a / 32 prescaler |
| 253 | * but the generic serial code assumes 16 |
| 254 | * so return ipb freq / 2 |
| 255 | */ |
Wolfgang Denk | 87c441e | 2009-06-17 00:30:22 -0600 | [diff] [blame] | 256 | return mpc5xxx_get_bus_frequency(p) / 2; |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | static struct psc_ops mpc52xx_psc_ops = { |
| 260 | .fifo_init = mpc52xx_psc_fifo_init, |
| 261 | .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy, |
| 262 | .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy, |
| 263 | .rx_rdy = mpc52xx_psc_rx_rdy, |
| 264 | .tx_rdy = mpc52xx_psc_tx_rdy, |
| 265 | .tx_empty = mpc52xx_psc_tx_empty, |
| 266 | .stop_rx = mpc52xx_psc_stop_rx, |
| 267 | .start_tx = mpc52xx_psc_start_tx, |
| 268 | .stop_tx = mpc52xx_psc_stop_tx, |
| 269 | .rx_clr_irq = mpc52xx_psc_rx_clr_irq, |
| 270 | .tx_clr_irq = mpc52xx_psc_tx_clr_irq, |
| 271 | .write_char = mpc52xx_psc_write_char, |
| 272 | .read_char = mpc52xx_psc_read_char, |
| 273 | .cw_disable_ints = mpc52xx_psc_cw_disable_ints, |
| 274 | .cw_restore_ints = mpc52xx_psc_cw_restore_ints, |
| 275 | .getuartclk = mpc52xx_getuartclk, |
| 276 | }; |
| 277 | |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 278 | #endif /* CONFIG_MPC52xx */ |
| 279 | |
| 280 | #ifdef CONFIG_PPC_MPC512x |
| 281 | #define FIFO_512x(port) ((struct mpc512x_psc_fifo __iomem *)(PSC(port)+1)) |
| 282 | static void mpc512x_psc_fifo_init(struct uart_port *port) |
| 283 | { |
| 284 | out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE); |
| 285 | out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE); |
| 286 | out_be32(&FIFO_512x(port)->txalarm, 1); |
| 287 | out_be32(&FIFO_512x(port)->tximr, 0); |
| 288 | |
| 289 | out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE); |
| 290 | out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE); |
| 291 | out_be32(&FIFO_512x(port)->rxalarm, 1); |
| 292 | out_be32(&FIFO_512x(port)->rximr, 0); |
| 293 | |
| 294 | out_be32(&FIFO_512x(port)->tximr, MPC512x_PSC_FIFO_ALARM); |
| 295 | out_be32(&FIFO_512x(port)->rximr, MPC512x_PSC_FIFO_ALARM); |
| 296 | } |
| 297 | |
| 298 | static int mpc512x_psc_raw_rx_rdy(struct uart_port *port) |
| 299 | { |
| 300 | return !(in_be32(&FIFO_512x(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY); |
| 301 | } |
| 302 | |
| 303 | static int mpc512x_psc_raw_tx_rdy(struct uart_port *port) |
| 304 | { |
| 305 | return !(in_be32(&FIFO_512x(port)->txsr) & MPC512x_PSC_FIFO_FULL); |
| 306 | } |
| 307 | |
| 308 | static int mpc512x_psc_rx_rdy(struct uart_port *port) |
| 309 | { |
| 310 | return in_be32(&FIFO_512x(port)->rxsr) |
| 311 | & in_be32(&FIFO_512x(port)->rximr) |
| 312 | & MPC512x_PSC_FIFO_ALARM; |
| 313 | } |
| 314 | |
| 315 | static int mpc512x_psc_tx_rdy(struct uart_port *port) |
| 316 | { |
| 317 | return in_be32(&FIFO_512x(port)->txsr) |
| 318 | & in_be32(&FIFO_512x(port)->tximr) |
| 319 | & MPC512x_PSC_FIFO_ALARM; |
| 320 | } |
| 321 | |
| 322 | static int mpc512x_psc_tx_empty(struct uart_port *port) |
| 323 | { |
| 324 | return in_be32(&FIFO_512x(port)->txsr) |
| 325 | & MPC512x_PSC_FIFO_EMPTY; |
| 326 | } |
| 327 | |
| 328 | static void mpc512x_psc_stop_rx(struct uart_port *port) |
| 329 | { |
| 330 | unsigned long rx_fifo_imr; |
| 331 | |
| 332 | rx_fifo_imr = in_be32(&FIFO_512x(port)->rximr); |
| 333 | rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM; |
| 334 | out_be32(&FIFO_512x(port)->rximr, rx_fifo_imr); |
| 335 | } |
| 336 | |
| 337 | static void mpc512x_psc_start_tx(struct uart_port *port) |
| 338 | { |
| 339 | unsigned long tx_fifo_imr; |
| 340 | |
| 341 | tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr); |
| 342 | tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM; |
| 343 | out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr); |
| 344 | } |
| 345 | |
| 346 | static void mpc512x_psc_stop_tx(struct uart_port *port) |
| 347 | { |
| 348 | unsigned long tx_fifo_imr; |
| 349 | |
| 350 | tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr); |
| 351 | tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM; |
| 352 | out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr); |
| 353 | } |
| 354 | |
| 355 | static void mpc512x_psc_rx_clr_irq(struct uart_port *port) |
| 356 | { |
| 357 | out_be32(&FIFO_512x(port)->rxisr, in_be32(&FIFO_512x(port)->rxisr)); |
| 358 | } |
| 359 | |
| 360 | static void mpc512x_psc_tx_clr_irq(struct uart_port *port) |
| 361 | { |
| 362 | out_be32(&FIFO_512x(port)->txisr, in_be32(&FIFO_512x(port)->txisr)); |
| 363 | } |
| 364 | |
| 365 | static void mpc512x_psc_write_char(struct uart_port *port, unsigned char c) |
| 366 | { |
| 367 | out_8(&FIFO_512x(port)->txdata_8, c); |
| 368 | } |
| 369 | |
| 370 | static unsigned char mpc512x_psc_read_char(struct uart_port *port) |
| 371 | { |
| 372 | return in_8(&FIFO_512x(port)->rxdata_8); |
| 373 | } |
| 374 | |
| 375 | static void mpc512x_psc_cw_disable_ints(struct uart_port *port) |
| 376 | { |
| 377 | port->read_status_mask = |
| 378 | in_be32(&FIFO_512x(port)->tximr) << 16 | |
| 379 | in_be32(&FIFO_512x(port)->rximr); |
| 380 | out_be32(&FIFO_512x(port)->tximr, 0); |
| 381 | out_be32(&FIFO_512x(port)->rximr, 0); |
| 382 | } |
| 383 | |
| 384 | static void mpc512x_psc_cw_restore_ints(struct uart_port *port) |
| 385 | { |
| 386 | out_be32(&FIFO_512x(port)->tximr, |
| 387 | (port->read_status_mask >> 16) & 0x7f); |
| 388 | out_be32(&FIFO_512x(port)->rximr, port->read_status_mask & 0x7f); |
| 389 | } |
| 390 | |
| 391 | static unsigned long mpc512x_getuartclk(void *p) |
| 392 | { |
Wolfgang Denk | 87c441e | 2009-06-17 00:30:22 -0600 | [diff] [blame] | 393 | return mpc5xxx_get_bus_frequency(p); |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | static struct psc_ops mpc512x_psc_ops = { |
| 397 | .fifo_init = mpc512x_psc_fifo_init, |
| 398 | .raw_rx_rdy = mpc512x_psc_raw_rx_rdy, |
| 399 | .raw_tx_rdy = mpc512x_psc_raw_tx_rdy, |
| 400 | .rx_rdy = mpc512x_psc_rx_rdy, |
| 401 | .tx_rdy = mpc512x_psc_tx_rdy, |
| 402 | .tx_empty = mpc512x_psc_tx_empty, |
| 403 | .stop_rx = mpc512x_psc_stop_rx, |
| 404 | .start_tx = mpc512x_psc_start_tx, |
| 405 | .stop_tx = mpc512x_psc_stop_tx, |
| 406 | .rx_clr_irq = mpc512x_psc_rx_clr_irq, |
| 407 | .tx_clr_irq = mpc512x_psc_tx_clr_irq, |
| 408 | .write_char = mpc512x_psc_write_char, |
| 409 | .read_char = mpc512x_psc_read_char, |
| 410 | .cw_disable_ints = mpc512x_psc_cw_disable_ints, |
| 411 | .cw_restore_ints = mpc512x_psc_cw_restore_ints, |
| 412 | .getuartclk = mpc512x_getuartclk, |
| 413 | }; |
| 414 | #endif |
| 415 | |
| 416 | static struct psc_ops *psc_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
| 418 | /* ======================================================================== */ |
| 419 | /* UART operations */ |
| 420 | /* ======================================================================== */ |
| 421 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 422 | static unsigned int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | mpc52xx_uart_tx_empty(struct uart_port *port) |
| 424 | { |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 425 | return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | } |
| 427 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 428 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) |
| 430 | { |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 431 | if (mctrl & TIOCM_RTS) |
| 432 | out_8(&PSC(port)->op1, MPC52xx_PSC_OP_RTS); |
| 433 | else |
| 434 | out_8(&PSC(port)->op0, MPC52xx_PSC_OP_RTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | } |
| 436 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 437 | static unsigned int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | mpc52xx_uart_get_mctrl(struct uart_port *port) |
| 439 | { |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 440 | unsigned int ret = TIOCM_DSR; |
| 441 | u8 status = in_8(&PSC(port)->mpc52xx_psc_ipcr); |
| 442 | |
| 443 | if (!(status & MPC52xx_PSC_CTS)) |
| 444 | ret |= TIOCM_CTS; |
| 445 | if (!(status & MPC52xx_PSC_DCD)) |
| 446 | ret |= TIOCM_CAR; |
| 447 | |
| 448 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | } |
| 450 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 451 | static void |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 452 | mpc52xx_uart_stop_tx(struct uart_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | { |
| 454 | /* port->lock taken by caller */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 455 | psc_ops->stop_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 458 | static void |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 459 | mpc52xx_uart_start_tx(struct uart_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | { |
| 461 | /* port->lock taken by caller */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 462 | psc_ops->start_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | } |
| 464 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 465 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | mpc52xx_uart_send_xchar(struct uart_port *port, char ch) |
| 467 | { |
| 468 | unsigned long flags; |
| 469 | spin_lock_irqsave(&port->lock, flags); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | port->x_char = ch; |
| 472 | if (ch) { |
| 473 | /* Make sure tx interrupts are on */ |
| 474 | /* Truly necessary ??? They should be anyway */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 475 | psc_ops->start_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | } |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | spin_unlock_irqrestore(&port->lock, flags); |
| 479 | } |
| 480 | |
| 481 | static void |
| 482 | mpc52xx_uart_stop_rx(struct uart_port *port) |
| 483 | { |
| 484 | /* port->lock taken by caller */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 485 | psc_ops->stop_rx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | static void |
| 489 | mpc52xx_uart_enable_ms(struct uart_port *port) |
| 490 | { |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 491 | struct mpc52xx_psc __iomem *psc = PSC(port); |
| 492 | |
| 493 | /* clear D_*-bits by reading them */ |
| 494 | in_8(&psc->mpc52xx_psc_ipcr); |
| 495 | /* enable CTS and DCD as IPC interrupts */ |
| 496 | out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD); |
| 497 | |
| 498 | port->read_status_mask |= MPC52xx_PSC_IMR_IPC; |
| 499 | out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | static void |
| 503 | mpc52xx_uart_break_ctl(struct uart_port *port, int ctl) |
| 504 | { |
| 505 | unsigned long flags; |
| 506 | spin_lock_irqsave(&port->lock, flags); |
| 507 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 508 | if (ctl == -1) |
| 509 | out_8(&PSC(port)->command, MPC52xx_PSC_START_BRK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | else |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 511 | out_8(&PSC(port)->command, MPC52xx_PSC_STOP_BRK); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | spin_unlock_irqrestore(&port->lock, flags); |
| 514 | } |
| 515 | |
| 516 | static int |
| 517 | mpc52xx_uart_startup(struct uart_port *port) |
| 518 | { |
| 519 | struct mpc52xx_psc __iomem *psc = PSC(port); |
| 520 | int ret; |
| 521 | |
| 522 | /* Request IRQ */ |
| 523 | ret = request_irq(port->irq, mpc52xx_uart_int, |
Grant Likely | d9f0c5f | 2009-02-04 11:23:56 -0700 | [diff] [blame] | 524 | IRQF_DISABLED | IRQF_SAMPLE_RANDOM, |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 525 | "mpc52xx_psc_uart", port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | if (ret) |
| 527 | return ret; |
| 528 | |
| 529 | /* Reset/activate the port, clear and enable interrupts */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 530 | out_8(&psc->command, MPC52xx_PSC_RST_RX); |
| 531 | out_8(&psc->command, MPC52xx_PSC_RST_TX); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 532 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 533 | out_be32(&psc->sicr, 0); /* UART mode DCD ignored */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 535 | psc_ops->fifo_init(port); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 536 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 537 | out_8(&psc->command, MPC52xx_PSC_TX_ENABLE); |
| 538 | out_8(&psc->command, MPC52xx_PSC_RX_ENABLE); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 539 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | return 0; |
| 541 | } |
| 542 | |
| 543 | static void |
| 544 | mpc52xx_uart_shutdown(struct uart_port *port) |
| 545 | { |
| 546 | struct mpc52xx_psc __iomem *psc = PSC(port); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 547 | |
Grant Likely | a348119 | 2007-05-07 01:38:51 +1000 | [diff] [blame] | 548 | /* Shut down the port. Leave TX active if on a console port */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 549 | out_8(&psc->command, MPC52xx_PSC_RST_RX); |
Grant Likely | a348119 | 2007-05-07 01:38:51 +1000 | [diff] [blame] | 550 | if (!uart_console(port)) |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 551 | out_8(&psc->command, MPC52xx_PSC_RST_TX); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 552 | |
| 553 | port->read_status_mask = 0; |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 554 | out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | |
| 556 | /* Release interrupt */ |
| 557 | free_irq(port->irq, port); |
| 558 | } |
| 559 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 560 | static void |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 561 | mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new, |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 562 | struct ktermios *old) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | { |
| 564 | struct mpc52xx_psc __iomem *psc = PSC(port); |
| 565 | unsigned long flags; |
| 566 | unsigned char mr1, mr2; |
| 567 | unsigned short ctr; |
| 568 | unsigned int j, baud, quot; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | /* Prepare what we're gonna write */ |
| 571 | mr1 = 0; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | switch (new->c_cflag & CSIZE) { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 574 | case CS5: mr1 |= MPC52xx_PSC_MODE_5_BITS; |
| 575 | break; |
| 576 | case CS6: mr1 |= MPC52xx_PSC_MODE_6_BITS; |
| 577 | break; |
| 578 | case CS7: mr1 |= MPC52xx_PSC_MODE_7_BITS; |
| 579 | break; |
| 580 | case CS8: |
| 581 | default: mr1 |= MPC52xx_PSC_MODE_8_BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | if (new->c_cflag & PARENB) { |
| 585 | mr1 |= (new->c_cflag & PARODD) ? |
| 586 | MPC52xx_PSC_MODE_PARODD : MPC52xx_PSC_MODE_PAREVEN; |
| 587 | } else |
| 588 | mr1 |= MPC52xx_PSC_MODE_PARNONE; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 589 | |
| 590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | mr2 = 0; |
| 592 | |
| 593 | if (new->c_cflag & CSTOPB) |
| 594 | mr2 |= MPC52xx_PSC_MODE_TWO_STOP; |
| 595 | else |
| 596 | mr2 |= ((new->c_cflag & CSIZE) == CS5) ? |
| 597 | MPC52xx_PSC_MODE_ONE_STOP_5_BITS : |
| 598 | MPC52xx_PSC_MODE_ONE_STOP; |
| 599 | |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 600 | if (new->c_cflag & CRTSCTS) { |
| 601 | mr1 |= MPC52xx_PSC_MODE_RXRTS; |
| 602 | mr2 |= MPC52xx_PSC_MODE_TXCTS; |
| 603 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
| 605 | baud = uart_get_baud_rate(port, new, old, 0, port->uartclk/16); |
| 606 | quot = uart_get_divisor(port, baud); |
| 607 | ctr = quot & 0xffff; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | /* Get the lock */ |
| 610 | spin_lock_irqsave(&port->lock, flags); |
| 611 | |
| 612 | /* Update the per-port timeout */ |
| 613 | uart_update_timeout(port, new->c_cflag, baud); |
| 614 | |
Nick Andrew | c4f0124 | 2008-12-05 16:34:46 +0000 | [diff] [blame] | 615 | /* Do our best to flush TX & RX, so we don't lose anything */ |
| 616 | /* But we don't wait indefinitely ! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | j = 5000000; /* Maximum wait */ |
| 618 | /* FIXME Can't receive chars since set_termios might be called at early |
| 619 | * boot for the console, all stuff is not yet ready to receive at that |
| 620 | * time and that just makes the kernel oops */ |
| 621 | /* while (j-- && mpc52xx_uart_int_rx_chars(port)); */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 622 | while (!mpc52xx_uart_tx_empty(port) && --j) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | udelay(1); |
| 624 | |
| 625 | if (!j) |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 626 | printk(KERN_ERR "mpc52xx_uart.c: " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | "Unable to flush RX & TX fifos in-time in set_termios." |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 628 | "Some chars may have been lost.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
| 630 | /* Reset the TX & RX */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 631 | out_8(&psc->command, MPC52xx_PSC_RST_RX); |
| 632 | out_8(&psc->command, MPC52xx_PSC_RST_TX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | |
| 634 | /* Send new mode settings */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 635 | out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1); |
| 636 | out_8(&psc->mode, mr1); |
| 637 | out_8(&psc->mode, mr2); |
| 638 | out_8(&psc->ctur, ctr >> 8); |
| 639 | out_8(&psc->ctlr, ctr & 0xff); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 640 | |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 641 | if (UART_ENABLE_MS(port, new->c_cflag)) |
| 642 | mpc52xx_uart_enable_ms(port); |
| 643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | /* Reenable TX & RX */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 645 | out_8(&psc->command, MPC52xx_PSC_TX_ENABLE); |
| 646 | out_8(&psc->command, MPC52xx_PSC_RX_ENABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | |
| 648 | /* We're all set, release the lock */ |
| 649 | spin_unlock_irqrestore(&port->lock, flags); |
| 650 | } |
| 651 | |
| 652 | static const char * |
| 653 | mpc52xx_uart_type(struct uart_port *port) |
| 654 | { |
| 655 | return port->type == PORT_MPC52xx ? "MPC52xx PSC" : NULL; |
| 656 | } |
| 657 | |
| 658 | static void |
| 659 | mpc52xx_uart_release_port(struct uart_port *port) |
| 660 | { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 661 | /* remapped by us ? */ |
| 662 | if (port->flags & UPF_IOREMAP) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | iounmap(port->membase); |
| 664 | port->membase = NULL; |
| 665 | } |
| 666 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 667 | release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | } |
| 669 | |
| 670 | static int |
| 671 | mpc52xx_uart_request_port(struct uart_port *port) |
| 672 | { |
Amol Lad | be618f5 | 2006-09-30 23:29:23 -0700 | [diff] [blame] | 673 | int err; |
| 674 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | if (port->flags & UPF_IOREMAP) /* Need to remap ? */ |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 676 | port->membase = ioremap(port->mapbase, |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 677 | sizeof(struct mpc52xx_psc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
| 679 | if (!port->membase) |
| 680 | return -EINVAL; |
| 681 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 682 | err = request_mem_region(port->mapbase, sizeof(struct mpc52xx_psc), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | "mpc52xx_psc_uart") != NULL ? 0 : -EBUSY; |
Amol Lad | be618f5 | 2006-09-30 23:29:23 -0700 | [diff] [blame] | 684 | |
| 685 | if (err && (port->flags & UPF_IOREMAP)) { |
| 686 | iounmap(port->membase); |
| 687 | port->membase = NULL; |
| 688 | } |
| 689 | |
| 690 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | } |
| 692 | |
| 693 | static void |
| 694 | mpc52xx_uart_config_port(struct uart_port *port, int flags) |
| 695 | { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 696 | if ((flags & UART_CONFIG_TYPE) |
| 697 | && (mpc52xx_uart_request_port(port) == 0)) |
| 698 | port->type = PORT_MPC52xx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | static int |
| 702 | mpc52xx_uart_verify_port(struct uart_port *port, struct serial_struct *ser) |
| 703 | { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 704 | if (ser->type != PORT_UNKNOWN && ser->type != PORT_MPC52xx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | return -EINVAL; |
| 706 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 707 | if ((ser->irq != port->irq) || |
| 708 | (ser->io_type != SERIAL_IO_MEM) || |
| 709 | (ser->baud_base != port->uartclk) || |
| 710 | (ser->iomem_base != (void *)port->mapbase) || |
| 711 | (ser->hub6 != 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | return -EINVAL; |
| 713 | |
| 714 | return 0; |
| 715 | } |
| 716 | |
| 717 | |
| 718 | static struct uart_ops mpc52xx_uart_ops = { |
| 719 | .tx_empty = mpc52xx_uart_tx_empty, |
| 720 | .set_mctrl = mpc52xx_uart_set_mctrl, |
| 721 | .get_mctrl = mpc52xx_uart_get_mctrl, |
| 722 | .stop_tx = mpc52xx_uart_stop_tx, |
| 723 | .start_tx = mpc52xx_uart_start_tx, |
| 724 | .send_xchar = mpc52xx_uart_send_xchar, |
| 725 | .stop_rx = mpc52xx_uart_stop_rx, |
| 726 | .enable_ms = mpc52xx_uart_enable_ms, |
| 727 | .break_ctl = mpc52xx_uart_break_ctl, |
| 728 | .startup = mpc52xx_uart_startup, |
| 729 | .shutdown = mpc52xx_uart_shutdown, |
| 730 | .set_termios = mpc52xx_uart_set_termios, |
| 731 | /* .pm = mpc52xx_uart_pm, Not supported yet */ |
| 732 | /* .set_wake = mpc52xx_uart_set_wake, Not supported yet */ |
| 733 | .type = mpc52xx_uart_type, |
| 734 | .release_port = mpc52xx_uart_release_port, |
| 735 | .request_port = mpc52xx_uart_request_port, |
| 736 | .config_port = mpc52xx_uart_config_port, |
| 737 | .verify_port = mpc52xx_uart_verify_port |
| 738 | }; |
| 739 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 740 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | /* ======================================================================== */ |
| 742 | /* Interrupt handling */ |
| 743 | /* ======================================================================== */ |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 744 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | static inline int |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 746 | mpc52xx_uart_int_rx_chars(struct uart_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | { |
Takashi Iwai | a88487c | 2008-07-16 21:54:42 +0100 | [diff] [blame] | 748 | struct tty_struct *tty = port->info->port.tty; |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 749 | unsigned char ch, flag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | unsigned short status; |
| 751 | |
| 752 | /* While we can read, do so ! */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 753 | while (psc_ops->raw_rx_rdy(port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | /* Get the char */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 755 | ch = psc_ops->read_char(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | |
| 757 | /* Handle sysreq char */ |
| 758 | #ifdef SUPPORT_SYSRQ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 759 | if (uart_handle_sysrq_char(port, ch)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | port->sysrq = 0; |
| 761 | continue; |
| 762 | } |
| 763 | #endif |
| 764 | |
| 765 | /* Store it */ |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 766 | |
| 767 | flag = TTY_NORMAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | port->icount.rx++; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 769 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 770 | status = in_be16(&PSC(port)->mpc52xx_psc_status); |
| 771 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 772 | if (status & (MPC52xx_PSC_SR_PE | |
| 773 | MPC52xx_PSC_SR_FE | |
| 774 | MPC52xx_PSC_SR_RB)) { |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | if (status & MPC52xx_PSC_SR_RB) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 777 | flag = TTY_BREAK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | uart_handle_break(port); |
René Bürgel | b651498 | 2008-12-21 02:54:31 -0700 | [diff] [blame] | 779 | port->icount.brk++; |
| 780 | } else if (status & MPC52xx_PSC_SR_PE) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 781 | flag = TTY_PARITY; |
René Bürgel | b651498 | 2008-12-21 02:54:31 -0700 | [diff] [blame] | 782 | port->icount.parity++; |
| 783 | } |
| 784 | else if (status & MPC52xx_PSC_SR_FE) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 785 | flag = TTY_FRAME; |
René Bürgel | b651498 | 2008-12-21 02:54:31 -0700 | [diff] [blame] | 786 | port->icount.frame++; |
| 787 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | |
| 789 | /* Clear error condition */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 790 | out_8(&PSC(port)->command, MPC52xx_PSC_RST_ERR_STAT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
| 792 | } |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 793 | tty_insert_flip_char(tty, ch, flag); |
| 794 | if (status & MPC52xx_PSC_SR_OE) { |
| 795 | /* |
| 796 | * Overrun is special, since it's |
| 797 | * reported immediately, and doesn't |
| 798 | * affect the current character |
| 799 | */ |
| 800 | tty_insert_flip_char(tty, 0, TTY_OVERRUN); |
René Bürgel | b651498 | 2008-12-21 02:54:31 -0700 | [diff] [blame] | 801 | port->icount.overrun++; |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 802 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | } |
| 804 | |
Andrew Liu | fbe543b | 2008-04-29 17:36:25 +1000 | [diff] [blame] | 805 | spin_unlock(&port->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | tty_flip_buffer_push(tty); |
Andrew Liu | fbe543b | 2008-04-29 17:36:25 +1000 | [diff] [blame] | 807 | spin_lock(&port->lock); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 808 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 809 | return psc_ops->raw_rx_rdy(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | static inline int |
| 813 | mpc52xx_uart_int_tx_chars(struct uart_port *port) |
| 814 | { |
| 815 | struct circ_buf *xmit = &port->info->xmit; |
| 816 | |
| 817 | /* Process out of band chars */ |
| 818 | if (port->x_char) { |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 819 | psc_ops->write_char(port, port->x_char); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | port->icount.tx++; |
| 821 | port->x_char = 0; |
| 822 | return 1; |
| 823 | } |
| 824 | |
| 825 | /* Nothing to do ? */ |
| 826 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 827 | mpc52xx_uart_stop_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | return 0; |
| 829 | } |
| 830 | |
| 831 | /* Send chars */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 832 | while (psc_ops->raw_tx_rdy(port)) { |
| 833 | psc_ops->write_char(port, xmit->buf[xmit->tail]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); |
| 835 | port->icount.tx++; |
| 836 | if (uart_circ_empty(xmit)) |
| 837 | break; |
| 838 | } |
| 839 | |
| 840 | /* Wake up */ |
| 841 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) |
| 842 | uart_write_wakeup(port); |
| 843 | |
| 844 | /* Maybe we're done after all */ |
| 845 | if (uart_circ_empty(xmit)) { |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 846 | mpc52xx_uart_stop_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | return 0; |
| 848 | } |
| 849 | |
| 850 | return 1; |
| 851 | } |
| 852 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 853 | static irqreturn_t |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 854 | mpc52xx_uart_int(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | { |
Jeff Garzik | c7bec5a | 2006-10-06 15:00:58 -0400 | [diff] [blame] | 856 | struct uart_port *port = dev_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | unsigned long pass = ISR_PASS_LIMIT; |
| 858 | unsigned int keepgoing; |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 859 | u8 status; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 860 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | spin_lock(&port->lock); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | /* While we have stuff to do, we continue */ |
| 864 | do { |
| 865 | /* If we don't find anything to do, we stop */ |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 866 | keepgoing = 0; |
| 867 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 868 | psc_ops->rx_clr_irq(port); |
| 869 | if (psc_ops->rx_rdy(port)) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 870 | keepgoing |= mpc52xx_uart_int_rx_chars(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 872 | psc_ops->tx_clr_irq(port); |
| 873 | if (psc_ops->tx_rdy(port)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | keepgoing |= mpc52xx_uart_int_tx_chars(port); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 875 | |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 876 | status = in_8(&PSC(port)->mpc52xx_psc_ipcr); |
| 877 | if (status & MPC52xx_PSC_D_DCD) |
| 878 | uart_handle_dcd_change(port, !(status & MPC52xx_PSC_DCD)); |
| 879 | |
| 880 | if (status & MPC52xx_PSC_D_CTS) |
| 881 | uart_handle_cts_change(port, !(status & MPC52xx_PSC_CTS)); |
| 882 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | /* Limit number of iteration */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 884 | if (!(--pass)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | keepgoing = 0; |
| 886 | |
| 887 | } while (keepgoing); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 888 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | spin_unlock(&port->lock); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | return IRQ_HANDLED; |
| 892 | } |
| 893 | |
| 894 | |
| 895 | /* ======================================================================== */ |
| 896 | /* Console ( if applicable ) */ |
| 897 | /* ======================================================================== */ |
| 898 | |
| 899 | #ifdef CONFIG_SERIAL_MPC52xx_CONSOLE |
| 900 | |
| 901 | static void __init |
| 902 | mpc52xx_console_get_options(struct uart_port *port, |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 903 | int *baud, int *parity, int *bits, int *flow) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | { |
| 905 | struct mpc52xx_psc __iomem *psc = PSC(port); |
| 906 | unsigned char mr1; |
| 907 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 908 | pr_debug("mpc52xx_console_get_options(port=%p)\n", port); |
| 909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | /* Read the mode registers */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 911 | out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | mr1 = in_8(&psc->mode); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 913 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | /* CT{U,L}R are write-only ! */ |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 915 | *baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | |
| 917 | /* Parse them */ |
| 918 | switch (mr1 & MPC52xx_PSC_MODE_BITS_MASK) { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 919 | case MPC52xx_PSC_MODE_5_BITS: |
| 920 | *bits = 5; |
| 921 | break; |
| 922 | case MPC52xx_PSC_MODE_6_BITS: |
| 923 | *bits = 6; |
| 924 | break; |
| 925 | case MPC52xx_PSC_MODE_7_BITS: |
| 926 | *bits = 7; |
| 927 | break; |
| 928 | case MPC52xx_PSC_MODE_8_BITS: |
| 929 | default: |
| 930 | *bits = 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | } |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 932 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | if (mr1 & MPC52xx_PSC_MODE_PARNONE) |
| 934 | *parity = 'n'; |
| 935 | else |
| 936 | *parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e'; |
| 937 | } |
| 938 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 939 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | mpc52xx_console_write(struct console *co, const char *s, unsigned int count) |
| 941 | { |
| 942 | struct uart_port *port = &mpc52xx_uart_ports[co->index]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | unsigned int i, j; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 944 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | /* Disable interrupts */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 946 | psc_ops->cw_disable_ints(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | |
| 948 | /* Wait the TX buffer to be empty */ |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 949 | j = 5000000; /* Maximum wait */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 950 | while (!mpc52xx_uart_tx_empty(port) && --j) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | udelay(1); |
| 952 | |
| 953 | /* Write all the chars */ |
Russell King | d358788 | 2006-03-20 20:00:09 +0000 | [diff] [blame] | 954 | for (i = 0; i < count; i++, s++) { |
| 955 | /* Line return handling */ |
| 956 | if (*s == '\n') |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 957 | psc_ops->write_char(port, '\r'); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | /* Send the char */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 960 | psc_ops->write_char(port, *s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | /* Wait the TX buffer to be empty */ |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 963 | j = 20000; /* Maximum wait */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 964 | while (!mpc52xx_uart_tx_empty(port) && --j) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | udelay(1); |
| 966 | } |
| 967 | |
| 968 | /* Restore interrupt state */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 969 | psc_ops->cw_restore_ints(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | } |
| 971 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 972 | |
| 973 | static int __init |
| 974 | mpc52xx_console_setup(struct console *co, char *options) |
| 975 | { |
| 976 | struct uart_port *port = &mpc52xx_uart_ports[co->index]; |
| 977 | struct device_node *np = mpc52xx_uart_nodes[co->index]; |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 978 | unsigned int uartclk; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 979 | struct resource res; |
| 980 | int ret; |
| 981 | |
| 982 | int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD; |
| 983 | int bits = 8; |
| 984 | int parity = 'n'; |
| 985 | int flow = 'n'; |
| 986 | |
| 987 | pr_debug("mpc52xx_console_setup co=%p, co->index=%i, options=%s\n", |
| 988 | co, co->index, options); |
| 989 | |
Roel Kluin | b898f4f | 2009-05-28 14:34:29 -0700 | [diff] [blame] | 990 | if ((co->index < 0) || (co->index >= MPC52xx_PSC_MAXNUM)) { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 991 | pr_debug("PSC%x out of range\n", co->index); |
| 992 | return -EINVAL; |
| 993 | } |
| 994 | |
| 995 | if (!np) { |
| 996 | pr_debug("PSC%x not found in device tree\n", co->index); |
| 997 | return -EINVAL; |
| 998 | } |
| 999 | |
| 1000 | pr_debug("Console on ttyPSC%x is %s\n", |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1001 | co->index, mpc52xx_uart_nodes[co->index]->full_name); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1002 | |
| 1003 | /* Fetch register locations */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1004 | ret = of_address_to_resource(np, 0, &res); |
| 1005 | if (ret) { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1006 | pr_debug("Could not get resources for PSC%x\n", co->index); |
| 1007 | return ret; |
| 1008 | } |
| 1009 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1010 | uartclk = psc_ops->getuartclk(np); |
| 1011 | if (uartclk == 0) { |
| 1012 | pr_debug("Could not find uart clock frequency!\n"); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1013 | return -EINVAL; |
| 1014 | } |
| 1015 | |
| 1016 | /* Basic port init. Needed since we use some uart_??? func before |
| 1017 | * real init for early access */ |
| 1018 | spin_lock_init(&port->lock); |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1019 | port->uartclk = uartclk; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1020 | port->ops = &mpc52xx_uart_ops; |
| 1021 | port->mapbase = res.start; |
| 1022 | port->membase = ioremap(res.start, sizeof(struct mpc52xx_psc)); |
| 1023 | port->irq = irq_of_parse_and_map(np, 0); |
| 1024 | |
| 1025 | if (port->membase == NULL) |
| 1026 | return -EINVAL; |
| 1027 | |
Grant Likely | 5dd80d5 | 2007-10-13 22:37:02 -0600 | [diff] [blame] | 1028 | pr_debug("mpc52xx-psc uart at %p, mapped to %p, irq=%x, freq=%i\n", |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1029 | (void *)port->mapbase, port->membase, |
| 1030 | port->irq, port->uartclk); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1031 | |
| 1032 | /* Setup the port parameters accoding to options */ |
| 1033 | if (options) |
| 1034 | uart_parse_options(options, &baud, &parity, &bits, &flow); |
| 1035 | else |
| 1036 | mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow); |
| 1037 | |
| 1038 | pr_debug("Setting console parameters: %i %i%c1 flow=%c\n", |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1039 | baud, bits, parity, flow); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1040 | |
| 1041 | return uart_set_options(port, co, baud, parity, bits, flow); |
| 1042 | } |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1043 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | |
Sylvain Munaut | 2d8179c | 2006-01-06 00:11:31 -0800 | [diff] [blame] | 1045 | static struct uart_driver mpc52xx_uart_driver; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | |
| 1047 | static struct console mpc52xx_console = { |
Sylvain Munaut | d62de3a | 2006-01-06 00:11:32 -0800 | [diff] [blame] | 1048 | .name = "ttyPSC", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | .write = mpc52xx_console_write, |
| 1050 | .device = uart_console_device, |
| 1051 | .setup = mpc52xx_console_setup, |
| 1052 | .flags = CON_PRINTBUFFER, |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1053 | .index = -1, /* Specified on the cmdline (e.g. console=ttyPSC0) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | .data = &mpc52xx_uart_driver, |
| 1055 | }; |
| 1056 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1057 | |
| 1058 | static int __init |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | mpc52xx_console_init(void) |
| 1060 | { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1061 | mpc52xx_uart_of_enumerate(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | register_console(&mpc52xx_console); |
| 1063 | return 0; |
| 1064 | } |
| 1065 | |
| 1066 | console_initcall(mpc52xx_console_init); |
| 1067 | |
| 1068 | #define MPC52xx_PSC_CONSOLE &mpc52xx_console |
| 1069 | #else |
| 1070 | #define MPC52xx_PSC_CONSOLE NULL |
| 1071 | #endif |
| 1072 | |
| 1073 | |
| 1074 | /* ======================================================================== */ |
| 1075 | /* UART Driver */ |
| 1076 | /* ======================================================================== */ |
| 1077 | |
| 1078 | static struct uart_driver mpc52xx_uart_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | .driver_name = "mpc52xx_psc_uart", |
Sylvain Munaut | d62de3a | 2006-01-06 00:11:32 -0800 | [diff] [blame] | 1080 | .dev_name = "ttyPSC", |
Sylvain Munaut | d62de3a | 2006-01-06 00:11:32 -0800 | [diff] [blame] | 1081 | .major = SERIAL_PSC_MAJOR, |
| 1082 | .minor = SERIAL_PSC_MINOR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | .nr = MPC52xx_PSC_MAXNUM, |
| 1084 | .cons = MPC52xx_PSC_CONSOLE, |
| 1085 | }; |
| 1086 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1087 | /* ======================================================================== */ |
| 1088 | /* OF Platform Driver */ |
| 1089 | /* ======================================================================== */ |
| 1090 | |
Grant Likely | 52b8048 | 2008-02-06 22:29:25 -0700 | [diff] [blame] | 1091 | static struct of_device_id mpc52xx_uart_of_match[] = { |
| 1092 | #ifdef CONFIG_PPC_MPC52xx |
| 1093 | { .compatible = "fsl,mpc5200-psc-uart", .data = &mpc52xx_psc_ops, }, |
| 1094 | /* binding used by old lite5200 device trees: */ |
| 1095 | { .compatible = "mpc5200-psc-uart", .data = &mpc52xx_psc_ops, }, |
| 1096 | /* binding used by efika: */ |
| 1097 | { .compatible = "mpc5200-serial", .data = &mpc52xx_psc_ops, }, |
| 1098 | #endif |
| 1099 | #ifdef CONFIG_PPC_MPC512x |
| 1100 | { .compatible = "fsl,mpc5121-psc-uart", .data = &mpc512x_psc_ops, }, |
Grant Likely | 52b8048 | 2008-02-06 22:29:25 -0700 | [diff] [blame] | 1101 | #endif |
Grant Likely | bc775ea | 2008-04-29 06:40:37 -0600 | [diff] [blame] | 1102 | {}, |
Grant Likely | 52b8048 | 2008-02-06 22:29:25 -0700 | [diff] [blame] | 1103 | }; |
| 1104 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1105 | static int __devinit |
| 1106 | mpc52xx_uart_of_probe(struct of_device *op, const struct of_device_id *match) |
| 1107 | { |
| 1108 | int idx = -1; |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1109 | unsigned int uartclk; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1110 | struct uart_port *port = NULL; |
| 1111 | struct resource res; |
| 1112 | int ret; |
| 1113 | |
| 1114 | dev_dbg(&op->dev, "mpc52xx_uart_probe(op=%p, match=%p)\n", op, match); |
| 1115 | |
| 1116 | /* Check validity & presence */ |
| 1117 | for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++) |
| 1118 | if (mpc52xx_uart_nodes[idx] == op->node) |
| 1119 | break; |
| 1120 | if (idx >= MPC52xx_PSC_MAXNUM) |
| 1121 | return -EINVAL; |
| 1122 | pr_debug("Found %s assigned to ttyPSC%x\n", |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1123 | mpc52xx_uart_nodes[idx]->full_name, idx); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1124 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1125 | uartclk = psc_ops->getuartclk(op->node); |
| 1126 | if (uartclk == 0) { |
| 1127 | dev_dbg(&op->dev, "Could not find uart clock frequency!\n"); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1128 | return -EINVAL; |
| 1129 | } |
| 1130 | |
| 1131 | /* Init the port structure */ |
| 1132 | port = &mpc52xx_uart_ports[idx]; |
| 1133 | |
| 1134 | spin_lock_init(&port->lock); |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1135 | port->uartclk = uartclk; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1136 | port->fifosize = 512; |
| 1137 | port->iotype = UPIO_MEM; |
| 1138 | port->flags = UPF_BOOT_AUTOCONF | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1139 | (uart_console(port) ? 0 : UPF_IOREMAP); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1140 | port->line = idx; |
| 1141 | port->ops = &mpc52xx_uart_ops; |
| 1142 | port->dev = &op->dev; |
| 1143 | |
| 1144 | /* Search for IRQ and mapbase */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1145 | ret = of_address_to_resource(op->node, 0, &res); |
| 1146 | if (ret) |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1147 | return ret; |
| 1148 | |
| 1149 | port->mapbase = res.start; |
Wolfram Sang | 418441d9 | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1150 | if (!port->mapbase) { |
| 1151 | dev_dbg(&op->dev, "Could not allocate resources for PSC\n"); |
| 1152 | return -EINVAL; |
| 1153 | } |
| 1154 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1155 | port->irq = irq_of_parse_and_map(op->node, 0); |
Wolfram Sang | 418441d9 | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1156 | if (port->irq == NO_IRQ) { |
| 1157 | dev_dbg(&op->dev, "Could not get irq\n"); |
| 1158 | return -EINVAL; |
| 1159 | } |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1160 | |
Grant Likely | 5dd80d5 | 2007-10-13 22:37:02 -0600 | [diff] [blame] | 1161 | dev_dbg(&op->dev, "mpc52xx-psc uart at %p, irq=%x, freq=%i\n", |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1162 | (void *)port->mapbase, port->irq, port->uartclk); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1163 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1164 | /* Add the port to the uart sub-system */ |
| 1165 | ret = uart_add_one_port(&mpc52xx_uart_driver, port); |
Wolfram Sang | 418441d9 | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1166 | if (ret) { |
| 1167 | irq_dispose_mapping(port->irq); |
| 1168 | return ret; |
| 1169 | } |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1170 | |
Wolfram Sang | 418441d9 | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1171 | dev_set_drvdata(&op->dev, (void *)port); |
| 1172 | return 0; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1173 | } |
| 1174 | |
| 1175 | static int |
| 1176 | mpc52xx_uart_of_remove(struct of_device *op) |
| 1177 | { |
| 1178 | struct uart_port *port = dev_get_drvdata(&op->dev); |
| 1179 | dev_set_drvdata(&op->dev, NULL); |
| 1180 | |
Sylvain Munaut | fc7900b | 2007-02-15 23:18:08 +0100 | [diff] [blame] | 1181 | if (port) { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1182 | uart_remove_one_port(&mpc52xx_uart_driver, port); |
Sylvain Munaut | fc7900b | 2007-02-15 23:18:08 +0100 | [diff] [blame] | 1183 | irq_dispose_mapping(port->irq); |
| 1184 | } |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1185 | |
| 1186 | return 0; |
| 1187 | } |
| 1188 | |
| 1189 | #ifdef CONFIG_PM |
| 1190 | static int |
| 1191 | mpc52xx_uart_of_suspend(struct of_device *op, pm_message_t state) |
| 1192 | { |
| 1193 | struct uart_port *port = (struct uart_port *) dev_get_drvdata(&op->dev); |
| 1194 | |
| 1195 | if (port) |
| 1196 | uart_suspend_port(&mpc52xx_uart_driver, port); |
| 1197 | |
| 1198 | return 0; |
| 1199 | } |
| 1200 | |
| 1201 | static int |
| 1202 | mpc52xx_uart_of_resume(struct of_device *op) |
| 1203 | { |
| 1204 | struct uart_port *port = (struct uart_port *) dev_get_drvdata(&op->dev); |
| 1205 | |
| 1206 | if (port) |
| 1207 | uart_resume_port(&mpc52xx_uart_driver, port); |
| 1208 | |
| 1209 | return 0; |
| 1210 | } |
| 1211 | #endif |
| 1212 | |
| 1213 | static void |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 1214 | mpc52xx_uart_of_assign(struct device_node *np) |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1215 | { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1216 | int i; |
| 1217 | |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 1218 | /* Find the first free PSC number */ |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1219 | for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) { |
| 1220 | if (mpc52xx_uart_nodes[i] == NULL) { |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 1221 | of_node_get(np); |
| 1222 | mpc52xx_uart_nodes[i] = np; |
| 1223 | return; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1224 | } |
| 1225 | } |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1226 | } |
| 1227 | |
| 1228 | static void |
| 1229 | mpc52xx_uart_of_enumerate(void) |
| 1230 | { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1231 | static int enum_done; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1232 | struct device_node *np; |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 1233 | const struct of_device_id *match; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1234 | int i; |
| 1235 | |
| 1236 | if (enum_done) |
| 1237 | return; |
| 1238 | |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 1239 | /* Assign index to each PSC in device tree */ |
| 1240 | for_each_matching_node(np, mpc52xx_uart_of_match) { |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 1241 | match = of_match_node(mpc52xx_uart_of_match, np); |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 1242 | psc_ops = match->data; |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 1243 | mpc52xx_uart_of_assign(np); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1244 | } |
| 1245 | |
| 1246 | enum_done = 1; |
| 1247 | |
| 1248 | for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) { |
| 1249 | if (mpc52xx_uart_nodes[i]) |
| 1250 | pr_debug("%s assigned to ttyPSC%x\n", |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1251 | mpc52xx_uart_nodes[i]->full_name, i); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1252 | } |
| 1253 | } |
| 1254 | |
| 1255 | MODULE_DEVICE_TABLE(of, mpc52xx_uart_of_match); |
| 1256 | |
| 1257 | static struct of_platform_driver mpc52xx_uart_of_driver = { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1258 | .match_table = mpc52xx_uart_of_match, |
| 1259 | .probe = mpc52xx_uart_of_probe, |
| 1260 | .remove = mpc52xx_uart_of_remove, |
| 1261 | #ifdef CONFIG_PM |
| 1262 | .suspend = mpc52xx_uart_of_suspend, |
| 1263 | .resume = mpc52xx_uart_of_resume, |
| 1264 | #endif |
| 1265 | .driver = { |
| 1266 | .name = "mpc52xx-psc-uart", |
| 1267 | }, |
| 1268 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | |
| 1270 | |
| 1271 | /* ======================================================================== */ |
| 1272 | /* Module */ |
| 1273 | /* ======================================================================== */ |
| 1274 | |
| 1275 | static int __init |
| 1276 | mpc52xx_uart_init(void) |
| 1277 | { |
| 1278 | int ret; |
| 1279 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1280 | printk(KERN_INFO "Serial: MPC52xx PSC UART driver\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1282 | ret = uart_register_driver(&mpc52xx_uart_driver); |
| 1283 | if (ret) { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1284 | printk(KERN_ERR "%s: uart_register_driver failed (%i)\n", |
| 1285 | __FILE__, ret); |
| 1286 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | } |
| 1288 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1289 | mpc52xx_uart_of_enumerate(); |
| 1290 | |
| 1291 | ret = of_register_platform_driver(&mpc52xx_uart_of_driver); |
| 1292 | if (ret) { |
| 1293 | printk(KERN_ERR "%s: of_register_platform_driver failed (%i)\n", |
| 1294 | __FILE__, ret); |
| 1295 | uart_unregister_driver(&mpc52xx_uart_driver); |
| 1296 | return ret; |
| 1297 | } |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1298 | |
| 1299 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | } |
| 1301 | |
| 1302 | static void __exit |
| 1303 | mpc52xx_uart_exit(void) |
| 1304 | { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1305 | of_unregister_platform_driver(&mpc52xx_uart_of_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | uart_unregister_driver(&mpc52xx_uart_driver); |
| 1307 | } |
| 1308 | |
| 1309 | |
| 1310 | module_init(mpc52xx_uart_init); |
| 1311 | module_exit(mpc52xx_uart_exit); |
| 1312 | |
| 1313 | MODULE_AUTHOR("Sylvain Munaut <tnt@246tNt.com>"); |
| 1314 | MODULE_DESCRIPTION("Freescale MPC52xx PSC UART"); |
| 1315 | MODULE_LICENSE("GPL"); |