blob: 9d11a75663e668462ca871851ac647529d9d8ad2 [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 *
Grant Likelyb9272df2006-11-27 14:21:02 -070019 * Copyright (C) 2006 Secret Lab Technologies Ltd.
20 * Grant Likely <grant.likely@secretlab.ca>
21 * Copyright (C) 2004-2006 Sylvain Munaut <tnt@246tNt.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Copyright (C) 2003 MontaVista, Software, Inc.
Grant Likely9b9129e2006-11-27 14:21:01 -070023 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * This file is licensed under the terms of the GNU General Public License
25 * version 2. This program is licensed "as is" without any warranty of any
26 * kind, whether express or implied.
27 */
Grant Likely9b9129e2006-11-27 14:21:01 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/* Platform device Usage :
30 *
31 * Since PSCs can have multiple function, the correct driver for each one
32 * is selected by calling mpc52xx_match_psc_function(...). The function
33 * handled by this driver is "uart".
34 *
35 * The driver init all necessary registers to place the PSC in uart mode without
36 * DCD. However, the pin multiplexing aren't changed and should be set either
37 * by the bootloader or in the platform init code.
38 *
39 * The idx field must be equal to the PSC index ( e.g. 0 for PSC1, 1 for PSC2,
Sylvain Munautd62de3a2006-01-06 00:11:32 -080040 * and so on). So the PSC1 is mapped to /dev/ttyPSC0, PSC2 to /dev/ttyPSC1 and
41 * so on. But be warned, it's an ABSOLUTE REQUIREMENT ! This is needed mainly
42 * fpr the console code : without this 1:1 mapping, at early boot time, when we
Uwe Zeisbergerc30fe7f2006-03-24 18:23:14 +010043 * are parsing the kernel args console=ttyPSC?, we wouldn't know which PSC it
Sylvain Munautd62de3a2006-01-06 00:11:32 -080044 * will be mapped to.
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
46
Grant Likelyb9272df2006-11-27 14:21:02 -070047/* OF Platform device Usage :
48 *
49 * This driver is only used for PSCs configured in uart mode. The device
50 * tree will have a node for each PSC in uart mode w/ device_type = "serial"
51 * and "mpc52xx-psc-uart" in the compatible string
52 *
53 * By default, PSC devices are enumerated in the order they are found. However
54 * a particular PSC number can be forces by adding 'device_no = <port#>'
55 * to the device node.
56 *
57 * The driver init all necessary registers to place the PSC in uart mode without
58 * DCD. However, the pin multiplexing aren't changed and should be set either
59 * by the bootloader or in the platform init code.
60 */
61
62#undef DEBUG
63
64#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/module.h>
66#include <linux/tty.h>
67#include <linux/serial.h>
68#include <linux/sysrq.h>
69#include <linux/console.h>
70
71#include <asm/delay.h>
72#include <asm/io.h>
73
Grant Likelyb9272df2006-11-27 14:21:02 -070074#if defined(CONFIG_PPC_MERGE)
75#include <asm/of_platform.h>
76#else
77#include <linux/platform_device.h>
78#endif
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <asm/mpc52xx.h>
81#include <asm/mpc52xx_psc.h>
82
83#if defined(CONFIG_SERIAL_MPC52xx_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
84#define SUPPORT_SYSRQ
85#endif
86
87#include <linux/serial_core.h>
88
89
Sylvain Munautd62de3a2006-01-06 00:11:32 -080090/* We've been assigned a range on the "Low-density serial ports" major */
91#define SERIAL_PSC_MAJOR 204
92#define SERIAL_PSC_MINOR 148
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95#define ISR_PASS_LIMIT 256 /* Max number of iteration in the interrupt */
96
97
98static struct uart_port mpc52xx_uart_ports[MPC52xx_PSC_MAXNUM];
99 /* Rem: - We use the read_status_mask as a shadow of
100 * psc->mpc52xx_psc_imr
101 * - It's important that is array is all zero on start as we
102 * use it to know if it's initialized or not ! If it's not sure
103 * it's cleared, then a memset(...,0,...) should be added to
104 * the console_init
105 */
Grant Likelyb9272df2006-11-27 14:21:02 -0700106#if defined(CONFIG_PPC_MERGE)
107/* lookup table for matching device nodes to index numbers */
108static struct device_node *mpc52xx_uart_nodes[MPC52xx_PSC_MAXNUM];
109
110static void mpc52xx_uart_of_enumerate(void);
111#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113#define PSC(port) ((struct mpc52xx_psc __iomem *)((port)->membase))
114
115
116/* Forward declaration of the interruption handling routine */
David Howells7d12e782006-10-05 14:55:46 +0100117static irqreturn_t mpc52xx_uart_int(int irq,void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119
120/* Simple macro to test if a port is console or not. This one is taken
121 * for serial_core.c and maybe should be moved to serial_core.h ? */
122#ifdef CONFIG_SERIAL_CORE_CONSOLE
123#define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line)
124#else
125#define uart_console(port) (0)
126#endif
127
Grant Likelyb9272df2006-11-27 14:21:02 -0700128#if defined(CONFIG_PPC_MERGE)
129static struct of_device_id mpc52xx_uart_of_match[] = {
130 { .type = "serial", .compatible = "mpc52xx-psc-uart", },
131 { .type = "serial", .compatible = "mpc5200-psc", }, /* Efika only! */
132 {},
133};
134#endif
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137/* ======================================================================== */
138/* UART operations */
139/* ======================================================================== */
140
Grant Likely9b9129e2006-11-27 14:21:01 -0700141static unsigned int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142mpc52xx_uart_tx_empty(struct uart_port *port)
143{
144 int status = in_be16(&PSC(port)->mpc52xx_psc_status);
145 return (status & MPC52xx_PSC_SR_TXEMP) ? TIOCSER_TEMT : 0;
146}
147
Grant Likely9b9129e2006-11-27 14:21:01 -0700148static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
150{
151 /* Not implemented */
152}
153
Grant Likely9b9129e2006-11-27 14:21:01 -0700154static unsigned int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155mpc52xx_uart_get_mctrl(struct uart_port *port)
156{
157 /* Not implemented */
158 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
159}
160
Grant Likely9b9129e2006-11-27 14:21:01 -0700161static void
Russell Kingb129a8c2005-08-31 10:12:14 +0100162mpc52xx_uart_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 /* port->lock taken by caller */
165 port->read_status_mask &= ~MPC52xx_PSC_IMR_TXRDY;
166 out_be16(&PSC(port)->mpc52xx_psc_imr,port->read_status_mask);
167}
168
Grant Likely9b9129e2006-11-27 14:21:01 -0700169static void
Russell Kingb129a8c2005-08-31 10:12:14 +0100170mpc52xx_uart_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 /* port->lock taken by caller */
173 port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY;
174 out_be16(&PSC(port)->mpc52xx_psc_imr,port->read_status_mask);
175}
176
Grant Likely9b9129e2006-11-27 14:21:01 -0700177static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178mpc52xx_uart_send_xchar(struct uart_port *port, char ch)
179{
180 unsigned long flags;
181 spin_lock_irqsave(&port->lock, flags);
Grant Likely9b9129e2006-11-27 14:21:01 -0700182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 port->x_char = ch;
184 if (ch) {
185 /* Make sure tx interrupts are on */
186 /* Truly necessary ??? They should be anyway */
187 port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY;
188 out_be16(&PSC(port)->mpc52xx_psc_imr,port->read_status_mask);
189 }
Grant Likely9b9129e2006-11-27 14:21:01 -0700190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 spin_unlock_irqrestore(&port->lock, flags);
192}
193
194static void
195mpc52xx_uart_stop_rx(struct uart_port *port)
196{
197 /* port->lock taken by caller */
198 port->read_status_mask &= ~MPC52xx_PSC_IMR_RXRDY;
199 out_be16(&PSC(port)->mpc52xx_psc_imr,port->read_status_mask);
200}
201
202static void
203mpc52xx_uart_enable_ms(struct uart_port *port)
204{
205 /* Not implemented */
206}
207
208static void
209mpc52xx_uart_break_ctl(struct uart_port *port, int ctl)
210{
211 unsigned long flags;
212 spin_lock_irqsave(&port->lock, flags);
213
214 if ( ctl == -1 )
215 out_8(&PSC(port)->command,MPC52xx_PSC_START_BRK);
216 else
217 out_8(&PSC(port)->command,MPC52xx_PSC_STOP_BRK);
Grant Likely9b9129e2006-11-27 14:21:01 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 spin_unlock_irqrestore(&port->lock, flags);
220}
221
222static int
223mpc52xx_uart_startup(struct uart_port *port)
224{
225 struct mpc52xx_psc __iomem *psc = PSC(port);
226 int ret;
227
228 /* Request IRQ */
229 ret = request_irq(port->irq, mpc52xx_uart_int,
Thomas Gleixner40663cc2006-07-01 19:29:43 -0700230 IRQF_DISABLED | IRQF_SAMPLE_RANDOM, "mpc52xx_psc_uart", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (ret)
232 return ret;
233
234 /* Reset/activate the port, clear and enable interrupts */
235 out_8(&psc->command,MPC52xx_PSC_RST_RX);
236 out_8(&psc->command,MPC52xx_PSC_RST_TX);
Grant Likely9b9129e2006-11-27 14:21:01 -0700237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 out_be32(&psc->sicr,0); /* UART mode DCD ignored */
239
240 out_be16(&psc->mpc52xx_psc_clock_select, 0xdd00); /* /16 prescaler on */
Grant Likely9b9129e2006-11-27 14:21:01 -0700241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 out_8(&psc->rfcntl, 0x00);
243 out_be16(&psc->rfalarm, 0x1ff);
244 out_8(&psc->tfcntl, 0x07);
245 out_be16(&psc->tfalarm, 0x80);
246
247 port->read_status_mask |= MPC52xx_PSC_IMR_RXRDY | MPC52xx_PSC_IMR_TXRDY;
248 out_be16(&psc->mpc52xx_psc_imr,port->read_status_mask);
Grant Likely9b9129e2006-11-27 14:21:01 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 out_8(&psc->command,MPC52xx_PSC_TX_ENABLE);
251 out_8(&psc->command,MPC52xx_PSC_RX_ENABLE);
Grant Likely9b9129e2006-11-27 14:21:01 -0700252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return 0;
254}
255
256static void
257mpc52xx_uart_shutdown(struct uart_port *port)
258{
259 struct mpc52xx_psc __iomem *psc = PSC(port);
Grant Likely9b9129e2006-11-27 14:21:01 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* Shut down the port, interrupt and all */
262 out_8(&psc->command,MPC52xx_PSC_RST_RX);
263 out_8(&psc->command,MPC52xx_PSC_RST_TX);
Grant Likely9b9129e2006-11-27 14:21:01 -0700264
265 port->read_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 out_be16(&psc->mpc52xx_psc_imr,port->read_status_mask);
267
268 /* Release interrupt */
269 free_irq(port->irq, port);
270}
271
Grant Likely9b9129e2006-11-27 14:21:01 -0700272static void
Alan Cox606d0992006-12-08 02:38:45 -0800273mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new,
274 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 struct mpc52xx_psc __iomem *psc = PSC(port);
277 unsigned long flags;
278 unsigned char mr1, mr2;
279 unsigned short ctr;
280 unsigned int j, baud, quot;
Grant Likely9b9129e2006-11-27 14:21:01 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* Prepare what we're gonna write */
283 mr1 = 0;
Grant Likely9b9129e2006-11-27 14:21:01 -0700284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 switch (new->c_cflag & CSIZE) {
286 case CS5: mr1 |= MPC52xx_PSC_MODE_5_BITS;
287 break;
288 case CS6: mr1 |= MPC52xx_PSC_MODE_6_BITS;
289 break;
290 case CS7: mr1 |= MPC52xx_PSC_MODE_7_BITS;
291 break;
292 case CS8:
293 default: mr1 |= MPC52xx_PSC_MODE_8_BITS;
294 }
295
296 if (new->c_cflag & PARENB) {
297 mr1 |= (new->c_cflag & PARODD) ?
298 MPC52xx_PSC_MODE_PARODD : MPC52xx_PSC_MODE_PAREVEN;
299 } else
300 mr1 |= MPC52xx_PSC_MODE_PARNONE;
Grant Likely9b9129e2006-11-27 14:21:01 -0700301
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 mr2 = 0;
304
305 if (new->c_cflag & CSTOPB)
306 mr2 |= MPC52xx_PSC_MODE_TWO_STOP;
307 else
308 mr2 |= ((new->c_cflag & CSIZE) == CS5) ?
309 MPC52xx_PSC_MODE_ONE_STOP_5_BITS :
310 MPC52xx_PSC_MODE_ONE_STOP;
311
312
313 baud = uart_get_baud_rate(port, new, old, 0, port->uartclk/16);
314 quot = uart_get_divisor(port, baud);
315 ctr = quot & 0xffff;
Grant Likely9b9129e2006-11-27 14:21:01 -0700316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* Get the lock */
318 spin_lock_irqsave(&port->lock, flags);
319
320 /* Update the per-port timeout */
321 uart_update_timeout(port, new->c_cflag, baud);
322
323 /* Do our best to flush TX & RX, so we don't loose anything */
324 /* But we don't wait indefinitly ! */
325 j = 5000000; /* Maximum wait */
326 /* FIXME Can't receive chars since set_termios might be called at early
327 * boot for the console, all stuff is not yet ready to receive at that
328 * time and that just makes the kernel oops */
329 /* while (j-- && mpc52xx_uart_int_rx_chars(port)); */
Grant Likely9b9129e2006-11-27 14:21:01 -0700330 while (!(in_be16(&psc->mpc52xx_psc_status) & MPC52xx_PSC_SR_TXEMP) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 --j)
332 udelay(1);
333
334 if (!j)
335 printk( KERN_ERR "mpc52xx_uart.c: "
336 "Unable to flush RX & TX fifos in-time in set_termios."
Grant Likely9b9129e2006-11-27 14:21:01 -0700337 "Some chars may have been lost.\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /* Reset the TX & RX */
340 out_8(&psc->command,MPC52xx_PSC_RST_RX);
341 out_8(&psc->command,MPC52xx_PSC_RST_TX);
342
343 /* Send new mode settings */
344 out_8(&psc->command,MPC52xx_PSC_SEL_MODE_REG_1);
345 out_8(&psc->mode,mr1);
346 out_8(&psc->mode,mr2);
347 out_8(&psc->ctur,ctr >> 8);
348 out_8(&psc->ctlr,ctr & 0xff);
Grant Likely9b9129e2006-11-27 14:21:01 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /* Reenable TX & RX */
351 out_8(&psc->command,MPC52xx_PSC_TX_ENABLE);
352 out_8(&psc->command,MPC52xx_PSC_RX_ENABLE);
353
354 /* We're all set, release the lock */
355 spin_unlock_irqrestore(&port->lock, flags);
356}
357
358static const char *
359mpc52xx_uart_type(struct uart_port *port)
360{
361 return port->type == PORT_MPC52xx ? "MPC52xx PSC" : NULL;
362}
363
364static void
365mpc52xx_uart_release_port(struct uart_port *port)
366{
367 if (port->flags & UPF_IOREMAP) { /* remapped by us ? */
368 iounmap(port->membase);
369 port->membase = NULL;
370 }
371
Grant Likelyb9272df2006-11-27 14:21:02 -0700372 release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375static int
376mpc52xx_uart_request_port(struct uart_port *port)
377{
Amol Ladbe618f52006-09-30 23:29:23 -0700378 int err;
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (port->flags & UPF_IOREMAP) /* Need to remap ? */
Grant Likelyb9272df2006-11-27 14:21:02 -0700381 port->membase = ioremap(port->mapbase,
382 sizeof(struct mpc52xx_psc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 if (!port->membase)
385 return -EINVAL;
386
Grant Likelyb9272df2006-11-27 14:21:02 -0700387 err = request_mem_region(port->mapbase, sizeof(struct mpc52xx_psc),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 "mpc52xx_psc_uart") != NULL ? 0 : -EBUSY;
Amol Ladbe618f52006-09-30 23:29:23 -0700389
390 if (err && (port->flags & UPF_IOREMAP)) {
391 iounmap(port->membase);
392 port->membase = NULL;
393 }
394
395 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398static void
399mpc52xx_uart_config_port(struct uart_port *port, int flags)
400{
401 if ( (flags & UART_CONFIG_TYPE) &&
402 (mpc52xx_uart_request_port(port) == 0) )
403 port->type = PORT_MPC52xx;
404}
405
406static int
407mpc52xx_uart_verify_port(struct uart_port *port, struct serial_struct *ser)
408{
409 if ( ser->type != PORT_UNKNOWN && ser->type != PORT_MPC52xx )
410 return -EINVAL;
411
412 if ( (ser->irq != port->irq) ||
413 (ser->io_type != SERIAL_IO_MEM) ||
Grant Likely9b9129e2006-11-27 14:21:01 -0700414 (ser->baud_base != port->uartclk) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 (ser->iomem_base != (void*)port->mapbase) ||
416 (ser->hub6 != 0 ) )
417 return -EINVAL;
418
419 return 0;
420}
421
422
423static struct uart_ops mpc52xx_uart_ops = {
424 .tx_empty = mpc52xx_uart_tx_empty,
425 .set_mctrl = mpc52xx_uart_set_mctrl,
426 .get_mctrl = mpc52xx_uart_get_mctrl,
427 .stop_tx = mpc52xx_uart_stop_tx,
428 .start_tx = mpc52xx_uart_start_tx,
429 .send_xchar = mpc52xx_uart_send_xchar,
430 .stop_rx = mpc52xx_uart_stop_rx,
431 .enable_ms = mpc52xx_uart_enable_ms,
432 .break_ctl = mpc52xx_uart_break_ctl,
433 .startup = mpc52xx_uart_startup,
434 .shutdown = mpc52xx_uart_shutdown,
435 .set_termios = mpc52xx_uart_set_termios,
436/* .pm = mpc52xx_uart_pm, Not supported yet */
437/* .set_wake = mpc52xx_uart_set_wake, Not supported yet */
438 .type = mpc52xx_uart_type,
439 .release_port = mpc52xx_uart_release_port,
440 .request_port = mpc52xx_uart_request_port,
441 .config_port = mpc52xx_uart_config_port,
442 .verify_port = mpc52xx_uart_verify_port
443};
444
Grant Likely9b9129e2006-11-27 14:21:01 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446/* ======================================================================== */
447/* Interrupt handling */
448/* ======================================================================== */
Grant Likely9b9129e2006-11-27 14:21:01 -0700449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450static inline int
David Howells7d12e782006-10-05 14:55:46 +0100451mpc52xx_uart_int_rx_chars(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 struct tty_struct *tty = port->info->tty;
Alan Cox33f0f882006-01-09 20:54:13 -0800454 unsigned char ch, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 unsigned short status;
456
457 /* While we can read, do so ! */
458 while ( (status = in_be16(&PSC(port)->mpc52xx_psc_status)) &
459 MPC52xx_PSC_SR_RXRDY) {
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /* Get the char */
462 ch = in_8(&PSC(port)->mpc52xx_psc_buffer_8);
463
464 /* Handle sysreq char */
465#ifdef SUPPORT_SYSRQ
David Howells7d12e782006-10-05 14:55:46 +0100466 if (uart_handle_sysrq_char(port, ch)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 port->sysrq = 0;
468 continue;
469 }
470#endif
471
472 /* Store it */
Alan Cox33f0f882006-01-09 20:54:13 -0800473
474 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 port->icount.rx++;
Grant Likely9b9129e2006-11-27 14:21:01 -0700476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if ( status & (MPC52xx_PSC_SR_PE |
478 MPC52xx_PSC_SR_FE |
Alan Cox33f0f882006-01-09 20:54:13 -0800479 MPC52xx_PSC_SR_RB) ) {
Grant Likely9b9129e2006-11-27 14:21:01 -0700480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (status & MPC52xx_PSC_SR_RB) {
Alan Cox33f0f882006-01-09 20:54:13 -0800482 flag = TTY_BREAK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 uart_handle_break(port);
484 } else if (status & MPC52xx_PSC_SR_PE)
Alan Cox33f0f882006-01-09 20:54:13 -0800485 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 else if (status & MPC52xx_PSC_SR_FE)
Alan Cox33f0f882006-01-09 20:54:13 -0800487 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 /* Clear error condition */
490 out_8(&PSC(port)->command,MPC52xx_PSC_RST_ERR_STAT);
491
492 }
Alan Cox33f0f882006-01-09 20:54:13 -0800493 tty_insert_flip_char(tty, ch, flag);
494 if (status & MPC52xx_PSC_SR_OE) {
495 /*
496 * Overrun is special, since it's
497 * reported immediately, and doesn't
498 * affect the current character
499 */
500 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503
504 tty_flip_buffer_push(tty);
Grant Likely9b9129e2006-11-27 14:21:01 -0700505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return in_be16(&PSC(port)->mpc52xx_psc_status) & MPC52xx_PSC_SR_RXRDY;
507}
508
509static inline int
510mpc52xx_uart_int_tx_chars(struct uart_port *port)
511{
512 struct circ_buf *xmit = &port->info->xmit;
513
514 /* Process out of band chars */
515 if (port->x_char) {
516 out_8(&PSC(port)->mpc52xx_psc_buffer_8, port->x_char);
517 port->icount.tx++;
518 port->x_char = 0;
519 return 1;
520 }
521
522 /* Nothing to do ? */
523 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100524 mpc52xx_uart_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return 0;
526 }
527
528 /* Send chars */
529 while (in_be16(&PSC(port)->mpc52xx_psc_status) & MPC52xx_PSC_SR_TXRDY) {
530 out_8(&PSC(port)->mpc52xx_psc_buffer_8, xmit->buf[xmit->tail]);
531 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
532 port->icount.tx++;
533 if (uart_circ_empty(xmit))
534 break;
535 }
536
537 /* Wake up */
538 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
539 uart_write_wakeup(port);
540
541 /* Maybe we're done after all */
542 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100543 mpc52xx_uart_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return 0;
545 }
546
547 return 1;
548}
549
Grant Likely9b9129e2006-11-27 14:21:01 -0700550static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100551mpc52xx_uart_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Jeff Garzikc7bec5a2006-10-06 15:00:58 -0400553 struct uart_port *port = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 unsigned long pass = ISR_PASS_LIMIT;
555 unsigned int keepgoing;
556 unsigned short status;
Grant Likely9b9129e2006-11-27 14:21:01 -0700557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 spin_lock(&port->lock);
Grant Likely9b9129e2006-11-27 14:21:01 -0700559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 /* While we have stuff to do, we continue */
561 do {
562 /* If we don't find anything to do, we stop */
Grant Likely9b9129e2006-11-27 14:21:01 -0700563 keepgoing = 0;
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 /* Read status */
566 status = in_be16(&PSC(port)->mpc52xx_psc_isr);
567 status &= port->read_status_mask;
Grant Likely9b9129e2006-11-27 14:21:01 -0700568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 /* Do we need to receive chars ? */
570 /* For this RX interrupts must be on and some chars waiting */
571 if ( status & MPC52xx_PSC_IMR_RXRDY )
David Howells7d12e782006-10-05 14:55:46 +0100572 keepgoing |= mpc52xx_uart_int_rx_chars(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 /* Do we need to send chars ? */
575 /* For this, TX must be ready and TX interrupt enabled */
576 if ( status & MPC52xx_PSC_IMR_TXRDY )
577 keepgoing |= mpc52xx_uart_int_tx_chars(port);
Grant Likely9b9129e2006-11-27 14:21:01 -0700578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 /* Limit number of iteration */
580 if ( !(--pass) )
581 keepgoing = 0;
582
583 } while (keepgoing);
Grant Likely9b9129e2006-11-27 14:21:01 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 spin_unlock(&port->lock);
Grant Likely9b9129e2006-11-27 14:21:01 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return IRQ_HANDLED;
588}
589
590
591/* ======================================================================== */
592/* Console ( if applicable ) */
593/* ======================================================================== */
594
595#ifdef CONFIG_SERIAL_MPC52xx_CONSOLE
596
597static void __init
598mpc52xx_console_get_options(struct uart_port *port,
599 int *baud, int *parity, int *bits, int *flow)
600{
601 struct mpc52xx_psc __iomem *psc = PSC(port);
602 unsigned char mr1;
603
Grant Likelyb9272df2006-11-27 14:21:02 -0700604 pr_debug("mpc52xx_console_get_options(port=%p)\n", port);
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /* Read the mode registers */
607 out_8(&psc->command,MPC52xx_PSC_SEL_MODE_REG_1);
608 mr1 = in_8(&psc->mode);
Grant Likely9b9129e2006-11-27 14:21:01 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /* CT{U,L}R are write-only ! */
Grant Likelyb9272df2006-11-27 14:21:02 -0700611 *baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
612#if !defined(CONFIG_PPC_MERGE)
613 if (__res.bi_baudrate)
614 *baud = __res.bi_baudrate;
615#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /* Parse them */
618 switch (mr1 & MPC52xx_PSC_MODE_BITS_MASK) {
619 case MPC52xx_PSC_MODE_5_BITS: *bits = 5; break;
620 case MPC52xx_PSC_MODE_6_BITS: *bits = 6; break;
621 case MPC52xx_PSC_MODE_7_BITS: *bits = 7; break;
622 case MPC52xx_PSC_MODE_8_BITS:
623 default: *bits = 8;
624 }
Grant Likely9b9129e2006-11-27 14:21:01 -0700625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (mr1 & MPC52xx_PSC_MODE_PARNONE)
627 *parity = 'n';
628 else
629 *parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e';
630}
631
Grant Likely9b9129e2006-11-27 14:21:01 -0700632static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633mpc52xx_console_write(struct console *co, const char *s, unsigned int count)
634{
635 struct uart_port *port = &mpc52xx_uart_ports[co->index];
636 struct mpc52xx_psc __iomem *psc = PSC(port);
637 unsigned int i, j;
Grant Likely9b9129e2006-11-27 14:21:01 -0700638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /* Disable interrupts */
640 out_be16(&psc->mpc52xx_psc_imr, 0);
641
642 /* Wait the TX buffer to be empty */
Grant Likely9b9129e2006-11-27 14:21:01 -0700643 j = 5000000; /* Maximum wait */
644 while (!(in_be16(&psc->mpc52xx_psc_status) & MPC52xx_PSC_SR_TXEMP) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 --j)
646 udelay(1);
647
648 /* Write all the chars */
Russell Kingd3587882006-03-20 20:00:09 +0000649 for (i = 0; i < count; i++, s++) {
650 /* Line return handling */
651 if (*s == '\n')
652 out_8(&psc->mpc52xx_psc_buffer_8, '\r');
Grant Likely9b9129e2006-11-27 14:21:01 -0700653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /* Send the char */
655 out_8(&psc->mpc52xx_psc_buffer_8, *s);
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* Wait the TX buffer to be empty */
Grant Likely9b9129e2006-11-27 14:21:01 -0700658 j = 20000; /* Maximum wait */
659 while (!(in_be16(&psc->mpc52xx_psc_status) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 MPC52xx_PSC_SR_TXEMP) && --j)
661 udelay(1);
662 }
663
664 /* Restore interrupt state */
665 out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
666}
667
Grant Likelyb9272df2006-11-27 14:21:02 -0700668#if !defined(CONFIG_PPC_MERGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669static int __init
670mpc52xx_console_setup(struct console *co, char *options)
671{
672 struct uart_port *port = &mpc52xx_uart_ports[co->index];
673
674 int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
675 int bits = 8;
676 int parity = 'n';
677 int flow = 'n';
678
679 if (co->index < 0 || co->index >= MPC52xx_PSC_MAXNUM)
680 return -EINVAL;
Grant Likely9b9129e2006-11-27 14:21:01 -0700681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /* Basic port init. Needed since we use some uart_??? func before
683 * real init for early access */
684 spin_lock_init(&port->lock);
685 port->uartclk = __res.bi_ipbfreq / 2; /* Look at CTLR doc */
686 port->ops = &mpc52xx_uart_ops;
687 port->mapbase = MPC52xx_PA(MPC52xx_PSCx_OFFSET(co->index+1));
688
689 /* We ioremap ourself */
690 port->membase = ioremap(port->mapbase, MPC52xx_PSC_SIZE);
691 if (port->membase == NULL)
692 return -EINVAL;
693
694 /* Setup the port parameters accoding to options */
695 if (options)
696 uart_parse_options(options, &baud, &parity, &bits, &flow);
697 else
698 mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow);
699
700 return uart_set_options(port, co, baud, parity, bits, flow);
701}
702
Grant Likelyb9272df2006-11-27 14:21:02 -0700703#else
704
705static int __init
706mpc52xx_console_setup(struct console *co, char *options)
707{
708 struct uart_port *port = &mpc52xx_uart_ports[co->index];
709 struct device_node *np = mpc52xx_uart_nodes[co->index];
710 unsigned int ipb_freq;
711 struct resource res;
712 int ret;
713
714 int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
715 int bits = 8;
716 int parity = 'n';
717 int flow = 'n';
718
719 pr_debug("mpc52xx_console_setup co=%p, co->index=%i, options=%s\n",
720 co, co->index, options);
721
722 if ((co->index < 0) || (co->index > MPC52xx_PSC_MAXNUM)) {
723 pr_debug("PSC%x out of range\n", co->index);
724 return -EINVAL;
725 }
726
727 if (!np) {
728 pr_debug("PSC%x not found in device tree\n", co->index);
729 return -EINVAL;
730 }
731
732 pr_debug("Console on ttyPSC%x is %s\n",
733 co->index, mpc52xx_uart_nodes[co->index]->full_name);
734
735 /* Fetch register locations */
736 if ((ret = of_address_to_resource(np, 0, &res)) != 0) {
737 pr_debug("Could not get resources for PSC%x\n", co->index);
738 return ret;
739 }
740
741 /* Search for bus-frequency property in this node or a parent */
742 if ((ipb_freq = mpc52xx_find_ipb_freq(np)) == 0) {
743 pr_debug("Could not find IPB bus frequency!\n");
744 return -EINVAL;
745 }
746
747 /* Basic port init. Needed since we use some uart_??? func before
748 * real init for early access */
749 spin_lock_init(&port->lock);
750 port->uartclk = ipb_freq / 2;
751 port->ops = &mpc52xx_uart_ops;
752 port->mapbase = res.start;
753 port->membase = ioremap(res.start, sizeof(struct mpc52xx_psc));
754 port->irq = irq_of_parse_and_map(np, 0);
755
756 if (port->membase == NULL)
757 return -EINVAL;
758
759 pr_debug("mpc52xx-psc uart at %lx, mapped to %p, irq=%x, freq=%i\n",
760 port->mapbase, port->membase, port->irq, port->uartclk);
761
762 /* Setup the port parameters accoding to options */
763 if (options)
764 uart_parse_options(options, &baud, &parity, &bits, &flow);
765 else
766 mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow);
767
768 pr_debug("Setting console parameters: %i %i%c1 flow=%c\n",
769 baud, bits, parity, flow);
770
771 return uart_set_options(port, co, baud, parity, bits, flow);
772}
773#endif /* defined(CONFIG_PPC_MERGE) */
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Sylvain Munaut2d8179c2006-01-06 00:11:31 -0800776static struct uart_driver mpc52xx_uart_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778static struct console mpc52xx_console = {
Sylvain Munautd62de3a2006-01-06 00:11:32 -0800779 .name = "ttyPSC",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 .write = mpc52xx_console_write,
781 .device = uart_console_device,
782 .setup = mpc52xx_console_setup,
783 .flags = CON_PRINTBUFFER,
Sylvain Munautd62de3a2006-01-06 00:11:32 -0800784 .index = -1, /* Specified on the cmdline (e.g. console=ttyPSC0 ) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 .data = &mpc52xx_uart_driver,
786};
787
Grant Likely9b9129e2006-11-27 14:21:01 -0700788
789static int __init
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790mpc52xx_console_init(void)
791{
Grant Likelyb9272df2006-11-27 14:21:02 -0700792 mpc52xx_uart_of_enumerate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 register_console(&mpc52xx_console);
794 return 0;
795}
796
797console_initcall(mpc52xx_console_init);
798
799#define MPC52xx_PSC_CONSOLE &mpc52xx_console
800#else
801#define MPC52xx_PSC_CONSOLE NULL
802#endif
803
804
805/* ======================================================================== */
806/* UART Driver */
807/* ======================================================================== */
808
809static struct uart_driver mpc52xx_uart_driver = {
810 .owner = THIS_MODULE,
811 .driver_name = "mpc52xx_psc_uart",
Sylvain Munautd62de3a2006-01-06 00:11:32 -0800812 .dev_name = "ttyPSC",
Sylvain Munautd62de3a2006-01-06 00:11:32 -0800813 .major = SERIAL_PSC_MAJOR,
814 .minor = SERIAL_PSC_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 .nr = MPC52xx_PSC_MAXNUM,
816 .cons = MPC52xx_PSC_CONSOLE,
817};
818
819
Grant Likelyb9272df2006-11-27 14:21:02 -0700820#if !defined(CONFIG_PPC_MERGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821/* ======================================================================== */
822/* Platform Driver */
823/* ======================================================================== */
824
825static int __devinit
Russell King3ae5eae2005-11-09 22:32:44 +0000826mpc52xx_uart_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Russell King3ae5eae2005-11-09 22:32:44 +0000828 struct resource *res = dev->resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 struct uart_port *port = NULL;
831 int i, idx, ret;
832
833 /* Check validity & presence */
Andrey Volkov38801e22005-11-12 22:04:06 +0000834 idx = dev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (idx < 0 || idx >= MPC52xx_PSC_MAXNUM)
836 return -EINVAL;
837
838 if (!mpc52xx_match_psc_function(idx,"uart"))
839 return -ENODEV;
840
841 /* Init the port structure */
842 port = &mpc52xx_uart_ports[idx];
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 spin_lock_init(&port->lock);
845 port->uartclk = __res.bi_ipbfreq / 2; /* Look at CTLR doc */
Russell King947deee2006-07-02 20:45:51 +0100846 port->fifosize = 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 port->iotype = UPIO_MEM;
848 port->flags = UPF_BOOT_AUTOCONF |
849 ( uart_console(port) ? 0 : UPF_IOREMAP );
850 port->line = idx;
851 port->ops = &mpc52xx_uart_ops;
Grant Likelyb9272df2006-11-27 14:21:02 -0700852 port->dev = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 /* Search for IRQ and mapbase */
Andrey Volkov38801e22005-11-12 22:04:06 +0000855 for (i=0 ; i<dev->num_resources ; i++, res++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (res->flags & IORESOURCE_MEM)
857 port->mapbase = res->start;
858 else if (res->flags & IORESOURCE_IRQ)
859 port->irq = res->start;
860 }
861 if (!port->irq || !port->mapbase)
862 return -EINVAL;
863
864 /* Add the port to the uart sub-system */
865 ret = uart_add_one_port(&mpc52xx_uart_driver, port);
866 if (!ret)
Russell King3ae5eae2005-11-09 22:32:44 +0000867 platform_set_drvdata(dev, (void*)port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 return ret;
870}
871
872static int
Russell King3ae5eae2005-11-09 22:32:44 +0000873mpc52xx_uart_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Russell King3ae5eae2005-11-09 22:32:44 +0000875 struct uart_port *port = (struct uart_port *) platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Russell King3ae5eae2005-11-09 22:32:44 +0000877 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 if (port)
880 uart_remove_one_port(&mpc52xx_uart_driver, port);
881
882 return 0;
883}
884
885#ifdef CONFIG_PM
886static int
Russell King3ae5eae2005-11-09 22:32:44 +0000887mpc52xx_uart_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Russell King3ae5eae2005-11-09 22:32:44 +0000889 struct uart_port *port = (struct uart_port *) platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Grant Likely9b9129e2006-11-27 14:21:01 -0700891 if (port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 uart_suspend_port(&mpc52xx_uart_driver, port);
893
894 return 0;
895}
896
897static int
Russell King3ae5eae2005-11-09 22:32:44 +0000898mpc52xx_uart_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Russell King3ae5eae2005-11-09 22:32:44 +0000900 struct uart_port *port = (struct uart_port *) platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Russell King9480e302005-10-28 09:52:56 -0700902 if (port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 uart_resume_port(&mpc52xx_uart_driver, port);
904
905 return 0;
906}
907#endif
908
Grant Likelyb9272df2006-11-27 14:21:02 -0700909
Russell King3ae5eae2005-11-09 22:32:44 +0000910static struct platform_driver mpc52xx_uart_platform_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 .probe = mpc52xx_uart_probe,
912 .remove = mpc52xx_uart_remove,
913#ifdef CONFIG_PM
914 .suspend = mpc52xx_uart_suspend,
915 .resume = mpc52xx_uart_resume,
916#endif
Russell King3ae5eae2005-11-09 22:32:44 +0000917 .driver = {
918 .name = "mpc52xx-psc",
919 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920};
Grant Likelyb9272df2006-11-27 14:21:02 -0700921#endif /* !defined(CONFIG_PPC_MERGE) */
922
923
924#if defined(CONFIG_PPC_MERGE)
925/* ======================================================================== */
926/* OF Platform Driver */
927/* ======================================================================== */
928
929static int __devinit
930mpc52xx_uart_of_probe(struct of_device *op, const struct of_device_id *match)
931{
932 int idx = -1;
933 unsigned int ipb_freq;
934 struct uart_port *port = NULL;
935 struct resource res;
936 int ret;
937
938 dev_dbg(&op->dev, "mpc52xx_uart_probe(op=%p, match=%p)\n", op, match);
939
940 /* Check validity & presence */
941 for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++)
942 if (mpc52xx_uart_nodes[idx] == op->node)
943 break;
944 if (idx >= MPC52xx_PSC_MAXNUM)
945 return -EINVAL;
946 pr_debug("Found %s assigned to ttyPSC%x\n",
947 mpc52xx_uart_nodes[idx]->full_name, idx);
948
949 /* Search for bus-frequency property in this node or a parent */
950 if ((ipb_freq = mpc52xx_find_ipb_freq(op->node)) == 0) {
951 dev_dbg(&op->dev, "Could not find IPB bus frequency!\n");
952 return -EINVAL;
953 }
954
955 /* Init the port structure */
956 port = &mpc52xx_uart_ports[idx];
957
958 spin_lock_init(&port->lock);
959 port->uartclk = ipb_freq / 2;
960 port->fifosize = 512;
961 port->iotype = UPIO_MEM;
962 port->flags = UPF_BOOT_AUTOCONF |
963 ( uart_console(port) ? 0 : UPF_IOREMAP );
964 port->line = idx;
965 port->ops = &mpc52xx_uart_ops;
966 port->dev = &op->dev;
967
968 /* Search for IRQ and mapbase */
969 if ((ret = of_address_to_resource(op->node, 0, &res)) != 0)
970 return ret;
971
972 port->mapbase = res.start;
973 port->irq = irq_of_parse_and_map(op->node, 0);
974
975 dev_dbg(&op->dev, "mpc52xx-psc uart at %lx, irq=%x, freq=%i\n",
976 port->mapbase, port->irq, port->uartclk);
977
978 if ((port->irq==NO_IRQ) || !port->mapbase) {
979 printk(KERN_ERR "Could not allocate resources for PSC\n");
980 return -EINVAL;
981 }
982
983 /* Add the port to the uart sub-system */
984 ret = uart_add_one_port(&mpc52xx_uart_driver, port);
985 if (!ret)
986 dev_set_drvdata(&op->dev, (void*)port);
987
988 return ret;
989}
990
991static int
992mpc52xx_uart_of_remove(struct of_device *op)
993{
994 struct uart_port *port = dev_get_drvdata(&op->dev);
995 dev_set_drvdata(&op->dev, NULL);
996
997 if (port)
998 uart_remove_one_port(&mpc52xx_uart_driver, port);
999
1000 return 0;
1001}
1002
1003#ifdef CONFIG_PM
1004static int
1005mpc52xx_uart_of_suspend(struct of_device *op, pm_message_t state)
1006{
1007 struct uart_port *port = (struct uart_port *) dev_get_drvdata(&op->dev);
1008
1009 if (port)
1010 uart_suspend_port(&mpc52xx_uart_driver, port);
1011
1012 return 0;
1013}
1014
1015static int
1016mpc52xx_uart_of_resume(struct of_device *op)
1017{
1018 struct uart_port *port = (struct uart_port *) dev_get_drvdata(&op->dev);
1019
1020 if (port)
1021 uart_resume_port(&mpc52xx_uart_driver, port);
1022
1023 return 0;
1024}
1025#endif
1026
1027static void
1028mpc52xx_uart_of_assign(struct device_node *np, int idx)
1029{
1030 int free_idx = -1;
1031 int i;
1032
1033 /* Find the first free node */
1034 for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1035 if (mpc52xx_uart_nodes[i] == NULL) {
1036 free_idx = i;
1037 break;
1038 }
1039 }
1040
1041 if ((idx < 0) || (idx >= MPC52xx_PSC_MAXNUM))
1042 idx = free_idx;
1043
1044 if (idx < 0)
1045 return; /* No free slot; abort */
1046
1047 /* If the slot is already occupied, then swap slots */
1048 if (mpc52xx_uart_nodes[idx] && (free_idx != -1))
1049 mpc52xx_uart_nodes[free_idx] = mpc52xx_uart_nodes[idx];
1050 mpc52xx_uart_nodes[i] = np;
1051}
1052
1053static void
1054mpc52xx_uart_of_enumerate(void)
1055{
1056 static int enum_done = 0;
1057 struct device_node *np;
1058 const unsigned int *devno;
1059 int i;
1060
1061 if (enum_done)
1062 return;
1063
1064 for_each_node_by_type(np, "serial") {
1065 if (!of_match_node(mpc52xx_uart_of_match, np))
1066 continue;
1067
1068 /* Is a particular device number requested? */
1069 devno = get_property(np, "device_no", NULL);
1070 mpc52xx_uart_of_assign(of_node_get(np), devno ? *devno : -1);
1071 }
1072
1073 enum_done = 1;
1074
1075 for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1076 if (mpc52xx_uart_nodes[i])
1077 pr_debug("%s assigned to ttyPSC%x\n",
1078 mpc52xx_uart_nodes[i]->full_name, i);
1079 }
1080}
1081
1082MODULE_DEVICE_TABLE(of, mpc52xx_uart_of_match);
1083
1084static struct of_platform_driver mpc52xx_uart_of_driver = {
1085 .owner = THIS_MODULE,
1086 .name = "mpc52xx-psc-uart",
1087 .match_table = mpc52xx_uart_of_match,
1088 .probe = mpc52xx_uart_of_probe,
1089 .remove = mpc52xx_uart_of_remove,
1090#ifdef CONFIG_PM
1091 .suspend = mpc52xx_uart_of_suspend,
1092 .resume = mpc52xx_uart_of_resume,
1093#endif
1094 .driver = {
1095 .name = "mpc52xx-psc-uart",
1096 },
1097};
1098#endif /* defined(CONFIG_PPC_MERGE) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100
1101/* ======================================================================== */
1102/* Module */
1103/* ======================================================================== */
1104
1105static int __init
1106mpc52xx_uart_init(void)
1107{
1108 int ret;
1109
Grant Likelyb9272df2006-11-27 14:21:02 -07001110 printk(KERN_INFO "Serial: MPC52xx PSC UART driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Grant Likelyb9272df2006-11-27 14:21:02 -07001112 if ((ret = uart_register_driver(&mpc52xx_uart_driver)) != 0) {
1113 printk(KERN_ERR "%s: uart_register_driver failed (%i)\n",
1114 __FILE__, ret);
1115 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
1117
Grant Likelyb9272df2006-11-27 14:21:02 -07001118#if defined(CONFIG_PPC_MERGE)
1119 mpc52xx_uart_of_enumerate();
1120
1121 ret = of_register_platform_driver(&mpc52xx_uart_of_driver);
1122 if (ret) {
1123 printk(KERN_ERR "%s: of_register_platform_driver failed (%i)\n",
1124 __FILE__, ret);
1125 uart_unregister_driver(&mpc52xx_uart_driver);
1126 return ret;
1127 }
1128#else
1129 ret = platform_driver_register(&mpc52xx_uart_platform_driver);
1130 if (ret) {
1131 printk(KERN_ERR "%s: platform_driver_register failed (%i)\n",
1132 __FILE__, ret);
1133 uart_unregister_driver(&mpc52xx_uart_driver);
1134 return ret;
1135 }
1136#endif
1137
1138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
1141static void __exit
1142mpc52xx_uart_exit(void)
1143{
Grant Likelyb9272df2006-11-27 14:21:02 -07001144#if defined(CONFIG_PPC_MERGE)
1145 of_unregister_platform_driver(&mpc52xx_uart_of_driver);
1146#else
Russell King3ae5eae2005-11-09 22:32:44 +00001147 platform_driver_unregister(&mpc52xx_uart_platform_driver);
Grant Likelyb9272df2006-11-27 14:21:02 -07001148#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 uart_unregister_driver(&mpc52xx_uart_driver);
1150}
1151
1152
1153module_init(mpc52xx_uart_init);
1154module_exit(mpc52xx_uart_exit);
1155
1156MODULE_AUTHOR("Sylvain Munaut <tnt@246tNt.com>");
1157MODULE_DESCRIPTION("Freescale MPC52xx PSC UART");
1158MODULE_LICENSE("GPL");