blob: c4399e23565aca0c986fdecc56fc424dee2c1ee3 [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>
37#include <linux/serial.h>
38#include <linux/sysrq.h>
39#include <linux/console.h>
John Rigby406b7d42008-01-17 08:37:25 +110040#include <linux/delay.h>
41#include <linux/io.h>
Grant Likely283029d2008-01-09 06:20:40 +110042#include <linux/of.h>
43#include <linux/of_platform.h>
Anatolij Gustschin6acc6832010-02-16 22:30:03 -070044#include <linux/clk.h>
Grant Likelyb9272df2006-11-27 14:21:02 -070045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/mpc52xx.h>
47#include <asm/mpc52xx_psc.h>
48
49#if defined(CONFIG_SERIAL_MPC52xx_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
50#define SUPPORT_SYSRQ
51#endif
52
53#include <linux/serial_core.h>
54
55
Sylvain Munautd62de3a2006-01-06 00:11:32 -080056/* We've been assigned a range on the "Low-density serial ports" major */
57#define SERIAL_PSC_MAJOR 204
58#define SERIAL_PSC_MINOR 148
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#define ISR_PASS_LIMIT 256 /* Max number of iteration in the interrupt */
62
63
64static struct uart_port mpc52xx_uart_ports[MPC52xx_PSC_MAXNUM];
65 /* Rem: - We use the read_status_mask as a shadow of
66 * psc->mpc52xx_psc_imr
67 * - It's important that is array is all zero on start as we
68 * use it to know if it's initialized or not ! If it's not sure
69 * it's cleared, then a memset(...,0,...) should be added to
70 * the console_init
71 */
Kumar Gala8d1fb8c2008-08-01 11:09:34 -050072
Grant Likelyb9272df2006-11-27 14:21:02 -070073/* lookup table for matching device nodes to index numbers */
74static struct device_node *mpc52xx_uart_nodes[MPC52xx_PSC_MAXNUM];
75
76static void mpc52xx_uart_of_enumerate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
John Rigby599f0302008-01-29 04:28:55 +110078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define PSC(port) ((struct mpc52xx_psc __iomem *)((port)->membase))
80
81
82/* Forward declaration of the interruption handling routine */
John Rigby406b7d42008-01-17 08:37:25 +110083static irqreturn_t mpc52xx_uart_int(int irq, void *dev_id);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -070084static irqreturn_t mpc5xxx_uart_process_int(struct uart_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86
87/* Simple macro to test if a port is console or not. This one is taken
88 * for serial_core.c and maybe should be moved to serial_core.h ? */
89#ifdef CONFIG_SERIAL_CORE_CONSOLE
John Rigby406b7d42008-01-17 08:37:25 +110090#define uart_console(port) \
91 ((port)->cons && (port)->cons->index == (port)->line)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#else
93#define uart_console(port) (0)
94#endif
95
John Rigby599f0302008-01-29 04:28:55 +110096/* ======================================================================== */
97/* PSC fifo operations for isolating differences between 52xx and 512x */
98/* ======================================================================== */
99
100struct psc_ops {
101 void (*fifo_init)(struct uart_port *port);
102 int (*raw_rx_rdy)(struct uart_port *port);
103 int (*raw_tx_rdy)(struct uart_port *port);
104 int (*rx_rdy)(struct uart_port *port);
105 int (*tx_rdy)(struct uart_port *port);
106 int (*tx_empty)(struct uart_port *port);
107 void (*stop_rx)(struct uart_port *port);
108 void (*start_tx)(struct uart_port *port);
109 void (*stop_tx)(struct uart_port *port);
110 void (*rx_clr_irq)(struct uart_port *port);
111 void (*tx_clr_irq)(struct uart_port *port);
112 void (*write_char)(struct uart_port *port, unsigned char c);
113 unsigned char (*read_char)(struct uart_port *port);
114 void (*cw_disable_ints)(struct uart_port *port);
115 void (*cw_restore_ints)(struct uart_port *port);
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000116 unsigned int (*set_baudrate)(struct uart_port *port,
117 struct ktermios *new,
118 struct ktermios *old);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700119 int (*clock)(struct uart_port *port, int enable);
120 int (*fifoc_init)(void);
121 void (*fifoc_uninit)(void);
122 void (*get_irq)(struct uart_port *, struct device_node *);
123 irqreturn_t (*handle_irq)(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
John Rigby25ae3a02008-01-29 04:28:56 +1100136#ifdef CONFIG_PPC_MPC52xx
John Rigby599f0302008-01-29 04:28:55 +1100137#define FIFO_52xx(port) ((struct mpc52xx_psc_fifo __iomem *)(PSC(port)+1))
138static void mpc52xx_psc_fifo_init(struct uart_port *port)
139{
140 struct mpc52xx_psc __iomem *psc = PSC(port);
141 struct mpc52xx_psc_fifo __iomem *fifo = FIFO_52xx(port);
142
John Rigby599f0302008-01-29 04:28:55 +1100143 out_8(&fifo->rfcntl, 0x00);
144 out_be16(&fifo->rfalarm, 0x1ff);
145 out_8(&fifo->tfcntl, 0x07);
146 out_be16(&fifo->tfalarm, 0x80);
147
148 port->read_status_mask |= MPC52xx_PSC_IMR_RXRDY | MPC52xx_PSC_IMR_TXRDY;
149 out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
150}
151
152static int mpc52xx_psc_raw_rx_rdy(struct uart_port *port)
153{
154 return in_be16(&PSC(port)->mpc52xx_psc_status)
155 & MPC52xx_PSC_SR_RXRDY;
156}
157
158static int mpc52xx_psc_raw_tx_rdy(struct uart_port *port)
159{
160 return in_be16(&PSC(port)->mpc52xx_psc_status)
161 & MPC52xx_PSC_SR_TXRDY;
162}
163
164
165static int mpc52xx_psc_rx_rdy(struct uart_port *port)
166{
167 return in_be16(&PSC(port)->mpc52xx_psc_isr)
168 & port->read_status_mask
169 & MPC52xx_PSC_IMR_RXRDY;
170}
171
172static int mpc52xx_psc_tx_rdy(struct uart_port *port)
173{
174 return in_be16(&PSC(port)->mpc52xx_psc_isr)
175 & port->read_status_mask
176 & MPC52xx_PSC_IMR_TXRDY;
177}
178
179static int mpc52xx_psc_tx_empty(struct uart_port *port)
180{
181 return in_be16(&PSC(port)->mpc52xx_psc_status)
182 & MPC52xx_PSC_SR_TXEMP;
183}
184
185static void mpc52xx_psc_start_tx(struct uart_port *port)
186{
187 port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY;
188 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
189}
190
191static void mpc52xx_psc_stop_tx(struct uart_port *port)
192{
193 port->read_status_mask &= ~MPC52xx_PSC_IMR_TXRDY;
194 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
195}
196
197static void mpc52xx_psc_stop_rx(struct uart_port *port)
198{
199 port->read_status_mask &= ~MPC52xx_PSC_IMR_RXRDY;
200 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
201}
202
203static void mpc52xx_psc_rx_clr_irq(struct uart_port *port)
204{
205}
206
207static void mpc52xx_psc_tx_clr_irq(struct uart_port *port)
208{
209}
210
211static void mpc52xx_psc_write_char(struct uart_port *port, unsigned char c)
212{
213 out_8(&PSC(port)->mpc52xx_psc_buffer_8, c);
214}
215
216static unsigned char mpc52xx_psc_read_char(struct uart_port *port)
217{
218 return in_8(&PSC(port)->mpc52xx_psc_buffer_8);
219}
220
221static void mpc52xx_psc_cw_disable_ints(struct uart_port *port)
222{
223 out_be16(&PSC(port)->mpc52xx_psc_imr, 0);
224}
225
226static void mpc52xx_psc_cw_restore_ints(struct uart_port *port)
227{
228 out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
229}
230
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000231static unsigned int mpc5200_psc_set_baudrate(struct uart_port *port,
232 struct ktermios *new,
233 struct ktermios *old)
John Rigby599f0302008-01-29 04:28:55 +1100234{
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000235 unsigned int baud;
236 unsigned int divisor;
237
238 /* The 5200 has a fixed /32 prescaler, uartclk contains the ipb freq */
239 baud = uart_get_baud_rate(port, new, old,
240 port->uartclk / (32 * 0xffff) + 1,
241 port->uartclk / 32);
242 divisor = (port->uartclk + 16 * baud) / (32 * baud);
243
244 /* enable the /32 prescaler and set the divisor */
245 mpc52xx_set_divisor(PSC(port), 0xdd00, divisor);
246 return baud;
247}
248
249static unsigned int mpc5200b_psc_set_baudrate(struct uart_port *port,
250 struct ktermios *new,
251 struct ktermios *old)
252{
253 unsigned int baud;
254 unsigned int divisor;
255 u16 prescaler;
256
257 /* The 5200B has a selectable /4 or /32 prescaler, uartclk contains the
258 * ipb freq */
259 baud = uart_get_baud_rate(port, new, old,
260 port->uartclk / (32 * 0xffff) + 1,
261 port->uartclk / 4);
262 divisor = (port->uartclk + 2 * baud) / (4 * baud);
263
264 /* select the proper prescaler and set the divisor */
265 if (divisor > 0xffff) {
266 divisor = (divisor + 4) / 8;
267 prescaler = 0xdd00; /* /32 */
268 } else
269 prescaler = 0xff00; /* /4 */
270 mpc52xx_set_divisor(PSC(port), prescaler, divisor);
271 return baud;
John Rigby599f0302008-01-29 04:28:55 +1100272}
273
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700274static void mpc52xx_psc_get_irq(struct uart_port *port, struct device_node *np)
275{
276 port->irqflags = IRQF_DISABLED;
277 port->irq = irq_of_parse_and_map(np, 0);
278}
279
280/* 52xx specific interrupt handler. The caller holds the port lock */
281static irqreturn_t mpc52xx_psc_handle_irq(struct uart_port *port)
282{
283 return mpc5xxx_uart_process_int(port);
284}
285
John Rigby599f0302008-01-29 04:28:55 +1100286static struct psc_ops mpc52xx_psc_ops = {
287 .fifo_init = mpc52xx_psc_fifo_init,
288 .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy,
289 .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy,
290 .rx_rdy = mpc52xx_psc_rx_rdy,
291 .tx_rdy = mpc52xx_psc_tx_rdy,
292 .tx_empty = mpc52xx_psc_tx_empty,
293 .stop_rx = mpc52xx_psc_stop_rx,
294 .start_tx = mpc52xx_psc_start_tx,
295 .stop_tx = mpc52xx_psc_stop_tx,
296 .rx_clr_irq = mpc52xx_psc_rx_clr_irq,
297 .tx_clr_irq = mpc52xx_psc_tx_clr_irq,
298 .write_char = mpc52xx_psc_write_char,
299 .read_char = mpc52xx_psc_read_char,
300 .cw_disable_ints = mpc52xx_psc_cw_disable_ints,
301 .cw_restore_ints = mpc52xx_psc_cw_restore_ints,
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000302 .set_baudrate = mpc5200_psc_set_baudrate,
303 .get_irq = mpc52xx_psc_get_irq,
304 .handle_irq = mpc52xx_psc_handle_irq,
305};
306
307static struct psc_ops mpc5200b_psc_ops = {
308 .fifo_init = mpc52xx_psc_fifo_init,
309 .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy,
310 .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy,
311 .rx_rdy = mpc52xx_psc_rx_rdy,
312 .tx_rdy = mpc52xx_psc_tx_rdy,
313 .tx_empty = mpc52xx_psc_tx_empty,
314 .stop_rx = mpc52xx_psc_stop_rx,
315 .start_tx = mpc52xx_psc_start_tx,
316 .stop_tx = mpc52xx_psc_stop_tx,
317 .rx_clr_irq = mpc52xx_psc_rx_clr_irq,
318 .tx_clr_irq = mpc52xx_psc_tx_clr_irq,
319 .write_char = mpc52xx_psc_write_char,
320 .read_char = mpc52xx_psc_read_char,
321 .cw_disable_ints = mpc52xx_psc_cw_disable_ints,
322 .cw_restore_ints = mpc52xx_psc_cw_restore_ints,
323 .set_baudrate = mpc5200b_psc_set_baudrate,
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700324 .get_irq = mpc52xx_psc_get_irq,
325 .handle_irq = mpc52xx_psc_handle_irq,
John Rigby599f0302008-01-29 04:28:55 +1100326};
327
John Rigby25ae3a02008-01-29 04:28:56 +1100328#endif /* CONFIG_MPC52xx */
329
330#ifdef CONFIG_PPC_MPC512x
331#define FIFO_512x(port) ((struct mpc512x_psc_fifo __iomem *)(PSC(port)+1))
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700332
333/* PSC FIFO Controller for mpc512x */
334struct psc_fifoc {
335 u32 fifoc_cmd;
336 u32 fifoc_int;
337 u32 fifoc_dma;
338 u32 fifoc_axe;
339 u32 fifoc_debug;
340};
341
342static struct psc_fifoc __iomem *psc_fifoc;
343static unsigned int psc_fifoc_irq;
344
John Rigby25ae3a02008-01-29 04:28:56 +1100345static void mpc512x_psc_fifo_init(struct uart_port *port)
346{
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700347 /* /32 prescaler */
348 out_be16(&PSC(port)->mpc52xx_psc_clock_select, 0xdd00);
349
John Rigby25ae3a02008-01-29 04:28:56 +1100350 out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE);
351 out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
352 out_be32(&FIFO_512x(port)->txalarm, 1);
353 out_be32(&FIFO_512x(port)->tximr, 0);
354
355 out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE);
356 out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
357 out_be32(&FIFO_512x(port)->rxalarm, 1);
358 out_be32(&FIFO_512x(port)->rximr, 0);
359
360 out_be32(&FIFO_512x(port)->tximr, MPC512x_PSC_FIFO_ALARM);
361 out_be32(&FIFO_512x(port)->rximr, MPC512x_PSC_FIFO_ALARM);
362}
363
364static int mpc512x_psc_raw_rx_rdy(struct uart_port *port)
365{
366 return !(in_be32(&FIFO_512x(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY);
367}
368
369static int mpc512x_psc_raw_tx_rdy(struct uart_port *port)
370{
371 return !(in_be32(&FIFO_512x(port)->txsr) & MPC512x_PSC_FIFO_FULL);
372}
373
374static int mpc512x_psc_rx_rdy(struct uart_port *port)
375{
376 return in_be32(&FIFO_512x(port)->rxsr)
377 & in_be32(&FIFO_512x(port)->rximr)
378 & MPC512x_PSC_FIFO_ALARM;
379}
380
381static int mpc512x_psc_tx_rdy(struct uart_port *port)
382{
383 return in_be32(&FIFO_512x(port)->txsr)
384 & in_be32(&FIFO_512x(port)->tximr)
385 & MPC512x_PSC_FIFO_ALARM;
386}
387
388static int mpc512x_psc_tx_empty(struct uart_port *port)
389{
390 return in_be32(&FIFO_512x(port)->txsr)
391 & MPC512x_PSC_FIFO_EMPTY;
392}
393
394static void mpc512x_psc_stop_rx(struct uart_port *port)
395{
396 unsigned long rx_fifo_imr;
397
398 rx_fifo_imr = in_be32(&FIFO_512x(port)->rximr);
399 rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
400 out_be32(&FIFO_512x(port)->rximr, rx_fifo_imr);
401}
402
403static void mpc512x_psc_start_tx(struct uart_port *port)
404{
405 unsigned long tx_fifo_imr;
406
407 tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr);
408 tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM;
409 out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr);
410}
411
412static void mpc512x_psc_stop_tx(struct uart_port *port)
413{
414 unsigned long tx_fifo_imr;
415
416 tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr);
417 tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
418 out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr);
419}
420
421static void mpc512x_psc_rx_clr_irq(struct uart_port *port)
422{
423 out_be32(&FIFO_512x(port)->rxisr, in_be32(&FIFO_512x(port)->rxisr));
424}
425
426static void mpc512x_psc_tx_clr_irq(struct uart_port *port)
427{
428 out_be32(&FIFO_512x(port)->txisr, in_be32(&FIFO_512x(port)->txisr));
429}
430
431static void mpc512x_psc_write_char(struct uart_port *port, unsigned char c)
432{
433 out_8(&FIFO_512x(port)->txdata_8, c);
434}
435
436static unsigned char mpc512x_psc_read_char(struct uart_port *port)
437{
438 return in_8(&FIFO_512x(port)->rxdata_8);
439}
440
441static void mpc512x_psc_cw_disable_ints(struct uart_port *port)
442{
443 port->read_status_mask =
444 in_be32(&FIFO_512x(port)->tximr) << 16 |
445 in_be32(&FIFO_512x(port)->rximr);
446 out_be32(&FIFO_512x(port)->tximr, 0);
447 out_be32(&FIFO_512x(port)->rximr, 0);
448}
449
450static void mpc512x_psc_cw_restore_ints(struct uart_port *port)
451{
452 out_be32(&FIFO_512x(port)->tximr,
453 (port->read_status_mask >> 16) & 0x7f);
454 out_be32(&FIFO_512x(port)->rximr, port->read_status_mask & 0x7f);
455}
456
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000457static unsigned int mpc512x_psc_set_baudrate(struct uart_port *port,
458 struct ktermios *new,
459 struct ktermios *old)
John Rigby25ae3a02008-01-29 04:28:56 +1100460{
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000461 unsigned int baud;
462 unsigned int divisor;
463
464 /*
465 * The "MPC5121e Microcontroller Reference Manual, Rev. 3" says on
466 * pg. 30-10 that the chip supports a /32 and a /10 prescaler.
467 * Furthermore, it states that "After reset, the prescaler by 10
468 * for the UART mode is selected", but the reset register value is
469 * 0x0000 which means a /32 prescaler. This is wrong.
470 *
471 * In reality using /32 prescaler doesn't work, as it is not supported!
472 * Use /16 or /10 prescaler, see "MPC5121e Hardware Design Guide",
473 * Chapter 4.1 PSC in UART Mode.
474 * Calculate with a /16 prescaler here.
475 */
476
477 /* uartclk contains the ips freq */
478 baud = uart_get_baud_rate(port, new, old,
479 port->uartclk / (16 * 0xffff) + 1,
480 port->uartclk / 16);
481 divisor = (port->uartclk + 8 * baud) / (16 * baud);
482
483 /* enable the /16 prescaler and set the divisor */
484 mpc52xx_set_divisor(PSC(port), 0xdd00, divisor);
485 return baud;
John Rigby25ae3a02008-01-29 04:28:56 +1100486}
487
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700488/* Init PSC FIFO Controller */
489static int __init mpc512x_psc_fifoc_init(void)
490{
491 struct device_node *np;
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700492
493 np = of_find_compatible_node(NULL, NULL,
494 "fsl,mpc5121-psc-fifo");
495 if (!np) {
496 pr_err("%s: Can't find FIFOC node\n", __func__);
497 return -ENODEV;
498 }
499
500 psc_fifoc = of_iomap(np, 0);
501 if (!psc_fifoc) {
502 pr_err("%s: Can't map FIFOC\n", __func__);
Julia Lawall05f25ab2010-08-29 11:52:41 +0200503 of_node_put(np);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700504 return -ENODEV;
505 }
506
507 psc_fifoc_irq = irq_of_parse_and_map(np, 0);
508 of_node_put(np);
509 if (psc_fifoc_irq == NO_IRQ) {
510 pr_err("%s: Can't get FIFOC irq\n", __func__);
511 iounmap(psc_fifoc);
512 return -ENODEV;
513 }
514
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700515 return 0;
516}
517
518static void __exit mpc512x_psc_fifoc_uninit(void)
519{
520 iounmap(psc_fifoc);
521}
522
523/* 512x specific interrupt handler. The caller holds the port lock */
524static irqreturn_t mpc512x_psc_handle_irq(struct uart_port *port)
525{
526 unsigned long fifoc_int;
527 int psc_num;
528
529 /* Read pending PSC FIFOC interrupts */
530 fifoc_int = in_be32(&psc_fifoc->fifoc_int);
531
532 /* Check if it is an interrupt for this port */
533 psc_num = (port->mapbase & 0xf00) >> 8;
534 if (test_bit(psc_num, &fifoc_int) ||
535 test_bit(psc_num + 16, &fifoc_int))
536 return mpc5xxx_uart_process_int(port);
537
538 return IRQ_NONE;
539}
540
541static int mpc512x_psc_clock(struct uart_port *port, int enable)
542{
543 struct clk *psc_clk;
544 int psc_num;
545 char clk_name[10];
546
547 if (uart_console(port))
548 return 0;
549
550 psc_num = (port->mapbase & 0xf00) >> 8;
551 snprintf(clk_name, sizeof(clk_name), "psc%d_clk", psc_num);
552 psc_clk = clk_get(port->dev, clk_name);
553 if (IS_ERR(psc_clk)) {
554 dev_err(port->dev, "Failed to get PSC clock entry!\n");
555 return -ENODEV;
556 }
557
558 dev_dbg(port->dev, "%s %sable\n", clk_name, enable ? "en" : "dis");
559
560 if (enable)
561 clk_enable(psc_clk);
562 else
563 clk_disable(psc_clk);
564
565 return 0;
566}
567
568static void mpc512x_psc_get_irq(struct uart_port *port, struct device_node *np)
569{
570 port->irqflags = IRQF_SHARED;
571 port->irq = psc_fifoc_irq;
572}
573
John Rigby25ae3a02008-01-29 04:28:56 +1100574static struct psc_ops mpc512x_psc_ops = {
575 .fifo_init = mpc512x_psc_fifo_init,
576 .raw_rx_rdy = mpc512x_psc_raw_rx_rdy,
577 .raw_tx_rdy = mpc512x_psc_raw_tx_rdy,
578 .rx_rdy = mpc512x_psc_rx_rdy,
579 .tx_rdy = mpc512x_psc_tx_rdy,
580 .tx_empty = mpc512x_psc_tx_empty,
581 .stop_rx = mpc512x_psc_stop_rx,
582 .start_tx = mpc512x_psc_start_tx,
583 .stop_tx = mpc512x_psc_stop_tx,
584 .rx_clr_irq = mpc512x_psc_rx_clr_irq,
585 .tx_clr_irq = mpc512x_psc_tx_clr_irq,
586 .write_char = mpc512x_psc_write_char,
587 .read_char = mpc512x_psc_read_char,
588 .cw_disable_ints = mpc512x_psc_cw_disable_ints,
589 .cw_restore_ints = mpc512x_psc_cw_restore_ints,
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000590 .set_baudrate = mpc512x_psc_set_baudrate,
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700591 .clock = mpc512x_psc_clock,
592 .fifoc_init = mpc512x_psc_fifoc_init,
593 .fifoc_uninit = mpc512x_psc_fifoc_uninit,
594 .get_irq = mpc512x_psc_get_irq,
595 .handle_irq = mpc512x_psc_handle_irq,
John Rigby25ae3a02008-01-29 04:28:56 +1100596};
597#endif
598
599static struct psc_ops *psc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601/* ======================================================================== */
602/* UART operations */
603/* ======================================================================== */
604
Grant Likely9b9129e2006-11-27 14:21:01 -0700605static unsigned int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606mpc52xx_uart_tx_empty(struct uart_port *port)
607{
John Rigby599f0302008-01-29 04:28:55 +1100608 return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
Grant Likely9b9129e2006-11-27 14:21:01 -0700611static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
613{
Wolfram Sangaec739e2008-12-21 02:54:32 -0700614 if (mctrl & TIOCM_RTS)
615 out_8(&PSC(port)->op1, MPC52xx_PSC_OP_RTS);
616 else
617 out_8(&PSC(port)->op0, MPC52xx_PSC_OP_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
Grant Likely9b9129e2006-11-27 14:21:01 -0700620static unsigned int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621mpc52xx_uart_get_mctrl(struct uart_port *port)
622{
Wolfram Sangaec739e2008-12-21 02:54:32 -0700623 unsigned int ret = TIOCM_DSR;
624 u8 status = in_8(&PSC(port)->mpc52xx_psc_ipcr);
625
626 if (!(status & MPC52xx_PSC_CTS))
627 ret |= TIOCM_CTS;
628 if (!(status & MPC52xx_PSC_DCD))
629 ret |= TIOCM_CAR;
630
631 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
Grant Likely9b9129e2006-11-27 14:21:01 -0700634static void
Russell Kingb129a8c2005-08-31 10:12:14 +0100635mpc52xx_uart_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
637 /* port->lock taken by caller */
John Rigby599f0302008-01-29 04:28:55 +1100638 psc_ops->stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Grant Likely9b9129e2006-11-27 14:21:01 -0700641static void
Russell Kingb129a8c2005-08-31 10:12:14 +0100642mpc52xx_uart_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
644 /* port->lock taken by caller */
John Rigby599f0302008-01-29 04:28:55 +1100645 psc_ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
Grant Likely9b9129e2006-11-27 14:21:01 -0700648static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649mpc52xx_uart_send_xchar(struct uart_port *port, char ch)
650{
651 unsigned long flags;
652 spin_lock_irqsave(&port->lock, flags);
Grant Likely9b9129e2006-11-27 14:21:01 -0700653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 port->x_char = ch;
655 if (ch) {
656 /* Make sure tx interrupts are on */
657 /* Truly necessary ??? They should be anyway */
John Rigby599f0302008-01-29 04:28:55 +1100658 psc_ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
Grant Likely9b9129e2006-11-27 14:21:01 -0700660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 spin_unlock_irqrestore(&port->lock, flags);
662}
663
664static void
665mpc52xx_uart_stop_rx(struct uart_port *port)
666{
667 /* port->lock taken by caller */
John Rigby599f0302008-01-29 04:28:55 +1100668 psc_ops->stop_rx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
671static void
672mpc52xx_uart_enable_ms(struct uart_port *port)
673{
Wolfram Sangaec739e2008-12-21 02:54:32 -0700674 struct mpc52xx_psc __iomem *psc = PSC(port);
675
676 /* clear D_*-bits by reading them */
677 in_8(&psc->mpc52xx_psc_ipcr);
678 /* enable CTS and DCD as IPC interrupts */
679 out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD);
680
681 port->read_status_mask |= MPC52xx_PSC_IMR_IPC;
682 out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
685static void
686mpc52xx_uart_break_ctl(struct uart_port *port, int ctl)
687{
688 unsigned long flags;
689 spin_lock_irqsave(&port->lock, flags);
690
John Rigby406b7d42008-01-17 08:37:25 +1100691 if (ctl == -1)
692 out_8(&PSC(port)->command, MPC52xx_PSC_START_BRK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 else
John Rigby406b7d42008-01-17 08:37:25 +1100694 out_8(&PSC(port)->command, MPC52xx_PSC_STOP_BRK);
Grant Likely9b9129e2006-11-27 14:21:01 -0700695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 spin_unlock_irqrestore(&port->lock, flags);
697}
698
699static int
700mpc52xx_uart_startup(struct uart_port *port)
701{
702 struct mpc52xx_psc __iomem *psc = PSC(port);
703 int ret;
704
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700705 if (psc_ops->clock) {
706 ret = psc_ops->clock(port, 1);
707 if (ret)
708 return ret;
709 }
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 /* Request IRQ */
712 ret = request_irq(port->irq, mpc52xx_uart_int,
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700713 port->irqflags, "mpc52xx_psc_uart", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (ret)
715 return ret;
716
717 /* Reset/activate the port, clear and enable interrupts */
John Rigby406b7d42008-01-17 08:37:25 +1100718 out_8(&psc->command, MPC52xx_PSC_RST_RX);
719 out_8(&psc->command, MPC52xx_PSC_RST_TX);
Grant Likely9b9129e2006-11-27 14:21:01 -0700720
John Rigby406b7d42008-01-17 08:37:25 +1100721 out_be32(&psc->sicr, 0); /* UART mode DCD ignored */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
John Rigby599f0302008-01-29 04:28:55 +1100723 psc_ops->fifo_init(port);
Grant Likely9b9129e2006-11-27 14:21:01 -0700724
John Rigby406b7d42008-01-17 08:37:25 +1100725 out_8(&psc->command, MPC52xx_PSC_TX_ENABLE);
726 out_8(&psc->command, MPC52xx_PSC_RX_ENABLE);
Grant Likely9b9129e2006-11-27 14:21:01 -0700727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return 0;
729}
730
731static void
732mpc52xx_uart_shutdown(struct uart_port *port)
733{
734 struct mpc52xx_psc __iomem *psc = PSC(port);
Grant Likely9b9129e2006-11-27 14:21:01 -0700735
Grant Likelya3481192007-05-07 01:38:51 +1000736 /* Shut down the port. Leave TX active if on a console port */
John Rigby406b7d42008-01-17 08:37:25 +1100737 out_8(&psc->command, MPC52xx_PSC_RST_RX);
Grant Likelya3481192007-05-07 01:38:51 +1000738 if (!uart_console(port))
John Rigby406b7d42008-01-17 08:37:25 +1100739 out_8(&psc->command, MPC52xx_PSC_RST_TX);
Grant Likely9b9129e2006-11-27 14:21:01 -0700740
741 port->read_status_mask = 0;
John Rigby406b7d42008-01-17 08:37:25 +1100742 out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Anatolij Gustschin6acc6832010-02-16 22:30:03 -0700744 if (psc_ops->clock)
745 psc_ops->clock(port, 0);
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 /* Release interrupt */
748 free_irq(port->irq, port);
749}
750
Grant Likely9b9129e2006-11-27 14:21:01 -0700751static void
Alan Cox606d0992006-12-08 02:38:45 -0800752mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new,
John Rigby406b7d42008-01-17 08:37:25 +1100753 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 struct mpc52xx_psc __iomem *psc = PSC(port);
756 unsigned long flags;
757 unsigned char mr1, mr2;
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000758 unsigned int j;
759 unsigned int baud;
Grant Likely9b9129e2006-11-27 14:21:01 -0700760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /* Prepare what we're gonna write */
762 mr1 = 0;
Grant Likely9b9129e2006-11-27 14:21:01 -0700763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 switch (new->c_cflag & CSIZE) {
John Rigby406b7d42008-01-17 08:37:25 +1100765 case CS5: mr1 |= MPC52xx_PSC_MODE_5_BITS;
766 break;
767 case CS6: mr1 |= MPC52xx_PSC_MODE_6_BITS;
768 break;
769 case CS7: mr1 |= MPC52xx_PSC_MODE_7_BITS;
770 break;
771 case CS8:
772 default: mr1 |= MPC52xx_PSC_MODE_8_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
775 if (new->c_cflag & PARENB) {
776 mr1 |= (new->c_cflag & PARODD) ?
777 MPC52xx_PSC_MODE_PARODD : MPC52xx_PSC_MODE_PAREVEN;
778 } else
779 mr1 |= MPC52xx_PSC_MODE_PARNONE;
Grant Likely9b9129e2006-11-27 14:21:01 -0700780
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 mr2 = 0;
783
784 if (new->c_cflag & CSTOPB)
785 mr2 |= MPC52xx_PSC_MODE_TWO_STOP;
786 else
787 mr2 |= ((new->c_cflag & CSIZE) == CS5) ?
788 MPC52xx_PSC_MODE_ONE_STOP_5_BITS :
789 MPC52xx_PSC_MODE_ONE_STOP;
790
Wolfram Sangaec739e2008-12-21 02:54:32 -0700791 if (new->c_cflag & CRTSCTS) {
792 mr1 |= MPC52xx_PSC_MODE_RXRTS;
793 mr2 |= MPC52xx_PSC_MODE_TXCTS;
794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /* Get the lock */
797 spin_lock_irqsave(&port->lock, flags);
798
Nick Andrewc4f01242008-12-05 16:34:46 +0000799 /* Do our best to flush TX & RX, so we don't lose anything */
800 /* But we don't wait indefinitely ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 j = 5000000; /* Maximum wait */
802 /* FIXME Can't receive chars since set_termios might be called at early
803 * boot for the console, all stuff is not yet ready to receive at that
804 * time and that just makes the kernel oops */
805 /* while (j-- && mpc52xx_uart_int_rx_chars(port)); */
John Rigby599f0302008-01-29 04:28:55 +1100806 while (!mpc52xx_uart_tx_empty(port) && --j)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 udelay(1);
808
809 if (!j)
John Rigby406b7d42008-01-17 08:37:25 +1100810 printk(KERN_ERR "mpc52xx_uart.c: "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 "Unable to flush RX & TX fifos in-time in set_termios."
John Rigby406b7d42008-01-17 08:37:25 +1100812 "Some chars may have been lost.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 /* Reset the TX & RX */
John Rigby406b7d42008-01-17 08:37:25 +1100815 out_8(&psc->command, MPC52xx_PSC_RST_RX);
816 out_8(&psc->command, MPC52xx_PSC_RST_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 /* Send new mode settings */
John Rigby406b7d42008-01-17 08:37:25 +1100819 out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1);
820 out_8(&psc->mode, mr1);
821 out_8(&psc->mode, mr2);
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +0000822 baud = psc_ops->set_baudrate(port, new, old);
823
824 /* Update the per-port timeout */
825 uart_update_timeout(port, new->c_cflag, baud);
Grant Likely9b9129e2006-11-27 14:21:01 -0700826
Wolfram Sangaec739e2008-12-21 02:54:32 -0700827 if (UART_ENABLE_MS(port, new->c_cflag))
828 mpc52xx_uart_enable_ms(port);
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* Reenable TX & RX */
John Rigby406b7d42008-01-17 08:37:25 +1100831 out_8(&psc->command, MPC52xx_PSC_TX_ENABLE);
832 out_8(&psc->command, MPC52xx_PSC_RX_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /* We're all set, release the lock */
835 spin_unlock_irqrestore(&port->lock, flags);
836}
837
838static const char *
839mpc52xx_uart_type(struct uart_port *port)
840{
841 return port->type == PORT_MPC52xx ? "MPC52xx PSC" : NULL;
842}
843
844static void
845mpc52xx_uart_release_port(struct uart_port *port)
846{
John Rigby406b7d42008-01-17 08:37:25 +1100847 /* remapped by us ? */
848 if (port->flags & UPF_IOREMAP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 iounmap(port->membase);
850 port->membase = NULL;
851 }
852
Grant Likelyb9272df2006-11-27 14:21:02 -0700853 release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
856static int
857mpc52xx_uart_request_port(struct uart_port *port)
858{
Amol Ladbe618f52006-09-30 23:29:23 -0700859 int err;
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (port->flags & UPF_IOREMAP) /* Need to remap ? */
Grant Likelyb9272df2006-11-27 14:21:02 -0700862 port->membase = ioremap(port->mapbase,
John Rigby406b7d42008-01-17 08:37:25 +1100863 sizeof(struct mpc52xx_psc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 if (!port->membase)
866 return -EINVAL;
867
Grant Likelyb9272df2006-11-27 14:21:02 -0700868 err = request_mem_region(port->mapbase, sizeof(struct mpc52xx_psc),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 "mpc52xx_psc_uart") != NULL ? 0 : -EBUSY;
Amol Ladbe618f52006-09-30 23:29:23 -0700870
871 if (err && (port->flags & UPF_IOREMAP)) {
872 iounmap(port->membase);
873 port->membase = NULL;
874 }
875
876 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
879static void
880mpc52xx_uart_config_port(struct uart_port *port, int flags)
881{
John Rigby406b7d42008-01-17 08:37:25 +1100882 if ((flags & UART_CONFIG_TYPE)
883 && (mpc52xx_uart_request_port(port) == 0))
884 port->type = PORT_MPC52xx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
887static int
888mpc52xx_uart_verify_port(struct uart_port *port, struct serial_struct *ser)
889{
John Rigby406b7d42008-01-17 08:37:25 +1100890 if (ser->type != PORT_UNKNOWN && ser->type != PORT_MPC52xx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return -EINVAL;
892
John Rigby406b7d42008-01-17 08:37:25 +1100893 if ((ser->irq != port->irq) ||
Julia Lawallb7a82122009-10-15 09:58:28 -0600894 (ser->io_type != UPIO_MEM) ||
John Rigby406b7d42008-01-17 08:37:25 +1100895 (ser->baud_base != port->uartclk) ||
896 (ser->iomem_base != (void *)port->mapbase) ||
897 (ser->hub6 != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return -EINVAL;
899
900 return 0;
901}
902
903
904static struct uart_ops mpc52xx_uart_ops = {
905 .tx_empty = mpc52xx_uart_tx_empty,
906 .set_mctrl = mpc52xx_uart_set_mctrl,
907 .get_mctrl = mpc52xx_uart_get_mctrl,
908 .stop_tx = mpc52xx_uart_stop_tx,
909 .start_tx = mpc52xx_uart_start_tx,
910 .send_xchar = mpc52xx_uart_send_xchar,
911 .stop_rx = mpc52xx_uart_stop_rx,
912 .enable_ms = mpc52xx_uart_enable_ms,
913 .break_ctl = mpc52xx_uart_break_ctl,
914 .startup = mpc52xx_uart_startup,
915 .shutdown = mpc52xx_uart_shutdown,
916 .set_termios = mpc52xx_uart_set_termios,
917/* .pm = mpc52xx_uart_pm, Not supported yet */
918/* .set_wake = mpc52xx_uart_set_wake, Not supported yet */
919 .type = mpc52xx_uart_type,
920 .release_port = mpc52xx_uart_release_port,
921 .request_port = mpc52xx_uart_request_port,
922 .config_port = mpc52xx_uart_config_port,
923 .verify_port = mpc52xx_uart_verify_port
924};
925
Grant Likely9b9129e2006-11-27 14:21:01 -0700926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927/* ======================================================================== */
928/* Interrupt handling */
929/* ======================================================================== */
Grant Likely9b9129e2006-11-27 14:21:01 -0700930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931static inline int
David Howells7d12e782006-10-05 14:55:46 +0100932mpc52xx_uart_int_rx_chars(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700934 struct tty_struct *tty = port->state->port.tty;
Alan Cox33f0f882006-01-09 20:54:13 -0800935 unsigned char ch, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 unsigned short status;
937
938 /* While we can read, do so ! */
John Rigby599f0302008-01-29 04:28:55 +1100939 while (psc_ops->raw_rx_rdy(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* Get the char */
John Rigby599f0302008-01-29 04:28:55 +1100941 ch = psc_ops->read_char(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 /* Handle sysreq char */
944#ifdef SUPPORT_SYSRQ
David Howells7d12e782006-10-05 14:55:46 +0100945 if (uart_handle_sysrq_char(port, ch)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 port->sysrq = 0;
947 continue;
948 }
949#endif
950
951 /* Store it */
Alan Cox33f0f882006-01-09 20:54:13 -0800952
953 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 port->icount.rx++;
Grant Likely9b9129e2006-11-27 14:21:01 -0700955
John Rigby599f0302008-01-29 04:28:55 +1100956 status = in_be16(&PSC(port)->mpc52xx_psc_status);
957
John Rigby406b7d42008-01-17 08:37:25 +1100958 if (status & (MPC52xx_PSC_SR_PE |
959 MPC52xx_PSC_SR_FE |
960 MPC52xx_PSC_SR_RB)) {
Grant Likely9b9129e2006-11-27 14:21:01 -0700961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (status & MPC52xx_PSC_SR_RB) {
Alan Cox33f0f882006-01-09 20:54:13 -0800963 flag = TTY_BREAK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 uart_handle_break(port);
René Bürgelb6514982008-12-21 02:54:31 -0700965 port->icount.brk++;
966 } else if (status & MPC52xx_PSC_SR_PE) {
Alan Cox33f0f882006-01-09 20:54:13 -0800967 flag = TTY_PARITY;
René Bürgelb6514982008-12-21 02:54:31 -0700968 port->icount.parity++;
969 }
970 else if (status & MPC52xx_PSC_SR_FE) {
Alan Cox33f0f882006-01-09 20:54:13 -0800971 flag = TTY_FRAME;
René Bürgelb6514982008-12-21 02:54:31 -0700972 port->icount.frame++;
973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 /* Clear error condition */
John Rigby406b7d42008-01-17 08:37:25 +1100976 out_8(&PSC(port)->command, MPC52xx_PSC_RST_ERR_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 }
Alan Cox33f0f882006-01-09 20:54:13 -0800979 tty_insert_flip_char(tty, ch, flag);
980 if (status & MPC52xx_PSC_SR_OE) {
981 /*
982 * Overrun is special, since it's
983 * reported immediately, and doesn't
984 * affect the current character
985 */
986 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
René Bürgelb6514982008-12-21 02:54:31 -0700987 port->icount.overrun++;
Alan Cox33f0f882006-01-09 20:54:13 -0800988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990
Andrew Liufbe543b2008-04-29 17:36:25 +1000991 spin_unlock(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 tty_flip_buffer_push(tty);
Andrew Liufbe543b2008-04-29 17:36:25 +1000993 spin_lock(&port->lock);
Grant Likely9b9129e2006-11-27 14:21:01 -0700994
John Rigby599f0302008-01-29 04:28:55 +1100995 return psc_ops->raw_rx_rdy(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
998static inline int
999mpc52xx_uart_int_tx_chars(struct uart_port *port)
1000{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001001 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 /* Process out of band chars */
1004 if (port->x_char) {
John Rigby599f0302008-01-29 04:28:55 +11001005 psc_ops->write_char(port, port->x_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 port->icount.tx++;
1007 port->x_char = 0;
1008 return 1;
1009 }
1010
1011 /* Nothing to do ? */
1012 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001013 mpc52xx_uart_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return 0;
1015 }
1016
1017 /* Send chars */
John Rigby599f0302008-01-29 04:28:55 +11001018 while (psc_ops->raw_tx_rdy(port)) {
1019 psc_ops->write_char(port, xmit->buf[xmit->tail]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1021 port->icount.tx++;
1022 if (uart_circ_empty(xmit))
1023 break;
1024 }
1025
1026 /* Wake up */
1027 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1028 uart_write_wakeup(port);
1029
1030 /* Maybe we're done after all */
1031 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001032 mpc52xx_uart_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 return 0;
1034 }
1035
1036 return 1;
1037}
1038
Grant Likely9b9129e2006-11-27 14:21:01 -07001039static irqreturn_t
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001040mpc5xxx_uart_process_int(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 unsigned long pass = ISR_PASS_LIMIT;
1043 unsigned int keepgoing;
Wolfram Sangaec739e2008-12-21 02:54:32 -07001044 u8 status;
Grant Likely9b9129e2006-11-27 14:21:01 -07001045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 /* While we have stuff to do, we continue */
1047 do {
1048 /* If we don't find anything to do, we stop */
Grant Likely9b9129e2006-11-27 14:21:01 -07001049 keepgoing = 0;
1050
John Rigby599f0302008-01-29 04:28:55 +11001051 psc_ops->rx_clr_irq(port);
1052 if (psc_ops->rx_rdy(port))
David Howells7d12e782006-10-05 14:55:46 +01001053 keepgoing |= mpc52xx_uart_int_rx_chars(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
John Rigby599f0302008-01-29 04:28:55 +11001055 psc_ops->tx_clr_irq(port);
1056 if (psc_ops->tx_rdy(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 keepgoing |= mpc52xx_uart_int_tx_chars(port);
Grant Likely9b9129e2006-11-27 14:21:01 -07001058
Wolfram Sangaec739e2008-12-21 02:54:32 -07001059 status = in_8(&PSC(port)->mpc52xx_psc_ipcr);
1060 if (status & MPC52xx_PSC_D_DCD)
1061 uart_handle_dcd_change(port, !(status & MPC52xx_PSC_DCD));
1062
1063 if (status & MPC52xx_PSC_D_CTS)
1064 uart_handle_cts_change(port, !(status & MPC52xx_PSC_CTS));
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 /* Limit number of iteration */
John Rigby406b7d42008-01-17 08:37:25 +11001067 if (!(--pass))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 keepgoing = 0;
1069
1070 } while (keepgoing);
Grant Likely9b9129e2006-11-27 14:21:01 -07001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 return IRQ_HANDLED;
1073}
1074
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001075static irqreturn_t
1076mpc52xx_uart_int(int irq, void *dev_id)
1077{
1078 struct uart_port *port = dev_id;
1079 irqreturn_t ret;
1080
1081 spin_lock(&port->lock);
1082
1083 ret = psc_ops->handle_irq(port);
1084
1085 spin_unlock(&port->lock);
1086
1087 return ret;
1088}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090/* ======================================================================== */
1091/* Console ( if applicable ) */
1092/* ======================================================================== */
1093
1094#ifdef CONFIG_SERIAL_MPC52xx_CONSOLE
1095
1096static void __init
1097mpc52xx_console_get_options(struct uart_port *port,
John Rigby406b7d42008-01-17 08:37:25 +11001098 int *baud, int *parity, int *bits, int *flow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 struct mpc52xx_psc __iomem *psc = PSC(port);
1101 unsigned char mr1;
1102
Grant Likelyb9272df2006-11-27 14:21:02 -07001103 pr_debug("mpc52xx_console_get_options(port=%p)\n", port);
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 /* Read the mode registers */
John Rigby406b7d42008-01-17 08:37:25 +11001106 out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 mr1 = in_8(&psc->mode);
Grant Likely9b9129e2006-11-27 14:21:01 -07001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 /* CT{U,L}R are write-only ! */
Grant Likelyb9272df2006-11-27 14:21:02 -07001110 *baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 /* Parse them */
1113 switch (mr1 & MPC52xx_PSC_MODE_BITS_MASK) {
John Rigby406b7d42008-01-17 08:37:25 +11001114 case MPC52xx_PSC_MODE_5_BITS:
1115 *bits = 5;
1116 break;
1117 case MPC52xx_PSC_MODE_6_BITS:
1118 *bits = 6;
1119 break;
1120 case MPC52xx_PSC_MODE_7_BITS:
1121 *bits = 7;
1122 break;
1123 case MPC52xx_PSC_MODE_8_BITS:
1124 default:
1125 *bits = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
Grant Likely9b9129e2006-11-27 14:21:01 -07001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (mr1 & MPC52xx_PSC_MODE_PARNONE)
1129 *parity = 'n';
1130 else
1131 *parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e';
1132}
1133
Grant Likely9b9129e2006-11-27 14:21:01 -07001134static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135mpc52xx_console_write(struct console *co, const char *s, unsigned int count)
1136{
1137 struct uart_port *port = &mpc52xx_uart_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 unsigned int i, j;
Grant Likely9b9129e2006-11-27 14:21:01 -07001139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 /* Disable interrupts */
John Rigby599f0302008-01-29 04:28:55 +11001141 psc_ops->cw_disable_ints(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 /* Wait the TX buffer to be empty */
Grant Likely9b9129e2006-11-27 14:21:01 -07001144 j = 5000000; /* Maximum wait */
John Rigby599f0302008-01-29 04:28:55 +11001145 while (!mpc52xx_uart_tx_empty(port) && --j)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 udelay(1);
1147
1148 /* Write all the chars */
Russell Kingd3587882006-03-20 20:00:09 +00001149 for (i = 0; i < count; i++, s++) {
1150 /* Line return handling */
1151 if (*s == '\n')
John Rigby599f0302008-01-29 04:28:55 +11001152 psc_ops->write_char(port, '\r');
Grant Likely9b9129e2006-11-27 14:21:01 -07001153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 /* Send the char */
John Rigby599f0302008-01-29 04:28:55 +11001155 psc_ops->write_char(port, *s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 /* Wait the TX buffer to be empty */
Grant Likely9b9129e2006-11-27 14:21:01 -07001158 j = 20000; /* Maximum wait */
John Rigby599f0302008-01-29 04:28:55 +11001159 while (!mpc52xx_uart_tx_empty(port) && --j)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 udelay(1);
1161 }
1162
1163 /* Restore interrupt state */
John Rigby599f0302008-01-29 04:28:55 +11001164 psc_ops->cw_restore_ints(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
Grant Likelyb9272df2006-11-27 14:21:02 -07001167
1168static int __init
1169mpc52xx_console_setup(struct console *co, char *options)
1170{
1171 struct uart_port *port = &mpc52xx_uart_ports[co->index];
1172 struct device_node *np = mpc52xx_uart_nodes[co->index];
John Rigby599f0302008-01-29 04:28:55 +11001173 unsigned int uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001174 struct resource res;
1175 int ret;
1176
1177 int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
1178 int bits = 8;
1179 int parity = 'n';
1180 int flow = 'n';
1181
1182 pr_debug("mpc52xx_console_setup co=%p, co->index=%i, options=%s\n",
1183 co, co->index, options);
1184
Roel Kluinb898f4f2009-05-28 14:34:29 -07001185 if ((co->index < 0) || (co->index >= MPC52xx_PSC_MAXNUM)) {
Grant Likelyb9272df2006-11-27 14:21:02 -07001186 pr_debug("PSC%x out of range\n", co->index);
1187 return -EINVAL;
1188 }
1189
1190 if (!np) {
1191 pr_debug("PSC%x not found in device tree\n", co->index);
1192 return -EINVAL;
1193 }
1194
1195 pr_debug("Console on ttyPSC%x is %s\n",
John Rigby406b7d42008-01-17 08:37:25 +11001196 co->index, mpc52xx_uart_nodes[co->index]->full_name);
Grant Likelyb9272df2006-11-27 14:21:02 -07001197
1198 /* Fetch register locations */
John Rigby406b7d42008-01-17 08:37:25 +11001199 ret = of_address_to_resource(np, 0, &res);
1200 if (ret) {
Grant Likelyb9272df2006-11-27 14:21:02 -07001201 pr_debug("Could not get resources for PSC%x\n", co->index);
1202 return ret;
1203 }
1204
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001205 uartclk = mpc5xxx_get_bus_frequency(np);
John Rigby599f0302008-01-29 04:28:55 +11001206 if (uartclk == 0) {
1207 pr_debug("Could not find uart clock frequency!\n");
Grant Likelyb9272df2006-11-27 14:21:02 -07001208 return -EINVAL;
1209 }
1210
1211 /* Basic port init. Needed since we use some uart_??? func before
1212 * real init for early access */
1213 spin_lock_init(&port->lock);
John Rigby599f0302008-01-29 04:28:55 +11001214 port->uartclk = uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001215 port->ops = &mpc52xx_uart_ops;
1216 port->mapbase = res.start;
1217 port->membase = ioremap(res.start, sizeof(struct mpc52xx_psc));
1218 port->irq = irq_of_parse_and_map(np, 0);
1219
1220 if (port->membase == NULL)
1221 return -EINVAL;
1222
Grant Likely5dd80d52007-10-13 22:37:02 -06001223 pr_debug("mpc52xx-psc uart at %p, mapped to %p, irq=%x, freq=%i\n",
John Rigby406b7d42008-01-17 08:37:25 +11001224 (void *)port->mapbase, port->membase,
1225 port->irq, port->uartclk);
Grant Likelyb9272df2006-11-27 14:21:02 -07001226
1227 /* Setup the port parameters accoding to options */
1228 if (options)
1229 uart_parse_options(options, &baud, &parity, &bits, &flow);
1230 else
1231 mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow);
1232
1233 pr_debug("Setting console parameters: %i %i%c1 flow=%c\n",
John Rigby406b7d42008-01-17 08:37:25 +11001234 baud, bits, parity, flow);
Grant Likelyb9272df2006-11-27 14:21:02 -07001235
1236 return uart_set_options(port, co, baud, parity, bits, flow);
1237}
Grant Likelyb9272df2006-11-27 14:21:02 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Sylvain Munaut2d8179c2006-01-06 00:11:31 -08001240static struct uart_driver mpc52xx_uart_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242static struct console mpc52xx_console = {
Sylvain Munautd62de3a2006-01-06 00:11:32 -08001243 .name = "ttyPSC",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 .write = mpc52xx_console_write,
1245 .device = uart_console_device,
1246 .setup = mpc52xx_console_setup,
1247 .flags = CON_PRINTBUFFER,
John Rigby406b7d42008-01-17 08:37:25 +11001248 .index = -1, /* Specified on the cmdline (e.g. console=ttyPSC0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 .data = &mpc52xx_uart_driver,
1250};
1251
Grant Likely9b9129e2006-11-27 14:21:01 -07001252
1253static int __init
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254mpc52xx_console_init(void)
1255{
Grant Likelyb9272df2006-11-27 14:21:02 -07001256 mpc52xx_uart_of_enumerate();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 register_console(&mpc52xx_console);
1258 return 0;
1259}
1260
1261console_initcall(mpc52xx_console_init);
1262
1263#define MPC52xx_PSC_CONSOLE &mpc52xx_console
1264#else
1265#define MPC52xx_PSC_CONSOLE NULL
1266#endif
1267
1268
1269/* ======================================================================== */
1270/* UART Driver */
1271/* ======================================================================== */
1272
1273static struct uart_driver mpc52xx_uart_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 .driver_name = "mpc52xx_psc_uart",
Sylvain Munautd62de3a2006-01-06 00:11:32 -08001275 .dev_name = "ttyPSC",
Sylvain Munautd62de3a2006-01-06 00:11:32 -08001276 .major = SERIAL_PSC_MAJOR,
1277 .minor = SERIAL_PSC_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 .nr = MPC52xx_PSC_MAXNUM,
1279 .cons = MPC52xx_PSC_CONSOLE,
1280};
1281
Grant Likelyb9272df2006-11-27 14:21:02 -07001282/* ======================================================================== */
1283/* OF Platform Driver */
1284/* ======================================================================== */
1285
Grant Likely52b80482008-02-06 22:29:25 -07001286static struct of_device_id mpc52xx_uart_of_match[] = {
1287#ifdef CONFIG_PPC_MPC52xx
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001288 { .compatible = "fsl,mpc5200b-psc-uart", .data = &mpc5200b_psc_ops, },
Grant Likely52b80482008-02-06 22:29:25 -07001289 { .compatible = "fsl,mpc5200-psc-uart", .data = &mpc52xx_psc_ops, },
1290 /* binding used by old lite5200 device trees: */
1291 { .compatible = "mpc5200-psc-uart", .data = &mpc52xx_psc_ops, },
1292 /* binding used by efika: */
1293 { .compatible = "mpc5200-serial", .data = &mpc52xx_psc_ops, },
1294#endif
1295#ifdef CONFIG_PPC_MPC512x
1296 { .compatible = "fsl,mpc5121-psc-uart", .data = &mpc512x_psc_ops, },
Grant Likely52b80482008-02-06 22:29:25 -07001297#endif
Grant Likelybc775ea2008-04-29 06:40:37 -06001298 {},
Grant Likely52b80482008-02-06 22:29:25 -07001299};
1300
Grant Likelyb9272df2006-11-27 14:21:02 -07001301static int __devinit
Grant Likely2dc11582010-08-06 09:25:50 -06001302mpc52xx_uart_of_probe(struct platform_device *op, const struct of_device_id *match)
Grant Likelyb9272df2006-11-27 14:21:02 -07001303{
1304 int idx = -1;
John Rigby599f0302008-01-29 04:28:55 +11001305 unsigned int uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001306 struct uart_port *port = NULL;
1307 struct resource res;
1308 int ret;
1309
1310 dev_dbg(&op->dev, "mpc52xx_uart_probe(op=%p, match=%p)\n", op, match);
1311
1312 /* Check validity & presence */
1313 for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++)
Grant Likely61c7a082010-04-13 16:12:29 -07001314 if (mpc52xx_uart_nodes[idx] == op->dev.of_node)
Grant Likelyb9272df2006-11-27 14:21:02 -07001315 break;
1316 if (idx >= MPC52xx_PSC_MAXNUM)
1317 return -EINVAL;
1318 pr_debug("Found %s assigned to ttyPSC%x\n",
John Rigby406b7d42008-01-17 08:37:25 +11001319 mpc52xx_uart_nodes[idx]->full_name, idx);
Grant Likelyb9272df2006-11-27 14:21:02 -07001320
Albrecht Dreß0d1f22e2010-04-26 11:18:12 +00001321 /* set the uart clock to the input clock of the psc, the different
1322 * prescalers are taken into account in the set_baudrate() methods
1323 * of the respective chip */
1324 uartclk = mpc5xxx_get_bus_frequency(op->dev.of_node);
John Rigby599f0302008-01-29 04:28:55 +11001325 if (uartclk == 0) {
1326 dev_dbg(&op->dev, "Could not find uart clock frequency!\n");
Grant Likelyb9272df2006-11-27 14:21:02 -07001327 return -EINVAL;
1328 }
1329
1330 /* Init the port structure */
1331 port = &mpc52xx_uart_ports[idx];
1332
1333 spin_lock_init(&port->lock);
John Rigby599f0302008-01-29 04:28:55 +11001334 port->uartclk = uartclk;
Grant Likelyb9272df2006-11-27 14:21:02 -07001335 port->fifosize = 512;
1336 port->iotype = UPIO_MEM;
1337 port->flags = UPF_BOOT_AUTOCONF |
John Rigby406b7d42008-01-17 08:37:25 +11001338 (uart_console(port) ? 0 : UPF_IOREMAP);
Grant Likelyb9272df2006-11-27 14:21:02 -07001339 port->line = idx;
1340 port->ops = &mpc52xx_uart_ops;
1341 port->dev = &op->dev;
1342
1343 /* Search for IRQ and mapbase */
Grant Likely61c7a082010-04-13 16:12:29 -07001344 ret = of_address_to_resource(op->dev.of_node, 0, &res);
John Rigby406b7d42008-01-17 08:37:25 +11001345 if (ret)
Grant Likelyb9272df2006-11-27 14:21:02 -07001346 return ret;
1347
1348 port->mapbase = res.start;
Wolfram Sang418441d92008-12-21 02:54:32 -07001349 if (!port->mapbase) {
1350 dev_dbg(&op->dev, "Could not allocate resources for PSC\n");
1351 return -EINVAL;
1352 }
1353
Grant Likely61c7a082010-04-13 16:12:29 -07001354 psc_ops->get_irq(port, op->dev.of_node);
Wolfram Sang418441d92008-12-21 02:54:32 -07001355 if (port->irq == NO_IRQ) {
1356 dev_dbg(&op->dev, "Could not get irq\n");
1357 return -EINVAL;
1358 }
Grant Likelyb9272df2006-11-27 14:21:02 -07001359
Grant Likely5dd80d52007-10-13 22:37:02 -06001360 dev_dbg(&op->dev, "mpc52xx-psc uart at %p, irq=%x, freq=%i\n",
John Rigby406b7d42008-01-17 08:37:25 +11001361 (void *)port->mapbase, port->irq, port->uartclk);
Grant Likelyb9272df2006-11-27 14:21:02 -07001362
Grant Likelyb9272df2006-11-27 14:21:02 -07001363 /* Add the port to the uart sub-system */
1364 ret = uart_add_one_port(&mpc52xx_uart_driver, port);
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001365 if (ret)
Wolfram Sang418441d92008-12-21 02:54:32 -07001366 return ret;
Grant Likelyb9272df2006-11-27 14:21:02 -07001367
Wolfram Sang418441d92008-12-21 02:54:32 -07001368 dev_set_drvdata(&op->dev, (void *)port);
1369 return 0;
Grant Likelyb9272df2006-11-27 14:21:02 -07001370}
1371
1372static int
Grant Likely2dc11582010-08-06 09:25:50 -06001373mpc52xx_uart_of_remove(struct platform_device *op)
Grant Likelyb9272df2006-11-27 14:21:02 -07001374{
1375 struct uart_port *port = dev_get_drvdata(&op->dev);
1376 dev_set_drvdata(&op->dev, NULL);
1377
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001378 if (port)
Grant Likelyb9272df2006-11-27 14:21:02 -07001379 uart_remove_one_port(&mpc52xx_uart_driver, port);
1380
1381 return 0;
1382}
1383
1384#ifdef CONFIG_PM
1385static int
Grant Likely2dc11582010-08-06 09:25:50 -06001386mpc52xx_uart_of_suspend(struct platform_device *op, pm_message_t state)
Grant Likelyb9272df2006-11-27 14:21:02 -07001387{
1388 struct uart_port *port = (struct uart_port *) dev_get_drvdata(&op->dev);
1389
1390 if (port)
1391 uart_suspend_port(&mpc52xx_uart_driver, port);
1392
1393 return 0;
1394}
1395
1396static int
Grant Likely2dc11582010-08-06 09:25:50 -06001397mpc52xx_uart_of_resume(struct platform_device *op)
Grant Likelyb9272df2006-11-27 14:21:02 -07001398{
1399 struct uart_port *port = (struct uart_port *) dev_get_drvdata(&op->dev);
1400
1401 if (port)
1402 uart_resume_port(&mpc52xx_uart_driver, port);
1403
1404 return 0;
1405}
1406#endif
1407
1408static void
Grant Likely3b5ebf82009-02-03 12:30:25 -07001409mpc52xx_uart_of_assign(struct device_node *np)
Grant Likelyb9272df2006-11-27 14:21:02 -07001410{
Grant Likelyb9272df2006-11-27 14:21:02 -07001411 int i;
1412
Grant Likely3b5ebf82009-02-03 12:30:25 -07001413 /* Find the first free PSC number */
Grant Likelyb9272df2006-11-27 14:21:02 -07001414 for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1415 if (mpc52xx_uart_nodes[i] == NULL) {
Grant Likely3b5ebf82009-02-03 12:30:25 -07001416 of_node_get(np);
1417 mpc52xx_uart_nodes[i] = np;
1418 return;
Grant Likelyb9272df2006-11-27 14:21:02 -07001419 }
1420 }
Grant Likelyb9272df2006-11-27 14:21:02 -07001421}
1422
1423static void
1424mpc52xx_uart_of_enumerate(void)
1425{
John Rigby406b7d42008-01-17 08:37:25 +11001426 static int enum_done;
Grant Likelyb9272df2006-11-27 14:21:02 -07001427 struct device_node *np;
John Rigby25ae3a02008-01-29 04:28:56 +11001428 const struct of_device_id *match;
Grant Likelyb9272df2006-11-27 14:21:02 -07001429 int i;
1430
1431 if (enum_done)
1432 return;
1433
Grant Likely3b5ebf82009-02-03 12:30:25 -07001434 /* Assign index to each PSC in device tree */
1435 for_each_matching_node(np, mpc52xx_uart_of_match) {
John Rigby25ae3a02008-01-29 04:28:56 +11001436 match = of_match_node(mpc52xx_uart_of_match, np);
John Rigby25ae3a02008-01-29 04:28:56 +11001437 psc_ops = match->data;
Grant Likely3b5ebf82009-02-03 12:30:25 -07001438 mpc52xx_uart_of_assign(np);
Grant Likelyb9272df2006-11-27 14:21:02 -07001439 }
1440
1441 enum_done = 1;
1442
1443 for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1444 if (mpc52xx_uart_nodes[i])
1445 pr_debug("%s assigned to ttyPSC%x\n",
John Rigby406b7d42008-01-17 08:37:25 +11001446 mpc52xx_uart_nodes[i]->full_name, i);
Grant Likelyb9272df2006-11-27 14:21:02 -07001447 }
1448}
1449
1450MODULE_DEVICE_TABLE(of, mpc52xx_uart_of_match);
1451
1452static struct of_platform_driver mpc52xx_uart_of_driver = {
Grant Likelyb9272df2006-11-27 14:21:02 -07001453 .probe = mpc52xx_uart_of_probe,
1454 .remove = mpc52xx_uart_of_remove,
1455#ifdef CONFIG_PM
1456 .suspend = mpc52xx_uart_of_suspend,
1457 .resume = mpc52xx_uart_of_resume,
1458#endif
Grant Likely40182942010-04-13 16:13:02 -07001459 .driver = {
1460 .name = "mpc52xx-psc-uart",
1461 .owner = THIS_MODULE,
1462 .of_match_table = mpc52xx_uart_of_match,
Grant Likelyb9272df2006-11-27 14:21:02 -07001463 },
1464};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466
1467/* ======================================================================== */
1468/* Module */
1469/* ======================================================================== */
1470
1471static int __init
1472mpc52xx_uart_init(void)
1473{
1474 int ret;
1475
Grant Likelyb9272df2006-11-27 14:21:02 -07001476 printk(KERN_INFO "Serial: MPC52xx PSC UART driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
John Rigby406b7d42008-01-17 08:37:25 +11001478 ret = uart_register_driver(&mpc52xx_uart_driver);
1479 if (ret) {
Grant Likelyb9272df2006-11-27 14:21:02 -07001480 printk(KERN_ERR "%s: uart_register_driver failed (%i)\n",
1481 __FILE__, ret);
1482 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484
Grant Likelyb9272df2006-11-27 14:21:02 -07001485 mpc52xx_uart_of_enumerate();
1486
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001487 /*
1488 * Map the PSC FIFO Controller and init if on MPC512x.
1489 */
Anatolij Gustschine6114fa2010-05-05 00:18:59 +02001490 if (psc_ops && psc_ops->fifoc_init) {
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001491 ret = psc_ops->fifoc_init();
1492 if (ret)
1493 return ret;
1494 }
1495
Grant Likelyb9272df2006-11-27 14:21:02 -07001496 ret = of_register_platform_driver(&mpc52xx_uart_of_driver);
1497 if (ret) {
1498 printk(KERN_ERR "%s: of_register_platform_driver failed (%i)\n",
1499 __FILE__, ret);
1500 uart_unregister_driver(&mpc52xx_uart_driver);
1501 return ret;
1502 }
Grant Likelyb9272df2006-11-27 14:21:02 -07001503
1504 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
1507static void __exit
1508mpc52xx_uart_exit(void)
1509{
Anatolij Gustschin6acc6832010-02-16 22:30:03 -07001510 if (psc_ops->fifoc_uninit)
1511 psc_ops->fifoc_uninit();
1512
Grant Likelyb9272df2006-11-27 14:21:02 -07001513 of_unregister_platform_driver(&mpc52xx_uart_of_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 uart_unregister_driver(&mpc52xx_uart_driver);
1515}
1516
1517
1518module_init(mpc52xx_uart_init);
1519module_exit(mpc52xx_uart_exit);
1520
1521MODULE_AUTHOR("Sylvain Munaut <tnt@246tNt.com>");
1522MODULE_DESCRIPTION("Freescale MPC52xx PSC UART");
1523MODULE_LICENSE("GPL");