Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth...
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / tty / serial / bfin_uart.c
1 /*
2  * Blackfin On-Chip Serial Driver
3  *
4  * Copyright 2006-2011 Analog Devices Inc.
5  *
6  * Enter bugs at http://blackfin.uclinux.org/
7  *
8  * Licensed under the GPL-2 or later.
9  */
10
11 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
12 #define SUPPORT_SYSRQ
13 #endif
14
15 #define DRIVER_NAME "bfin-uart"
16 #define pr_fmt(fmt) DRIVER_NAME ": " fmt
17
18 #include <linux/module.h>
19 #include <linux/ioport.h>
20 #include <linux/gfp.h>
21 #include <linux/io.h>
22 #include <linux/init.h>
23 #include <linux/console.h>
24 #include <linux/sysrq.h>
25 #include <linux/platform_device.h>
26 #include <linux/tty.h>
27 #include <linux/tty_flip.h>
28 #include <linux/serial_core.h>
29 #include <linux/gpio.h>
30 #include <linux/irq.h>
31 #include <linux/kgdb.h>
32 #include <linux/slab.h>
33 #include <linux/dma-mapping.h>
34
35 #include <asm/portmux.h>
36 #include <asm/cacheflush.h>
37 #include <asm/dma.h>
38 #include <asm/bfin_serial.h>
39
40 #ifdef CONFIG_SERIAL_BFIN_MODULE
41 # undef CONFIG_EARLY_PRINTK
42 #endif
43
44 #ifdef CONFIG_SERIAL_BFIN_MODULE
45 # undef CONFIG_EARLY_PRINTK
46 #endif
47
48 /* UART name and device definitions */
49 #define BFIN_SERIAL_DEV_NAME    "ttyBF"
50 #define BFIN_SERIAL_MAJOR       204
51 #define BFIN_SERIAL_MINOR       64
52
53 static struct bfin_serial_port *bfin_serial_ports[BFIN_UART_NR_PORTS];
54
55 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
56         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
57
58 # ifndef CONFIG_SERIAL_BFIN_PIO
59 #  error KGDB only support UART in PIO mode.
60 # endif
61
62 static int kgdboc_port_line;
63 static int kgdboc_break_enabled;
64 #endif
65 /*
66  * Setup for console. Argument comes from the menuconfig
67  */
68 #define DMA_RX_XCOUNT           512
69 #define DMA_RX_YCOUNT           (PAGE_SIZE / DMA_RX_XCOUNT)
70
71 #define DMA_RX_FLUSH_JIFFIES    (HZ / 50)
72
73 #ifdef CONFIG_SERIAL_BFIN_DMA
74 static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart);
75 #else
76 static void bfin_serial_tx_chars(struct bfin_serial_port *uart);
77 #endif
78
79 static void bfin_serial_reset_irda(struct uart_port *port);
80
81 #if defined(CONFIG_SERIAL_BFIN_CTSRTS) || \
82         defined(CONFIG_SERIAL_BFIN_HARD_CTSRTS)
83 static unsigned int bfin_serial_get_mctrl(struct uart_port *port)
84 {
85         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
86         if (uart->cts_pin < 0)
87                 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
88
89         /* CTS PIN is negative assertive. */
90         if (UART_GET_CTS(uart))
91                 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
92         else
93                 return TIOCM_DSR | TIOCM_CAR;
94 }
95
96 static void bfin_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
97 {
98         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
99         if (uart->rts_pin < 0)
100                 return;
101
102         /* RTS PIN is negative assertive. */
103         if (mctrl & TIOCM_RTS)
104                 UART_ENABLE_RTS(uart);
105         else
106                 UART_DISABLE_RTS(uart);
107 }
108
109 /*
110  * Handle any change of modem status signal.
111  */
112 static irqreturn_t bfin_serial_mctrl_cts_int(int irq, void *dev_id)
113 {
114         struct bfin_serial_port *uart = dev_id;
115         unsigned int status = bfin_serial_get_mctrl(&uart->port);
116 #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
117         struct tty_struct *tty = uart->port.state->port.tty;
118
119         UART_CLEAR_SCTS(uart);
120         if (tty->hw_stopped) {
121                 if (status) {
122                         tty->hw_stopped = 0;
123                         uart_write_wakeup(&uart->port);
124                 }
125         } else {
126                 if (!status)
127                         tty->hw_stopped = 1;
128         }
129 #endif
130         uart_handle_cts_change(&uart->port, status & TIOCM_CTS);
131
132         return IRQ_HANDLED;
133 }
134 #else
135 static unsigned int bfin_serial_get_mctrl(struct uart_port *port)
136 {
137         return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
138 }
139
140 static void bfin_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
141 {
142 }
143 #endif
144
145 /*
146  * interrupts are disabled on entry
147  */
148 static void bfin_serial_stop_tx(struct uart_port *port)
149 {
150         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
151 #ifdef CONFIG_SERIAL_BFIN_DMA
152         struct circ_buf *xmit = &uart->port.state->xmit;
153 #endif
154
155         while (!(UART_GET_LSR(uart) & TEMT))
156                 cpu_relax();
157
158 #ifdef CONFIG_SERIAL_BFIN_DMA
159         disable_dma(uart->tx_dma_channel);
160         xmit->tail = (xmit->tail + uart->tx_count) & (UART_XMIT_SIZE - 1);
161         uart->port.icount.tx += uart->tx_count;
162         uart->tx_count = 0;
163         uart->tx_done = 1;
164 #else
165 #if defined(CONFIG_BF54x) || defined(CONFIG_BF60x)
166         /* Clear TFI bit */
167         UART_PUT_LSR(uart, TFI);
168 #endif
169         UART_CLEAR_IER(uart, ETBEI);
170 #endif
171 }
172
173 /*
174  * port is locked and interrupts are disabled
175  */
176 static void bfin_serial_start_tx(struct uart_port *port)
177 {
178         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
179         struct tty_struct *tty = uart->port.state->port.tty;
180
181         /*
182          * To avoid losting RX interrupt, we reset IR function
183          * before sending data.
184          */
185         if (tty->termios.c_line == N_IRDA)
186                 bfin_serial_reset_irda(port);
187
188 #ifdef CONFIG_SERIAL_BFIN_DMA
189         if (uart->tx_done)
190                 bfin_serial_dma_tx_chars(uart);
191 #else
192         UART_SET_IER(uart, ETBEI);
193         bfin_serial_tx_chars(uart);
194 #endif
195 }
196
197 /*
198  * Interrupts are enabled
199  */
200 static void bfin_serial_stop_rx(struct uart_port *port)
201 {
202         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
203
204         UART_CLEAR_IER(uart, ERBFI);
205 }
206
207 /*
208  * Set the modem control timer to fire immediately.
209  */
210 static void bfin_serial_enable_ms(struct uart_port *port)
211 {
212 }
213
214
215 #if ANOMALY_05000363 && defined(CONFIG_SERIAL_BFIN_PIO)
216 # define UART_GET_ANOMALY_THRESHOLD(uart)    ((uart)->anomaly_threshold)
217 # define UART_SET_ANOMALY_THRESHOLD(uart, v) ((uart)->anomaly_threshold = (v))
218 #else
219 # define UART_GET_ANOMALY_THRESHOLD(uart)    0
220 # define UART_SET_ANOMALY_THRESHOLD(uart, v)
221 #endif
222
223 #ifdef CONFIG_SERIAL_BFIN_PIO
224 static void bfin_serial_rx_chars(struct bfin_serial_port *uart)
225 {
226         unsigned int status, ch, flg;
227         static struct timeval anomaly_start = { .tv_sec = 0 };
228
229         status = UART_GET_LSR(uart);
230         UART_CLEAR_LSR(uart);
231
232         ch = UART_GET_CHAR(uart);
233         uart->port.icount.rx++;
234
235 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
236         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
237         if (kgdb_connected && kgdboc_port_line == uart->port.line
238                 && kgdboc_break_enabled)
239                 if (ch == 0x3) {/* Ctrl + C */
240                         kgdb_breakpoint();
241                         return;
242                 }
243
244         if (!uart->port.state)
245                 return;
246 #endif
247         if (ANOMALY_05000363) {
248                 /* The BF533 (and BF561) family of processors have a nice anomaly
249                  * where they continuously generate characters for a "single" break.
250                  * We have to basically ignore this flood until the "next" valid
251                  * character comes across.  Due to the nature of the flood, it is
252                  * not possible to reliably catch bytes that are sent too quickly
253                  * after this break.  So application code talking to the Blackfin
254                  * which sends a break signal must allow at least 1.5 character
255                  * times after the end of the break for things to stabilize.  This
256                  * timeout was picked as it must absolutely be larger than 1
257                  * character time +/- some percent.  So 1.5 sounds good.  All other
258                  * Blackfin families operate properly.  Woo.
259                  */
260                 if (anomaly_start.tv_sec) {
261                         struct timeval curr;
262                         suseconds_t usecs;
263
264                         if ((~ch & (~ch + 1)) & 0xff)
265                                 goto known_good_char;
266
267                         do_gettimeofday(&curr);
268                         if (curr.tv_sec - anomaly_start.tv_sec > 1)
269                                 goto known_good_char;
270
271                         usecs = 0;
272                         if (curr.tv_sec != anomaly_start.tv_sec)
273                                 usecs += USEC_PER_SEC;
274                         usecs += curr.tv_usec - anomaly_start.tv_usec;
275
276                         if (usecs > UART_GET_ANOMALY_THRESHOLD(uart))
277                                 goto known_good_char;
278
279                         if (ch)
280                                 anomaly_start.tv_sec = 0;
281                         else
282                                 anomaly_start = curr;
283
284                         return;
285
286  known_good_char:
287                         status &= ~BI;
288                         anomaly_start.tv_sec = 0;
289                 }
290         }
291
292         if (status & BI) {
293                 if (ANOMALY_05000363)
294                         if (bfin_revid() < 5)
295                                 do_gettimeofday(&anomaly_start);
296                 uart->port.icount.brk++;
297                 if (uart_handle_break(&uart->port))
298                         goto ignore_char;
299                 status &= ~(PE | FE);
300         }
301         if (status & PE)
302                 uart->port.icount.parity++;
303         if (status & OE)
304                 uart->port.icount.overrun++;
305         if (status & FE)
306                 uart->port.icount.frame++;
307
308         status &= uart->port.read_status_mask;
309
310         if (status & BI)
311                 flg = TTY_BREAK;
312         else if (status & PE)
313                 flg = TTY_PARITY;
314         else if (status & FE)
315                 flg = TTY_FRAME;
316         else
317                 flg = TTY_NORMAL;
318
319         if (uart_handle_sysrq_char(&uart->port, ch))
320                 goto ignore_char;
321
322         uart_insert_char(&uart->port, status, OE, ch, flg);
323
324  ignore_char:
325         tty_flip_buffer_push(&uart->port.state->port);
326 }
327
328 static void bfin_serial_tx_chars(struct bfin_serial_port *uart)
329 {
330         struct circ_buf *xmit = &uart->port.state->xmit;
331
332         if (uart_circ_empty(xmit) || uart_tx_stopped(&uart->port)) {
333 #if defined(CONFIG_BF54x) || defined(CONFIG_BF60x)
334                 /* Clear TFI bit */
335                 UART_PUT_LSR(uart, TFI);
336 #endif
337                 /* Anomaly notes:
338                  *  05000215 -  we always clear ETBEI within last UART TX
339                  *              interrupt to end a string. It is always set
340                  *              when start a new tx.
341                  */
342                 UART_CLEAR_IER(uart, ETBEI);
343                 return;
344         }
345
346         if (uart->port.x_char) {
347                 UART_PUT_CHAR(uart, uart->port.x_char);
348                 uart->port.icount.tx++;
349                 uart->port.x_char = 0;
350         }
351
352         while ((UART_GET_LSR(uart) & THRE) && xmit->tail != xmit->head) {
353                 UART_PUT_CHAR(uart, xmit->buf[xmit->tail]);
354                 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
355                 uart->port.icount.tx++;
356         }
357
358         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
359                 uart_write_wakeup(&uart->port);
360 }
361
362 static irqreturn_t bfin_serial_rx_int(int irq, void *dev_id)
363 {
364         struct bfin_serial_port *uart = dev_id;
365
366         while (UART_GET_LSR(uart) & DR)
367                 bfin_serial_rx_chars(uart);
368
369         return IRQ_HANDLED;
370 }
371
372 static irqreturn_t bfin_serial_tx_int(int irq, void *dev_id)
373 {
374         struct bfin_serial_port *uart = dev_id;
375
376         spin_lock(&uart->port.lock);
377         if (UART_GET_LSR(uart) & THRE)
378                 bfin_serial_tx_chars(uart);
379         spin_unlock(&uart->port.lock);
380
381         return IRQ_HANDLED;
382 }
383 #endif
384
385 #ifdef CONFIG_SERIAL_BFIN_DMA
386 static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart)
387 {
388         struct circ_buf *xmit = &uart->port.state->xmit;
389
390         uart->tx_done = 0;
391
392         if (uart_circ_empty(xmit) || uart_tx_stopped(&uart->port)) {
393                 uart->tx_count = 0;
394                 uart->tx_done = 1;
395                 return;
396         }
397
398         if (uart->port.x_char) {
399                 UART_PUT_CHAR(uart, uart->port.x_char);
400                 uart->port.icount.tx++;
401                 uart->port.x_char = 0;
402         }
403
404         uart->tx_count = CIRC_CNT(xmit->head, xmit->tail, UART_XMIT_SIZE);
405         if (uart->tx_count > (UART_XMIT_SIZE - xmit->tail))
406                 uart->tx_count = UART_XMIT_SIZE - xmit->tail;
407         blackfin_dcache_flush_range((unsigned long)(xmit->buf+xmit->tail),
408                                         (unsigned long)(xmit->buf+xmit->tail+uart->tx_count));
409         set_dma_config(uart->tx_dma_channel,
410                 set_bfin_dma_config(DIR_READ, DMA_FLOW_STOP,
411                         INTR_ON_BUF,
412                         DIMENSION_LINEAR,
413                         DATA_SIZE_8,
414                         DMA_SYNC_RESTART));
415         set_dma_start_addr(uart->tx_dma_channel, (unsigned long)(xmit->buf+xmit->tail));
416         set_dma_x_count(uart->tx_dma_channel, uart->tx_count);
417         set_dma_x_modify(uart->tx_dma_channel, 1);
418         SSYNC();
419         enable_dma(uart->tx_dma_channel);
420
421         UART_SET_IER(uart, ETBEI);
422 }
423
424 static void bfin_serial_dma_rx_chars(struct bfin_serial_port *uart)
425 {
426         int i, flg, status;
427
428         status = UART_GET_LSR(uart);
429         UART_CLEAR_LSR(uart);
430
431         uart->port.icount.rx +=
432                 CIRC_CNT(uart->rx_dma_buf.head, uart->rx_dma_buf.tail,
433                 UART_XMIT_SIZE);
434
435         if (status & BI) {
436                 uart->port.icount.brk++;
437                 if (uart_handle_break(&uart->port))
438                         goto dma_ignore_char;
439                 status &= ~(PE | FE);
440         }
441         if (status & PE)
442                 uart->port.icount.parity++;
443         if (status & OE)
444                 uart->port.icount.overrun++;
445         if (status & FE)
446                 uart->port.icount.frame++;
447
448         status &= uart->port.read_status_mask;
449
450         if (status & BI)
451                 flg = TTY_BREAK;
452         else if (status & PE)
453                 flg = TTY_PARITY;
454         else if (status & FE)
455                 flg = TTY_FRAME;
456         else
457                 flg = TTY_NORMAL;
458
459         for (i = uart->rx_dma_buf.tail; ; i++) {
460                 if (i >= UART_XMIT_SIZE)
461                         i = 0;
462                 if (i == uart->rx_dma_buf.head)
463                         break;
464                 if (!uart_handle_sysrq_char(&uart->port, uart->rx_dma_buf.buf[i]))
465                         uart_insert_char(&uart->port, status, OE,
466                                 uart->rx_dma_buf.buf[i], flg);
467         }
468
469  dma_ignore_char:
470         tty_flip_buffer_push(&uart->port.state->port);
471 }
472
473 void bfin_serial_rx_dma_timeout(struct bfin_serial_port *uart)
474 {
475         int x_pos, pos;
476         unsigned long flags;
477
478         spin_lock_irqsave(&uart->rx_lock, flags);
479
480         /* 2D DMA RX buffer ring is used. Because curr_y_count and
481          * curr_x_count can't be read as an atomic operation,
482          * curr_y_count should be read before curr_x_count. When
483          * curr_x_count is read, curr_y_count may already indicate
484          * next buffer line. But, the position calculated here is
485          * still indicate the old line. The wrong position data may
486          * be smaller than current buffer tail, which cause garbages
487          * are received if it is not prohibit.
488          */
489         uart->rx_dma_nrows = get_dma_curr_ycount(uart->rx_dma_channel);
490         x_pos = get_dma_curr_xcount(uart->rx_dma_channel);
491         uart->rx_dma_nrows = DMA_RX_YCOUNT - uart->rx_dma_nrows;
492         if (uart->rx_dma_nrows == DMA_RX_YCOUNT || x_pos == 0)
493                 uart->rx_dma_nrows = 0;
494         x_pos = DMA_RX_XCOUNT - x_pos;
495         if (x_pos == DMA_RX_XCOUNT)
496                 x_pos = 0;
497
498         pos = uart->rx_dma_nrows * DMA_RX_XCOUNT + x_pos;
499         /* Ignore receiving data if new position is in the same line of
500          * current buffer tail and small.
501          */
502         if (pos > uart->rx_dma_buf.tail ||
503                 uart->rx_dma_nrows < (uart->rx_dma_buf.tail/DMA_RX_XCOUNT)) {
504                 uart->rx_dma_buf.head = pos;
505                 bfin_serial_dma_rx_chars(uart);
506                 uart->rx_dma_buf.tail = uart->rx_dma_buf.head;
507         }
508
509         spin_unlock_irqrestore(&uart->rx_lock, flags);
510
511         mod_timer(&(uart->rx_dma_timer), jiffies + DMA_RX_FLUSH_JIFFIES);
512 }
513
514 static irqreturn_t bfin_serial_dma_tx_int(int irq, void *dev_id)
515 {
516         struct bfin_serial_port *uart = dev_id;
517         struct circ_buf *xmit = &uart->port.state->xmit;
518
519         spin_lock(&uart->port.lock);
520         if (!(get_dma_curr_irqstat(uart->tx_dma_channel)&DMA_RUN)) {
521                 disable_dma(uart->tx_dma_channel);
522                 clear_dma_irqstat(uart->tx_dma_channel);
523                 /* Anomaly notes:
524                  *  05000215 -  we always clear ETBEI within last UART TX
525                  *              interrupt to end a string. It is always set
526                  *              when start a new tx.
527                  */
528                 UART_CLEAR_IER(uart, ETBEI);
529                 uart->port.icount.tx += uart->tx_count;
530                 if (!(xmit->tail == 0 && xmit->head == 0)) {
531                         xmit->tail = (xmit->tail + uart->tx_count) & (UART_XMIT_SIZE - 1);
532
533                         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
534                                 uart_write_wakeup(&uart->port);
535                 }
536
537                 bfin_serial_dma_tx_chars(uart);
538         }
539
540         spin_unlock(&uart->port.lock);
541         return IRQ_HANDLED;
542 }
543
544 static irqreturn_t bfin_serial_dma_rx_int(int irq, void *dev_id)
545 {
546         struct bfin_serial_port *uart = dev_id;
547         unsigned int irqstat;
548         int x_pos, pos;
549
550         spin_lock(&uart->rx_lock);
551         irqstat = get_dma_curr_irqstat(uart->rx_dma_channel);
552         clear_dma_irqstat(uart->rx_dma_channel);
553
554         uart->rx_dma_nrows = get_dma_curr_ycount(uart->rx_dma_channel);
555         x_pos = get_dma_curr_xcount(uart->rx_dma_channel);
556         uart->rx_dma_nrows = DMA_RX_YCOUNT - uart->rx_dma_nrows;
557         if (uart->rx_dma_nrows == DMA_RX_YCOUNT || x_pos == 0)
558                 uart->rx_dma_nrows = 0;
559
560         pos = uart->rx_dma_nrows * DMA_RX_XCOUNT;
561         if (pos > uart->rx_dma_buf.tail ||
562                 uart->rx_dma_nrows < (uart->rx_dma_buf.tail/DMA_RX_XCOUNT)) {
563                 uart->rx_dma_buf.head = pos;
564                 bfin_serial_dma_rx_chars(uart);
565                 uart->rx_dma_buf.tail = uart->rx_dma_buf.head;
566         }
567
568         spin_unlock(&uart->rx_lock);
569
570         return IRQ_HANDLED;
571 }
572 #endif
573
574 /*
575  * Return TIOCSER_TEMT when transmitter is not busy.
576  */
577 static unsigned int bfin_serial_tx_empty(struct uart_port *port)
578 {
579         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
580         unsigned int lsr;
581
582         lsr = UART_GET_LSR(uart);
583         if (lsr & TEMT)
584                 return TIOCSER_TEMT;
585         else
586                 return 0;
587 }
588
589 static void bfin_serial_break_ctl(struct uart_port *port, int break_state)
590 {
591         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
592         u32 lcr = UART_GET_LCR(uart);
593         if (break_state)
594                 lcr |= SB;
595         else
596                 lcr &= ~SB;
597         UART_PUT_LCR(uart, lcr);
598         SSYNC();
599 }
600
601 static int bfin_serial_startup(struct uart_port *port)
602 {
603         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
604
605 #ifdef CONFIG_SERIAL_BFIN_DMA
606         dma_addr_t dma_handle;
607
608         if (request_dma(uart->rx_dma_channel, "BFIN_UART_RX") < 0) {
609                 printk(KERN_NOTICE "Unable to attach Blackfin UART RX DMA channel\n");
610                 return -EBUSY;
611         }
612
613         if (request_dma(uart->tx_dma_channel, "BFIN_UART_TX") < 0) {
614                 printk(KERN_NOTICE "Unable to attach Blackfin UART TX DMA channel\n");
615                 free_dma(uart->rx_dma_channel);
616                 return -EBUSY;
617         }
618
619         set_dma_callback(uart->rx_dma_channel, bfin_serial_dma_rx_int, uart);
620         set_dma_callback(uart->tx_dma_channel, bfin_serial_dma_tx_int, uart);
621
622         uart->rx_dma_buf.buf = (unsigned char *)dma_alloc_coherent(NULL, PAGE_SIZE, &dma_handle, GFP_DMA);
623         uart->rx_dma_buf.head = 0;
624         uart->rx_dma_buf.tail = 0;
625         uart->rx_dma_nrows = 0;
626
627         set_dma_config(uart->rx_dma_channel,
628                 set_bfin_dma_config(DIR_WRITE, DMA_FLOW_AUTO,
629                                 INTR_ON_ROW, DIMENSION_2D,
630                                 DATA_SIZE_8,
631                                 DMA_SYNC_RESTART));
632         set_dma_x_count(uart->rx_dma_channel, DMA_RX_XCOUNT);
633         set_dma_x_modify(uart->rx_dma_channel, 1);
634         set_dma_y_count(uart->rx_dma_channel, DMA_RX_YCOUNT);
635         set_dma_y_modify(uart->rx_dma_channel, 1);
636         set_dma_start_addr(uart->rx_dma_channel, (unsigned long)uart->rx_dma_buf.buf);
637         enable_dma(uart->rx_dma_channel);
638
639         uart->rx_dma_timer.data = (unsigned long)(uart);
640         uart->rx_dma_timer.function = (void *)bfin_serial_rx_dma_timeout;
641         uart->rx_dma_timer.expires = jiffies + DMA_RX_FLUSH_JIFFIES;
642         add_timer(&(uart->rx_dma_timer));
643 #else
644 # if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
645         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
646         if (kgdboc_port_line == uart->port.line && kgdboc_break_enabled)
647                 kgdboc_break_enabled = 0;
648         else {
649 # endif
650         if (request_irq(uart->rx_irq, bfin_serial_rx_int, 0,
651              "BFIN_UART_RX", uart)) {
652                 printk(KERN_NOTICE "Unable to attach BlackFin UART RX interrupt\n");
653                 return -EBUSY;
654         }
655
656         if (request_irq
657             (uart->tx_irq, bfin_serial_tx_int, 0,
658              "BFIN_UART_TX", uart)) {
659                 printk(KERN_NOTICE "Unable to attach BlackFin UART TX interrupt\n");
660                 free_irq(uart->rx_irq, uart);
661                 return -EBUSY;
662         }
663
664 # ifdef CONFIG_BF54x
665         {
666                 /*
667                  * UART2 and UART3 on BF548 share interrupt PINs and DMA
668                  * controllers with SPORT2 and SPORT3. UART rx and tx
669                  * interrupts are generated in PIO mode only when configure
670                  * their peripheral mapping registers properly, which means
671                  * request corresponding DMA channels in PIO mode as well.
672                  */
673                 unsigned uart_dma_ch_rx, uart_dma_ch_tx;
674
675                 switch (uart->rx_irq) {
676                 case IRQ_UART3_RX:
677                         uart_dma_ch_rx = CH_UART3_RX;
678                         uart_dma_ch_tx = CH_UART3_TX;
679                         break;
680                 case IRQ_UART2_RX:
681                         uart_dma_ch_rx = CH_UART2_RX;
682                         uart_dma_ch_tx = CH_UART2_TX;
683                         break;
684                 default:
685                         uart_dma_ch_rx = uart_dma_ch_tx = 0;
686                         break;
687                 };
688
689                 if (uart_dma_ch_rx &&
690                         request_dma(uart_dma_ch_rx, "BFIN_UART_RX") < 0) {
691                         printk(KERN_NOTICE"Fail to attach UART interrupt\n");
692                         free_irq(uart->rx_irq, uart);
693                         free_irq(uart->tx_irq, uart);
694                         return -EBUSY;
695                 }
696                 if (uart_dma_ch_tx &&
697                         request_dma(uart_dma_ch_tx, "BFIN_UART_TX") < 0) {
698                         printk(KERN_NOTICE "Fail to attach UART interrupt\n");
699                         free_dma(uart_dma_ch_rx);
700                         free_irq(uart->rx_irq, uart);
701                         free_irq(uart->tx_irq, uart);
702                         return -EBUSY;
703                 }
704         }
705 # endif
706 # if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
707         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
708         }
709 # endif
710 #endif
711
712 #ifdef CONFIG_SERIAL_BFIN_CTSRTS
713         if (uart->cts_pin >= 0) {
714                 if (request_irq(gpio_to_irq(uart->cts_pin),
715                         bfin_serial_mctrl_cts_int,
716                         IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING |
717                         0, "BFIN_UART_CTS", uart)) {
718                         uart->cts_pin = -1;
719                         pr_info("Unable to attach BlackFin UART CTS interrupt. So, disable it.\n");
720                 }
721         }
722         if (uart->rts_pin >= 0) {
723                 if (gpio_request(uart->rts_pin, DRIVER_NAME)) {
724                         pr_info("fail to request RTS PIN at GPIO_%d\n", uart->rts_pin);
725                         uart->rts_pin = -1;
726                 } else
727                         gpio_direction_output(uart->rts_pin, 0);
728         }
729 #endif
730 #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
731         if (uart->cts_pin >= 0) {
732                 if (request_irq(uart->status_irq, bfin_serial_mctrl_cts_int,
733                         IRQF_DISABLED, "BFIN_UART_MODEM_STATUS", uart)) {
734                         uart->cts_pin = -1;
735                         dev_info(port->dev, "Unable to attach BlackFin UART Modem Status interrupt.\n");
736                 }
737
738                 /* CTS RTS PINs are negative assertive. */
739                 UART_PUT_MCR(uart, UART_GET_MCR(uart) | ACTS);
740                 UART_SET_IER(uart, EDSSI);
741         }
742 #endif
743
744         UART_SET_IER(uart, ERBFI);
745         return 0;
746 }
747
748 static void bfin_serial_shutdown(struct uart_port *port)
749 {
750         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
751
752 #ifdef CONFIG_SERIAL_BFIN_DMA
753         disable_dma(uart->tx_dma_channel);
754         free_dma(uart->tx_dma_channel);
755         disable_dma(uart->rx_dma_channel);
756         free_dma(uart->rx_dma_channel);
757         del_timer(&(uart->rx_dma_timer));
758         dma_free_coherent(NULL, PAGE_SIZE, uart->rx_dma_buf.buf, 0);
759 #else
760 #ifdef CONFIG_BF54x
761         switch (uart->port.irq) {
762         case IRQ_UART3_RX:
763                 free_dma(CH_UART3_RX);
764                 free_dma(CH_UART3_TX);
765                 break;
766         case IRQ_UART2_RX:
767                 free_dma(CH_UART2_RX);
768                 free_dma(CH_UART2_TX);
769                 break;
770         default:
771                 break;
772         };
773 #endif
774         free_irq(uart->rx_irq, uart);
775         free_irq(uart->tx_irq, uart);
776 #endif
777
778 #ifdef CONFIG_SERIAL_BFIN_CTSRTS
779         if (uart->cts_pin >= 0)
780                 free_irq(gpio_to_irq(uart->cts_pin), uart);
781         if (uart->rts_pin >= 0)
782                 gpio_free(uart->rts_pin);
783 #endif
784 #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
785         if (uart->cts_pin >= 0)
786                 free_irq(uart->status_irq, uart);
787 #endif
788 }
789
790 static void
791 bfin_serial_set_termios(struct uart_port *port, struct ktermios *termios,
792                    struct ktermios *old)
793 {
794         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
795         unsigned long flags;
796         unsigned int baud, quot;
797         unsigned int ier, lcr = 0;
798         unsigned long timeout;
799
800         switch (termios->c_cflag & CSIZE) {
801         case CS8:
802                 lcr = WLS(8);
803                 break;
804         case CS7:
805                 lcr = WLS(7);
806                 break;
807         case CS6:
808                 lcr = WLS(6);
809                 break;
810         case CS5:
811                 lcr = WLS(5);
812                 break;
813         default:
814                 printk(KERN_ERR "%s: word length not supported\n",
815                         __func__);
816         }
817
818         /* Anomaly notes:
819          *  05000231 -  STOP bit is always set to 1 whatever the user is set.
820          */
821         if (termios->c_cflag & CSTOPB) {
822                 if (ANOMALY_05000231)
823                         printk(KERN_WARNING "STOP bits other than 1 is not "
824                                 "supported in case of anomaly 05000231.\n");
825                 else
826                         lcr |= STB;
827         }
828         if (termios->c_cflag & PARENB)
829                 lcr |= PEN;
830         if (!(termios->c_cflag & PARODD))
831                 lcr |= EPS;
832         if (termios->c_cflag & CMSPAR)
833                 lcr |= STP;
834
835         spin_lock_irqsave(&uart->port.lock, flags);
836
837         port->read_status_mask = OE;
838         if (termios->c_iflag & INPCK)
839                 port->read_status_mask |= (FE | PE);
840         if (termios->c_iflag & (BRKINT | PARMRK))
841                 port->read_status_mask |= BI;
842
843         /*
844          * Characters to ignore
845          */
846         port->ignore_status_mask = 0;
847         if (termios->c_iflag & IGNPAR)
848                 port->ignore_status_mask |= FE | PE;
849         if (termios->c_iflag & IGNBRK) {
850                 port->ignore_status_mask |= BI;
851                 /*
852                  * If we're ignoring parity and break indicators,
853                  * ignore overruns too (for real raw support).
854                  */
855                 if (termios->c_iflag & IGNPAR)
856                         port->ignore_status_mask |= OE;
857         }
858
859         baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
860         quot = uart_get_divisor(port, baud);
861
862         /* If discipline is not IRDA, apply ANOMALY_05000230 */
863         if (termios->c_line != N_IRDA)
864                 quot -= ANOMALY_05000230;
865
866         UART_SET_ANOMALY_THRESHOLD(uart, USEC_PER_SEC / baud * 15);
867
868         /* Wait till the transfer buffer is empty */
869         timeout = jiffies + msecs_to_jiffies(10);
870         while (UART_GET_GCTL(uart) & UCEN && !(UART_GET_LSR(uart) & TEMT))
871                 if (time_after(jiffies, timeout)) {
872                         dev_warn(port->dev, "timeout waiting for TX buffer empty\n");
873                         break;
874                 }
875
876         /* Disable UART */
877         ier = UART_GET_IER(uart);
878         UART_PUT_GCTL(uart, UART_GET_GCTL(uart) & ~UCEN);
879         UART_DISABLE_INTS(uart);
880
881         /* Set DLAB in LCR to Access CLK */
882         UART_SET_DLAB(uart);
883
884         UART_PUT_CLK(uart, quot);
885         SSYNC();
886
887         /* Clear DLAB in LCR to Access THR RBR IER */
888         UART_CLEAR_DLAB(uart);
889
890         UART_PUT_LCR(uart, (UART_GET_LCR(uart) & ~LCR_MASK) | lcr);
891
892         /* Enable UART */
893         UART_ENABLE_INTS(uart, ier);
894         UART_PUT_GCTL(uart, UART_GET_GCTL(uart) | UCEN);
895
896         /* Port speed changed, update the per-port timeout. */
897         uart_update_timeout(port, termios->c_cflag, baud);
898
899         spin_unlock_irqrestore(&uart->port.lock, flags);
900 }
901
902 static const char *bfin_serial_type(struct uart_port *port)
903 {
904         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
905
906         return uart->port.type == PORT_BFIN ? "BFIN-UART" : NULL;
907 }
908
909 /*
910  * Release the memory region(s) being used by 'port'.
911  */
912 static void bfin_serial_release_port(struct uart_port *port)
913 {
914 }
915
916 /*
917  * Request the memory region(s) being used by 'port'.
918  */
919 static int bfin_serial_request_port(struct uart_port *port)
920 {
921         return 0;
922 }
923
924 /*
925  * Configure/autoconfigure the port.
926  */
927 static void bfin_serial_config_port(struct uart_port *port, int flags)
928 {
929         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
930
931         if (flags & UART_CONFIG_TYPE &&
932             bfin_serial_request_port(&uart->port) == 0)
933                 uart->port.type = PORT_BFIN;
934 }
935
936 /*
937  * Verify the new serial_struct (for TIOCSSERIAL).
938  * The only change we allow are to the flags and type, and
939  * even then only between PORT_BFIN and PORT_UNKNOWN
940  */
941 static int
942 bfin_serial_verify_port(struct uart_port *port, struct serial_struct *ser)
943 {
944         return 0;
945 }
946
947 /*
948  * Enable the IrDA function if tty->ldisc.num is N_IRDA.
949  * In other cases, disable IrDA function.
950  */
951 static void bfin_serial_set_ldisc(struct uart_port *port, int ld)
952 {
953         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
954         unsigned int val;
955
956         switch (ld) {
957         case N_IRDA:
958                 val = UART_GET_GCTL(uart);
959                 val |= (UMOD_IRDA | RPOLC);
960                 UART_PUT_GCTL(uart, val);
961                 break;
962         default:
963                 val = UART_GET_GCTL(uart);
964                 val &= ~(UMOD_MASK | RPOLC);
965                 UART_PUT_GCTL(uart, val);
966         }
967 }
968
969 static void bfin_serial_reset_irda(struct uart_port *port)
970 {
971         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
972         unsigned int val;
973
974         val = UART_GET_GCTL(uart);
975         val &= ~(UMOD_MASK | RPOLC);
976         UART_PUT_GCTL(uart, val);
977         SSYNC();
978         val |= (UMOD_IRDA | RPOLC);
979         UART_PUT_GCTL(uart, val);
980         SSYNC();
981 }
982
983 #ifdef CONFIG_CONSOLE_POLL
984 /* Anomaly notes:
985  *  05000099 -  Because we only use THRE in poll_put and DR in poll_get,
986  *              losing other bits of UART_LSR is not a problem here.
987  */
988 static void bfin_serial_poll_put_char(struct uart_port *port, unsigned char chr)
989 {
990         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
991
992         while (!(UART_GET_LSR(uart) & THRE))
993                 cpu_relax();
994
995         UART_CLEAR_DLAB(uart);
996         UART_PUT_CHAR(uart, (unsigned char)chr);
997 }
998
999 static int bfin_serial_poll_get_char(struct uart_port *port)
1000 {
1001         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
1002         unsigned char chr;
1003
1004         while (!(UART_GET_LSR(uart) & DR))
1005                 cpu_relax();
1006
1007         UART_CLEAR_DLAB(uart);
1008         chr = UART_GET_CHAR(uart);
1009
1010         return chr;
1011 }
1012 #endif
1013
1014 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
1015         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
1016 static void bfin_kgdboc_port_shutdown(struct uart_port *port)
1017 {
1018         if (kgdboc_break_enabled) {
1019                 kgdboc_break_enabled = 0;
1020                 bfin_serial_shutdown(port);
1021         }
1022 }
1023
1024 static int bfin_kgdboc_port_startup(struct uart_port *port)
1025 {
1026         kgdboc_port_line = port->line;
1027         kgdboc_break_enabled = !bfin_serial_startup(port);
1028         return 0;
1029 }
1030 #endif
1031
1032 static struct uart_ops bfin_serial_pops = {
1033         .tx_empty       = bfin_serial_tx_empty,
1034         .set_mctrl      = bfin_serial_set_mctrl,
1035         .get_mctrl      = bfin_serial_get_mctrl,
1036         .stop_tx        = bfin_serial_stop_tx,
1037         .start_tx       = bfin_serial_start_tx,
1038         .stop_rx        = bfin_serial_stop_rx,
1039         .enable_ms      = bfin_serial_enable_ms,
1040         .break_ctl      = bfin_serial_break_ctl,
1041         .startup        = bfin_serial_startup,
1042         .shutdown       = bfin_serial_shutdown,
1043         .set_termios    = bfin_serial_set_termios,
1044         .set_ldisc      = bfin_serial_set_ldisc,
1045         .type           = bfin_serial_type,
1046         .release_port   = bfin_serial_release_port,
1047         .request_port   = bfin_serial_request_port,
1048         .config_port    = bfin_serial_config_port,
1049         .verify_port    = bfin_serial_verify_port,
1050 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
1051         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
1052         .kgdboc_port_startup    = bfin_kgdboc_port_startup,
1053         .kgdboc_port_shutdown   = bfin_kgdboc_port_shutdown,
1054 #endif
1055 #ifdef CONFIG_CONSOLE_POLL
1056         .poll_put_char  = bfin_serial_poll_put_char,
1057         .poll_get_char  = bfin_serial_poll_get_char,
1058 #endif
1059 };
1060
1061 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
1062 /*
1063  * If the port was already initialised (eg, by a boot loader),
1064  * try to determine the current setup.
1065  */
1066 static void __init
1067 bfin_serial_console_get_options(struct bfin_serial_port *uart, int *baud,
1068                            int *parity, int *bits)
1069 {
1070         unsigned int status;
1071
1072         status = UART_GET_IER(uart) & (ERBFI | ETBEI);
1073         if (status == (ERBFI | ETBEI)) {
1074                 /* ok, the port was enabled */
1075                 u32 lcr, clk;
1076
1077                 lcr = UART_GET_LCR(uart);
1078
1079                 *parity = 'n';
1080                 if (lcr & PEN) {
1081                         if (lcr & EPS)
1082                                 *parity = 'e';
1083                         else
1084                                 *parity = 'o';
1085                 }
1086                 *bits = ((lcr & WLS_MASK) >> WLS_OFFSET) + 5;
1087
1088                 /* Set DLAB in LCR to Access CLK */
1089                 UART_SET_DLAB(uart);
1090
1091                 clk = UART_GET_CLK(uart);
1092
1093                 /* Clear DLAB in LCR to Access THR RBR IER */
1094                 UART_CLEAR_DLAB(uart);
1095
1096                 *baud = get_sclk() / (16*clk);
1097         }
1098         pr_debug("%s:baud = %d, parity = %c, bits= %d\n", __func__, *baud, *parity, *bits);
1099 }
1100
1101 static struct uart_driver bfin_serial_reg;
1102
1103 static void bfin_serial_console_putchar(struct uart_port *port, int ch)
1104 {
1105         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
1106         while (!(UART_GET_LSR(uart) & THRE))
1107                 barrier();
1108         UART_PUT_CHAR(uart, ch);
1109 }
1110
1111 #endif /* defined (CONFIG_SERIAL_BFIN_CONSOLE) ||
1112                  defined (CONFIG_EARLY_PRINTK) */
1113
1114 #ifdef CONFIG_SERIAL_BFIN_CONSOLE
1115 #define CLASS_BFIN_CONSOLE      "bfin-console"
1116 /*
1117  * Interrupts are disabled on entering
1118  */
1119 static void
1120 bfin_serial_console_write(struct console *co, const char *s, unsigned int count)
1121 {
1122         struct bfin_serial_port *uart = bfin_serial_ports[co->index];
1123         unsigned long flags;
1124
1125         spin_lock_irqsave(&uart->port.lock, flags);
1126         uart_console_write(&uart->port, s, count, bfin_serial_console_putchar);
1127         spin_unlock_irqrestore(&uart->port.lock, flags);
1128
1129 }
1130
1131 static int __init
1132 bfin_serial_console_setup(struct console *co, char *options)
1133 {
1134         struct bfin_serial_port *uart;
1135         int baud = 57600;
1136         int bits = 8;
1137         int parity = 'n';
1138 # if defined(CONFIG_SERIAL_BFIN_CTSRTS) || \
1139         defined(CONFIG_SERIAL_BFIN_HARD_CTSRTS)
1140         int flow = 'r';
1141 # else
1142         int flow = 'n';
1143 # endif
1144
1145         /*
1146          * Check whether an invalid uart number has been specified, and
1147          * if so, search for the first available port that does have
1148          * console support.
1149          */
1150         if (co->index < 0 || co->index >= BFIN_UART_NR_PORTS)
1151                 return -ENODEV;
1152
1153         uart = bfin_serial_ports[co->index];
1154         if (!uart)
1155                 return -ENODEV;
1156
1157         if (options)
1158                 uart_parse_options(options, &baud, &parity, &bits, &flow);
1159         else
1160                 bfin_serial_console_get_options(uart, &baud, &parity, &bits);
1161
1162         return uart_set_options(&uart->port, co, baud, parity, bits, flow);
1163 }
1164
1165 static struct console bfin_serial_console = {
1166         .name           = BFIN_SERIAL_DEV_NAME,
1167         .write          = bfin_serial_console_write,
1168         .device         = uart_console_device,
1169         .setup          = bfin_serial_console_setup,
1170         .flags          = CON_PRINTBUFFER,
1171         .index          = -1,
1172         .data           = &bfin_serial_reg,
1173 };
1174 #define BFIN_SERIAL_CONSOLE     (&bfin_serial_console)
1175 #else
1176 #define BFIN_SERIAL_CONSOLE     NULL
1177 #endif /* CONFIG_SERIAL_BFIN_CONSOLE */
1178
1179 #ifdef  CONFIG_EARLY_PRINTK
1180 static struct bfin_serial_port bfin_earlyprintk_port;
1181 #define CLASS_BFIN_EARLYPRINTK  "bfin-earlyprintk"
1182
1183 /*
1184  * Interrupts are disabled on entering
1185  */
1186 static void
1187 bfin_earlyprintk_console_write(struct console *co, const char *s, unsigned int count)
1188 {
1189         unsigned long flags;
1190
1191         if (bfin_earlyprintk_port.port.line != co->index)
1192                 return;
1193
1194         spin_lock_irqsave(&bfin_earlyprintk_port.port.lock, flags);
1195         uart_console_write(&bfin_earlyprintk_port.port, s, count,
1196                 bfin_serial_console_putchar);
1197         spin_unlock_irqrestore(&bfin_earlyprintk_port.port.lock, flags);
1198 }
1199
1200 /*
1201  * This should have a .setup or .early_setup in it, but then things get called
1202  * without the command line options, and the baud rate gets messed up - so
1203  * don't let the common infrastructure play with things. (see calls to setup
1204  * & earlysetup in ./kernel/printk.c:register_console()
1205  */
1206 static struct __initdata console bfin_early_serial_console = {
1207         .name = "early_BFuart",
1208         .write = bfin_earlyprintk_console_write,
1209         .device = uart_console_device,
1210         .flags = CON_PRINTBUFFER,
1211         .index = -1,
1212         .data  = &bfin_serial_reg,
1213 };
1214 #endif
1215
1216 static struct uart_driver bfin_serial_reg = {
1217         .owner                  = THIS_MODULE,
1218         .driver_name            = DRIVER_NAME,
1219         .dev_name               = BFIN_SERIAL_DEV_NAME,
1220         .major                  = BFIN_SERIAL_MAJOR,
1221         .minor                  = BFIN_SERIAL_MINOR,
1222         .nr                     = BFIN_UART_NR_PORTS,
1223         .cons                   = BFIN_SERIAL_CONSOLE,
1224 };
1225
1226 static int bfin_serial_suspend(struct platform_device *pdev, pm_message_t state)
1227 {
1228         struct bfin_serial_port *uart = platform_get_drvdata(pdev);
1229
1230         return uart_suspend_port(&bfin_serial_reg, &uart->port);
1231 }
1232
1233 static int bfin_serial_resume(struct platform_device *pdev)
1234 {
1235         struct bfin_serial_port *uart = platform_get_drvdata(pdev);
1236
1237         return uart_resume_port(&bfin_serial_reg, &uart->port);
1238 }
1239
1240 static int bfin_serial_probe(struct platform_device *pdev)
1241 {
1242         struct resource *res;
1243         struct bfin_serial_port *uart = NULL;
1244         int ret = 0;
1245
1246         if (pdev->id < 0 || pdev->id >= BFIN_UART_NR_PORTS) {
1247                 dev_err(&pdev->dev, "Wrong bfin uart platform device id.\n");
1248                 return -ENOENT;
1249         }
1250
1251         if (bfin_serial_ports[pdev->id] == NULL) {
1252
1253                 uart = kzalloc(sizeof(*uart), GFP_KERNEL);
1254                 if (!uart) {
1255                         dev_err(&pdev->dev,
1256                                 "fail to malloc bfin_serial_port\n");
1257                         return -ENOMEM;
1258                 }
1259                 bfin_serial_ports[pdev->id] = uart;
1260
1261 #ifdef CONFIG_EARLY_PRINTK
1262                 if (!(bfin_earlyprintk_port.port.membase
1263                         && bfin_earlyprintk_port.port.line == pdev->id)) {
1264                         /*
1265                          * If the peripheral PINs of current port is allocated
1266                          * in earlyprintk probe stage, don't do it again.
1267                          */
1268 #endif
1269                 ret = peripheral_request_list(
1270                         (unsigned short *)pdev->dev.platform_data, DRIVER_NAME);
1271                 if (ret) {
1272                         dev_err(&pdev->dev,
1273                                 "fail to request bfin serial peripherals\n");
1274                         goto out_error_free_mem;
1275                 }
1276 #ifdef CONFIG_EARLY_PRINTK
1277                 }
1278 #endif
1279
1280                 spin_lock_init(&uart->port.lock);
1281                 uart->port.uartclk   = get_sclk();
1282                 uart->port.fifosize  = BFIN_UART_TX_FIFO_SIZE;
1283                 uart->port.ops       = &bfin_serial_pops;
1284                 uart->port.line      = pdev->id;
1285                 uart->port.iotype    = UPIO_MEM;
1286                 uart->port.flags     = UPF_BOOT_AUTOCONF;
1287
1288                 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1289                 if (res == NULL) {
1290                         dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
1291                         ret = -ENOENT;
1292                         goto out_error_free_peripherals;
1293                 }
1294
1295                 uart->port.membase = ioremap(res->start, resource_size(res));
1296                 if (!uart->port.membase) {
1297                         dev_err(&pdev->dev, "Cannot map uart IO\n");
1298                         ret = -ENXIO;
1299                         goto out_error_free_peripherals;
1300                 }
1301                 uart->port.mapbase = res->start;
1302
1303                 uart->tx_irq = platform_get_irq(pdev, 0);
1304                 if (uart->tx_irq < 0) {
1305                         dev_err(&pdev->dev, "No uart TX IRQ specified\n");
1306                         ret = -ENOENT;
1307                         goto out_error_unmap;
1308                 }
1309
1310                 uart->rx_irq = platform_get_irq(pdev, 1);
1311                 if (uart->rx_irq < 0) {
1312                         dev_err(&pdev->dev, "No uart RX IRQ specified\n");
1313                         ret = -ENOENT;
1314                         goto out_error_unmap;
1315                 }
1316                 uart->port.irq = uart->rx_irq;
1317
1318                 uart->status_irq = platform_get_irq(pdev, 2);
1319                 if (uart->status_irq < 0) {
1320                         dev_err(&pdev->dev, "No uart status IRQ specified\n");
1321                         ret = -ENOENT;
1322                         goto out_error_unmap;
1323                 }
1324
1325 #ifdef CONFIG_SERIAL_BFIN_DMA
1326                 spin_lock_init(&uart->rx_lock);
1327                 uart->tx_done       = 1;
1328                 uart->tx_count      = 0;
1329
1330                 res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
1331                 if (res == NULL) {
1332                         dev_err(&pdev->dev, "No uart TX DMA channel specified\n");
1333                         ret = -ENOENT;
1334                         goto out_error_unmap;
1335                 }
1336                 uart->tx_dma_channel = res->start;
1337
1338                 res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
1339                 if (res == NULL) {
1340                         dev_err(&pdev->dev, "No uart RX DMA channel specified\n");
1341                         ret = -ENOENT;
1342                         goto out_error_unmap;
1343                 }
1344                 uart->rx_dma_channel = res->start;
1345
1346                 init_timer(&(uart->rx_dma_timer));
1347 #endif
1348
1349 #if defined(CONFIG_SERIAL_BFIN_CTSRTS) || \
1350         defined(CONFIG_SERIAL_BFIN_HARD_CTSRTS)
1351                 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
1352                 if (res == NULL)
1353                         uart->cts_pin = -1;
1354                 else {
1355                         uart->cts_pin = res->start;
1356 #ifdef CONFIG_SERIAL_BFIN_CTSRTS
1357                         uart->port.flags |= ASYNC_CTS_FLOW;
1358 #endif
1359                 }
1360
1361                 res = platform_get_resource(pdev, IORESOURCE_IO, 1);
1362                 if (res == NULL)
1363                         uart->rts_pin = -1;
1364                 else
1365                         uart->rts_pin = res->start;
1366 #endif
1367         }
1368
1369 #ifdef CONFIG_SERIAL_BFIN_CONSOLE
1370         if (!is_early_platform_device(pdev)) {
1371 #endif
1372                 uart = bfin_serial_ports[pdev->id];
1373                 uart->port.dev = &pdev->dev;
1374                 dev_set_drvdata(&pdev->dev, uart);
1375                 ret = uart_add_one_port(&bfin_serial_reg, &uart->port);
1376 #ifdef CONFIG_SERIAL_BFIN_CONSOLE
1377         }
1378 #endif
1379
1380         if (!ret)
1381                 return 0;
1382
1383         if (uart) {
1384 out_error_unmap:
1385                 iounmap(uart->port.membase);
1386 out_error_free_peripherals:
1387                 peripheral_free_list(
1388                         (unsigned short *)pdev->dev.platform_data);
1389 out_error_free_mem:
1390                 kfree(uart);
1391                 bfin_serial_ports[pdev->id] = NULL;
1392         }
1393
1394         return ret;
1395 }
1396
1397 static int bfin_serial_remove(struct platform_device *pdev)
1398 {
1399         struct bfin_serial_port *uart = platform_get_drvdata(pdev);
1400
1401         dev_set_drvdata(&pdev->dev, NULL);
1402
1403         if (uart) {
1404                 uart_remove_one_port(&bfin_serial_reg, &uart->port);
1405                 iounmap(uart->port.membase);
1406                 peripheral_free_list(
1407                         (unsigned short *)pdev->dev.platform_data);
1408                 kfree(uart);
1409                 bfin_serial_ports[pdev->id] = NULL;
1410         }
1411
1412         return 0;
1413 }
1414
1415 static struct platform_driver bfin_serial_driver = {
1416         .probe          = bfin_serial_probe,
1417         .remove         = bfin_serial_remove,
1418         .suspend        = bfin_serial_suspend,
1419         .resume         = bfin_serial_resume,
1420         .driver         = {
1421                 .name   = DRIVER_NAME,
1422                 .owner  = THIS_MODULE,
1423         },
1424 };
1425
1426 #if defined(CONFIG_SERIAL_BFIN_CONSOLE)
1427 static __initdata struct early_platform_driver early_bfin_serial_driver = {
1428         .class_str = CLASS_BFIN_CONSOLE,
1429         .pdrv = &bfin_serial_driver,
1430         .requested_id = EARLY_PLATFORM_ID_UNSET,
1431 };
1432
1433 static int __init bfin_serial_rs_console_init(void)
1434 {
1435         early_platform_driver_register(&early_bfin_serial_driver, DRIVER_NAME);
1436
1437         early_platform_driver_probe(CLASS_BFIN_CONSOLE, BFIN_UART_NR_PORTS, 0);
1438
1439         register_console(&bfin_serial_console);
1440
1441         return 0;
1442 }
1443 console_initcall(bfin_serial_rs_console_init);
1444 #endif
1445
1446 #ifdef CONFIG_EARLY_PRINTK
1447 /*
1448  * Memory can't be allocated dynamically during earlyprink init stage.
1449  * So, do individual probe for earlyprink with a static uart port variable.
1450  */
1451 static int bfin_earlyprintk_probe(struct platform_device *pdev)
1452 {
1453         struct resource *res;
1454         int ret;
1455
1456         if (pdev->id < 0 || pdev->id >= BFIN_UART_NR_PORTS) {
1457                 dev_err(&pdev->dev, "Wrong earlyprintk platform device id.\n");
1458                 return -ENOENT;
1459         }
1460
1461         ret = peripheral_request_list(
1462                 (unsigned short *)pdev->dev.platform_data, DRIVER_NAME);
1463         if (ret) {
1464                 dev_err(&pdev->dev,
1465                                 "fail to request bfin serial peripherals\n");
1466                         return ret;
1467         }
1468
1469         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1470         if (res == NULL) {
1471                 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
1472                 ret = -ENOENT;
1473                 goto out_error_free_peripherals;
1474         }
1475
1476         bfin_earlyprintk_port.port.membase = ioremap(res->start,
1477                                                      resource_size(res));
1478         if (!bfin_earlyprintk_port.port.membase) {
1479                 dev_err(&pdev->dev, "Cannot map uart IO\n");
1480                 ret = -ENXIO;
1481                 goto out_error_free_peripherals;
1482         }
1483         bfin_earlyprintk_port.port.mapbase = res->start;
1484         bfin_earlyprintk_port.port.line = pdev->id;
1485         bfin_earlyprintk_port.port.uartclk = get_sclk();
1486         bfin_earlyprintk_port.port.fifosize  = BFIN_UART_TX_FIFO_SIZE;
1487         spin_lock_init(&bfin_earlyprintk_port.port.lock);
1488
1489         return 0;
1490
1491 out_error_free_peripherals:
1492         peripheral_free_list(
1493                 (unsigned short *)pdev->dev.platform_data);
1494
1495         return ret;
1496 }
1497
1498 static struct platform_driver bfin_earlyprintk_driver = {
1499         .probe          = bfin_earlyprintk_probe,
1500         .driver         = {
1501                 .name   = DRIVER_NAME,
1502                 .owner  = THIS_MODULE,
1503         },
1504 };
1505
1506 static __initdata struct early_platform_driver early_bfin_earlyprintk_driver = {
1507         .class_str = CLASS_BFIN_EARLYPRINTK,
1508         .pdrv = &bfin_earlyprintk_driver,
1509         .requested_id = EARLY_PLATFORM_ID_UNSET,
1510 };
1511
1512 struct console __init *bfin_earlyserial_init(unsigned int port,
1513                                                 unsigned int cflag)
1514 {
1515         struct ktermios t;
1516         char port_name[20];
1517
1518         if (port < 0 || port >= BFIN_UART_NR_PORTS)
1519                 return NULL;
1520
1521         /*
1522          * Only probe resource of the given port in earlyprintk boot arg.
1523          * The expected port id should be indicated in port name string.
1524          */
1525         snprintf(port_name, 20, DRIVER_NAME ".%d", port);
1526         early_platform_driver_register(&early_bfin_earlyprintk_driver,
1527                 port_name);
1528         early_platform_driver_probe(CLASS_BFIN_EARLYPRINTK, 1, 0);
1529
1530         if (!bfin_earlyprintk_port.port.membase)
1531                 return NULL;
1532
1533 #ifdef CONFIG_SERIAL_BFIN_CONSOLE
1534         /*
1535          * If we are using early serial, don't let the normal console rewind
1536          * log buffer, since that causes things to be printed multiple times
1537          */
1538         bfin_serial_console.flags &= ~CON_PRINTBUFFER;
1539 #endif
1540
1541         bfin_early_serial_console.index = port;
1542         t.c_cflag = cflag;
1543         t.c_iflag = 0;
1544         t.c_oflag = 0;
1545         t.c_lflag = ICANON;
1546         t.c_line = port;
1547         bfin_serial_set_termios(&bfin_earlyprintk_port.port, &t, &t);
1548
1549         return &bfin_early_serial_console;
1550 }
1551 #endif /* CONFIG_EARLY_PRINTK */
1552
1553 static int __init bfin_serial_init(void)
1554 {
1555         int ret;
1556
1557         pr_info("Blackfin serial driver\n");
1558
1559         ret = uart_register_driver(&bfin_serial_reg);
1560         if (ret) {
1561                 pr_err("failed to register %s:%d\n",
1562                         bfin_serial_reg.driver_name, ret);
1563         }
1564
1565         ret = platform_driver_register(&bfin_serial_driver);
1566         if (ret) {
1567                 pr_err("fail to register bfin uart\n");
1568                 uart_unregister_driver(&bfin_serial_reg);
1569         }
1570
1571         return ret;
1572 }
1573
1574 static void __exit bfin_serial_exit(void)
1575 {
1576         platform_driver_unregister(&bfin_serial_driver);
1577         uart_unregister_driver(&bfin_serial_reg);
1578 }
1579
1580
1581 module_init(bfin_serial_init);
1582 module_exit(bfin_serial_exit);
1583
1584 MODULE_AUTHOR("Sonic Zhang, Aubrey Li");
1585 MODULE_DESCRIPTION("Blackfin generic serial port driver");
1586 MODULE_LICENSE("GPL");
1587 MODULE_ALIAS_CHARDEV_MAJOR(BFIN_SERIAL_MAJOR);
1588 MODULE_ALIAS("platform:bfin-uart");