blob: d37460965ba7bf800f2e00d29a4e4d94d7976cd4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Driver for CLPS711x serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Copyright 1999 ARM Limited
7 * Copyright (C) 2000 Deep Blue Solutions Ltd.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#if defined(CONFIG_SERIAL_CLPS711X_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
25#define SUPPORT_SYSRQ
26#endif
27
28#include <linux/module.h>
29#include <linux/ioport.h>
30#include <linux/init.h>
31#include <linux/console.h>
32#include <linux/sysrq.h>
33#include <linux/spinlock.h>
34#include <linux/device.h>
35#include <linux/tty.h>
36#include <linux/tty_flip.h>
37#include <linux/serial_core.h>
38#include <linux/serial.h>
Russell King99730222009-03-25 10:21:35 +000039#include <linux/io.h>
Alexander Shiyanc08f0152012-10-14 11:05:26 +040040#include <linux/clk.h>
Alexander Shiyan95113722012-10-14 11:05:23 +040041#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Russell Kinga09e64f2008-08-05 16:14:15 +010043#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Alexander Shiyan95113722012-10-14 11:05:23 +040046#define UART_CLPS711X_NAME "uart-clps711x"
Alexander Shiyan117d5d42012-10-14 11:05:24 +040047#define UART_CLPS711X_NR 2
48#define UART_CLPS711X_MAJOR 204
49#define UART_CLPS711X_MINOR 40
Alexander Shiyan95113722012-10-14 11:05:23 +040050
Alexander Shiyan117d5d42012-10-14 11:05:24 +040051#define UBRLCR(port) ((port)->line ? UBRLCR2 : UBRLCR1)
52#define UARTDR(port) ((port)->line ? UARTDR2 : UARTDR1)
53#define SYSFLG(port) ((port)->line ? SYSFLG2 : SYSFLG1)
54#define SYSCON(port) ((port)->line ? SYSCON2 : SYSCON1)
55#define TX_IRQ(port) ((port)->line ? IRQ_UTXINT2 : IRQ_UTXINT1)
56#define RX_IRQ(port) ((port)->line ? IRQ_URXINT2 : IRQ_URXINT1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define UART_ANY_ERR (UARTDR_FRMERR | UARTDR_PARERR | UARTDR_OVERR)
59
Alexander Shiyan117d5d42012-10-14 11:05:24 +040060struct clps711x_port {
61 struct uart_driver uart;
Alexander Shiyanc08f0152012-10-14 11:05:26 +040062 struct clk *uart_clk;
Alexander Shiyan117d5d42012-10-14 11:05:24 +040063 struct uart_port port[UART_CLPS711X_NR];
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +040064 int tx_enabled[UART_CLPS711X_NR];
Alexander Shiyan117d5d42012-10-14 11:05:24 +040065#ifdef CONFIG_SERIAL_CLPS711X_CONSOLE
66 struct console console;
67#endif
68};
69
Russell Kingb129a8c2005-08-31 10:12:14 +010070static void clps711xuart_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +040072 struct clps711x_port *s = dev_get_drvdata(port->dev);
73
74 if (s->tx_enabled[port->line]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 disable_irq(TX_IRQ(port));
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +040076 s->tx_enabled[port->line] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 }
78}
79
Russell Kingb129a8c2005-08-31 10:12:14 +010080static void clps711xuart_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +040082 struct clps711x_port *s = dev_get_drvdata(port->dev);
83
84 if (!s->tx_enabled[port->line]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 enable_irq(TX_IRQ(port));
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +040086 s->tx_enabled[port->line] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 }
88}
89
90static void clps711xuart_stop_rx(struct uart_port *port)
91{
92 disable_irq(RX_IRQ(port));
93}
94
95static void clps711xuart_enable_ms(struct uart_port *port)
96{
97}
98
David Howells7d12e782006-10-05 14:55:46 +010099static irqreturn_t clps711xuart_int_rx(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 struct uart_port *port = dev_id;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700102 struct tty_struct *tty = port->state->port.tty;
Russell Kingf9937242005-09-24 10:12:47 +0100103 unsigned int status, ch, flg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 status = clps_readl(SYSFLG(port));
106 while (!(status & SYSFLG_URXFE)) {
107 ch = clps_readl(UARTDR(port));
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 port->icount.rx++;
110
111 flg = TTY_NORMAL;
112
113 /*
114 * Note that the error handling code is
115 * out of the main execution path
116 */
Russell King2a9604b2005-04-26 15:32:00 +0100117 if (unlikely(ch & UART_ANY_ERR)) {
118 if (ch & UARTDR_PARERR)
119 port->icount.parity++;
120 else if (ch & UARTDR_FRMERR)
121 port->icount.frame++;
122 if (ch & UARTDR_OVERR)
123 port->icount.overrun++;
124
125 ch &= port->read_status_mask;
126
127 if (ch & UARTDR_PARERR)
128 flg = TTY_PARITY;
129 else if (ch & UARTDR_FRMERR)
130 flg = TTY_FRAME;
131
132#ifdef SUPPORT_SYSRQ
133 port->sysrq = 0;
134#endif
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
David Howells7d12e782006-10-05 14:55:46 +0100137 if (uart_handle_sysrq_char(port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 goto ignore_char;
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /*
141 * CHECK: does overrun affect the current character?
142 * ASSUMPTION: it does not.
143 */
Russell King05ab3012005-05-09 23:21:59 +0100144 uart_insert_char(port, ch, UARTDR_OVERR, ch, flg);
Russell King2a9604b2005-04-26 15:32:00 +0100145
146 ignore_char:
147 status = clps_readl(SYSFLG(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
Russell King2a9604b2005-04-26 15:32:00 +0100149 tty_flip_buffer_push(tty);
150 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
David Howells7d12e782006-10-05 14:55:46 +0100153static irqreturn_t clps711xuart_int_tx(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 struct uart_port *port = dev_id;
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +0400156 struct clps711x_port *s = dev_get_drvdata(port->dev);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700157 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 if (port->x_char) {
160 clps_writel(port->x_char, UARTDR(port));
161 port->icount.tx++;
162 port->x_char = 0;
163 return IRQ_HANDLED;
164 }
Alexander Shiyan7a6fbc92012-03-27 12:22:49 +0400165
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +0400166 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
167 disable_irq_nosync(TX_IRQ(port));
168 s->tx_enabled[port->line] = 0;
169 return IRQ_HANDLED;
170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Alexander Shiyancf03a882012-10-14 11:05:27 +0400172 while (!uart_circ_empty(xmit)) {
173 clps_writew(xmit->buf[xmit->tail], UARTDR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
175 port->icount.tx++;
Alexander Shiyancf03a882012-10-14 11:05:27 +0400176 if (clps_readl(SYSFLG(port) & SYSFLG_UTXFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 break;
Alexander Shiyancf03a882012-10-14 11:05:27 +0400178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
181 uart_write_wakeup(port);
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return IRQ_HANDLED;
184}
185
186static unsigned int clps711xuart_tx_empty(struct uart_port *port)
187{
188 unsigned int status = clps_readl(SYSFLG(port));
189 return status & SYSFLG_UBUSY ? 0 : TIOCSER_TEMT;
190}
191
192static unsigned int clps711xuart_get_mctrl(struct uart_port *port)
193{
194 unsigned int port_addr;
195 unsigned int result = 0;
196 unsigned int status;
197
198 port_addr = SYSFLG(port);
199 if (port_addr == SYSFLG1) {
200 status = clps_readl(SYSFLG1);
201 if (status & SYSFLG1_DCD)
202 result |= TIOCM_CAR;
203 if (status & SYSFLG1_DSR)
204 result |= TIOCM_DSR;
205 if (status & SYSFLG1_CTS)
206 result |= TIOCM_CTS;
207 }
208
209 return result;
210}
211
212static void
213clps711xuart_set_mctrl_null(struct uart_port *port, unsigned int mctrl)
214{
215}
216
217static void clps711xuart_break_ctl(struct uart_port *port, int break_state)
218{
219 unsigned long flags;
220 unsigned int ubrlcr;
221
222 spin_lock_irqsave(&port->lock, flags);
223 ubrlcr = clps_readl(UBRLCR(port));
224 if (break_state == -1)
225 ubrlcr |= UBRLCR_BREAK;
226 else
227 ubrlcr &= ~UBRLCR_BREAK;
228 clps_writel(ubrlcr, UBRLCR(port));
229 spin_unlock_irqrestore(&port->lock, flags);
230}
231
232static int clps711xuart_startup(struct uart_port *port)
233{
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +0400234 struct clps711x_port *s = dev_get_drvdata(port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 unsigned int syscon;
236 int retval;
237
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +0400238 s->tx_enabled[port->line] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 /*
241 * Allocate the IRQs
242 */
243 retval = request_irq(TX_IRQ(port), clps711xuart_int_tx, 0,
244 "clps711xuart_tx", port);
245 if (retval)
246 return retval;
247
248 retval = request_irq(RX_IRQ(port), clps711xuart_int_rx, 0,
249 "clps711xuart_rx", port);
250 if (retval) {
251 free_irq(TX_IRQ(port), port);
252 return retval;
253 }
254
255 /*
256 * enable the port
257 */
258 syscon = clps_readl(SYSCON(port));
259 syscon |= SYSCON_UARTEN;
260 clps_writel(syscon, SYSCON(port));
261
262 return 0;
263}
264
265static void clps711xuart_shutdown(struct uart_port *port)
266{
267 unsigned int ubrlcr, syscon;
268
269 /*
270 * Free the interrupt
271 */
272 free_irq(TX_IRQ(port), port); /* TX interrupt */
273 free_irq(RX_IRQ(port), port); /* RX interrupt */
274
275 /*
276 * disable the port
277 */
278 syscon = clps_readl(SYSCON(port));
279 syscon &= ~SYSCON_UARTEN;
280 clps_writel(syscon, SYSCON(port));
281
282 /*
283 * disable break condition and fifos
284 */
285 ubrlcr = clps_readl(UBRLCR(port));
286 ubrlcr &= ~(UBRLCR_FIFOEN | UBRLCR_BREAK);
287 clps_writel(ubrlcr, UBRLCR(port));
288}
289
290static void
Alan Cox606d0992006-12-08 02:38:45 -0800291clps711xuart_set_termios(struct uart_port *port, struct ktermios *termios,
292 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 unsigned int ubrlcr, baud, quot;
295 unsigned long flags;
296
297 /*
298 * We don't implement CREAD.
299 */
300 termios->c_cflag |= CREAD;
301
Alexander Shiyanc08f0152012-10-14 11:05:26 +0400302 /* Ask the core to calculate the divisor for us */
303 baud = uart_get_baud_rate(port, termios, old, port->uartclk / 4096,
304 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 quot = uart_get_divisor(port, baud);
306
307 switch (termios->c_cflag & CSIZE) {
308 case CS5:
309 ubrlcr = UBRLCR_WRDLEN5;
310 break;
311 case CS6:
312 ubrlcr = UBRLCR_WRDLEN6;
313 break;
314 case CS7:
315 ubrlcr = UBRLCR_WRDLEN7;
316 break;
317 default: // CS8
318 ubrlcr = UBRLCR_WRDLEN8;
319 break;
320 }
321 if (termios->c_cflag & CSTOPB)
322 ubrlcr |= UBRLCR_XSTOP;
323 if (termios->c_cflag & PARENB) {
324 ubrlcr |= UBRLCR_PRTEN;
325 if (!(termios->c_cflag & PARODD))
326 ubrlcr |= UBRLCR_EVENPRT;
327 }
Alexander Shiyancf03a882012-10-14 11:05:27 +0400328
329 /* Enable FIFO */
330 ubrlcr |= UBRLCR_FIFOEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 spin_lock_irqsave(&port->lock, flags);
333
334 /*
335 * Update the per-port timeout.
336 */
337 uart_update_timeout(port, termios->c_cflag, baud);
338
339 port->read_status_mask = UARTDR_OVERR;
340 if (termios->c_iflag & INPCK)
341 port->read_status_mask |= UARTDR_PARERR | UARTDR_FRMERR;
342
343 /*
344 * Characters to ignore
345 */
346 port->ignore_status_mask = 0;
347 if (termios->c_iflag & IGNPAR)
348 port->ignore_status_mask |= UARTDR_FRMERR | UARTDR_PARERR;
349 if (termios->c_iflag & IGNBRK) {
350 /*
351 * If we're ignoring parity and break indicators,
352 * ignore overruns to (for real raw support).
353 */
354 if (termios->c_iflag & IGNPAR)
355 port->ignore_status_mask |= UARTDR_OVERR;
356 }
357
358 quot -= 1;
359
360 clps_writel(ubrlcr | quot, UBRLCR(port));
361
362 spin_unlock_irqrestore(&port->lock, flags);
363}
364
365static const char *clps711xuart_type(struct uart_port *port)
366{
367 return port->type == PORT_CLPS711X ? "CLPS711x" : NULL;
368}
369
370/*
371 * Configure/autoconfigure the port.
372 */
373static void clps711xuart_config_port(struct uart_port *port, int flags)
374{
375 if (flags & UART_CONFIG_TYPE)
376 port->type = PORT_CLPS711X;
377}
378
379static void clps711xuart_release_port(struct uart_port *port)
380{
381}
382
383static int clps711xuart_request_port(struct uart_port *port)
384{
385 return 0;
386}
387
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400388static struct uart_ops uart_clps711x_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 .tx_empty = clps711xuart_tx_empty,
390 .set_mctrl = clps711xuart_set_mctrl_null,
391 .get_mctrl = clps711xuart_get_mctrl,
392 .stop_tx = clps711xuart_stop_tx,
393 .start_tx = clps711xuart_start_tx,
394 .stop_rx = clps711xuart_stop_rx,
395 .enable_ms = clps711xuart_enable_ms,
396 .break_ctl = clps711xuart_break_ctl,
397 .startup = clps711xuart_startup,
398 .shutdown = clps711xuart_shutdown,
399 .set_termios = clps711xuart_set_termios,
400 .type = clps711xuart_type,
401 .config_port = clps711xuart_config_port,
402 .release_port = clps711xuart_release_port,
403 .request_port = clps711xuart_request_port,
404};
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#ifdef CONFIG_SERIAL_CLPS711X_CONSOLE
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400407static void uart_clps711x_console_putchar(struct uart_port *port, int ch)
Russell Kingd3587882006-03-20 20:00:09 +0000408{
409 while (clps_readl(SYSFLG(port)) & SYSFLG_UTXFF)
410 barrier();
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400411
412 clps_writew(ch, UARTDR(port));
Russell Kingd3587882006-03-20 20:00:09 +0000413}
414
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400415static void uart_clps711x_console_write(struct console *co, const char *c,
416 unsigned n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400418 struct clps711x_port *s = (struct clps711x_port *)co->data;
419 struct uart_port *port = &s->port[co->index];
420 u32 syscon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400422 /* Ensure that the port is enabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 syscon = clps_readl(SYSCON(port));
424 clps_writel(syscon | SYSCON_UARTEN, SYSCON(port));
425
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400426 uart_console_write(port, c, n, uart_clps711x_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400428 /* Wait for transmitter to become empty */
429 while (clps_readl(SYSFLG(port)) & SYSFLG_UBUSY)
430 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400432 /* Restore the uart state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 clps_writel(syscon, SYSCON(port));
434}
435
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400436static void uart_clps711x_console_get_options(struct uart_port *port,
437 int *baud, int *parity,
438 int *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 if (clps_readl(SYSCON(port)) & SYSCON_UARTEN) {
441 unsigned int ubrlcr, quot;
442
443 ubrlcr = clps_readl(UBRLCR(port));
444
445 *parity = 'n';
446 if (ubrlcr & UBRLCR_PRTEN) {
447 if (ubrlcr & UBRLCR_EVENPRT)
448 *parity = 'e';
449 else
450 *parity = 'o';
451 }
452
453 if ((ubrlcr & UBRLCR_WRDLEN_MASK) == UBRLCR_WRDLEN7)
454 *bits = 7;
455 else
456 *bits = 8;
457
458 quot = ubrlcr & UBRLCR_BAUD_MASK;
459 *baud = port->uartclk / (16 * (quot + 1));
460 }
461}
462
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400463static int uart_clps711x_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400465 int baud = 38400, bits = 8, parity = 'n', flow = 'n';
466 struct clps711x_port *s = (struct clps711x_port *)co->data;
467 struct uart_port *port = &s->port[(co->index > 0) ? co->index : 0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 if (options)
470 uart_parse_options(options, &baud, &parity, &bits, &flow);
471 else
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400472 uart_clps711x_console_get_options(port, &baud, &parity, &bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 return uart_set_options(port, co, baud, parity, bits, flow);
475}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476#endif
477
Alexander Shiyan95113722012-10-14 11:05:23 +0400478static int __devinit uart_clps711x_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400480 struct clps711x_port *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 int ret, i;
482
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400483 s = devm_kzalloc(&pdev->dev, sizeof(struct clps711x_port), GFP_KERNEL);
484 if (!s) {
485 dev_err(&pdev->dev, "Error allocating port structure\n");
486 return -ENOMEM;
487 }
488 platform_set_drvdata(pdev, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Alexander Shiyanc08f0152012-10-14 11:05:26 +0400490 s->uart_clk = devm_clk_get(&pdev->dev, "uart");
491 if (IS_ERR(s->uart_clk)) {
492 dev_err(&pdev->dev, "Can't get UART clocks\n");
493 ret = PTR_ERR(s->uart_clk);
494 goto err_out;
495 }
496
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400497 s->uart.owner = THIS_MODULE;
498 s->uart.dev_name = "ttyCL";
499 s->uart.major = UART_CLPS711X_MAJOR;
500 s->uart.minor = UART_CLPS711X_MINOR;
501 s->uart.nr = UART_CLPS711X_NR;
502#ifdef CONFIG_SERIAL_CLPS711X_CONSOLE
503 s->uart.cons = &s->console;
504 s->uart.cons->device = uart_console_device;
505 s->uart.cons->write = uart_clps711x_console_write;
506 s->uart.cons->setup = uart_clps711x_console_setup;
507 s->uart.cons->flags = CON_PRINTBUFFER;
508 s->uart.cons->index = -1;
509 s->uart.cons->data = s;
510 strcpy(s->uart.cons->name, "ttyCL");
511#endif
512 ret = uart_register_driver(&s->uart);
513 if (ret) {
514 dev_err(&pdev->dev, "Registering UART driver failed\n");
Alexander Shiyanc08f0152012-10-14 11:05:26 +0400515 devm_clk_put(&pdev->dev, s->uart_clk);
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400516 goto err_out;
517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400519 for (i = 0; i < UART_CLPS711X_NR; i++) {
520 s->port[i].line = i;
521 s->port[i].dev = &pdev->dev;
522 s->port[i].irq = TX_IRQ(&s->port[i]);
523 s->port[i].iobase = SYSCON(&s->port[i]);
524 s->port[i].type = PORT_CLPS711X;
525 s->port[i].fifosize = 16;
526 s->port[i].flags = UPF_SKIP_TEST | UPF_FIXED_TYPE;
Alexander Shiyanc08f0152012-10-14 11:05:26 +0400527 s->port[i].uartclk = clk_get_rate(s->uart_clk);
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400528 s->port[i].ops = &uart_clps711x_ops;
529 WARN_ON(uart_add_one_port(&s->uart, &s->port[i]));
530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 return 0;
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400533
534err_out:
535 platform_set_drvdata(pdev, NULL);
536
537 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
Alexander Shiyan95113722012-10-14 11:05:23 +0400540static int __devexit uart_clps711x_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400542 struct clps711x_port *s = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int i;
544
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400545 for (i = 0; i < UART_CLPS711X_NR; i++)
546 uart_remove_one_port(&s->uart, &s->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Alexander Shiyanc08f0152012-10-14 11:05:26 +0400548 devm_clk_put(&pdev->dev, s->uart_clk);
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400549 uart_unregister_driver(&s->uart);
550 platform_set_drvdata(pdev, NULL);
Alexander Shiyan95113722012-10-14 11:05:23 +0400551
552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Alexander Shiyan95113722012-10-14 11:05:23 +0400555static struct platform_driver clps711x_uart_driver = {
556 .driver = {
557 .name = UART_CLPS711X_NAME,
558 .owner = THIS_MODULE,
559 },
560 .probe = uart_clps711x_probe,
561 .remove = __devexit_p(uart_clps711x_remove),
562};
563module_platform_driver(clps711x_uart_driver);
564
565static struct platform_device clps711x_uart_device = {
566 .name = UART_CLPS711X_NAME,
567};
568
569static int __init uart_clps711x_init(void)
570{
571 return platform_device_register(&clps711x_uart_device);
572}
573module_init(uart_clps711x_init);
574
575static void __exit uart_clps711x_exit(void)
576{
577 platform_device_unregister(&clps711x_uart_device);
578}
579module_exit(uart_clps711x_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581MODULE_AUTHOR("Deep Blue Solutions Ltd");
Alexander Shiyan95113722012-10-14 11:05:23 +0400582MODULE_DESCRIPTION("CLPS711X serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583MODULE_LICENSE("GPL");