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