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 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 87 | /* ======================================================================== */ |
| 88 | /* PSC fifo operations for isolating differences between 52xx and 512x */ |
| 89 | /* ======================================================================== */ |
| 90 | |
| 91 | struct psc_ops { |
| 92 | void (*fifo_init)(struct uart_port *port); |
| 93 | int (*raw_rx_rdy)(struct uart_port *port); |
| 94 | int (*raw_tx_rdy)(struct uart_port *port); |
| 95 | int (*rx_rdy)(struct uart_port *port); |
| 96 | int (*tx_rdy)(struct uart_port *port); |
| 97 | int (*tx_empty)(struct uart_port *port); |
| 98 | void (*stop_rx)(struct uart_port *port); |
| 99 | void (*start_tx)(struct uart_port *port); |
| 100 | void (*stop_tx)(struct uart_port *port); |
| 101 | void (*rx_clr_irq)(struct uart_port *port); |
| 102 | void (*tx_clr_irq)(struct uart_port *port); |
| 103 | void (*write_char)(struct uart_port *port, unsigned char c); |
| 104 | unsigned char (*read_char)(struct uart_port *port); |
| 105 | void (*cw_disable_ints)(struct uart_port *port); |
| 106 | void (*cw_restore_ints)(struct uart_port *port); |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 107 | unsigned int (*set_baudrate)(struct uart_port *port, |
| 108 | struct ktermios *new, |
| 109 | struct ktermios *old); |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 110 | int (*clock_alloc)(struct uart_port *port); |
| 111 | void (*clock_relse)(struct uart_port *port); |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 112 | int (*clock)(struct uart_port *port, int enable); |
| 113 | int (*fifoc_init)(void); |
| 114 | void (*fifoc_uninit)(void); |
| 115 | void (*get_irq)(struct uart_port *, struct device_node *); |
| 116 | irqreturn_t (*handle_irq)(struct uart_port *port); |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 117 | u16 (*get_status)(struct uart_port *port); |
| 118 | u8 (*get_ipcr)(struct uart_port *port); |
| 119 | void (*command)(struct uart_port *port, u8 cmd); |
| 120 | void (*set_mode)(struct uart_port *port, u8 mr1, u8 mr2); |
| 121 | void (*set_rts)(struct uart_port *port, int state); |
| 122 | void (*enable_ms)(struct uart_port *port); |
| 123 | void (*set_sicr)(struct uart_port *port, u32 val); |
| 124 | void (*set_imr)(struct uart_port *port, u16 val); |
| 125 | u8 (*get_mr1)(struct uart_port *port); |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 126 | }; |
| 127 | |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 128 | /* setting the prescaler and divisor reg is common for all chips */ |
| 129 | static inline void mpc52xx_set_divisor(struct mpc52xx_psc __iomem *psc, |
| 130 | u16 prescaler, unsigned int divisor) |
| 131 | { |
| 132 | /* select prescaler */ |
| 133 | out_be16(&psc->mpc52xx_psc_clock_select, prescaler); |
| 134 | out_8(&psc->ctur, divisor >> 8); |
| 135 | out_8(&psc->ctlr, divisor & 0xff); |
| 136 | } |
| 137 | |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 138 | static u16 mpc52xx_psc_get_status(struct uart_port *port) |
| 139 | { |
| 140 | return in_be16(&PSC(port)->mpc52xx_psc_status); |
| 141 | } |
| 142 | |
| 143 | static u8 mpc52xx_psc_get_ipcr(struct uart_port *port) |
| 144 | { |
| 145 | return in_8(&PSC(port)->mpc52xx_psc_ipcr); |
| 146 | } |
| 147 | |
| 148 | static void mpc52xx_psc_command(struct uart_port *port, u8 cmd) |
| 149 | { |
| 150 | out_8(&PSC(port)->command, cmd); |
| 151 | } |
| 152 | |
| 153 | static void mpc52xx_psc_set_mode(struct uart_port *port, u8 mr1, u8 mr2) |
| 154 | { |
| 155 | out_8(&PSC(port)->command, MPC52xx_PSC_SEL_MODE_REG_1); |
| 156 | out_8(&PSC(port)->mode, mr1); |
| 157 | out_8(&PSC(port)->mode, mr2); |
| 158 | } |
| 159 | |
| 160 | static void mpc52xx_psc_set_rts(struct uart_port *port, int state) |
| 161 | { |
| 162 | if (state) |
| 163 | out_8(&PSC(port)->op1, MPC52xx_PSC_OP_RTS); |
| 164 | else |
| 165 | out_8(&PSC(port)->op0, MPC52xx_PSC_OP_RTS); |
| 166 | } |
| 167 | |
| 168 | static void mpc52xx_psc_enable_ms(struct uart_port *port) |
| 169 | { |
| 170 | struct mpc52xx_psc __iomem *psc = PSC(port); |
| 171 | |
| 172 | /* clear D_*-bits by reading them */ |
| 173 | in_8(&psc->mpc52xx_psc_ipcr); |
| 174 | /* enable CTS and DCD as IPC interrupts */ |
| 175 | out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD); |
| 176 | |
| 177 | port->read_status_mask |= MPC52xx_PSC_IMR_IPC; |
| 178 | out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask); |
| 179 | } |
| 180 | |
| 181 | static void mpc52xx_psc_set_sicr(struct uart_port *port, u32 val) |
| 182 | { |
| 183 | out_be32(&PSC(port)->sicr, val); |
| 184 | } |
| 185 | |
| 186 | static void mpc52xx_psc_set_imr(struct uart_port *port, u16 val) |
| 187 | { |
| 188 | out_be16(&PSC(port)->mpc52xx_psc_imr, val); |
| 189 | } |
| 190 | |
| 191 | static u8 mpc52xx_psc_get_mr1(struct uart_port *port) |
| 192 | { |
| 193 | out_8(&PSC(port)->command, MPC52xx_PSC_SEL_MODE_REG_1); |
| 194 | return in_8(&PSC(port)->mode); |
| 195 | } |
| 196 | |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 197 | #ifdef CONFIG_PPC_MPC52xx |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 198 | #define FIFO_52xx(port) ((struct mpc52xx_psc_fifo __iomem *)(PSC(port)+1)) |
| 199 | static void mpc52xx_psc_fifo_init(struct uart_port *port) |
| 200 | { |
| 201 | struct mpc52xx_psc __iomem *psc = PSC(port); |
| 202 | struct mpc52xx_psc_fifo __iomem *fifo = FIFO_52xx(port); |
| 203 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 204 | out_8(&fifo->rfcntl, 0x00); |
| 205 | out_be16(&fifo->rfalarm, 0x1ff); |
| 206 | out_8(&fifo->tfcntl, 0x07); |
| 207 | out_be16(&fifo->tfalarm, 0x80); |
| 208 | |
| 209 | port->read_status_mask |= MPC52xx_PSC_IMR_RXRDY | MPC52xx_PSC_IMR_TXRDY; |
| 210 | out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask); |
| 211 | } |
| 212 | |
| 213 | static int mpc52xx_psc_raw_rx_rdy(struct uart_port *port) |
| 214 | { |
| 215 | return in_be16(&PSC(port)->mpc52xx_psc_status) |
| 216 | & MPC52xx_PSC_SR_RXRDY; |
| 217 | } |
| 218 | |
| 219 | static int mpc52xx_psc_raw_tx_rdy(struct uart_port *port) |
| 220 | { |
| 221 | return in_be16(&PSC(port)->mpc52xx_psc_status) |
| 222 | & MPC52xx_PSC_SR_TXRDY; |
| 223 | } |
| 224 | |
| 225 | |
| 226 | static int mpc52xx_psc_rx_rdy(struct uart_port *port) |
| 227 | { |
| 228 | return in_be16(&PSC(port)->mpc52xx_psc_isr) |
| 229 | & port->read_status_mask |
| 230 | & MPC52xx_PSC_IMR_RXRDY; |
| 231 | } |
| 232 | |
| 233 | static int mpc52xx_psc_tx_rdy(struct uart_port *port) |
| 234 | { |
| 235 | return in_be16(&PSC(port)->mpc52xx_psc_isr) |
| 236 | & port->read_status_mask |
| 237 | & MPC52xx_PSC_IMR_TXRDY; |
| 238 | } |
| 239 | |
| 240 | static int mpc52xx_psc_tx_empty(struct uart_port *port) |
| 241 | { |
| 242 | return in_be16(&PSC(port)->mpc52xx_psc_status) |
| 243 | & MPC52xx_PSC_SR_TXEMP; |
| 244 | } |
| 245 | |
| 246 | static void mpc52xx_psc_start_tx(struct uart_port *port) |
| 247 | { |
| 248 | port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY; |
| 249 | out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); |
| 250 | } |
| 251 | |
| 252 | static void mpc52xx_psc_stop_tx(struct uart_port *port) |
| 253 | { |
| 254 | port->read_status_mask &= ~MPC52xx_PSC_IMR_TXRDY; |
| 255 | out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); |
| 256 | } |
| 257 | |
| 258 | static void mpc52xx_psc_stop_rx(struct uart_port *port) |
| 259 | { |
| 260 | port->read_status_mask &= ~MPC52xx_PSC_IMR_RXRDY; |
| 261 | out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); |
| 262 | } |
| 263 | |
| 264 | static void mpc52xx_psc_rx_clr_irq(struct uart_port *port) |
| 265 | { |
| 266 | } |
| 267 | |
| 268 | static void mpc52xx_psc_tx_clr_irq(struct uart_port *port) |
| 269 | { |
| 270 | } |
| 271 | |
| 272 | static void mpc52xx_psc_write_char(struct uart_port *port, unsigned char c) |
| 273 | { |
| 274 | out_8(&PSC(port)->mpc52xx_psc_buffer_8, c); |
| 275 | } |
| 276 | |
| 277 | static unsigned char mpc52xx_psc_read_char(struct uart_port *port) |
| 278 | { |
| 279 | return in_8(&PSC(port)->mpc52xx_psc_buffer_8); |
| 280 | } |
| 281 | |
| 282 | static void mpc52xx_psc_cw_disable_ints(struct uart_port *port) |
| 283 | { |
| 284 | out_be16(&PSC(port)->mpc52xx_psc_imr, 0); |
| 285 | } |
| 286 | |
| 287 | static void mpc52xx_psc_cw_restore_ints(struct uart_port *port) |
| 288 | { |
| 289 | out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); |
| 290 | } |
| 291 | |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 292 | static unsigned int mpc5200_psc_set_baudrate(struct uart_port *port, |
| 293 | struct ktermios *new, |
| 294 | struct ktermios *old) |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 295 | { |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 296 | unsigned int baud; |
| 297 | unsigned int divisor; |
| 298 | |
| 299 | /* The 5200 has a fixed /32 prescaler, uartclk contains the ipb freq */ |
| 300 | baud = uart_get_baud_rate(port, new, old, |
| 301 | port->uartclk / (32 * 0xffff) + 1, |
| 302 | port->uartclk / 32); |
| 303 | divisor = (port->uartclk + 16 * baud) / (32 * baud); |
| 304 | |
| 305 | /* enable the /32 prescaler and set the divisor */ |
| 306 | mpc52xx_set_divisor(PSC(port), 0xdd00, divisor); |
| 307 | return baud; |
| 308 | } |
| 309 | |
| 310 | static unsigned int mpc5200b_psc_set_baudrate(struct uart_port *port, |
| 311 | struct ktermios *new, |
| 312 | struct ktermios *old) |
| 313 | { |
| 314 | unsigned int baud; |
| 315 | unsigned int divisor; |
| 316 | u16 prescaler; |
| 317 | |
| 318 | /* The 5200B has a selectable /4 or /32 prescaler, uartclk contains the |
| 319 | * ipb freq */ |
| 320 | baud = uart_get_baud_rate(port, new, old, |
| 321 | port->uartclk / (32 * 0xffff) + 1, |
| 322 | port->uartclk / 4); |
| 323 | divisor = (port->uartclk + 2 * baud) / (4 * baud); |
| 324 | |
Frank Benkert | e0955ac | 2012-03-05 16:14:29 +0100 | [diff] [blame] | 325 | /* select the proper prescaler and set the divisor |
| 326 | * prefer high prescaler for more tolerance on low baudrates */ |
| 327 | if (divisor > 0xffff || baud <= 115200) { |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 328 | divisor = (divisor + 4) / 8; |
| 329 | prescaler = 0xdd00; /* /32 */ |
| 330 | } else |
| 331 | prescaler = 0xff00; /* /4 */ |
| 332 | mpc52xx_set_divisor(PSC(port), prescaler, divisor); |
| 333 | return baud; |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 334 | } |
| 335 | |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 336 | static void mpc52xx_psc_get_irq(struct uart_port *port, struct device_node *np) |
| 337 | { |
Yong Zhang | 9cfb5c0 | 2011-09-22 16:59:15 +0800 | [diff] [blame] | 338 | port->irqflags = 0; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 339 | port->irq = irq_of_parse_and_map(np, 0); |
| 340 | } |
| 341 | |
| 342 | /* 52xx specific interrupt handler. The caller holds the port lock */ |
| 343 | static irqreturn_t mpc52xx_psc_handle_irq(struct uart_port *port) |
| 344 | { |
| 345 | return mpc5xxx_uart_process_int(port); |
| 346 | } |
| 347 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 348 | static struct psc_ops mpc52xx_psc_ops = { |
| 349 | .fifo_init = mpc52xx_psc_fifo_init, |
| 350 | .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy, |
| 351 | .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy, |
| 352 | .rx_rdy = mpc52xx_psc_rx_rdy, |
| 353 | .tx_rdy = mpc52xx_psc_tx_rdy, |
| 354 | .tx_empty = mpc52xx_psc_tx_empty, |
| 355 | .stop_rx = mpc52xx_psc_stop_rx, |
| 356 | .start_tx = mpc52xx_psc_start_tx, |
| 357 | .stop_tx = mpc52xx_psc_stop_tx, |
| 358 | .rx_clr_irq = mpc52xx_psc_rx_clr_irq, |
| 359 | .tx_clr_irq = mpc52xx_psc_tx_clr_irq, |
| 360 | .write_char = mpc52xx_psc_write_char, |
| 361 | .read_char = mpc52xx_psc_read_char, |
| 362 | .cw_disable_ints = mpc52xx_psc_cw_disable_ints, |
| 363 | .cw_restore_ints = mpc52xx_psc_cw_restore_ints, |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 364 | .set_baudrate = mpc5200_psc_set_baudrate, |
| 365 | .get_irq = mpc52xx_psc_get_irq, |
| 366 | .handle_irq = mpc52xx_psc_handle_irq, |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 367 | .get_status = mpc52xx_psc_get_status, |
| 368 | .get_ipcr = mpc52xx_psc_get_ipcr, |
| 369 | .command = mpc52xx_psc_command, |
| 370 | .set_mode = mpc52xx_psc_set_mode, |
| 371 | .set_rts = mpc52xx_psc_set_rts, |
| 372 | .enable_ms = mpc52xx_psc_enable_ms, |
| 373 | .set_sicr = mpc52xx_psc_set_sicr, |
| 374 | .set_imr = mpc52xx_psc_set_imr, |
| 375 | .get_mr1 = mpc52xx_psc_get_mr1, |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 376 | }; |
| 377 | |
| 378 | static struct psc_ops mpc5200b_psc_ops = { |
| 379 | .fifo_init = mpc52xx_psc_fifo_init, |
| 380 | .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy, |
| 381 | .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy, |
| 382 | .rx_rdy = mpc52xx_psc_rx_rdy, |
| 383 | .tx_rdy = mpc52xx_psc_tx_rdy, |
| 384 | .tx_empty = mpc52xx_psc_tx_empty, |
| 385 | .stop_rx = mpc52xx_psc_stop_rx, |
| 386 | .start_tx = mpc52xx_psc_start_tx, |
| 387 | .stop_tx = mpc52xx_psc_stop_tx, |
| 388 | .rx_clr_irq = mpc52xx_psc_rx_clr_irq, |
| 389 | .tx_clr_irq = mpc52xx_psc_tx_clr_irq, |
| 390 | .write_char = mpc52xx_psc_write_char, |
| 391 | .read_char = mpc52xx_psc_read_char, |
| 392 | .cw_disable_ints = mpc52xx_psc_cw_disable_ints, |
| 393 | .cw_restore_ints = mpc52xx_psc_cw_restore_ints, |
| 394 | .set_baudrate = mpc5200b_psc_set_baudrate, |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 395 | .get_irq = mpc52xx_psc_get_irq, |
| 396 | .handle_irq = mpc52xx_psc_handle_irq, |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 397 | .get_status = mpc52xx_psc_get_status, |
| 398 | .get_ipcr = mpc52xx_psc_get_ipcr, |
| 399 | .command = mpc52xx_psc_command, |
| 400 | .set_mode = mpc52xx_psc_set_mode, |
| 401 | .set_rts = mpc52xx_psc_set_rts, |
| 402 | .enable_ms = mpc52xx_psc_enable_ms, |
| 403 | .set_sicr = mpc52xx_psc_set_sicr, |
| 404 | .set_imr = mpc52xx_psc_set_imr, |
| 405 | .get_mr1 = mpc52xx_psc_get_mr1, |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 406 | }; |
| 407 | |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 408 | #endif /* CONFIG_MPC52xx */ |
| 409 | |
| 410 | #ifdef CONFIG_PPC_MPC512x |
| 411 | #define FIFO_512x(port) ((struct mpc512x_psc_fifo __iomem *)(PSC(port)+1)) |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 412 | |
| 413 | /* PSC FIFO Controller for mpc512x */ |
| 414 | struct psc_fifoc { |
| 415 | u32 fifoc_cmd; |
| 416 | u32 fifoc_int; |
| 417 | u32 fifoc_dma; |
| 418 | u32 fifoc_axe; |
| 419 | u32 fifoc_debug; |
| 420 | }; |
| 421 | |
| 422 | static struct psc_fifoc __iomem *psc_fifoc; |
| 423 | static unsigned int psc_fifoc_irq; |
Gerhard Sittig | cb1ea81 | 2013-11-30 23:51:30 +0100 | [diff] [blame] | 424 | static struct clk *psc_fifoc_clk; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 425 | |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 426 | static void mpc512x_psc_fifo_init(struct uart_port *port) |
| 427 | { |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 428 | /* /32 prescaler */ |
| 429 | out_be16(&PSC(port)->mpc52xx_psc_clock_select, 0xdd00); |
| 430 | |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 431 | out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE); |
| 432 | out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE); |
| 433 | out_be32(&FIFO_512x(port)->txalarm, 1); |
| 434 | out_be32(&FIFO_512x(port)->tximr, 0); |
| 435 | |
| 436 | out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE); |
| 437 | out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE); |
| 438 | out_be32(&FIFO_512x(port)->rxalarm, 1); |
| 439 | out_be32(&FIFO_512x(port)->rximr, 0); |
| 440 | |
| 441 | out_be32(&FIFO_512x(port)->tximr, MPC512x_PSC_FIFO_ALARM); |
| 442 | out_be32(&FIFO_512x(port)->rximr, MPC512x_PSC_FIFO_ALARM); |
| 443 | } |
| 444 | |
| 445 | static int mpc512x_psc_raw_rx_rdy(struct uart_port *port) |
| 446 | { |
| 447 | return !(in_be32(&FIFO_512x(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY); |
| 448 | } |
| 449 | |
| 450 | static int mpc512x_psc_raw_tx_rdy(struct uart_port *port) |
| 451 | { |
| 452 | return !(in_be32(&FIFO_512x(port)->txsr) & MPC512x_PSC_FIFO_FULL); |
| 453 | } |
| 454 | |
| 455 | static int mpc512x_psc_rx_rdy(struct uart_port *port) |
| 456 | { |
| 457 | return in_be32(&FIFO_512x(port)->rxsr) |
| 458 | & in_be32(&FIFO_512x(port)->rximr) |
| 459 | & MPC512x_PSC_FIFO_ALARM; |
| 460 | } |
| 461 | |
| 462 | static int mpc512x_psc_tx_rdy(struct uart_port *port) |
| 463 | { |
| 464 | return in_be32(&FIFO_512x(port)->txsr) |
| 465 | & in_be32(&FIFO_512x(port)->tximr) |
| 466 | & MPC512x_PSC_FIFO_ALARM; |
| 467 | } |
| 468 | |
| 469 | static int mpc512x_psc_tx_empty(struct uart_port *port) |
| 470 | { |
| 471 | return in_be32(&FIFO_512x(port)->txsr) |
| 472 | & MPC512x_PSC_FIFO_EMPTY; |
| 473 | } |
| 474 | |
| 475 | static void mpc512x_psc_stop_rx(struct uart_port *port) |
| 476 | { |
| 477 | unsigned long rx_fifo_imr; |
| 478 | |
| 479 | rx_fifo_imr = in_be32(&FIFO_512x(port)->rximr); |
| 480 | rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM; |
| 481 | out_be32(&FIFO_512x(port)->rximr, rx_fifo_imr); |
| 482 | } |
| 483 | |
| 484 | static void mpc512x_psc_start_tx(struct uart_port *port) |
| 485 | { |
| 486 | unsigned long tx_fifo_imr; |
| 487 | |
| 488 | tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr); |
| 489 | tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM; |
| 490 | out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr); |
| 491 | } |
| 492 | |
| 493 | static void mpc512x_psc_stop_tx(struct uart_port *port) |
| 494 | { |
| 495 | unsigned long tx_fifo_imr; |
| 496 | |
| 497 | tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr); |
| 498 | tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM; |
| 499 | out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr); |
| 500 | } |
| 501 | |
| 502 | static void mpc512x_psc_rx_clr_irq(struct uart_port *port) |
| 503 | { |
| 504 | out_be32(&FIFO_512x(port)->rxisr, in_be32(&FIFO_512x(port)->rxisr)); |
| 505 | } |
| 506 | |
| 507 | static void mpc512x_psc_tx_clr_irq(struct uart_port *port) |
| 508 | { |
| 509 | out_be32(&FIFO_512x(port)->txisr, in_be32(&FIFO_512x(port)->txisr)); |
| 510 | } |
| 511 | |
| 512 | static void mpc512x_psc_write_char(struct uart_port *port, unsigned char c) |
| 513 | { |
| 514 | out_8(&FIFO_512x(port)->txdata_8, c); |
| 515 | } |
| 516 | |
| 517 | static unsigned char mpc512x_psc_read_char(struct uart_port *port) |
| 518 | { |
| 519 | return in_8(&FIFO_512x(port)->rxdata_8); |
| 520 | } |
| 521 | |
| 522 | static void mpc512x_psc_cw_disable_ints(struct uart_port *port) |
| 523 | { |
| 524 | port->read_status_mask = |
| 525 | in_be32(&FIFO_512x(port)->tximr) << 16 | |
| 526 | in_be32(&FIFO_512x(port)->rximr); |
| 527 | out_be32(&FIFO_512x(port)->tximr, 0); |
| 528 | out_be32(&FIFO_512x(port)->rximr, 0); |
| 529 | } |
| 530 | |
| 531 | static void mpc512x_psc_cw_restore_ints(struct uart_port *port) |
| 532 | { |
| 533 | out_be32(&FIFO_512x(port)->tximr, |
| 534 | (port->read_status_mask >> 16) & 0x7f); |
| 535 | out_be32(&FIFO_512x(port)->rximr, port->read_status_mask & 0x7f); |
| 536 | } |
| 537 | |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 538 | static unsigned int mpc512x_psc_set_baudrate(struct uart_port *port, |
| 539 | struct ktermios *new, |
| 540 | struct ktermios *old) |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 541 | { |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 542 | unsigned int baud; |
| 543 | unsigned int divisor; |
| 544 | |
| 545 | /* |
| 546 | * The "MPC5121e Microcontroller Reference Manual, Rev. 3" says on |
| 547 | * pg. 30-10 that the chip supports a /32 and a /10 prescaler. |
| 548 | * Furthermore, it states that "After reset, the prescaler by 10 |
| 549 | * for the UART mode is selected", but the reset register value is |
| 550 | * 0x0000 which means a /32 prescaler. This is wrong. |
| 551 | * |
| 552 | * In reality using /32 prescaler doesn't work, as it is not supported! |
| 553 | * Use /16 or /10 prescaler, see "MPC5121e Hardware Design Guide", |
| 554 | * Chapter 4.1 PSC in UART Mode. |
| 555 | * Calculate with a /16 prescaler here. |
| 556 | */ |
| 557 | |
| 558 | /* uartclk contains the ips freq */ |
| 559 | baud = uart_get_baud_rate(port, new, old, |
| 560 | port->uartclk / (16 * 0xffff) + 1, |
| 561 | port->uartclk / 16); |
| 562 | divisor = (port->uartclk + 8 * baud) / (16 * baud); |
| 563 | |
| 564 | /* enable the /16 prescaler and set the divisor */ |
| 565 | mpc52xx_set_divisor(PSC(port), 0xdd00, divisor); |
| 566 | return baud; |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 567 | } |
| 568 | |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 569 | /* Init PSC FIFO Controller */ |
| 570 | static int __init mpc512x_psc_fifoc_init(void) |
| 571 | { |
Gerhard Sittig | cb1ea81 | 2013-11-30 23:51:30 +0100 | [diff] [blame] | 572 | int err; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 573 | struct device_node *np; |
Gerhard Sittig | cb1ea81 | 2013-11-30 23:51:30 +0100 | [diff] [blame] | 574 | struct clk *clk; |
| 575 | |
| 576 | /* default error code, potentially overwritten by clock calls */ |
| 577 | err = -ENODEV; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 578 | |
| 579 | np = of_find_compatible_node(NULL, NULL, |
| 580 | "fsl,mpc5121-psc-fifo"); |
| 581 | if (!np) { |
| 582 | pr_err("%s: Can't find FIFOC node\n", __func__); |
Gerhard Sittig | cb1ea81 | 2013-11-30 23:51:30 +0100 | [diff] [blame] | 583 | goto out_err; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 584 | } |
| 585 | |
Gerhard Sittig | cb1ea81 | 2013-11-30 23:51:30 +0100 | [diff] [blame] | 586 | clk = of_clk_get(np, 0); |
| 587 | if (IS_ERR(clk)) { |
| 588 | /* backwards compat with device trees that lack clock specs */ |
| 589 | clk = clk_get_sys(np->name, "ipg"); |
| 590 | } |
| 591 | if (IS_ERR(clk)) { |
| 592 | pr_err("%s: Can't lookup FIFO clock\n", __func__); |
| 593 | err = PTR_ERR(clk); |
| 594 | goto out_ofnode_put; |
| 595 | } |
| 596 | if (clk_prepare_enable(clk)) { |
| 597 | pr_err("%s: Can't enable FIFO clock\n", __func__); |
| 598 | clk_put(clk); |
| 599 | goto out_ofnode_put; |
| 600 | } |
| 601 | psc_fifoc_clk = clk; |
| 602 | |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 603 | psc_fifoc = of_iomap(np, 0); |
| 604 | if (!psc_fifoc) { |
| 605 | pr_err("%s: Can't map FIFOC\n", __func__); |
Gerhard Sittig | cb1ea81 | 2013-11-30 23:51:30 +0100 | [diff] [blame] | 606 | goto out_clk_disable; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | psc_fifoc_irq = irq_of_parse_and_map(np, 0); |
Alan Cox | d4e33fa | 2012-01-26 17:44:09 +0000 | [diff] [blame] | 610 | if (psc_fifoc_irq == 0) { |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 611 | pr_err("%s: Can't get FIFOC irq\n", __func__); |
Gerhard Sittig | cb1ea81 | 2013-11-30 23:51:30 +0100 | [diff] [blame] | 612 | goto out_unmap; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 613 | } |
| 614 | |
Gerhard Sittig | cb1ea81 | 2013-11-30 23:51:30 +0100 | [diff] [blame] | 615 | of_node_put(np); |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 616 | return 0; |
Gerhard Sittig | cb1ea81 | 2013-11-30 23:51:30 +0100 | [diff] [blame] | 617 | |
| 618 | out_unmap: |
| 619 | iounmap(psc_fifoc); |
| 620 | out_clk_disable: |
| 621 | clk_disable_unprepare(psc_fifoc_clk); |
| 622 | clk_put(psc_fifoc_clk); |
| 623 | out_ofnode_put: |
| 624 | of_node_put(np); |
| 625 | out_err: |
| 626 | return err; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | static void __exit mpc512x_psc_fifoc_uninit(void) |
| 630 | { |
| 631 | iounmap(psc_fifoc); |
Gerhard Sittig | cb1ea81 | 2013-11-30 23:51:30 +0100 | [diff] [blame] | 632 | |
| 633 | /* disable the clock, errors are not fatal */ |
| 634 | if (psc_fifoc_clk) { |
| 635 | clk_disable_unprepare(psc_fifoc_clk); |
| 636 | clk_put(psc_fifoc_clk); |
| 637 | psc_fifoc_clk = NULL; |
| 638 | } |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | /* 512x specific interrupt handler. The caller holds the port lock */ |
| 642 | static irqreturn_t mpc512x_psc_handle_irq(struct uart_port *port) |
| 643 | { |
| 644 | unsigned long fifoc_int; |
| 645 | int psc_num; |
| 646 | |
| 647 | /* Read pending PSC FIFOC interrupts */ |
| 648 | fifoc_int = in_be32(&psc_fifoc->fifoc_int); |
| 649 | |
| 650 | /* Check if it is an interrupt for this port */ |
| 651 | psc_num = (port->mapbase & 0xf00) >> 8; |
| 652 | if (test_bit(psc_num, &fifoc_int) || |
| 653 | test_bit(psc_num + 16, &fifoc_int)) |
| 654 | return mpc5xxx_uart_process_int(port); |
| 655 | |
| 656 | return IRQ_NONE; |
| 657 | } |
| 658 | |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 659 | static struct clk *psc_mclk_clk[MPC52xx_PSC_MAXNUM]; |
Gerhard Sittig | e149b42 | 2013-11-30 23:51:29 +0100 | [diff] [blame] | 660 | static struct clk *psc_ipg_clk[MPC52xx_PSC_MAXNUM]; |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 661 | |
| 662 | /* called from within the .request_port() callback (allocation) */ |
| 663 | static int mpc512x_psc_alloc_clock(struct uart_port *port) |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 664 | { |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 665 | int psc_num; |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 666 | struct clk *clk; |
| 667 | int err; |
| 668 | |
| 669 | psc_num = (port->mapbase & 0xf00) >> 8; |
Gerhard Sittig | e149b42 | 2013-11-30 23:51:29 +0100 | [diff] [blame] | 670 | |
| 671 | clk = devm_clk_get(port->dev, "mclk"); |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 672 | if (IS_ERR(clk)) { |
| 673 | dev_err(port->dev, "Failed to get MCLK!\n"); |
Gerhard Sittig | e149b42 | 2013-11-30 23:51:29 +0100 | [diff] [blame] | 674 | err = PTR_ERR(clk); |
| 675 | goto out_err; |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 676 | } |
| 677 | err = clk_prepare_enable(clk); |
| 678 | if (err) { |
| 679 | dev_err(port->dev, "Failed to enable MCLK!\n"); |
Gerhard Sittig | e149b42 | 2013-11-30 23:51:29 +0100 | [diff] [blame] | 680 | goto out_err; |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 681 | } |
| 682 | psc_mclk_clk[psc_num] = clk; |
Gerhard Sittig | e149b42 | 2013-11-30 23:51:29 +0100 | [diff] [blame] | 683 | |
| 684 | clk = devm_clk_get(port->dev, "ipg"); |
| 685 | if (IS_ERR(clk)) { |
| 686 | dev_err(port->dev, "Failed to get IPG clock!\n"); |
| 687 | err = PTR_ERR(clk); |
| 688 | goto out_err; |
| 689 | } |
| 690 | err = clk_prepare_enable(clk); |
| 691 | if (err) { |
| 692 | dev_err(port->dev, "Failed to enable IPG clock!\n"); |
| 693 | goto out_err; |
| 694 | } |
| 695 | psc_ipg_clk[psc_num] = clk; |
| 696 | |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 697 | return 0; |
Gerhard Sittig | e149b42 | 2013-11-30 23:51:29 +0100 | [diff] [blame] | 698 | |
| 699 | out_err: |
| 700 | if (psc_mclk_clk[psc_num]) { |
| 701 | clk_disable_unprepare(psc_mclk_clk[psc_num]); |
| 702 | psc_mclk_clk[psc_num] = NULL; |
| 703 | } |
| 704 | if (psc_ipg_clk[psc_num]) { |
| 705 | clk_disable_unprepare(psc_ipg_clk[psc_num]); |
| 706 | psc_ipg_clk[psc_num] = NULL; |
| 707 | } |
| 708 | return err; |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 709 | } |
| 710 | |
| 711 | /* called from within the .release_port() callback (release) */ |
| 712 | static void mpc512x_psc_relse_clock(struct uart_port *port) |
| 713 | { |
| 714 | int psc_num; |
| 715 | struct clk *clk; |
| 716 | |
| 717 | psc_num = (port->mapbase & 0xf00) >> 8; |
| 718 | clk = psc_mclk_clk[psc_num]; |
| 719 | if (clk) { |
| 720 | clk_disable_unprepare(clk); |
| 721 | psc_mclk_clk[psc_num] = NULL; |
| 722 | } |
Gerhard Sittig | e149b42 | 2013-11-30 23:51:29 +0100 | [diff] [blame] | 723 | if (psc_ipg_clk[psc_num]) { |
| 724 | clk_disable_unprepare(psc_ipg_clk[psc_num]); |
| 725 | psc_ipg_clk[psc_num] = NULL; |
| 726 | } |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 727 | } |
| 728 | |
| 729 | /* implementation of the .clock() callback (enable/disable) */ |
| 730 | static int mpc512x_psc_endis_clock(struct uart_port *port, int enable) |
| 731 | { |
| 732 | int psc_num; |
| 733 | struct clk *psc_clk; |
| 734 | int ret; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 735 | |
| 736 | if (uart_console(port)) |
| 737 | return 0; |
| 738 | |
| 739 | psc_num = (port->mapbase & 0xf00) >> 8; |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 740 | psc_clk = psc_mclk_clk[psc_num]; |
| 741 | if (!psc_clk) { |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 742 | dev_err(port->dev, "Failed to get PSC clock entry!\n"); |
| 743 | return -ENODEV; |
| 744 | } |
| 745 | |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 746 | dev_dbg(port->dev, "mclk %sable\n", enable ? "en" : "dis"); |
| 747 | if (enable) { |
| 748 | ret = clk_enable(psc_clk); |
| 749 | if (ret) |
| 750 | dev_err(port->dev, "Failed to enable MCLK!\n"); |
| 751 | return ret; |
| 752 | } else { |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 753 | clk_disable(psc_clk); |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 754 | return 0; |
| 755 | } |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | static void mpc512x_psc_get_irq(struct uart_port *port, struct device_node *np) |
| 759 | { |
| 760 | port->irqflags = IRQF_SHARED; |
| 761 | port->irq = psc_fifoc_irq; |
| 762 | } |
Matteo Facchinetti | 1f48c49 | 2013-05-24 20:24:59 +0200 | [diff] [blame] | 763 | #endif |
| 764 | |
| 765 | #ifdef CONFIG_PPC_MPC512x |
| 766 | |
| 767 | #define PSC_5125(port) ((struct mpc5125_psc __iomem *)((port)->membase)) |
| 768 | #define FIFO_5125(port) ((struct mpc512x_psc_fifo __iomem *)(PSC_5125(port)+1)) |
| 769 | |
| 770 | static void mpc5125_psc_fifo_init(struct uart_port *port) |
| 771 | { |
| 772 | /* /32 prescaler */ |
| 773 | out_8(&PSC_5125(port)->mpc52xx_psc_clock_select, 0xdd); |
| 774 | |
| 775 | out_be32(&FIFO_5125(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE); |
| 776 | out_be32(&FIFO_5125(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE); |
| 777 | out_be32(&FIFO_5125(port)->txalarm, 1); |
| 778 | out_be32(&FIFO_5125(port)->tximr, 0); |
| 779 | |
| 780 | out_be32(&FIFO_5125(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE); |
| 781 | out_be32(&FIFO_5125(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE); |
| 782 | out_be32(&FIFO_5125(port)->rxalarm, 1); |
| 783 | out_be32(&FIFO_5125(port)->rximr, 0); |
| 784 | |
| 785 | out_be32(&FIFO_5125(port)->tximr, MPC512x_PSC_FIFO_ALARM); |
| 786 | out_be32(&FIFO_5125(port)->rximr, MPC512x_PSC_FIFO_ALARM); |
| 787 | } |
| 788 | |
| 789 | static int mpc5125_psc_raw_rx_rdy(struct uart_port *port) |
| 790 | { |
| 791 | return !(in_be32(&FIFO_5125(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY); |
| 792 | } |
| 793 | |
| 794 | static int mpc5125_psc_raw_tx_rdy(struct uart_port *port) |
| 795 | { |
| 796 | return !(in_be32(&FIFO_5125(port)->txsr) & MPC512x_PSC_FIFO_FULL); |
| 797 | } |
| 798 | |
| 799 | static int mpc5125_psc_rx_rdy(struct uart_port *port) |
| 800 | { |
| 801 | return in_be32(&FIFO_5125(port)->rxsr) & |
| 802 | in_be32(&FIFO_5125(port)->rximr) & MPC512x_PSC_FIFO_ALARM; |
| 803 | } |
| 804 | |
| 805 | static int mpc5125_psc_tx_rdy(struct uart_port *port) |
| 806 | { |
| 807 | return in_be32(&FIFO_5125(port)->txsr) & |
| 808 | in_be32(&FIFO_5125(port)->tximr) & MPC512x_PSC_FIFO_ALARM; |
| 809 | } |
| 810 | |
| 811 | static int mpc5125_psc_tx_empty(struct uart_port *port) |
| 812 | { |
| 813 | return in_be32(&FIFO_5125(port)->txsr) & MPC512x_PSC_FIFO_EMPTY; |
| 814 | } |
| 815 | |
| 816 | static void mpc5125_psc_stop_rx(struct uart_port *port) |
| 817 | { |
| 818 | unsigned long rx_fifo_imr; |
| 819 | |
| 820 | rx_fifo_imr = in_be32(&FIFO_5125(port)->rximr); |
| 821 | rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM; |
| 822 | out_be32(&FIFO_5125(port)->rximr, rx_fifo_imr); |
| 823 | } |
| 824 | |
| 825 | static void mpc5125_psc_start_tx(struct uart_port *port) |
| 826 | { |
| 827 | unsigned long tx_fifo_imr; |
| 828 | |
| 829 | tx_fifo_imr = in_be32(&FIFO_5125(port)->tximr); |
| 830 | tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM; |
| 831 | out_be32(&FIFO_5125(port)->tximr, tx_fifo_imr); |
| 832 | } |
| 833 | |
| 834 | static void mpc5125_psc_stop_tx(struct uart_port *port) |
| 835 | { |
| 836 | unsigned long tx_fifo_imr; |
| 837 | |
| 838 | tx_fifo_imr = in_be32(&FIFO_5125(port)->tximr); |
| 839 | tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM; |
| 840 | out_be32(&FIFO_5125(port)->tximr, tx_fifo_imr); |
| 841 | } |
| 842 | |
| 843 | static void mpc5125_psc_rx_clr_irq(struct uart_port *port) |
| 844 | { |
| 845 | out_be32(&FIFO_5125(port)->rxisr, in_be32(&FIFO_5125(port)->rxisr)); |
| 846 | } |
| 847 | |
| 848 | static void mpc5125_psc_tx_clr_irq(struct uart_port *port) |
| 849 | { |
| 850 | out_be32(&FIFO_5125(port)->txisr, in_be32(&FIFO_5125(port)->txisr)); |
| 851 | } |
| 852 | |
| 853 | static void mpc5125_psc_write_char(struct uart_port *port, unsigned char c) |
| 854 | { |
| 855 | out_8(&FIFO_5125(port)->txdata_8, c); |
| 856 | } |
| 857 | |
| 858 | static unsigned char mpc5125_psc_read_char(struct uart_port *port) |
| 859 | { |
| 860 | return in_8(&FIFO_5125(port)->rxdata_8); |
| 861 | } |
| 862 | |
| 863 | static void mpc5125_psc_cw_disable_ints(struct uart_port *port) |
| 864 | { |
| 865 | port->read_status_mask = |
| 866 | in_be32(&FIFO_5125(port)->tximr) << 16 | |
| 867 | in_be32(&FIFO_5125(port)->rximr); |
| 868 | out_be32(&FIFO_5125(port)->tximr, 0); |
| 869 | out_be32(&FIFO_5125(port)->rximr, 0); |
| 870 | } |
| 871 | |
| 872 | static void mpc5125_psc_cw_restore_ints(struct uart_port *port) |
| 873 | { |
| 874 | out_be32(&FIFO_5125(port)->tximr, |
| 875 | (port->read_status_mask >> 16) & 0x7f); |
| 876 | out_be32(&FIFO_5125(port)->rximr, port->read_status_mask & 0x7f); |
| 877 | } |
| 878 | |
| 879 | static inline void mpc5125_set_divisor(struct mpc5125_psc __iomem *psc, |
| 880 | u8 prescaler, unsigned int divisor) |
| 881 | { |
| 882 | /* select prescaler */ |
| 883 | out_8(&psc->mpc52xx_psc_clock_select, prescaler); |
| 884 | out_8(&psc->ctur, divisor >> 8); |
| 885 | out_8(&psc->ctlr, divisor & 0xff); |
| 886 | } |
| 887 | |
| 888 | static unsigned int mpc5125_psc_set_baudrate(struct uart_port *port, |
| 889 | struct ktermios *new, |
| 890 | struct ktermios *old) |
| 891 | { |
| 892 | unsigned int baud; |
| 893 | unsigned int divisor; |
| 894 | |
| 895 | /* |
| 896 | * Calculate with a /16 prescaler here. |
| 897 | */ |
| 898 | |
| 899 | /* uartclk contains the ips freq */ |
| 900 | baud = uart_get_baud_rate(port, new, old, |
| 901 | port->uartclk / (16 * 0xffff) + 1, |
| 902 | port->uartclk / 16); |
| 903 | divisor = (port->uartclk + 8 * baud) / (16 * baud); |
| 904 | |
| 905 | /* enable the /16 prescaler and set the divisor */ |
| 906 | mpc5125_set_divisor(PSC_5125(port), 0xdd, divisor); |
| 907 | return baud; |
| 908 | } |
| 909 | |
| 910 | /* |
| 911 | * MPC5125 have compatible PSC FIFO Controller. |
| 912 | * Special init not needed. |
| 913 | */ |
| 914 | static u16 mpc5125_psc_get_status(struct uart_port *port) |
| 915 | { |
| 916 | return in_be16(&PSC_5125(port)->mpc52xx_psc_status); |
| 917 | } |
| 918 | |
| 919 | static u8 mpc5125_psc_get_ipcr(struct uart_port *port) |
| 920 | { |
| 921 | return in_8(&PSC_5125(port)->mpc52xx_psc_ipcr); |
| 922 | } |
| 923 | |
| 924 | static void mpc5125_psc_command(struct uart_port *port, u8 cmd) |
| 925 | { |
| 926 | out_8(&PSC_5125(port)->command, cmd); |
| 927 | } |
| 928 | |
| 929 | static void mpc5125_psc_set_mode(struct uart_port *port, u8 mr1, u8 mr2) |
| 930 | { |
| 931 | out_8(&PSC_5125(port)->mr1, mr1); |
| 932 | out_8(&PSC_5125(port)->mr2, mr2); |
| 933 | } |
| 934 | |
| 935 | static void mpc5125_psc_set_rts(struct uart_port *port, int state) |
| 936 | { |
| 937 | if (state & TIOCM_RTS) |
| 938 | out_8(&PSC_5125(port)->op1, MPC52xx_PSC_OP_RTS); |
| 939 | else |
| 940 | out_8(&PSC_5125(port)->op0, MPC52xx_PSC_OP_RTS); |
| 941 | } |
| 942 | |
| 943 | static void mpc5125_psc_enable_ms(struct uart_port *port) |
| 944 | { |
| 945 | struct mpc5125_psc __iomem *psc = PSC_5125(port); |
| 946 | |
| 947 | /* clear D_*-bits by reading them */ |
| 948 | in_8(&psc->mpc52xx_psc_ipcr); |
| 949 | /* enable CTS and DCD as IPC interrupts */ |
| 950 | out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD); |
| 951 | |
| 952 | port->read_status_mask |= MPC52xx_PSC_IMR_IPC; |
| 953 | out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask); |
| 954 | } |
| 955 | |
| 956 | static void mpc5125_psc_set_sicr(struct uart_port *port, u32 val) |
| 957 | { |
| 958 | out_be32(&PSC_5125(port)->sicr, val); |
| 959 | } |
| 960 | |
| 961 | static void mpc5125_psc_set_imr(struct uart_port *port, u16 val) |
| 962 | { |
| 963 | out_be16(&PSC_5125(port)->mpc52xx_psc_imr, val); |
| 964 | } |
| 965 | |
| 966 | static u8 mpc5125_psc_get_mr1(struct uart_port *port) |
| 967 | { |
| 968 | return in_8(&PSC_5125(port)->mr1); |
| 969 | } |
| 970 | |
| 971 | static struct psc_ops mpc5125_psc_ops = { |
| 972 | .fifo_init = mpc5125_psc_fifo_init, |
| 973 | .raw_rx_rdy = mpc5125_psc_raw_rx_rdy, |
| 974 | .raw_tx_rdy = mpc5125_psc_raw_tx_rdy, |
| 975 | .rx_rdy = mpc5125_psc_rx_rdy, |
| 976 | .tx_rdy = mpc5125_psc_tx_rdy, |
| 977 | .tx_empty = mpc5125_psc_tx_empty, |
| 978 | .stop_rx = mpc5125_psc_stop_rx, |
| 979 | .start_tx = mpc5125_psc_start_tx, |
| 980 | .stop_tx = mpc5125_psc_stop_tx, |
| 981 | .rx_clr_irq = mpc5125_psc_rx_clr_irq, |
| 982 | .tx_clr_irq = mpc5125_psc_tx_clr_irq, |
| 983 | .write_char = mpc5125_psc_write_char, |
| 984 | .read_char = mpc5125_psc_read_char, |
| 985 | .cw_disable_ints = mpc5125_psc_cw_disable_ints, |
| 986 | .cw_restore_ints = mpc5125_psc_cw_restore_ints, |
| 987 | .set_baudrate = mpc5125_psc_set_baudrate, |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 988 | .clock_alloc = mpc512x_psc_alloc_clock, |
| 989 | .clock_relse = mpc512x_psc_relse_clock, |
| 990 | .clock = mpc512x_psc_endis_clock, |
Matteo Facchinetti | 1f48c49 | 2013-05-24 20:24:59 +0200 | [diff] [blame] | 991 | .fifoc_init = mpc512x_psc_fifoc_init, |
| 992 | .fifoc_uninit = mpc512x_psc_fifoc_uninit, |
| 993 | .get_irq = mpc512x_psc_get_irq, |
| 994 | .handle_irq = mpc512x_psc_handle_irq, |
| 995 | .get_status = mpc5125_psc_get_status, |
| 996 | .get_ipcr = mpc5125_psc_get_ipcr, |
| 997 | .command = mpc5125_psc_command, |
| 998 | .set_mode = mpc5125_psc_set_mode, |
| 999 | .set_rts = mpc5125_psc_set_rts, |
| 1000 | .enable_ms = mpc5125_psc_enable_ms, |
| 1001 | .set_sicr = mpc5125_psc_set_sicr, |
| 1002 | .set_imr = mpc5125_psc_set_imr, |
| 1003 | .get_mr1 = mpc5125_psc_get_mr1, |
| 1004 | }; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1005 | |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 1006 | static struct psc_ops mpc512x_psc_ops = { |
| 1007 | .fifo_init = mpc512x_psc_fifo_init, |
| 1008 | .raw_rx_rdy = mpc512x_psc_raw_rx_rdy, |
| 1009 | .raw_tx_rdy = mpc512x_psc_raw_tx_rdy, |
| 1010 | .rx_rdy = mpc512x_psc_rx_rdy, |
| 1011 | .tx_rdy = mpc512x_psc_tx_rdy, |
| 1012 | .tx_empty = mpc512x_psc_tx_empty, |
| 1013 | .stop_rx = mpc512x_psc_stop_rx, |
| 1014 | .start_tx = mpc512x_psc_start_tx, |
| 1015 | .stop_tx = mpc512x_psc_stop_tx, |
| 1016 | .rx_clr_irq = mpc512x_psc_rx_clr_irq, |
| 1017 | .tx_clr_irq = mpc512x_psc_tx_clr_irq, |
| 1018 | .write_char = mpc512x_psc_write_char, |
| 1019 | .read_char = mpc512x_psc_read_char, |
| 1020 | .cw_disable_ints = mpc512x_psc_cw_disable_ints, |
| 1021 | .cw_restore_ints = mpc512x_psc_cw_restore_ints, |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 1022 | .set_baudrate = mpc512x_psc_set_baudrate, |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 1023 | .clock_alloc = mpc512x_psc_alloc_clock, |
| 1024 | .clock_relse = mpc512x_psc_relse_clock, |
| 1025 | .clock = mpc512x_psc_endis_clock, |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1026 | .fifoc_init = mpc512x_psc_fifoc_init, |
| 1027 | .fifoc_uninit = mpc512x_psc_fifoc_uninit, |
| 1028 | .get_irq = mpc512x_psc_get_irq, |
| 1029 | .handle_irq = mpc512x_psc_handle_irq, |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1030 | .get_status = mpc52xx_psc_get_status, |
| 1031 | .get_ipcr = mpc52xx_psc_get_ipcr, |
| 1032 | .command = mpc52xx_psc_command, |
| 1033 | .set_mode = mpc52xx_psc_set_mode, |
| 1034 | .set_rts = mpc52xx_psc_set_rts, |
| 1035 | .enable_ms = mpc52xx_psc_enable_ms, |
| 1036 | .set_sicr = mpc52xx_psc_set_sicr, |
| 1037 | .set_imr = mpc52xx_psc_set_imr, |
| 1038 | .get_mr1 = mpc52xx_psc_get_mr1, |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 1039 | }; |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1040 | #endif /* CONFIG_PPC_MPC512x */ |
| 1041 | |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 1042 | |
Uwe Kleine-König | 76d28e4 | 2012-05-21 21:57:39 +0200 | [diff] [blame] | 1043 | static const struct psc_ops *psc_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | |
| 1045 | /* ======================================================================== */ |
| 1046 | /* UART operations */ |
| 1047 | /* ======================================================================== */ |
| 1048 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1049 | static unsigned int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | mpc52xx_uart_tx_empty(struct uart_port *port) |
| 1051 | { |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1052 | return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | } |
| 1054 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1055 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) |
| 1057 | { |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1058 | psc_ops->set_rts(port, mctrl & TIOCM_RTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | } |
| 1060 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1061 | static unsigned int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | mpc52xx_uart_get_mctrl(struct uart_port *port) |
| 1063 | { |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1064 | unsigned int ret = TIOCM_DSR; |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1065 | u8 status = psc_ops->get_ipcr(port); |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1066 | |
| 1067 | if (!(status & MPC52xx_PSC_CTS)) |
| 1068 | ret |= TIOCM_CTS; |
| 1069 | if (!(status & MPC52xx_PSC_DCD)) |
| 1070 | ret |= TIOCM_CAR; |
| 1071 | |
| 1072 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | } |
| 1074 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1075 | static void |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 1076 | mpc52xx_uart_stop_tx(struct uart_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | { |
| 1078 | /* port->lock taken by caller */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1079 | psc_ops->stop_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | } |
| 1081 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1082 | static void |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 1083 | mpc52xx_uart_start_tx(struct uart_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | { |
| 1085 | /* port->lock taken by caller */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1086 | psc_ops->start_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | } |
| 1088 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1089 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | mpc52xx_uart_send_xchar(struct uart_port *port, char ch) |
| 1091 | { |
| 1092 | unsigned long flags; |
| 1093 | spin_lock_irqsave(&port->lock, flags); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1094 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | port->x_char = ch; |
| 1096 | if (ch) { |
| 1097 | /* Make sure tx interrupts are on */ |
| 1098 | /* Truly necessary ??? They should be anyway */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1099 | psc_ops->start_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | } |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | spin_unlock_irqrestore(&port->lock, flags); |
| 1103 | } |
| 1104 | |
| 1105 | static void |
| 1106 | mpc52xx_uart_stop_rx(struct uart_port *port) |
| 1107 | { |
| 1108 | /* port->lock taken by caller */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1109 | psc_ops->stop_rx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | } |
| 1111 | |
| 1112 | static void |
| 1113 | mpc52xx_uart_enable_ms(struct uart_port *port) |
| 1114 | { |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1115 | psc_ops->enable_ms(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | } |
| 1117 | |
| 1118 | static void |
| 1119 | mpc52xx_uart_break_ctl(struct uart_port *port, int ctl) |
| 1120 | { |
| 1121 | unsigned long flags; |
| 1122 | spin_lock_irqsave(&port->lock, flags); |
| 1123 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1124 | if (ctl == -1) |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1125 | psc_ops->command(port, MPC52xx_PSC_START_BRK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | else |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1127 | psc_ops->command(port, MPC52xx_PSC_STOP_BRK); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | spin_unlock_irqrestore(&port->lock, flags); |
| 1130 | } |
| 1131 | |
| 1132 | static int |
| 1133 | mpc52xx_uart_startup(struct uart_port *port) |
| 1134 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | int ret; |
| 1136 | |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1137 | if (psc_ops->clock) { |
| 1138 | ret = psc_ops->clock(port, 1); |
| 1139 | if (ret) |
| 1140 | return ret; |
| 1141 | } |
| 1142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | /* Request IRQ */ |
| 1144 | ret = request_irq(port->irq, mpc52xx_uart_int, |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1145 | port->irqflags, "mpc52xx_psc_uart", port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | if (ret) |
| 1147 | return ret; |
| 1148 | |
| 1149 | /* Reset/activate the port, clear and enable interrupts */ |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1150 | psc_ops->command(port, MPC52xx_PSC_RST_RX); |
| 1151 | psc_ops->command(port, MPC52xx_PSC_RST_TX); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1152 | |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1153 | psc_ops->set_sicr(port, 0); /* UART mode DCD ignored */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1155 | psc_ops->fifo_init(port); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1156 | |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1157 | psc_ops->command(port, MPC52xx_PSC_TX_ENABLE); |
| 1158 | psc_ops->command(port, MPC52xx_PSC_RX_ENABLE); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | return 0; |
| 1161 | } |
| 1162 | |
| 1163 | static void |
| 1164 | mpc52xx_uart_shutdown(struct uart_port *port) |
| 1165 | { |
Grant Likely | a348119 | 2007-05-07 01:38:51 +1000 | [diff] [blame] | 1166 | /* Shut down the port. Leave TX active if on a console port */ |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1167 | psc_ops->command(port, MPC52xx_PSC_RST_RX); |
Grant Likely | a348119 | 2007-05-07 01:38:51 +1000 | [diff] [blame] | 1168 | if (!uart_console(port)) |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1169 | psc_ops->command(port, MPC52xx_PSC_RST_TX); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1170 | |
| 1171 | port->read_status_mask = 0; |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1172 | psc_ops->set_imr(port, port->read_status_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1174 | if (psc_ops->clock) |
| 1175 | psc_ops->clock(port, 0); |
| 1176 | |
Matteo Facchinetti | 8a29dfb | 2013-06-12 09:21:42 +0200 | [diff] [blame] | 1177 | /* Disable interrupt */ |
| 1178 | psc_ops->cw_disable_ints(port); |
| 1179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | /* Release interrupt */ |
| 1181 | free_irq(port->irq, port); |
| 1182 | } |
| 1183 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1184 | static void |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 1185 | mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new, |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1186 | struct ktermios *old) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | unsigned long flags; |
| 1189 | unsigned char mr1, mr2; |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 1190 | unsigned int j; |
| 1191 | unsigned int baud; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | /* Prepare what we're gonna write */ |
| 1194 | mr1 = 0; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | switch (new->c_cflag & CSIZE) { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1197 | case CS5: mr1 |= MPC52xx_PSC_MODE_5_BITS; |
| 1198 | break; |
| 1199 | case CS6: mr1 |= MPC52xx_PSC_MODE_6_BITS; |
| 1200 | break; |
| 1201 | case CS7: mr1 |= MPC52xx_PSC_MODE_7_BITS; |
| 1202 | break; |
| 1203 | case CS8: |
| 1204 | default: mr1 |= MPC52xx_PSC_MODE_8_BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | } |
| 1206 | |
| 1207 | if (new->c_cflag & PARENB) { |
Wolfram Sang | d3dec96 | 2012-08-27 16:03:14 +0200 | [diff] [blame] | 1208 | if (new->c_cflag & CMSPAR) |
| 1209 | mr1 |= MPC52xx_PSC_MODE_PARFORCE; |
| 1210 | |
| 1211 | /* With CMSPAR, PARODD also means high parity (same as termios) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | mr1 |= (new->c_cflag & PARODD) ? |
| 1213 | MPC52xx_PSC_MODE_PARODD : MPC52xx_PSC_MODE_PAREVEN; |
Wolfram Sang | d3dec96 | 2012-08-27 16:03:14 +0200 | [diff] [blame] | 1214 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | mr1 |= MPC52xx_PSC_MODE_PARNONE; |
Wolfram Sang | d3dec96 | 2012-08-27 16:03:14 +0200 | [diff] [blame] | 1216 | } |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | mr2 = 0; |
| 1219 | |
| 1220 | if (new->c_cflag & CSTOPB) |
| 1221 | mr2 |= MPC52xx_PSC_MODE_TWO_STOP; |
| 1222 | else |
| 1223 | mr2 |= ((new->c_cflag & CSIZE) == CS5) ? |
| 1224 | MPC52xx_PSC_MODE_ONE_STOP_5_BITS : |
| 1225 | MPC52xx_PSC_MODE_ONE_STOP; |
| 1226 | |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1227 | if (new->c_cflag & CRTSCTS) { |
| 1228 | mr1 |= MPC52xx_PSC_MODE_RXRTS; |
| 1229 | mr2 |= MPC52xx_PSC_MODE_TXCTS; |
| 1230 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | /* Get the lock */ |
| 1233 | spin_lock_irqsave(&port->lock, flags); |
| 1234 | |
Nick Andrew | c4f0124 | 2008-12-05 16:34:46 +0000 | [diff] [blame] | 1235 | /* Do our best to flush TX & RX, so we don't lose anything */ |
| 1236 | /* But we don't wait indefinitely ! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | j = 5000000; /* Maximum wait */ |
| 1238 | /* FIXME Can't receive chars since set_termios might be called at early |
| 1239 | * boot for the console, all stuff is not yet ready to receive at that |
| 1240 | * time and that just makes the kernel oops */ |
| 1241 | /* while (j-- && mpc52xx_uart_int_rx_chars(port)); */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1242 | while (!mpc52xx_uart_tx_empty(port) && --j) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | udelay(1); |
| 1244 | |
| 1245 | if (!j) |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1246 | printk(KERN_ERR "mpc52xx_uart.c: " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | "Unable to flush RX & TX fifos in-time in set_termios." |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1248 | "Some chars may have been lost.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | |
| 1250 | /* Reset the TX & RX */ |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1251 | psc_ops->command(port, MPC52xx_PSC_RST_RX); |
| 1252 | psc_ops->command(port, MPC52xx_PSC_RST_TX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | |
| 1254 | /* Send new mode settings */ |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1255 | psc_ops->set_mode(port, mr1, mr2); |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 1256 | baud = psc_ops->set_baudrate(port, new, old); |
| 1257 | |
| 1258 | /* Update the per-port timeout */ |
| 1259 | uart_update_timeout(port, new->c_cflag, baud); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1260 | |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1261 | if (UART_ENABLE_MS(port, new->c_cflag)) |
| 1262 | mpc52xx_uart_enable_ms(port); |
| 1263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | /* Reenable TX & RX */ |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1265 | psc_ops->command(port, MPC52xx_PSC_TX_ENABLE); |
| 1266 | psc_ops->command(port, MPC52xx_PSC_RX_ENABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | |
| 1268 | /* We're all set, release the lock */ |
| 1269 | spin_unlock_irqrestore(&port->lock, flags); |
| 1270 | } |
| 1271 | |
| 1272 | static const char * |
| 1273 | mpc52xx_uart_type(struct uart_port *port) |
| 1274 | { |
Wolfram Sang | e44dcb6 | 2010-11-12 19:47:47 +0100 | [diff] [blame] | 1275 | /* |
| 1276 | * We keep using PORT_MPC52xx for historic reasons although it applies |
| 1277 | * for MPC512x, too, but print "MPC5xxx" to not irritate users |
| 1278 | */ |
| 1279 | return port->type == PORT_MPC52xx ? "MPC5xxx PSC" : NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | } |
| 1281 | |
| 1282 | static void |
| 1283 | mpc52xx_uart_release_port(struct uart_port *port) |
| 1284 | { |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 1285 | if (psc_ops->clock_relse) |
| 1286 | psc_ops->clock_relse(port); |
| 1287 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1288 | /* remapped by us ? */ |
| 1289 | if (port->flags & UPF_IOREMAP) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | iounmap(port->membase); |
| 1291 | port->membase = NULL; |
| 1292 | } |
| 1293 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1294 | release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | } |
| 1296 | |
| 1297 | static int |
| 1298 | mpc52xx_uart_request_port(struct uart_port *port) |
| 1299 | { |
Amol Lad | be618f5 | 2006-09-30 23:29:23 -0700 | [diff] [blame] | 1300 | int err; |
| 1301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | if (port->flags & UPF_IOREMAP) /* Need to remap ? */ |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1303 | port->membase = ioremap(port->mapbase, |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1304 | sizeof(struct mpc52xx_psc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | |
| 1306 | if (!port->membase) |
| 1307 | return -EINVAL; |
| 1308 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1309 | err = request_mem_region(port->mapbase, sizeof(struct mpc52xx_psc), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | "mpc52xx_psc_uart") != NULL ? 0 : -EBUSY; |
Amol Lad | be618f5 | 2006-09-30 23:29:23 -0700 | [diff] [blame] | 1311 | |
Gerhard Sittig | 2d30cca | 2013-08-06 22:43:42 +0200 | [diff] [blame] | 1312 | if (err) |
| 1313 | goto out_membase; |
| 1314 | |
| 1315 | if (psc_ops->clock_alloc) { |
| 1316 | err = psc_ops->clock_alloc(port); |
| 1317 | if (err) |
| 1318 | goto out_mapregion; |
| 1319 | } |
| 1320 | |
| 1321 | return 0; |
| 1322 | |
| 1323 | out_mapregion: |
| 1324 | release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc)); |
| 1325 | out_membase: |
| 1326 | if (port->flags & UPF_IOREMAP) { |
Amol Lad | be618f5 | 2006-09-30 23:29:23 -0700 | [diff] [blame] | 1327 | iounmap(port->membase); |
| 1328 | port->membase = NULL; |
| 1329 | } |
Amol Lad | be618f5 | 2006-09-30 23:29:23 -0700 | [diff] [blame] | 1330 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | } |
| 1332 | |
| 1333 | static void |
| 1334 | mpc52xx_uart_config_port(struct uart_port *port, int flags) |
| 1335 | { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1336 | if ((flags & UART_CONFIG_TYPE) |
| 1337 | && (mpc52xx_uart_request_port(port) == 0)) |
| 1338 | port->type = PORT_MPC52xx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | } |
| 1340 | |
| 1341 | static int |
| 1342 | mpc52xx_uart_verify_port(struct uart_port *port, struct serial_struct *ser) |
| 1343 | { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1344 | if (ser->type != PORT_UNKNOWN && ser->type != PORT_MPC52xx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | return -EINVAL; |
| 1346 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1347 | if ((ser->irq != port->irq) || |
Julia Lawall | b7a8212 | 2009-10-15 09:58:28 -0600 | [diff] [blame] | 1348 | (ser->io_type != UPIO_MEM) || |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1349 | (ser->baud_base != port->uartclk) || |
| 1350 | (ser->iomem_base != (void *)port->mapbase) || |
| 1351 | (ser->hub6 != 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | return -EINVAL; |
| 1353 | |
| 1354 | return 0; |
| 1355 | } |
| 1356 | |
| 1357 | |
| 1358 | static struct uart_ops mpc52xx_uart_ops = { |
| 1359 | .tx_empty = mpc52xx_uart_tx_empty, |
| 1360 | .set_mctrl = mpc52xx_uart_set_mctrl, |
| 1361 | .get_mctrl = mpc52xx_uart_get_mctrl, |
| 1362 | .stop_tx = mpc52xx_uart_stop_tx, |
| 1363 | .start_tx = mpc52xx_uart_start_tx, |
| 1364 | .send_xchar = mpc52xx_uart_send_xchar, |
| 1365 | .stop_rx = mpc52xx_uart_stop_rx, |
| 1366 | .enable_ms = mpc52xx_uart_enable_ms, |
| 1367 | .break_ctl = mpc52xx_uart_break_ctl, |
| 1368 | .startup = mpc52xx_uart_startup, |
| 1369 | .shutdown = mpc52xx_uart_shutdown, |
| 1370 | .set_termios = mpc52xx_uart_set_termios, |
| 1371 | /* .pm = mpc52xx_uart_pm, Not supported yet */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | .type = mpc52xx_uart_type, |
| 1373 | .release_port = mpc52xx_uart_release_port, |
| 1374 | .request_port = mpc52xx_uart_request_port, |
| 1375 | .config_port = mpc52xx_uart_config_port, |
| 1376 | .verify_port = mpc52xx_uart_verify_port |
| 1377 | }; |
| 1378 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | /* ======================================================================== */ |
| 1381 | /* Interrupt handling */ |
| 1382 | /* ======================================================================== */ |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | static inline int |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1385 | mpc52xx_uart_int_rx_chars(struct uart_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | { |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 1387 | struct tty_port *tport = &port->state->port; |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1388 | unsigned char ch, flag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | unsigned short status; |
| 1390 | |
| 1391 | /* While we can read, do so ! */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1392 | while (psc_ops->raw_rx_rdy(port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | /* Get the char */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1394 | ch = psc_ops->read_char(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | |
| 1396 | /* Handle sysreq char */ |
| 1397 | #ifdef SUPPORT_SYSRQ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1398 | if (uart_handle_sysrq_char(port, ch)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | port->sysrq = 0; |
| 1400 | continue; |
| 1401 | } |
| 1402 | #endif |
| 1403 | |
| 1404 | /* Store it */ |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1405 | |
| 1406 | flag = TTY_NORMAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | port->icount.rx++; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1408 | |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1409 | status = psc_ops->get_status(port); |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1410 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1411 | if (status & (MPC52xx_PSC_SR_PE | |
| 1412 | MPC52xx_PSC_SR_FE | |
| 1413 | MPC52xx_PSC_SR_RB)) { |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | if (status & MPC52xx_PSC_SR_RB) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1416 | flag = TTY_BREAK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | uart_handle_break(port); |
René Bürgel | b651498 | 2008-12-21 02:54:31 -0700 | [diff] [blame] | 1418 | port->icount.brk++; |
| 1419 | } else if (status & MPC52xx_PSC_SR_PE) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1420 | flag = TTY_PARITY; |
René Bürgel | b651498 | 2008-12-21 02:54:31 -0700 | [diff] [blame] | 1421 | port->icount.parity++; |
| 1422 | } |
| 1423 | else if (status & MPC52xx_PSC_SR_FE) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1424 | flag = TTY_FRAME; |
René Bürgel | b651498 | 2008-12-21 02:54:31 -0700 | [diff] [blame] | 1425 | port->icount.frame++; |
| 1426 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | |
| 1428 | /* Clear error condition */ |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1429 | psc_ops->command(port, MPC52xx_PSC_RST_ERR_STAT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | |
| 1431 | } |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 1432 | tty_insert_flip_char(tport, ch, flag); |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1433 | if (status & MPC52xx_PSC_SR_OE) { |
| 1434 | /* |
| 1435 | * Overrun is special, since it's |
| 1436 | * reported immediately, and doesn't |
| 1437 | * affect the current character |
| 1438 | */ |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 1439 | tty_insert_flip_char(tport, 0, TTY_OVERRUN); |
René Bürgel | b651498 | 2008-12-21 02:54:31 -0700 | [diff] [blame] | 1440 | port->icount.overrun++; |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1441 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | } |
| 1443 | |
Andrew Liu | fbe543b | 2008-04-29 17:36:25 +1000 | [diff] [blame] | 1444 | spin_unlock(&port->lock); |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 1445 | tty_flip_buffer_push(tport); |
Andrew Liu | fbe543b | 2008-04-29 17:36:25 +1000 | [diff] [blame] | 1446 | spin_lock(&port->lock); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1447 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1448 | return psc_ops->raw_rx_rdy(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | } |
| 1450 | |
| 1451 | static inline int |
| 1452 | mpc52xx_uart_int_tx_chars(struct uart_port *port) |
| 1453 | { |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1454 | struct circ_buf *xmit = &port->state->xmit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | |
| 1456 | /* Process out of band chars */ |
| 1457 | if (port->x_char) { |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1458 | psc_ops->write_char(port, port->x_char); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | port->icount.tx++; |
| 1460 | port->x_char = 0; |
| 1461 | return 1; |
| 1462 | } |
| 1463 | |
| 1464 | /* Nothing to do ? */ |
| 1465 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 1466 | mpc52xx_uart_stop_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | return 0; |
| 1468 | } |
| 1469 | |
| 1470 | /* Send chars */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1471 | while (psc_ops->raw_tx_rdy(port)) { |
| 1472 | psc_ops->write_char(port, xmit->buf[xmit->tail]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); |
| 1474 | port->icount.tx++; |
| 1475 | if (uart_circ_empty(xmit)) |
| 1476 | break; |
| 1477 | } |
| 1478 | |
| 1479 | /* Wake up */ |
| 1480 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) |
| 1481 | uart_write_wakeup(port); |
| 1482 | |
| 1483 | /* Maybe we're done after all */ |
| 1484 | if (uart_circ_empty(xmit)) { |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 1485 | mpc52xx_uart_stop_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | return 0; |
| 1487 | } |
| 1488 | |
| 1489 | return 1; |
| 1490 | } |
| 1491 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1492 | static irqreturn_t |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1493 | mpc5xxx_uart_process_int(struct uart_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | unsigned long pass = ISR_PASS_LIMIT; |
| 1496 | unsigned int keepgoing; |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1497 | u8 status; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | /* While we have stuff to do, we continue */ |
| 1500 | do { |
| 1501 | /* If we don't find anything to do, we stop */ |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1502 | keepgoing = 0; |
| 1503 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1504 | psc_ops->rx_clr_irq(port); |
| 1505 | if (psc_ops->rx_rdy(port)) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1506 | keepgoing |= mpc52xx_uart_int_rx_chars(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1507 | |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1508 | psc_ops->tx_clr_irq(port); |
| 1509 | if (psc_ops->tx_rdy(port)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | keepgoing |= mpc52xx_uart_int_tx_chars(port); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1511 | |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1512 | status = psc_ops->get_ipcr(port); |
Wolfram Sang | aec739e | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1513 | if (status & MPC52xx_PSC_D_DCD) |
| 1514 | uart_handle_dcd_change(port, !(status & MPC52xx_PSC_DCD)); |
| 1515 | |
| 1516 | if (status & MPC52xx_PSC_D_CTS) |
| 1517 | uart_handle_cts_change(port, !(status & MPC52xx_PSC_CTS)); |
| 1518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | /* Limit number of iteration */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1520 | if (!(--pass)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | keepgoing = 0; |
| 1522 | |
| 1523 | } while (keepgoing); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | return IRQ_HANDLED; |
| 1526 | } |
| 1527 | |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1528 | static irqreturn_t |
| 1529 | mpc52xx_uart_int(int irq, void *dev_id) |
| 1530 | { |
| 1531 | struct uart_port *port = dev_id; |
| 1532 | irqreturn_t ret; |
| 1533 | |
| 1534 | spin_lock(&port->lock); |
| 1535 | |
| 1536 | ret = psc_ops->handle_irq(port); |
| 1537 | |
| 1538 | spin_unlock(&port->lock); |
| 1539 | |
| 1540 | return ret; |
| 1541 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | |
| 1543 | /* ======================================================================== */ |
| 1544 | /* Console ( if applicable ) */ |
| 1545 | /* ======================================================================== */ |
| 1546 | |
| 1547 | #ifdef CONFIG_SERIAL_MPC52xx_CONSOLE |
| 1548 | |
| 1549 | static void __init |
| 1550 | mpc52xx_console_get_options(struct uart_port *port, |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1551 | int *baud, int *parity, int *bits, int *flow) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | unsigned char mr1; |
| 1554 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1555 | pr_debug("mpc52xx_console_get_options(port=%p)\n", port); |
| 1556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | /* Read the mode registers */ |
Matteo Facchinetti | 2574b27 | 2013-05-24 20:24:58 +0200 | [diff] [blame] | 1558 | mr1 = psc_ops->get_mr1(port); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1559 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | /* CT{U,L}R are write-only ! */ |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1561 | *baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | |
| 1563 | /* Parse them */ |
| 1564 | switch (mr1 & MPC52xx_PSC_MODE_BITS_MASK) { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1565 | case MPC52xx_PSC_MODE_5_BITS: |
| 1566 | *bits = 5; |
| 1567 | break; |
| 1568 | case MPC52xx_PSC_MODE_6_BITS: |
| 1569 | *bits = 6; |
| 1570 | break; |
| 1571 | case MPC52xx_PSC_MODE_7_BITS: |
| 1572 | *bits = 7; |
| 1573 | break; |
| 1574 | case MPC52xx_PSC_MODE_8_BITS: |
| 1575 | default: |
| 1576 | *bits = 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | } |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1578 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | if (mr1 & MPC52xx_PSC_MODE_PARNONE) |
| 1580 | *parity = 'n'; |
| 1581 | else |
| 1582 | *parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e'; |
| 1583 | } |
| 1584 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1585 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | mpc52xx_console_write(struct console *co, const char *s, unsigned int count) |
| 1587 | { |
| 1588 | struct uart_port *port = &mpc52xx_uart_ports[co->index]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | unsigned int i, j; |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | /* Disable interrupts */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1592 | psc_ops->cw_disable_ints(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | |
| 1594 | /* Wait the TX buffer to be empty */ |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1595 | j = 5000000; /* Maximum wait */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1596 | while (!mpc52xx_uart_tx_empty(port) && --j) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | udelay(1); |
| 1598 | |
| 1599 | /* Write all the chars */ |
Russell King | d358788 | 2006-03-20 20:00:09 +0000 | [diff] [blame] | 1600 | for (i = 0; i < count; i++, s++) { |
| 1601 | /* Line return handling */ |
| 1602 | if (*s == '\n') |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1603 | psc_ops->write_char(port, '\r'); |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | /* Send the char */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1606 | psc_ops->write_char(port, *s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | /* Wait the TX buffer to be empty */ |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1609 | j = 20000; /* Maximum wait */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1610 | while (!mpc52xx_uart_tx_empty(port) && --j) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | udelay(1); |
| 1612 | } |
| 1613 | |
| 1614 | /* Restore interrupt state */ |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1615 | psc_ops->cw_restore_ints(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | } |
| 1617 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1618 | |
| 1619 | static int __init |
| 1620 | mpc52xx_console_setup(struct console *co, char *options) |
| 1621 | { |
| 1622 | struct uart_port *port = &mpc52xx_uart_ports[co->index]; |
| 1623 | struct device_node *np = mpc52xx_uart_nodes[co->index]; |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1624 | unsigned int uartclk; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1625 | struct resource res; |
| 1626 | int ret; |
| 1627 | |
| 1628 | int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD; |
| 1629 | int bits = 8; |
| 1630 | int parity = 'n'; |
| 1631 | int flow = 'n'; |
| 1632 | |
| 1633 | pr_debug("mpc52xx_console_setup co=%p, co->index=%i, options=%s\n", |
| 1634 | co, co->index, options); |
| 1635 | |
Roel Kluin | b898f4f | 2009-05-28 14:34:29 -0700 | [diff] [blame] | 1636 | if ((co->index < 0) || (co->index >= MPC52xx_PSC_MAXNUM)) { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1637 | pr_debug("PSC%x out of range\n", co->index); |
| 1638 | return -EINVAL; |
| 1639 | } |
| 1640 | |
| 1641 | if (!np) { |
| 1642 | pr_debug("PSC%x not found in device tree\n", co->index); |
| 1643 | return -EINVAL; |
| 1644 | } |
| 1645 | |
| 1646 | pr_debug("Console on ttyPSC%x is %s\n", |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1647 | co->index, mpc52xx_uart_nodes[co->index]->full_name); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1648 | |
| 1649 | /* Fetch register locations */ |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1650 | ret = of_address_to_resource(np, 0, &res); |
| 1651 | if (ret) { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1652 | pr_debug("Could not get resources for PSC%x\n", co->index); |
| 1653 | return ret; |
| 1654 | } |
| 1655 | |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 1656 | uartclk = mpc5xxx_get_bus_frequency(np); |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1657 | if (uartclk == 0) { |
| 1658 | pr_debug("Could not find uart clock frequency!\n"); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1659 | return -EINVAL; |
| 1660 | } |
| 1661 | |
| 1662 | /* Basic port init. Needed since we use some uart_??? func before |
| 1663 | * real init for early access */ |
| 1664 | spin_lock_init(&port->lock); |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1665 | port->uartclk = uartclk; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1666 | port->ops = &mpc52xx_uart_ops; |
| 1667 | port->mapbase = res.start; |
| 1668 | port->membase = ioremap(res.start, sizeof(struct mpc52xx_psc)); |
| 1669 | port->irq = irq_of_parse_and_map(np, 0); |
| 1670 | |
| 1671 | if (port->membase == NULL) |
| 1672 | return -EINVAL; |
| 1673 | |
Grant Likely | 5dd80d5 | 2007-10-13 22:37:02 -0600 | [diff] [blame] | 1674 | 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] | 1675 | (void *)port->mapbase, port->membase, |
| 1676 | port->irq, port->uartclk); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1677 | |
| 1678 | /* Setup the port parameters accoding to options */ |
| 1679 | if (options) |
| 1680 | uart_parse_options(options, &baud, &parity, &bits, &flow); |
| 1681 | else |
| 1682 | mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow); |
| 1683 | |
| 1684 | pr_debug("Setting console parameters: %i %i%c1 flow=%c\n", |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1685 | baud, bits, parity, flow); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1686 | |
| 1687 | return uart_set_options(port, co, baud, parity, bits, flow); |
| 1688 | } |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1689 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | |
Sylvain Munaut | 2d8179c | 2006-01-06 00:11:31 -0800 | [diff] [blame] | 1691 | static struct uart_driver mpc52xx_uart_driver; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | |
| 1693 | static struct console mpc52xx_console = { |
Sylvain Munaut | d62de3a | 2006-01-06 00:11:32 -0800 | [diff] [blame] | 1694 | .name = "ttyPSC", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | .write = mpc52xx_console_write, |
| 1696 | .device = uart_console_device, |
| 1697 | .setup = mpc52xx_console_setup, |
| 1698 | .flags = CON_PRINTBUFFER, |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1699 | .index = -1, /* Specified on the cmdline (e.g. console=ttyPSC0) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | .data = &mpc52xx_uart_driver, |
| 1701 | }; |
| 1702 | |
Grant Likely | 9b9129e | 2006-11-27 14:21:01 -0700 | [diff] [blame] | 1703 | |
| 1704 | static int __init |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | mpc52xx_console_init(void) |
| 1706 | { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1707 | mpc52xx_uart_of_enumerate(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | register_console(&mpc52xx_console); |
| 1709 | return 0; |
| 1710 | } |
| 1711 | |
| 1712 | console_initcall(mpc52xx_console_init); |
| 1713 | |
| 1714 | #define MPC52xx_PSC_CONSOLE &mpc52xx_console |
| 1715 | #else |
| 1716 | #define MPC52xx_PSC_CONSOLE NULL |
| 1717 | #endif |
| 1718 | |
| 1719 | |
| 1720 | /* ======================================================================== */ |
| 1721 | /* UART Driver */ |
| 1722 | /* ======================================================================== */ |
| 1723 | |
| 1724 | static struct uart_driver mpc52xx_uart_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | .driver_name = "mpc52xx_psc_uart", |
Sylvain Munaut | d62de3a | 2006-01-06 00:11:32 -0800 | [diff] [blame] | 1726 | .dev_name = "ttyPSC", |
Sylvain Munaut | d62de3a | 2006-01-06 00:11:32 -0800 | [diff] [blame] | 1727 | .major = SERIAL_PSC_MAJOR, |
| 1728 | .minor = SERIAL_PSC_MINOR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | .nr = MPC52xx_PSC_MAXNUM, |
| 1730 | .cons = MPC52xx_PSC_CONSOLE, |
| 1731 | }; |
| 1732 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1733 | /* ======================================================================== */ |
| 1734 | /* OF Platform Driver */ |
| 1735 | /* ======================================================================== */ |
| 1736 | |
Grant Likely | 52b8048 | 2008-02-06 22:29:25 -0700 | [diff] [blame] | 1737 | static struct of_device_id mpc52xx_uart_of_match[] = { |
| 1738 | #ifdef CONFIG_PPC_MPC52xx |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 1739 | { .compatible = "fsl,mpc5200b-psc-uart", .data = &mpc5200b_psc_ops, }, |
Grant Likely | 52b8048 | 2008-02-06 22:29:25 -0700 | [diff] [blame] | 1740 | { .compatible = "fsl,mpc5200-psc-uart", .data = &mpc52xx_psc_ops, }, |
| 1741 | /* binding used by old lite5200 device trees: */ |
| 1742 | { .compatible = "mpc5200-psc-uart", .data = &mpc52xx_psc_ops, }, |
| 1743 | /* binding used by efika: */ |
| 1744 | { .compatible = "mpc5200-serial", .data = &mpc52xx_psc_ops, }, |
| 1745 | #endif |
| 1746 | #ifdef CONFIG_PPC_MPC512x |
| 1747 | { .compatible = "fsl,mpc5121-psc-uart", .data = &mpc512x_psc_ops, }, |
Matteo Facchinetti | 1f48c49 | 2013-05-24 20:24:59 +0200 | [diff] [blame] | 1748 | { .compatible = "fsl,mpc5125-psc-uart", .data = &mpc5125_psc_ops, }, |
Grant Likely | 52b8048 | 2008-02-06 22:29:25 -0700 | [diff] [blame] | 1749 | #endif |
Grant Likely | bc775ea | 2008-04-29 06:40:37 -0600 | [diff] [blame] | 1750 | {}, |
Grant Likely | 52b8048 | 2008-02-06 22:29:25 -0700 | [diff] [blame] | 1751 | }; |
| 1752 | |
Bill Pemberton | 9671f09 | 2012-11-19 13:21:50 -0500 | [diff] [blame] | 1753 | static int mpc52xx_uart_of_probe(struct platform_device *op) |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1754 | { |
| 1755 | int idx = -1; |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1756 | unsigned int uartclk; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1757 | struct uart_port *port = NULL; |
| 1758 | struct resource res; |
| 1759 | int ret; |
| 1760 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1761 | /* Check validity & presence */ |
| 1762 | for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++) |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 1763 | if (mpc52xx_uart_nodes[idx] == op->dev.of_node) |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1764 | break; |
| 1765 | if (idx >= MPC52xx_PSC_MAXNUM) |
| 1766 | return -EINVAL; |
| 1767 | pr_debug("Found %s assigned to ttyPSC%x\n", |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1768 | mpc52xx_uart_nodes[idx]->full_name, idx); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1769 | |
Albrecht Dreß | 0d1f22e | 2010-04-26 11:18:12 +0000 | [diff] [blame] | 1770 | /* set the uart clock to the input clock of the psc, the different |
| 1771 | * prescalers are taken into account in the set_baudrate() methods |
| 1772 | * of the respective chip */ |
| 1773 | uartclk = mpc5xxx_get_bus_frequency(op->dev.of_node); |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1774 | if (uartclk == 0) { |
| 1775 | dev_dbg(&op->dev, "Could not find uart clock frequency!\n"); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1776 | return -EINVAL; |
| 1777 | } |
| 1778 | |
| 1779 | /* Init the port structure */ |
| 1780 | port = &mpc52xx_uart_ports[idx]; |
| 1781 | |
| 1782 | spin_lock_init(&port->lock); |
John Rigby | 599f030 | 2008-01-29 04:28:55 +1100 | [diff] [blame] | 1783 | port->uartclk = uartclk; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1784 | port->fifosize = 512; |
| 1785 | port->iotype = UPIO_MEM; |
| 1786 | port->flags = UPF_BOOT_AUTOCONF | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1787 | (uart_console(port) ? 0 : UPF_IOREMAP); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1788 | port->line = idx; |
| 1789 | port->ops = &mpc52xx_uart_ops; |
| 1790 | port->dev = &op->dev; |
| 1791 | |
| 1792 | /* Search for IRQ and mapbase */ |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 1793 | ret = of_address_to_resource(op->dev.of_node, 0, &res); |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1794 | if (ret) |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1795 | return ret; |
| 1796 | |
| 1797 | port->mapbase = res.start; |
Wolfram Sang | 418441d9 | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1798 | if (!port->mapbase) { |
| 1799 | dev_dbg(&op->dev, "Could not allocate resources for PSC\n"); |
| 1800 | return -EINVAL; |
| 1801 | } |
| 1802 | |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 1803 | psc_ops->get_irq(port, op->dev.of_node); |
Alan Cox | d4e33fa | 2012-01-26 17:44:09 +0000 | [diff] [blame] | 1804 | if (port->irq == 0) { |
Wolfram Sang | 418441d9 | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1805 | dev_dbg(&op->dev, "Could not get irq\n"); |
| 1806 | return -EINVAL; |
| 1807 | } |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1808 | |
Grant Likely | 5dd80d5 | 2007-10-13 22:37:02 -0600 | [diff] [blame] | 1809 | 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] | 1810 | (void *)port->mapbase, port->irq, port->uartclk); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1811 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1812 | /* Add the port to the uart sub-system */ |
| 1813 | ret = uart_add_one_port(&mpc52xx_uart_driver, port); |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1814 | if (ret) |
Wolfram Sang | 418441d9 | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1815 | return ret; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1816 | |
Jingoo Han | 696faed | 2013-05-23 19:39:36 +0900 | [diff] [blame] | 1817 | platform_set_drvdata(op, (void *)port); |
Wolfram Sang | 418441d9 | 2008-12-21 02:54:32 -0700 | [diff] [blame] | 1818 | return 0; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1819 | } |
| 1820 | |
| 1821 | static int |
Grant Likely | 2dc1158 | 2010-08-06 09:25:50 -0600 | [diff] [blame] | 1822 | mpc52xx_uart_of_remove(struct platform_device *op) |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1823 | { |
Jingoo Han | 696faed | 2013-05-23 19:39:36 +0900 | [diff] [blame] | 1824 | struct uart_port *port = platform_get_drvdata(op); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1825 | |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1826 | if (port) |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1827 | uart_remove_one_port(&mpc52xx_uart_driver, port); |
| 1828 | |
| 1829 | return 0; |
| 1830 | } |
| 1831 | |
| 1832 | #ifdef CONFIG_PM |
| 1833 | static int |
Grant Likely | 2dc1158 | 2010-08-06 09:25:50 -0600 | [diff] [blame] | 1834 | mpc52xx_uart_of_suspend(struct platform_device *op, pm_message_t state) |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1835 | { |
Jingoo Han | 4190390 | 2013-09-09 14:11:17 +0900 | [diff] [blame] | 1836 | struct uart_port *port = platform_get_drvdata(op); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1837 | |
| 1838 | if (port) |
| 1839 | uart_suspend_port(&mpc52xx_uart_driver, port); |
| 1840 | |
| 1841 | return 0; |
| 1842 | } |
| 1843 | |
| 1844 | static int |
Grant Likely | 2dc1158 | 2010-08-06 09:25:50 -0600 | [diff] [blame] | 1845 | mpc52xx_uart_of_resume(struct platform_device *op) |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1846 | { |
Jingoo Han | 4190390 | 2013-09-09 14:11:17 +0900 | [diff] [blame] | 1847 | struct uart_port *port = platform_get_drvdata(op); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1848 | |
| 1849 | if (port) |
| 1850 | uart_resume_port(&mpc52xx_uart_driver, port); |
| 1851 | |
| 1852 | return 0; |
| 1853 | } |
| 1854 | #endif |
| 1855 | |
| 1856 | static void |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 1857 | mpc52xx_uart_of_assign(struct device_node *np) |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1858 | { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1859 | int i; |
| 1860 | |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 1861 | /* Find the first free PSC number */ |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1862 | for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) { |
| 1863 | if (mpc52xx_uart_nodes[i] == NULL) { |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 1864 | of_node_get(np); |
| 1865 | mpc52xx_uart_nodes[i] = np; |
| 1866 | return; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1867 | } |
| 1868 | } |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1869 | } |
| 1870 | |
| 1871 | static void |
| 1872 | mpc52xx_uart_of_enumerate(void) |
| 1873 | { |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1874 | static int enum_done; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1875 | struct device_node *np; |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 1876 | const struct of_device_id *match; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1877 | int i; |
| 1878 | |
| 1879 | if (enum_done) |
| 1880 | return; |
| 1881 | |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 1882 | /* Assign index to each PSC in device tree */ |
| 1883 | for_each_matching_node(np, mpc52xx_uart_of_match) { |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 1884 | match = of_match_node(mpc52xx_uart_of_match, np); |
John Rigby | 25ae3a0 | 2008-01-29 04:28:56 +1100 | [diff] [blame] | 1885 | psc_ops = match->data; |
Grant Likely | 3b5ebf8 | 2009-02-03 12:30:25 -0700 | [diff] [blame] | 1886 | mpc52xx_uart_of_assign(np); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1887 | } |
| 1888 | |
| 1889 | enum_done = 1; |
| 1890 | |
| 1891 | for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) { |
| 1892 | if (mpc52xx_uart_nodes[i]) |
| 1893 | pr_debug("%s assigned to ttyPSC%x\n", |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1894 | mpc52xx_uart_nodes[i]->full_name, i); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1895 | } |
| 1896 | } |
| 1897 | |
| 1898 | MODULE_DEVICE_TABLE(of, mpc52xx_uart_of_match); |
| 1899 | |
Grant Likely | 793218d | 2011-02-22 21:10:26 -0700 | [diff] [blame] | 1900 | static struct platform_driver mpc52xx_uart_of_driver = { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1901 | .probe = mpc52xx_uart_of_probe, |
| 1902 | .remove = mpc52xx_uart_of_remove, |
| 1903 | #ifdef CONFIG_PM |
| 1904 | .suspend = mpc52xx_uart_of_suspend, |
| 1905 | .resume = mpc52xx_uart_of_resume, |
| 1906 | #endif |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 1907 | .driver = { |
| 1908 | .name = "mpc52xx-psc-uart", |
| 1909 | .owner = THIS_MODULE, |
| 1910 | .of_match_table = mpc52xx_uart_of_match, |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1911 | }, |
| 1912 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1913 | |
| 1914 | |
| 1915 | /* ======================================================================== */ |
| 1916 | /* Module */ |
| 1917 | /* ======================================================================== */ |
| 1918 | |
| 1919 | static int __init |
| 1920 | mpc52xx_uart_init(void) |
| 1921 | { |
| 1922 | int ret; |
| 1923 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1924 | printk(KERN_INFO "Serial: MPC52xx PSC UART driver\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | |
John Rigby | 406b7d4 | 2008-01-17 08:37:25 +1100 | [diff] [blame] | 1926 | ret = uart_register_driver(&mpc52xx_uart_driver); |
| 1927 | if (ret) { |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1928 | printk(KERN_ERR "%s: uart_register_driver failed (%i)\n", |
| 1929 | __FILE__, ret); |
| 1930 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | } |
| 1932 | |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1933 | mpc52xx_uart_of_enumerate(); |
| 1934 | |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1935 | /* |
| 1936 | * Map the PSC FIFO Controller and init if on MPC512x. |
| 1937 | */ |
Anatolij Gustschin | e6114fa | 2010-05-05 00:18:59 +0200 | [diff] [blame] | 1938 | if (psc_ops && psc_ops->fifoc_init) { |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1939 | ret = psc_ops->fifoc_init(); |
| 1940 | if (ret) |
Wei Yongjun | 9bcc327 | 2013-04-25 15:34:27 +0800 | [diff] [blame] | 1941 | goto err_init; |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1942 | } |
| 1943 | |
Grant Likely | 793218d | 2011-02-22 21:10:26 -0700 | [diff] [blame] | 1944 | ret = platform_driver_register(&mpc52xx_uart_of_driver); |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1945 | if (ret) { |
Grant Likely | 793218d | 2011-02-22 21:10:26 -0700 | [diff] [blame] | 1946 | printk(KERN_ERR "%s: platform_driver_register failed (%i)\n", |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1947 | __FILE__, ret); |
Wei Yongjun | 9bcc327 | 2013-04-25 15:34:27 +0800 | [diff] [blame] | 1948 | goto err_reg; |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1949 | } |
Grant Likely | b9272df | 2006-11-27 14:21:02 -0700 | [diff] [blame] | 1950 | |
| 1951 | return 0; |
Wei Yongjun | 9bcc327 | 2013-04-25 15:34:27 +0800 | [diff] [blame] | 1952 | err_reg: |
| 1953 | if (psc_ops && psc_ops->fifoc_uninit) |
| 1954 | psc_ops->fifoc_uninit(); |
| 1955 | err_init: |
| 1956 | uart_unregister_driver(&mpc52xx_uart_driver); |
| 1957 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 | } |
| 1959 | |
| 1960 | static void __exit |
| 1961 | mpc52xx_uart_exit(void) |
| 1962 | { |
Anatolij Gustschin | 6acc683 | 2010-02-16 22:30:03 -0700 | [diff] [blame] | 1963 | if (psc_ops->fifoc_uninit) |
| 1964 | psc_ops->fifoc_uninit(); |
| 1965 | |
Grant Likely | 793218d | 2011-02-22 21:10:26 -0700 | [diff] [blame] | 1966 | platform_driver_unregister(&mpc52xx_uart_of_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1967 | uart_unregister_driver(&mpc52xx_uart_driver); |
| 1968 | } |
| 1969 | |
| 1970 | |
| 1971 | module_init(mpc52xx_uart_init); |
| 1972 | module_exit(mpc52xx_uart_exit); |
| 1973 | |
| 1974 | MODULE_AUTHOR("Sylvain Munaut <tnt@246tNt.com>"); |
| 1975 | MODULE_DESCRIPTION("Freescale MPC52xx PSC UART"); |
| 1976 | MODULE_LICENSE("GPL"); |