blob: e71508767e1e7185e0a6f421cef9ea3f33f629c9 [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
Alexander Shiyan117d5d42012-10-14 11:05:24 +040058struct clps711x_port {
59 struct uart_driver uart;
Alexander Shiyanc08f0152012-10-14 11:05:26 +040060 struct clk *uart_clk;
Alexander Shiyan117d5d42012-10-14 11:05:24 +040061 struct uart_port port[UART_CLPS711X_NR];
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +040062 int tx_enabled[UART_CLPS711X_NR];
Alexander Shiyan117d5d42012-10-14 11:05:24 +040063#ifdef CONFIG_SERIAL_CLPS711X_CONSOLE
64 struct console console;
65#endif
66};
67
Russell Kingb129a8c2005-08-31 10:12:14 +010068static void clps711xuart_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +040070 struct clps711x_port *s = dev_get_drvdata(port->dev);
71
72 if (s->tx_enabled[port->line]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 disable_irq(TX_IRQ(port));
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +040074 s->tx_enabled[port->line] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
76}
77
Russell Kingb129a8c2005-08-31 10:12:14 +010078static void clps711xuart_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +040080 struct clps711x_port *s = dev_get_drvdata(port->dev);
81
82 if (!s->tx_enabled[port->line]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 enable_irq(TX_IRQ(port));
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +040084 s->tx_enabled[port->line] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
86}
87
88static void clps711xuart_stop_rx(struct uart_port *port)
89{
90 disable_irq(RX_IRQ(port));
91}
92
93static void clps711xuart_enable_ms(struct uart_port *port)
94{
95}
96
Alexander Shiyan135cc792012-10-14 11:05:31 +040097static irqreturn_t uart_clps711x_int_rx(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 struct uart_port *port = dev_id;
Alexander Shiyanf27de952012-10-14 11:05:30 +0400100 struct tty_struct *tty = tty_port_tty_get(&port->state->port);
Russell Kingf9937242005-09-24 10:12:47 +0100101 unsigned int status, ch, flg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Alexander Shiyanf27de952012-10-14 11:05:30 +0400103 if (!tty)
104 return IRQ_HANDLED;
105
106 for (;;) {
107 status = clps_readl(SYSFLG(port));
108 if (status & SYSFLG_URXFE)
109 break;
110
111 ch = clps_readw(UARTDR(port));
112 status = ch & (UARTDR_FRMERR | UARTDR_PARERR | UARTDR_OVERR);
113 ch &= 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 port->icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 flg = TTY_NORMAL;
117
Alexander Shiyanf27de952012-10-14 11:05:30 +0400118 if (unlikely(status)) {
119 if (status & UARTDR_PARERR)
Russell King2a9604b2005-04-26 15:32:00 +0100120 port->icount.parity++;
Alexander Shiyanf27de952012-10-14 11:05:30 +0400121 else if (status & UARTDR_FRMERR)
Russell King2a9604b2005-04-26 15:32:00 +0100122 port->icount.frame++;
Alexander Shiyanf27de952012-10-14 11:05:30 +0400123 else if (status & UARTDR_OVERR)
Russell King2a9604b2005-04-26 15:32:00 +0100124 port->icount.overrun++;
125
Alexander Shiyanf27de952012-10-14 11:05:30 +0400126 status &= port->read_status_mask;
Russell King2a9604b2005-04-26 15:32:00 +0100127
Alexander Shiyanf27de952012-10-14 11:05:30 +0400128 if (status & UARTDR_PARERR)
Russell King2a9604b2005-04-26 15:32:00 +0100129 flg = TTY_PARITY;
Alexander Shiyanf27de952012-10-14 11:05:30 +0400130 else if (status & UARTDR_FRMERR)
Russell King2a9604b2005-04-26 15:32:00 +0100131 flg = TTY_FRAME;
Alexander Shiyanf27de952012-10-14 11:05:30 +0400132 else if (status & UARTDR_OVERR)
133 flg = TTY_OVERRUN;
Russell King2a9604b2005-04-26 15:32:00 +0100134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
David Howells7d12e782006-10-05 14:55:46 +0100136 if (uart_handle_sysrq_char(port, ch))
Alexander Shiyanf27de952012-10-14 11:05:30 +0400137 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Alexander Shiyanf27de952012-10-14 11:05:30 +0400139 if (status & port->ignore_status_mask)
140 continue;
Russell King2a9604b2005-04-26 15:32:00 +0100141
Alexander Shiyanf27de952012-10-14 11:05:30 +0400142 uart_insert_char(port, status, UARTDR_OVERR, ch, flg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
Alexander Shiyanf27de952012-10-14 11:05:30 +0400144
Russell King2a9604b2005-04-26 15:32:00 +0100145 tty_flip_buffer_push(tty);
Alexander Shiyanf27de952012-10-14 11:05:30 +0400146
147 tty_kref_put(tty);
148
Russell King2a9604b2005-04-26 15:32:00 +0100149 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Alexander Shiyan135cc792012-10-14 11:05:31 +0400152static irqreturn_t uart_clps711x_int_tx(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct uart_port *port = dev_id;
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +0400155 struct clps711x_port *s = dev_get_drvdata(port->dev);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700156 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 if (port->x_char) {
159 clps_writel(port->x_char, UARTDR(port));
160 port->icount.tx++;
161 port->x_char = 0;
162 return IRQ_HANDLED;
163 }
Alexander Shiyan7a6fbc92012-03-27 12:22:49 +0400164
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +0400165 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
166 disable_irq_nosync(TX_IRQ(port));
167 s->tx_enabled[port->line] = 0;
168 return IRQ_HANDLED;
169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Alexander Shiyancf03a882012-10-14 11:05:27 +0400171 while (!uart_circ_empty(xmit)) {
172 clps_writew(xmit->buf[xmit->tail], UARTDR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
174 port->icount.tx++;
Alexander Shiyancf03a882012-10-14 11:05:27 +0400175 if (clps_readl(SYSFLG(port) & SYSFLG_UTXFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 break;
Alexander Shiyancf03a882012-10-14 11:05:27 +0400177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
180 uart_write_wakeup(port);
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return IRQ_HANDLED;
183}
184
185static unsigned int clps711xuart_tx_empty(struct uart_port *port)
186{
187 unsigned int status = clps_readl(SYSFLG(port));
188 return status & SYSFLG_UBUSY ? 0 : TIOCSER_TEMT;
189}
190
191static unsigned int clps711xuart_get_mctrl(struct uart_port *port)
192{
Alexander Shiyan1593daf2012-10-14 11:05:28 +0400193 unsigned int status, result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Alexander Shiyan1593daf2012-10-14 11:05:28 +0400195 if (port->line == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 status = clps_readl(SYSFLG1);
197 if (status & SYSFLG1_DCD)
198 result |= TIOCM_CAR;
199 if (status & SYSFLG1_DSR)
200 result |= TIOCM_DSR;
201 if (status & SYSFLG1_CTS)
202 result |= TIOCM_CTS;
Alexander Shiyan1593daf2012-10-14 11:05:28 +0400203 } else
204 result = TIOCM_DSR | TIOCM_CTS | TIOCM_CAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 return result;
207}
208
209static void
210clps711xuart_set_mctrl_null(struct uart_port *port, unsigned int mctrl)
211{
212}
213
214static void clps711xuart_break_ctl(struct uart_port *port, int break_state)
215{
216 unsigned long flags;
217 unsigned int ubrlcr;
218
219 spin_lock_irqsave(&port->lock, flags);
Alexander Shiyanec335522012-10-14 11:05:29 +0400220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 ubrlcr = clps_readl(UBRLCR(port));
Alexander Shiyanec335522012-10-14 11:05:29 +0400222 if (break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 ubrlcr |= UBRLCR_BREAK;
224 else
225 ubrlcr &= ~UBRLCR_BREAK;
226 clps_writel(ubrlcr, UBRLCR(port));
Alexander Shiyanec335522012-10-14 11:05:29 +0400227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 spin_unlock_irqrestore(&port->lock, flags);
229}
230
231static int clps711xuart_startup(struct uart_port *port)
232{
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +0400233 struct clps711x_port *s = dev_get_drvdata(port->dev);
Alexander Shiyan135cc792012-10-14 11:05:31 +0400234 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Alexander Shiyan3c7e9eb2012-10-14 11:05:25 +0400236 s->tx_enabled[port->line] = 1;
Alexander Shiyan135cc792012-10-14 11:05:31 +0400237 /* Allocate the IRQs */
238 ret = devm_request_irq(port->dev, TX_IRQ(port), uart_clps711x_int_tx,
239 0, UART_CLPS711X_NAME " TX", port);
240 if (ret)
241 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Alexander Shiyan135cc792012-10-14 11:05:31 +0400243 ret = devm_request_irq(port->dev, RX_IRQ(port), uart_clps711x_int_rx,
244 0, UART_CLPS711X_NAME " RX", port);
245 if (ret) {
246 devm_free_irq(port->dev, TX_IRQ(port), port);
247 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
Alexander Shiyanf52ede22012-10-14 11:05:32 +0400250 /* Disable break */
251 clps_writel(clps_readl(UBRLCR(port)) & ~UBRLCR_BREAK, UBRLCR(port));
252
253 /* Enable the port */
254 clps_writel(clps_readl(SYSCON(port)) | SYSCON_UARTEN, SYSCON(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 return 0;
257}
258
259static void clps711xuart_shutdown(struct uart_port *port)
260{
Alexander Shiyan135cc792012-10-14 11:05:31 +0400261 /* Free the interrupts */
262 devm_free_irq(port->dev, TX_IRQ(port), port);
263 devm_free_irq(port->dev, RX_IRQ(port), port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Alexander Shiyanf52ede22012-10-14 11:05:32 +0400265 /* Disable the port */
266 clps_writel(clps_readl(SYSCON(port)) & ~SYSCON_UARTEN, SYSCON(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269static void
Alan Cox606d0992006-12-08 02:38:45 -0800270clps711xuart_set_termios(struct uart_port *port, struct ktermios *termios,
271 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 unsigned int ubrlcr, baud, quot;
274 unsigned long flags;
275
276 /*
277 * We don't implement CREAD.
278 */
279 termios->c_cflag |= CREAD;
280
Alexander Shiyanc08f0152012-10-14 11:05:26 +0400281 /* Ask the core to calculate the divisor for us */
282 baud = uart_get_baud_rate(port, termios, old, port->uartclk / 4096,
283 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 quot = uart_get_divisor(port, baud);
285
286 switch (termios->c_cflag & CSIZE) {
287 case CS5:
288 ubrlcr = UBRLCR_WRDLEN5;
289 break;
290 case CS6:
291 ubrlcr = UBRLCR_WRDLEN6;
292 break;
293 case CS7:
294 ubrlcr = UBRLCR_WRDLEN7;
295 break;
296 default: // CS8
297 ubrlcr = UBRLCR_WRDLEN8;
298 break;
299 }
300 if (termios->c_cflag & CSTOPB)
301 ubrlcr |= UBRLCR_XSTOP;
302 if (termios->c_cflag & PARENB) {
303 ubrlcr |= UBRLCR_PRTEN;
304 if (!(termios->c_cflag & PARODD))
305 ubrlcr |= UBRLCR_EVENPRT;
306 }
Alexander Shiyancf03a882012-10-14 11:05:27 +0400307
308 /* Enable FIFO */
309 ubrlcr |= UBRLCR_FIFOEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 spin_lock_irqsave(&port->lock, flags);
312
313 /*
314 * Update the per-port timeout.
315 */
316 uart_update_timeout(port, termios->c_cflag, baud);
317
318 port->read_status_mask = UARTDR_OVERR;
319 if (termios->c_iflag & INPCK)
320 port->read_status_mask |= UARTDR_PARERR | UARTDR_FRMERR;
321
322 /*
323 * Characters to ignore
324 */
325 port->ignore_status_mask = 0;
326 if (termios->c_iflag & IGNPAR)
327 port->ignore_status_mask |= UARTDR_FRMERR | UARTDR_PARERR;
328 if (termios->c_iflag & IGNBRK) {
329 /*
330 * If we're ignoring parity and break indicators,
331 * ignore overruns to (for real raw support).
332 */
333 if (termios->c_iflag & IGNPAR)
334 port->ignore_status_mask |= UARTDR_OVERR;
335 }
336
337 quot -= 1;
338
339 clps_writel(ubrlcr | quot, UBRLCR(port));
340
341 spin_unlock_irqrestore(&port->lock, flags);
342}
343
344static const char *clps711xuart_type(struct uart_port *port)
345{
346 return port->type == PORT_CLPS711X ? "CLPS711x" : NULL;
347}
348
349/*
350 * Configure/autoconfigure the port.
351 */
352static void clps711xuart_config_port(struct uart_port *port, int flags)
353{
354 if (flags & UART_CONFIG_TYPE)
355 port->type = PORT_CLPS711X;
356}
357
358static void clps711xuart_release_port(struct uart_port *port)
359{
360}
361
362static int clps711xuart_request_port(struct uart_port *port)
363{
364 return 0;
365}
366
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400367static struct uart_ops uart_clps711x_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 .tx_empty = clps711xuart_tx_empty,
369 .set_mctrl = clps711xuart_set_mctrl_null,
370 .get_mctrl = clps711xuart_get_mctrl,
371 .stop_tx = clps711xuart_stop_tx,
372 .start_tx = clps711xuart_start_tx,
373 .stop_rx = clps711xuart_stop_rx,
374 .enable_ms = clps711xuart_enable_ms,
375 .break_ctl = clps711xuart_break_ctl,
376 .startup = clps711xuart_startup,
377 .shutdown = clps711xuart_shutdown,
378 .set_termios = clps711xuart_set_termios,
379 .type = clps711xuart_type,
380 .config_port = clps711xuart_config_port,
381 .release_port = clps711xuart_release_port,
382 .request_port = clps711xuart_request_port,
383};
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#ifdef CONFIG_SERIAL_CLPS711X_CONSOLE
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400386static void uart_clps711x_console_putchar(struct uart_port *port, int ch)
Russell Kingd3587882006-03-20 20:00:09 +0000387{
388 while (clps_readl(SYSFLG(port)) & SYSFLG_UTXFF)
389 barrier();
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400390
391 clps_writew(ch, UARTDR(port));
Russell Kingd3587882006-03-20 20:00:09 +0000392}
393
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400394static void uart_clps711x_console_write(struct console *co, const char *c,
395 unsigned n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400397 struct clps711x_port *s = (struct clps711x_port *)co->data;
398 struct uart_port *port = &s->port[co->index];
399 u32 syscon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400401 /* Ensure that the port is enabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 syscon = clps_readl(SYSCON(port));
403 clps_writel(syscon | SYSCON_UARTEN, SYSCON(port));
404
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400405 uart_console_write(port, c, n, uart_clps711x_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400407 /* Wait for transmitter to become empty */
408 while (clps_readl(SYSFLG(port)) & SYSFLG_UBUSY)
409 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400411 /* Restore the uart state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 clps_writel(syscon, SYSCON(port));
413}
414
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400415static void uart_clps711x_console_get_options(struct uart_port *port,
416 int *baud, int *parity,
417 int *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 if (clps_readl(SYSCON(port)) & SYSCON_UARTEN) {
420 unsigned int ubrlcr, quot;
421
422 ubrlcr = clps_readl(UBRLCR(port));
423
424 *parity = 'n';
425 if (ubrlcr & UBRLCR_PRTEN) {
426 if (ubrlcr & UBRLCR_EVENPRT)
427 *parity = 'e';
428 else
429 *parity = 'o';
430 }
431
432 if ((ubrlcr & UBRLCR_WRDLEN_MASK) == UBRLCR_WRDLEN7)
433 *bits = 7;
434 else
435 *bits = 8;
436
437 quot = ubrlcr & UBRLCR_BAUD_MASK;
438 *baud = port->uartclk / (16 * (quot + 1));
439 }
440}
441
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400442static int uart_clps711x_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400444 int baud = 38400, bits = 8, parity = 'n', flow = 'n';
445 struct clps711x_port *s = (struct clps711x_port *)co->data;
446 struct uart_port *port = &s->port[(co->index > 0) ? co->index : 0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 if (options)
449 uart_parse_options(options, &baud, &parity, &bits, &flow);
450 else
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400451 uart_clps711x_console_get_options(port, &baud, &parity, &bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 return uart_set_options(port, co, baud, parity, bits, flow);
454}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455#endif
456
Alexander Shiyan95113722012-10-14 11:05:23 +0400457static int __devinit uart_clps711x_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400459 struct clps711x_port *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 int ret, i;
461
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400462 s = devm_kzalloc(&pdev->dev, sizeof(struct clps711x_port), GFP_KERNEL);
463 if (!s) {
464 dev_err(&pdev->dev, "Error allocating port structure\n");
465 return -ENOMEM;
466 }
467 platform_set_drvdata(pdev, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Alexander Shiyanc08f0152012-10-14 11:05:26 +0400469 s->uart_clk = devm_clk_get(&pdev->dev, "uart");
470 if (IS_ERR(s->uart_clk)) {
471 dev_err(&pdev->dev, "Can't get UART clocks\n");
472 ret = PTR_ERR(s->uart_clk);
473 goto err_out;
474 }
475
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400476 s->uart.owner = THIS_MODULE;
477 s->uart.dev_name = "ttyCL";
478 s->uart.major = UART_CLPS711X_MAJOR;
479 s->uart.minor = UART_CLPS711X_MINOR;
480 s->uart.nr = UART_CLPS711X_NR;
481#ifdef CONFIG_SERIAL_CLPS711X_CONSOLE
482 s->uart.cons = &s->console;
483 s->uart.cons->device = uart_console_device;
484 s->uart.cons->write = uart_clps711x_console_write;
485 s->uart.cons->setup = uart_clps711x_console_setup;
486 s->uart.cons->flags = CON_PRINTBUFFER;
487 s->uart.cons->index = -1;
488 s->uart.cons->data = s;
489 strcpy(s->uart.cons->name, "ttyCL");
490#endif
491 ret = uart_register_driver(&s->uart);
492 if (ret) {
493 dev_err(&pdev->dev, "Registering UART driver failed\n");
Alexander Shiyanc08f0152012-10-14 11:05:26 +0400494 devm_clk_put(&pdev->dev, s->uart_clk);
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400495 goto err_out;
496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400498 for (i = 0; i < UART_CLPS711X_NR; i++) {
499 s->port[i].line = i;
500 s->port[i].dev = &pdev->dev;
501 s->port[i].irq = TX_IRQ(&s->port[i]);
502 s->port[i].iobase = SYSCON(&s->port[i]);
503 s->port[i].type = PORT_CLPS711X;
504 s->port[i].fifosize = 16;
505 s->port[i].flags = UPF_SKIP_TEST | UPF_FIXED_TYPE;
Alexander Shiyanc08f0152012-10-14 11:05:26 +0400506 s->port[i].uartclk = clk_get_rate(s->uart_clk);
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400507 s->port[i].ops = &uart_clps711x_ops;
508 WARN_ON(uart_add_one_port(&s->uart, &s->port[i]));
509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 return 0;
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400512
513err_out:
514 platform_set_drvdata(pdev, NULL);
515
516 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Alexander Shiyan95113722012-10-14 11:05:23 +0400519static int __devexit uart_clps711x_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400521 struct clps711x_port *s = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 int i;
523
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400524 for (i = 0; i < UART_CLPS711X_NR; i++)
525 uart_remove_one_port(&s->uart, &s->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Alexander Shiyanc08f0152012-10-14 11:05:26 +0400527 devm_clk_put(&pdev->dev, s->uart_clk);
Alexander Shiyan117d5d42012-10-14 11:05:24 +0400528 uart_unregister_driver(&s->uart);
529 platform_set_drvdata(pdev, NULL);
Alexander Shiyan95113722012-10-14 11:05:23 +0400530
531 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Alexander Shiyan95113722012-10-14 11:05:23 +0400534static struct platform_driver clps711x_uart_driver = {
535 .driver = {
536 .name = UART_CLPS711X_NAME,
537 .owner = THIS_MODULE,
538 },
539 .probe = uart_clps711x_probe,
540 .remove = __devexit_p(uart_clps711x_remove),
541};
542module_platform_driver(clps711x_uart_driver);
543
544static struct platform_device clps711x_uart_device = {
545 .name = UART_CLPS711X_NAME,
546};
547
548static int __init uart_clps711x_init(void)
549{
550 return platform_device_register(&clps711x_uart_device);
551}
552module_init(uart_clps711x_init);
553
554static void __exit uart_clps711x_exit(void)
555{
556 platform_device_unregister(&clps711x_uart_device);
557}
558module_exit(uart_clps711x_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560MODULE_AUTHOR("Deep Blue Solutions Ltd");
Alexander Shiyan95113722012-10-14 11:05:23 +0400561MODULE_DESCRIPTION("CLPS711X serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562MODULE_LICENSE("GPL");