2 * Blackfin On-Chip Serial Driver
4 * Copyright 2006-2008 Analog Devices Inc.
6 * Enter bugs at http://blackfin.uclinux.org/
8 * Licensed under the GPL-2 or later.
11 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
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>
25 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
26 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
27 #include <linux/kgdb.h>
28 #include <asm/irq_regs.h>
32 #include <mach/bfin_serial_5xx.h>
34 #ifdef CONFIG_SERIAL_BFIN_DMA
35 #include <linux/dma-mapping.h>
38 #include <asm/cacheflush.h>
41 #ifdef CONFIG_SERIAL_BFIN_MODULE
42 # undef CONFIG_EARLY_PRINTK
45 #ifdef CONFIG_SERIAL_BFIN_MODULE
46 # undef CONFIG_EARLY_PRINTK
49 /* UART name and device definitions */
50 #define BFIN_SERIAL_NAME "ttyBF"
51 #define BFIN_SERIAL_MAJOR 204
52 #define BFIN_SERIAL_MINOR 64
54 static struct bfin_serial_port bfin_serial_ports
[BFIN_UART_NR_PORTS
];
55 static int nr_active_ports
= ARRAY_SIZE(bfin_serial_resource
);
57 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
58 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
60 # ifndef CONFIG_SERIAL_BFIN_PIO
61 # error KGDB only support UART in PIO mode.
64 static int kgdboc_port_line
;
65 static int kgdboc_break_enabled
;
68 * Setup for console. Argument comes from the menuconfig
70 #define DMA_RX_XCOUNT 512
71 #define DMA_RX_YCOUNT (PAGE_SIZE / DMA_RX_XCOUNT)
73 #define DMA_RX_FLUSH_JIFFIES (HZ / 50)
75 #ifdef CONFIG_SERIAL_BFIN_DMA
76 static void bfin_serial_dma_tx_chars(struct bfin_serial_port
*uart
);
78 static void bfin_serial_tx_chars(struct bfin_serial_port
*uart
);
81 static void bfin_serial_reset_irda(struct uart_port
*port
);
83 #if defined(CONFIG_SERIAL_BFIN_CTSRTS) || \
84 defined(CONFIG_SERIAL_BFIN_HARD_CTSRTS)
85 static unsigned int bfin_serial_get_mctrl(struct uart_port
*port
)
87 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
88 if (uart
->cts_pin
< 0)
89 return TIOCM_CTS
| TIOCM_DSR
| TIOCM_CAR
;
91 /* CTS PIN is negative assertive. */
92 if (UART_GET_CTS(uart
))
93 return TIOCM_CTS
| TIOCM_DSR
| TIOCM_CAR
;
95 return TIOCM_DSR
| TIOCM_CAR
;
98 static void bfin_serial_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
100 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
101 if (uart
->rts_pin
< 0)
104 /* RTS PIN is negative assertive. */
105 if (mctrl
& TIOCM_RTS
)
106 UART_ENABLE_RTS(uart
);
108 UART_DISABLE_RTS(uart
);
112 * Handle any change of modem status signal.
114 static irqreturn_t
bfin_serial_mctrl_cts_int(int irq
, void *dev_id
)
116 struct bfin_serial_port
*uart
= dev_id
;
119 status
= bfin_serial_get_mctrl(&uart
->port
);
120 uart_handle_cts_change(&uart
->port
, status
& TIOCM_CTS
);
121 #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
123 UART_CLEAR_SCTS(uart
);
124 UART_CLEAR_IER(uart
, EDSSI
);
130 static unsigned int bfin_serial_get_mctrl(struct uart_port
*port
)
132 return TIOCM_CTS
| TIOCM_DSR
| TIOCM_CAR
;
135 static void bfin_serial_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
141 * interrupts are disabled on entry
143 static void bfin_serial_stop_tx(struct uart_port
*port
)
145 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
146 #ifdef CONFIG_SERIAL_BFIN_DMA
147 struct circ_buf
*xmit
= &uart
->port
.state
->xmit
;
150 while (!(UART_GET_LSR(uart
) & TEMT
))
153 #ifdef CONFIG_SERIAL_BFIN_DMA
154 disable_dma(uart
->tx_dma_channel
);
155 xmit
->tail
= (xmit
->tail
+ uart
->tx_count
) & (UART_XMIT_SIZE
- 1);
156 uart
->port
.icount
.tx
+= uart
->tx_count
;
162 UART_PUT_LSR(uart
, TFI
);
164 UART_CLEAR_IER(uart
, ETBEI
);
169 * port is locked and interrupts are disabled
171 static void bfin_serial_start_tx(struct uart_port
*port
)
173 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
174 struct tty_struct
*tty
= uart
->port
.state
->port
.tty
;
176 #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
177 if (uart
->scts
&& !(bfin_serial_get_mctrl(&uart
->port
) & TIOCM_CTS
)) {
179 uart_handle_cts_change(&uart
->port
, uart
->scts
);
184 * To avoid losting RX interrupt, we reset IR function
185 * before sending data.
187 if (tty
->termios
->c_line
== N_IRDA
)
188 bfin_serial_reset_irda(port
);
190 #ifdef CONFIG_SERIAL_BFIN_DMA
192 bfin_serial_dma_tx_chars(uart
);
194 UART_SET_IER(uart
, ETBEI
);
195 bfin_serial_tx_chars(uart
);
200 * Interrupts are enabled
202 static void bfin_serial_stop_rx(struct uart_port
*port
)
204 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
206 UART_CLEAR_IER(uart
, ERBFI
);
210 * Set the modem control timer to fire immediately.
212 static void bfin_serial_enable_ms(struct uart_port
*port
)
217 #if ANOMALY_05000363 && defined(CONFIG_SERIAL_BFIN_PIO)
218 # define UART_GET_ANOMALY_THRESHOLD(uart) ((uart)->anomaly_threshold)
219 # define UART_SET_ANOMALY_THRESHOLD(uart, v) ((uart)->anomaly_threshold = (v))
221 # define UART_GET_ANOMALY_THRESHOLD(uart) 0
222 # define UART_SET_ANOMALY_THRESHOLD(uart, v)
225 #ifdef CONFIG_SERIAL_BFIN_PIO
226 static void bfin_serial_rx_chars(struct bfin_serial_port
*uart
)
228 struct tty_struct
*tty
= NULL
;
229 unsigned int status
, ch
, flg
;
230 static struct timeval anomaly_start
= { .tv_sec
= 0 };
232 status
= UART_GET_LSR(uart
);
233 UART_CLEAR_LSR(uart
);
235 ch
= UART_GET_CHAR(uart
);
236 uart
->port
.icount
.rx
++;
238 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
239 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
240 if (kgdb_connected
&& kgdboc_port_line
== uart
->port
.line
)
241 if (ch
== 0x3) {/* Ctrl + C */
246 if (!uart
->port
.state
|| !uart
->port
.state
->port
.tty
)
249 tty
= uart
->port
.state
->port
.tty
;
251 if (ANOMALY_05000363
) {
252 /* The BF533 (and BF561) family of processors have a nice anomaly
253 * where they continuously generate characters for a "single" break.
254 * We have to basically ignore this flood until the "next" valid
255 * character comes across. Due to the nature of the flood, it is
256 * not possible to reliably catch bytes that are sent too quickly
257 * after this break. So application code talking to the Blackfin
258 * which sends a break signal must allow at least 1.5 character
259 * times after the end of the break for things to stabilize. This
260 * timeout was picked as it must absolutely be larger than 1
261 * character time +/- some percent. So 1.5 sounds good. All other
262 * Blackfin families operate properly. Woo.
264 if (anomaly_start
.tv_sec
) {
268 if ((~ch
& (~ch
+ 1)) & 0xff)
269 goto known_good_char
;
271 do_gettimeofday(&curr
);
272 if (curr
.tv_sec
- anomaly_start
.tv_sec
> 1)
273 goto known_good_char
;
276 if (curr
.tv_sec
!= anomaly_start
.tv_sec
)
277 usecs
+= USEC_PER_SEC
;
278 usecs
+= curr
.tv_usec
- anomaly_start
.tv_usec
;
280 if (usecs
> UART_GET_ANOMALY_THRESHOLD(uart
))
281 goto known_good_char
;
284 anomaly_start
.tv_sec
= 0;
286 anomaly_start
= curr
;
292 anomaly_start
.tv_sec
= 0;
297 if (ANOMALY_05000363
)
298 if (bfin_revid() < 5)
299 do_gettimeofday(&anomaly_start
);
300 uart
->port
.icount
.brk
++;
301 if (uart_handle_break(&uart
->port
))
303 status
&= ~(PE
| FE
);
306 uart
->port
.icount
.parity
++;
308 uart
->port
.icount
.overrun
++;
310 uart
->port
.icount
.frame
++;
312 status
&= uart
->port
.read_status_mask
;
316 else if (status
& PE
)
318 else if (status
& FE
)
323 if (uart_handle_sysrq_char(&uart
->port
, ch
))
326 uart_insert_char(&uart
->port
, status
, OE
, ch
, flg
);
329 tty_flip_buffer_push(tty
);
332 static void bfin_serial_tx_chars(struct bfin_serial_port
*uart
)
334 struct circ_buf
*xmit
= &uart
->port
.state
->xmit
;
336 if (uart_circ_empty(xmit
) || uart_tx_stopped(&uart
->port
)) {
339 UART_PUT_LSR(uart
, TFI
);
342 * 05000215 - we always clear ETBEI within last UART TX
343 * interrupt to end a string. It is always set
344 * when start a new tx.
346 UART_CLEAR_IER(uart
, ETBEI
);
350 if (uart
->port
.x_char
) {
351 UART_PUT_CHAR(uart
, uart
->port
.x_char
);
352 uart
->port
.icount
.tx
++;
353 uart
->port
.x_char
= 0;
356 while ((UART_GET_LSR(uart
) & THRE
) && xmit
->tail
!= xmit
->head
) {
357 UART_PUT_CHAR(uart
, xmit
->buf
[xmit
->tail
]);
358 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
359 uart
->port
.icount
.tx
++;
363 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
364 uart_write_wakeup(&uart
->port
);
367 static irqreturn_t
bfin_serial_rx_int(int irq
, void *dev_id
)
369 struct bfin_serial_port
*uart
= dev_id
;
371 spin_lock(&uart
->port
.lock
);
372 while (UART_GET_LSR(uart
) & DR
)
373 bfin_serial_rx_chars(uart
);
374 spin_unlock(&uart
->port
.lock
);
379 static irqreturn_t
bfin_serial_tx_int(int irq
, void *dev_id
)
381 struct bfin_serial_port
*uart
= dev_id
;
383 #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
384 if (uart
->scts
&& !(bfin_serial_get_mctrl(&uart
->port
) & TIOCM_CTS
)) {
386 uart_handle_cts_change(&uart
->port
, uart
->scts
);
389 spin_lock(&uart
->port
.lock
);
390 if (UART_GET_LSR(uart
) & THRE
)
391 bfin_serial_tx_chars(uart
);
392 spin_unlock(&uart
->port
.lock
);
398 #ifdef CONFIG_SERIAL_BFIN_DMA
399 static void bfin_serial_dma_tx_chars(struct bfin_serial_port
*uart
)
401 struct circ_buf
*xmit
= &uart
->port
.state
->xmit
;
405 if (uart_circ_empty(xmit
) || uart_tx_stopped(&uart
->port
)) {
411 if (uart
->port
.x_char
) {
412 UART_PUT_CHAR(uart
, uart
->port
.x_char
);
413 uart
->port
.icount
.tx
++;
414 uart
->port
.x_char
= 0;
417 uart
->tx_count
= CIRC_CNT(xmit
->head
, xmit
->tail
, UART_XMIT_SIZE
);
418 if (uart
->tx_count
> (UART_XMIT_SIZE
- xmit
->tail
))
419 uart
->tx_count
= UART_XMIT_SIZE
- xmit
->tail
;
420 blackfin_dcache_flush_range((unsigned long)(xmit
->buf
+xmit
->tail
),
421 (unsigned long)(xmit
->buf
+xmit
->tail
+uart
->tx_count
));
422 set_dma_config(uart
->tx_dma_channel
,
423 set_bfin_dma_config(DIR_READ
, DMA_FLOW_STOP
,
428 set_dma_start_addr(uart
->tx_dma_channel
, (unsigned long)(xmit
->buf
+xmit
->tail
));
429 set_dma_x_count(uart
->tx_dma_channel
, uart
->tx_count
);
430 set_dma_x_modify(uart
->tx_dma_channel
, 1);
432 enable_dma(uart
->tx_dma_channel
);
434 UART_SET_IER(uart
, ETBEI
);
437 static void bfin_serial_dma_rx_chars(struct bfin_serial_port
*uart
)
439 struct tty_struct
*tty
= uart
->port
.state
->port
.tty
;
442 status
= UART_GET_LSR(uart
);
443 UART_CLEAR_LSR(uart
);
445 uart
->port
.icount
.rx
+=
446 CIRC_CNT(uart
->rx_dma_buf
.head
, uart
->rx_dma_buf
.tail
,
450 uart
->port
.icount
.brk
++;
451 if (uart_handle_break(&uart
->port
))
452 goto dma_ignore_char
;
453 status
&= ~(PE
| FE
);
456 uart
->port
.icount
.parity
++;
458 uart
->port
.icount
.overrun
++;
460 uart
->port
.icount
.frame
++;
462 status
&= uart
->port
.read_status_mask
;
466 else if (status
& PE
)
468 else if (status
& FE
)
473 for (i
= uart
->rx_dma_buf
.tail
; ; i
++) {
474 if (i
>= UART_XMIT_SIZE
)
476 if (i
== uart
->rx_dma_buf
.head
)
478 if (!uart_handle_sysrq_char(&uart
->port
, uart
->rx_dma_buf
.buf
[i
]))
479 uart_insert_char(&uart
->port
, status
, OE
,
480 uart
->rx_dma_buf
.buf
[i
], flg
);
484 tty_flip_buffer_push(tty
);
487 void bfin_serial_rx_dma_timeout(struct bfin_serial_port
*uart
)
491 dma_disable_irq(uart
->rx_dma_channel
);
492 spin_lock_bh(&uart
->port
.lock
);
494 /* 2D DMA RX buffer ring is used. Because curr_y_count and
495 * curr_x_count can't be read as an atomic operation,
496 * curr_y_count should be read before curr_x_count. When
497 * curr_x_count is read, curr_y_count may already indicate
498 * next buffer line. But, the position calculated here is
499 * still indicate the old line. The wrong position data may
500 * be smaller than current buffer tail, which cause garbages
501 * are received if it is not prohibit.
503 uart
->rx_dma_nrows
= get_dma_curr_ycount(uart
->rx_dma_channel
);
504 x_pos
= get_dma_curr_xcount(uart
->rx_dma_channel
);
505 uart
->rx_dma_nrows
= DMA_RX_YCOUNT
- uart
->rx_dma_nrows
;
506 if (uart
->rx_dma_nrows
== DMA_RX_YCOUNT
|| x_pos
== 0)
507 uart
->rx_dma_nrows
= 0;
508 x_pos
= DMA_RX_XCOUNT
- x_pos
;
509 if (x_pos
== DMA_RX_XCOUNT
)
512 pos
= uart
->rx_dma_nrows
* DMA_RX_XCOUNT
+ x_pos
;
513 /* Ignore receiving data if new position is in the same line of
514 * current buffer tail and small.
516 if (pos
> uart
->rx_dma_buf
.tail
||
517 uart
->rx_dma_nrows
< (uart
->rx_dma_buf
.tail
/DMA_RX_XCOUNT
)) {
518 uart
->rx_dma_buf
.head
= pos
;
519 bfin_serial_dma_rx_chars(uart
);
520 uart
->rx_dma_buf
.tail
= uart
->rx_dma_buf
.head
;
523 spin_unlock_bh(&uart
->port
.lock
);
524 dma_enable_irq(uart
->rx_dma_channel
);
526 mod_timer(&(uart
->rx_dma_timer
), jiffies
+ DMA_RX_FLUSH_JIFFIES
);
529 static irqreturn_t
bfin_serial_dma_tx_int(int irq
, void *dev_id
)
531 struct bfin_serial_port
*uart
= dev_id
;
532 struct circ_buf
*xmit
= &uart
->port
.state
->xmit
;
534 #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
535 if (uart
->scts
&& !(bfin_serial_get_mctrl(&uart
->port
)&TIOCM_CTS
)) {
537 uart_handle_cts_change(&uart
->port
, uart
->scts
);
541 spin_lock(&uart
->port
.lock
);
542 if (!(get_dma_curr_irqstat(uart
->tx_dma_channel
)&DMA_RUN
)) {
543 disable_dma(uart
->tx_dma_channel
);
544 clear_dma_irqstat(uart
->tx_dma_channel
);
546 * 05000215 - we always clear ETBEI within last UART TX
547 * interrupt to end a string. It is always set
548 * when start a new tx.
550 UART_CLEAR_IER(uart
, ETBEI
);
551 xmit
->tail
= (xmit
->tail
+ uart
->tx_count
) & (UART_XMIT_SIZE
- 1);
552 uart
->port
.icount
.tx
+= uart
->tx_count
;
554 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
555 uart_write_wakeup(&uart
->port
);
557 bfin_serial_dma_tx_chars(uart
);
560 spin_unlock(&uart
->port
.lock
);
564 static irqreturn_t
bfin_serial_dma_rx_int(int irq
, void *dev_id
)
566 struct bfin_serial_port
*uart
= dev_id
;
567 unsigned short irqstat
;
570 spin_lock(&uart
->port
.lock
);
571 irqstat
= get_dma_curr_irqstat(uart
->rx_dma_channel
);
572 clear_dma_irqstat(uart
->rx_dma_channel
);
574 uart
->rx_dma_nrows
= get_dma_curr_ycount(uart
->rx_dma_channel
);
575 x_pos
= get_dma_curr_xcount(uart
->rx_dma_channel
);
576 uart
->rx_dma_nrows
= DMA_RX_YCOUNT
- uart
->rx_dma_nrows
;
577 if (uart
->rx_dma_nrows
== DMA_RX_YCOUNT
|| x_pos
== 0)
578 uart
->rx_dma_nrows
= 0;
580 pos
= uart
->rx_dma_nrows
* DMA_RX_XCOUNT
;
581 if (pos
> uart
->rx_dma_buf
.tail
||
582 uart
->rx_dma_nrows
< (uart
->rx_dma_buf
.tail
/DMA_RX_XCOUNT
)) {
583 uart
->rx_dma_buf
.head
= pos
;
584 bfin_serial_dma_rx_chars(uart
);
585 uart
->rx_dma_buf
.tail
= uart
->rx_dma_buf
.head
;
588 spin_unlock(&uart
->port
.lock
);
595 * Return TIOCSER_TEMT when transmitter is not busy.
597 static unsigned int bfin_serial_tx_empty(struct uart_port
*port
)
599 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
602 lsr
= UART_GET_LSR(uart
);
609 static void bfin_serial_break_ctl(struct uart_port
*port
, int break_state
)
611 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
612 u16 lcr
= UART_GET_LCR(uart
);
617 UART_PUT_LCR(uart
, lcr
);
621 static int bfin_serial_startup(struct uart_port
*port
)
623 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
625 #ifdef CONFIG_SERIAL_BFIN_DMA
626 dma_addr_t dma_handle
;
628 if (request_dma(uart
->rx_dma_channel
, "BFIN_UART_RX") < 0) {
629 printk(KERN_NOTICE
"Unable to attach Blackfin UART RX DMA channel\n");
633 if (request_dma(uart
->tx_dma_channel
, "BFIN_UART_TX") < 0) {
634 printk(KERN_NOTICE
"Unable to attach Blackfin UART TX DMA channel\n");
635 free_dma(uart
->rx_dma_channel
);
639 set_dma_callback(uart
->rx_dma_channel
, bfin_serial_dma_rx_int
, uart
);
640 set_dma_callback(uart
->tx_dma_channel
, bfin_serial_dma_tx_int
, uart
);
642 uart
->rx_dma_buf
.buf
= (unsigned char *)dma_alloc_coherent(NULL
, PAGE_SIZE
, &dma_handle
, GFP_DMA
);
643 uart
->rx_dma_buf
.head
= 0;
644 uart
->rx_dma_buf
.tail
= 0;
645 uart
->rx_dma_nrows
= 0;
647 set_dma_config(uart
->rx_dma_channel
,
648 set_bfin_dma_config(DIR_WRITE
, DMA_FLOW_AUTO
,
649 INTR_ON_ROW
, DIMENSION_2D
,
652 set_dma_x_count(uart
->rx_dma_channel
, DMA_RX_XCOUNT
);
653 set_dma_x_modify(uart
->rx_dma_channel
, 1);
654 set_dma_y_count(uart
->rx_dma_channel
, DMA_RX_YCOUNT
);
655 set_dma_y_modify(uart
->rx_dma_channel
, 1);
656 set_dma_start_addr(uart
->rx_dma_channel
, (unsigned long)uart
->rx_dma_buf
.buf
);
657 enable_dma(uart
->rx_dma_channel
);
659 uart
->rx_dma_timer
.data
= (unsigned long)(uart
);
660 uart
->rx_dma_timer
.function
= (void *)bfin_serial_rx_dma_timeout
;
661 uart
->rx_dma_timer
.expires
= jiffies
+ DMA_RX_FLUSH_JIFFIES
;
662 add_timer(&(uart
->rx_dma_timer
));
664 # if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
665 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
666 if (kgdboc_port_line
== uart
->port
.line
&& kgdboc_break_enabled
)
667 kgdboc_break_enabled
= 0;
670 if (request_irq(uart
->port
.irq
, bfin_serial_rx_int
, IRQF_DISABLED
,
671 "BFIN_UART_RX", uart
)) {
672 printk(KERN_NOTICE
"Unable to attach BlackFin UART RX interrupt\n");
677 (uart
->port
.irq
+1, bfin_serial_tx_int
, IRQF_DISABLED
,
678 "BFIN_UART_TX", uart
)) {
679 printk(KERN_NOTICE
"Unable to attach BlackFin UART TX interrupt\n");
680 free_irq(uart
->port
.irq
, uart
);
686 unsigned uart_dma_ch_rx
, uart_dma_ch_tx
;
688 switch (uart
->port
.irq
) {
690 uart_dma_ch_rx
= CH_UART3_RX
;
691 uart_dma_ch_tx
= CH_UART3_TX
;
694 uart_dma_ch_rx
= CH_UART2_RX
;
695 uart_dma_ch_tx
= CH_UART2_TX
;
698 uart_dma_ch_rx
= uart_dma_ch_tx
= 0;
702 if (uart_dma_ch_rx
&&
703 request_dma(uart_dma_ch_rx
, "BFIN_UART_RX") < 0) {
704 printk(KERN_NOTICE
"Fail to attach UART interrupt\n");
705 free_irq(uart
->port
.irq
, uart
);
706 free_irq(uart
->port
.irq
+ 1, uart
);
709 if (uart_dma_ch_tx
&&
710 request_dma(uart_dma_ch_tx
, "BFIN_UART_TX") < 0) {
711 printk(KERN_NOTICE
"Fail to attach UART interrupt\n");
712 free_dma(uart_dma_ch_rx
);
713 free_irq(uart
->port
.irq
, uart
);
714 free_irq(uart
->port
.irq
+ 1, uart
);
719 # if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
720 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
725 #ifdef CONFIG_SERIAL_BFIN_CTSRTS
726 if (uart
->cts_pin
>= 0) {
727 if (request_irq(gpio_to_irq(uart
->cts_pin
),
728 bfin_serial_mctrl_cts_int
,
729 IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
|
730 IRQF_DISABLED
, "BFIN_UART_CTS", uart
)) {
732 pr_info("Unable to attach BlackFin UART CTS interrupt.\
736 if (uart
->rts_pin
>= 0) {
737 gpio_request(uart
->rts_pin
, DRIVER_NAME
);
738 gpio_direction_output(uart
->rts_pin
, 0);
741 #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
742 if (request_irq(uart
->status_irq
,
743 bfin_serial_mctrl_cts_int
,
744 IRQF_DISABLED
, "BFIN_UART_MODEM_STATUS", uart
)) {
745 pr_info("Unable to attach BlackFin UART Modem \
746 Status interrupt.\n");
749 if (uart
->cts_pin
>= 0) {
750 gpio_request(uart
->cts_pin
, DRIVER_NAME
);
751 gpio_direction_output(uart
->cts_pin
, 1);
753 if (uart
->rts_pin
>= 0) {
754 gpio_request(uart
->rts_pin
, DRIVER_NAME
);
755 gpio_direction_output(uart
->rts_pin
, 0);
758 /* CTS RTS PINs are negative assertive. */
759 UART_PUT_MCR(uart
, ACTS
);
760 UART_SET_IER(uart
, EDSSI
);
763 UART_SET_IER(uart
, ERBFI
);
767 static void bfin_serial_shutdown(struct uart_port
*port
)
769 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
771 #ifdef CONFIG_SERIAL_BFIN_DMA
772 disable_dma(uart
->tx_dma_channel
);
773 free_dma(uart
->tx_dma_channel
);
774 disable_dma(uart
->rx_dma_channel
);
775 free_dma(uart
->rx_dma_channel
);
776 del_timer(&(uart
->rx_dma_timer
));
777 dma_free_coherent(NULL
, PAGE_SIZE
, uart
->rx_dma_buf
.buf
, 0);
780 switch (uart
->port
.irq
) {
782 free_dma(CH_UART3_RX
);
783 free_dma(CH_UART3_TX
);
786 free_dma(CH_UART2_RX
);
787 free_dma(CH_UART2_TX
);
793 free_irq(uart
->port
.irq
, uart
);
794 free_irq(uart
->port
.irq
+1, uart
);
797 #ifdef CONFIG_SERIAL_BFIN_CTSRTS
798 if (uart
->cts_pin
>= 0)
799 free_irq(gpio_to_irq(uart
->cts_pin
), uart
);
800 if (uart
->rts_pin
>= 0)
801 gpio_free(uart
->rts_pin
);
803 #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
804 if (uart
->cts_pin
>= 0)
805 gpio_free(uart
->cts_pin
);
806 if (uart
->rts_pin
>= 0)
807 gpio_free(uart
->rts_pin
);
808 if (UART_GET_IER(uart
) && EDSSI
)
809 free_irq(uart
->status_irq
, uart
);
814 bfin_serial_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
815 struct ktermios
*old
)
817 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
819 unsigned int baud
, quot
;
820 unsigned short val
, ier
, lcr
= 0;
822 switch (termios
->c_cflag
& CSIZE
) {
836 printk(KERN_ERR
"%s: word lengh not supported\n",
841 * 05000231 - STOP bit is always set to 1 whatever the user is set.
843 if (termios
->c_cflag
& CSTOPB
) {
844 if (ANOMALY_05000231
)
845 printk(KERN_WARNING
"STOP bits other than 1 is not "
846 "supported in case of anomaly 05000231.\n");
850 if (termios
->c_cflag
& PARENB
)
852 if (!(termios
->c_cflag
& PARODD
))
854 if (termios
->c_cflag
& CMSPAR
)
857 port
->read_status_mask
= OE
;
858 if (termios
->c_iflag
& INPCK
)
859 port
->read_status_mask
|= (FE
| PE
);
860 if (termios
->c_iflag
& (BRKINT
| PARMRK
))
861 port
->read_status_mask
|= BI
;
864 * Characters to ignore
866 port
->ignore_status_mask
= 0;
867 if (termios
->c_iflag
& IGNPAR
)
868 port
->ignore_status_mask
|= FE
| PE
;
869 if (termios
->c_iflag
& IGNBRK
) {
870 port
->ignore_status_mask
|= BI
;
872 * If we're ignoring parity and break indicators,
873 * ignore overruns too (for real raw support).
875 if (termios
->c_iflag
& IGNPAR
)
876 port
->ignore_status_mask
|= OE
;
879 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/16);
880 quot
= uart_get_divisor(port
, baud
) - ANOMALY_05000230
;
881 spin_lock_irqsave(&uart
->port
.lock
, flags
);
883 UART_SET_ANOMALY_THRESHOLD(uart
, USEC_PER_SEC
/ baud
* 15);
886 ier
= UART_GET_IER(uart
);
887 UART_DISABLE_INTS(uart
);
889 /* Set DLAB in LCR to Access DLL and DLH */
892 UART_PUT_DLL(uart
, quot
& 0xFF);
893 UART_PUT_DLH(uart
, (quot
>> 8) & 0xFF);
896 /* Clear DLAB in LCR to Access THR RBR IER */
897 UART_CLEAR_DLAB(uart
);
899 UART_PUT_LCR(uart
, lcr
);
902 UART_ENABLE_INTS(uart
, ier
);
904 val
= UART_GET_GCTL(uart
);
906 UART_PUT_GCTL(uart
, val
);
908 /* Port speed changed, update the per-port timeout. */
909 uart_update_timeout(port
, termios
->c_cflag
, baud
);
911 spin_unlock_irqrestore(&uart
->port
.lock
, flags
);
914 static const char *bfin_serial_type(struct uart_port
*port
)
916 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
918 return uart
->port
.type
== PORT_BFIN
? "BFIN-UART" : NULL
;
922 * Release the memory region(s) being used by 'port'.
924 static void bfin_serial_release_port(struct uart_port
*port
)
929 * Request the memory region(s) being used by 'port'.
931 static int bfin_serial_request_port(struct uart_port
*port
)
937 * Configure/autoconfigure the port.
939 static void bfin_serial_config_port(struct uart_port
*port
, int flags
)
941 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
943 if (flags
& UART_CONFIG_TYPE
&&
944 bfin_serial_request_port(&uart
->port
) == 0)
945 uart
->port
.type
= PORT_BFIN
;
949 * Verify the new serial_struct (for TIOCSSERIAL).
950 * The only change we allow are to the flags and type, and
951 * even then only between PORT_BFIN and PORT_UNKNOWN
954 bfin_serial_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
960 * Enable the IrDA function if tty->ldisc.num is N_IRDA.
961 * In other cases, disable IrDA function.
963 static void bfin_serial_set_ldisc(struct uart_port
*port
)
965 int line
= port
->line
;
968 if (line
>= port
->state
->port
.tty
->driver
->num
)
971 switch (port
->state
->port
.tty
->termios
->c_line
) {
973 val
= UART_GET_GCTL(&bfin_serial_ports
[line
]);
974 val
|= (IREN
| RPOLC
);
975 UART_PUT_GCTL(&bfin_serial_ports
[line
], val
);
978 val
= UART_GET_GCTL(&bfin_serial_ports
[line
]);
979 val
&= ~(IREN
| RPOLC
);
980 UART_PUT_GCTL(&bfin_serial_ports
[line
], val
);
984 static void bfin_serial_reset_irda(struct uart_port
*port
)
986 int line
= port
->line
;
989 val
= UART_GET_GCTL(&bfin_serial_ports
[line
]);
990 val
&= ~(IREN
| RPOLC
);
991 UART_PUT_GCTL(&bfin_serial_ports
[line
], val
);
993 val
|= (IREN
| RPOLC
);
994 UART_PUT_GCTL(&bfin_serial_ports
[line
], val
);
998 #ifdef CONFIG_CONSOLE_POLL
1000 * 05000099 - Because we only use THRE in poll_put and DR in poll_get,
1001 * losing other bits of UART_LSR is not a problem here.
1003 static void bfin_serial_poll_put_char(struct uart_port
*port
, unsigned char chr
)
1005 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
1007 while (!(UART_GET_LSR(uart
) & THRE
))
1010 UART_CLEAR_DLAB(uart
);
1011 UART_PUT_CHAR(uart
, (unsigned char)chr
);
1014 static int bfin_serial_poll_get_char(struct uart_port
*port
)
1016 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
1019 while (!(UART_GET_LSR(uart
) & DR
))
1022 UART_CLEAR_DLAB(uart
);
1023 chr
= UART_GET_CHAR(uart
);
1029 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
1030 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
1031 static void bfin_kgdboc_port_shutdown(struct uart_port
*port
)
1033 if (kgdboc_break_enabled
) {
1034 kgdboc_break_enabled
= 0;
1035 bfin_serial_shutdown(port
);
1039 static int bfin_kgdboc_port_startup(struct uart_port
*port
)
1041 kgdboc_port_line
= port
->line
;
1042 kgdboc_break_enabled
= !bfin_serial_startup(port
);
1047 static struct uart_ops bfin_serial_pops
= {
1048 .tx_empty
= bfin_serial_tx_empty
,
1049 .set_mctrl
= bfin_serial_set_mctrl
,
1050 .get_mctrl
= bfin_serial_get_mctrl
,
1051 .stop_tx
= bfin_serial_stop_tx
,
1052 .start_tx
= bfin_serial_start_tx
,
1053 .stop_rx
= bfin_serial_stop_rx
,
1054 .enable_ms
= bfin_serial_enable_ms
,
1055 .break_ctl
= bfin_serial_break_ctl
,
1056 .startup
= bfin_serial_startup
,
1057 .shutdown
= bfin_serial_shutdown
,
1058 .set_termios
= bfin_serial_set_termios
,
1059 .set_ldisc
= bfin_serial_set_ldisc
,
1060 .type
= bfin_serial_type
,
1061 .release_port
= bfin_serial_release_port
,
1062 .request_port
= bfin_serial_request_port
,
1063 .config_port
= bfin_serial_config_port
,
1064 .verify_port
= bfin_serial_verify_port
,
1065 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
1066 defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
1067 .kgdboc_port_startup
= bfin_kgdboc_port_startup
,
1068 .kgdboc_port_shutdown
= bfin_kgdboc_port_shutdown
,
1070 #ifdef CONFIG_CONSOLE_POLL
1071 .poll_put_char
= bfin_serial_poll_put_char
,
1072 .poll_get_char
= bfin_serial_poll_get_char
,
1076 static void __init
bfin_serial_hw_init(void)
1078 #ifdef CONFIG_SERIAL_BFIN_UART0
1079 peripheral_request(P_UART0_TX
, DRIVER_NAME
);
1080 peripheral_request(P_UART0_RX
, DRIVER_NAME
);
1083 #ifdef CONFIG_SERIAL_BFIN_UART1
1084 peripheral_request(P_UART1_TX
, DRIVER_NAME
);
1085 peripheral_request(P_UART1_RX
, DRIVER_NAME
);
1087 # if defined(CONFIG_BFIN_UART1_CTSRTS) && defined(CONFIG_BF54x)
1088 peripheral_request(P_UART1_RTS
, DRIVER_NAME
);
1089 peripheral_request(P_UART1_CTS
, DRIVER_NAME
);
1093 #ifdef CONFIG_SERIAL_BFIN_UART2
1094 peripheral_request(P_UART2_TX
, DRIVER_NAME
);
1095 peripheral_request(P_UART2_RX
, DRIVER_NAME
);
1098 #ifdef CONFIG_SERIAL_BFIN_UART3
1099 peripheral_request(P_UART3_TX
, DRIVER_NAME
);
1100 peripheral_request(P_UART3_RX
, DRIVER_NAME
);
1102 # if defined(CONFIG_BFIN_UART3_CTSRTS) && defined(CONFIG_BF54x)
1103 peripheral_request(P_UART3_RTS
, DRIVER_NAME
);
1104 peripheral_request(P_UART3_CTS
, DRIVER_NAME
);
1109 static void __init
bfin_serial_init_ports(void)
1111 static int first
= 1;
1118 bfin_serial_hw_init();
1120 for (i
= 0; i
< nr_active_ports
; i
++) {
1121 spin_lock_init(&bfin_serial_ports
[i
].port
.lock
);
1122 bfin_serial_ports
[i
].port
.uartclk
= get_sclk();
1123 bfin_serial_ports
[i
].port
.fifosize
= BFIN_UART_TX_FIFO_SIZE
;
1124 bfin_serial_ports
[i
].port
.ops
= &bfin_serial_pops
;
1125 bfin_serial_ports
[i
].port
.line
= i
;
1126 bfin_serial_ports
[i
].port
.iotype
= UPIO_MEM
;
1127 bfin_serial_ports
[i
].port
.membase
=
1128 (void __iomem
*)bfin_serial_resource
[i
].uart_base_addr
;
1129 bfin_serial_ports
[i
].port
.mapbase
=
1130 bfin_serial_resource
[i
].uart_base_addr
;
1131 bfin_serial_ports
[i
].port
.irq
=
1132 bfin_serial_resource
[i
].uart_irq
;
1133 bfin_serial_ports
[i
].status_irq
=
1134 bfin_serial_resource
[i
].uart_status_irq
;
1135 bfin_serial_ports
[i
].port
.flags
= UPF_BOOT_AUTOCONF
;
1136 #ifdef CONFIG_SERIAL_BFIN_DMA
1137 bfin_serial_ports
[i
].tx_done
= 1;
1138 bfin_serial_ports
[i
].tx_count
= 0;
1139 bfin_serial_ports
[i
].tx_dma_channel
=
1140 bfin_serial_resource
[i
].uart_tx_dma_channel
;
1141 bfin_serial_ports
[i
].rx_dma_channel
=
1142 bfin_serial_resource
[i
].uart_rx_dma_channel
;
1143 init_timer(&(bfin_serial_ports
[i
].rx_dma_timer
));
1145 #if defined(CONFIG_SERIAL_BFIN_CTSRTS) || \
1146 defined(CONFIG_SERIAL_BFIN_HARD_CTSRTS)
1147 bfin_serial_ports
[i
].cts_pin
=
1148 bfin_serial_resource
[i
].uart_cts_pin
;
1149 bfin_serial_ports
[i
].rts_pin
=
1150 bfin_serial_resource
[i
].uart_rts_pin
;
1155 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
1157 * If the port was already initialised (eg, by a boot loader),
1158 * try to determine the current setup.
1161 bfin_serial_console_get_options(struct bfin_serial_port
*uart
, int *baud
,
1162 int *parity
, int *bits
)
1164 unsigned short status
;
1166 status
= UART_GET_IER(uart
) & (ERBFI
| ETBEI
);
1167 if (status
== (ERBFI
| ETBEI
)) {
1168 /* ok, the port was enabled */
1171 lcr
= UART_GET_LCR(uart
);
1180 switch (lcr
& 0x03) {
1181 case 0: *bits
= 5; break;
1182 case 1: *bits
= 6; break;
1183 case 2: *bits
= 7; break;
1184 case 3: *bits
= 8; break;
1186 /* Set DLAB in LCR to Access DLL and DLH */
1187 UART_SET_DLAB(uart
);
1189 dll
= UART_GET_DLL(uart
);
1190 dlh
= UART_GET_DLH(uart
);
1192 /* Clear DLAB in LCR to Access THR RBR IER */
1193 UART_CLEAR_DLAB(uart
);
1195 *baud
= get_sclk() / (16*(dll
| dlh
<< 8));
1197 pr_debug("%s:baud = %d, parity = %c, bits= %d\n", __func__
, *baud
, *parity
, *bits
);
1200 static struct uart_driver bfin_serial_reg
;
1203 bfin_serial_console_setup(struct console
*co
, char *options
)
1205 struct bfin_serial_port
*uart
;
1209 # if defined(CONFIG_SERIAL_BFIN_CTSRTS) || \
1210 defined(CONFIG_SERIAL_BFIN_HARD_CTSRTS)
1217 * Check whether an invalid uart number has been specified, and
1218 * if so, search for the first available port that does have
1221 if (co
->index
== -1 || co
->index
>= nr_active_ports
)
1223 uart
= &bfin_serial_ports
[co
->index
];
1226 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
1228 bfin_serial_console_get_options(uart
, &baud
, &parity
, &bits
);
1230 return uart_set_options(&uart
->port
, co
, baud
, parity
, bits
, flow
);
1232 #endif /* defined (CONFIG_SERIAL_BFIN_CONSOLE) ||
1233 defined (CONFIG_EARLY_PRINTK) */
1235 #ifdef CONFIG_SERIAL_BFIN_CONSOLE
1236 static void bfin_serial_console_putchar(struct uart_port
*port
, int ch
)
1238 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
1239 while (!(UART_GET_LSR(uart
) & THRE
))
1241 UART_PUT_CHAR(uart
, ch
);
1246 * Interrupts are disabled on entering
1249 bfin_serial_console_write(struct console
*co
, const char *s
, unsigned int count
)
1251 struct bfin_serial_port
*uart
= &bfin_serial_ports
[co
->index
];
1252 unsigned long flags
;
1254 spin_lock_irqsave(&uart
->port
.lock
, flags
);
1255 uart_console_write(&uart
->port
, s
, count
, bfin_serial_console_putchar
);
1256 spin_unlock_irqrestore(&uart
->port
.lock
, flags
);
1260 static struct console bfin_serial_console
= {
1261 .name
= BFIN_SERIAL_NAME
,
1262 .write
= bfin_serial_console_write
,
1263 .device
= uart_console_device
,
1264 .setup
= bfin_serial_console_setup
,
1265 .flags
= CON_PRINTBUFFER
,
1267 .data
= &bfin_serial_reg
,
1270 static int __init
bfin_serial_rs_console_init(void)
1272 bfin_serial_init_ports();
1273 register_console(&bfin_serial_console
);
1277 console_initcall(bfin_serial_rs_console_init
);
1279 #define BFIN_SERIAL_CONSOLE &bfin_serial_console
1281 #define BFIN_SERIAL_CONSOLE NULL
1282 #endif /* CONFIG_SERIAL_BFIN_CONSOLE */
1285 #ifdef CONFIG_EARLY_PRINTK
1286 static __init
void early_serial_putc(struct uart_port
*port
, int ch
)
1288 unsigned timeout
= 0xffff;
1289 struct bfin_serial_port
*uart
= (struct bfin_serial_port
*)port
;
1291 while ((!(UART_GET_LSR(uart
) & THRE
)) && --timeout
)
1293 UART_PUT_CHAR(uart
, ch
);
1296 static __init
void early_serial_write(struct console
*con
, const char *s
,
1299 struct bfin_serial_port
*uart
= &bfin_serial_ports
[con
->index
];
1302 for (i
= 0; i
< n
; i
++, s
++) {
1304 early_serial_putc(&uart
->port
, '\r');
1305 early_serial_putc(&uart
->port
, *s
);
1310 * This should have a .setup or .early_setup in it, but then things get called
1311 * without the command line options, and the baud rate gets messed up - so
1312 * don't let the common infrastructure play with things. (see calls to setup
1313 * & earlysetup in ./kernel/printk.c:register_console()
1315 static struct __initdata console bfin_early_serial_console
= {
1316 .name
= "early_BFuart",
1317 .write
= early_serial_write
,
1318 .device
= uart_console_device
,
1319 .flags
= CON_PRINTBUFFER
,
1321 .data
= &bfin_serial_reg
,
1324 struct console __init
*bfin_earlyserial_init(unsigned int port
,
1327 struct bfin_serial_port
*uart
;
1330 if (port
== -1 || port
>= nr_active_ports
)
1332 bfin_serial_init_ports();
1333 bfin_early_serial_console
.index
= port
;
1334 uart
= &bfin_serial_ports
[port
];
1340 bfin_serial_set_termios(&uart
->port
, &t
, &t
);
1341 return &bfin_early_serial_console
;
1344 #endif /* CONFIG_EARLY_PRINTK */
1346 static struct uart_driver bfin_serial_reg
= {
1347 .owner
= THIS_MODULE
,
1348 .driver_name
= "bfin-uart",
1349 .dev_name
= BFIN_SERIAL_NAME
,
1350 .major
= BFIN_SERIAL_MAJOR
,
1351 .minor
= BFIN_SERIAL_MINOR
,
1352 .nr
= BFIN_UART_NR_PORTS
,
1353 .cons
= BFIN_SERIAL_CONSOLE
,
1356 static int bfin_serial_suspend(struct platform_device
*dev
, pm_message_t state
)
1360 for (i
= 0; i
< nr_active_ports
; i
++) {
1361 if (bfin_serial_ports
[i
].port
.dev
!= &dev
->dev
)
1363 uart_suspend_port(&bfin_serial_reg
, &bfin_serial_ports
[i
].port
);
1369 static int bfin_serial_resume(struct platform_device
*dev
)
1373 for (i
= 0; i
< nr_active_ports
; i
++) {
1374 if (bfin_serial_ports
[i
].port
.dev
!= &dev
->dev
)
1376 uart_resume_port(&bfin_serial_reg
, &bfin_serial_ports
[i
].port
);
1382 static int bfin_serial_probe(struct platform_device
*dev
)
1384 struct resource
*res
= dev
->resource
;
1387 for (i
= 0; i
< dev
->num_resources
; i
++, res
++)
1388 if (res
->flags
& IORESOURCE_MEM
)
1391 if (i
< dev
->num_resources
) {
1392 for (i
= 0; i
< nr_active_ports
; i
++, res
++) {
1393 if (bfin_serial_ports
[i
].port
.mapbase
!= res
->start
)
1395 bfin_serial_ports
[i
].port
.dev
= &dev
->dev
;
1396 uart_add_one_port(&bfin_serial_reg
, &bfin_serial_ports
[i
].port
);
1403 static int bfin_serial_remove(struct platform_device
*dev
)
1407 for (i
= 0; i
< nr_active_ports
; i
++) {
1408 if (bfin_serial_ports
[i
].port
.dev
!= &dev
->dev
)
1410 uart_remove_one_port(&bfin_serial_reg
, &bfin_serial_ports
[i
].port
);
1411 bfin_serial_ports
[i
].port
.dev
= NULL
;
1412 #if defined(CONFIG_SERIAL_BFIN_CTSRTS) || \
1413 defined(CONFIG_SERIAL_BFIN_HARD_CTSRTS)
1414 gpio_free(bfin_serial_ports
[i
].cts_pin
);
1415 gpio_free(bfin_serial_ports
[i
].rts_pin
);
1422 static struct platform_driver bfin_serial_driver
= {
1423 .probe
= bfin_serial_probe
,
1424 .remove
= bfin_serial_remove
,
1425 .suspend
= bfin_serial_suspend
,
1426 .resume
= bfin_serial_resume
,
1428 .name
= "bfin-uart",
1429 .owner
= THIS_MODULE
,
1433 static int __init
bfin_serial_init(void)
1437 pr_info("Serial: Blackfin serial driver\n");
1439 bfin_serial_init_ports();
1441 ret
= uart_register_driver(&bfin_serial_reg
);
1443 ret
= platform_driver_register(&bfin_serial_driver
);
1445 pr_debug("uart register failed\n");
1446 uart_unregister_driver(&bfin_serial_reg
);
1452 static void __exit
bfin_serial_exit(void)
1454 platform_driver_unregister(&bfin_serial_driver
);
1455 uart_unregister_driver(&bfin_serial_reg
);
1459 module_init(bfin_serial_init
);
1460 module_exit(bfin_serial_exit
);
1462 MODULE_AUTHOR("Aubrey.Li <aubrey.li@analog.com>");
1463 MODULE_DESCRIPTION("Blackfin generic serial port driver");
1464 MODULE_LICENSE("GPL");
1465 MODULE_ALIAS_CHARDEV_MAJOR(BFIN_SERIAL_MAJOR
);
1466 MODULE_ALIAS("platform:bfin-uart");