blob: 50aa3b2a19b827fb5460605097c7f346758e78af [file] [log] [blame]
Bryan Wu194de562007-05-06 14:50:30 -07001/*
2 * File: drivers/serial/bfin_5xx.c
3 * Based on: Based on drivers/serial/sa1100.c
4 * Author: Aubrey Li <aubrey.li@analog.com>
5 *
6 * Created:
7 * Description: Driver for blackfin 5xx serial ports
8 *
Bryan Wu194de562007-05-06 14:50:30 -07009 * Modified:
10 * Copyright 2006 Analog Devices Inc.
11 *
12 * Bugs: Enter bugs at http://blackfin.uclinux.org/
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see the file COPYING, or write
26 * to the Free Software Foundation, Inc.,
27 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28 */
29
30#if defined(CONFIG_SERIAL_BFIN_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
31#define SUPPORT_SYSRQ
32#endif
33
34#include <linux/module.h>
35#include <linux/ioport.h>
36#include <linux/init.h>
37#include <linux/console.h>
38#include <linux/sysrq.h>
39#include <linux/platform_device.h>
40#include <linux/tty.h>
41#include <linux/tty_flip.h>
42#include <linux/serial_core.h>
43
Sonic Zhang474f1a62007-06-29 16:35:17 +080044#ifdef CONFIG_KGDB_UART
45#include <linux/kgdb.h>
46#include <asm/irq_regs.h>
47#endif
48
Bryan Wu194de562007-05-06 14:50:30 -070049#include <asm/gpio.h>
50#include <asm/mach/bfin_serial_5xx.h>
51
52#ifdef CONFIG_SERIAL_BFIN_DMA
53#include <linux/dma-mapping.h>
54#include <asm/io.h>
55#include <asm/irq.h>
56#include <asm/cacheflush.h>
57#endif
58
59/* UART name and device definitions */
60#define BFIN_SERIAL_NAME "ttyBF"
61#define BFIN_SERIAL_MAJOR 204
62#define BFIN_SERIAL_MINOR 64
63
64/*
65 * Setup for console. Argument comes from the menuconfig
66 */
67#define DMA_RX_XCOUNT 512
68#define DMA_RX_YCOUNT (PAGE_SIZE / DMA_RX_XCOUNT)
69
70#define DMA_RX_FLUSH_JIFFIES 5
71
72#ifdef CONFIG_SERIAL_BFIN_DMA
73static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart);
74#else
75static void bfin_serial_do_work(struct work_struct *work);
76static void bfin_serial_tx_chars(struct bfin_serial_port *uart);
Bryan Wu194de562007-05-06 14:50:30 -070077#endif
78
79static void bfin_serial_mctrl_check(struct bfin_serial_port *uart);
80
81/*
82 * interrupts are disabled on entry
83 */
84static void bfin_serial_stop_tx(struct uart_port *port)
85{
86 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
Sonic Zhang1b733512007-12-21 16:45:12 +080087#if !defined(CONFIG_BF54x) && !defined(CONFIG_SERIAL_BFIN_DMA)
Sonic Zhang759eb042007-11-21 17:00:32 +080088 unsigned short ier;
89#endif
Bryan Wu194de562007-05-06 14:50:30 -070090
Roy Huangf4d640c92007-07-12 16:43:46 +080091 while (!(UART_GET_LSR(uart) & TEMT))
92 continue;
Roy Huangf4d640c92007-07-12 16:43:46 +080093
Bryan Wu194de562007-05-06 14:50:30 -070094#ifdef CONFIG_SERIAL_BFIN_DMA
95 disable_dma(uart->tx_dma_channel);
96#else
Roy Huangf4d640c92007-07-12 16:43:46 +080097#ifdef CONFIG_BF54x
Roy Huangf4d640c92007-07-12 16:43:46 +080098 /* Clear TFI bit */
99 UART_PUT_LSR(uart, TFI);
100 UART_CLEAR_IER(uart, ETBEI);
101#else
Bryan Wu194de562007-05-06 14:50:30 -0700102 ier = UART_GET_IER(uart);
103 ier &= ~ETBEI;
104 UART_PUT_IER(uart, ier);
105#endif
Roy Huangf4d640c92007-07-12 16:43:46 +0800106#endif
Bryan Wu194de562007-05-06 14:50:30 -0700107}
108
109/*
110 * port is locked and interrupts are disabled
111 */
112static void bfin_serial_start_tx(struct uart_port *port)
113{
114 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
115
116#ifdef CONFIG_SERIAL_BFIN_DMA
117 bfin_serial_dma_tx_chars(uart);
118#else
Roy Huangf4d640c92007-07-12 16:43:46 +0800119#ifdef CONFIG_BF54x
120 UART_SET_IER(uart, ETBEI);
121#else
Bryan Wu194de562007-05-06 14:50:30 -0700122 unsigned short ier;
123 ier = UART_GET_IER(uart);
124 ier |= ETBEI;
125 UART_PUT_IER(uart, ier);
Bryan Wu194de562007-05-06 14:50:30 -0700126#endif
Sonic Zhanga359cca2007-10-10 16:47:58 +0800127 bfin_serial_tx_chars(uart);
Roy Huangf4d640c92007-07-12 16:43:46 +0800128#endif
Bryan Wu194de562007-05-06 14:50:30 -0700129}
130
131/*
132 * Interrupts are enabled
133 */
134static void bfin_serial_stop_rx(struct uart_port *port)
135{
136 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
Sonic Zhanga359cca2007-10-10 16:47:58 +0800137#ifdef CONFIG_KGDB_UART
138 if (uart->port.line != CONFIG_KGDB_UART_PORT) {
139#endif
Roy Huangf4d640c92007-07-12 16:43:46 +0800140#ifdef CONFIG_BF54x
141 UART_CLEAR_IER(uart, ERBFI);
142#else
Bryan Wu194de562007-05-06 14:50:30 -0700143 unsigned short ier;
144
145 ier = UART_GET_IER(uart);
146 ier &= ~ERBFI;
147 UART_PUT_IER(uart, ier);
Roy Huangf4d640c92007-07-12 16:43:46 +0800148#endif
Sonic Zhanga359cca2007-10-10 16:47:58 +0800149#ifdef CONFIG_KGDB_UART
150 }
151#endif
Bryan Wu194de562007-05-06 14:50:30 -0700152}
153
154/*
155 * Set the modem control timer to fire immediately.
156 */
157static void bfin_serial_enable_ms(struct uart_port *port)
158{
159}
160
Sonic Zhang474f1a62007-06-29 16:35:17 +0800161#ifdef CONFIG_KGDB_UART
162static int kgdb_entry_state;
163
164void kgdb_put_debug_char(int chr)
165{
166 struct bfin_serial_port *uart;
167
168 if (CONFIG_KGDB_UART_PORT<0 || CONFIG_KGDB_UART_PORT>=NR_PORTS)
169 uart = &bfin_serial_ports[0];
170 else
171 uart = &bfin_serial_ports[CONFIG_KGDB_UART_PORT];
172
173 while (!(UART_GET_LSR(uart) & THRE)) {
Mike Frysingerd5148ff2007-07-25 11:57:42 +0800174 SSYNC();
Sonic Zhang474f1a62007-06-29 16:35:17 +0800175 }
Sonic Zhanga359cca2007-10-10 16:47:58 +0800176
177#ifndef CONFIG_BF54x
Sonic Zhang474f1a62007-06-29 16:35:17 +0800178 UART_PUT_LCR(uart, UART_GET_LCR(uart)&(~DLAB));
Mike Frysingerd5148ff2007-07-25 11:57:42 +0800179 SSYNC();
Sonic Zhanga359cca2007-10-10 16:47:58 +0800180#endif
Sonic Zhang474f1a62007-06-29 16:35:17 +0800181 UART_PUT_CHAR(uart, (unsigned char)chr);
Mike Frysingerd5148ff2007-07-25 11:57:42 +0800182 SSYNC();
Sonic Zhang474f1a62007-06-29 16:35:17 +0800183}
184
185int kgdb_get_debug_char(void)
186{
187 struct bfin_serial_port *uart;
188 unsigned char chr;
189
190 if (CONFIG_KGDB_UART_PORT<0 || CONFIG_KGDB_UART_PORT>=NR_PORTS)
191 uart = &bfin_serial_ports[0];
192 else
193 uart = &bfin_serial_ports[CONFIG_KGDB_UART_PORT];
194
195 while(!(UART_GET_LSR(uart) & DR)) {
Mike Frysingerd5148ff2007-07-25 11:57:42 +0800196 SSYNC();
Sonic Zhang474f1a62007-06-29 16:35:17 +0800197 }
Sonic Zhanga359cca2007-10-10 16:47:58 +0800198#ifndef CONFIG_BF54x
Sonic Zhang474f1a62007-06-29 16:35:17 +0800199 UART_PUT_LCR(uart, UART_GET_LCR(uart)&(~DLAB));
Mike Frysingerd5148ff2007-07-25 11:57:42 +0800200 SSYNC();
Sonic Zhanga359cca2007-10-10 16:47:58 +0800201#endif
Sonic Zhang474f1a62007-06-29 16:35:17 +0800202 chr = UART_GET_CHAR(uart);
Mike Frysingerd5148ff2007-07-25 11:57:42 +0800203 SSYNC();
Sonic Zhang474f1a62007-06-29 16:35:17 +0800204
205 return chr;
206}
207#endif
208
Mike Frysinger8851c712007-12-24 19:48:04 +0800209#if ANOMALY_05000230 && defined(CONFIG_SERIAL_BFIN_PIO)
210# define UART_GET_ANOMALY_THRESHOLD(uart) ((uart)->anomaly_threshold)
211# define UART_SET_ANOMALY_THRESHOLD(uart, v) ((uart)->anomaly_threshold = (v))
212#else
213# define UART_GET_ANOMALY_THRESHOLD(uart) 0
214# define UART_SET_ANOMALY_THRESHOLD(uart, v)
215#endif
216
Bryan Wu194de562007-05-06 14:50:30 -0700217#ifdef CONFIG_SERIAL_BFIN_PIO
Bryan Wu194de562007-05-06 14:50:30 -0700218static void bfin_serial_rx_chars(struct bfin_serial_port *uart)
219{
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800220 struct tty_struct *tty = uart->port.info->tty;
Bryan Wu194de562007-05-06 14:50:30 -0700221 unsigned int status, ch, flg;
Mike Frysinger8851c712007-12-24 19:48:04 +0800222 static struct timeval anomaly_start = { .tv_sec = 0 };
Sonic Zhang474f1a62007-06-29 16:35:17 +0800223#ifdef CONFIG_KGDB_UART
224 struct pt_regs *regs = get_irq_regs();
225#endif
Bryan Wu194de562007-05-06 14:50:30 -0700226
Sonic Zhang759eb042007-11-21 17:00:32 +0800227 status = UART_GET_LSR(uart);
Mike Frysinger0bcfd702007-12-24 19:40:05 +0800228 UART_CLEAR_LSR(uart);
229
230 ch = UART_GET_CHAR(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700231 uart->port.icount.rx++;
232
Sonic Zhang474f1a62007-06-29 16:35:17 +0800233#ifdef CONFIG_KGDB_UART
234 if (uart->port.line == CONFIG_KGDB_UART_PORT) {
235 if (uart->port.cons->index == CONFIG_KGDB_UART_PORT && ch == 0x1) { /* Ctrl + A */
236 kgdb_breakkey_pressed(regs);
237 return;
238 } else if (kgdb_entry_state == 0 && ch == '$') {/* connection from KGDB */
239 kgdb_entry_state = 1;
240 } else if (kgdb_entry_state == 1 && ch == 'q') {
241 kgdb_entry_state = 0;
242 kgdb_breakkey_pressed(regs);
243 return;
244 } else if (ch == 0x3) {/* Ctrl + C */
245 kgdb_entry_state = 0;
246 kgdb_breakkey_pressed(regs);
247 return;
248 } else {
249 kgdb_entry_state = 0;
250 }
251 }
252#endif
Mike Frysingerbbf275f2007-08-05 16:48:08 +0800253
254 if (ANOMALY_05000230) {
Mike Frysinger8851c712007-12-24 19:48:04 +0800255 /* The BF533 (and BF561) family of processors have a nice anomaly
256 * where they continuously generate characters for a "single" break.
Mike Frysingerbbf275f2007-08-05 16:48:08 +0800257 * We have to basically ignore this flood until the "next" valid
Mike Frysinger8851c712007-12-24 19:48:04 +0800258 * character comes across. Due to the nature of the flood, it is
259 * not possible to reliably catch bytes that are sent too quickly
260 * after this break. So application code talking to the Blackfin
261 * which sends a break signal must allow at least 1.5 character
262 * times after the end of the break for things to stabilize. This
263 * timeout was picked as it must absolutely be larger than 1
264 * character time +/- some percent. So 1.5 sounds good. All other
265 * Blackfin families operate properly. Woo.
Mike Frysingerbbf275f2007-08-05 16:48:08 +0800266 * Note: While Anomaly 05000230 does not directly address this,
267 * the changes that went in for it also fixed this issue.
Mike Frysinger8851c712007-12-24 19:48:04 +0800268 * That anomaly was fixed in 0.5+ silicon. I like bunnies.
Mike Frysingerbbf275f2007-08-05 16:48:08 +0800269 */
Mike Frysinger8851c712007-12-24 19:48:04 +0800270 if (anomaly_start.tv_sec) {
271 struct timeval curr;
272 suseconds_t usecs;
273
274 if ((~ch & (~ch + 1)) & 0xff)
275 goto known_good_char;
276
277 do_gettimeofday(&curr);
278 if (curr.tv_sec - anomaly_start.tv_sec > 1)
279 goto known_good_char;
280
281 usecs = 0;
282 if (curr.tv_sec != anomaly_start.tv_sec)
283 usecs += USEC_PER_SEC;
284 usecs += curr.tv_usec - anomaly_start.tv_usec;
285
286 if (usecs > UART_GET_ANOMALY_THRESHOLD(uart))
287 goto known_good_char;
288
289 if (ch)
290 anomaly_start.tv_sec = 0;
291 else
292 anomaly_start = curr;
293
294 return;
295
296 known_good_char:
297 anomaly_start.tv_sec = 0;
Mike Frysingerbbf275f2007-08-05 16:48:08 +0800298 }
Bryan Wu194de562007-05-06 14:50:30 -0700299 }
Bryan Wu194de562007-05-06 14:50:30 -0700300
301 if (status & BI) {
Mike Frysingerbbf275f2007-08-05 16:48:08 +0800302 if (ANOMALY_05000230)
Mike Frysinger8851c712007-12-24 19:48:04 +0800303 if (bfin_revid() < 5)
304 do_gettimeofday(&anomaly_start);
Bryan Wu194de562007-05-06 14:50:30 -0700305 uart->port.icount.brk++;
306 if (uart_handle_break(&uart->port))
307 goto ignore_char;
Mike Frysinger98089012007-06-11 15:31:30 +0800308 status &= ~(PE | FE);
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800309 }
310 if (status & PE)
Bryan Wu194de562007-05-06 14:50:30 -0700311 uart->port.icount.parity++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800312 if (status & OE)
Bryan Wu194de562007-05-06 14:50:30 -0700313 uart->port.icount.overrun++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800314 if (status & FE)
Bryan Wu194de562007-05-06 14:50:30 -0700315 uart->port.icount.frame++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800316
317 status &= uart->port.read_status_mask;
318
319 if (status & BI)
320 flg = TTY_BREAK;
321 else if (status & PE)
322 flg = TTY_PARITY;
323 else if (status & FE)
324 flg = TTY_FRAME;
325 else
Bryan Wu194de562007-05-06 14:50:30 -0700326 flg = TTY_NORMAL;
327
328 if (uart_handle_sysrq_char(&uart->port, ch))
329 goto ignore_char;
Bryan Wu194de562007-05-06 14:50:30 -0700330
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800331 uart_insert_char(&uart->port, status, OE, ch, flg);
332
333 ignore_char:
334 tty_flip_buffer_push(tty);
Bryan Wu194de562007-05-06 14:50:30 -0700335}
336
337static void bfin_serial_tx_chars(struct bfin_serial_port *uart)
338{
339 struct circ_buf *xmit = &uart->port.info->xmit;
340
341 if (uart->port.x_char) {
342 UART_PUT_CHAR(uart, uart->port.x_char);
343 uart->port.icount.tx++;
344 uart->port.x_char = 0;
Bryan Wu194de562007-05-06 14:50:30 -0700345 }
346 /*
347 * Check the modem control lines before
348 * transmitting anything.
349 */
350 bfin_serial_mctrl_check(uart);
351
352 if (uart_circ_empty(xmit) || uart_tx_stopped(&uart->port)) {
353 bfin_serial_stop_tx(&uart->port);
354 return;
355 }
356
Sonic Zhang759eb042007-11-21 17:00:32 +0800357 while ((UART_GET_LSR(uart) & THRE) && xmit->tail != xmit->head) {
358 UART_PUT_CHAR(uart, xmit->buf[xmit->tail]);
359 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
360 uart->port.icount.tx++;
361 SSYNC();
362 }
Bryan Wu194de562007-05-06 14:50:30 -0700363
364 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
365 uart_write_wakeup(&uart->port);
366
367 if (uart_circ_empty(xmit))
368 bfin_serial_stop_tx(&uart->port);
369}
370
Aubrey Li5c4e4722007-05-21 18:09:38 +0800371static irqreturn_t bfin_serial_rx_int(int irq, void *dev_id)
372{
373 struct bfin_serial_port *uart = dev_id;
374
Roy Huangf4d640c92007-07-12 16:43:46 +0800375 spin_lock(&uart->port.lock);
Mike Frysinger0bcfd702007-12-24 19:40:05 +0800376 while (UART_GET_LSR(uart) & DR)
Aubrey Li5c4e4722007-05-21 18:09:38 +0800377 bfin_serial_rx_chars(uart);
378 spin_unlock(&uart->port.lock);
Sonic Zhang759eb042007-11-21 17:00:32 +0800379
Aubrey Li5c4e4722007-05-21 18:09:38 +0800380 return IRQ_HANDLED;
381}
382
383static irqreturn_t bfin_serial_tx_int(int irq, void *dev_id)
Bryan Wu194de562007-05-06 14:50:30 -0700384{
385 struct bfin_serial_port *uart = dev_id;
Bryan Wu194de562007-05-06 14:50:30 -0700386
Roy Huangf4d640c92007-07-12 16:43:46 +0800387 spin_lock(&uart->port.lock);
Mike Frysinger0bcfd702007-12-24 19:40:05 +0800388 if (UART_GET_LSR(uart) & THRE)
Aubrey Li5c4e4722007-05-21 18:09:38 +0800389 bfin_serial_tx_chars(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700390 spin_unlock(&uart->port.lock);
Sonic Zhang759eb042007-11-21 17:00:32 +0800391
Bryan Wu194de562007-05-06 14:50:30 -0700392 return IRQ_HANDLED;
393}
394
Aubrey Li5c4e4722007-05-21 18:09:38 +0800395
Bryan Wu194de562007-05-06 14:50:30 -0700396static void bfin_serial_do_work(struct work_struct *work)
397{
398 struct bfin_serial_port *uart = container_of(work, struct bfin_serial_port, cts_workqueue);
399
400 bfin_serial_mctrl_check(uart);
401}
Bryan Wu194de562007-05-06 14:50:30 -0700402#endif
403
404#ifdef CONFIG_SERIAL_BFIN_DMA
405static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart)
406{
407 struct circ_buf *xmit = &uart->port.info->xmit;
408 unsigned short ier;
409 int flags = 0;
410
411 if (!uart->tx_done)
412 return;
Bryan Wu194de562007-05-06 14:50:30 -0700413 uart->tx_done = 0;
414
Bryan Wu194de562007-05-06 14:50:30 -0700415 if (uart_circ_empty(xmit) || uart_tx_stopped(&uart->port)) {
416 bfin_serial_stop_tx(&uart->port);
417 uart->tx_done = 1;
418 return;
419 }
420
Sonic Zhang1b733512007-12-21 16:45:12 +0800421 if (uart->port.x_char) {
422 UART_PUT_CHAR(uart, uart->port.x_char);
423 uart->port.icount.tx++;
424 uart->port.x_char = 0;
425 }
426
427 /*
428 * Check the modem control lines before
429 * transmitting anything.
430 */
431 bfin_serial_mctrl_check(uart);
432
Bryan Wu194de562007-05-06 14:50:30 -0700433 spin_lock_irqsave(&uart->port.lock, flags);
434 uart->tx_count = CIRC_CNT(xmit->head, xmit->tail, UART_XMIT_SIZE);
435 if (uart->tx_count > (UART_XMIT_SIZE - xmit->tail))
436 uart->tx_count = UART_XMIT_SIZE - xmit->tail;
437 blackfin_dcache_flush_range((unsigned long)(xmit->buf+xmit->tail),
438 (unsigned long)(xmit->buf+xmit->tail+uart->tx_count));
439 set_dma_config(uart->tx_dma_channel,
440 set_bfin_dma_config(DIR_READ, DMA_FLOW_STOP,
441 INTR_ON_BUF,
442 DIMENSION_LINEAR,
Michael Hennerich2047e402008-01-22 15:29:18 +0800443 DATA_SIZE_8,
444 DMA_SYNC_RESTART));
Bryan Wu194de562007-05-06 14:50:30 -0700445 set_dma_start_addr(uart->tx_dma_channel, (unsigned long)(xmit->buf+xmit->tail));
446 set_dma_x_count(uart->tx_dma_channel, uart->tx_count);
447 set_dma_x_modify(uart->tx_dma_channel, 1);
448 enable_dma(uart->tx_dma_channel);
Sonic Zhang99ee7b52007-12-21 17:12:55 +0800449
450 xmit->tail = (xmit->tail + uart->tx_count) & (UART_XMIT_SIZE - 1);
451 uart->port.icount.tx += uart->tx_count;
452
Roy Huangf4d640c92007-07-12 16:43:46 +0800453#ifdef CONFIG_BF54x
454 UART_SET_IER(uart, ETBEI);
455#else
Bryan Wu194de562007-05-06 14:50:30 -0700456 ier = UART_GET_IER(uart);
457 ier |= ETBEI;
458 UART_PUT_IER(uart, ier);
Roy Huangf4d640c92007-07-12 16:43:46 +0800459#endif
Bryan Wu194de562007-05-06 14:50:30 -0700460 spin_unlock_irqrestore(&uart->port.lock, flags);
461}
462
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800463static void bfin_serial_dma_rx_chars(struct bfin_serial_port *uart)
Bryan Wu194de562007-05-06 14:50:30 -0700464{
465 struct tty_struct *tty = uart->port.info->tty;
466 int i, flg, status;
467
468 status = UART_GET_LSR(uart);
Mike Frysinger0bcfd702007-12-24 19:40:05 +0800469 UART_CLEAR_LSR(uart);
470
Bryan Wu194de562007-05-06 14:50:30 -0700471 uart->port.icount.rx += CIRC_CNT(uart->rx_dma_buf.head, uart->rx_dma_buf.tail, UART_XMIT_SIZE);;
472
473 if (status & BI) {
474 uart->port.icount.brk++;
475 if (uart_handle_break(&uart->port))
476 goto dma_ignore_char;
Mike Frysinger98089012007-06-11 15:31:30 +0800477 status &= ~(PE | FE);
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800478 }
479 if (status & PE)
Bryan Wu194de562007-05-06 14:50:30 -0700480 uart->port.icount.parity++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800481 if (status & OE)
Bryan Wu194de562007-05-06 14:50:30 -0700482 uart->port.icount.overrun++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800483 if (status & FE)
Bryan Wu194de562007-05-06 14:50:30 -0700484 uart->port.icount.frame++;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800485
486 status &= uart->port.read_status_mask;
487
488 if (status & BI)
489 flg = TTY_BREAK;
490 else if (status & PE)
491 flg = TTY_PARITY;
492 else if (status & FE)
493 flg = TTY_FRAME;
494 else
Bryan Wu194de562007-05-06 14:50:30 -0700495 flg = TTY_NORMAL;
496
497 for (i = uart->rx_dma_buf.head; i < uart->rx_dma_buf.tail; i++) {
498 if (uart_handle_sysrq_char(&uart->port, uart->rx_dma_buf.buf[i]))
499 goto dma_ignore_char;
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800500 uart_insert_char(&uart->port, status, OE, uart->rx_dma_buf.buf[i], flg);
Bryan Wu194de562007-05-06 14:50:30 -0700501 }
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800502
503 dma_ignore_char:
Bryan Wu194de562007-05-06 14:50:30 -0700504 tty_flip_buffer_push(tty);
505}
506
507void bfin_serial_rx_dma_timeout(struct bfin_serial_port *uart)
508{
509 int x_pos, pos;
510 int flags = 0;
511
Bryan Wu194de562007-05-06 14:50:30 -0700512 spin_lock_irqsave(&uart->port.lock, flags);
513 x_pos = DMA_RX_XCOUNT - get_dma_curr_xcount(uart->rx_dma_channel);
514 if (x_pos == DMA_RX_XCOUNT)
515 x_pos = 0;
516
517 pos = uart->rx_dma_nrows * DMA_RX_XCOUNT + x_pos;
518
519 if (pos>uart->rx_dma_buf.tail) {
520 uart->rx_dma_buf.tail = pos;
521 bfin_serial_dma_rx_chars(uart);
522 uart->rx_dma_buf.head = uart->rx_dma_buf.tail;
523 }
524 spin_unlock_irqrestore(&uart->port.lock, flags);
525 uart->rx_dma_timer.expires = jiffies + DMA_RX_FLUSH_JIFFIES;
526 add_timer(&(uart->rx_dma_timer));
527}
528
529static irqreturn_t bfin_serial_dma_tx_int(int irq, void *dev_id)
530{
531 struct bfin_serial_port *uart = dev_id;
532 struct circ_buf *xmit = &uart->port.info->xmit;
533 unsigned short ier;
534
535 spin_lock(&uart->port.lock);
536 if (!(get_dma_curr_irqstat(uart->tx_dma_channel)&DMA_RUN)) {
537 clear_dma_irqstat(uart->tx_dma_channel);
538 disable_dma(uart->tx_dma_channel);
Roy Huangf4d640c92007-07-12 16:43:46 +0800539#ifdef CONFIG_BF54x
540 UART_CLEAR_IER(uart, ETBEI);
541#else
Bryan Wu194de562007-05-06 14:50:30 -0700542 ier = UART_GET_IER(uart);
543 ier &= ~ETBEI;
544 UART_PUT_IER(uart, ier);
Roy Huangf4d640c92007-07-12 16:43:46 +0800545#endif
Bryan Wu194de562007-05-06 14:50:30 -0700546 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
547 uart_write_wakeup(&uart->port);
548
Bryan Wu194de562007-05-06 14:50:30 -0700549 uart->tx_done = 1;
Sonic Zhang1b733512007-12-21 16:45:12 +0800550
551 bfin_serial_dma_tx_chars(uart);
Bryan Wu194de562007-05-06 14:50:30 -0700552 }
553
554 spin_unlock(&uart->port.lock);
555 return IRQ_HANDLED;
556}
557
558static irqreturn_t bfin_serial_dma_rx_int(int irq, void *dev_id)
559{
560 struct bfin_serial_port *uart = dev_id;
561 unsigned short irqstat;
562
563 uart->rx_dma_nrows++;
564 if (uart->rx_dma_nrows == DMA_RX_YCOUNT) {
565 uart->rx_dma_nrows = 0;
566 uart->rx_dma_buf.tail = DMA_RX_XCOUNT*DMA_RX_YCOUNT;
567 bfin_serial_dma_rx_chars(uart);
568 uart->rx_dma_buf.head = uart->rx_dma_buf.tail = 0;
569 }
570 spin_lock(&uart->port.lock);
571 irqstat = get_dma_curr_irqstat(uart->rx_dma_channel);
572 clear_dma_irqstat(uart->rx_dma_channel);
573
574 spin_unlock(&uart->port.lock);
575 return IRQ_HANDLED;
576}
577#endif
578
579/*
580 * Return TIOCSER_TEMT when transmitter is not busy.
581 */
582static unsigned int bfin_serial_tx_empty(struct uart_port *port)
583{
584 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
585 unsigned short lsr;
586
587 lsr = UART_GET_LSR(uart);
588 if (lsr & TEMT)
589 return TIOCSER_TEMT;
590 else
591 return 0;
592}
593
594static unsigned int bfin_serial_get_mctrl(struct uart_port *port)
595{
596#ifdef CONFIG_SERIAL_BFIN_CTSRTS
597 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
598 if (uart->cts_pin < 0)
599 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
600
601 if (gpio_get_value(uart->cts_pin))
602 return TIOCM_DSR | TIOCM_CAR;
603 else
604#endif
605 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
606}
607
608static void bfin_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
609{
610#ifdef CONFIG_SERIAL_BFIN_CTSRTS
611 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
612 if (uart->rts_pin < 0)
613 return;
614
615 if (mctrl & TIOCM_RTS)
616 gpio_set_value(uart->rts_pin, 0);
617 else
618 gpio_set_value(uart->rts_pin, 1);
619#endif
620}
621
622/*
623 * Handle any change of modem status signal since we were last called.
624 */
625static void bfin_serial_mctrl_check(struct bfin_serial_port *uart)
626{
627#ifdef CONFIG_SERIAL_BFIN_CTSRTS
628 unsigned int status;
629# ifdef CONFIG_SERIAL_BFIN_DMA
630 struct uart_info *info = uart->port.info;
631 struct tty_struct *tty = info->tty;
632
633 status = bfin_serial_get_mctrl(&uart->port);
634 if (!(status & TIOCM_CTS)) {
635 tty->hw_stopped = 1;
636 } else {
637 tty->hw_stopped = 0;
638 }
639# else
640 status = bfin_serial_get_mctrl(&uart->port);
641 uart_handle_cts_change(&uart->port, status & TIOCM_CTS);
642 if (!(status & TIOCM_CTS))
643 schedule_work(&uart->cts_workqueue);
644# endif
645#endif
646}
647
648/*
649 * Interrupts are always disabled.
650 */
651static void bfin_serial_break_ctl(struct uart_port *port, int break_state)
652{
Mike Frysingercf686762007-06-11 16:12:49 +0800653 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
654 u16 lcr = UART_GET_LCR(uart);
655 if (break_state)
656 lcr |= SB;
657 else
658 lcr &= ~SB;
659 UART_PUT_LCR(uart, lcr);
660 SSYNC();
Bryan Wu194de562007-05-06 14:50:30 -0700661}
662
663static int bfin_serial_startup(struct uart_port *port)
664{
665 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
666
667#ifdef CONFIG_SERIAL_BFIN_DMA
668 dma_addr_t dma_handle;
669
670 if (request_dma(uart->rx_dma_channel, "BFIN_UART_RX") < 0) {
671 printk(KERN_NOTICE "Unable to attach Blackfin UART RX DMA channel\n");
672 return -EBUSY;
673 }
674
675 if (request_dma(uart->tx_dma_channel, "BFIN_UART_TX") < 0) {
676 printk(KERN_NOTICE "Unable to attach Blackfin UART TX DMA channel\n");
677 free_dma(uart->rx_dma_channel);
678 return -EBUSY;
679 }
680
681 set_dma_callback(uart->rx_dma_channel, bfin_serial_dma_rx_int, uart);
682 set_dma_callback(uart->tx_dma_channel, bfin_serial_dma_tx_int, uart);
683
684 uart->rx_dma_buf.buf = (unsigned char *)dma_alloc_coherent(NULL, PAGE_SIZE, &dma_handle, GFP_DMA);
685 uart->rx_dma_buf.head = 0;
686 uart->rx_dma_buf.tail = 0;
687 uart->rx_dma_nrows = 0;
688
689 set_dma_config(uart->rx_dma_channel,
690 set_bfin_dma_config(DIR_WRITE, DMA_FLOW_AUTO,
691 INTR_ON_ROW, DIMENSION_2D,
Michael Hennerich2047e402008-01-22 15:29:18 +0800692 DATA_SIZE_8,
693 DMA_SYNC_RESTART));
Bryan Wu194de562007-05-06 14:50:30 -0700694 set_dma_x_count(uart->rx_dma_channel, DMA_RX_XCOUNT);
695 set_dma_x_modify(uart->rx_dma_channel, 1);
696 set_dma_y_count(uart->rx_dma_channel, DMA_RX_YCOUNT);
697 set_dma_y_modify(uart->rx_dma_channel, 1);
698 set_dma_start_addr(uart->rx_dma_channel, (unsigned long)uart->rx_dma_buf.buf);
699 enable_dma(uart->rx_dma_channel);
700
701 uart->rx_dma_timer.data = (unsigned long)(uart);
702 uart->rx_dma_timer.function = (void *)bfin_serial_rx_dma_timeout;
703 uart->rx_dma_timer.expires = jiffies + DMA_RX_FLUSH_JIFFIES;
704 add_timer(&(uart->rx_dma_timer));
705#else
Sonic Zhanga359cca2007-10-10 16:47:58 +0800706 if (request_irq(uart->port.irq, bfin_serial_rx_int, IRQF_DISABLED,
Bryan Wu194de562007-05-06 14:50:30 -0700707 "BFIN_UART_RX", uart)) {
Sonic Zhanga359cca2007-10-10 16:47:58 +0800708# ifdef CONFIG_KGDB_UART
709 if (uart->port.line != CONFIG_KGDB_UART_PORT) {
710# endif
Bryan Wu194de562007-05-06 14:50:30 -0700711 printk(KERN_NOTICE "Unable to attach BlackFin UART RX interrupt\n");
712 return -EBUSY;
Sonic Zhanga359cca2007-10-10 16:47:58 +0800713# ifdef CONFIG_KGDB_UART
714 }
715# endif
Bryan Wu194de562007-05-06 14:50:30 -0700716 }
717
Sonic Zhanga359cca2007-10-10 16:47:58 +0800718
Bryan Wu194de562007-05-06 14:50:30 -0700719 if (request_irq
Aubrey Li5c4e4722007-05-21 18:09:38 +0800720 (uart->port.irq+1, bfin_serial_tx_int, IRQF_DISABLED,
Bryan Wu194de562007-05-06 14:50:30 -0700721 "BFIN_UART_TX", uart)) {
722 printk(KERN_NOTICE "Unable to attach BlackFin UART TX interrupt\n");
723 free_irq(uart->port.irq, uart);
724 return -EBUSY;
725 }
726#endif
Roy Huangf4d640c92007-07-12 16:43:46 +0800727#ifdef CONFIG_BF54x
728 UART_SET_IER(uart, ERBFI);
729#else
Bryan Wu194de562007-05-06 14:50:30 -0700730 UART_PUT_IER(uart, UART_GET_IER(uart) | ERBFI);
Roy Huangf4d640c92007-07-12 16:43:46 +0800731#endif
Bryan Wu194de562007-05-06 14:50:30 -0700732 return 0;
733}
734
735static void bfin_serial_shutdown(struct uart_port *port)
736{
737 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
738
739#ifdef CONFIG_SERIAL_BFIN_DMA
740 disable_dma(uart->tx_dma_channel);
741 free_dma(uart->tx_dma_channel);
742 disable_dma(uart->rx_dma_channel);
743 free_dma(uart->rx_dma_channel);
744 del_timer(&(uart->rx_dma_timer));
Sonic Zhang75b780b2007-12-21 17:03:39 +0800745 dma_free_coherent(NULL, PAGE_SIZE, uart->rx_dma_buf.buf, 0);
Bryan Wu194de562007-05-06 14:50:30 -0700746#else
Sonic Zhang474f1a62007-06-29 16:35:17 +0800747#ifdef CONFIG_KGDB_UART
748 if (uart->port.line != CONFIG_KGDB_UART_PORT)
749#endif
Bryan Wu194de562007-05-06 14:50:30 -0700750 free_irq(uart->port.irq, uart);
751 free_irq(uart->port.irq+1, uart);
752#endif
753}
754
755static void
756bfin_serial_set_termios(struct uart_port *port, struct ktermios *termios,
757 struct ktermios *old)
758{
759 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
760 unsigned long flags;
761 unsigned int baud, quot;
762 unsigned short val, ier, lsr, lcr = 0;
763
764 switch (termios->c_cflag & CSIZE) {
765 case CS8:
766 lcr = WLS(8);
767 break;
768 case CS7:
769 lcr = WLS(7);
770 break;
771 case CS6:
772 lcr = WLS(6);
773 break;
774 case CS5:
775 lcr = WLS(5);
776 break;
777 default:
778 printk(KERN_ERR "%s: word lengh not supported\n",
779 __FUNCTION__);
780 }
781
782 if (termios->c_cflag & CSTOPB)
783 lcr |= STB;
Mike Frysinger19aa6382007-06-11 16:16:45 +0800784 if (termios->c_cflag & PARENB)
Bryan Wu194de562007-05-06 14:50:30 -0700785 lcr |= PEN;
Mike Frysinger19aa6382007-06-11 16:16:45 +0800786 if (!(termios->c_cflag & PARODD))
787 lcr |= EPS;
788 if (termios->c_cflag & CMSPAR)
789 lcr |= STP;
Bryan Wu194de562007-05-06 14:50:30 -0700790
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800791 port->read_status_mask = OE;
792 if (termios->c_iflag & INPCK)
793 port->read_status_mask |= (FE | PE);
794 if (termios->c_iflag & (BRKINT | PARMRK))
795 port->read_status_mask |= BI;
Bryan Wu194de562007-05-06 14:50:30 -0700796
Mike Frysinger2ac5ee42007-05-21 18:09:39 +0800797 /*
798 * Characters to ignore
799 */
800 port->ignore_status_mask = 0;
801 if (termios->c_iflag & IGNPAR)
802 port->ignore_status_mask |= FE | PE;
803 if (termios->c_iflag & IGNBRK) {
804 port->ignore_status_mask |= BI;
805 /*
806 * If we're ignoring parity and break indicators,
807 * ignore overruns too (for real raw support).
808 */
809 if (termios->c_iflag & IGNPAR)
810 port->ignore_status_mask |= OE;
811 }
Bryan Wu194de562007-05-06 14:50:30 -0700812
813 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
814 quot = uart_get_divisor(port, baud);
815 spin_lock_irqsave(&uart->port.lock, flags);
816
Mike Frysinger8851c712007-12-24 19:48:04 +0800817 UART_SET_ANOMALY_THRESHOLD(uart, USEC_PER_SEC / baud * 15);
818
Bryan Wu194de562007-05-06 14:50:30 -0700819 do {
820 lsr = UART_GET_LSR(uart);
821 } while (!(lsr & TEMT));
822
823 /* Disable UART */
824 ier = UART_GET_IER(uart);
Roy Huangf4d640c92007-07-12 16:43:46 +0800825#ifdef CONFIG_BF54x
826 UART_CLEAR_IER(uart, 0xF);
827#else
Bryan Wu194de562007-05-06 14:50:30 -0700828 UART_PUT_IER(uart, 0);
Roy Huangf4d640c92007-07-12 16:43:46 +0800829#endif
Bryan Wu194de562007-05-06 14:50:30 -0700830
Roy Huangf4d640c92007-07-12 16:43:46 +0800831#ifndef CONFIG_BF54x
Bryan Wu194de562007-05-06 14:50:30 -0700832 /* Set DLAB in LCR to Access DLL and DLH */
833 val = UART_GET_LCR(uart);
834 val |= DLAB;
835 UART_PUT_LCR(uart, val);
836 SSYNC();
Roy Huangf4d640c92007-07-12 16:43:46 +0800837#endif
Bryan Wu194de562007-05-06 14:50:30 -0700838
839 UART_PUT_DLL(uart, quot & 0xFF);
840 SSYNC();
841 UART_PUT_DLH(uart, (quot >> 8) & 0xFF);
842 SSYNC();
843
Roy Huangf4d640c92007-07-12 16:43:46 +0800844#ifndef CONFIG_BF54x
Bryan Wu194de562007-05-06 14:50:30 -0700845 /* Clear DLAB in LCR to Access THR RBR IER */
846 val = UART_GET_LCR(uart);
847 val &= ~DLAB;
848 UART_PUT_LCR(uart, val);
849 SSYNC();
Roy Huangf4d640c92007-07-12 16:43:46 +0800850#endif
Bryan Wu194de562007-05-06 14:50:30 -0700851
852 UART_PUT_LCR(uart, lcr);
853
854 /* Enable UART */
Roy Huangf4d640c92007-07-12 16:43:46 +0800855#ifdef CONFIG_BF54x
856 UART_SET_IER(uart, ier);
857#else
Bryan Wu194de562007-05-06 14:50:30 -0700858 UART_PUT_IER(uart, ier);
Roy Huangf4d640c92007-07-12 16:43:46 +0800859#endif
Bryan Wu194de562007-05-06 14:50:30 -0700860
861 val = UART_GET_GCTL(uart);
862 val |= UCEN;
863 UART_PUT_GCTL(uart, val);
864
865 spin_unlock_irqrestore(&uart->port.lock, flags);
866}
867
868static const char *bfin_serial_type(struct uart_port *port)
869{
870 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
871
872 return uart->port.type == PORT_BFIN ? "BFIN-UART" : NULL;
873}
874
875/*
876 * Release the memory region(s) being used by 'port'.
877 */
878static void bfin_serial_release_port(struct uart_port *port)
879{
880}
881
882/*
883 * Request the memory region(s) being used by 'port'.
884 */
885static int bfin_serial_request_port(struct uart_port *port)
886{
887 return 0;
888}
889
890/*
891 * Configure/autoconfigure the port.
892 */
893static void bfin_serial_config_port(struct uart_port *port, int flags)
894{
895 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
896
897 if (flags & UART_CONFIG_TYPE &&
898 bfin_serial_request_port(&uart->port) == 0)
899 uart->port.type = PORT_BFIN;
900}
901
902/*
903 * Verify the new serial_struct (for TIOCSSERIAL).
904 * The only change we allow are to the flags and type, and
905 * even then only between PORT_BFIN and PORT_UNKNOWN
906 */
907static int
908bfin_serial_verify_port(struct uart_port *port, struct serial_struct *ser)
909{
910 return 0;
911}
912
913static struct uart_ops bfin_serial_pops = {
914 .tx_empty = bfin_serial_tx_empty,
915 .set_mctrl = bfin_serial_set_mctrl,
916 .get_mctrl = bfin_serial_get_mctrl,
917 .stop_tx = bfin_serial_stop_tx,
918 .start_tx = bfin_serial_start_tx,
919 .stop_rx = bfin_serial_stop_rx,
920 .enable_ms = bfin_serial_enable_ms,
921 .break_ctl = bfin_serial_break_ctl,
922 .startup = bfin_serial_startup,
923 .shutdown = bfin_serial_shutdown,
924 .set_termios = bfin_serial_set_termios,
925 .type = bfin_serial_type,
926 .release_port = bfin_serial_release_port,
927 .request_port = bfin_serial_request_port,
928 .config_port = bfin_serial_config_port,
929 .verify_port = bfin_serial_verify_port,
930};
931
932static void __init bfin_serial_init_ports(void)
933{
934 static int first = 1;
935 int i;
936
937 if (!first)
938 return;
939 first = 0;
940
941 for (i = 0; i < nr_ports; i++) {
942 bfin_serial_ports[i].port.uartclk = get_sclk();
943 bfin_serial_ports[i].port.ops = &bfin_serial_pops;
944 bfin_serial_ports[i].port.line = i;
945 bfin_serial_ports[i].port.iotype = UPIO_MEM;
946 bfin_serial_ports[i].port.membase =
947 (void __iomem *)bfin_serial_resource[i].uart_base_addr;
948 bfin_serial_ports[i].port.mapbase =
949 bfin_serial_resource[i].uart_base_addr;
950 bfin_serial_ports[i].port.irq =
951 bfin_serial_resource[i].uart_irq;
952 bfin_serial_ports[i].port.flags = UPF_BOOT_AUTOCONF;
953#ifdef CONFIG_SERIAL_BFIN_DMA
954 bfin_serial_ports[i].tx_done = 1;
955 bfin_serial_ports[i].tx_count = 0;
956 bfin_serial_ports[i].tx_dma_channel =
957 bfin_serial_resource[i].uart_tx_dma_channel;
958 bfin_serial_ports[i].rx_dma_channel =
959 bfin_serial_resource[i].uart_rx_dma_channel;
960 init_timer(&(bfin_serial_ports[i].rx_dma_timer));
961#else
962 INIT_WORK(&bfin_serial_ports[i].cts_workqueue, bfin_serial_do_work);
963#endif
964#ifdef CONFIG_SERIAL_BFIN_CTSRTS
965 bfin_serial_ports[i].cts_pin =
966 bfin_serial_resource[i].uart_cts_pin;
967 bfin_serial_ports[i].rts_pin =
968 bfin_serial_resource[i].uart_rts_pin;
969#endif
970 bfin_serial_hw_init(&bfin_serial_ports[i]);
Bryan Wu194de562007-05-06 14:50:30 -0700971 }
Roy Huangf4d640c92007-07-12 16:43:46 +0800972
Bryan Wu194de562007-05-06 14:50:30 -0700973}
974
975#ifdef CONFIG_SERIAL_BFIN_CONSOLE
Bryan Wu194de562007-05-06 14:50:30 -0700976/*
977 * If the port was already initialised (eg, by a boot loader),
978 * try to determine the current setup.
979 */
980static void __init
981bfin_serial_console_get_options(struct bfin_serial_port *uart, int *baud,
982 int *parity, int *bits)
983{
984 unsigned short status;
985
986 status = UART_GET_IER(uart) & (ERBFI | ETBEI);
987 if (status == (ERBFI | ETBEI)) {
988 /* ok, the port was enabled */
989 unsigned short lcr, val;
990 unsigned short dlh, dll;
991
992 lcr = UART_GET_LCR(uart);
993
994 *parity = 'n';
995 if (lcr & PEN) {
996 if (lcr & EPS)
997 *parity = 'e';
998 else
999 *parity = 'o';
1000 }
1001 switch (lcr & 0x03) {
1002 case 0: *bits = 5; break;
1003 case 1: *bits = 6; break;
1004 case 2: *bits = 7; break;
1005 case 3: *bits = 8; break;
1006 }
Roy Huangf4d640c92007-07-12 16:43:46 +08001007#ifndef CONFIG_BF54x
Bryan Wu194de562007-05-06 14:50:30 -07001008 /* Set DLAB in LCR to Access DLL and DLH */
1009 val = UART_GET_LCR(uart);
1010 val |= DLAB;
1011 UART_PUT_LCR(uart, val);
Roy Huangf4d640c92007-07-12 16:43:46 +08001012#endif
Bryan Wu194de562007-05-06 14:50:30 -07001013
1014 dll = UART_GET_DLL(uart);
1015 dlh = UART_GET_DLH(uart);
1016
Roy Huangf4d640c92007-07-12 16:43:46 +08001017#ifndef CONFIG_BF54x
Bryan Wu194de562007-05-06 14:50:30 -07001018 /* Clear DLAB in LCR to Access THR RBR IER */
1019 val = UART_GET_LCR(uart);
1020 val &= ~DLAB;
1021 UART_PUT_LCR(uart, val);
Roy Huangf4d640c92007-07-12 16:43:46 +08001022#endif
Bryan Wu194de562007-05-06 14:50:30 -07001023
1024 *baud = get_sclk() / (16*(dll | dlh << 8));
1025 }
1026 pr_debug("%s:baud = %d, parity = %c, bits= %d\n", __FUNCTION__, *baud, *parity, *bits);
1027}
Robin Getz0ae53642007-10-09 17:24:49 +08001028#endif
1029
1030#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
1031static struct uart_driver bfin_serial_reg;
Bryan Wu194de562007-05-06 14:50:30 -07001032
1033static int __init
1034bfin_serial_console_setup(struct console *co, char *options)
1035{
1036 struct bfin_serial_port *uart;
Robin Getz0ae53642007-10-09 17:24:49 +08001037# ifdef CONFIG_SERIAL_BFIN_CONSOLE
Bryan Wu194de562007-05-06 14:50:30 -07001038 int baud = 57600;
1039 int bits = 8;
1040 int parity = 'n';
Robin Getz0ae53642007-10-09 17:24:49 +08001041# ifdef CONFIG_SERIAL_BFIN_CTSRTS
Bryan Wu194de562007-05-06 14:50:30 -07001042 int flow = 'r';
Robin Getz0ae53642007-10-09 17:24:49 +08001043# else
Bryan Wu194de562007-05-06 14:50:30 -07001044 int flow = 'n';
Robin Getz0ae53642007-10-09 17:24:49 +08001045# endif
1046# endif
Bryan Wu194de562007-05-06 14:50:30 -07001047
1048 /*
1049 * Check whether an invalid uart number has been specified, and
1050 * if so, search for the first available port that does have
1051 * console support.
1052 */
1053 if (co->index == -1 || co->index >= nr_ports)
1054 co->index = 0;
1055 uart = &bfin_serial_ports[co->index];
1056
Robin Getz0ae53642007-10-09 17:24:49 +08001057# ifdef CONFIG_SERIAL_BFIN_CONSOLE
Bryan Wu194de562007-05-06 14:50:30 -07001058 if (options)
1059 uart_parse_options(options, &baud, &parity, &bits, &flow);
1060 else
1061 bfin_serial_console_get_options(uart, &baud, &parity, &bits);
1062
1063 return uart_set_options(&uart->port, co, baud, parity, bits, flow);
Robin Getz0ae53642007-10-09 17:24:49 +08001064# else
1065 return 0;
1066# endif
1067}
1068#endif /* defined (CONFIG_SERIAL_BFIN_CONSOLE) ||
1069 defined (CONFIG_EARLY_PRINTK) */
1070
1071#ifdef CONFIG_SERIAL_BFIN_CONSOLE
1072static void bfin_serial_console_putchar(struct uart_port *port, int ch)
1073{
1074 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
1075 while (!(UART_GET_LSR(uart) & THRE))
1076 barrier();
1077 UART_PUT_CHAR(uart, ch);
1078 SSYNC();
Bryan Wu194de562007-05-06 14:50:30 -07001079}
1080
Robin Getz0ae53642007-10-09 17:24:49 +08001081/*
1082 * Interrupts are disabled on entering
1083 */
1084static void
1085bfin_serial_console_write(struct console *co, const char *s, unsigned int count)
1086{
1087 struct bfin_serial_port *uart = &bfin_serial_ports[co->index];
1088 int flags = 0;
1089
1090 spin_lock_irqsave(&uart->port.lock, flags);
1091 uart_console_write(&uart->port, s, count, bfin_serial_console_putchar);
1092 spin_unlock_irqrestore(&uart->port.lock, flags);
1093
1094}
1095
Bryan Wu194de562007-05-06 14:50:30 -07001096static struct console bfin_serial_console = {
1097 .name = BFIN_SERIAL_NAME,
1098 .write = bfin_serial_console_write,
1099 .device = uart_console_device,
1100 .setup = bfin_serial_console_setup,
1101 .flags = CON_PRINTBUFFER,
1102 .index = -1,
1103 .data = &bfin_serial_reg,
1104};
1105
1106static int __init bfin_serial_rs_console_init(void)
1107{
1108 bfin_serial_init_ports();
1109 register_console(&bfin_serial_console);
Sonic Zhang474f1a62007-06-29 16:35:17 +08001110#ifdef CONFIG_KGDB_UART
1111 kgdb_entry_state = 0;
1112 init_kgdb_uart();
1113#endif
Bryan Wu194de562007-05-06 14:50:30 -07001114 return 0;
1115}
1116console_initcall(bfin_serial_rs_console_init);
1117
1118#define BFIN_SERIAL_CONSOLE &bfin_serial_console
1119#else
1120#define BFIN_SERIAL_CONSOLE NULL
Robin Getz0ae53642007-10-09 17:24:49 +08001121#endif /* CONFIG_SERIAL_BFIN_CONSOLE */
1122
1123
1124#ifdef CONFIG_EARLY_PRINTK
1125static __init void early_serial_putc(struct uart_port *port, int ch)
1126{
1127 unsigned timeout = 0xffff;
1128 struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
1129
1130 while ((!(UART_GET_LSR(uart) & THRE)) && --timeout)
1131 cpu_relax();
1132 UART_PUT_CHAR(uart, ch);
1133}
1134
1135static __init void early_serial_write(struct console *con, const char *s,
1136 unsigned int n)
1137{
1138 struct bfin_serial_port *uart = &bfin_serial_ports[con->index];
1139 unsigned int i;
1140
1141 for (i = 0; i < n; i++, s++) {
1142 if (*s == '\n')
1143 early_serial_putc(&uart->port, '\r');
1144 early_serial_putc(&uart->port, *s);
1145 }
1146}
1147
1148static struct __init console bfin_early_serial_console = {
1149 .name = "early_BFuart",
1150 .write = early_serial_write,
1151 .device = uart_console_device,
1152 .flags = CON_PRINTBUFFER,
1153 .setup = bfin_serial_console_setup,
1154 .index = -1,
1155 .data = &bfin_serial_reg,
1156};
1157
1158struct console __init *bfin_earlyserial_init(unsigned int port,
1159 unsigned int cflag)
1160{
1161 struct bfin_serial_port *uart;
1162 struct ktermios t;
1163
1164 if (port == -1 || port >= nr_ports)
1165 port = 0;
1166 bfin_serial_init_ports();
1167 bfin_early_serial_console.index = port;
Robin Getz0ae53642007-10-09 17:24:49 +08001168 uart = &bfin_serial_ports[port];
1169 t.c_cflag = cflag;
1170 t.c_iflag = 0;
1171 t.c_oflag = 0;
1172 t.c_lflag = ICANON;
1173 t.c_line = port;
1174 bfin_serial_set_termios(&uart->port, &t, &t);
1175 return &bfin_early_serial_console;
1176}
1177
1178#endif /* CONFIG_SERIAL_BFIN_CONSOLE */
Bryan Wu194de562007-05-06 14:50:30 -07001179
1180static struct uart_driver bfin_serial_reg = {
1181 .owner = THIS_MODULE,
1182 .driver_name = "bfin-uart",
1183 .dev_name = BFIN_SERIAL_NAME,
1184 .major = BFIN_SERIAL_MAJOR,
1185 .minor = BFIN_SERIAL_MINOR,
1186 .nr = NR_PORTS,
1187 .cons = BFIN_SERIAL_CONSOLE,
1188};
1189
1190static int bfin_serial_suspend(struct platform_device *dev, pm_message_t state)
1191{
1192 struct bfin_serial_port *uart = platform_get_drvdata(dev);
1193
1194 if (uart)
1195 uart_suspend_port(&bfin_serial_reg, &uart->port);
1196
1197 return 0;
1198}
1199
1200static int bfin_serial_resume(struct platform_device *dev)
1201{
1202 struct bfin_serial_port *uart = platform_get_drvdata(dev);
1203
1204 if (uart)
1205 uart_resume_port(&bfin_serial_reg, &uart->port);
1206
1207 return 0;
1208}
1209
1210static int bfin_serial_probe(struct platform_device *dev)
1211{
1212 struct resource *res = dev->resource;
1213 int i;
1214
1215 for (i = 0; i < dev->num_resources; i++, res++)
1216 if (res->flags & IORESOURCE_MEM)
1217 break;
1218
1219 if (i < dev->num_resources) {
1220 for (i = 0; i < nr_ports; i++, res++) {
1221 if (bfin_serial_ports[i].port.mapbase != res->start)
1222 continue;
1223 bfin_serial_ports[i].port.dev = &dev->dev;
1224 uart_add_one_port(&bfin_serial_reg, &bfin_serial_ports[i].port);
1225 platform_set_drvdata(dev, &bfin_serial_ports[i]);
1226 }
1227 }
1228
1229 return 0;
1230}
1231
1232static int bfin_serial_remove(struct platform_device *pdev)
1233{
1234 struct bfin_serial_port *uart = platform_get_drvdata(pdev);
1235
1236
1237#ifdef CONFIG_SERIAL_BFIN_CTSRTS
1238 gpio_free(uart->cts_pin);
1239 gpio_free(uart->rts_pin);
1240#endif
1241
1242 platform_set_drvdata(pdev, NULL);
1243
1244 if (uart)
1245 uart_remove_one_port(&bfin_serial_reg, &uart->port);
1246
1247 return 0;
1248}
1249
1250static struct platform_driver bfin_serial_driver = {
1251 .probe = bfin_serial_probe,
1252 .remove = bfin_serial_remove,
1253 .suspend = bfin_serial_suspend,
1254 .resume = bfin_serial_resume,
1255 .driver = {
1256 .name = "bfin-uart",
1257 },
1258};
1259
1260static int __init bfin_serial_init(void)
1261{
1262 int ret;
Sonic Zhang474f1a62007-06-29 16:35:17 +08001263#ifdef CONFIG_KGDB_UART
1264 struct bfin_serial_port *uart = &bfin_serial_ports[CONFIG_KGDB_UART_PORT];
Sonic Zhanga359cca2007-10-10 16:47:58 +08001265 struct ktermios t;
Sonic Zhang474f1a62007-06-29 16:35:17 +08001266#endif
Bryan Wu194de562007-05-06 14:50:30 -07001267
1268 pr_info("Serial: Blackfin serial driver\n");
1269
1270 bfin_serial_init_ports();
1271
1272 ret = uart_register_driver(&bfin_serial_reg);
1273 if (ret == 0) {
1274 ret = platform_driver_register(&bfin_serial_driver);
1275 if (ret) {
1276 pr_debug("uart register failed\n");
1277 uart_unregister_driver(&bfin_serial_reg);
1278 }
1279 }
Sonic Zhang474f1a62007-06-29 16:35:17 +08001280#ifdef CONFIG_KGDB_UART
1281 if (uart->port.cons->index != CONFIG_KGDB_UART_PORT) {
Sonic Zhanga359cca2007-10-10 16:47:58 +08001282 request_irq(uart->port.irq, bfin_serial_rx_int,
Sonic Zhang474f1a62007-06-29 16:35:17 +08001283 IRQF_DISABLED, "BFIN_UART_RX", uart);
1284 pr_info("Request irq for kgdb uart port\n");
Sonic Zhanga359cca2007-10-10 16:47:58 +08001285#ifdef CONFIG_BF54x
1286 UART_SET_IER(uart, ERBFI);
1287#else
Sonic Zhang474f1a62007-06-29 16:35:17 +08001288 UART_PUT_IER(uart, UART_GET_IER(uart) | ERBFI);
Sonic Zhanga359cca2007-10-10 16:47:58 +08001289#endif
Mike Frysingerd5148ff2007-07-25 11:57:42 +08001290 SSYNC();
Sonic Zhang474f1a62007-06-29 16:35:17 +08001291 t.c_cflag = CS8|B57600;
1292 t.c_iflag = 0;
1293 t.c_oflag = 0;
1294 t.c_lflag = ICANON;
1295 t.c_line = CONFIG_KGDB_UART_PORT;
1296 bfin_serial_set_termios(&uart->port, &t, &t);
1297 }
1298#endif
Bryan Wu194de562007-05-06 14:50:30 -07001299 return ret;
1300}
1301
1302static void __exit bfin_serial_exit(void)
1303{
1304 platform_driver_unregister(&bfin_serial_driver);
1305 uart_unregister_driver(&bfin_serial_reg);
1306}
1307
1308module_init(bfin_serial_init);
1309module_exit(bfin_serial_exit);
1310
1311MODULE_AUTHOR("Aubrey.Li <aubrey.li@analog.com>");
1312MODULE_DESCRIPTION("Blackfin generic serial port driver");
1313MODULE_LICENSE("GPL");
1314MODULE_ALIAS_CHARDEV_MAJOR(BFIN_SERIAL_MAJOR);