blob: 41de374d9784384ece372732e972a3de7c52e84f [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);
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200110 int (*clock_alloc)(struct uart_port *port);
111 void (*clock_relse)(struct uart_port *port);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700112 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 Facchinetti2574b272013-05-24 20:24:58 +0200117 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 Rigby599f0302008-01-29 04:28:55 +1100126};
127
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000128/* setting the prescaler and divisor reg is common for all chips */
129static 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 Facchinetti2574b272013-05-24 20:24:58 +0200138static u16 mpc52xx_psc_get_status(struct uart_port *port)
139{
140 return in_be16(&PSC(port)->mpc52xx_psc_status);
141}
142
143static u8 mpc52xx_psc_get_ipcr(struct uart_port *port)
144{
145 return in_8(&PSC(port)->mpc52xx_psc_ipcr);
146}
147
148static void mpc52xx_psc_command(struct uart_port *port, u8 cmd)
149{
150 out_8(&PSC(port)->command, cmd);
151}
152
153static 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
160static 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
168static 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
181static void mpc52xx_psc_set_sicr(struct uart_port *port, u32 val)
182{
183 out_be32(&PSC(port)->sicr, val);
184}
185
186static void mpc52xx_psc_set_imr(struct uart_port *port, u16 val)
187{
188 out_be16(&PSC(port)->mpc52xx_psc_imr, val);
189}
190
191static 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 Rigby25ae3a02008-01-29 04:28:56 +1100197#ifdef CONFIG_PPC_MPC52xx
John Rigby599f0302008-01-29 04:28:55 +1100198#define FIFO_52xx(port) ((struct mpc52xx_psc_fifo __iomem *)(PSC(port)+1))
199static 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 Rigby599f0302008-01-29 04:28:55 +1100204 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
213static 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
219static 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
226static 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
233static 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
240static int mpc52xx_psc_tx_empty(struct uart_port *port)
241{
Uwe Kleine-König7d07ada2015-07-27 18:09:33 +0200242 u16 sts = in_be16(&PSC(port)->mpc52xx_psc_status);
243
244 return (sts & MPC52xx_PSC_SR_TXEMP) ? TIOCSER_TEMT : 0;
John Rigby599f0302008-01-29 04:28:55 +1100245}
246
247static void mpc52xx_psc_start_tx(struct uart_port *port)
248{
249 port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY;
250 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
251}
252
253static void mpc52xx_psc_stop_tx(struct uart_port *port)
254{
255 port->read_status_mask &= ~MPC52xx_PSC_IMR_TXRDY;
256 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
257}
258
259static void mpc52xx_psc_stop_rx(struct uart_port *port)
260{
261 port->read_status_mask &= ~MPC52xx_PSC_IMR_RXRDY;
262 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
263}
264
265static void mpc52xx_psc_rx_clr_irq(struct uart_port *port)
266{
267}
268
269static void mpc52xx_psc_tx_clr_irq(struct uart_port *port)
270{
271}
272
273static void mpc52xx_psc_write_char(struct uart_port *port, unsigned char c)
274{
275 out_8(&PSC(port)->mpc52xx_psc_buffer_8, c);
276}
277
278static unsigned char mpc52xx_psc_read_char(struct uart_port *port)
279{
280 return in_8(&PSC(port)->mpc52xx_psc_buffer_8);
281}
282
283static void mpc52xx_psc_cw_disable_ints(struct uart_port *port)
284{
285 out_be16(&PSC(port)->mpc52xx_psc_imr, 0);
286}
287
288static void mpc52xx_psc_cw_restore_ints(struct uart_port *port)
289{
290 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
291}
292
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000293static unsigned int mpc5200_psc_set_baudrate(struct uart_port *port,
294 struct ktermios *new,
295 struct ktermios *old)
John Rigby599f0302008-01-29 04:28:55 +1100296{
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000297 unsigned int baud;
298 unsigned int divisor;
299
300 /* The 5200 has a fixed /32 prescaler, uartclk contains the ipb freq */
301 baud = uart_get_baud_rate(port, new, old,
302 port->uartclk / (32 * 0xffff) + 1,
303 port->uartclk / 32);
304 divisor = (port->uartclk + 16 * baud) / (32 * baud);
305
306 /* enable the /32 prescaler and set the divisor */
307 mpc52xx_set_divisor(PSC(port), 0xdd00, divisor);
308 return baud;
309}
310
311static unsigned int mpc5200b_psc_set_baudrate(struct uart_port *port,
312 struct ktermios *new,
313 struct ktermios *old)
314{
315 unsigned int baud;
316 unsigned int divisor;
317 u16 prescaler;
318
319 /* The 5200B has a selectable /4 or /32 prescaler, uartclk contains the
320 * ipb freq */
321 baud = uart_get_baud_rate(port, new, old,
322 port->uartclk / (32 * 0xffff) + 1,
323 port->uartclk / 4);
324 divisor = (port->uartclk + 2 * baud) / (4 * baud);
325
Frank Benkerte0955ac2012-03-05 16:14:29 +0100326 /* select the proper prescaler and set the divisor
327 * prefer high prescaler for more tolerance on low baudrates */
328 if (divisor > 0xffff || baud <= 115200) {
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000329 divisor = (divisor + 4) / 8;
330 prescaler = 0xdd00; /* /32 */
331 } else
332 prescaler = 0xff00; /* /4 */
333 mpc52xx_set_divisor(PSC(port), prescaler, divisor);
334 return baud;
John Rigby599f0302008-01-29 04:28:55 +1100335}
336
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700337static void mpc52xx_psc_get_irq(struct uart_port *port, struct device_node *np)
338{
Yong Zhang9cfb5c02011-09-22 16:59:15 +0800339 port->irqflags = 0;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700340 port->irq = irq_of_parse_and_map(np, 0);
341}
342
343/* 52xx specific interrupt handler. The caller holds the port lock */
344static irqreturn_t mpc52xx_psc_handle_irq(struct uart_port *port)
345{
346 return mpc5xxx_uart_process_int(port);
347}
348
John Rigby599f0302008-01-29 04:28:55 +1100349static struct psc_ops mpc52xx_psc_ops = {
350 .fifo_init = mpc52xx_psc_fifo_init,
351 .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy,
352 .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy,
353 .rx_rdy = mpc52xx_psc_rx_rdy,
354 .tx_rdy = mpc52xx_psc_tx_rdy,
355 .tx_empty = mpc52xx_psc_tx_empty,
356 .stop_rx = mpc52xx_psc_stop_rx,
357 .start_tx = mpc52xx_psc_start_tx,
358 .stop_tx = mpc52xx_psc_stop_tx,
359 .rx_clr_irq = mpc52xx_psc_rx_clr_irq,
360 .tx_clr_irq = mpc52xx_psc_tx_clr_irq,
361 .write_char = mpc52xx_psc_write_char,
362 .read_char = mpc52xx_psc_read_char,
363 .cw_disable_ints = mpc52xx_psc_cw_disable_ints,
364 .cw_restore_ints = mpc52xx_psc_cw_restore_ints,
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000365 .set_baudrate = mpc5200_psc_set_baudrate,
366 .get_irq = mpc52xx_psc_get_irq,
367 .handle_irq = mpc52xx_psc_handle_irq,
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200368 .get_status = mpc52xx_psc_get_status,
369 .get_ipcr = mpc52xx_psc_get_ipcr,
370 .command = mpc52xx_psc_command,
371 .set_mode = mpc52xx_psc_set_mode,
372 .set_rts = mpc52xx_psc_set_rts,
373 .enable_ms = mpc52xx_psc_enable_ms,
374 .set_sicr = mpc52xx_psc_set_sicr,
375 .set_imr = mpc52xx_psc_set_imr,
376 .get_mr1 = mpc52xx_psc_get_mr1,
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000377};
378
379static struct psc_ops mpc5200b_psc_ops = {
380 .fifo_init = mpc52xx_psc_fifo_init,
381 .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy,
382 .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy,
383 .rx_rdy = mpc52xx_psc_rx_rdy,
384 .tx_rdy = mpc52xx_psc_tx_rdy,
385 .tx_empty = mpc52xx_psc_tx_empty,
386 .stop_rx = mpc52xx_psc_stop_rx,
387 .start_tx = mpc52xx_psc_start_tx,
388 .stop_tx = mpc52xx_psc_stop_tx,
389 .rx_clr_irq = mpc52xx_psc_rx_clr_irq,
390 .tx_clr_irq = mpc52xx_psc_tx_clr_irq,
391 .write_char = mpc52xx_psc_write_char,
392 .read_char = mpc52xx_psc_read_char,
393 .cw_disable_ints = mpc52xx_psc_cw_disable_ints,
394 .cw_restore_ints = mpc52xx_psc_cw_restore_ints,
395 .set_baudrate = mpc5200b_psc_set_baudrate,
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700396 .get_irq = mpc52xx_psc_get_irq,
397 .handle_irq = mpc52xx_psc_handle_irq,
Matteo Facchinetti2574b272013-05-24 20:24:58 +0200398 .get_status = mpc52xx_psc_get_status,
399 .get_ipcr = mpc52xx_psc_get_ipcr,
400 .command = mpc52xx_psc_command,
401 .set_mode = mpc52xx_psc_set_mode,
402 .set_rts = mpc52xx_psc_set_rts,
403 .enable_ms = mpc52xx_psc_enable_ms,
404 .set_sicr = mpc52xx_psc_set_sicr,
405 .set_imr = mpc52xx_psc_set_imr,
406 .get_mr1 = mpc52xx_psc_get_mr1,
John Rigby599f0302008-01-29 04:28:55 +1100407};
408
Valentin Rothberg5b84c962015-04-12 17:14:45 +0200409#endif /* CONFIG_PPC_MPC52xx */
John Rigby25ae3a02008-01-29 04:28:56 +1100410
411#ifdef CONFIG_PPC_MPC512x
412#define FIFO_512x(port) ((struct mpc512x_psc_fifo __iomem *)(PSC(port)+1))
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700413
414/* PSC FIFO Controller for mpc512x */
415struct psc_fifoc {
416 u32 fifoc_cmd;
417 u32 fifoc_int;
418 u32 fifoc_dma;
419 u32 fifoc_axe;
420 u32 fifoc_debug;
421};
422
423static struct psc_fifoc __iomem *psc_fifoc;
424static unsigned int psc_fifoc_irq;
Gerhard Sittigcb1ea812013-11-30 23:51:30 +0100425static struct clk *psc_fifoc_clk;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700426
John Rigby25ae3a02008-01-29 04:28:56 +1100427static void mpc512x_psc_fifo_init(struct uart_port *port)
428{
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700429 /* /32 prescaler */
430 out_be16(&PSC(port)->mpc52xx_psc_clock_select, 0xdd00);
431
John Rigby25ae3a02008-01-29 04:28:56 +1100432 out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE);
433 out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
434 out_be32(&FIFO_512x(port)->txalarm, 1);
435 out_be32(&FIFO_512x(port)->tximr, 0);
436
437 out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE);
438 out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
439 out_be32(&FIFO_512x(port)->rxalarm, 1);
440 out_be32(&FIFO_512x(port)->rximr, 0);
441
442 out_be32(&FIFO_512x(port)->tximr, MPC512x_PSC_FIFO_ALARM);
443 out_be32(&FIFO_512x(port)->rximr, MPC512x_PSC_FIFO_ALARM);
444}
445
446static int mpc512x_psc_raw_rx_rdy(struct uart_port *port)
447{
448 return !(in_be32(&FIFO_512x(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY);
449}
450
451static int mpc512x_psc_raw_tx_rdy(struct uart_port *port)
452{
453 return !(in_be32(&FIFO_512x(port)->txsr) & MPC512x_PSC_FIFO_FULL);
454}
455
456static int mpc512x_psc_rx_rdy(struct uart_port *port)
457{
458 return in_be32(&FIFO_512x(port)->rxsr)
459 & in_be32(&FIFO_512x(port)->rximr)
460 & MPC512x_PSC_FIFO_ALARM;
461}
462
463static int mpc512x_psc_tx_rdy(struct uart_port *port)
464{
465 return in_be32(&FIFO_512x(port)->txsr)
466 & in_be32(&FIFO_512x(port)->tximr)
467 & MPC512x_PSC_FIFO_ALARM;
468}
469
470static int mpc512x_psc_tx_empty(struct uart_port *port)
471{
472 return in_be32(&FIFO_512x(port)->txsr)
473 & MPC512x_PSC_FIFO_EMPTY;
474}
475
476static void mpc512x_psc_stop_rx(struct uart_port *port)
477{
478 unsigned long rx_fifo_imr;
479
480 rx_fifo_imr = in_be32(&FIFO_512x(port)->rximr);
481 rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
482 out_be32(&FIFO_512x(port)->rximr, rx_fifo_imr);
483}
484
485static void mpc512x_psc_start_tx(struct uart_port *port)
486{
487 unsigned long tx_fifo_imr;
488
489 tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr);
490 tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM;
491 out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr);
492}
493
494static void mpc512x_psc_stop_tx(struct uart_port *port)
495{
496 unsigned long tx_fifo_imr;
497
498 tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr);
499 tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
500 out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr);
501}
502
503static void mpc512x_psc_rx_clr_irq(struct uart_port *port)
504{
505 out_be32(&FIFO_512x(port)->rxisr, in_be32(&FIFO_512x(port)->rxisr));
506}
507
508static void mpc512x_psc_tx_clr_irq(struct uart_port *port)
509{
510 out_be32(&FIFO_512x(port)->txisr, in_be32(&FIFO_512x(port)->txisr));
511}
512
513static void mpc512x_psc_write_char(struct uart_port *port, unsigned char c)
514{
515 out_8(&FIFO_512x(port)->txdata_8, c);
516}
517
518static unsigned char mpc512x_psc_read_char(struct uart_port *port)
519{
520 return in_8(&FIFO_512x(port)->rxdata_8);
521}
522
523static void mpc512x_psc_cw_disable_ints(struct uart_port *port)
524{
525 port->read_status_mask =
526 in_be32(&FIFO_512x(port)->tximr) << 16 |
527 in_be32(&FIFO_512x(port)->rximr);
528 out_be32(&FIFO_512x(port)->tximr, 0);
529 out_be32(&FIFO_512x(port)->rximr, 0);
530}
531
532static void mpc512x_psc_cw_restore_ints(struct uart_port *port)
533{
534 out_be32(&FIFO_512x(port)->tximr,
535 (port->read_status_mask >> 16) & 0x7f);
536 out_be32(&FIFO_512x(port)->rximr, port->read_status_mask & 0x7f);
537}
538
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000539static unsigned int mpc512x_psc_set_baudrate(struct uart_port *port,
540 struct ktermios *new,
541 struct ktermios *old)
John Rigby25ae3a02008-01-29 04:28:56 +1100542{
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000543 unsigned int baud;
544 unsigned int divisor;
545
546 /*
547 * The "MPC5121e Microcontroller Reference Manual, Rev. 3" says on
548 * pg. 30-10 that the chip supports a /32 and a /10 prescaler.
549 * Furthermore, it states that "After reset, the prescaler by 10
550 * for the UART mode is selected", but the reset register value is
551 * 0x0000 which means a /32 prescaler. This is wrong.
552 *
553 * In reality using /32 prescaler doesn't work, as it is not supported!
554 * Use /16 or /10 prescaler, see "MPC5121e Hardware Design Guide",
555 * Chapter 4.1 PSC in UART Mode.
556 * Calculate with a /16 prescaler here.
557 */
558
559 /* uartclk contains the ips freq */
560 baud = uart_get_baud_rate(port, new, old,
561 port->uartclk / (16 * 0xffff) + 1,
562 port->uartclk / 16);
563 divisor = (port->uartclk + 8 * baud) / (16 * baud);
564
565 /* enable the /16 prescaler and set the divisor */
566 mpc52xx_set_divisor(PSC(port), 0xdd00, divisor);
567 return baud;
John Rigby25ae3a02008-01-29 04:28:56 +1100568}
569
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700570/* Init PSC FIFO Controller */
571static int __init mpc512x_psc_fifoc_init(void)
572{
Gerhard Sittigcb1ea812013-11-30 23:51:30 +0100573 int err;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700574 struct device_node *np;
Gerhard Sittigcb1ea812013-11-30 23:51:30 +0100575 struct clk *clk;
576
577 /* default error code, potentially overwritten by clock calls */
578 err = -ENODEV;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700579
580 np = of_find_compatible_node(NULL, NULL,
581 "fsl,mpc5121-psc-fifo");
582 if (!np) {
583 pr_err("%s: Can't find FIFOC node\n", __func__);
Gerhard Sittigcb1ea812013-11-30 23:51:30 +0100584 goto out_err;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700585 }
586
Gerhard Sittigcb1ea812013-11-30 23:51:30 +0100587 clk = of_clk_get(np, 0);
588 if (IS_ERR(clk)) {
589 /* backwards compat with device trees that lack clock specs */
590 clk = clk_get_sys(np->name, "ipg");
591 }
592 if (IS_ERR(clk)) {
593 pr_err("%s: Can't lookup FIFO clock\n", __func__);
594 err = PTR_ERR(clk);
595 goto out_ofnode_put;
596 }
597 if (clk_prepare_enable(clk)) {
598 pr_err("%s: Can't enable FIFO clock\n", __func__);
599 clk_put(clk);
600 goto out_ofnode_put;
601 }
602 psc_fifoc_clk = clk;
603
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700604 psc_fifoc = of_iomap(np, 0);
605 if (!psc_fifoc) {
606 pr_err("%s: Can't map FIFOC\n", __func__);
Gerhard Sittigcb1ea812013-11-30 23:51:30 +0100607 goto out_clk_disable;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700608 }
609
610 psc_fifoc_irq = irq_of_parse_and_map(np, 0);
Alan Coxd4e33fa2012-01-26 17:44:09 +0000611 if (psc_fifoc_irq == 0) {
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700612 pr_err("%s: Can't get FIFOC irq\n", __func__);
Gerhard Sittigcb1ea812013-11-30 23:51:30 +0100613 goto out_unmap;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700614 }
615
Gerhard Sittigcb1ea812013-11-30 23:51:30 +0100616 of_node_put(np);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700617 return 0;
Gerhard Sittigcb1ea812013-11-30 23:51:30 +0100618
619out_unmap:
620 iounmap(psc_fifoc);
621out_clk_disable:
622 clk_disable_unprepare(psc_fifoc_clk);
623 clk_put(psc_fifoc_clk);
624out_ofnode_put:
625 of_node_put(np);
626out_err:
627 return err;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700628}
629
630static void __exit mpc512x_psc_fifoc_uninit(void)
631{
632 iounmap(psc_fifoc);
Gerhard Sittigcb1ea812013-11-30 23:51:30 +0100633
634 /* disable the clock, errors are not fatal */
635 if (psc_fifoc_clk) {
636 clk_disable_unprepare(psc_fifoc_clk);
637 clk_put(psc_fifoc_clk);
638 psc_fifoc_clk = NULL;
639 }
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700640}
641
642/* 512x specific interrupt handler. The caller holds the port lock */
643static irqreturn_t mpc512x_psc_handle_irq(struct uart_port *port)
644{
645 unsigned long fifoc_int;
646 int psc_num;
647
648 /* Read pending PSC FIFOC interrupts */
649 fifoc_int = in_be32(&psc_fifoc->fifoc_int);
650
651 /* Check if it is an interrupt for this port */
652 psc_num = (port->mapbase & 0xf00) >> 8;
653 if (test_bit(psc_num, &fifoc_int) ||
654 test_bit(psc_num + 16, &fifoc_int))
655 return mpc5xxx_uart_process_int(port);
656
657 return IRQ_NONE;
658}
659
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200660static struct clk *psc_mclk_clk[MPC52xx_PSC_MAXNUM];
Gerhard Sittige149b422013-11-30 23:51:29 +0100661static struct clk *psc_ipg_clk[MPC52xx_PSC_MAXNUM];
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200662
663/* called from within the .request_port() callback (allocation) */
664static int mpc512x_psc_alloc_clock(struct uart_port *port)
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700665{
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700666 int psc_num;
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200667 struct clk *clk;
668 int err;
669
670 psc_num = (port->mapbase & 0xf00) >> 8;
Gerhard Sittige149b422013-11-30 23:51:29 +0100671
672 clk = devm_clk_get(port->dev, "mclk");
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200673 if (IS_ERR(clk)) {
674 dev_err(port->dev, "Failed to get MCLK!\n");
Gerhard Sittige149b422013-11-30 23:51:29 +0100675 err = PTR_ERR(clk);
676 goto out_err;
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200677 }
678 err = clk_prepare_enable(clk);
679 if (err) {
680 dev_err(port->dev, "Failed to enable MCLK!\n");
Gerhard Sittige149b422013-11-30 23:51:29 +0100681 goto out_err;
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200682 }
683 psc_mclk_clk[psc_num] = clk;
Gerhard Sittige149b422013-11-30 23:51:29 +0100684
685 clk = devm_clk_get(port->dev, "ipg");
686 if (IS_ERR(clk)) {
687 dev_err(port->dev, "Failed to get IPG clock!\n");
688 err = PTR_ERR(clk);
689 goto out_err;
690 }
691 err = clk_prepare_enable(clk);
692 if (err) {
693 dev_err(port->dev, "Failed to enable IPG clock!\n");
694 goto out_err;
695 }
696 psc_ipg_clk[psc_num] = clk;
697
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200698 return 0;
Gerhard Sittige149b422013-11-30 23:51:29 +0100699
700out_err:
701 if (psc_mclk_clk[psc_num]) {
702 clk_disable_unprepare(psc_mclk_clk[psc_num]);
703 psc_mclk_clk[psc_num] = NULL;
704 }
705 if (psc_ipg_clk[psc_num]) {
706 clk_disable_unprepare(psc_ipg_clk[psc_num]);
707 psc_ipg_clk[psc_num] = NULL;
708 }
709 return err;
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200710}
711
712/* called from within the .release_port() callback (release) */
713static void mpc512x_psc_relse_clock(struct uart_port *port)
714{
715 int psc_num;
716 struct clk *clk;
717
718 psc_num = (port->mapbase & 0xf00) >> 8;
719 clk = psc_mclk_clk[psc_num];
720 if (clk) {
721 clk_disable_unprepare(clk);
722 psc_mclk_clk[psc_num] = NULL;
723 }
Gerhard Sittige149b422013-11-30 23:51:29 +0100724 if (psc_ipg_clk[psc_num]) {
725 clk_disable_unprepare(psc_ipg_clk[psc_num]);
726 psc_ipg_clk[psc_num] = NULL;
727 }
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200728}
729
730/* implementation of the .clock() callback (enable/disable) */
731static int mpc512x_psc_endis_clock(struct uart_port *port, int enable)
732{
733 int psc_num;
734 struct clk *psc_clk;
735 int ret;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700736
737 if (uart_console(port))
738 return 0;
739
740 psc_num = (port->mapbase & 0xf00) >> 8;
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200741 psc_clk = psc_mclk_clk[psc_num];
742 if (!psc_clk) {
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700743 dev_err(port->dev, "Failed to get PSC clock entry!\n");
744 return -ENODEV;
745 }
746
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200747 dev_dbg(port->dev, "mclk %sable\n", enable ? "en" : "dis");
748 if (enable) {
749 ret = clk_enable(psc_clk);
750 if (ret)
751 dev_err(port->dev, "Failed to enable MCLK!\n");
752 return ret;
753 } else {
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700754 clk_disable(psc_clk);
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200755 return 0;
756 }
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700757}
758
759static void mpc512x_psc_get_irq(struct uart_port *port, struct device_node *np)
760{
761 port->irqflags = IRQF_SHARED;
762 port->irq = psc_fifoc_irq;
763}
Matteo Facchinetti1f48c492013-05-24 20:24:59 +0200764#endif
765
766#ifdef CONFIG_PPC_MPC512x
767
768#define PSC_5125(port) ((struct mpc5125_psc __iomem *)((port)->membase))
769#define FIFO_5125(port) ((struct mpc512x_psc_fifo __iomem *)(PSC_5125(port)+1))
770
771static void mpc5125_psc_fifo_init(struct uart_port *port)
772{
773 /* /32 prescaler */
774 out_8(&PSC_5125(port)->mpc52xx_psc_clock_select, 0xdd);
775
776 out_be32(&FIFO_5125(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE);
777 out_be32(&FIFO_5125(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
778 out_be32(&FIFO_5125(port)->txalarm, 1);
779 out_be32(&FIFO_5125(port)->tximr, 0);
780
781 out_be32(&FIFO_5125(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE);
782 out_be32(&FIFO_5125(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
783 out_be32(&FIFO_5125(port)->rxalarm, 1);
784 out_be32(&FIFO_5125(port)->rximr, 0);
785
786 out_be32(&FIFO_5125(port)->tximr, MPC512x_PSC_FIFO_ALARM);
787 out_be32(&FIFO_5125(port)->rximr, MPC512x_PSC_FIFO_ALARM);
788}
789
790static int mpc5125_psc_raw_rx_rdy(struct uart_port *port)
791{
792 return !(in_be32(&FIFO_5125(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY);
793}
794
795static int mpc5125_psc_raw_tx_rdy(struct uart_port *port)
796{
797 return !(in_be32(&FIFO_5125(port)->txsr) & MPC512x_PSC_FIFO_FULL);
798}
799
800static int mpc5125_psc_rx_rdy(struct uart_port *port)
801{
802 return in_be32(&FIFO_5125(port)->rxsr) &
803 in_be32(&FIFO_5125(port)->rximr) & MPC512x_PSC_FIFO_ALARM;
804}
805
806static int mpc5125_psc_tx_rdy(struct uart_port *port)
807{
808 return in_be32(&FIFO_5125(port)->txsr) &
809 in_be32(&FIFO_5125(port)->tximr) & MPC512x_PSC_FIFO_ALARM;
810}
811
812static int mpc5125_psc_tx_empty(struct uart_port *port)
813{
814 return in_be32(&FIFO_5125(port)->txsr) & MPC512x_PSC_FIFO_EMPTY;
815}
816
817static void mpc5125_psc_stop_rx(struct uart_port *port)
818{
819 unsigned long rx_fifo_imr;
820
821 rx_fifo_imr = in_be32(&FIFO_5125(port)->rximr);
822 rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
823 out_be32(&FIFO_5125(port)->rximr, rx_fifo_imr);
824}
825
826static void mpc5125_psc_start_tx(struct uart_port *port)
827{
828 unsigned long tx_fifo_imr;
829
830 tx_fifo_imr = in_be32(&FIFO_5125(port)->tximr);
831 tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM;
832 out_be32(&FIFO_5125(port)->tximr, tx_fifo_imr);
833}
834
835static void mpc5125_psc_stop_tx(struct uart_port *port)
836{
837 unsigned long tx_fifo_imr;
838
839 tx_fifo_imr = in_be32(&FIFO_5125(port)->tximr);
840 tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
841 out_be32(&FIFO_5125(port)->tximr, tx_fifo_imr);
842}
843
844static void mpc5125_psc_rx_clr_irq(struct uart_port *port)
845{
846 out_be32(&FIFO_5125(port)->rxisr, in_be32(&FIFO_5125(port)->rxisr));
847}
848
849static void mpc5125_psc_tx_clr_irq(struct uart_port *port)
850{
851 out_be32(&FIFO_5125(port)->txisr, in_be32(&FIFO_5125(port)->txisr));
852}
853
854static void mpc5125_psc_write_char(struct uart_port *port, unsigned char c)
855{
856 out_8(&FIFO_5125(port)->txdata_8, c);
857}
858
859static unsigned char mpc5125_psc_read_char(struct uart_port *port)
860{
861 return in_8(&FIFO_5125(port)->rxdata_8);
862}
863
864static void mpc5125_psc_cw_disable_ints(struct uart_port *port)
865{
866 port->read_status_mask =
867 in_be32(&FIFO_5125(port)->tximr) << 16 |
868 in_be32(&FIFO_5125(port)->rximr);
869 out_be32(&FIFO_5125(port)->tximr, 0);
870 out_be32(&FIFO_5125(port)->rximr, 0);
871}
872
873static void mpc5125_psc_cw_restore_ints(struct uart_port *port)
874{
875 out_be32(&FIFO_5125(port)->tximr,
876 (port->read_status_mask >> 16) & 0x7f);
877 out_be32(&FIFO_5125(port)->rximr, port->read_status_mask & 0x7f);
878}
879
880static inline void mpc5125_set_divisor(struct mpc5125_psc __iomem *psc,
881 u8 prescaler, unsigned int divisor)
882{
883 /* select prescaler */
884 out_8(&psc->mpc52xx_psc_clock_select, prescaler);
885 out_8(&psc->ctur, divisor >> 8);
886 out_8(&psc->ctlr, divisor & 0xff);
887}
888
889static unsigned int mpc5125_psc_set_baudrate(struct uart_port *port,
890 struct ktermios *new,
891 struct ktermios *old)
892{
893 unsigned int baud;
894 unsigned int divisor;
895
896 /*
897 * Calculate with a /16 prescaler here.
898 */
899
900 /* uartclk contains the ips freq */
901 baud = uart_get_baud_rate(port, new, old,
902 port->uartclk / (16 * 0xffff) + 1,
903 port->uartclk / 16);
904 divisor = (port->uartclk + 8 * baud) / (16 * baud);
905
906 /* enable the /16 prescaler and set the divisor */
907 mpc5125_set_divisor(PSC_5125(port), 0xdd, divisor);
908 return baud;
909}
910
911/*
912 * MPC5125 have compatible PSC FIFO Controller.
913 * Special init not needed.
914 */
915static u16 mpc5125_psc_get_status(struct uart_port *port)
916{
917 return in_be16(&PSC_5125(port)->mpc52xx_psc_status);
918}
919
920static u8 mpc5125_psc_get_ipcr(struct uart_port *port)
921{
922 return in_8(&PSC_5125(port)->mpc52xx_psc_ipcr);
923}
924
925static void mpc5125_psc_command(struct uart_port *port, u8 cmd)
926{
927 out_8(&PSC_5125(port)->command, cmd);
928}
929
930static void mpc5125_psc_set_mode(struct uart_port *port, u8 mr1, u8 mr2)
931{
932 out_8(&PSC_5125(port)->mr1, mr1);
933 out_8(&PSC_5125(port)->mr2, mr2);
934}
935
936static void mpc5125_psc_set_rts(struct uart_port *port, int state)
937{
938 if (state & TIOCM_RTS)
939 out_8(&PSC_5125(port)->op1, MPC52xx_PSC_OP_RTS);
940 else
941 out_8(&PSC_5125(port)->op0, MPC52xx_PSC_OP_RTS);
942}
943
944static void mpc5125_psc_enable_ms(struct uart_port *port)
945{
946 struct mpc5125_psc __iomem *psc = PSC_5125(port);
947
948 /* clear D_*-bits by reading them */
949 in_8(&psc->mpc52xx_psc_ipcr);
950 /* enable CTS and DCD as IPC interrupts */
951 out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD);
952
953 port->read_status_mask |= MPC52xx_PSC_IMR_IPC;
954 out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
955}
956
957static void mpc5125_psc_set_sicr(struct uart_port *port, u32 val)
958{
959 out_be32(&PSC_5125(port)->sicr, val);
960}
961
962static void mpc5125_psc_set_imr(struct uart_port *port, u16 val)
963{
964 out_be16(&PSC_5125(port)->mpc52xx_psc_imr, val);
965}
966
967static u8 mpc5125_psc_get_mr1(struct uart_port *port)
968{
969 return in_8(&PSC_5125(port)->mr1);
970}
971
972static struct psc_ops mpc5125_psc_ops = {
973 .fifo_init = mpc5125_psc_fifo_init,
974 .raw_rx_rdy = mpc5125_psc_raw_rx_rdy,
975 .raw_tx_rdy = mpc5125_psc_raw_tx_rdy,
976 .rx_rdy = mpc5125_psc_rx_rdy,
977 .tx_rdy = mpc5125_psc_tx_rdy,
978 .tx_empty = mpc5125_psc_tx_empty,
979 .stop_rx = mpc5125_psc_stop_rx,
980 .start_tx = mpc5125_psc_start_tx,
981 .stop_tx = mpc5125_psc_stop_tx,
982 .rx_clr_irq = mpc5125_psc_rx_clr_irq,
983 .tx_clr_irq = mpc5125_psc_tx_clr_irq,
984 .write_char = mpc5125_psc_write_char,
985 .read_char = mpc5125_psc_read_char,
986 .cw_disable_ints = mpc5125_psc_cw_disable_ints,
987 .cw_restore_ints = mpc5125_psc_cw_restore_ints,
988 .set_baudrate = mpc5125_psc_set_baudrate,
Gerhard Sittig2d30cca2013-08-06 22:43:42 +0200989 .clock_alloc = mpc512x_psc_alloc_clock,
990 .clock_relse = mpc512x_psc_relse_clock,
991 .clock = mpc512x_psc_endis_clock,
Matteo Facchinetti1f48c492013-05-24 20:24:59 +0200992 .fifoc_init = mpc512x_psc_fifoc_init,
993 .fifoc_uninit = mpc512x_psc_fifoc_uninit,
994 .get_irq = mpc512x_psc_get_irq,
995 .handle_irq = mpc512x_psc_handle_irq,
996 .get_status = mpc5125_psc_get_status,
997 .get_ipcr = mpc5125_psc_get_ipcr,
998 .command = mpc5125_psc_command,
999 .set_mode = mpc5125_psc_set_mode,
1000 .set_rts = mpc5125_psc_set_rts,
1001 .enable_ms = mpc5125_psc_enable_ms,
1002 .set_sicr = mpc5125_psc_set_sicr,
1003 .set_imr = mpc5125_psc_set_imr,
1004 .get_mr1 = mpc5125_psc_get_mr1,
1005};
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001006
John Rigby25ae3a02008-01-29 04:28:56 +11001007static struct psc_ops mpc512x_psc_ops = {
1008 .fifo_init = mpc512x_psc_fifo_init,
1009 .raw_rx_rdy = mpc512x_psc_raw_rx_rdy,
1010 .raw_tx_rdy = mpc512x_psc_raw_tx_rdy,
1011 .rx_rdy = mpc512x_psc_rx_rdy,
1012 .tx_rdy = mpc512x_psc_tx_rdy,
1013 .tx_empty = mpc512x_psc_tx_empty,
1014 .stop_rx = mpc512x_psc_stop_rx,
1015 .start_tx = mpc512x_psc_start_tx,
1016 .stop_tx = mpc512x_psc_stop_tx,
1017 .rx_clr_irq = mpc512x_psc_rx_clr_irq,
1018 .tx_clr_irq = mpc512x_psc_tx_clr_irq,
1019 .write_char = mpc512x_psc_write_char,
1020 .read_char = mpc512x_psc_read_char,
1021 .cw_disable_ints = mpc512x_psc_cw_disable_ints,
1022 .cw_restore_ints = mpc512x_psc_cw_restore_ints,
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001023 .set_baudrate = mpc512x_psc_set_baudrate,
Gerhard Sittig2d30cca2013-08-06 22:43:42 +02001024 .clock_alloc = mpc512x_psc_alloc_clock,
1025 .clock_relse = mpc512x_psc_relse_clock,
1026 .clock = mpc512x_psc_endis_clock,
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001027 .fifoc_init = mpc512x_psc_fifoc_init,
1028 .fifoc_uninit = mpc512x_psc_fifoc_uninit,
1029 .get_irq = mpc512x_psc_get_irq,
1030 .handle_irq = mpc512x_psc_handle_irq,
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001031 .get_status = mpc52xx_psc_get_status,
1032 .get_ipcr = mpc52xx_psc_get_ipcr,
1033 .command = mpc52xx_psc_command,
1034 .set_mode = mpc52xx_psc_set_mode,
1035 .set_rts = mpc52xx_psc_set_rts,
1036 .enable_ms = mpc52xx_psc_enable_ms,
1037 .set_sicr = mpc52xx_psc_set_sicr,
1038 .set_imr = mpc52xx_psc_set_imr,
1039 .get_mr1 = mpc52xx_psc_get_mr1,
John Rigby25ae3a02008-01-29 04:28:56 +11001040};
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001041#endif /* CONFIG_PPC_MPC512x */
1042
John Rigby25ae3a02008-01-29 04:28:56 +11001043
Uwe Kleine-König76d28e42012-05-21 21:57:39 +02001044static const struct psc_ops *psc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046/* ======================================================================== */
1047/* UART operations */
1048/* ======================================================================== */
1049
Grant Likely9b9129e2006-11-27 14:21:01 -07001050static unsigned int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051mpc52xx_uart_tx_empty(struct uart_port *port)
1052{
John Rigby599f0302008-01-29 04:28:55 +11001053 return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Grant Likely9b9129e2006-11-27 14:21:01 -07001056static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
1058{
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001059 psc_ops->set_rts(port, mctrl & TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060}
1061
Grant Likely9b9129e2006-11-27 14:21:01 -07001062static unsigned int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063mpc52xx_uart_get_mctrl(struct uart_port *port)
1064{
Wolfram Sangaec739e2008-12-21 02:54:32 -07001065 unsigned int ret = TIOCM_DSR;
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001066 u8 status = psc_ops->get_ipcr(port);
Wolfram Sangaec739e2008-12-21 02:54:32 -07001067
1068 if (!(status & MPC52xx_PSC_CTS))
1069 ret |= TIOCM_CTS;
1070 if (!(status & MPC52xx_PSC_DCD))
1071 ret |= TIOCM_CAR;
1072
1073 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
Grant Likely9b9129e2006-11-27 14:21:01 -07001076static void
Russell Kingb129a8c2005-08-31 10:12:14 +01001077mpc52xx_uart_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 /* port->lock taken by caller */
John Rigby599f0302008-01-29 04:28:55 +11001080 psc_ops->stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
Grant Likely9b9129e2006-11-27 14:21:01 -07001083static void
Russell Kingb129a8c2005-08-31 10:12:14 +01001084mpc52xx_uart_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 /* port->lock taken by caller */
John Rigby599f0302008-01-29 04:28:55 +11001087 psc_ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
Grant Likely9b9129e2006-11-27 14:21:01 -07001090static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091mpc52xx_uart_stop_rx(struct uart_port *port)
1092{
1093 /* port->lock taken by caller */
John Rigby599f0302008-01-29 04:28:55 +11001094 psc_ops->stop_rx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
1096
1097static void
1098mpc52xx_uart_enable_ms(struct uart_port *port)
1099{
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001100 psc_ops->enable_ms(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
1103static void
1104mpc52xx_uart_break_ctl(struct uart_port *port, int ctl)
1105{
1106 unsigned long flags;
1107 spin_lock_irqsave(&port->lock, flags);
1108
John Rigby406b7d42008-01-17 08:37:25 +11001109 if (ctl == -1)
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001110 psc_ops->command(port, MPC52xx_PSC_START_BRK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 else
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001112 psc_ops->command(port, MPC52xx_PSC_STOP_BRK);
Grant Likely9b9129e2006-11-27 14:21:01 -07001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 spin_unlock_irqrestore(&port->lock, flags);
1115}
1116
1117static int
1118mpc52xx_uart_startup(struct uart_port *port)
1119{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 int ret;
1121
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001122 if (psc_ops->clock) {
1123 ret = psc_ops->clock(port, 1);
1124 if (ret)
1125 return ret;
1126 }
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 /* Request IRQ */
1129 ret = request_irq(port->irq, mpc52xx_uart_int,
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001130 port->irqflags, "mpc52xx_psc_uart", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (ret)
1132 return ret;
1133
1134 /* Reset/activate the port, clear and enable interrupts */
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001135 psc_ops->command(port, MPC52xx_PSC_RST_RX);
1136 psc_ops->command(port, MPC52xx_PSC_RST_TX);
Grant Likely9b9129e2006-11-27 14:21:01 -07001137
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001138 psc_ops->set_sicr(port, 0); /* UART mode DCD ignored */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
John Rigby599f0302008-01-29 04:28:55 +11001140 psc_ops->fifo_init(port);
Grant Likely9b9129e2006-11-27 14:21:01 -07001141
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001142 psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
1143 psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
Grant Likely9b9129e2006-11-27 14:21:01 -07001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return 0;
1146}
1147
1148static void
1149mpc52xx_uart_shutdown(struct uart_port *port)
1150{
Grant Likelya3481192007-05-07 01:38:51 +10001151 /* Shut down the port. Leave TX active if on a console port */
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001152 psc_ops->command(port, MPC52xx_PSC_RST_RX);
Grant Likelya3481192007-05-07 01:38:51 +10001153 if (!uart_console(port))
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001154 psc_ops->command(port, MPC52xx_PSC_RST_TX);
Grant Likely9b9129e2006-11-27 14:21:01 -07001155
1156 port->read_status_mask = 0;
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001157 psc_ops->set_imr(port, port->read_status_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001159 if (psc_ops->clock)
1160 psc_ops->clock(port, 0);
1161
Matteo Facchinetti8a29dfb2013-06-12 09:21:42 +02001162 /* Disable interrupt */
1163 psc_ops->cw_disable_ints(port);
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 /* Release interrupt */
1166 free_irq(port->irq, port);
1167}
1168
Grant Likely9b9129e2006-11-27 14:21:01 -07001169static void
Alan Cox606d0992006-12-08 02:38:45 -08001170mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new,
John Rigby406b7d42008-01-17 08:37:25 +11001171 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 unsigned long flags;
1174 unsigned char mr1, mr2;
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001175 unsigned int j;
1176 unsigned int baud;
Grant Likely9b9129e2006-11-27 14:21:01 -07001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 /* Prepare what we're gonna write */
1179 mr1 = 0;
Grant Likely9b9129e2006-11-27 14:21:01 -07001180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 switch (new->c_cflag & CSIZE) {
John Rigby406b7d42008-01-17 08:37:25 +11001182 case CS5: mr1 |= MPC52xx_PSC_MODE_5_BITS;
1183 break;
1184 case CS6: mr1 |= MPC52xx_PSC_MODE_6_BITS;
1185 break;
1186 case CS7: mr1 |= MPC52xx_PSC_MODE_7_BITS;
1187 break;
1188 case CS8:
1189 default: mr1 |= MPC52xx_PSC_MODE_8_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
1191
1192 if (new->c_cflag & PARENB) {
Wolfram Sangd3dec962012-08-27 16:03:14 +02001193 if (new->c_cflag & CMSPAR)
1194 mr1 |= MPC52xx_PSC_MODE_PARFORCE;
1195
1196 /* With CMSPAR, PARODD also means high parity (same as termios) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 mr1 |= (new->c_cflag & PARODD) ?
1198 MPC52xx_PSC_MODE_PARODD : MPC52xx_PSC_MODE_PAREVEN;
Wolfram Sangd3dec962012-08-27 16:03:14 +02001199 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 mr1 |= MPC52xx_PSC_MODE_PARNONE;
Wolfram Sangd3dec962012-08-27 16:03:14 +02001201 }
Grant Likely9b9129e2006-11-27 14:21:01 -07001202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 mr2 = 0;
1204
1205 if (new->c_cflag & CSTOPB)
1206 mr2 |= MPC52xx_PSC_MODE_TWO_STOP;
1207 else
1208 mr2 |= ((new->c_cflag & CSIZE) == CS5) ?
1209 MPC52xx_PSC_MODE_ONE_STOP_5_BITS :
1210 MPC52xx_PSC_MODE_ONE_STOP;
1211
Wolfram Sangaec739e2008-12-21 02:54:32 -07001212 if (new->c_cflag & CRTSCTS) {
1213 mr1 |= MPC52xx_PSC_MODE_RXRTS;
1214 mr2 |= MPC52xx_PSC_MODE_TXCTS;
1215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 /* Get the lock */
1218 spin_lock_irqsave(&port->lock, flags);
1219
Nick Andrewc4f01242008-12-05 16:34:46 +00001220 /* Do our best to flush TX & RX, so we don't lose anything */
1221 /* But we don't wait indefinitely ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 j = 5000000; /* Maximum wait */
1223 /* FIXME Can't receive chars since set_termios might be called at early
1224 * boot for the console, all stuff is not yet ready to receive at that
1225 * time and that just makes the kernel oops */
1226 /* while (j-- && mpc52xx_uart_int_rx_chars(port)); */
John Rigby599f0302008-01-29 04:28:55 +11001227 while (!mpc52xx_uart_tx_empty(port) && --j)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 udelay(1);
1229
1230 if (!j)
John Rigby406b7d42008-01-17 08:37:25 +11001231 printk(KERN_ERR "mpc52xx_uart.c: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 "Unable to flush RX & TX fifos in-time in set_termios."
John Rigby406b7d42008-01-17 08:37:25 +11001233 "Some chars may have been lost.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 /* Reset the TX & RX */
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001236 psc_ops->command(port, MPC52xx_PSC_RST_RX);
1237 psc_ops->command(port, MPC52xx_PSC_RST_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 /* Send new mode settings */
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001240 psc_ops->set_mode(port, mr1, mr2);
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001241 baud = psc_ops->set_baudrate(port, new, old);
1242
1243 /* Update the per-port timeout */
1244 uart_update_timeout(port, new->c_cflag, baud);
Grant Likely9b9129e2006-11-27 14:21:01 -07001245
Wolfram Sangaec739e2008-12-21 02:54:32 -07001246 if (UART_ENABLE_MS(port, new->c_cflag))
1247 mpc52xx_uart_enable_ms(port);
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 /* Reenable TX & RX */
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001250 psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
1251 psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 /* We're all set, release the lock */
1254 spin_unlock_irqrestore(&port->lock, flags);
1255}
1256
1257static const char *
1258mpc52xx_uart_type(struct uart_port *port)
1259{
Wolfram Sange44dcb62010-11-12 19:47:47 +01001260 /*
1261 * We keep using PORT_MPC52xx for historic reasons although it applies
1262 * for MPC512x, too, but print "MPC5xxx" to not irritate users
1263 */
1264 return port->type == PORT_MPC52xx ? "MPC5xxx PSC" : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
1267static void
1268mpc52xx_uart_release_port(struct uart_port *port)
1269{
Gerhard Sittig2d30cca2013-08-06 22:43:42 +02001270 if (psc_ops->clock_relse)
1271 psc_ops->clock_relse(port);
1272
John Rigby406b7d42008-01-17 08:37:25 +11001273 /* remapped by us ? */
1274 if (port->flags & UPF_IOREMAP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 iounmap(port->membase);
1276 port->membase = NULL;
1277 }
1278
Grant Likelyb9272df2006-11-27 14:21:02 -07001279 release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282static int
1283mpc52xx_uart_request_port(struct uart_port *port)
1284{
Amol Ladbe618f52006-09-30 23:29:23 -07001285 int err;
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (port->flags & UPF_IOREMAP) /* Need to remap ? */
Grant Likelyb9272df2006-11-27 14:21:02 -07001288 port->membase = ioremap(port->mapbase,
John Rigby406b7d42008-01-17 08:37:25 +11001289 sizeof(struct mpc52xx_psc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 if (!port->membase)
1292 return -EINVAL;
1293
Grant Likelyb9272df2006-11-27 14:21:02 -07001294 err = request_mem_region(port->mapbase, sizeof(struct mpc52xx_psc),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 "mpc52xx_psc_uart") != NULL ? 0 : -EBUSY;
Amol Ladbe618f52006-09-30 23:29:23 -07001296
Gerhard Sittig2d30cca2013-08-06 22:43:42 +02001297 if (err)
1298 goto out_membase;
1299
1300 if (psc_ops->clock_alloc) {
1301 err = psc_ops->clock_alloc(port);
1302 if (err)
1303 goto out_mapregion;
1304 }
1305
1306 return 0;
1307
1308out_mapregion:
1309 release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc));
1310out_membase:
1311 if (port->flags & UPF_IOREMAP) {
Amol Ladbe618f52006-09-30 23:29:23 -07001312 iounmap(port->membase);
1313 port->membase = NULL;
1314 }
Amol Ladbe618f52006-09-30 23:29:23 -07001315 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
1318static void
1319mpc52xx_uart_config_port(struct uart_port *port, int flags)
1320{
John Rigby406b7d42008-01-17 08:37:25 +11001321 if ((flags & UART_CONFIG_TYPE)
1322 && (mpc52xx_uart_request_port(port) == 0))
1323 port->type = PORT_MPC52xx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324}
1325
1326static int
1327mpc52xx_uart_verify_port(struct uart_port *port, struct serial_struct *ser)
1328{
John Rigby406b7d42008-01-17 08:37:25 +11001329 if (ser->type != PORT_UNKNOWN && ser->type != PORT_MPC52xx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return -EINVAL;
1331
John Rigby406b7d42008-01-17 08:37:25 +11001332 if ((ser->irq != port->irq) ||
Julia Lawallb7a82122009-10-15 09:58:28 -06001333 (ser->io_type != UPIO_MEM) ||
John Rigby406b7d42008-01-17 08:37:25 +11001334 (ser->baud_base != port->uartclk) ||
1335 (ser->iomem_base != (void *)port->mapbase) ||
1336 (ser->hub6 != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return -EINVAL;
1338
1339 return 0;
1340}
1341
1342
1343static struct uart_ops mpc52xx_uart_ops = {
1344 .tx_empty = mpc52xx_uart_tx_empty,
1345 .set_mctrl = mpc52xx_uart_set_mctrl,
1346 .get_mctrl = mpc52xx_uart_get_mctrl,
1347 .stop_tx = mpc52xx_uart_stop_tx,
1348 .start_tx = mpc52xx_uart_start_tx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 .stop_rx = mpc52xx_uart_stop_rx,
1350 .enable_ms = mpc52xx_uart_enable_ms,
1351 .break_ctl = mpc52xx_uart_break_ctl,
1352 .startup = mpc52xx_uart_startup,
1353 .shutdown = mpc52xx_uart_shutdown,
1354 .set_termios = mpc52xx_uart_set_termios,
1355/* .pm = mpc52xx_uart_pm, Not supported yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 .type = mpc52xx_uart_type,
1357 .release_port = mpc52xx_uart_release_port,
1358 .request_port = mpc52xx_uart_request_port,
1359 .config_port = mpc52xx_uart_config_port,
1360 .verify_port = mpc52xx_uart_verify_port
1361};
1362
Grant Likely9b9129e2006-11-27 14:21:01 -07001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364/* ======================================================================== */
1365/* Interrupt handling */
1366/* ======================================================================== */
Grant Likely9b9129e2006-11-27 14:21:01 -07001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368static inline int
David Howells7d12e782006-10-05 14:55:46 +01001369mpc52xx_uart_int_rx_chars(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Jiri Slaby92a19f92013-01-03 15:53:03 +01001371 struct tty_port *tport = &port->state->port;
Alan Cox33f0f882006-01-09 20:54:13 -08001372 unsigned char ch, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 unsigned short status;
1374
1375 /* While we can read, do so ! */
John Rigby599f0302008-01-29 04:28:55 +11001376 while (psc_ops->raw_rx_rdy(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 /* Get the char */
John Rigby599f0302008-01-29 04:28:55 +11001378 ch = psc_ops->read_char(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 /* Handle sysreq char */
1381#ifdef SUPPORT_SYSRQ
David Howells7d12e782006-10-05 14:55:46 +01001382 if (uart_handle_sysrq_char(port, ch)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 port->sysrq = 0;
1384 continue;
1385 }
1386#endif
1387
1388 /* Store it */
Alan Cox33f0f882006-01-09 20:54:13 -08001389
1390 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 port->icount.rx++;
Grant Likely9b9129e2006-11-27 14:21:01 -07001392
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001393 status = psc_ops->get_status(port);
John Rigby599f0302008-01-29 04:28:55 +11001394
John Rigby406b7d42008-01-17 08:37:25 +11001395 if (status & (MPC52xx_PSC_SR_PE |
1396 MPC52xx_PSC_SR_FE |
1397 MPC52xx_PSC_SR_RB)) {
Grant Likely9b9129e2006-11-27 14:21:01 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (status & MPC52xx_PSC_SR_RB) {
Alan Cox33f0f882006-01-09 20:54:13 -08001400 flag = TTY_BREAK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 uart_handle_break(port);
René Bürgelb6514982008-12-21 02:54:31 -07001402 port->icount.brk++;
1403 } else if (status & MPC52xx_PSC_SR_PE) {
Alan Cox33f0f882006-01-09 20:54:13 -08001404 flag = TTY_PARITY;
René Bürgelb6514982008-12-21 02:54:31 -07001405 port->icount.parity++;
1406 }
1407 else if (status & MPC52xx_PSC_SR_FE) {
Alan Cox33f0f882006-01-09 20:54:13 -08001408 flag = TTY_FRAME;
René Bürgelb6514982008-12-21 02:54:31 -07001409 port->icount.frame++;
1410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 /* Clear error condition */
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001413 psc_ops->command(port, MPC52xx_PSC_RST_ERR_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 }
Jiri Slaby92a19f92013-01-03 15:53:03 +01001416 tty_insert_flip_char(tport, ch, flag);
Alan Cox33f0f882006-01-09 20:54:13 -08001417 if (status & MPC52xx_PSC_SR_OE) {
1418 /*
1419 * Overrun is special, since it's
1420 * reported immediately, and doesn't
1421 * affect the current character
1422 */
Jiri Slaby92a19f92013-01-03 15:53:03 +01001423 tty_insert_flip_char(tport, 0, TTY_OVERRUN);
René Bürgelb6514982008-12-21 02:54:31 -07001424 port->icount.overrun++;
Alan Cox33f0f882006-01-09 20:54:13 -08001425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427
Andrew Liufbe543b2008-04-29 17:36:25 +10001428 spin_unlock(&port->lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001429 tty_flip_buffer_push(tport);
Andrew Liufbe543b2008-04-29 17:36:25 +10001430 spin_lock(&port->lock);
Grant Likely9b9129e2006-11-27 14:21:01 -07001431
John Rigby599f0302008-01-29 04:28:55 +11001432 return psc_ops->raw_rx_rdy(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
1435static inline int
1436mpc52xx_uart_int_tx_chars(struct uart_port *port)
1437{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001438 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440 /* Process out of band chars */
1441 if (port->x_char) {
John Rigby599f0302008-01-29 04:28:55 +11001442 psc_ops->write_char(port, port->x_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 port->icount.tx++;
1444 port->x_char = 0;
1445 return 1;
1446 }
1447
1448 /* Nothing to do ? */
1449 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001450 mpc52xx_uart_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 return 0;
1452 }
1453
1454 /* Send chars */
John Rigby599f0302008-01-29 04:28:55 +11001455 while (psc_ops->raw_tx_rdy(port)) {
1456 psc_ops->write_char(port, xmit->buf[xmit->tail]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1458 port->icount.tx++;
1459 if (uart_circ_empty(xmit))
1460 break;
1461 }
1462
1463 /* Wake up */
1464 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1465 uart_write_wakeup(port);
1466
1467 /* Maybe we're done after all */
1468 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001469 mpc52xx_uart_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return 0;
1471 }
1472
1473 return 1;
1474}
1475
Grant Likely9b9129e2006-11-27 14:21:01 -07001476static irqreturn_t
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001477mpc5xxx_uart_process_int(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 unsigned long pass = ISR_PASS_LIMIT;
1480 unsigned int keepgoing;
Wolfram Sangaec739e2008-12-21 02:54:32 -07001481 u8 status;
Grant Likely9b9129e2006-11-27 14:21:01 -07001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /* While we have stuff to do, we continue */
1484 do {
1485 /* If we don't find anything to do, we stop */
Grant Likely9b9129e2006-11-27 14:21:01 -07001486 keepgoing = 0;
1487
John Rigby599f0302008-01-29 04:28:55 +11001488 psc_ops->rx_clr_irq(port);
1489 if (psc_ops->rx_rdy(port))
David Howells7d12e782006-10-05 14:55:46 +01001490 keepgoing |= mpc52xx_uart_int_rx_chars(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
John Rigby599f0302008-01-29 04:28:55 +11001492 psc_ops->tx_clr_irq(port);
1493 if (psc_ops->tx_rdy(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 keepgoing |= mpc52xx_uart_int_tx_chars(port);
Grant Likely9b9129e2006-11-27 14:21:01 -07001495
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001496 status = psc_ops->get_ipcr(port);
Wolfram Sangaec739e2008-12-21 02:54:32 -07001497 if (status & MPC52xx_PSC_D_DCD)
1498 uart_handle_dcd_change(port, !(status & MPC52xx_PSC_DCD));
1499
1500 if (status & MPC52xx_PSC_D_CTS)
1501 uart_handle_cts_change(port, !(status & MPC52xx_PSC_CTS));
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 /* Limit number of iteration */
John Rigby406b7d42008-01-17 08:37:25 +11001504 if (!(--pass))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 keepgoing = 0;
1506
1507 } while (keepgoing);
Grant Likely9b9129e2006-11-27 14:21:01 -07001508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 return IRQ_HANDLED;
1510}
1511
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001512static irqreturn_t
1513mpc52xx_uart_int(int irq, void *dev_id)
1514{
1515 struct uart_port *port = dev_id;
1516 irqreturn_t ret;
1517
1518 spin_lock(&port->lock);
1519
1520 ret = psc_ops->handle_irq(port);
1521
1522 spin_unlock(&port->lock);
1523
1524 return ret;
1525}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527/* ======================================================================== */
1528/* Console ( if applicable ) */
1529/* ======================================================================== */
1530
1531#ifdef CONFIG_SERIAL_MPC52xx_CONSOLE
1532
1533static void __init
1534mpc52xx_console_get_options(struct uart_port *port,
John Rigby406b7d42008-01-17 08:37:25 +11001535 int *baud, int *parity, int *bits, int *flow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 unsigned char mr1;
1538
Grant Likelyb9272df2006-11-27 14:21:02 -07001539 pr_debug("mpc52xx_console_get_options(port=%p)\n", port);
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 /* Read the mode registers */
Matteo Facchinetti2574b272013-05-24 20:24:58 +02001542 mr1 = psc_ops->get_mr1(port);
Grant Likely9b9129e2006-11-27 14:21:01 -07001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 /* CT{U,L}R are write-only ! */
Grant Likelyb9272df2006-11-27 14:21:02 -07001545 *baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 /* Parse them */
1548 switch (mr1 & MPC52xx_PSC_MODE_BITS_MASK) {
John Rigby406b7d42008-01-17 08:37:25 +11001549 case MPC52xx_PSC_MODE_5_BITS:
1550 *bits = 5;
1551 break;
1552 case MPC52xx_PSC_MODE_6_BITS:
1553 *bits = 6;
1554 break;
1555 case MPC52xx_PSC_MODE_7_BITS:
1556 *bits = 7;
1557 break;
1558 case MPC52xx_PSC_MODE_8_BITS:
1559 default:
1560 *bits = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
Grant Likely9b9129e2006-11-27 14:21:01 -07001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (mr1 & MPC52xx_PSC_MODE_PARNONE)
1564 *parity = 'n';
1565 else
1566 *parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e';
1567}
1568
Grant Likely9b9129e2006-11-27 14:21:01 -07001569static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570mpc52xx_console_write(struct console *co, const char *s, unsigned int count)
1571{
1572 struct uart_port *port = &mpc52xx_uart_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 unsigned int i, j;
Grant Likely9b9129e2006-11-27 14:21:01 -07001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 /* Disable interrupts */
John Rigby599f0302008-01-29 04:28:55 +11001576 psc_ops->cw_disable_ints(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /* Wait the TX buffer to be empty */
Grant Likely9b9129e2006-11-27 14:21:01 -07001579 j = 5000000; /* Maximum wait */
John Rigby599f0302008-01-29 04:28:55 +11001580 while (!mpc52xx_uart_tx_empty(port) && --j)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 udelay(1);
1582
1583 /* Write all the chars */
Russell Kingd3587882006-03-20 20:00:09 +00001584 for (i = 0; i < count; i++, s++) {
1585 /* Line return handling */
1586 if (*s == '\n')
John Rigby599f0302008-01-29 04:28:55 +11001587 psc_ops->write_char(port, '\r');
Grant Likely9b9129e2006-11-27 14:21:01 -07001588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 /* Send the char */
John Rigby599f0302008-01-29 04:28:55 +11001590 psc_ops->write_char(port, *s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 /* Wait the TX buffer to be empty */
Grant Likely9b9129e2006-11-27 14:21:01 -07001593 j = 20000; /* Maximum wait */
John Rigby599f0302008-01-29 04:28:55 +11001594 while (!mpc52xx_uart_tx_empty(port) && --j)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 udelay(1);
1596 }
1597
1598 /* Restore interrupt state */
John Rigby599f0302008-01-29 04:28:55 +11001599 psc_ops->cw_restore_ints(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Grant Likelyb9272df2006-11-27 14:21:02 -07001602
1603static int __init
1604mpc52xx_console_setup(struct console *co, char *options)
1605{
1606 struct uart_port *port = &mpc52xx_uart_ports[co->index];
1607 struct device_node *np = mpc52xx_uart_nodes[co->index];
John Rigby599f0302008-01-29 04:28:55 +11001608 unsigned int uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001609 struct resource res;
1610 int ret;
1611
1612 int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
1613 int bits = 8;
1614 int parity = 'n';
1615 int flow = 'n';
1616
1617 pr_debug("mpc52xx_console_setup co=%p, co->index=%i, options=%s\n",
1618 co, co->index, options);
1619
Roel Kluinb898f4f2009-05-28 14:34:29 -07001620 if ((co->index < 0) || (co->index >= MPC52xx_PSC_MAXNUM)) {
Grant Likelyb9272df2006-11-27 14:21:02 -07001621 pr_debug("PSC%x out of range\n", co->index);
1622 return -EINVAL;
1623 }
1624
1625 if (!np) {
1626 pr_debug("PSC%x not found in device tree\n", co->index);
1627 return -EINVAL;
1628 }
1629
1630 pr_debug("Console on ttyPSC%x is %s\n",
John Rigby406b7d42008-01-17 08:37:25 +11001631 co->index, mpc52xx_uart_nodes[co->index]->full_name);
Grant Likelyb9272df2006-11-27 14:21:02 -07001632
1633 /* Fetch register locations */
John Rigby406b7d42008-01-17 08:37:25 +11001634 ret = of_address_to_resource(np, 0, &res);
1635 if (ret) {
Grant Likelyb9272df2006-11-27 14:21:02 -07001636 pr_debug("Could not get resources for PSC%x\n", co->index);
1637 return ret;
1638 }
1639
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001640 uartclk = mpc5xxx_get_bus_frequency(np);
John Rigby599f0302008-01-29 04:28:55 +11001641 if (uartclk == 0) {
1642 pr_debug("Could not find uart clock frequency!\n");
Grant Likelyb9272df2006-11-27 14:21:02 -07001643 return -EINVAL;
1644 }
1645
1646 /* Basic port init. Needed since we use some uart_??? func before
1647 * real init for early access */
1648 spin_lock_init(&port->lock);
John Rigby599f0302008-01-29 04:28:55 +11001649 port->uartclk = uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001650 port->ops = &mpc52xx_uart_ops;
1651 port->mapbase = res.start;
1652 port->membase = ioremap(res.start, sizeof(struct mpc52xx_psc));
1653 port->irq = irq_of_parse_and_map(np, 0);
1654
1655 if (port->membase == NULL)
1656 return -EINVAL;
1657
Grant Likely5dd80d52007-10-13 22:37:02 -06001658 pr_debug("mpc52xx-psc uart at %p, mapped to %p, irq=%x, freq=%i\n",
John Rigby406b7d42008-01-17 08:37:25 +11001659 (void *)port->mapbase, port->membase,
1660 port->irq, port->uartclk);
Grant Likelyb9272df2006-11-27 14:21:02 -07001661
1662 /* Setup the port parameters accoding to options */
1663 if (options)
1664 uart_parse_options(options, &baud, &parity, &bits, &flow);
1665 else
1666 mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow);
1667
1668 pr_debug("Setting console parameters: %i %i%c1 flow=%c\n",
John Rigby406b7d42008-01-17 08:37:25 +11001669 baud, bits, parity, flow);
Grant Likelyb9272df2006-11-27 14:21:02 -07001670
1671 return uart_set_options(port, co, baud, parity, bits, flow);
1672}
Grant Likelyb9272df2006-11-27 14:21:02 -07001673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Sylvain Munaut2d8179c2006-01-06 00:11:31 -08001675static struct uart_driver mpc52xx_uart_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677static struct console mpc52xx_console = {
Sylvain Munautd62de3a2006-01-06 00:11:32 -08001678 .name = "ttyPSC",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 .write = mpc52xx_console_write,
1680 .device = uart_console_device,
1681 .setup = mpc52xx_console_setup,
1682 .flags = CON_PRINTBUFFER,
John Rigby406b7d42008-01-17 08:37:25 +11001683 .index = -1, /* Specified on the cmdline (e.g. console=ttyPSC0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 .data = &mpc52xx_uart_driver,
1685};
1686
Grant Likely9b9129e2006-11-27 14:21:01 -07001687
1688static int __init
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689mpc52xx_console_init(void)
1690{
Grant Likelyb9272df2006-11-27 14:21:02 -07001691 mpc52xx_uart_of_enumerate();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 register_console(&mpc52xx_console);
1693 return 0;
1694}
1695
1696console_initcall(mpc52xx_console_init);
1697
1698#define MPC52xx_PSC_CONSOLE &mpc52xx_console
1699#else
1700#define MPC52xx_PSC_CONSOLE NULL
1701#endif
1702
1703
1704/* ======================================================================== */
1705/* UART Driver */
1706/* ======================================================================== */
1707
1708static struct uart_driver mpc52xx_uart_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 .driver_name = "mpc52xx_psc_uart",
Sylvain Munautd62de3a2006-01-06 00:11:32 -08001710 .dev_name = "ttyPSC",
Sylvain Munautd62de3a2006-01-06 00:11:32 -08001711 .major = SERIAL_PSC_MAJOR,
1712 .minor = SERIAL_PSC_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 .nr = MPC52xx_PSC_MAXNUM,
1714 .cons = MPC52xx_PSC_CONSOLE,
1715};
1716
Grant Likelyb9272df2006-11-27 14:21:02 -07001717/* ======================================================================== */
1718/* OF Platform Driver */
1719/* ======================================================================== */
1720
Fabian Fredericked0bb232015-03-16 20:17:11 +01001721static const struct of_device_id mpc52xx_uart_of_match[] = {
Grant Likely52b80482008-02-06 22:29:25 -07001722#ifdef CONFIG_PPC_MPC52xx
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001723 { .compatible = "fsl,mpc5200b-psc-uart", .data = &mpc5200b_psc_ops, },
Grant Likely52b80482008-02-06 22:29:25 -07001724 { .compatible = "fsl,mpc5200-psc-uart", .data = &mpc52xx_psc_ops, },
1725 /* binding used by old lite5200 device trees: */
1726 { .compatible = "mpc5200-psc-uart", .data = &mpc52xx_psc_ops, },
1727 /* binding used by efika: */
1728 { .compatible = "mpc5200-serial", .data = &mpc52xx_psc_ops, },
1729#endif
1730#ifdef CONFIG_PPC_MPC512x
1731 { .compatible = "fsl,mpc5121-psc-uart", .data = &mpc512x_psc_ops, },
Matteo Facchinetti1f48c492013-05-24 20:24:59 +02001732 { .compatible = "fsl,mpc5125-psc-uart", .data = &mpc5125_psc_ops, },
Grant Likely52b80482008-02-06 22:29:25 -07001733#endif
Grant Likelybc775ea2008-04-29 06:40:37 -06001734 {},
Grant Likely52b80482008-02-06 22:29:25 -07001735};
1736
Bill Pemberton9671f092012-11-19 13:21:50 -05001737static int mpc52xx_uart_of_probe(struct platform_device *op)
Grant Likelyb9272df2006-11-27 14:21:02 -07001738{
1739 int idx = -1;
John Rigby599f0302008-01-29 04:28:55 +11001740 unsigned int uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001741 struct uart_port *port = NULL;
1742 struct resource res;
1743 int ret;
1744
Grant Likelyb9272df2006-11-27 14:21:02 -07001745 /* Check validity & presence */
1746 for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++)
Grant Likely61c7a082010-04-13 16:12:29 -07001747 if (mpc52xx_uart_nodes[idx] == op->dev.of_node)
Grant Likelyb9272df2006-11-27 14:21:02 -07001748 break;
1749 if (idx >= MPC52xx_PSC_MAXNUM)
1750 return -EINVAL;
1751 pr_debug("Found %s assigned to ttyPSC%x\n",
John Rigby406b7d42008-01-17 08:37:25 +11001752 mpc52xx_uart_nodes[idx]->full_name, idx);
Grant Likelyb9272df2006-11-27 14:21:02 -07001753
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001754 /* set the uart clock to the input clock of the psc, the different
1755 * prescalers are taken into account in the set_baudrate() methods
1756 * of the respective chip */
1757 uartclk = mpc5xxx_get_bus_frequency(op->dev.of_node);
John Rigby599f0302008-01-29 04:28:55 +11001758 if (uartclk == 0) {
1759 dev_dbg(&op->dev, "Could not find uart clock frequency!\n");
Grant Likelyb9272df2006-11-27 14:21:02 -07001760 return -EINVAL;
1761 }
1762
1763 /* Init the port structure */
1764 port = &mpc52xx_uart_ports[idx];
1765
1766 spin_lock_init(&port->lock);
John Rigby599f0302008-01-29 04:28:55 +11001767 port->uartclk = uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001768 port->fifosize = 512;
1769 port->iotype = UPIO_MEM;
1770 port->flags = UPF_BOOT_AUTOCONF |
John Rigby406b7d42008-01-17 08:37:25 +11001771 (uart_console(port) ? 0 : UPF_IOREMAP);
Grant Likelyb9272df2006-11-27 14:21:02 -07001772 port->line = idx;
1773 port->ops = &mpc52xx_uart_ops;
1774 port->dev = &op->dev;
1775
1776 /* Search for IRQ and mapbase */
Grant Likely61c7a082010-04-13 16:12:29 -07001777 ret = of_address_to_resource(op->dev.of_node, 0, &res);
John Rigby406b7d42008-01-17 08:37:25 +11001778 if (ret)
Grant Likelyb9272df2006-11-27 14:21:02 -07001779 return ret;
1780
1781 port->mapbase = res.start;
Wolfram Sang418441d92008-12-21 02:54:32 -07001782 if (!port->mapbase) {
1783 dev_dbg(&op->dev, "Could not allocate resources for PSC\n");
1784 return -EINVAL;
1785 }
1786
Grant Likely61c7a082010-04-13 16:12:29 -07001787 psc_ops->get_irq(port, op->dev.of_node);
Alan Coxd4e33fa2012-01-26 17:44:09 +00001788 if (port->irq == 0) {
Wolfram Sang418441d92008-12-21 02:54:32 -07001789 dev_dbg(&op->dev, "Could not get irq\n");
1790 return -EINVAL;
1791 }
Grant Likelyb9272df2006-11-27 14:21:02 -07001792
Grant Likely5dd80d52007-10-13 22:37:02 -06001793 dev_dbg(&op->dev, "mpc52xx-psc uart at %p, irq=%x, freq=%i\n",
John Rigby406b7d42008-01-17 08:37:25 +11001794 (void *)port->mapbase, port->irq, port->uartclk);
Grant Likelyb9272df2006-11-27 14:21:02 -07001795
Grant Likelyb9272df2006-11-27 14:21:02 -07001796 /* Add the port to the uart sub-system */
1797 ret = uart_add_one_port(&mpc52xx_uart_driver, port);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001798 if (ret)
Wolfram Sang418441d92008-12-21 02:54:32 -07001799 return ret;
Grant Likelyb9272df2006-11-27 14:21:02 -07001800
Jingoo Han696faed2013-05-23 19:39:36 +09001801 platform_set_drvdata(op, (void *)port);
Wolfram Sang418441d92008-12-21 02:54:32 -07001802 return 0;
Grant Likelyb9272df2006-11-27 14:21:02 -07001803}
1804
1805static int
Grant Likely2dc11582010-08-06 09:25:50 -06001806mpc52xx_uart_of_remove(struct platform_device *op)
Grant Likelyb9272df2006-11-27 14:21:02 -07001807{
Jingoo Han696faed2013-05-23 19:39:36 +09001808 struct uart_port *port = platform_get_drvdata(op);
Grant Likelyb9272df2006-11-27 14:21:02 -07001809
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001810 if (port)
Grant Likelyb9272df2006-11-27 14:21:02 -07001811 uart_remove_one_port(&mpc52xx_uart_driver, port);
1812
1813 return 0;
1814}
1815
1816#ifdef CONFIG_PM
1817static int
Grant Likely2dc11582010-08-06 09:25:50 -06001818mpc52xx_uart_of_suspend(struct platform_device *op, pm_message_t state)
Grant Likelyb9272df2006-11-27 14:21:02 -07001819{
Jingoo Han41903902013-09-09 14:11:17 +09001820 struct uart_port *port = platform_get_drvdata(op);
Grant Likelyb9272df2006-11-27 14:21:02 -07001821
1822 if (port)
1823 uart_suspend_port(&mpc52xx_uart_driver, port);
1824
1825 return 0;
1826}
1827
1828static int
Grant Likely2dc11582010-08-06 09:25:50 -06001829mpc52xx_uart_of_resume(struct platform_device *op)
Grant Likelyb9272df2006-11-27 14:21:02 -07001830{
Jingoo Han41903902013-09-09 14:11:17 +09001831 struct uart_port *port = platform_get_drvdata(op);
Grant Likelyb9272df2006-11-27 14:21:02 -07001832
1833 if (port)
1834 uart_resume_port(&mpc52xx_uart_driver, port);
1835
1836 return 0;
1837}
1838#endif
1839
1840static void
Grant Likely3b5ebf82009-02-03 12:30:25 -07001841mpc52xx_uart_of_assign(struct device_node *np)
Grant Likelyb9272df2006-11-27 14:21:02 -07001842{
Grant Likelyb9272df2006-11-27 14:21:02 -07001843 int i;
1844
Grant Likely3b5ebf82009-02-03 12:30:25 -07001845 /* Find the first free PSC number */
Grant Likelyb9272df2006-11-27 14:21:02 -07001846 for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1847 if (mpc52xx_uart_nodes[i] == NULL) {
Grant Likely3b5ebf82009-02-03 12:30:25 -07001848 of_node_get(np);
1849 mpc52xx_uart_nodes[i] = np;
1850 return;
Grant Likelyb9272df2006-11-27 14:21:02 -07001851 }
1852 }
Grant Likelyb9272df2006-11-27 14:21:02 -07001853}
1854
1855static void
1856mpc52xx_uart_of_enumerate(void)
1857{
John Rigby406b7d42008-01-17 08:37:25 +11001858 static int enum_done;
Grant Likelyb9272df2006-11-27 14:21:02 -07001859 struct device_node *np;
John Rigby25ae3a02008-01-29 04:28:56 +11001860 const struct of_device_id *match;
Grant Likelyb9272df2006-11-27 14:21:02 -07001861 int i;
1862
1863 if (enum_done)
1864 return;
1865
Grant Likely3b5ebf82009-02-03 12:30:25 -07001866 /* Assign index to each PSC in device tree */
1867 for_each_matching_node(np, mpc52xx_uart_of_match) {
John Rigby25ae3a02008-01-29 04:28:56 +11001868 match = of_match_node(mpc52xx_uart_of_match, np);
John Rigby25ae3a02008-01-29 04:28:56 +11001869 psc_ops = match->data;
Grant Likely3b5ebf82009-02-03 12:30:25 -07001870 mpc52xx_uart_of_assign(np);
Grant Likelyb9272df2006-11-27 14:21:02 -07001871 }
1872
1873 enum_done = 1;
1874
1875 for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1876 if (mpc52xx_uart_nodes[i])
1877 pr_debug("%s assigned to ttyPSC%x\n",
John Rigby406b7d42008-01-17 08:37:25 +11001878 mpc52xx_uart_nodes[i]->full_name, i);
Grant Likelyb9272df2006-11-27 14:21:02 -07001879 }
1880}
1881
1882MODULE_DEVICE_TABLE(of, mpc52xx_uart_of_match);
1883
Grant Likely793218d2011-02-22 21:10:26 -07001884static struct platform_driver mpc52xx_uart_of_driver = {
Grant Likelyb9272df2006-11-27 14:21:02 -07001885 .probe = mpc52xx_uart_of_probe,
1886 .remove = mpc52xx_uart_of_remove,
1887#ifdef CONFIG_PM
1888 .suspend = mpc52xx_uart_of_suspend,
1889 .resume = mpc52xx_uart_of_resume,
1890#endif
Grant Likely40182942010-04-13 16:13:02 -07001891 .driver = {
1892 .name = "mpc52xx-psc-uart",
Grant Likely40182942010-04-13 16:13:02 -07001893 .of_match_table = mpc52xx_uart_of_match,
Grant Likelyb9272df2006-11-27 14:21:02 -07001894 },
1895};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897
1898/* ======================================================================== */
1899/* Module */
1900/* ======================================================================== */
1901
1902static int __init
1903mpc52xx_uart_init(void)
1904{
1905 int ret;
1906
Grant Likelyb9272df2006-11-27 14:21:02 -07001907 printk(KERN_INFO "Serial: MPC52xx PSC UART driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
John Rigby406b7d42008-01-17 08:37:25 +11001909 ret = uart_register_driver(&mpc52xx_uart_driver);
1910 if (ret) {
Grant Likelyb9272df2006-11-27 14:21:02 -07001911 printk(KERN_ERR "%s: uart_register_driver failed (%i)\n",
1912 __FILE__, ret);
1913 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 }
1915
Grant Likelyb9272df2006-11-27 14:21:02 -07001916 mpc52xx_uart_of_enumerate();
1917
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001918 /*
1919 * Map the PSC FIFO Controller and init if on MPC512x.
1920 */
Anatolij Gustschine6114fa2010-05-05 00:18:59 +02001921 if (psc_ops && psc_ops->fifoc_init) {
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001922 ret = psc_ops->fifoc_init();
1923 if (ret)
Wei Yongjun9bcc3272013-04-25 15:34:27 +08001924 goto err_init;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001925 }
1926
Grant Likely793218d2011-02-22 21:10:26 -07001927 ret = platform_driver_register(&mpc52xx_uart_of_driver);
Grant Likelyb9272df2006-11-27 14:21:02 -07001928 if (ret) {
Grant Likely793218d2011-02-22 21:10:26 -07001929 printk(KERN_ERR "%s: platform_driver_register failed (%i)\n",
Grant Likelyb9272df2006-11-27 14:21:02 -07001930 __FILE__, ret);
Wei Yongjun9bcc3272013-04-25 15:34:27 +08001931 goto err_reg;
Grant Likelyb9272df2006-11-27 14:21:02 -07001932 }
Grant Likelyb9272df2006-11-27 14:21:02 -07001933
1934 return 0;
Wei Yongjun9bcc3272013-04-25 15:34:27 +08001935err_reg:
1936 if (psc_ops && psc_ops->fifoc_uninit)
1937 psc_ops->fifoc_uninit();
1938err_init:
1939 uart_unregister_driver(&mpc52xx_uart_driver);
1940 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941}
1942
1943static void __exit
1944mpc52xx_uart_exit(void)
1945{
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001946 if (psc_ops->fifoc_uninit)
1947 psc_ops->fifoc_uninit();
1948
Grant Likely793218d2011-02-22 21:10:26 -07001949 platform_driver_unregister(&mpc52xx_uart_of_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 uart_unregister_driver(&mpc52xx_uart_driver);
1951}
1952
1953
1954module_init(mpc52xx_uart_init);
1955module_exit(mpc52xx_uart_exit);
1956
1957MODULE_AUTHOR("Sylvain Munaut <tnt@246tNt.com>");
1958MODULE_DESCRIPTION("Freescale MPC52xx PSC UART");
1959MODULE_LICENSE("GPL");