blob: 019ecb1c68472a5dc1baec1c34180e4f895cf1f4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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 Likely9b9129e2006-11-27 14:21:01 -070015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * Some of the code has been inspired/copied from the 2.4 code written
17 * by Dale Farnsworth <dfarnsworth@mvista.com>.
Grant Likely9b9129e2006-11-27 14:21:01 -070018 *
John Rigby25ae3a02008-01-29 04:28:56 +110019 * Copyright (C) 2008 Freescale Semiconductor Inc.
20 * John Rigby <jrigby@gmail.com>
21 * Added support for MPC5121
Grant Likelyb9272df2006-11-27 14:21:02 -070022 * 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 Torvalds1da177e2005-04-16 15:20:36 -070025 * Copyright (C) 2003 MontaVista, Software, Inc.
Grant Likely9b9129e2006-11-27 14:21:01 -070026 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * 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 Likely9b9129e2006-11-27 14:21:01 -070031
Grant Likelyb9272df2006-11-27 14:21:02 -070032#undef DEBUG
33
34#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/module.h>
36#include <linux/tty.h>
Jiri Slabyee160a32011-09-01 16:20:57 +020037#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/serial.h>
39#include <linux/sysrq.h>
40#include <linux/console.h>
John Rigby406b7d42008-01-17 08:37:25 +110041#include <linux/delay.h>
42#include <linux/io.h>
Grant Likely283029d2008-01-09 06:20:40 +110043#include <linux/of.h>
44#include <linux/of_platform.h>
Anatolij Gustschin6acc6832010-02-16 22:30:03 -070045#include <linux/clk.h>
Grant Likelyb9272df2006-11-27 14:21:02 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#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 Munautd62de3a2006-01-06 00:11:32 -080057/* 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 Torvalds1da177e2005-04-16 15:20:36 -070061
62#define ISR_PASS_LIMIT 256 /* Max number of iteration in the interrupt */
63
64
65static 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 Gala8d1fb8c2008-08-01 11:09:34 -050073
Grant Likelyb9272df2006-11-27 14:21:02 -070074/* lookup table for matching device nodes to index numbers */
75static struct device_node *mpc52xx_uart_nodes[MPC52xx_PSC_MAXNUM];
76
77static void mpc52xx_uart_of_enumerate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
John Rigby599f0302008-01-29 04:28:55 +110079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define PSC(port) ((struct mpc52xx_psc __iomem *)((port)->membase))
81
82
83/* Forward declaration of the interruption handling routine */
John Rigby406b7d42008-01-17 08:37:25 +110084static irqreturn_t mpc52xx_uart_int(int irq, void *dev_id);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -070085static irqreturn_t mpc5xxx_uart_process_int(struct uart_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
John Rigby599f0302008-01-29 04:28:55 +110087/* ======================================================================== */
88/* PSC fifo operations for isolating differences between 52xx and 512x */
89/* ======================================================================== */
90
91struct 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ß0d1f22e2010-04-26 11:18:12 +0000107 unsigned int (*set_baudrate)(struct uart_port *port,
108 struct ktermios *new,
109 struct ktermios *old);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700110 int (*clock)(struct uart_port *port, int enable);
111 int (*fifoc_init)(void);
112 void (*fifoc_uninit)(void);
113 void (*get_irq)(struct uart_port *, struct device_node *);
114 irqreturn_t (*handle_irq)(struct uart_port *port);
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200115 u16 (*get_status)(struct uart_port *port);
116 u8 (*get_ipcr)(struct uart_port *port);
117 void (*command)(struct uart_port *port, u8 cmd);
118 void (*set_mode)(struct uart_port *port, u8 mr1, u8 mr2);
119 void (*set_rts)(struct uart_port *port, int state);
120 void (*enable_ms)(struct uart_port *port);
121 void (*set_sicr)(struct uart_port *port, u32 val);
122 void (*set_imr)(struct uart_port *port, u16 val);
123 u8 (*get_mr1)(struct uart_port *port);
John Rigby599f0302008-01-29 04:28:55 +1100124};
125
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000126/* setting the prescaler and divisor reg is common for all chips */
127static inline void mpc52xx_set_divisor(struct mpc52xx_psc __iomem *psc,
128 u16 prescaler, unsigned int divisor)
129{
130 /* select prescaler */
131 out_be16(&psc->mpc52xx_psc_clock_select, prescaler);
132 out_8(&psc->ctur, divisor >> 8);
133 out_8(&psc->ctlr, divisor & 0xff);
134}
135
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200136static u16 mpc52xx_psc_get_status(struct uart_port *port)
137{
138 return in_be16(&PSC(port)->mpc52xx_psc_status);
139}
140
141static u8 mpc52xx_psc_get_ipcr(struct uart_port *port)
142{
143 return in_8(&PSC(port)->mpc52xx_psc_ipcr);
144}
145
146static void mpc52xx_psc_command(struct uart_port *port, u8 cmd)
147{
148 out_8(&PSC(port)->command, cmd);
149}
150
151static void mpc52xx_psc_set_mode(struct uart_port *port, u8 mr1, u8 mr2)
152{
153 out_8(&PSC(port)->command, MPC52xx_PSC_SEL_MODE_REG_1);
154 out_8(&PSC(port)->mode, mr1);
155 out_8(&PSC(port)->mode, mr2);
156}
157
158static void mpc52xx_psc_set_rts(struct uart_port *port, int state)
159{
160 if (state)
161 out_8(&PSC(port)->op1, MPC52xx_PSC_OP_RTS);
162 else
163 out_8(&PSC(port)->op0, MPC52xx_PSC_OP_RTS);
164}
165
166static void mpc52xx_psc_enable_ms(struct uart_port *port)
167{
168 struct mpc52xx_psc __iomem *psc = PSC(port);
169
170 /* clear D_*-bits by reading them */
171 in_8(&psc->mpc52xx_psc_ipcr);
172 /* enable CTS and DCD as IPC interrupts */
173 out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD);
174
175 port->read_status_mask |= MPC52xx_PSC_IMR_IPC;
176 out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
177}
178
179static void mpc52xx_psc_set_sicr(struct uart_port *port, u32 val)
180{
181 out_be32(&PSC(port)->sicr, val);
182}
183
184static void mpc52xx_psc_set_imr(struct uart_port *port, u16 val)
185{
186 out_be16(&PSC(port)->mpc52xx_psc_imr, val);
187}
188
189static u8 mpc52xx_psc_get_mr1(struct uart_port *port)
190{
191 out_8(&PSC(port)->command, MPC52xx_PSC_SEL_MODE_REG_1);
192 return in_8(&PSC(port)->mode);
193}
194
John Rigby25ae3a02008-01-29 04:28:56 +1100195#ifdef CONFIG_PPC_MPC52xx
John Rigby599f0302008-01-29 04:28:55 +1100196#define FIFO_52xx(port) ((struct mpc52xx_psc_fifo __iomem *)(PSC(port)+1))
197static void mpc52xx_psc_fifo_init(struct uart_port *port)
198{
199 struct mpc52xx_psc __iomem *psc = PSC(port);
200 struct mpc52xx_psc_fifo __iomem *fifo = FIFO_52xx(port);
201
John Rigby599f0302008-01-29 04:28:55 +1100202 out_8(&fifo->rfcntl, 0x00);
203 out_be16(&fifo->rfalarm, 0x1ff);
204 out_8(&fifo->tfcntl, 0x07);
205 out_be16(&fifo->tfalarm, 0x80);
206
207 port->read_status_mask |= MPC52xx_PSC_IMR_RXRDY | MPC52xx_PSC_IMR_TXRDY;
208 out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
209}
210
211static int mpc52xx_psc_raw_rx_rdy(struct uart_port *port)
212{
213 return in_be16(&PSC(port)->mpc52xx_psc_status)
214 & MPC52xx_PSC_SR_RXRDY;
215}
216
217static int mpc52xx_psc_raw_tx_rdy(struct uart_port *port)
218{
219 return in_be16(&PSC(port)->mpc52xx_psc_status)
220 & MPC52xx_PSC_SR_TXRDY;
221}
222
223
224static int mpc52xx_psc_rx_rdy(struct uart_port *port)
225{
226 return in_be16(&PSC(port)->mpc52xx_psc_isr)
227 & port->read_status_mask
228 & MPC52xx_PSC_IMR_RXRDY;
229}
230
231static int mpc52xx_psc_tx_rdy(struct uart_port *port)
232{
233 return in_be16(&PSC(port)->mpc52xx_psc_isr)
234 & port->read_status_mask
235 & MPC52xx_PSC_IMR_TXRDY;
236}
237
238static int mpc52xx_psc_tx_empty(struct uart_port *port)
239{
240 return in_be16(&PSC(port)->mpc52xx_psc_status)
241 & MPC52xx_PSC_SR_TXEMP;
242}
243
244static void mpc52xx_psc_start_tx(struct uart_port *port)
245{
246 port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY;
247 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
248}
249
250static void mpc52xx_psc_stop_tx(struct uart_port *port)
251{
252 port->read_status_mask &= ~MPC52xx_PSC_IMR_TXRDY;
253 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
254}
255
256static void mpc52xx_psc_stop_rx(struct uart_port *port)
257{
258 port->read_status_mask &= ~MPC52xx_PSC_IMR_RXRDY;
259 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
260}
261
262static void mpc52xx_psc_rx_clr_irq(struct uart_port *port)
263{
264}
265
266static void mpc52xx_psc_tx_clr_irq(struct uart_port *port)
267{
268}
269
270static void mpc52xx_psc_write_char(struct uart_port *port, unsigned char c)
271{
272 out_8(&PSC(port)->mpc52xx_psc_buffer_8, c);
273}
274
275static unsigned char mpc52xx_psc_read_char(struct uart_port *port)
276{
277 return in_8(&PSC(port)->mpc52xx_psc_buffer_8);
278}
279
280static void mpc52xx_psc_cw_disable_ints(struct uart_port *port)
281{
282 out_be16(&PSC(port)->mpc52xx_psc_imr, 0);
283}
284
285static void mpc52xx_psc_cw_restore_ints(struct uart_port *port)
286{
287 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
288}
289
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000290static unsigned int mpc5200_psc_set_baudrate(struct uart_port *port,
291 struct ktermios *new,
292 struct ktermios *old)
John Rigby599f0302008-01-29 04:28:55 +1100293{
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000294 unsigned int baud;
295 unsigned int divisor;
296
297 /* The 5200 has a fixed /32 prescaler, uartclk contains the ipb freq */
298 baud = uart_get_baud_rate(port, new, old,
299 port->uartclk / (32 * 0xffff) + 1,
300 port->uartclk / 32);
301 divisor = (port->uartclk + 16 * baud) / (32 * baud);
302
303 /* enable the /32 prescaler and set the divisor */
304 mpc52xx_set_divisor(PSC(port), 0xdd00, divisor);
305 return baud;
306}
307
308static unsigned int mpc5200b_psc_set_baudrate(struct uart_port *port,
309 struct ktermios *new,
310 struct ktermios *old)
311{
312 unsigned int baud;
313 unsigned int divisor;
314 u16 prescaler;
315
316 /* The 5200B has a selectable /4 or /32 prescaler, uartclk contains the
317 * ipb freq */
318 baud = uart_get_baud_rate(port, new, old,
319 port->uartclk / (32 * 0xffff) + 1,
320 port->uartclk / 4);
321 divisor = (port->uartclk + 2 * baud) / (4 * baud);
322
Frank Benkerte0955ac2012-03-05 16:14:29 +0100323 /* select the proper prescaler and set the divisor
324 * prefer high prescaler for more tolerance on low baudrates */
325 if (divisor > 0xffff || baud <= 115200) {
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000326 divisor = (divisor + 4) / 8;
327 prescaler = 0xdd00; /* /32 */
328 } else
329 prescaler = 0xff00; /* /4 */
330 mpc52xx_set_divisor(PSC(port), prescaler, divisor);
331 return baud;
John Rigby599f0302008-01-29 04:28:55 +1100332}
333
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700334static void mpc52xx_psc_get_irq(struct uart_port *port, struct device_node *np)
335{
Yong Zhang9cfb5c02011-09-22 16:59:15 +0800336 port->irqflags = 0;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700337 port->irq = irq_of_parse_and_map(np, 0);
338}
339
340/* 52xx specific interrupt handler. The caller holds the port lock */
341static irqreturn_t mpc52xx_psc_handle_irq(struct uart_port *port)
342{
343 return mpc5xxx_uart_process_int(port);
344}
345
John Rigby599f0302008-01-29 04:28:55 +1100346static struct psc_ops mpc52xx_psc_ops = {
347 .fifo_init = mpc52xx_psc_fifo_init,
348 .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy,
349 .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy,
350 .rx_rdy = mpc52xx_psc_rx_rdy,
351 .tx_rdy = mpc52xx_psc_tx_rdy,
352 .tx_empty = mpc52xx_psc_tx_empty,
353 .stop_rx = mpc52xx_psc_stop_rx,
354 .start_tx = mpc52xx_psc_start_tx,
355 .stop_tx = mpc52xx_psc_stop_tx,
356 .rx_clr_irq = mpc52xx_psc_rx_clr_irq,
357 .tx_clr_irq = mpc52xx_psc_tx_clr_irq,
358 .write_char = mpc52xx_psc_write_char,
359 .read_char = mpc52xx_psc_read_char,
360 .cw_disable_ints = mpc52xx_psc_cw_disable_ints,
361 .cw_restore_ints = mpc52xx_psc_cw_restore_ints,
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000362 .set_baudrate = mpc5200_psc_set_baudrate,
363 .get_irq = mpc52xx_psc_get_irq,
364 .handle_irq = mpc52xx_psc_handle_irq,
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200365 .get_status = mpc52xx_psc_get_status,
366 .get_ipcr = mpc52xx_psc_get_ipcr,
367 .command = mpc52xx_psc_command,
368 .set_mode = mpc52xx_psc_set_mode,
369 .set_rts = mpc52xx_psc_set_rts,
370 .enable_ms = mpc52xx_psc_enable_ms,
371 .set_sicr = mpc52xx_psc_set_sicr,
372 .set_imr = mpc52xx_psc_set_imr,
373 .get_mr1 = mpc52xx_psc_get_mr1,
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000374};
375
376static struct psc_ops mpc5200b_psc_ops = {
377 .fifo_init = mpc52xx_psc_fifo_init,
378 .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy,
379 .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy,
380 .rx_rdy = mpc52xx_psc_rx_rdy,
381 .tx_rdy = mpc52xx_psc_tx_rdy,
382 .tx_empty = mpc52xx_psc_tx_empty,
383 .stop_rx = mpc52xx_psc_stop_rx,
384 .start_tx = mpc52xx_psc_start_tx,
385 .stop_tx = mpc52xx_psc_stop_tx,
386 .rx_clr_irq = mpc52xx_psc_rx_clr_irq,
387 .tx_clr_irq = mpc52xx_psc_tx_clr_irq,
388 .write_char = mpc52xx_psc_write_char,
389 .read_char = mpc52xx_psc_read_char,
390 .cw_disable_ints = mpc52xx_psc_cw_disable_ints,
391 .cw_restore_ints = mpc52xx_psc_cw_restore_ints,
392 .set_baudrate = mpc5200b_psc_set_baudrate,
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700393 .get_irq = mpc52xx_psc_get_irq,
394 .handle_irq = mpc52xx_psc_handle_irq,
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200395 .get_status = mpc52xx_psc_get_status,
396 .get_ipcr = mpc52xx_psc_get_ipcr,
397 .command = mpc52xx_psc_command,
398 .set_mode = mpc52xx_psc_set_mode,
399 .set_rts = mpc52xx_psc_set_rts,
400 .enable_ms = mpc52xx_psc_enable_ms,
401 .set_sicr = mpc52xx_psc_set_sicr,
402 .set_imr = mpc52xx_psc_set_imr,
403 .get_mr1 = mpc52xx_psc_get_mr1,
John Rigby599f0302008-01-29 04:28:55 +1100404};
405
John Rigby25ae3a02008-01-29 04:28:56 +1100406#endif /* CONFIG_MPC52xx */
407
408#ifdef CONFIG_PPC_MPC512x
409#define FIFO_512x(port) ((struct mpc512x_psc_fifo __iomem *)(PSC(port)+1))
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700410
411/* PSC FIFO Controller for mpc512x */
412struct psc_fifoc {
413 u32 fifoc_cmd;
414 u32 fifoc_int;
415 u32 fifoc_dma;
416 u32 fifoc_axe;
417 u32 fifoc_debug;
418};
419
420static struct psc_fifoc __iomem *psc_fifoc;
421static unsigned int psc_fifoc_irq;
422
John Rigby25ae3a02008-01-29 04:28:56 +1100423static void mpc512x_psc_fifo_init(struct uart_port *port)
424{
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700425 /* /32 prescaler */
426 out_be16(&PSC(port)->mpc52xx_psc_clock_select, 0xdd00);
427
John Rigby25ae3a02008-01-29 04:28:56 +1100428 out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE);
429 out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
430 out_be32(&FIFO_512x(port)->txalarm, 1);
431 out_be32(&FIFO_512x(port)->tximr, 0);
432
433 out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE);
434 out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
435 out_be32(&FIFO_512x(port)->rxalarm, 1);
436 out_be32(&FIFO_512x(port)->rximr, 0);
437
438 out_be32(&FIFO_512x(port)->tximr, MPC512x_PSC_FIFO_ALARM);
439 out_be32(&FIFO_512x(port)->rximr, MPC512x_PSC_FIFO_ALARM);
440}
441
442static int mpc512x_psc_raw_rx_rdy(struct uart_port *port)
443{
444 return !(in_be32(&FIFO_512x(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY);
445}
446
447static int mpc512x_psc_raw_tx_rdy(struct uart_port *port)
448{
449 return !(in_be32(&FIFO_512x(port)->txsr) & MPC512x_PSC_FIFO_FULL);
450}
451
452static int mpc512x_psc_rx_rdy(struct uart_port *port)
453{
454 return in_be32(&FIFO_512x(port)->rxsr)
455 & in_be32(&FIFO_512x(port)->rximr)
456 & MPC512x_PSC_FIFO_ALARM;
457}
458
459static int mpc512x_psc_tx_rdy(struct uart_port *port)
460{
461 return in_be32(&FIFO_512x(port)->txsr)
462 & in_be32(&FIFO_512x(port)->tximr)
463 & MPC512x_PSC_FIFO_ALARM;
464}
465
466static int mpc512x_psc_tx_empty(struct uart_port *port)
467{
468 return in_be32(&FIFO_512x(port)->txsr)
469 & MPC512x_PSC_FIFO_EMPTY;
470}
471
472static void mpc512x_psc_stop_rx(struct uart_port *port)
473{
474 unsigned long rx_fifo_imr;
475
476 rx_fifo_imr = in_be32(&FIFO_512x(port)->rximr);
477 rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
478 out_be32(&FIFO_512x(port)->rximr, rx_fifo_imr);
479}
480
481static void mpc512x_psc_start_tx(struct uart_port *port)
482{
483 unsigned long tx_fifo_imr;
484
485 tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr);
486 tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM;
487 out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr);
488}
489
490static void mpc512x_psc_stop_tx(struct uart_port *port)
491{
492 unsigned long tx_fifo_imr;
493
494 tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr);
495 tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
496 out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr);
497}
498
499static void mpc512x_psc_rx_clr_irq(struct uart_port *port)
500{
501 out_be32(&FIFO_512x(port)->rxisr, in_be32(&FIFO_512x(port)->rxisr));
502}
503
504static void mpc512x_psc_tx_clr_irq(struct uart_port *port)
505{
506 out_be32(&FIFO_512x(port)->txisr, in_be32(&FIFO_512x(port)->txisr));
507}
508
509static void mpc512x_psc_write_char(struct uart_port *port, unsigned char c)
510{
511 out_8(&FIFO_512x(port)->txdata_8, c);
512}
513
514static unsigned char mpc512x_psc_read_char(struct uart_port *port)
515{
516 return in_8(&FIFO_512x(port)->rxdata_8);
517}
518
519static void mpc512x_psc_cw_disable_ints(struct uart_port *port)
520{
521 port->read_status_mask =
522 in_be32(&FIFO_512x(port)->tximr) << 16 |
523 in_be32(&FIFO_512x(port)->rximr);
524 out_be32(&FIFO_512x(port)->tximr, 0);
525 out_be32(&FIFO_512x(port)->rximr, 0);
526}
527
528static void mpc512x_psc_cw_restore_ints(struct uart_port *port)
529{
530 out_be32(&FIFO_512x(port)->tximr,
531 (port->read_status_mask >> 16) & 0x7f);
532 out_be32(&FIFO_512x(port)->rximr, port->read_status_mask & 0x7f);
533}
534
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000535static unsigned int mpc512x_psc_set_baudrate(struct uart_port *port,
536 struct ktermios *new,
537 struct ktermios *old)
John Rigby25ae3a02008-01-29 04:28:56 +1100538{
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000539 unsigned int baud;
540 unsigned int divisor;
541
542 /*
543 * The "MPC5121e Microcontroller Reference Manual, Rev. 3" says on
544 * pg. 30-10 that the chip supports a /32 and a /10 prescaler.
545 * Furthermore, it states that "After reset, the prescaler by 10
546 * for the UART mode is selected", but the reset register value is
547 * 0x0000 which means a /32 prescaler. This is wrong.
548 *
549 * In reality using /32 prescaler doesn't work, as it is not supported!
550 * Use /16 or /10 prescaler, see "MPC5121e Hardware Design Guide",
551 * Chapter 4.1 PSC in UART Mode.
552 * Calculate with a /16 prescaler here.
553 */
554
555 /* uartclk contains the ips freq */
556 baud = uart_get_baud_rate(port, new, old,
557 port->uartclk / (16 * 0xffff) + 1,
558 port->uartclk / 16);
559 divisor = (port->uartclk + 8 * baud) / (16 * baud);
560
561 /* enable the /16 prescaler and set the divisor */
562 mpc52xx_set_divisor(PSC(port), 0xdd00, divisor);
563 return baud;
John Rigby25ae3a02008-01-29 04:28:56 +1100564}
565
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700566/* Init PSC FIFO Controller */
567static int __init mpc512x_psc_fifoc_init(void)
568{
569 struct device_node *np;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700570
571 np = of_find_compatible_node(NULL, NULL,
572 "fsl,mpc5121-psc-fifo");
573 if (!np) {
574 pr_err("%s: Can't find FIFOC node\n", __func__);
575 return -ENODEV;
576 }
577
578 psc_fifoc = of_iomap(np, 0);
579 if (!psc_fifoc) {
580 pr_err("%s: Can't map FIFOC\n", __func__);
Julia Lawall05f25ab2010-08-29 11:52:41 +0200581 of_node_put(np);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700582 return -ENODEV;
583 }
584
585 psc_fifoc_irq = irq_of_parse_and_map(np, 0);
586 of_node_put(np);
Alan Coxd4e33fa2012-01-26 17:44:09 +0000587 if (psc_fifoc_irq == 0) {
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700588 pr_err("%s: Can't get FIFOC irq\n", __func__);
589 iounmap(psc_fifoc);
590 return -ENODEV;
591 }
592
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700593 return 0;
594}
595
596static void __exit mpc512x_psc_fifoc_uninit(void)
597{
598 iounmap(psc_fifoc);
599}
600
601/* 512x specific interrupt handler. The caller holds the port lock */
602static irqreturn_t mpc512x_psc_handle_irq(struct uart_port *port)
603{
604 unsigned long fifoc_int;
605 int psc_num;
606
607 /* Read pending PSC FIFOC interrupts */
608 fifoc_int = in_be32(&psc_fifoc->fifoc_int);
609
610 /* Check if it is an interrupt for this port */
611 psc_num = (port->mapbase & 0xf00) >> 8;
612 if (test_bit(psc_num, &fifoc_int) ||
613 test_bit(psc_num + 16, &fifoc_int))
614 return mpc5xxx_uart_process_int(port);
615
616 return IRQ_NONE;
617}
618
619static int mpc512x_psc_clock(struct uart_port *port, int enable)
620{
621 struct clk *psc_clk;
622 int psc_num;
623 char clk_name[10];
624
625 if (uart_console(port))
626 return 0;
627
628 psc_num = (port->mapbase & 0xf00) >> 8;
Anatolij Gustschin09081e52013-03-09 12:43:54 +0100629 snprintf(clk_name, sizeof(clk_name), "psc%d_mclk", psc_num);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700630 psc_clk = clk_get(port->dev, clk_name);
631 if (IS_ERR(psc_clk)) {
632 dev_err(port->dev, "Failed to get PSC clock entry!\n");
633 return -ENODEV;
634 }
635
636 dev_dbg(port->dev, "%s %sable\n", clk_name, enable ? "en" : "dis");
637
638 if (enable)
639 clk_enable(psc_clk);
640 else
641 clk_disable(psc_clk);
642
643 return 0;
644}
645
646static void mpc512x_psc_get_irq(struct uart_port *port, struct device_node *np)
647{
648 port->irqflags = IRQF_SHARED;
649 port->irq = psc_fifoc_irq;
650}
651
John Rigby25ae3a02008-01-29 04:28:56 +1100652static struct psc_ops mpc512x_psc_ops = {
653 .fifo_init = mpc512x_psc_fifo_init,
654 .raw_rx_rdy = mpc512x_psc_raw_rx_rdy,
655 .raw_tx_rdy = mpc512x_psc_raw_tx_rdy,
656 .rx_rdy = mpc512x_psc_rx_rdy,
657 .tx_rdy = mpc512x_psc_tx_rdy,
658 .tx_empty = mpc512x_psc_tx_empty,
659 .stop_rx = mpc512x_psc_stop_rx,
660 .start_tx = mpc512x_psc_start_tx,
661 .stop_tx = mpc512x_psc_stop_tx,
662 .rx_clr_irq = mpc512x_psc_rx_clr_irq,
663 .tx_clr_irq = mpc512x_psc_tx_clr_irq,
664 .write_char = mpc512x_psc_write_char,
665 .read_char = mpc512x_psc_read_char,
666 .cw_disable_ints = mpc512x_psc_cw_disable_ints,
667 .cw_restore_ints = mpc512x_psc_cw_restore_ints,
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000668 .set_baudrate = mpc512x_psc_set_baudrate,
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700669 .clock = mpc512x_psc_clock,
670 .fifoc_init = mpc512x_psc_fifoc_init,
671 .fifoc_uninit = mpc512x_psc_fifoc_uninit,
672 .get_irq = mpc512x_psc_get_irq,
673 .handle_irq = mpc512x_psc_handle_irq,
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200674 .get_status = mpc52xx_psc_get_status,
675 .get_ipcr = mpc52xx_psc_get_ipcr,
676 .command = mpc52xx_psc_command,
677 .set_mode = mpc52xx_psc_set_mode,
678 .set_rts = mpc52xx_psc_set_rts,
679 .enable_ms = mpc52xx_psc_enable_ms,
680 .set_sicr = mpc52xx_psc_set_sicr,
681 .set_imr = mpc52xx_psc_set_imr,
682 .get_mr1 = mpc52xx_psc_get_mr1,
John Rigby25ae3a02008-01-29 04:28:56 +1100683};
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200684#endif /* CONFIG_PPC_MPC512x */
685
John Rigby25ae3a02008-01-29 04:28:56 +1100686
Uwe Kleine-König76d28e42012-05-21 21:57:39 +0200687static const struct psc_ops *psc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689/* ======================================================================== */
690/* UART operations */
691/* ======================================================================== */
692
Grant Likely9b9129e2006-11-27 14:21:01 -0700693static unsigned int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694mpc52xx_uart_tx_empty(struct uart_port *port)
695{
John Rigby599f0302008-01-29 04:28:55 +1100696 return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Grant Likely9b9129e2006-11-27 14:21:01 -0700699static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
701{
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200702 psc_ops->set_rts(port, mctrl & TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Grant Likely9b9129e2006-11-27 14:21:01 -0700705static unsigned int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706mpc52xx_uart_get_mctrl(struct uart_port *port)
707{
Wolfram Sangaec739e2008-12-21 02:54:32 -0700708 unsigned int ret = TIOCM_DSR;
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200709 u8 status = psc_ops->get_ipcr(port);
Wolfram Sangaec739e2008-12-21 02:54:32 -0700710
711 if (!(status & MPC52xx_PSC_CTS))
712 ret |= TIOCM_CTS;
713 if (!(status & MPC52xx_PSC_DCD))
714 ret |= TIOCM_CAR;
715
716 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Grant Likely9b9129e2006-11-27 14:21:01 -0700719static void
Russell Kingb129a8c2005-08-31 10:12:14 +0100720mpc52xx_uart_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 /* port->lock taken by caller */
John Rigby599f0302008-01-29 04:28:55 +1100723 psc_ops->stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
Grant Likely9b9129e2006-11-27 14:21:01 -0700726static void
Russell Kingb129a8c2005-08-31 10:12:14 +0100727mpc52xx_uart_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 /* port->lock taken by caller */
John Rigby599f0302008-01-29 04:28:55 +1100730 psc_ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
Grant Likely9b9129e2006-11-27 14:21:01 -0700733static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734mpc52xx_uart_send_xchar(struct uart_port *port, char ch)
735{
736 unsigned long flags;
737 spin_lock_irqsave(&port->lock, flags);
Grant Likely9b9129e2006-11-27 14:21:01 -0700738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 port->x_char = ch;
740 if (ch) {
741 /* Make sure tx interrupts are on */
742 /* Truly necessary ??? They should be anyway */
John Rigby599f0302008-01-29 04:28:55 +1100743 psc_ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
Grant Likely9b9129e2006-11-27 14:21:01 -0700745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 spin_unlock_irqrestore(&port->lock, flags);
747}
748
749static void
750mpc52xx_uart_stop_rx(struct uart_port *port)
751{
752 /* port->lock taken by caller */
John Rigby599f0302008-01-29 04:28:55 +1100753 psc_ops->stop_rx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
756static void
757mpc52xx_uart_enable_ms(struct uart_port *port)
758{
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200759 psc_ops->enable_ms(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
762static void
763mpc52xx_uart_break_ctl(struct uart_port *port, int ctl)
764{
765 unsigned long flags;
766 spin_lock_irqsave(&port->lock, flags);
767
John Rigby406b7d42008-01-17 08:37:25 +1100768 if (ctl == -1)
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200769 psc_ops->command(port, MPC52xx_PSC_START_BRK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 else
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200771 psc_ops->command(port, MPC52xx_PSC_STOP_BRK);
Grant Likely9b9129e2006-11-27 14:21:01 -0700772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 spin_unlock_irqrestore(&port->lock, flags);
774}
775
776static int
777mpc52xx_uart_startup(struct uart_port *port)
778{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 int ret;
780
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700781 if (psc_ops->clock) {
782 ret = psc_ops->clock(port, 1);
783 if (ret)
784 return ret;
785 }
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /* Request IRQ */
788 ret = request_irq(port->irq, mpc52xx_uart_int,
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700789 port->irqflags, "mpc52xx_psc_uart", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (ret)
791 return ret;
792
793 /* Reset/activate the port, clear and enable interrupts */
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200794 psc_ops->command(port, MPC52xx_PSC_RST_RX);
795 psc_ops->command(port, MPC52xx_PSC_RST_TX);
Grant Likely9b9129e2006-11-27 14:21:01 -0700796
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200797 psc_ops->set_sicr(port, 0); /* UART mode DCD ignored */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
John Rigby599f0302008-01-29 04:28:55 +1100799 psc_ops->fifo_init(port);
Grant Likely9b9129e2006-11-27 14:21:01 -0700800
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200801 psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
802 psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
Grant Likely9b9129e2006-11-27 14:21:01 -0700803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return 0;
805}
806
807static void
808mpc52xx_uart_shutdown(struct uart_port *port)
809{
Grant Likelya3481192007-05-07 01:38:51 +1000810 /* Shut down the port. Leave TX active if on a console port */
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200811 psc_ops->command(port, MPC52xx_PSC_RST_RX);
Grant Likelya3481192007-05-07 01:38:51 +1000812 if (!uart_console(port))
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200813 psc_ops->command(port, MPC52xx_PSC_RST_TX);
Grant Likely9b9129e2006-11-27 14:21:01 -0700814
815 port->read_status_mask = 0;
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200816 psc_ops->set_imr(port, port->read_status_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700818 if (psc_ops->clock)
819 psc_ops->clock(port, 0);
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /* Release interrupt */
822 free_irq(port->irq, port);
823}
824
Grant Likely9b9129e2006-11-27 14:21:01 -0700825static void
Alan Cox606d0992006-12-08 02:38:45 -0800826mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new,
John Rigby406b7d42008-01-17 08:37:25 +1100827 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 unsigned long flags;
830 unsigned char mr1, mr2;
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000831 unsigned int j;
832 unsigned int baud;
Grant Likely9b9129e2006-11-27 14:21:01 -0700833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 /* Prepare what we're gonna write */
835 mr1 = 0;
Grant Likely9b9129e2006-11-27 14:21:01 -0700836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 switch (new->c_cflag & CSIZE) {
John Rigby406b7d42008-01-17 08:37:25 +1100838 case CS5: mr1 |= MPC52xx_PSC_MODE_5_BITS;
839 break;
840 case CS6: mr1 |= MPC52xx_PSC_MODE_6_BITS;
841 break;
842 case CS7: mr1 |= MPC52xx_PSC_MODE_7_BITS;
843 break;
844 case CS8:
845 default: mr1 |= MPC52xx_PSC_MODE_8_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847
848 if (new->c_cflag & PARENB) {
Wolfram Sangd3dec962012-08-27 16:03:14 +0200849 if (new->c_cflag & CMSPAR)
850 mr1 |= MPC52xx_PSC_MODE_PARFORCE;
851
852 /* With CMSPAR, PARODD also means high parity (same as termios) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 mr1 |= (new->c_cflag & PARODD) ?
854 MPC52xx_PSC_MODE_PARODD : MPC52xx_PSC_MODE_PAREVEN;
Wolfram Sangd3dec962012-08-27 16:03:14 +0200855 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 mr1 |= MPC52xx_PSC_MODE_PARNONE;
Wolfram Sangd3dec962012-08-27 16:03:14 +0200857 }
Grant Likely9b9129e2006-11-27 14:21:01 -0700858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 mr2 = 0;
860
861 if (new->c_cflag & CSTOPB)
862 mr2 |= MPC52xx_PSC_MODE_TWO_STOP;
863 else
864 mr2 |= ((new->c_cflag & CSIZE) == CS5) ?
865 MPC52xx_PSC_MODE_ONE_STOP_5_BITS :
866 MPC52xx_PSC_MODE_ONE_STOP;
867
Wolfram Sangaec739e2008-12-21 02:54:32 -0700868 if (new->c_cflag & CRTSCTS) {
869 mr1 |= MPC52xx_PSC_MODE_RXRTS;
870 mr2 |= MPC52xx_PSC_MODE_TXCTS;
871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /* Get the lock */
874 spin_lock_irqsave(&port->lock, flags);
875
Nick Andrewc4f01242008-12-05 16:34:46 +0000876 /* Do our best to flush TX & RX, so we don't lose anything */
877 /* But we don't wait indefinitely ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 j = 5000000; /* Maximum wait */
879 /* FIXME Can't receive chars since set_termios might be called at early
880 * boot for the console, all stuff is not yet ready to receive at that
881 * time and that just makes the kernel oops */
882 /* while (j-- && mpc52xx_uart_int_rx_chars(port)); */
John Rigby599f0302008-01-29 04:28:55 +1100883 while (!mpc52xx_uart_tx_empty(port) && --j)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 udelay(1);
885
886 if (!j)
John Rigby406b7d42008-01-17 08:37:25 +1100887 printk(KERN_ERR "mpc52xx_uart.c: "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 "Unable to flush RX & TX fifos in-time in set_termios."
John Rigby406b7d42008-01-17 08:37:25 +1100889 "Some chars may have been lost.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 /* Reset the TX & RX */
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200892 psc_ops->command(port, MPC52xx_PSC_RST_RX);
893 psc_ops->command(port, MPC52xx_PSC_RST_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 /* Send new mode settings */
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200896 psc_ops->set_mode(port, mr1, mr2);
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000897 baud = psc_ops->set_baudrate(port, new, old);
898
899 /* Update the per-port timeout */
900 uart_update_timeout(port, new->c_cflag, baud);
Grant Likely9b9129e2006-11-27 14:21:01 -0700901
Wolfram Sangaec739e2008-12-21 02:54:32 -0700902 if (UART_ENABLE_MS(port, new->c_cflag))
903 mpc52xx_uart_enable_ms(port);
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 /* Reenable TX & RX */
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200906 psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
907 psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 /* We're all set, release the lock */
910 spin_unlock_irqrestore(&port->lock, flags);
911}
912
913static const char *
914mpc52xx_uart_type(struct uart_port *port)
915{
Wolfram Sange44dcb62010-11-12 19:47:47 +0100916 /*
917 * We keep using PORT_MPC52xx for historic reasons although it applies
918 * for MPC512x, too, but print "MPC5xxx" to not irritate users
919 */
920 return port->type == PORT_MPC52xx ? "MPC5xxx PSC" : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
923static void
924mpc52xx_uart_release_port(struct uart_port *port)
925{
John Rigby406b7d42008-01-17 08:37:25 +1100926 /* remapped by us ? */
927 if (port->flags & UPF_IOREMAP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 iounmap(port->membase);
929 port->membase = NULL;
930 }
931
Grant Likelyb9272df2006-11-27 14:21:02 -0700932 release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
935static int
936mpc52xx_uart_request_port(struct uart_port *port)
937{
Amol Ladbe618f52006-09-30 23:29:23 -0700938 int err;
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (port->flags & UPF_IOREMAP) /* Need to remap ? */
Grant Likelyb9272df2006-11-27 14:21:02 -0700941 port->membase = ioremap(port->mapbase,
John Rigby406b7d42008-01-17 08:37:25 +1100942 sizeof(struct mpc52xx_psc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 if (!port->membase)
945 return -EINVAL;
946
Grant Likelyb9272df2006-11-27 14:21:02 -0700947 err = request_mem_region(port->mapbase, sizeof(struct mpc52xx_psc),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 "mpc52xx_psc_uart") != NULL ? 0 : -EBUSY;
Amol Ladbe618f52006-09-30 23:29:23 -0700949
950 if (err && (port->flags & UPF_IOREMAP)) {
951 iounmap(port->membase);
952 port->membase = NULL;
953 }
954
955 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
958static void
959mpc52xx_uart_config_port(struct uart_port *port, int flags)
960{
John Rigby406b7d42008-01-17 08:37:25 +1100961 if ((flags & UART_CONFIG_TYPE)
962 && (mpc52xx_uart_request_port(port) == 0))
963 port->type = PORT_MPC52xx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
966static int
967mpc52xx_uart_verify_port(struct uart_port *port, struct serial_struct *ser)
968{
John Rigby406b7d42008-01-17 08:37:25 +1100969 if (ser->type != PORT_UNKNOWN && ser->type != PORT_MPC52xx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return -EINVAL;
971
John Rigby406b7d42008-01-17 08:37:25 +1100972 if ((ser->irq != port->irq) ||
Julia Lawallb7a82122009-10-15 09:58:28 -0600973 (ser->io_type != UPIO_MEM) ||
John Rigby406b7d42008-01-17 08:37:25 +1100974 (ser->baud_base != port->uartclk) ||
975 (ser->iomem_base != (void *)port->mapbase) ||
976 (ser->hub6 != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 return -EINVAL;
978
979 return 0;
980}
981
982
983static struct uart_ops mpc52xx_uart_ops = {
984 .tx_empty = mpc52xx_uart_tx_empty,
985 .set_mctrl = mpc52xx_uart_set_mctrl,
986 .get_mctrl = mpc52xx_uart_get_mctrl,
987 .stop_tx = mpc52xx_uart_stop_tx,
988 .start_tx = mpc52xx_uart_start_tx,
989 .send_xchar = mpc52xx_uart_send_xchar,
990 .stop_rx = mpc52xx_uart_stop_rx,
991 .enable_ms = mpc52xx_uart_enable_ms,
992 .break_ctl = mpc52xx_uart_break_ctl,
993 .startup = mpc52xx_uart_startup,
994 .shutdown = mpc52xx_uart_shutdown,
995 .set_termios = mpc52xx_uart_set_termios,
996/* .pm = mpc52xx_uart_pm, Not supported yet */
997/* .set_wake = mpc52xx_uart_set_wake, Not supported yet */
998 .type = mpc52xx_uart_type,
999 .release_port = mpc52xx_uart_release_port,
1000 .request_port = mpc52xx_uart_request_port,
1001 .config_port = mpc52xx_uart_config_port,
1002 .verify_port = mpc52xx_uart_verify_port
1003};
1004
Grant Likely9b9129e2006-11-27 14:21:01 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006/* ======================================================================== */
1007/* Interrupt handling */
1008/* ======================================================================== */
Grant Likely9b9129e2006-11-27 14:21:01 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010static inline int
David Howells7d12e782006-10-05 14:55:46 +01001011mpc52xx_uart_int_rx_chars(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Jiri Slaby92a19f92013-01-03 15:53:03 +01001013 struct tty_port *tport = &port->state->port;
Alan Cox33f0f882006-01-09 20:54:13 -08001014 unsigned char ch, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 unsigned short status;
1016
1017 /* While we can read, do so ! */
John Rigby599f0302008-01-29 04:28:55 +11001018 while (psc_ops->raw_rx_rdy(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 /* Get the char */
John Rigby599f0302008-01-29 04:28:55 +11001020 ch = psc_ops->read_char(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 /* Handle sysreq char */
1023#ifdef SUPPORT_SYSRQ
David Howells7d12e782006-10-05 14:55:46 +01001024 if (uart_handle_sysrq_char(port, ch)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 port->sysrq = 0;
1026 continue;
1027 }
1028#endif
1029
1030 /* Store it */
Alan Cox33f0f882006-01-09 20:54:13 -08001031
1032 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 port->icount.rx++;
Grant Likely9b9129e2006-11-27 14:21:01 -07001034
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001035 status = psc_ops->get_status(port);
John Rigby599f0302008-01-29 04:28:55 +11001036
John Rigby406b7d42008-01-17 08:37:25 +11001037 if (status & (MPC52xx_PSC_SR_PE |
1038 MPC52xx_PSC_SR_FE |
1039 MPC52xx_PSC_SR_RB)) {
Grant Likely9b9129e2006-11-27 14:21:01 -07001040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (status & MPC52xx_PSC_SR_RB) {
Alan Cox33f0f882006-01-09 20:54:13 -08001042 flag = TTY_BREAK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 uart_handle_break(port);
René Bürgelb6514982008-12-21 02:54:31 -07001044 port->icount.brk++;
1045 } else if (status & MPC52xx_PSC_SR_PE) {
Alan Cox33f0f882006-01-09 20:54:13 -08001046 flag = TTY_PARITY;
René Bürgelb6514982008-12-21 02:54:31 -07001047 port->icount.parity++;
1048 }
1049 else if (status & MPC52xx_PSC_SR_FE) {
Alan Cox33f0f882006-01-09 20:54:13 -08001050 flag = TTY_FRAME;
René Bürgelb6514982008-12-21 02:54:31 -07001051 port->icount.frame++;
1052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 /* Clear error condition */
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001055 psc_ops->command(port, MPC52xx_PSC_RST_ERR_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 }
Jiri Slaby92a19f92013-01-03 15:53:03 +01001058 tty_insert_flip_char(tport, ch, flag);
Alan Cox33f0f882006-01-09 20:54:13 -08001059 if (status & MPC52xx_PSC_SR_OE) {
1060 /*
1061 * Overrun is special, since it's
1062 * reported immediately, and doesn't
1063 * affect the current character
1064 */
Jiri Slaby92a19f92013-01-03 15:53:03 +01001065 tty_insert_flip_char(tport, 0, TTY_OVERRUN);
René Bürgelb6514982008-12-21 02:54:31 -07001066 port->icount.overrun++;
Alan Cox33f0f882006-01-09 20:54:13 -08001067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
1069
Andrew Liufbe543b2008-04-29 17:36:25 +10001070 spin_unlock(&port->lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001071 tty_flip_buffer_push(tport);
Andrew Liufbe543b2008-04-29 17:36:25 +10001072 spin_lock(&port->lock);
Grant Likely9b9129e2006-11-27 14:21:01 -07001073
John Rigby599f0302008-01-29 04:28:55 +11001074 return psc_ops->raw_rx_rdy(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
1077static inline int
1078mpc52xx_uart_int_tx_chars(struct uart_port *port)
1079{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001080 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 /* Process out of band chars */
1083 if (port->x_char) {
John Rigby599f0302008-01-29 04:28:55 +11001084 psc_ops->write_char(port, port->x_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 port->icount.tx++;
1086 port->x_char = 0;
1087 return 1;
1088 }
1089
1090 /* Nothing to do ? */
1091 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001092 mpc52xx_uart_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return 0;
1094 }
1095
1096 /* Send chars */
John Rigby599f0302008-01-29 04:28:55 +11001097 while (psc_ops->raw_tx_rdy(port)) {
1098 psc_ops->write_char(port, xmit->buf[xmit->tail]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1100 port->icount.tx++;
1101 if (uart_circ_empty(xmit))
1102 break;
1103 }
1104
1105 /* Wake up */
1106 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1107 uart_write_wakeup(port);
1108
1109 /* Maybe we're done after all */
1110 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001111 mpc52xx_uart_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return 0;
1113 }
1114
1115 return 1;
1116}
1117
Grant Likely9b9129e2006-11-27 14:21:01 -07001118static irqreturn_t
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001119mpc5xxx_uart_process_int(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 unsigned long pass = ISR_PASS_LIMIT;
1122 unsigned int keepgoing;
Wolfram Sangaec739e2008-12-21 02:54:32 -07001123 u8 status;
Grant Likely9b9129e2006-11-27 14:21:01 -07001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 /* While we have stuff to do, we continue */
1126 do {
1127 /* If we don't find anything to do, we stop */
Grant Likely9b9129e2006-11-27 14:21:01 -07001128 keepgoing = 0;
1129
John Rigby599f0302008-01-29 04:28:55 +11001130 psc_ops->rx_clr_irq(port);
1131 if (psc_ops->rx_rdy(port))
David Howells7d12e782006-10-05 14:55:46 +01001132 keepgoing |= mpc52xx_uart_int_rx_chars(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
John Rigby599f0302008-01-29 04:28:55 +11001134 psc_ops->tx_clr_irq(port);
1135 if (psc_ops->tx_rdy(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 keepgoing |= mpc52xx_uart_int_tx_chars(port);
Grant Likely9b9129e2006-11-27 14:21:01 -07001137
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001138 status = psc_ops->get_ipcr(port);
Wolfram Sangaec739e2008-12-21 02:54:32 -07001139 if (status & MPC52xx_PSC_D_DCD)
1140 uart_handle_dcd_change(port, !(status & MPC52xx_PSC_DCD));
1141
1142 if (status & MPC52xx_PSC_D_CTS)
1143 uart_handle_cts_change(port, !(status & MPC52xx_PSC_CTS));
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 /* Limit number of iteration */
John Rigby406b7d42008-01-17 08:37:25 +11001146 if (!(--pass))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 keepgoing = 0;
1148
1149 } while (keepgoing);
Grant Likely9b9129e2006-11-27 14:21:01 -07001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 return IRQ_HANDLED;
1152}
1153
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001154static irqreturn_t
1155mpc52xx_uart_int(int irq, void *dev_id)
1156{
1157 struct uart_port *port = dev_id;
1158 irqreturn_t ret;
1159
1160 spin_lock(&port->lock);
1161
1162 ret = psc_ops->handle_irq(port);
1163
1164 spin_unlock(&port->lock);
1165
1166 return ret;
1167}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169/* ======================================================================== */
1170/* Console ( if applicable ) */
1171/* ======================================================================== */
1172
1173#ifdef CONFIG_SERIAL_MPC52xx_CONSOLE
1174
1175static void __init
1176mpc52xx_console_get_options(struct uart_port *port,
John Rigby406b7d42008-01-17 08:37:25 +11001177 int *baud, int *parity, int *bits, int *flow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 unsigned char mr1;
1180
Grant Likelyb9272df2006-11-27 14:21:02 -07001181 pr_debug("mpc52xx_console_get_options(port=%p)\n", port);
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 /* Read the mode registers */
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001184 mr1 = psc_ops->get_mr1(port);
Grant Likely9b9129e2006-11-27 14:21:01 -07001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /* CT{U,L}R are write-only ! */
Grant Likelyb9272df2006-11-27 14:21:02 -07001187 *baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 /* Parse them */
1190 switch (mr1 & MPC52xx_PSC_MODE_BITS_MASK) {
John Rigby406b7d42008-01-17 08:37:25 +11001191 case MPC52xx_PSC_MODE_5_BITS:
1192 *bits = 5;
1193 break;
1194 case MPC52xx_PSC_MODE_6_BITS:
1195 *bits = 6;
1196 break;
1197 case MPC52xx_PSC_MODE_7_BITS:
1198 *bits = 7;
1199 break;
1200 case MPC52xx_PSC_MODE_8_BITS:
1201 default:
1202 *bits = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
Grant Likely9b9129e2006-11-27 14:21:01 -07001204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (mr1 & MPC52xx_PSC_MODE_PARNONE)
1206 *parity = 'n';
1207 else
1208 *parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e';
1209}
1210
Grant Likely9b9129e2006-11-27 14:21:01 -07001211static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212mpc52xx_console_write(struct console *co, const char *s, unsigned int count)
1213{
1214 struct uart_port *port = &mpc52xx_uart_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 unsigned int i, j;
Grant Likely9b9129e2006-11-27 14:21:01 -07001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 /* Disable interrupts */
John Rigby599f0302008-01-29 04:28:55 +11001218 psc_ops->cw_disable_ints(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 /* Wait the TX buffer to be empty */
Grant Likely9b9129e2006-11-27 14:21:01 -07001221 j = 5000000; /* Maximum wait */
John Rigby599f0302008-01-29 04:28:55 +11001222 while (!mpc52xx_uart_tx_empty(port) && --j)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 udelay(1);
1224
1225 /* Write all the chars */
Russell Kingd3587882006-03-20 20:00:09 +00001226 for (i = 0; i < count; i++, s++) {
1227 /* Line return handling */
1228 if (*s == '\n')
John Rigby599f0302008-01-29 04:28:55 +11001229 psc_ops->write_char(port, '\r');
Grant Likely9b9129e2006-11-27 14:21:01 -07001230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 /* Send the char */
John Rigby599f0302008-01-29 04:28:55 +11001232 psc_ops->write_char(port, *s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 /* Wait the TX buffer to be empty */
Grant Likely9b9129e2006-11-27 14:21:01 -07001235 j = 20000; /* Maximum wait */
John Rigby599f0302008-01-29 04:28:55 +11001236 while (!mpc52xx_uart_tx_empty(port) && --j)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 udelay(1);
1238 }
1239
1240 /* Restore interrupt state */
John Rigby599f0302008-01-29 04:28:55 +11001241 psc_ops->cw_restore_ints(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
Grant Likelyb9272df2006-11-27 14:21:02 -07001244
1245static int __init
1246mpc52xx_console_setup(struct console *co, char *options)
1247{
1248 struct uart_port *port = &mpc52xx_uart_ports[co->index];
1249 struct device_node *np = mpc52xx_uart_nodes[co->index];
John Rigby599f0302008-01-29 04:28:55 +11001250 unsigned int uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001251 struct resource res;
1252 int ret;
1253
1254 int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
1255 int bits = 8;
1256 int parity = 'n';
1257 int flow = 'n';
1258
1259 pr_debug("mpc52xx_console_setup co=%p, co->index=%i, options=%s\n",
1260 co, co->index, options);
1261
Roel Kluinb898f4f2009-05-28 14:34:29 -07001262 if ((co->index < 0) || (co->index >= MPC52xx_PSC_MAXNUM)) {
Grant Likelyb9272df2006-11-27 14:21:02 -07001263 pr_debug("PSC%x out of range\n", co->index);
1264 return -EINVAL;
1265 }
1266
1267 if (!np) {
1268 pr_debug("PSC%x not found in device tree\n", co->index);
1269 return -EINVAL;
1270 }
1271
1272 pr_debug("Console on ttyPSC%x is %s\n",
John Rigby406b7d42008-01-17 08:37:25 +11001273 co->index, mpc52xx_uart_nodes[co->index]->full_name);
Grant Likelyb9272df2006-11-27 14:21:02 -07001274
1275 /* Fetch register locations */
John Rigby406b7d42008-01-17 08:37:25 +11001276 ret = of_address_to_resource(np, 0, &res);
1277 if (ret) {
Grant Likelyb9272df2006-11-27 14:21:02 -07001278 pr_debug("Could not get resources for PSC%x\n", co->index);
1279 return ret;
1280 }
1281
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001282 uartclk = mpc5xxx_get_bus_frequency(np);
John Rigby599f0302008-01-29 04:28:55 +11001283 if (uartclk == 0) {
1284 pr_debug("Could not find uart clock frequency!\n");
Grant Likelyb9272df2006-11-27 14:21:02 -07001285 return -EINVAL;
1286 }
1287
1288 /* Basic port init. Needed since we use some uart_??? func before
1289 * real init for early access */
1290 spin_lock_init(&port->lock);
John Rigby599f0302008-01-29 04:28:55 +11001291 port->uartclk = uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001292 port->ops = &mpc52xx_uart_ops;
1293 port->mapbase = res.start;
1294 port->membase = ioremap(res.start, sizeof(struct mpc52xx_psc));
1295 port->irq = irq_of_parse_and_map(np, 0);
1296
1297 if (port->membase == NULL)
1298 return -EINVAL;
1299
Grant Likely5dd80d52007-10-13 22:37:02 -06001300 pr_debug("mpc52xx-psc uart at %p, mapped to %p, irq=%x, freq=%i\n",
John Rigby406b7d42008-01-17 08:37:25 +11001301 (void *)port->mapbase, port->membase,
1302 port->irq, port->uartclk);
Grant Likelyb9272df2006-11-27 14:21:02 -07001303
1304 /* Setup the port parameters accoding to options */
1305 if (options)
1306 uart_parse_options(options, &baud, &parity, &bits, &flow);
1307 else
1308 mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow);
1309
1310 pr_debug("Setting console parameters: %i %i%c1 flow=%c\n",
John Rigby406b7d42008-01-17 08:37:25 +11001311 baud, bits, parity, flow);
Grant Likelyb9272df2006-11-27 14:21:02 -07001312
1313 return uart_set_options(port, co, baud, parity, bits, flow);
1314}
Grant Likelyb9272df2006-11-27 14:21:02 -07001315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Sylvain Munaut2d8179c2006-01-06 00:11:31 -08001317static struct uart_driver mpc52xx_uart_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319static struct console mpc52xx_console = {
Sylvain Munautd62de3a2006-01-06 00:11:32 -08001320 .name = "ttyPSC",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 .write = mpc52xx_console_write,
1322 .device = uart_console_device,
1323 .setup = mpc52xx_console_setup,
1324 .flags = CON_PRINTBUFFER,
John Rigby406b7d42008-01-17 08:37:25 +11001325 .index = -1, /* Specified on the cmdline (e.g. console=ttyPSC0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 .data = &mpc52xx_uart_driver,
1327};
1328
Grant Likely9b9129e2006-11-27 14:21:01 -07001329
1330static int __init
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331mpc52xx_console_init(void)
1332{
Grant Likelyb9272df2006-11-27 14:21:02 -07001333 mpc52xx_uart_of_enumerate();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 register_console(&mpc52xx_console);
1335 return 0;
1336}
1337
1338console_initcall(mpc52xx_console_init);
1339
1340#define MPC52xx_PSC_CONSOLE &mpc52xx_console
1341#else
1342#define MPC52xx_PSC_CONSOLE NULL
1343#endif
1344
1345
1346/* ======================================================================== */
1347/* UART Driver */
1348/* ======================================================================== */
1349
1350static struct uart_driver mpc52xx_uart_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 .driver_name = "mpc52xx_psc_uart",
Sylvain Munautd62de3a2006-01-06 00:11:32 -08001352 .dev_name = "ttyPSC",
Sylvain Munautd62de3a2006-01-06 00:11:32 -08001353 .major = SERIAL_PSC_MAJOR,
1354 .minor = SERIAL_PSC_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 .nr = MPC52xx_PSC_MAXNUM,
1356 .cons = MPC52xx_PSC_CONSOLE,
1357};
1358
Grant Likelyb9272df2006-11-27 14:21:02 -07001359/* ======================================================================== */
1360/* OF Platform Driver */
1361/* ======================================================================== */
1362
Grant Likely52b80482008-02-06 22:29:25 -07001363static struct of_device_id mpc52xx_uart_of_match[] = {
1364#ifdef CONFIG_PPC_MPC52xx
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001365 { .compatible = "fsl,mpc5200b-psc-uart", .data = &mpc5200b_psc_ops, },
Grant Likely52b80482008-02-06 22:29:25 -07001366 { .compatible = "fsl,mpc5200-psc-uart", .data = &mpc52xx_psc_ops, },
1367 /* binding used by old lite5200 device trees: */
1368 { .compatible = "mpc5200-psc-uart", .data = &mpc52xx_psc_ops, },
1369 /* binding used by efika: */
1370 { .compatible = "mpc5200-serial", .data = &mpc52xx_psc_ops, },
1371#endif
1372#ifdef CONFIG_PPC_MPC512x
1373 { .compatible = "fsl,mpc5121-psc-uart", .data = &mpc512x_psc_ops, },
Grant Likely52b80482008-02-06 22:29:25 -07001374#endif
Grant Likelybc775ea2008-04-29 06:40:37 -06001375 {},
Grant Likely52b80482008-02-06 22:29:25 -07001376};
1377
Bill Pemberton9671f092012-11-19 13:21:50 -05001378static int mpc52xx_uart_of_probe(struct platform_device *op)
Grant Likelyb9272df2006-11-27 14:21:02 -07001379{
1380 int idx = -1;
John Rigby599f0302008-01-29 04:28:55 +11001381 unsigned int uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001382 struct uart_port *port = NULL;
1383 struct resource res;
1384 int ret;
1385
Grant Likelyb9272df2006-11-27 14:21:02 -07001386 /* Check validity & presence */
1387 for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++)
Grant Likely61c7a082010-04-13 16:12:29 -07001388 if (mpc52xx_uart_nodes[idx] == op->dev.of_node)
Grant Likelyb9272df2006-11-27 14:21:02 -07001389 break;
1390 if (idx >= MPC52xx_PSC_MAXNUM)
1391 return -EINVAL;
1392 pr_debug("Found %s assigned to ttyPSC%x\n",
John Rigby406b7d42008-01-17 08:37:25 +11001393 mpc52xx_uart_nodes[idx]->full_name, idx);
Grant Likelyb9272df2006-11-27 14:21:02 -07001394
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001395 /* set the uart clock to the input clock of the psc, the different
1396 * prescalers are taken into account in the set_baudrate() methods
1397 * of the respective chip */
1398 uartclk = mpc5xxx_get_bus_frequency(op->dev.of_node);
John Rigby599f0302008-01-29 04:28:55 +11001399 if (uartclk == 0) {
1400 dev_dbg(&op->dev, "Could not find uart clock frequency!\n");
Grant Likelyb9272df2006-11-27 14:21:02 -07001401 return -EINVAL;
1402 }
1403
1404 /* Init the port structure */
1405 port = &mpc52xx_uart_ports[idx];
1406
1407 spin_lock_init(&port->lock);
John Rigby599f0302008-01-29 04:28:55 +11001408 port->uartclk = uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001409 port->fifosize = 512;
1410 port->iotype = UPIO_MEM;
1411 port->flags = UPF_BOOT_AUTOCONF |
John Rigby406b7d42008-01-17 08:37:25 +11001412 (uart_console(port) ? 0 : UPF_IOREMAP);
Grant Likelyb9272df2006-11-27 14:21:02 -07001413 port->line = idx;
1414 port->ops = &mpc52xx_uart_ops;
1415 port->dev = &op->dev;
1416
1417 /* Search for IRQ and mapbase */
Grant Likely61c7a082010-04-13 16:12:29 -07001418 ret = of_address_to_resource(op->dev.of_node, 0, &res);
John Rigby406b7d42008-01-17 08:37:25 +11001419 if (ret)
Grant Likelyb9272df2006-11-27 14:21:02 -07001420 return ret;
1421
1422 port->mapbase = res.start;
Wolfram Sang418441d92008-12-21 02:54:32 -07001423 if (!port->mapbase) {
1424 dev_dbg(&op->dev, "Could not allocate resources for PSC\n");
1425 return -EINVAL;
1426 }
1427
Grant Likely61c7a082010-04-13 16:12:29 -07001428 psc_ops->get_irq(port, op->dev.of_node);
Alan Coxd4e33fa2012-01-26 17:44:09 +00001429 if (port->irq == 0) {
Wolfram Sang418441d92008-12-21 02:54:32 -07001430 dev_dbg(&op->dev, "Could not get irq\n");
1431 return -EINVAL;
1432 }
Grant Likelyb9272df2006-11-27 14:21:02 -07001433
Grant Likely5dd80d52007-10-13 22:37:02 -06001434 dev_dbg(&op->dev, "mpc52xx-psc uart at %p, irq=%x, freq=%i\n",
John Rigby406b7d42008-01-17 08:37:25 +11001435 (void *)port->mapbase, port->irq, port->uartclk);
Grant Likelyb9272df2006-11-27 14:21:02 -07001436
Grant Likelyb9272df2006-11-27 14:21:02 -07001437 /* Add the port to the uart sub-system */
1438 ret = uart_add_one_port(&mpc52xx_uart_driver, port);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001439 if (ret)
Wolfram Sang418441d92008-12-21 02:54:32 -07001440 return ret;
Grant Likelyb9272df2006-11-27 14:21:02 -07001441
Jingoo Han696faed2013-05-23 19:39:36 +09001442 platform_set_drvdata(op, (void *)port);
Wolfram Sang418441d92008-12-21 02:54:32 -07001443 return 0;
Grant Likelyb9272df2006-11-27 14:21:02 -07001444}
1445
1446static int
Grant Likely2dc11582010-08-06 09:25:50 -06001447mpc52xx_uart_of_remove(struct platform_device *op)
Grant Likelyb9272df2006-11-27 14:21:02 -07001448{
Jingoo Han696faed2013-05-23 19:39:36 +09001449 struct uart_port *port = platform_get_drvdata(op);
Grant Likelyb9272df2006-11-27 14:21:02 -07001450
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001451 if (port)
Grant Likelyb9272df2006-11-27 14:21:02 -07001452 uart_remove_one_port(&mpc52xx_uart_driver, port);
1453
1454 return 0;
1455}
1456
1457#ifdef CONFIG_PM
1458static int
Grant Likely2dc11582010-08-06 09:25:50 -06001459mpc52xx_uart_of_suspend(struct platform_device *op, pm_message_t state)
Grant Likelyb9272df2006-11-27 14:21:02 -07001460{
Jingoo Han696faed2013-05-23 19:39:36 +09001461 struct uart_port *port = (struct uart_port *) platform_get_drvdata(op);
Grant Likelyb9272df2006-11-27 14:21:02 -07001462
1463 if (port)
1464 uart_suspend_port(&mpc52xx_uart_driver, port);
1465
1466 return 0;
1467}
1468
1469static int
Grant Likely2dc11582010-08-06 09:25:50 -06001470mpc52xx_uart_of_resume(struct platform_device *op)
Grant Likelyb9272df2006-11-27 14:21:02 -07001471{
Jingoo Han696faed2013-05-23 19:39:36 +09001472 struct uart_port *port = (struct uart_port *) platform_get_drvdata(op);
Grant Likelyb9272df2006-11-27 14:21:02 -07001473
1474 if (port)
1475 uart_resume_port(&mpc52xx_uart_driver, port);
1476
1477 return 0;
1478}
1479#endif
1480
1481static void
Grant Likely3b5ebf82009-02-03 12:30:25 -07001482mpc52xx_uart_of_assign(struct device_node *np)
Grant Likelyb9272df2006-11-27 14:21:02 -07001483{
Grant Likelyb9272df2006-11-27 14:21:02 -07001484 int i;
1485
Grant Likely3b5ebf82009-02-03 12:30:25 -07001486 /* Find the first free PSC number */
Grant Likelyb9272df2006-11-27 14:21:02 -07001487 for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1488 if (mpc52xx_uart_nodes[i] == NULL) {
Grant Likely3b5ebf82009-02-03 12:30:25 -07001489 of_node_get(np);
1490 mpc52xx_uart_nodes[i] = np;
1491 return;
Grant Likelyb9272df2006-11-27 14:21:02 -07001492 }
1493 }
Grant Likelyb9272df2006-11-27 14:21:02 -07001494}
1495
1496static void
1497mpc52xx_uart_of_enumerate(void)
1498{
John Rigby406b7d42008-01-17 08:37:25 +11001499 static int enum_done;
Grant Likelyb9272df2006-11-27 14:21:02 -07001500 struct device_node *np;
John Rigby25ae3a02008-01-29 04:28:56 +11001501 const struct of_device_id *match;
Grant Likelyb9272df2006-11-27 14:21:02 -07001502 int i;
1503
1504 if (enum_done)
1505 return;
1506
Grant Likely3b5ebf82009-02-03 12:30:25 -07001507 /* Assign index to each PSC in device tree */
1508 for_each_matching_node(np, mpc52xx_uart_of_match) {
John Rigby25ae3a02008-01-29 04:28:56 +11001509 match = of_match_node(mpc52xx_uart_of_match, np);
John Rigby25ae3a02008-01-29 04:28:56 +11001510 psc_ops = match->data;
Grant Likely3b5ebf82009-02-03 12:30:25 -07001511 mpc52xx_uart_of_assign(np);
Grant Likelyb9272df2006-11-27 14:21:02 -07001512 }
1513
1514 enum_done = 1;
1515
1516 for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1517 if (mpc52xx_uart_nodes[i])
1518 pr_debug("%s assigned to ttyPSC%x\n",
John Rigby406b7d42008-01-17 08:37:25 +11001519 mpc52xx_uart_nodes[i]->full_name, i);
Grant Likelyb9272df2006-11-27 14:21:02 -07001520 }
1521}
1522
1523MODULE_DEVICE_TABLE(of, mpc52xx_uart_of_match);
1524
Grant Likely793218d2011-02-22 21:10:26 -07001525static struct platform_driver mpc52xx_uart_of_driver = {
Grant Likelyb9272df2006-11-27 14:21:02 -07001526 .probe = mpc52xx_uart_of_probe,
1527 .remove = mpc52xx_uart_of_remove,
1528#ifdef CONFIG_PM
1529 .suspend = mpc52xx_uart_of_suspend,
1530 .resume = mpc52xx_uart_of_resume,
1531#endif
Grant Likely40182942010-04-13 16:13:02 -07001532 .driver = {
1533 .name = "mpc52xx-psc-uart",
1534 .owner = THIS_MODULE,
1535 .of_match_table = mpc52xx_uart_of_match,
Grant Likelyb9272df2006-11-27 14:21:02 -07001536 },
1537};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539
1540/* ======================================================================== */
1541/* Module */
1542/* ======================================================================== */
1543
1544static int __init
1545mpc52xx_uart_init(void)
1546{
1547 int ret;
1548
Grant Likelyb9272df2006-11-27 14:21:02 -07001549 printk(KERN_INFO "Serial: MPC52xx PSC UART driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
John Rigby406b7d42008-01-17 08:37:25 +11001551 ret = uart_register_driver(&mpc52xx_uart_driver);
1552 if (ret) {
Grant Likelyb9272df2006-11-27 14:21:02 -07001553 printk(KERN_ERR "%s: uart_register_driver failed (%i)\n",
1554 __FILE__, ret);
1555 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557
Grant Likelyb9272df2006-11-27 14:21:02 -07001558 mpc52xx_uart_of_enumerate();
1559
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001560 /*
1561 * Map the PSC FIFO Controller and init if on MPC512x.
1562 */
Anatolij Gustschine6114fa2010-05-05 00:18:59 +02001563 if (psc_ops && psc_ops->fifoc_init) {
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001564 ret = psc_ops->fifoc_init();
1565 if (ret)
Wei Yongjun9bcc3272013-04-25 15:34:27 +08001566 goto err_init;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001567 }
1568
Grant Likely793218d2011-02-22 21:10:26 -07001569 ret = platform_driver_register(&mpc52xx_uart_of_driver);
Grant Likelyb9272df2006-11-27 14:21:02 -07001570 if (ret) {
Grant Likely793218d2011-02-22 21:10:26 -07001571 printk(KERN_ERR "%s: platform_driver_register failed (%i)\n",
Grant Likelyb9272df2006-11-27 14:21:02 -07001572 __FILE__, ret);
Wei Yongjun9bcc3272013-04-25 15:34:27 +08001573 goto err_reg;
Grant Likelyb9272df2006-11-27 14:21:02 -07001574 }
Grant Likelyb9272df2006-11-27 14:21:02 -07001575
1576 return 0;
Wei Yongjun9bcc3272013-04-25 15:34:27 +08001577err_reg:
1578 if (psc_ops && psc_ops->fifoc_uninit)
1579 psc_ops->fifoc_uninit();
1580err_init:
1581 uart_unregister_driver(&mpc52xx_uart_driver);
1582 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
1584
1585static void __exit
1586mpc52xx_uart_exit(void)
1587{
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001588 if (psc_ops->fifoc_uninit)
1589 psc_ops->fifoc_uninit();
1590
Grant Likely793218d2011-02-22 21:10:26 -07001591 platform_driver_unregister(&mpc52xx_uart_of_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 uart_unregister_driver(&mpc52xx_uart_driver);
1593}
1594
1595
1596module_init(mpc52xx_uart_init);
1597module_exit(mpc52xx_uart_exit);
1598
1599MODULE_AUTHOR("Sylvain Munaut <tnt@246tNt.com>");
1600MODULE_DESCRIPTION("Freescale MPC52xx PSC UART");
1601MODULE_LICENSE("GPL");