blob: d63fad7363b74a309cb67da29afa4782022879f4 [file] [log] [blame]
Bryan Wu194de562007-05-06 14:50:30 -07001/*
Mike Frysinger1ba7a3e2008-01-11 15:56:26 +08002 * Blackfin On-Chip Serial Driver
Bryan Wu194de562007-05-06 14:50:30 -07003 *
Mike Frysingerd273e2012008-10-13 10:33:06 +01004 * Copyright 2006-2008 Analog Devices Inc.
Bryan Wu194de562007-05-06 14:50:30 -07005 *
Mike Frysinger1ba7a3e2008-01-11 15:56:26 +08006 * Enter bugs at http://blackfin.uclinux.org/
Bryan Wu194de562007-05-06 14:50:30 -07007 *
Mike Frysinger1ba7a3e2008-01-11 15:56:26 +08008 * Licensed under the GPL-2 or later.
Bryan Wu194de562007-05-06 14:50:30 -07009 */
10
11#if defined(CONFIG_SERIAL_BFIN_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
12#define SUPPORT_SYSRQ
13#endif
14
15#include <linux/module.h>
16#include <linux/ioport.h>
17#include <linux/init.h>
18#include <linux/console.h>
19#include <linux/sysrq.h>
20#include <linux/platform_device.h>
21#include <linux/tty.h>
22#include <linux/tty_flip.h>
23#include <linux/serial_core.h>
24
Sonic Zhang52e15f0e2009-01-02 13:40:14 +000025#if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
26 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
Sonic Zhang474f1a62007-06-29 16:35:17 +080027#include <linux/kgdb.h>
28#include <asm/irq_regs.h>
29#endif
30
Bryan Wu194de562007-05-06 14:50:30 -070031#include <asm/gpio.h>
Bryan Wu639f6572008-08-27 10:51:02 +080032#include <mach/bfin_serial_5xx.h>
Bryan Wu194de562007-05-06 14:50:30 -070033
34#ifdef CONFIG_SERIAL_BFIN_DMA
35#include <linux/dma-mapping.h>
36#include <asm/io.h>
37#include <asm/irq.h>
38#include <asm/cacheflush.h>
39#endif
40
41/* UART name and device definitions */
42#define BFIN_SERIAL_NAME "ttyBF"
43#define BFIN_SERIAL_MAJOR 204
44#define BFIN_SERIAL_MINOR 64
45
Mike Frysingerc9607ec2008-10-13 10:33:16 +010046static struct bfin_serial_port bfin_serial_ports[BFIN_UART_NR_PORTS];
47static int nr_active_ports = ARRAY_SIZE(bfin_serial_resource);
48
Sonic Zhang52e15f0e2009-01-02 13:40:14 +000049#if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
50 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
51
52# ifndef CONFIG_SERIAL_BFIN_PIO
53# error KGDB only support UART in PIO mode.
54# endif
55
56static int kgdboc_port_line;
57static int kgdboc_break_enabled;
58#endif
Bryan Wu194de562007-05-06 14:50:30 -070059/*
60 * Setup for console. Argument comes from the menuconfig
61 */
62#define DMA_RX_XCOUNT 512
63#define DMA_RX_YCOUNT (PAGE_SIZE / DMA_RX_XCOUNT)
64
Sonic Zhang0aef4562008-02-29 12:08:42 +080065#define DMA_RX_FLUSH_JIFFIES (HZ / 50)
Sonic Zhangf30ac0c2008-06-19 17:46:39 +080066#define CTS_CHECK_JIFFIES (HZ / 50)
Bryan Wu194de562007-05-06 14:50:30 -070067
68#ifdef CONFIG_SERIAL_BFIN_DMA
69static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart);
70#else
Bryan Wu194de562007-05-06 14:50:30 -070071static void bfin_serial_tx_chars(struct bfin_serial_port *uart);
Bryan Wu194de562007-05-06 14:50:30 -070072#endif
73
74static void bfin_serial_mctrl_check(struct bfin_serial_port *uart);
75
76/*
77 * interrupts are disabled on entry
78 */
79static void bfin_serial_stop_tx(struct uart_port *port)
80{
81 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
Sonic Zhang0711d852008-02-25 15:16:50 +080082 struct circ_buf *xmit = &uart->port.info->xmit;
Bryan Wu194de562007-05-06 14:50:30 -070083
Roy Huangf4d640c92007-07-12 16:43:46 +080084 while (!(UART_GET_LSR(uart) & TEMT))
Sonic Zhang0711d852008-02-25 15:16:50 +080085 cpu_relax();
Roy Huangf4d640c92007-07-12 16:43:46 +080086
Bryan Wu194de562007-05-06 14:50:30 -070087#ifdef CONFIG_SERIAL_BFIN_DMA
88 disable_dma(uart->tx_dma_channel);
Sonic Zhang0711d852008-02-25 15:16:50 +080089 xmit->tail = (xmit->tail + uart->tx_count) & (UART_XMIT_SIZE - 1);
90 uart->port.icount.tx += uart->tx_count;
91 uart->tx_count = 0;
92 uart->tx_done = 1;
Bryan Wu194de562007-05-06 14:50:30 -070093#else
Roy Huangf4d640c92007-07-12 16:43:46 +080094#ifdef CONFIG_BF54x
Roy Huangf4d640c92007-07-12 16:43:46 +080095 /* Clear TFI bit */
96 UART_PUT_LSR(uart, TFI);
Bryan Wu194de562007-05-06 14:50:30 -070097#endif
Mike Frysinger89bf6dc52008-05-07 11:41:26 +080098 UART_CLEAR_IER(uart, ETBEI);
Roy Huangf4d640c92007-07-12 16:43:46 +080099#endif
Bryan Wu194de562007-05-06 14:50:30 -0700100}
101
102/*
103 * port is locked and interrupts are disabled
104 */
105static void bfin_serial_start_tx(struct uart_port *port)
106{
107 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
108
109#ifdef CONFIG_SERIAL_BFIN_DMA
Sonic Zhang0711d852008-02-25 15:16:50 +0800110 if (uart->tx_done)
111 bfin_serial_dma_tx_chars(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700112#else
Roy Huangf4d640c92007-07-12 16:43:46 +0800113 UART_SET_IER(uart, ETBEI);
Sonic Zhanga359cca2007-10-10 16:47:58 +0800114 bfin_serial_tx_chars(uart);
Roy Huangf4d640c92007-07-12 16:43:46 +0800115#endif
Bryan Wu194de562007-05-06 14:50:30 -0700116}
117
118/*
119 * Interrupts are enabled
120 */
121static void bfin_serial_stop_rx(struct uart_port *port)
122{
123 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
Sonic Zhang52e15f0e2009-01-02 13:40:14 +0000124
Roy Huangf4d640c92007-07-12 16:43:46 +0800125 UART_CLEAR_IER(uart, ERBFI);
Bryan Wu194de562007-05-06 14:50:30 -0700126}
127
128/*
129 * Set the modem control timer to fire immediately.
130 */
131static void bfin_serial_enable_ms(struct uart_port *port)
132{
133}
134
Sonic Zhang474f1a62007-06-29 16:35:17 +0800135
Mike Frysinger50e2e152008-04-25 03:03:03 +0800136#if ANOMALY_05000363 && defined(CONFIG_SERIAL_BFIN_PIO)
Mike Frysinger8851c712007-12-24 19:48:04 +0800137# define UART_GET_ANOMALY_THRESHOLD(uart) ((uart)->anomaly_threshold)
138# define UART_SET_ANOMALY_THRESHOLD(uart, v) ((uart)->anomaly_threshold = (v))
139#else
140# define UART_GET_ANOMALY_THRESHOLD(uart) 0
141# define UART_SET_ANOMALY_THRESHOLD(uart, v)
142#endif
143
Bryan Wu194de562007-05-06 14:50:30 -0700144#ifdef CONFIG_SERIAL_BFIN_PIO
Bryan Wu194de562007-05-06 14:50:30 -0700145static void bfin_serial_rx_chars(struct bfin_serial_port *uart)
146{
Sonic Zhang52e15f0e2009-01-02 13:40:14 +0000147 struct tty_struct *tty = NULL;
Bryan Wu194de562007-05-06 14:50:30 -0700148 unsigned int status, ch, flg;
Mike Frysinger8851c712007-12-24 19:48:04 +0800149 static struct timeval anomaly_start = { .tv_sec = 0 };
Bryan Wu194de562007-05-06 14:50:30 -0700150
Sonic Zhang759eb042007-11-21 17:00:32 +0800151 status = UART_GET_LSR(uart);
Mike Frysinger0bcfd702007-12-24 19:40:05 +0800152 UART_CLEAR_LSR(uart);
153
154 ch = UART_GET_CHAR(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700155 uart->port.icount.rx++;
156
Sonic Zhang52e15f0e2009-01-02 13:40:14 +0000157#if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
158 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
159 if (kgdb_connected && kgdboc_port_line == uart->port.line)
160 if (ch == 0x3) {/* Ctrl + C */
161 kgdb_breakpoint();
Sonic Zhang474f1a62007-06-29 16:35:17 +0800162 return;
Sonic Zhang474f1a62007-06-29 16:35:17 +0800163 }
Sonic Zhang52e15f0e2009-01-02 13:40:14 +0000164
165 if (!uart->port.info || !uart->port.info->tty)
166 return;
Sonic Zhang474f1a62007-06-29 16:35:17 +0800167#endif
Sonic Zhang52e15f0e2009-01-02 13:40:14 +0000168 tty = uart->port.info->tty;
Mike Frysingerbbf275f2007-08-05 16:48:08 +0800169
Mike Frysinger50e2e152008-04-25 03:03:03 +0800170 if (ANOMALY_05000363) {
Mike Frysinger8851c712007-12-24 19:48:04 +0800171 /* The BF533 (and BF561) family of processors have a nice anomaly
172 * where they continuously generate characters for a "single" break.
Mike Frysingerbbf275f2007-08-05 16:48:08 +0800173 * We have to basically ignore this flood until the "next" valid
Mike Frysinger8851c712007-12-24 19:48:04 +0800174 * character comes across. Due to the nature of the flood, it is
175 * not possible to reliably catch bytes that are sent too quickly
176 * after this break. So application code talking to the Blackfin
177 * which sends a break signal must allow at least 1.5 character
178 * times after the end of the break for things to stabilize. This
179 * timeout was picked as it must absolutely be larger than 1
180 * character time +/- some percent. So 1.5 sounds good. All other
181 * Blackfin families operate properly. Woo.
Mike Frysingerbbf275f2007-08-05 16:48:08 +0800182 */
Mike Frysinger8851c712007-12-24 19:48:04 +0800183 if (anomaly_start.tv_sec) {
184 struct timeval curr;
185 suseconds_t usecs;
186
187 if ((~ch & (~ch + 1)) & 0xff)
188 goto known_good_char;
189
190 do_gettimeofday(&curr);
191 if (curr.tv_sec - anomaly_start.tv_sec > 1)
192 goto known_good_char;
193
194 usecs = 0;
195 if (curr.tv_sec != anomaly_start.tv_sec)
196 usecs += USEC_PER_SEC;
197 usecs += curr.tv_usec - anomaly_start.tv_usec;
198
199 if (usecs > UART_GET_ANOMALY_THRESHOLD(uart))
200 goto known_good_char;
201
202 if (ch)
203 anomaly_start.tv_sec = 0;
204 else
205 anomaly_start = curr;
206
207 return;
208
209 known_good_char:
210 anomaly_start.tv_sec = 0;
Mike Frysingerbbf275f2007-08-05 16:48:08 +0800211 }
Bryan Wu194de562007-05-06 14:50:30 -0700212 }
Bryan Wu194de562007-05-06 14:50:30 -0700213
214 if (status & BI) {
Mike Frysinger50e2e152008-04-25 03:03:03 +0800215 if (ANOMALY_05000363)
Mike Frysinger8851c712007-12-24 19:48:04 +0800216 if (bfin_revid() < 5)
217 do_gettimeofday(&anomaly_start);
Bryan Wu194de562007-05-06 14:50:30 -0700218 uart->port.icount.brk++;
219 if (uart_handle_break(&uart->port))
220 goto ignore_char;
Mike Frysinger98089012007-06-11 15:31:30 +0800221 status &= ~(PE | FE);
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800222 }
223 if (status & PE)
Bryan Wu194de562007-05-06 14:50:30 -0700224 uart->port.icount.parity++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800225 if (status & OE)
Bryan Wu194de562007-05-06 14:50:30 -0700226 uart->port.icount.overrun++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800227 if (status & FE)
Bryan Wu194de562007-05-06 14:50:30 -0700228 uart->port.icount.frame++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800229
230 status &= uart->port.read_status_mask;
231
232 if (status & BI)
233 flg = TTY_BREAK;
234 else if (status & PE)
235 flg = TTY_PARITY;
236 else if (status & FE)
237 flg = TTY_FRAME;
238 else
Bryan Wu194de562007-05-06 14:50:30 -0700239 flg = TTY_NORMAL;
240
241 if (uart_handle_sysrq_char(&uart->port, ch))
242 goto ignore_char;
Bryan Wu194de562007-05-06 14:50:30 -0700243
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800244 uart_insert_char(&uart->port, status, OE, ch, flg);
245
246 ignore_char:
247 tty_flip_buffer_push(tty);
Bryan Wu194de562007-05-06 14:50:30 -0700248}
249
250static void bfin_serial_tx_chars(struct bfin_serial_port *uart)
251{
252 struct circ_buf *xmit = &uart->port.info->xmit;
253
Bryan Wu194de562007-05-06 14:50:30 -0700254 /*
255 * Check the modem control lines before
256 * transmitting anything.
257 */
258 bfin_serial_mctrl_check(uart);
259
260 if (uart_circ_empty(xmit) || uart_tx_stopped(&uart->port)) {
Sonic Zhang5ffdeea22008-10-13 10:33:33 +0100261#ifdef CONFIG_BF54x
262 /* Clear TFI bit */
263 UART_PUT_LSR(uart, TFI);
264#endif
265 UART_CLEAR_IER(uart, ETBEI);
Bryan Wu194de562007-05-06 14:50:30 -0700266 return;
267 }
268
Sonic Zhangf30ac0c2008-06-19 17:46:39 +0800269 if (uart->port.x_char) {
270 UART_PUT_CHAR(uart, uart->port.x_char);
271 uart->port.icount.tx++;
272 uart->port.x_char = 0;
273 }
274
Sonic Zhang759eb042007-11-21 17:00:32 +0800275 while ((UART_GET_LSR(uart) & THRE) && xmit->tail != xmit->head) {
276 UART_PUT_CHAR(uart, xmit->buf[xmit->tail]);
277 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
278 uart->port.icount.tx++;
279 SSYNC();
280 }
Bryan Wu194de562007-05-06 14:50:30 -0700281
282 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
283 uart_write_wakeup(&uart->port);
Bryan Wu194de562007-05-06 14:50:30 -0700284}
285
Aubrey Li5c4e4722007-05-21 18:09:38 +0800286static irqreturn_t bfin_serial_rx_int(int irq, void *dev_id)
287{
288 struct bfin_serial_port *uart = dev_id;
289
Roy Huangf4d640c92007-07-12 16:43:46 +0800290 spin_lock(&uart->port.lock);
Mike Frysinger0bcfd702007-12-24 19:40:05 +0800291 while (UART_GET_LSR(uart) & DR)
Aubrey Li5c4e4722007-05-21 18:09:38 +0800292 bfin_serial_rx_chars(uart);
293 spin_unlock(&uart->port.lock);
Sonic Zhang759eb042007-11-21 17:00:32 +0800294
Aubrey Li5c4e4722007-05-21 18:09:38 +0800295 return IRQ_HANDLED;
296}
297
298static irqreturn_t bfin_serial_tx_int(int irq, void *dev_id)
Bryan Wu194de562007-05-06 14:50:30 -0700299{
300 struct bfin_serial_port *uart = dev_id;
Bryan Wu194de562007-05-06 14:50:30 -0700301
Roy Huangf4d640c92007-07-12 16:43:46 +0800302 spin_lock(&uart->port.lock);
Mike Frysinger0bcfd702007-12-24 19:40:05 +0800303 if (UART_GET_LSR(uart) & THRE)
Aubrey Li5c4e4722007-05-21 18:09:38 +0800304 bfin_serial_tx_chars(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700305 spin_unlock(&uart->port.lock);
Sonic Zhang759eb042007-11-21 17:00:32 +0800306
Bryan Wu194de562007-05-06 14:50:30 -0700307 return IRQ_HANDLED;
308}
Sonic Zhang4cb4f222008-02-02 14:29:25 +0800309#endif
Bryan Wu194de562007-05-06 14:50:30 -0700310
Bryan Wu194de562007-05-06 14:50:30 -0700311#ifdef CONFIG_SERIAL_BFIN_DMA
312static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart)
313{
314 struct circ_buf *xmit = &uart->port.info->xmit;
Bryan Wu194de562007-05-06 14:50:30 -0700315
Bryan Wu194de562007-05-06 14:50:30 -0700316 uart->tx_done = 0;
317
Sonic Zhangf30ac0c2008-06-19 17:46:39 +0800318 /*
319 * Check the modem control lines before
320 * transmitting anything.
321 */
322 bfin_serial_mctrl_check(uart);
323
Bryan Wu194de562007-05-06 14:50:30 -0700324 if (uart_circ_empty(xmit) || uart_tx_stopped(&uart->port)) {
Sonic Zhang0711d852008-02-25 15:16:50 +0800325 uart->tx_count = 0;
Bryan Wu194de562007-05-06 14:50:30 -0700326 uart->tx_done = 1;
327 return;
328 }
329
Sonic Zhang1b733512007-12-21 16:45:12 +0800330 if (uart->port.x_char) {
331 UART_PUT_CHAR(uart, uart->port.x_char);
332 uart->port.icount.tx++;
333 uart->port.x_char = 0;
334 }
335
Bryan Wu194de562007-05-06 14:50:30 -0700336 uart->tx_count = CIRC_CNT(xmit->head, xmit->tail, UART_XMIT_SIZE);
337 if (uart->tx_count > (UART_XMIT_SIZE - xmit->tail))
338 uart->tx_count = UART_XMIT_SIZE - xmit->tail;
339 blackfin_dcache_flush_range((unsigned long)(xmit->buf+xmit->tail),
340 (unsigned long)(xmit->buf+xmit->tail+uart->tx_count));
341 set_dma_config(uart->tx_dma_channel,
342 set_bfin_dma_config(DIR_READ, DMA_FLOW_STOP,
343 INTR_ON_BUF,
344 DIMENSION_LINEAR,
Michael Hennerich2047e402008-01-22 15:29:18 +0800345 DATA_SIZE_8,
346 DMA_SYNC_RESTART));
Bryan Wu194de562007-05-06 14:50:30 -0700347 set_dma_start_addr(uart->tx_dma_channel, (unsigned long)(xmit->buf+xmit->tail));
348 set_dma_x_count(uart->tx_dma_channel, uart->tx_count);
349 set_dma_x_modify(uart->tx_dma_channel, 1);
350 enable_dma(uart->tx_dma_channel);
Sonic Zhang99ee7b52007-12-21 17:12:55 +0800351
Roy Huangf4d640c92007-07-12 16:43:46 +0800352 UART_SET_IER(uart, ETBEI);
Bryan Wu194de562007-05-06 14:50:30 -0700353}
354
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800355static void bfin_serial_dma_rx_chars(struct bfin_serial_port *uart)
Bryan Wu194de562007-05-06 14:50:30 -0700356{
Takashi Iwaia88487c2008-07-16 21:54:42 +0100357 struct tty_struct *tty = uart->port.info->port.tty;
Bryan Wu194de562007-05-06 14:50:30 -0700358 int i, flg, status;
359
360 status = UART_GET_LSR(uart);
Mike Frysinger0bcfd702007-12-24 19:40:05 +0800361 UART_CLEAR_LSR(uart);
362
Sonic Zhang56f5de82008-02-25 15:19:09 +0800363 uart->port.icount.rx +=
364 CIRC_CNT(uart->rx_dma_buf.head, uart->rx_dma_buf.tail,
365 UART_XMIT_SIZE);
Bryan Wu194de562007-05-06 14:50:30 -0700366
367 if (status & BI) {
368 uart->port.icount.brk++;
369 if (uart_handle_break(&uart->port))
370 goto dma_ignore_char;
Mike Frysinger98089012007-06-11 15:31:30 +0800371 status &= ~(PE | FE);
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800372 }
373 if (status & PE)
Bryan Wu194de562007-05-06 14:50:30 -0700374 uart->port.icount.parity++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800375 if (status & OE)
Bryan Wu194de562007-05-06 14:50:30 -0700376 uart->port.icount.overrun++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800377 if (status & FE)
Bryan Wu194de562007-05-06 14:50:30 -0700378 uart->port.icount.frame++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800379
380 status &= uart->port.read_status_mask;
381
382 if (status & BI)
383 flg = TTY_BREAK;
384 else if (status & PE)
385 flg = TTY_PARITY;
386 else if (status & FE)
387 flg = TTY_FRAME;
388 else
Bryan Wu194de562007-05-06 14:50:30 -0700389 flg = TTY_NORMAL;
390
Sonic Zhang56f5de82008-02-25 15:19:09 +0800391 for (i = uart->rx_dma_buf.tail; i != uart->rx_dma_buf.head; i++) {
392 if (i >= UART_XMIT_SIZE)
393 i = 0;
394 if (!uart_handle_sysrq_char(&uart->port, uart->rx_dma_buf.buf[i]))
395 uart_insert_char(&uart->port, status, OE,
396 uart->rx_dma_buf.buf[i], flg);
Bryan Wu194de562007-05-06 14:50:30 -0700397 }
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800398
399 dma_ignore_char:
Bryan Wu194de562007-05-06 14:50:30 -0700400 tty_flip_buffer_push(tty);
401}
402
403void bfin_serial_rx_dma_timeout(struct bfin_serial_port *uart)
404{
405 int x_pos, pos;
Bryan Wu194de562007-05-06 14:50:30 -0700406
Sonic Zhang56f5de82008-02-25 15:19:09 +0800407 uart->rx_dma_nrows = get_dma_curr_ycount(uart->rx_dma_channel);
408 x_pos = get_dma_curr_xcount(uart->rx_dma_channel);
409 uart->rx_dma_nrows = DMA_RX_YCOUNT - uart->rx_dma_nrows;
410 if (uart->rx_dma_nrows == DMA_RX_YCOUNT)
411 uart->rx_dma_nrows = 0;
412 x_pos = DMA_RX_XCOUNT - x_pos;
Bryan Wu194de562007-05-06 14:50:30 -0700413 if (x_pos == DMA_RX_XCOUNT)
414 x_pos = 0;
415
416 pos = uart->rx_dma_nrows * DMA_RX_XCOUNT + x_pos;
Sonic Zhang56f5de82008-02-25 15:19:09 +0800417 if (pos != uart->rx_dma_buf.tail) {
418 uart->rx_dma_buf.head = pos;
Bryan Wu194de562007-05-06 14:50:30 -0700419 bfin_serial_dma_rx_chars(uart);
Sonic Zhang56f5de82008-02-25 15:19:09 +0800420 uart->rx_dma_buf.tail = uart->rx_dma_buf.head;
Bryan Wu194de562007-05-06 14:50:30 -0700421 }
Sonic Zhang0aef4562008-02-29 12:08:42 +0800422
Sonic Zhang0a278422008-04-25 04:36:47 +0800423 mod_timer(&(uart->rx_dma_timer), jiffies + DMA_RX_FLUSH_JIFFIES);
Bryan Wu194de562007-05-06 14:50:30 -0700424}
425
426static irqreturn_t bfin_serial_dma_tx_int(int irq, void *dev_id)
427{
428 struct bfin_serial_port *uart = dev_id;
429 struct circ_buf *xmit = &uart->port.info->xmit;
Bryan Wu194de562007-05-06 14:50:30 -0700430
431 spin_lock(&uart->port.lock);
432 if (!(get_dma_curr_irqstat(uart->tx_dma_channel)&DMA_RUN)) {
Bryan Wu194de562007-05-06 14:50:30 -0700433 disable_dma(uart->tx_dma_channel);
Sonic Zhang0711d852008-02-25 15:16:50 +0800434 clear_dma_irqstat(uart->tx_dma_channel);
Roy Huangf4d640c92007-07-12 16:43:46 +0800435 UART_CLEAR_IER(uart, ETBEI);
Sonic Zhang0711d852008-02-25 15:16:50 +0800436 xmit->tail = (xmit->tail + uart->tx_count) & (UART_XMIT_SIZE - 1);
437 uart->port.icount.tx += uart->tx_count;
Sonic Zhang1b733512007-12-21 16:45:12 +0800438
Sonic Zhang56f5de82008-02-25 15:19:09 +0800439 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
440 uart_write_wakeup(&uart->port);
441
Sonic Zhang1b733512007-12-21 16:45:12 +0800442 bfin_serial_dma_tx_chars(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700443 }
444
445 spin_unlock(&uart->port.lock);
446 return IRQ_HANDLED;
447}
448
449static irqreturn_t bfin_serial_dma_rx_int(int irq, void *dev_id)
450{
451 struct bfin_serial_port *uart = dev_id;
452 unsigned short irqstat;
Sonic Zhang0711d852008-02-25 15:16:50 +0800453
Bryan Wu194de562007-05-06 14:50:30 -0700454 spin_lock(&uart->port.lock);
455 irqstat = get_dma_curr_irqstat(uart->rx_dma_channel);
456 clear_dma_irqstat(uart->rx_dma_channel);
Bryan Wu194de562007-05-06 14:50:30 -0700457 spin_unlock(&uart->port.lock);
Sonic Zhang0aef4562008-02-29 12:08:42 +0800458
Sonic Zhang0a278422008-04-25 04:36:47 +0800459 mod_timer(&(uart->rx_dma_timer), jiffies);
Sonic Zhang0aef4562008-02-29 12:08:42 +0800460
Bryan Wu194de562007-05-06 14:50:30 -0700461 return IRQ_HANDLED;
462}
463#endif
464
465/*
466 * Return TIOCSER_TEMT when transmitter is not busy.
467 */
468static unsigned int bfin_serial_tx_empty(struct uart_port *port)
469{
470 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
471 unsigned short lsr;
472
473 lsr = UART_GET_LSR(uart);
474 if (lsr & TEMT)
475 return TIOCSER_TEMT;
476 else
477 return 0;
478}
479
480static unsigned int bfin_serial_get_mctrl(struct uart_port *port)
481{
482#ifdef CONFIG_SERIAL_BFIN_CTSRTS
483 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
484 if (uart->cts_pin < 0)
485 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
486
Sonic Zhang1feaa512008-06-03 12:19:45 +0800487 if (UART_GET_CTS(uart))
Bryan Wu194de562007-05-06 14:50:30 -0700488 return TIOCM_DSR | TIOCM_CAR;
489 else
490#endif
491 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
492}
493
494static void bfin_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
495{
496#ifdef CONFIG_SERIAL_BFIN_CTSRTS
497 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
498 if (uart->rts_pin < 0)
499 return;
500
501 if (mctrl & TIOCM_RTS)
Sonic Zhang1feaa512008-06-03 12:19:45 +0800502 UART_CLEAR_RTS(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700503 else
Sonic Zhang1feaa512008-06-03 12:19:45 +0800504 UART_SET_RTS(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700505#endif
506}
507
508/*
509 * Handle any change of modem status signal since we were last called.
510 */
511static void bfin_serial_mctrl_check(struct bfin_serial_port *uart)
512{
513#ifdef CONFIG_SERIAL_BFIN_CTSRTS
514 unsigned int status;
Bryan Wu194de562007-05-06 14:50:30 -0700515 struct uart_info *info = uart->port.info;
Takashi Iwaia88487c2008-07-16 21:54:42 +0100516 struct tty_struct *tty = info->port.tty;
Bryan Wu194de562007-05-06 14:50:30 -0700517
518 status = bfin_serial_get_mctrl(&uart->port);
Sonic Zhang4cb4f222008-02-02 14:29:25 +0800519 uart_handle_cts_change(&uart->port, status & TIOCM_CTS);
Bryan Wu194de562007-05-06 14:50:30 -0700520 if (!(status & TIOCM_CTS)) {
521 tty->hw_stopped = 1;
Sonic Zhangf30ac0c2008-06-19 17:46:39 +0800522 uart->cts_timer.data = (unsigned long)(uart);
523 uart->cts_timer.function = (void *)bfin_serial_mctrl_check;
524 uart->cts_timer.expires = jiffies + CTS_CHECK_JIFFIES;
525 add_timer(&(uart->cts_timer));
Bryan Wu194de562007-05-06 14:50:30 -0700526 } else {
527 tty->hw_stopped = 0;
528 }
Bryan Wu194de562007-05-06 14:50:30 -0700529#endif
530}
531
532/*
533 * Interrupts are always disabled.
534 */
535static void bfin_serial_break_ctl(struct uart_port *port, int break_state)
536{
Mike Frysingercf686762007-06-11 16:12:49 +0800537 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
538 u16 lcr = UART_GET_LCR(uart);
539 if (break_state)
540 lcr |= SB;
541 else
542 lcr &= ~SB;
543 UART_PUT_LCR(uart, lcr);
544 SSYNC();
Bryan Wu194de562007-05-06 14:50:30 -0700545}
546
547static int bfin_serial_startup(struct uart_port *port)
548{
549 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
550
551#ifdef CONFIG_SERIAL_BFIN_DMA
552 dma_addr_t dma_handle;
553
554 if (request_dma(uart->rx_dma_channel, "BFIN_UART_RX") < 0) {
555 printk(KERN_NOTICE "Unable to attach Blackfin UART RX DMA channel\n");
556 return -EBUSY;
557 }
558
559 if (request_dma(uart->tx_dma_channel, "BFIN_UART_TX") < 0) {
560 printk(KERN_NOTICE "Unable to attach Blackfin UART TX DMA channel\n");
561 free_dma(uart->rx_dma_channel);
562 return -EBUSY;
563 }
564
565 set_dma_callback(uart->rx_dma_channel, bfin_serial_dma_rx_int, uart);
566 set_dma_callback(uart->tx_dma_channel, bfin_serial_dma_tx_int, uart);
567
568 uart->rx_dma_buf.buf = (unsigned char *)dma_alloc_coherent(NULL, PAGE_SIZE, &dma_handle, GFP_DMA);
569 uart->rx_dma_buf.head = 0;
570 uart->rx_dma_buf.tail = 0;
571 uart->rx_dma_nrows = 0;
572
573 set_dma_config(uart->rx_dma_channel,
574 set_bfin_dma_config(DIR_WRITE, DMA_FLOW_AUTO,
575 INTR_ON_ROW, DIMENSION_2D,
Michael Hennerich2047e402008-01-22 15:29:18 +0800576 DATA_SIZE_8,
577 DMA_SYNC_RESTART));
Bryan Wu194de562007-05-06 14:50:30 -0700578 set_dma_x_count(uart->rx_dma_channel, DMA_RX_XCOUNT);
579 set_dma_x_modify(uart->rx_dma_channel, 1);
580 set_dma_y_count(uart->rx_dma_channel, DMA_RX_YCOUNT);
581 set_dma_y_modify(uart->rx_dma_channel, 1);
582 set_dma_start_addr(uart->rx_dma_channel, (unsigned long)uart->rx_dma_buf.buf);
583 enable_dma(uart->rx_dma_channel);
584
585 uart->rx_dma_timer.data = (unsigned long)(uart);
586 uart->rx_dma_timer.function = (void *)bfin_serial_rx_dma_timeout;
587 uart->rx_dma_timer.expires = jiffies + DMA_RX_FLUSH_JIFFIES;
588 add_timer(&(uart->rx_dma_timer));
589#else
Sonic Zhang52e15f0e2009-01-02 13:40:14 +0000590#if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
591 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
592 if (kgdboc_port_line == uart->port.line && kgdboc_break_enabled)
593 kgdboc_break_enabled = 0;
594 else {
595# endif
Sonic Zhanga359cca2007-10-10 16:47:58 +0800596 if (request_irq(uart->port.irq, bfin_serial_rx_int, IRQF_DISABLED,
Bryan Wu194de562007-05-06 14:50:30 -0700597 "BFIN_UART_RX", uart)) {
598 printk(KERN_NOTICE "Unable to attach BlackFin UART RX interrupt\n");
599 return -EBUSY;
600 }
601
602 if (request_irq
Aubrey Li5c4e4722007-05-21 18:09:38 +0800603 (uart->port.irq+1, bfin_serial_tx_int, IRQF_DISABLED,
Bryan Wu194de562007-05-06 14:50:30 -0700604 "BFIN_UART_TX", uart)) {
605 printk(KERN_NOTICE "Unable to attach BlackFin UART TX interrupt\n");
606 free_irq(uart->port.irq, uart);
607 return -EBUSY;
608 }
Sonic Zhangab2375f2008-10-13 10:33:51 +0100609
610# ifdef CONFIG_BF54x
611 {
612 unsigned uart_dma_ch_rx, uart_dma_ch_tx;
613
614 switch (uart->port.irq) {
615 case IRQ_UART3_RX:
616 uart_dma_ch_rx = CH_UART3_RX;
617 uart_dma_ch_tx = CH_UART3_TX;
618 break;
619 case IRQ_UART2_RX:
620 uart_dma_ch_rx = CH_UART2_RX;
621 uart_dma_ch_tx = CH_UART2_TX;
622 break;
623 default:
624 uart_dma_ch_rx = uart_dma_ch_tx = 0;
625 break;
626 };
627
628 if (uart_dma_ch_rx &&
629 request_dma(uart_dma_ch_rx, "BFIN_UART_RX") < 0) {
630 printk(KERN_NOTICE"Fail to attach UART interrupt\n");
631 free_irq(uart->port.irq, uart);
632 free_irq(uart->port.irq + 1, uart);
633 return -EBUSY;
634 }
635 if (uart_dma_ch_tx &&
636 request_dma(uart_dma_ch_tx, "BFIN_UART_TX") < 0) {
637 printk(KERN_NOTICE "Fail to attach UART interrupt\n");
638 free_dma(uart_dma_ch_rx);
639 free_irq(uart->port.irq, uart);
640 free_irq(uart->port.irq + 1, uart);
641 return -EBUSY;
642 }
643 }
644# endif
Sonic Zhang52e15f0e2009-01-02 13:40:14 +0000645#if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
646 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
647 }
648# endif
Bryan Wu194de562007-05-06 14:50:30 -0700649#endif
Roy Huangf4d640c92007-07-12 16:43:46 +0800650 UART_SET_IER(uart, ERBFI);
Bryan Wu194de562007-05-06 14:50:30 -0700651 return 0;
652}
653
654static void bfin_serial_shutdown(struct uart_port *port)
655{
656 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
657
658#ifdef CONFIG_SERIAL_BFIN_DMA
659 disable_dma(uart->tx_dma_channel);
660 free_dma(uart->tx_dma_channel);
661 disable_dma(uart->rx_dma_channel);
662 free_dma(uart->rx_dma_channel);
663 del_timer(&(uart->rx_dma_timer));
Sonic Zhang75b780b2007-12-21 17:03:39 +0800664 dma_free_coherent(NULL, PAGE_SIZE, uart->rx_dma_buf.buf, 0);
Bryan Wu194de562007-05-06 14:50:30 -0700665#else
Sonic Zhangab2375f2008-10-13 10:33:51 +0100666#ifdef CONFIG_BF54x
667 switch (uart->port.irq) {
668 case IRQ_UART3_RX:
669 free_dma(CH_UART3_RX);
670 free_dma(CH_UART3_TX);
671 break;
672 case IRQ_UART2_RX:
673 free_dma(CH_UART2_RX);
674 free_dma(CH_UART2_TX);
675 break;
676 default:
677 break;
678 };
679#endif
Bryan Wu194de562007-05-06 14:50:30 -0700680 free_irq(uart->port.irq, uart);
681 free_irq(uart->port.irq+1, uart);
682#endif
683}
684
685static void
686bfin_serial_set_termios(struct uart_port *port, struct ktermios *termios,
687 struct ktermios *old)
688{
689 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
690 unsigned long flags;
691 unsigned int baud, quot;
Mike Frysinger0c44a862008-04-24 04:56:02 +0800692 unsigned short val, ier, lcr = 0;
Bryan Wu194de562007-05-06 14:50:30 -0700693
694 switch (termios->c_cflag & CSIZE) {
695 case CS8:
696 lcr = WLS(8);
697 break;
698 case CS7:
699 lcr = WLS(7);
700 break;
701 case CS6:
702 lcr = WLS(6);
703 break;
704 case CS5:
705 lcr = WLS(5);
706 break;
707 default:
708 printk(KERN_ERR "%s: word lengh not supported\n",
Harvey Harrison71cc2c22008-04-30 00:55:10 -0700709 __func__);
Bryan Wu194de562007-05-06 14:50:30 -0700710 }
711
712 if (termios->c_cflag & CSTOPB)
713 lcr |= STB;
Mike Frysinger19aa6382007-06-11 16:16:45 +0800714 if (termios->c_cflag & PARENB)
Bryan Wu194de562007-05-06 14:50:30 -0700715 lcr |= PEN;
Mike Frysinger19aa6382007-06-11 16:16:45 +0800716 if (!(termios->c_cflag & PARODD))
717 lcr |= EPS;
718 if (termios->c_cflag & CMSPAR)
719 lcr |= STP;
Bryan Wu194de562007-05-06 14:50:30 -0700720
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800721 port->read_status_mask = OE;
722 if (termios->c_iflag & INPCK)
723 port->read_status_mask |= (FE | PE);
724 if (termios->c_iflag & (BRKINT | PARMRK))
725 port->read_status_mask |= BI;
Bryan Wu194de562007-05-06 14:50:30 -0700726
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800727 /*
728 * Characters to ignore
729 */
730 port->ignore_status_mask = 0;
731 if (termios->c_iflag & IGNPAR)
732 port->ignore_status_mask |= FE | PE;
733 if (termios->c_iflag & IGNBRK) {
734 port->ignore_status_mask |= BI;
735 /*
736 * If we're ignoring parity and break indicators,
737 * ignore overruns too (for real raw support).
738 */
739 if (termios->c_iflag & IGNPAR)
740 port->ignore_status_mask |= OE;
741 }
Bryan Wu194de562007-05-06 14:50:30 -0700742
743 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
744 quot = uart_get_divisor(port, baud);
745 spin_lock_irqsave(&uart->port.lock, flags);
746
Mike Frysinger8851c712007-12-24 19:48:04 +0800747 UART_SET_ANOMALY_THRESHOLD(uart, USEC_PER_SEC / baud * 15);
748
Bryan Wu194de562007-05-06 14:50:30 -0700749 /* Disable UART */
750 ier = UART_GET_IER(uart);
Sonic Zhang1feaa512008-06-03 12:19:45 +0800751 UART_DISABLE_INTS(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700752
753 /* Set DLAB in LCR to Access DLL and DLH */
Mike Frysinger45828b82008-05-07 11:41:26 +0800754 UART_SET_DLAB(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700755
756 UART_PUT_DLL(uart, quot & 0xFF);
Bryan Wu194de562007-05-06 14:50:30 -0700757 UART_PUT_DLH(uart, (quot >> 8) & 0xFF);
758 SSYNC();
759
760 /* Clear DLAB in LCR to Access THR RBR IER */
Mike Frysinger45828b82008-05-07 11:41:26 +0800761 UART_CLEAR_DLAB(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700762
763 UART_PUT_LCR(uart, lcr);
764
765 /* Enable UART */
Sonic Zhang1feaa512008-06-03 12:19:45 +0800766 UART_ENABLE_INTS(uart, ier);
Bryan Wu194de562007-05-06 14:50:30 -0700767
768 val = UART_GET_GCTL(uart);
769 val |= UCEN;
770 UART_PUT_GCTL(uart, val);
771
Graf Yangb3ef5ab2008-10-13 10:33:42 +0100772 /* Port speed changed, update the per-port timeout. */
773 uart_update_timeout(port, termios->c_cflag, baud);
774
Bryan Wu194de562007-05-06 14:50:30 -0700775 spin_unlock_irqrestore(&uart->port.lock, flags);
776}
777
778static const char *bfin_serial_type(struct uart_port *port)
779{
780 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
781
782 return uart->port.type == PORT_BFIN ? "BFIN-UART" : NULL;
783}
784
785/*
786 * Release the memory region(s) being used by 'port'.
787 */
788static void bfin_serial_release_port(struct uart_port *port)
789{
790}
791
792/*
793 * Request the memory region(s) being used by 'port'.
794 */
795static int bfin_serial_request_port(struct uart_port *port)
796{
797 return 0;
798}
799
800/*
801 * Configure/autoconfigure the port.
802 */
803static void bfin_serial_config_port(struct uart_port *port, int flags)
804{
805 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
806
807 if (flags & UART_CONFIG_TYPE &&
808 bfin_serial_request_port(&uart->port) == 0)
809 uart->port.type = PORT_BFIN;
810}
811
812/*
813 * Verify the new serial_struct (for TIOCSSERIAL).
814 * The only change we allow are to the flags and type, and
815 * even then only between PORT_BFIN and PORT_UNKNOWN
816 */
817static int
818bfin_serial_verify_port(struct uart_port *port, struct serial_struct *ser)
819{
820 return 0;
821}
822
Graf Yang7d01b472008-02-29 11:31:08 +0800823/*
824 * Enable the IrDA function if tty->ldisc.num is N_IRDA.
825 * In other cases, disable IrDA function.
826 */
Graf Yang3b8458a2008-06-07 15:36:33 +0800827static void bfin_serial_set_ldisc(struct uart_port *port)
Graf Yang7d01b472008-02-29 11:31:08 +0800828{
Graf Yang3b8458a2008-06-07 15:36:33 +0800829 int line = port->line;
Graf Yang7d01b472008-02-29 11:31:08 +0800830 unsigned short val;
831
Takashi Iwaia88487c2008-07-16 21:54:42 +0100832 if (line >= port->info->port.tty->driver->num)
Graf Yang7d01b472008-02-29 11:31:08 +0800833 return;
834
Alan Coxb1cbefe2008-08-04 17:22:11 +0100835 switch (port->info->port.tty->termios->c_line) {
Graf Yang7d01b472008-02-29 11:31:08 +0800836 case N_IRDA:
837 val = UART_GET_GCTL(&bfin_serial_ports[line]);
838 val |= (IREN | RPOLC);
839 UART_PUT_GCTL(&bfin_serial_ports[line], val);
840 break;
841 default:
842 val = UART_GET_GCTL(&bfin_serial_ports[line]);
843 val &= ~(IREN | RPOLC);
844 UART_PUT_GCTL(&bfin_serial_ports[line], val);
845 }
846}
847
Sonic Zhang52e15f0e2009-01-02 13:40:14 +0000848#ifdef CONFIG_CONSOLE_POLL
849static void bfin_serial_poll_put_char(struct uart_port *port, unsigned char chr)
850{
851 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
852
853 while (!(UART_GET_LSR(uart) & THRE))
854 cpu_relax();
855
856 UART_CLEAR_DLAB(uart);
857 UART_PUT_CHAR(uart, (unsigned char)chr);
858}
859
860static int bfin_serial_poll_get_char(struct uart_port *port)
861{
862 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
863 unsigned char chr;
864
865 while (!(UART_GET_LSR(uart) & DR))
866 cpu_relax();
867
868 UART_CLEAR_DLAB(uart);
869 chr = UART_GET_CHAR(uart);
870
871 return chr;
872}
873#endif
874
875#if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
876 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
877static void bfin_kgdboc_port_shutdown(struct uart_port *port)
878{
879 if (kgdboc_break_enabled) {
880 kgdboc_break_enabled = 0;
881 bfin_serial_shutdown(port);
882 }
883}
884
885static int bfin_kgdboc_port_startup(struct uart_port *port)
886{
887 kgdboc_port_line = port->line;
888 kgdboc_break_enabled = !bfin_serial_startup(port);
889 return 0;
890}
891#endif
892
Bryan Wu194de562007-05-06 14:50:30 -0700893static struct uart_ops bfin_serial_pops = {
894 .tx_empty = bfin_serial_tx_empty,
895 .set_mctrl = bfin_serial_set_mctrl,
896 .get_mctrl = bfin_serial_get_mctrl,
897 .stop_tx = bfin_serial_stop_tx,
898 .start_tx = bfin_serial_start_tx,
899 .stop_rx = bfin_serial_stop_rx,
900 .enable_ms = bfin_serial_enable_ms,
901 .break_ctl = bfin_serial_break_ctl,
902 .startup = bfin_serial_startup,
903 .shutdown = bfin_serial_shutdown,
904 .set_termios = bfin_serial_set_termios,
Graf Yang3b8458a2008-06-07 15:36:33 +0800905 .set_ldisc = bfin_serial_set_ldisc,
Bryan Wu194de562007-05-06 14:50:30 -0700906 .type = bfin_serial_type,
907 .release_port = bfin_serial_release_port,
908 .request_port = bfin_serial_request_port,
909 .config_port = bfin_serial_config_port,
910 .verify_port = bfin_serial_verify_port,
Sonic Zhang52e15f0e2009-01-02 13:40:14 +0000911#if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
912 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
913 .kgdboc_port_startup = bfin_kgdboc_port_startup,
914 .kgdboc_port_shutdown = bfin_kgdboc_port_shutdown,
915#endif
916#ifdef CONFIG_CONSOLE_POLL
917 .poll_put_char = bfin_serial_poll_put_char,
918 .poll_get_char = bfin_serial_poll_get_char,
919#endif
Bryan Wu194de562007-05-06 14:50:30 -0700920};
921
922static void __init bfin_serial_init_ports(void)
923{
924 static int first = 1;
925 int i;
926
927 if (!first)
928 return;
929 first = 0;
930
Mike Frysingerc9607ec2008-10-13 10:33:16 +0100931 for (i = 0; i < nr_active_ports; i++) {
Bryan Wu194de562007-05-06 14:50:30 -0700932 bfin_serial_ports[i].port.uartclk = get_sclk();
Graf Yangb3ef5ab2008-10-13 10:33:42 +0100933 bfin_serial_ports[i].port.fifosize = BFIN_UART_TX_FIFO_SIZE;
Bryan Wu194de562007-05-06 14:50:30 -0700934 bfin_serial_ports[i].port.ops = &bfin_serial_pops;
935 bfin_serial_ports[i].port.line = i;
936 bfin_serial_ports[i].port.iotype = UPIO_MEM;
937 bfin_serial_ports[i].port.membase =
938 (void __iomem *)bfin_serial_resource[i].uart_base_addr;
939 bfin_serial_ports[i].port.mapbase =
940 bfin_serial_resource[i].uart_base_addr;
941 bfin_serial_ports[i].port.irq =
942 bfin_serial_resource[i].uart_irq;
943 bfin_serial_ports[i].port.flags = UPF_BOOT_AUTOCONF;
944#ifdef CONFIG_SERIAL_BFIN_DMA
945 bfin_serial_ports[i].tx_done = 1;
946 bfin_serial_ports[i].tx_count = 0;
947 bfin_serial_ports[i].tx_dma_channel =
948 bfin_serial_resource[i].uart_tx_dma_channel;
949 bfin_serial_ports[i].rx_dma_channel =
950 bfin_serial_resource[i].uart_rx_dma_channel;
951 init_timer(&(bfin_serial_ports[i].rx_dma_timer));
Bryan Wu194de562007-05-06 14:50:30 -0700952#endif
953#ifdef CONFIG_SERIAL_BFIN_CTSRTS
Sonic Zhangf30ac0c2008-06-19 17:46:39 +0800954 init_timer(&(bfin_serial_ports[i].cts_timer));
Bryan Wu194de562007-05-06 14:50:30 -0700955 bfin_serial_ports[i].cts_pin =
956 bfin_serial_resource[i].uart_cts_pin;
957 bfin_serial_ports[i].rts_pin =
958 bfin_serial_resource[i].uart_rts_pin;
959#endif
960 bfin_serial_hw_init(&bfin_serial_ports[i]);
Bryan Wu194de562007-05-06 14:50:30 -0700961 }
Roy Huangf4d640c92007-07-12 16:43:46 +0800962
Bryan Wu194de562007-05-06 14:50:30 -0700963}
964
965#ifdef CONFIG_SERIAL_BFIN_CONSOLE
Bryan Wu194de562007-05-06 14:50:30 -0700966/*
967 * If the port was already initialised (eg, by a boot loader),
968 * try to determine the current setup.
969 */
970static void __init
971bfin_serial_console_get_options(struct bfin_serial_port *uart, int *baud,
972 int *parity, int *bits)
973{
974 unsigned short status;
975
976 status = UART_GET_IER(uart) & (ERBFI | ETBEI);
977 if (status == (ERBFI | ETBEI)) {
978 /* ok, the port was enabled */
Mike Frysinger45828b82008-05-07 11:41:26 +0800979 u16 lcr, dlh, dll;
Bryan Wu194de562007-05-06 14:50:30 -0700980
981 lcr = UART_GET_LCR(uart);
982
983 *parity = 'n';
984 if (lcr & PEN) {
985 if (lcr & EPS)
986 *parity = 'e';
987 else
988 *parity = 'o';
989 }
990 switch (lcr & 0x03) {
991 case 0: *bits = 5; break;
992 case 1: *bits = 6; break;
993 case 2: *bits = 7; break;
994 case 3: *bits = 8; break;
995 }
996 /* Set DLAB in LCR to Access DLL and DLH */
Mike Frysinger45828b82008-05-07 11:41:26 +0800997 UART_SET_DLAB(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700998
999 dll = UART_GET_DLL(uart);
1000 dlh = UART_GET_DLH(uart);
1001
1002 /* Clear DLAB in LCR to Access THR RBR IER */
Mike Frysinger45828b82008-05-07 11:41:26 +08001003 UART_CLEAR_DLAB(uart);
Bryan Wu194de562007-05-06 14:50:30 -07001004
1005 *baud = get_sclk() / (16*(dll | dlh << 8));
1006 }
Harvey Harrison71cc2c22008-04-30 00:55:10 -07001007 pr_debug("%s:baud = %d, parity = %c, bits= %d\n", __func__, *baud, *parity, *bits);
Bryan Wu194de562007-05-06 14:50:30 -07001008}
Robin Getz0ae53642007-10-09 17:24:49 +08001009#endif
1010
1011#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
1012static struct uart_driver bfin_serial_reg;
Bryan Wu194de562007-05-06 14:50:30 -07001013
1014static int __init
1015bfin_serial_console_setup(struct console *co, char *options)
1016{
1017 struct bfin_serial_port *uart;
Robin Getz0ae53642007-10-09 17:24:49 +08001018# ifdef CONFIG_SERIAL_BFIN_CONSOLE
Bryan Wu194de562007-05-06 14:50:30 -07001019 int baud = 57600;
1020 int bits = 8;
1021 int parity = 'n';
Robin Getz0ae53642007-10-09 17:24:49 +08001022# ifdef CONFIG_SERIAL_BFIN_CTSRTS
Bryan Wu194de562007-05-06 14:50:30 -07001023 int flow = 'r';
Robin Getz0ae53642007-10-09 17:24:49 +08001024# else
Bryan Wu194de562007-05-06 14:50:30 -07001025 int flow = 'n';
Robin Getz0ae53642007-10-09 17:24:49 +08001026# endif
1027# endif
Bryan Wu194de562007-05-06 14:50:30 -07001028
1029 /*
1030 * Check whether an invalid uart number has been specified, and
1031 * if so, search for the first available port that does have
1032 * console support.
1033 */
Mike Frysingerc9607ec2008-10-13 10:33:16 +01001034 if (co->index == -1 || co->index >= nr_active_ports)
Bryan Wu194de562007-05-06 14:50:30 -07001035 co->index = 0;
1036 uart = &bfin_serial_ports[co->index];
1037
Robin Getz0ae53642007-10-09 17:24:49 +08001038# ifdef CONFIG_SERIAL_BFIN_CONSOLE
Bryan Wu194de562007-05-06 14:50:30 -07001039 if (options)
1040 uart_parse_options(options, &baud, &parity, &bits, &flow);
1041 else
1042 bfin_serial_console_get_options(uart, &baud, &parity, &bits);
1043
1044 return uart_set_options(&uart->port, co, baud, parity, bits, flow);
Robin Getz0ae53642007-10-09 17:24:49 +08001045# else
1046 return 0;
1047# endif
1048}
1049#endif /* defined (CONFIG_SERIAL_BFIN_CONSOLE) ||
1050 defined (CONFIG_EARLY_PRINTK) */
1051
1052#ifdef CONFIG_SERIAL_BFIN_CONSOLE
1053static void bfin_serial_console_putchar(struct uart_port *port, int ch)
1054{
1055 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
1056 while (!(UART_GET_LSR(uart) & THRE))
1057 barrier();
1058 UART_PUT_CHAR(uart, ch);
1059 SSYNC();
Bryan Wu194de562007-05-06 14:50:30 -07001060}
1061
Robin Getz0ae53642007-10-09 17:24:49 +08001062/*
1063 * Interrupts are disabled on entering
1064 */
1065static void
1066bfin_serial_console_write(struct console *co, const char *s, unsigned int count)
1067{
1068 struct bfin_serial_port *uart = &bfin_serial_ports[co->index];
1069 int flags = 0;
1070
1071 spin_lock_irqsave(&uart->port.lock, flags);
1072 uart_console_write(&uart->port, s, count, bfin_serial_console_putchar);
1073 spin_unlock_irqrestore(&uart->port.lock, flags);
1074
1075}
1076
Bryan Wu194de562007-05-06 14:50:30 -07001077static struct console bfin_serial_console = {
1078 .name = BFIN_SERIAL_NAME,
1079 .write = bfin_serial_console_write,
1080 .device = uart_console_device,
1081 .setup = bfin_serial_console_setup,
1082 .flags = CON_PRINTBUFFER,
1083 .index = -1,
1084 .data = &bfin_serial_reg,
1085};
1086
1087static int __init bfin_serial_rs_console_init(void)
1088{
1089 bfin_serial_init_ports();
1090 register_console(&bfin_serial_console);
Sonic Zhang52e15f0e2009-01-02 13:40:14 +00001091
Bryan Wu194de562007-05-06 14:50:30 -07001092 return 0;
1093}
1094console_initcall(bfin_serial_rs_console_init);
1095
1096#define BFIN_SERIAL_CONSOLE &bfin_serial_console
1097#else
1098#define BFIN_SERIAL_CONSOLE NULL
Robin Getz0ae53642007-10-09 17:24:49 +08001099#endif /* CONFIG_SERIAL_BFIN_CONSOLE */
1100
1101
1102#ifdef CONFIG_EARLY_PRINTK
1103static __init void early_serial_putc(struct uart_port *port, int ch)
1104{
1105 unsigned timeout = 0xffff;
1106 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
1107
1108 while ((!(UART_GET_LSR(uart) & THRE)) && --timeout)
1109 cpu_relax();
1110 UART_PUT_CHAR(uart, ch);
1111}
1112
1113static __init void early_serial_write(struct console *con, const char *s,
1114 unsigned int n)
1115{
1116 struct bfin_serial_port *uart = &bfin_serial_ports[con->index];
1117 unsigned int i;
1118
1119 for (i = 0; i < n; i++, s++) {
1120 if (*s == '\n')
1121 early_serial_putc(&uart->port, '\r');
1122 early_serial_putc(&uart->port, *s);
1123 }
1124}
1125
Mike Frysingerc1113402008-10-13 10:32:35 +01001126static struct __initdata console bfin_early_serial_console = {
Robin Getz0ae53642007-10-09 17:24:49 +08001127 .name = "early_BFuart",
1128 .write = early_serial_write,
1129 .device = uart_console_device,
1130 .flags = CON_PRINTBUFFER,
1131 .setup = bfin_serial_console_setup,
1132 .index = -1,
1133 .data = &bfin_serial_reg,
1134};
1135
1136struct console __init *bfin_earlyserial_init(unsigned int port,
1137 unsigned int cflag)
1138{
1139 struct bfin_serial_port *uart;
1140 struct ktermios t;
1141
Mike Frysingerc9607ec2008-10-13 10:33:16 +01001142 if (port == -1 || port >= nr_active_ports)
Robin Getz0ae53642007-10-09 17:24:49 +08001143 port = 0;
1144 bfin_serial_init_ports();
1145 bfin_early_serial_console.index = port;
Robin Getz0ae53642007-10-09 17:24:49 +08001146 uart = &bfin_serial_ports[port];
1147 t.c_cflag = cflag;
1148 t.c_iflag = 0;
1149 t.c_oflag = 0;
1150 t.c_lflag = ICANON;
1151 t.c_line = port;
1152 bfin_serial_set_termios(&uart->port, &t, &t);
1153 return &bfin_early_serial_console;
1154}
1155
1156#endif /* CONFIG_SERIAL_BFIN_CONSOLE */
Bryan Wu194de562007-05-06 14:50:30 -07001157
1158static struct uart_driver bfin_serial_reg = {
1159 .owner = THIS_MODULE,
1160 .driver_name = "bfin-uart",
1161 .dev_name = BFIN_SERIAL_NAME,
1162 .major = BFIN_SERIAL_MAJOR,
1163 .minor = BFIN_SERIAL_MINOR,
Graf Yang2ade9722008-04-25 02:55:49 +08001164 .nr = BFIN_UART_NR_PORTS,
Bryan Wu194de562007-05-06 14:50:30 -07001165 .cons = BFIN_SERIAL_CONSOLE,
1166};
1167
1168static int bfin_serial_suspend(struct platform_device *dev, pm_message_t state)
1169{
Sonic Zhangccfbc3e2008-10-13 10:32:44 +01001170 int i;
Bryan Wu194de562007-05-06 14:50:30 -07001171
Mike Frysingerc9607ec2008-10-13 10:33:16 +01001172 for (i = 0; i < nr_active_ports; i++) {
Sonic Zhangccfbc3e2008-10-13 10:32:44 +01001173 if (bfin_serial_ports[i].port.dev != &dev->dev)
1174 continue;
1175 uart_suspend_port(&bfin_serial_reg, &bfin_serial_ports[i].port);
1176 }
Bryan Wu194de562007-05-06 14:50:30 -07001177
1178 return 0;
1179}
1180
1181static int bfin_serial_resume(struct platform_device *dev)
1182{
Sonic Zhangccfbc3e2008-10-13 10:32:44 +01001183 int i;
Bryan Wu194de562007-05-06 14:50:30 -07001184
Mike Frysingerc9607ec2008-10-13 10:33:16 +01001185 for (i = 0; i < nr_active_ports; i++) {
Sonic Zhangccfbc3e2008-10-13 10:32:44 +01001186 if (bfin_serial_ports[i].port.dev != &dev->dev)
1187 continue;
1188 uart_resume_port(&bfin_serial_reg, &bfin_serial_ports[i].port);
1189 }
Bryan Wu194de562007-05-06 14:50:30 -07001190
1191 return 0;
1192}
1193
1194static int bfin_serial_probe(struct platform_device *dev)
1195{
1196 struct resource *res = dev->resource;
1197 int i;
1198
1199 for (i = 0; i < dev->num_resources; i++, res++)
1200 if (res->flags & IORESOURCE_MEM)
1201 break;
1202
1203 if (i < dev->num_resources) {
Mike Frysingerc9607ec2008-10-13 10:33:16 +01001204 for (i = 0; i < nr_active_ports; i++, res++) {
Bryan Wu194de562007-05-06 14:50:30 -07001205 if (bfin_serial_ports[i].port.mapbase != res->start)
1206 continue;
1207 bfin_serial_ports[i].port.dev = &dev->dev;
1208 uart_add_one_port(&bfin_serial_reg, &bfin_serial_ports[i].port);
Bryan Wu194de562007-05-06 14:50:30 -07001209 }
1210 }
1211
1212 return 0;
1213}
1214
Sonic Zhangccfbc3e2008-10-13 10:32:44 +01001215static int bfin_serial_remove(struct platform_device *dev)
Bryan Wu194de562007-05-06 14:50:30 -07001216{
Sonic Zhangccfbc3e2008-10-13 10:32:44 +01001217 int i;
Bryan Wu194de562007-05-06 14:50:30 -07001218
Mike Frysingerc9607ec2008-10-13 10:33:16 +01001219 for (i = 0; i < nr_active_ports; i++) {
Sonic Zhangccfbc3e2008-10-13 10:32:44 +01001220 if (bfin_serial_ports[i].port.dev != &dev->dev)
1221 continue;
1222 uart_remove_one_port(&bfin_serial_reg, &bfin_serial_ports[i].port);
1223 bfin_serial_ports[i].port.dev = NULL;
Bryan Wu194de562007-05-06 14:50:30 -07001224#ifdef CONFIG_SERIAL_BFIN_CTSRTS
Sonic Zhangccfbc3e2008-10-13 10:32:44 +01001225 gpio_free(bfin_serial_ports[i].cts_pin);
1226 gpio_free(bfin_serial_ports[i].rts_pin);
Bryan Wu194de562007-05-06 14:50:30 -07001227#endif
Sonic Zhangccfbc3e2008-10-13 10:32:44 +01001228 }
Bryan Wu194de562007-05-06 14:50:30 -07001229
1230 return 0;
1231}
1232
1233static struct platform_driver bfin_serial_driver = {
1234 .probe = bfin_serial_probe,
1235 .remove = bfin_serial_remove,
1236 .suspend = bfin_serial_suspend,
1237 .resume = bfin_serial_resume,
1238 .driver = {
1239 .name = "bfin-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001240 .owner = THIS_MODULE,
Bryan Wu194de562007-05-06 14:50:30 -07001241 },
1242};
1243
1244static int __init bfin_serial_init(void)
1245{
1246 int ret;
1247
1248 pr_info("Serial: Blackfin serial driver\n");
1249
1250 bfin_serial_init_ports();
1251
1252 ret = uart_register_driver(&bfin_serial_reg);
1253 if (ret == 0) {
1254 ret = platform_driver_register(&bfin_serial_driver);
1255 if (ret) {
1256 pr_debug("uart register failed\n");
1257 uart_unregister_driver(&bfin_serial_reg);
1258 }
1259 }
Bryan Wu194de562007-05-06 14:50:30 -07001260 return ret;
1261}
1262
1263static void __exit bfin_serial_exit(void)
1264{
1265 platform_driver_unregister(&bfin_serial_driver);
1266 uart_unregister_driver(&bfin_serial_reg);
1267}
1268
Sonic Zhang52e15f0e2009-01-02 13:40:14 +00001269
Bryan Wu194de562007-05-06 14:50:30 -07001270module_init(bfin_serial_init);
1271module_exit(bfin_serial_exit);
1272
1273MODULE_AUTHOR("Aubrey.Li <aubrey.li@analog.com>");
1274MODULE_DESCRIPTION("Blackfin generic serial port driver");
1275MODULE_LICENSE("GPL");
1276MODULE_ALIAS_CHARDEV_MAJOR(BFIN_SERIAL_MAJOR);
Kay Sieverse169c132008-04-15 14:34:35 -07001277MODULE_ALIAS("platform:bfin-uart");