]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/serial/bfin_5xx.c
Blackfin Serial Driver: updates kgdb over Blackfin serial driver with kgdb framework
[linux-2.6-omap-h63xx.git] / drivers / serial / bfin_5xx.c
1 /*
2  * Blackfin On-Chip Serial Driver
3  *
4  * Copyright 2006-2008 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 #include <linux/module.h>
16 #include <linux/ioport.h>
17 #include <linux/init.h>
18 #include <linux/console.h>
19 #include <linux/sysrq.h>
20 #include <linux/platform_device.h>
21 #include <linux/tty.h>
22 #include <linux/tty_flip.h>
23 #include <linux/serial_core.h>
24
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>
29 #endif
30
31 #include <asm/gpio.h>
32 #include <mach/bfin_serial_5xx.h>
33
34 #ifdef CONFIG_SERIAL_BFIN_DMA
35 #include <linux/dma-mapping.h>
36 #include <asm/io.h>
37 #include <asm/irq.h>
38 #include <asm/cacheflush.h>
39 #endif
40
41 /* UART name and device definitions */
42 #define BFIN_SERIAL_NAME        "ttyBF"
43 #define BFIN_SERIAL_MAJOR       204
44 #define BFIN_SERIAL_MINOR       64
45
46 static struct bfin_serial_port bfin_serial_ports[BFIN_UART_NR_PORTS];
47 static int nr_active_ports = ARRAY_SIZE(bfin_serial_resource);
48
49 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
50         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
51
52 # ifndef CONFIG_SERIAL_BFIN_PIO
53 #  error KGDB only support UART in PIO mode.
54 # endif
55
56 static int kgdboc_port_line;
57 static int kgdboc_break_enabled;
58 #endif
59 /*
60  * Setup for console. Argument comes from the menuconfig
61  */
62 #define DMA_RX_XCOUNT           512
63 #define DMA_RX_YCOUNT           (PAGE_SIZE / DMA_RX_XCOUNT)
64
65 #define DMA_RX_FLUSH_JIFFIES    (HZ / 50)
66 #define CTS_CHECK_JIFFIES       (HZ / 50)
67
68 #ifdef CONFIG_SERIAL_BFIN_DMA
69 static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart);
70 #else
71 static void bfin_serial_tx_chars(struct bfin_serial_port *uart);
72 #endif
73
74 static void bfin_serial_mctrl_check(struct bfin_serial_port *uart);
75
76 /*
77  * interrupts are disabled on entry
78  */
79 static void bfin_serial_stop_tx(struct uart_port *port)
80 {
81         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
82         struct circ_buf *xmit = &uart->port.info->xmit;
83
84         while (!(UART_GET_LSR(uart) & TEMT))
85                 cpu_relax();
86
87 #ifdef CONFIG_SERIAL_BFIN_DMA
88         disable_dma(uart->tx_dma_channel);
89         xmit->tail = (xmit->tail + uart->tx_count) & (UART_XMIT_SIZE - 1);
90         uart->port.icount.tx += uart->tx_count;
91         uart->tx_count = 0;
92         uart->tx_done = 1;
93 #else
94 #ifdef CONFIG_BF54x
95         /* Clear TFI bit */
96         UART_PUT_LSR(uart, TFI);
97 #endif
98         UART_CLEAR_IER(uart, ETBEI);
99 #endif
100 }
101
102 /*
103  * port is locked and interrupts are disabled
104  */
105 static void bfin_serial_start_tx(struct uart_port *port)
106 {
107         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
108
109 #ifdef CONFIG_SERIAL_BFIN_DMA
110         if (uart->tx_done)
111                 bfin_serial_dma_tx_chars(uart);
112 #else
113         UART_SET_IER(uart, ETBEI);
114         bfin_serial_tx_chars(uart);
115 #endif
116 }
117
118 /*
119  * Interrupts are enabled
120  */
121 static void bfin_serial_stop_rx(struct uart_port *port)
122 {
123         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
124
125         UART_CLEAR_IER(uart, ERBFI);
126 }
127
128 /*
129  * Set the modem control timer to fire immediately.
130  */
131 static void bfin_serial_enable_ms(struct uart_port *port)
132 {
133 }
134
135
136 #if ANOMALY_05000363 && defined(CONFIG_SERIAL_BFIN_PIO)
137 # define UART_GET_ANOMALY_THRESHOLD(uart)    ((uart)->anomaly_threshold)
138 # define UART_SET_ANOMALY_THRESHOLD(uart, v) ((uart)->anomaly_threshold = (v))
139 #else
140 # define UART_GET_ANOMALY_THRESHOLD(uart)    0
141 # define UART_SET_ANOMALY_THRESHOLD(uart, v)
142 #endif
143
144 #ifdef CONFIG_SERIAL_BFIN_PIO
145 static void bfin_serial_rx_chars(struct bfin_serial_port *uart)
146 {
147         struct tty_struct *tty = NULL;
148         unsigned int status, ch, flg;
149         static struct timeval anomaly_start = { .tv_sec = 0 };
150
151         status = UART_GET_LSR(uart);
152         UART_CLEAR_LSR(uart);
153
154         ch = UART_GET_CHAR(uart);
155         uart->port.icount.rx++;
156
157 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
158         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
159         if (kgdb_connected && kgdboc_port_line == uart->port.line)
160                 if (ch == 0x3) {/* Ctrl + C */
161                         kgdb_breakpoint();
162                         return;
163                 }
164
165         if (!uart->port.info || !uart->port.info->tty)
166                 return;
167 #endif
168         tty = uart->port.info->tty;
169
170         if (ANOMALY_05000363) {
171                 /* The BF533 (and BF561) family of processors have a nice anomaly
172                  * where they continuously generate characters for a "single" break.
173                  * We have to basically ignore this flood until the "next" valid
174                  * character comes across.  Due to the nature of the flood, it is
175                  * not possible to reliably catch bytes that are sent too quickly
176                  * after this break.  So application code talking to the Blackfin
177                  * which sends a break signal must allow at least 1.5 character
178                  * times after the end of the break for things to stabilize.  This
179                  * timeout was picked as it must absolutely be larger than 1
180                  * character time +/- some percent.  So 1.5 sounds good.  All other
181                  * Blackfin families operate properly.  Woo.
182                  */
183                 if (anomaly_start.tv_sec) {
184                         struct timeval curr;
185                         suseconds_t usecs;
186
187                         if ((~ch & (~ch + 1)) & 0xff)
188                                 goto known_good_char;
189
190                         do_gettimeofday(&curr);
191                         if (curr.tv_sec - anomaly_start.tv_sec > 1)
192                                 goto known_good_char;
193
194                         usecs = 0;
195                         if (curr.tv_sec != anomaly_start.tv_sec)
196                                 usecs += USEC_PER_SEC;
197                         usecs += curr.tv_usec - anomaly_start.tv_usec;
198
199                         if (usecs > UART_GET_ANOMALY_THRESHOLD(uart))
200                                 goto known_good_char;
201
202                         if (ch)
203                                 anomaly_start.tv_sec = 0;
204                         else
205                                 anomaly_start = curr;
206
207                         return;
208
209  known_good_char:
210                         anomaly_start.tv_sec = 0;
211                 }
212         }
213
214         if (status & BI) {
215                 if (ANOMALY_05000363)
216                         if (bfin_revid() < 5)
217                                 do_gettimeofday(&anomaly_start);
218                 uart->port.icount.brk++;
219                 if (uart_handle_break(&uart->port))
220                         goto ignore_char;
221                 status &= ~(PE | FE);
222         }
223         if (status & PE)
224                 uart->port.icount.parity++;
225         if (status & OE)
226                 uart->port.icount.overrun++;
227         if (status & FE)
228                 uart->port.icount.frame++;
229
230         status &= uart->port.read_status_mask;
231
232         if (status & BI)
233                 flg = TTY_BREAK;
234         else if (status & PE)
235                 flg = TTY_PARITY;
236         else if (status & FE)
237                 flg = TTY_FRAME;
238         else
239                 flg = TTY_NORMAL;
240
241         if (uart_handle_sysrq_char(&uart->port, ch))
242                 goto ignore_char;
243
244         uart_insert_char(&uart->port, status, OE, ch, flg);
245
246  ignore_char:
247         tty_flip_buffer_push(tty);
248 }
249
250 static void bfin_serial_tx_chars(struct bfin_serial_port *uart)
251 {
252         struct circ_buf *xmit = &uart->port.info->xmit;
253
254         /*
255          * Check the modem control lines before
256          * transmitting anything.
257          */
258         bfin_serial_mctrl_check(uart);
259
260         if (uart_circ_empty(xmit) || uart_tx_stopped(&uart->port)) {
261 #ifdef CONFIG_BF54x
262                 /* Clear TFI bit */
263                 UART_PUT_LSR(uart, TFI);
264 #endif
265                 UART_CLEAR_IER(uart, ETBEI);
266                 return;
267         }
268
269         if (uart->port.x_char) {
270                 UART_PUT_CHAR(uart, uart->port.x_char);
271                 uart->port.icount.tx++;
272                 uart->port.x_char = 0;
273         }
274
275         while ((UART_GET_LSR(uart) & THRE) && xmit->tail != xmit->head) {
276                 UART_PUT_CHAR(uart, xmit->buf[xmit->tail]);
277                 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
278                 uart->port.icount.tx++;
279                 SSYNC();
280         }
281
282         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
283                 uart_write_wakeup(&uart->port);
284 }
285
286 static irqreturn_t bfin_serial_rx_int(int irq, void *dev_id)
287 {
288         struct bfin_serial_port *uart = dev_id;
289
290         spin_lock(&uart->port.lock);
291         while (UART_GET_LSR(uart) & DR)
292                 bfin_serial_rx_chars(uart);
293         spin_unlock(&uart->port.lock);
294
295         return IRQ_HANDLED;
296 }
297
298 static irqreturn_t bfin_serial_tx_int(int irq, void *dev_id)
299 {
300         struct bfin_serial_port *uart = dev_id;
301
302         spin_lock(&uart->port.lock);
303         if (UART_GET_LSR(uart) & THRE)
304                 bfin_serial_tx_chars(uart);
305         spin_unlock(&uart->port.lock);
306
307         return IRQ_HANDLED;
308 }
309 #endif
310
311 #ifdef CONFIG_SERIAL_BFIN_DMA
312 static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart)
313 {
314         struct circ_buf *xmit = &uart->port.info->xmit;
315
316         uart->tx_done = 0;
317
318         /*
319          * Check the modem control lines before
320          * transmitting anything.
321          */
322         bfin_serial_mctrl_check(uart);
323
324         if (uart_circ_empty(xmit) || uart_tx_stopped(&uart->port)) {
325                 uart->tx_count = 0;
326                 uart->tx_done = 1;
327                 return;
328         }
329
330         if (uart->port.x_char) {
331                 UART_PUT_CHAR(uart, uart->port.x_char);
332                 uart->port.icount.tx++;
333                 uart->port.x_char = 0;
334         }
335
336         uart->tx_count = CIRC_CNT(xmit->head, xmit->tail, UART_XMIT_SIZE);
337         if (uart->tx_count > (UART_XMIT_SIZE - xmit->tail))
338                 uart->tx_count = UART_XMIT_SIZE - xmit->tail;
339         blackfin_dcache_flush_range((unsigned long)(xmit->buf+xmit->tail),
340                                         (unsigned long)(xmit->buf+xmit->tail+uart->tx_count));
341         set_dma_config(uart->tx_dma_channel,
342                 set_bfin_dma_config(DIR_READ, DMA_FLOW_STOP,
343                         INTR_ON_BUF,
344                         DIMENSION_LINEAR,
345                         DATA_SIZE_8,
346                         DMA_SYNC_RESTART));
347         set_dma_start_addr(uart->tx_dma_channel, (unsigned long)(xmit->buf+xmit->tail));
348         set_dma_x_count(uart->tx_dma_channel, uart->tx_count);
349         set_dma_x_modify(uart->tx_dma_channel, 1);
350         enable_dma(uart->tx_dma_channel);
351
352         UART_SET_IER(uart, ETBEI);
353 }
354
355 static void bfin_serial_dma_rx_chars(struct bfin_serial_port *uart)
356 {
357         struct tty_struct *tty = uart->port.info->port.tty;
358         int i, flg, status;
359
360         status = UART_GET_LSR(uart);
361         UART_CLEAR_LSR(uart);
362
363         uart->port.icount.rx +=
364                 CIRC_CNT(uart->rx_dma_buf.head, uart->rx_dma_buf.tail,
365                 UART_XMIT_SIZE);
366
367         if (status & BI) {
368                 uart->port.icount.brk++;
369                 if (uart_handle_break(&uart->port))
370                         goto dma_ignore_char;
371                 status &= ~(PE | FE);
372         }
373         if (status & PE)
374                 uart->port.icount.parity++;
375         if (status & OE)
376                 uart->port.icount.overrun++;
377         if (status & FE)
378                 uart->port.icount.frame++;
379
380         status &= uart->port.read_status_mask;
381
382         if (status & BI)
383                 flg = TTY_BREAK;
384         else if (status & PE)
385                 flg = TTY_PARITY;
386         else if (status & FE)
387                 flg = TTY_FRAME;
388         else
389                 flg = TTY_NORMAL;
390
391         for (i = uart->rx_dma_buf.tail; i != uart->rx_dma_buf.head; i++) {
392                 if (i >= UART_XMIT_SIZE)
393                         i = 0;
394                 if (!uart_handle_sysrq_char(&uart->port, uart->rx_dma_buf.buf[i]))
395                         uart_insert_char(&uart->port, status, OE,
396                                 uart->rx_dma_buf.buf[i], flg);
397         }
398
399  dma_ignore_char:
400         tty_flip_buffer_push(tty);
401 }
402
403 void bfin_serial_rx_dma_timeout(struct bfin_serial_port *uart)
404 {
405         int x_pos, pos;
406
407         uart->rx_dma_nrows = get_dma_curr_ycount(uart->rx_dma_channel);
408         x_pos = get_dma_curr_xcount(uart->rx_dma_channel);
409         uart->rx_dma_nrows = DMA_RX_YCOUNT - uart->rx_dma_nrows;
410         if (uart->rx_dma_nrows == DMA_RX_YCOUNT)
411                 uart->rx_dma_nrows = 0;
412         x_pos = DMA_RX_XCOUNT - x_pos;
413         if (x_pos == DMA_RX_XCOUNT)
414                 x_pos = 0;
415
416         pos = uart->rx_dma_nrows * DMA_RX_XCOUNT + x_pos;
417         if (pos != uart->rx_dma_buf.tail) {
418                 uart->rx_dma_buf.head = pos;
419                 bfin_serial_dma_rx_chars(uart);
420                 uart->rx_dma_buf.tail = uart->rx_dma_buf.head;
421         }
422
423         mod_timer(&(uart->rx_dma_timer), jiffies + DMA_RX_FLUSH_JIFFIES);
424 }
425
426 static irqreturn_t bfin_serial_dma_tx_int(int irq, void *dev_id)
427 {
428         struct bfin_serial_port *uart = dev_id;
429         struct circ_buf *xmit = &uart->port.info->xmit;
430
431         spin_lock(&uart->port.lock);
432         if (!(get_dma_curr_irqstat(uart->tx_dma_channel)&DMA_RUN)) {
433                 disable_dma(uart->tx_dma_channel);
434                 clear_dma_irqstat(uart->tx_dma_channel);
435                 UART_CLEAR_IER(uart, ETBEI);
436                 xmit->tail = (xmit->tail + uart->tx_count) & (UART_XMIT_SIZE - 1);
437                 uart->port.icount.tx += uart->tx_count;
438
439                 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
440                         uart_write_wakeup(&uart->port);
441
442                 bfin_serial_dma_tx_chars(uart);
443         }
444
445         spin_unlock(&uart->port.lock);
446         return IRQ_HANDLED;
447 }
448
449 static irqreturn_t bfin_serial_dma_rx_int(int irq, void *dev_id)
450 {
451         struct bfin_serial_port *uart = dev_id;
452         unsigned short irqstat;
453
454         spin_lock(&uart->port.lock);
455         irqstat = get_dma_curr_irqstat(uart->rx_dma_channel);
456         clear_dma_irqstat(uart->rx_dma_channel);
457         spin_unlock(&uart->port.lock);
458
459         mod_timer(&(uart->rx_dma_timer), jiffies);
460
461         return IRQ_HANDLED;
462 }
463 #endif
464
465 /*
466  * Return TIOCSER_TEMT when transmitter is not busy.
467  */
468 static unsigned int bfin_serial_tx_empty(struct uart_port *port)
469 {
470         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
471         unsigned short lsr;
472
473         lsr = UART_GET_LSR(uart);
474         if (lsr & TEMT)
475                 return TIOCSER_TEMT;
476         else
477                 return 0;
478 }
479
480 static unsigned int bfin_serial_get_mctrl(struct uart_port *port)
481 {
482 #ifdef CONFIG_SERIAL_BFIN_CTSRTS
483         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
484         if (uart->cts_pin < 0)
485                 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
486
487         if (UART_GET_CTS(uart))
488                 return TIOCM_DSR | TIOCM_CAR;
489         else
490 #endif
491                 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
492 }
493
494 static void bfin_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
495 {
496 #ifdef CONFIG_SERIAL_BFIN_CTSRTS
497         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
498         if (uart->rts_pin < 0)
499                 return;
500
501         if (mctrl & TIOCM_RTS)
502                 UART_CLEAR_RTS(uart);
503         else
504                 UART_SET_RTS(uart);
505 #endif
506 }
507
508 /*
509  * Handle any change of modem status signal since we were last called.
510  */
511 static void bfin_serial_mctrl_check(struct bfin_serial_port *uart)
512 {
513 #ifdef CONFIG_SERIAL_BFIN_CTSRTS
514         unsigned int status;
515         struct uart_info *info = uart->port.info;
516         struct tty_struct *tty = info->port.tty;
517
518         status = bfin_serial_get_mctrl(&uart->port);
519         uart_handle_cts_change(&uart->port, status & TIOCM_CTS);
520         if (!(status & TIOCM_CTS)) {
521                 tty->hw_stopped = 1;
522                 uart->cts_timer.data = (unsigned long)(uart);
523                 uart->cts_timer.function = (void *)bfin_serial_mctrl_check;
524                 uart->cts_timer.expires = jiffies + CTS_CHECK_JIFFIES;
525                 add_timer(&(uart->cts_timer));
526         } else {
527                 tty->hw_stopped = 0;
528         }
529 #endif
530 }
531
532 /*
533  * Interrupts are always disabled.
534  */
535 static void bfin_serial_break_ctl(struct uart_port *port, int break_state)
536 {
537         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
538         u16 lcr = UART_GET_LCR(uart);
539         if (break_state)
540                 lcr |= SB;
541         else
542                 lcr &= ~SB;
543         UART_PUT_LCR(uart, lcr);
544         SSYNC();
545 }
546
547 static int bfin_serial_startup(struct uart_port *port)
548 {
549         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
550
551 #ifdef CONFIG_SERIAL_BFIN_DMA
552         dma_addr_t dma_handle;
553
554         if (request_dma(uart->rx_dma_channel, "BFIN_UART_RX") < 0) {
555                 printk(KERN_NOTICE "Unable to attach Blackfin UART RX DMA channel\n");
556                 return -EBUSY;
557         }
558
559         if (request_dma(uart->tx_dma_channel, "BFIN_UART_TX") < 0) {
560                 printk(KERN_NOTICE "Unable to attach Blackfin UART TX DMA channel\n");
561                 free_dma(uart->rx_dma_channel);
562                 return -EBUSY;
563         }
564
565         set_dma_callback(uart->rx_dma_channel, bfin_serial_dma_rx_int, uart);
566         set_dma_callback(uart->tx_dma_channel, bfin_serial_dma_tx_int, uart);
567
568         uart->rx_dma_buf.buf = (unsigned char *)dma_alloc_coherent(NULL, PAGE_SIZE, &dma_handle, GFP_DMA);
569         uart->rx_dma_buf.head = 0;
570         uart->rx_dma_buf.tail = 0;
571         uart->rx_dma_nrows = 0;
572
573         set_dma_config(uart->rx_dma_channel,
574                 set_bfin_dma_config(DIR_WRITE, DMA_FLOW_AUTO,
575                                 INTR_ON_ROW, DIMENSION_2D,
576                                 DATA_SIZE_8,
577                                 DMA_SYNC_RESTART));
578         set_dma_x_count(uart->rx_dma_channel, DMA_RX_XCOUNT);
579         set_dma_x_modify(uart->rx_dma_channel, 1);
580         set_dma_y_count(uart->rx_dma_channel, DMA_RX_YCOUNT);
581         set_dma_y_modify(uart->rx_dma_channel, 1);
582         set_dma_start_addr(uart->rx_dma_channel, (unsigned long)uart->rx_dma_buf.buf);
583         enable_dma(uart->rx_dma_channel);
584
585         uart->rx_dma_timer.data = (unsigned long)(uart);
586         uart->rx_dma_timer.function = (void *)bfin_serial_rx_dma_timeout;
587         uart->rx_dma_timer.expires = jiffies + DMA_RX_FLUSH_JIFFIES;
588         add_timer(&(uart->rx_dma_timer));
589 #else
590 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
591         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
592         if (kgdboc_port_line == uart->port.line && kgdboc_break_enabled)
593                 kgdboc_break_enabled = 0;
594         else {
595 # endif
596         if (request_irq(uart->port.irq, bfin_serial_rx_int, IRQF_DISABLED,
597              "BFIN_UART_RX", uart)) {
598                 printk(KERN_NOTICE "Unable to attach BlackFin UART RX interrupt\n");
599                 return -EBUSY;
600         }
601
602         if (request_irq
603             (uart->port.irq+1, bfin_serial_tx_int, IRQF_DISABLED,
604              "BFIN_UART_TX", uart)) {
605                 printk(KERN_NOTICE "Unable to attach BlackFin UART TX interrupt\n");
606                 free_irq(uart->port.irq, uart);
607                 return -EBUSY;
608         }
609
610 # ifdef CONFIG_BF54x
611         {
612                 unsigned uart_dma_ch_rx, uart_dma_ch_tx;
613
614                 switch (uart->port.irq) {
615                 case IRQ_UART3_RX:
616                         uart_dma_ch_rx = CH_UART3_RX;
617                         uart_dma_ch_tx = CH_UART3_TX;
618                         break;
619                 case IRQ_UART2_RX:
620                         uart_dma_ch_rx = CH_UART2_RX;
621                         uart_dma_ch_tx = CH_UART2_TX;
622                         break;
623                 default:
624                         uart_dma_ch_rx = uart_dma_ch_tx = 0;
625                         break;
626                 };
627
628                 if (uart_dma_ch_rx &&
629                         request_dma(uart_dma_ch_rx, "BFIN_UART_RX") < 0) {
630                         printk(KERN_NOTICE"Fail to attach UART interrupt\n");
631                         free_irq(uart->port.irq, uart);
632                         free_irq(uart->port.irq + 1, uart);
633                         return -EBUSY;
634                 }
635                 if (uart_dma_ch_tx &&
636                         request_dma(uart_dma_ch_tx, "BFIN_UART_TX") < 0) {
637                         printk(KERN_NOTICE "Fail to attach UART interrupt\n");
638                         free_dma(uart_dma_ch_rx);
639                         free_irq(uart->port.irq, uart);
640                         free_irq(uart->port.irq + 1, uart);
641                         return -EBUSY;
642                 }
643         }
644 # endif
645 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
646         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
647         }
648 # endif
649 #endif
650         UART_SET_IER(uart, ERBFI);
651         return 0;
652 }
653
654 static void bfin_serial_shutdown(struct uart_port *port)
655 {
656         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
657
658 #ifdef CONFIG_SERIAL_BFIN_DMA
659         disable_dma(uart->tx_dma_channel);
660         free_dma(uart->tx_dma_channel);
661         disable_dma(uart->rx_dma_channel);
662         free_dma(uart->rx_dma_channel);
663         del_timer(&(uart->rx_dma_timer));
664         dma_free_coherent(NULL, PAGE_SIZE, uart->rx_dma_buf.buf, 0);
665 #else
666 #ifdef CONFIG_BF54x
667         switch (uart->port.irq) {
668         case IRQ_UART3_RX:
669                 free_dma(CH_UART3_RX);
670                 free_dma(CH_UART3_TX);
671                 break;
672         case IRQ_UART2_RX:
673                 free_dma(CH_UART2_RX);
674                 free_dma(CH_UART2_TX);
675                 break;
676         default:
677                 break;
678         };
679 #endif
680         free_irq(uart->port.irq, uart);
681         free_irq(uart->port.irq+1, uart);
682 #endif
683 }
684
685 static void
686 bfin_serial_set_termios(struct uart_port *port, struct ktermios *termios,
687                    struct ktermios *old)
688 {
689         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
690         unsigned long flags;
691         unsigned int baud, quot;
692         unsigned short val, ier, lcr = 0;
693
694         switch (termios->c_cflag & CSIZE) {
695         case CS8:
696                 lcr = WLS(8);
697                 break;
698         case CS7:
699                 lcr = WLS(7);
700                 break;
701         case CS6:
702                 lcr = WLS(6);
703                 break;
704         case CS5:
705                 lcr = WLS(5);
706                 break;
707         default:
708                 printk(KERN_ERR "%s: word lengh not supported\n",
709                         __func__);
710         }
711
712         if (termios->c_cflag & CSTOPB)
713                 lcr |= STB;
714         if (termios->c_cflag & PARENB)
715                 lcr |= PEN;
716         if (!(termios->c_cflag & PARODD))
717                 lcr |= EPS;
718         if (termios->c_cflag & CMSPAR)
719                 lcr |= STP;
720
721         port->read_status_mask = OE;
722         if (termios->c_iflag & INPCK)
723                 port->read_status_mask |= (FE | PE);
724         if (termios->c_iflag & (BRKINT | PARMRK))
725                 port->read_status_mask |= BI;
726
727         /*
728          * Characters to ignore
729          */
730         port->ignore_status_mask = 0;
731         if (termios->c_iflag & IGNPAR)
732                 port->ignore_status_mask |= FE | PE;
733         if (termios->c_iflag & IGNBRK) {
734                 port->ignore_status_mask |= BI;
735                 /*
736                  * If we're ignoring parity and break indicators,
737                  * ignore overruns too (for real raw support).
738                  */
739                 if (termios->c_iflag & IGNPAR)
740                         port->ignore_status_mask |= OE;
741         }
742
743         baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
744         quot = uart_get_divisor(port, baud);
745         spin_lock_irqsave(&uart->port.lock, flags);
746
747         UART_SET_ANOMALY_THRESHOLD(uart, USEC_PER_SEC / baud * 15);
748
749         /* Disable UART */
750         ier = UART_GET_IER(uart);
751         UART_DISABLE_INTS(uart);
752
753         /* Set DLAB in LCR to Access DLL and DLH */
754         UART_SET_DLAB(uart);
755
756         UART_PUT_DLL(uart, quot & 0xFF);
757         UART_PUT_DLH(uart, (quot >> 8) & 0xFF);
758         SSYNC();
759
760         /* Clear DLAB in LCR to Access THR RBR IER */
761         UART_CLEAR_DLAB(uart);
762
763         UART_PUT_LCR(uart, lcr);
764
765         /* Enable UART */
766         UART_ENABLE_INTS(uart, ier);
767
768         val = UART_GET_GCTL(uart);
769         val |= UCEN;
770         UART_PUT_GCTL(uart, val);
771
772         /* Port speed changed, update the per-port timeout. */
773         uart_update_timeout(port, termios->c_cflag, baud);
774
775         spin_unlock_irqrestore(&uart->port.lock, flags);
776 }
777
778 static const char *bfin_serial_type(struct uart_port *port)
779 {
780         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
781
782         return uart->port.type == PORT_BFIN ? "BFIN-UART" : NULL;
783 }
784
785 /*
786  * Release the memory region(s) being used by 'port'.
787  */
788 static void bfin_serial_release_port(struct uart_port *port)
789 {
790 }
791
792 /*
793  * Request the memory region(s) being used by 'port'.
794  */
795 static int bfin_serial_request_port(struct uart_port *port)
796 {
797         return 0;
798 }
799
800 /*
801  * Configure/autoconfigure the port.
802  */
803 static void bfin_serial_config_port(struct uart_port *port, int flags)
804 {
805         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
806
807         if (flags & UART_CONFIG_TYPE &&
808             bfin_serial_request_port(&uart->port) == 0)
809                 uart->port.type = PORT_BFIN;
810 }
811
812 /*
813  * Verify the new serial_struct (for TIOCSSERIAL).
814  * The only change we allow are to the flags and type, and
815  * even then only between PORT_BFIN and PORT_UNKNOWN
816  */
817 static int
818 bfin_serial_verify_port(struct uart_port *port, struct serial_struct *ser)
819 {
820         return 0;
821 }
822
823 /*
824  * Enable the IrDA function if tty->ldisc.num is N_IRDA.
825  * In other cases, disable IrDA function.
826  */
827 static void bfin_serial_set_ldisc(struct uart_port *port)
828 {
829         int line = port->line;
830         unsigned short val;
831
832         if (line >= port->info->port.tty->driver->num)
833                 return;
834
835         switch (port->info->port.tty->termios->c_line) {
836         case N_IRDA:
837                 val = UART_GET_GCTL(&bfin_serial_ports[line]);
838                 val |= (IREN | RPOLC);
839                 UART_PUT_GCTL(&bfin_serial_ports[line], val);
840                 break;
841         default:
842                 val = UART_GET_GCTL(&bfin_serial_ports[line]);
843                 val &= ~(IREN | RPOLC);
844                 UART_PUT_GCTL(&bfin_serial_ports[line], val);
845         }
846 }
847
848 #ifdef CONFIG_CONSOLE_POLL
849 static void bfin_serial_poll_put_char(struct uart_port *port, unsigned char chr)
850 {
851         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
852
853         while (!(UART_GET_LSR(uart) & THRE))
854                 cpu_relax();
855
856         UART_CLEAR_DLAB(uart);
857         UART_PUT_CHAR(uart, (unsigned char)chr);
858 }
859
860 static int bfin_serial_poll_get_char(struct uart_port *port)
861 {
862         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
863         unsigned char chr;
864
865         while (!(UART_GET_LSR(uart) & DR))
866                 cpu_relax();
867
868         UART_CLEAR_DLAB(uart);
869         chr = UART_GET_CHAR(uart);
870
871         return chr;
872 }
873 #endif
874
875 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
876         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
877 static void bfin_kgdboc_port_shutdown(struct uart_port *port)
878 {
879         if (kgdboc_break_enabled) {
880                 kgdboc_break_enabled = 0;
881                 bfin_serial_shutdown(port);
882         }
883 }
884
885 static int bfin_kgdboc_port_startup(struct uart_port *port)
886 {
887         kgdboc_port_line = port->line;
888         kgdboc_break_enabled = !bfin_serial_startup(port);
889         return 0;
890 }
891 #endif
892
893 static struct uart_ops bfin_serial_pops = {
894         .tx_empty       = bfin_serial_tx_empty,
895         .set_mctrl      = bfin_serial_set_mctrl,
896         .get_mctrl      = bfin_serial_get_mctrl,
897         .stop_tx        = bfin_serial_stop_tx,
898         .start_tx       = bfin_serial_start_tx,
899         .stop_rx        = bfin_serial_stop_rx,
900         .enable_ms      = bfin_serial_enable_ms,
901         .break_ctl      = bfin_serial_break_ctl,
902         .startup        = bfin_serial_startup,
903         .shutdown       = bfin_serial_shutdown,
904         .set_termios    = bfin_serial_set_termios,
905         .set_ldisc      = bfin_serial_set_ldisc,
906         .type           = bfin_serial_type,
907         .release_port   = bfin_serial_release_port,
908         .request_port   = bfin_serial_request_port,
909         .config_port    = bfin_serial_config_port,
910         .verify_port    = bfin_serial_verify_port,
911 #if defined(CONFIG_KGDB_SERIAL_CONSOLE) || \
912         defined(CONFIG_KGDB_SERIAL_CONSOLE_MODULE)
913         .kgdboc_port_startup    = bfin_kgdboc_port_startup,
914         .kgdboc_port_shutdown   = bfin_kgdboc_port_shutdown,
915 #endif
916 #ifdef CONFIG_CONSOLE_POLL
917         .poll_put_char  = bfin_serial_poll_put_char,
918         .poll_get_char  = bfin_serial_poll_get_char,
919 #endif
920 };
921
922 static void __init bfin_serial_init_ports(void)
923 {
924         static int first = 1;
925         int i;
926
927         if (!first)
928                 return;
929         first = 0;
930
931         for (i = 0; i < nr_active_ports; i++) {
932                 bfin_serial_ports[i].port.uartclk   = get_sclk();
933                 bfin_serial_ports[i].port.fifosize  = BFIN_UART_TX_FIFO_SIZE;
934                 bfin_serial_ports[i].port.ops       = &bfin_serial_pops;
935                 bfin_serial_ports[i].port.line      = i;
936                 bfin_serial_ports[i].port.iotype    = UPIO_MEM;
937                 bfin_serial_ports[i].port.membase   =
938                         (void __iomem *)bfin_serial_resource[i].uart_base_addr;
939                 bfin_serial_ports[i].port.mapbase   =
940                         bfin_serial_resource[i].uart_base_addr;
941                 bfin_serial_ports[i].port.irq       =
942                         bfin_serial_resource[i].uart_irq;
943                 bfin_serial_ports[i].port.flags     = UPF_BOOT_AUTOCONF;
944 #ifdef CONFIG_SERIAL_BFIN_DMA
945                 bfin_serial_ports[i].tx_done        = 1;
946                 bfin_serial_ports[i].tx_count       = 0;
947                 bfin_serial_ports[i].tx_dma_channel =
948                         bfin_serial_resource[i].uart_tx_dma_channel;
949                 bfin_serial_ports[i].rx_dma_channel =
950                         bfin_serial_resource[i].uart_rx_dma_channel;
951                 init_timer(&(bfin_serial_ports[i].rx_dma_timer));
952 #endif
953 #ifdef CONFIG_SERIAL_BFIN_CTSRTS
954                 init_timer(&(bfin_serial_ports[i].cts_timer));
955                 bfin_serial_ports[i].cts_pin        =
956                         bfin_serial_resource[i].uart_cts_pin;
957                 bfin_serial_ports[i].rts_pin        =
958                         bfin_serial_resource[i].uart_rts_pin;
959 #endif
960                 bfin_serial_hw_init(&bfin_serial_ports[i]);
961         }
962
963 }
964
965 #ifdef CONFIG_SERIAL_BFIN_CONSOLE
966 /*
967  * If the port was already initialised (eg, by a boot loader),
968  * try to determine the current setup.
969  */
970 static void __init
971 bfin_serial_console_get_options(struct bfin_serial_port *uart, int *baud,
972                            int *parity, int *bits)
973 {
974         unsigned short status;
975
976         status = UART_GET_IER(uart) & (ERBFI | ETBEI);
977         if (status == (ERBFI | ETBEI)) {
978                 /* ok, the port was enabled */
979                 u16 lcr, dlh, dll;
980
981                 lcr = UART_GET_LCR(uart);
982
983                 *parity = 'n';
984                 if (lcr & PEN) {
985                         if (lcr & EPS)
986                                 *parity = 'e';
987                         else
988                                 *parity = 'o';
989                 }
990                 switch (lcr & 0x03) {
991                         case 0: *bits = 5; break;
992                         case 1: *bits = 6; break;
993                         case 2: *bits = 7; break;
994                         case 3: *bits = 8; break;
995                 }
996                 /* Set DLAB in LCR to Access DLL and DLH */
997                 UART_SET_DLAB(uart);
998
999                 dll = UART_GET_DLL(uart);
1000                 dlh = UART_GET_DLH(uart);
1001
1002                 /* Clear DLAB in LCR to Access THR RBR IER */
1003                 UART_CLEAR_DLAB(uart);
1004
1005                 *baud = get_sclk() / (16*(dll | dlh << 8));
1006         }
1007         pr_debug("%s:baud = %d, parity = %c, bits= %d\n", __func__, *baud, *parity, *bits);
1008 }
1009 #endif
1010
1011 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
1012 static struct uart_driver bfin_serial_reg;
1013
1014 static int __init
1015 bfin_serial_console_setup(struct console *co, char *options)
1016 {
1017         struct bfin_serial_port *uart;
1018 # ifdef CONFIG_SERIAL_BFIN_CONSOLE
1019         int baud = 57600;
1020         int bits = 8;
1021         int parity = 'n';
1022 #  ifdef CONFIG_SERIAL_BFIN_CTSRTS
1023         int flow = 'r';
1024 #  else
1025         int flow = 'n';
1026 #  endif
1027 # endif
1028
1029         /*
1030          * Check whether an invalid uart number has been specified, and
1031          * if so, search for the first available port that does have
1032          * console support.
1033          */
1034         if (co->index == -1 || co->index >= nr_active_ports)
1035                 co->index = 0;
1036         uart = &bfin_serial_ports[co->index];
1037
1038 # ifdef CONFIG_SERIAL_BFIN_CONSOLE
1039         if (options)
1040                 uart_parse_options(options, &baud, &parity, &bits, &flow);
1041         else
1042                 bfin_serial_console_get_options(uart, &baud, &parity, &bits);
1043
1044         return uart_set_options(&uart->port, co, baud, parity, bits, flow);
1045 # else
1046         return 0;
1047 # endif
1048 }
1049 #endif /* defined (CONFIG_SERIAL_BFIN_CONSOLE) ||
1050                                  defined (CONFIG_EARLY_PRINTK) */
1051
1052 #ifdef CONFIG_SERIAL_BFIN_CONSOLE
1053 static void bfin_serial_console_putchar(struct uart_port *port, int ch)
1054 {
1055         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
1056         while (!(UART_GET_LSR(uart) & THRE))
1057                 barrier();
1058         UART_PUT_CHAR(uart, ch);
1059         SSYNC();
1060 }
1061
1062 /*
1063  * Interrupts are disabled on entering
1064  */
1065 static void
1066 bfin_serial_console_write(struct console *co, const char *s, unsigned int count)
1067 {
1068         struct bfin_serial_port *uart = &bfin_serial_ports[co->index];
1069         int flags = 0;
1070
1071         spin_lock_irqsave(&uart->port.lock, flags);
1072         uart_console_write(&uart->port, s, count, bfin_serial_console_putchar);
1073         spin_unlock_irqrestore(&uart->port.lock, flags);
1074
1075 }
1076
1077 static struct console bfin_serial_console = {
1078         .name           = BFIN_SERIAL_NAME,
1079         .write          = bfin_serial_console_write,
1080         .device         = uart_console_device,
1081         .setup          = bfin_serial_console_setup,
1082         .flags          = CON_PRINTBUFFER,
1083         .index          = -1,
1084         .data           = &bfin_serial_reg,
1085 };
1086
1087 static int __init bfin_serial_rs_console_init(void)
1088 {
1089         bfin_serial_init_ports();
1090         register_console(&bfin_serial_console);
1091
1092         return 0;
1093 }
1094 console_initcall(bfin_serial_rs_console_init);
1095
1096 #define BFIN_SERIAL_CONSOLE     &bfin_serial_console
1097 #else
1098 #define BFIN_SERIAL_CONSOLE     NULL
1099 #endif /* CONFIG_SERIAL_BFIN_CONSOLE */
1100
1101
1102 #ifdef CONFIG_EARLY_PRINTK
1103 static __init void early_serial_putc(struct uart_port *port, int ch)
1104 {
1105         unsigned timeout = 0xffff;
1106         struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
1107
1108         while ((!(UART_GET_LSR(uart) & THRE)) && --timeout)
1109                 cpu_relax();
1110         UART_PUT_CHAR(uart, ch);
1111 }
1112
1113 static __init void early_serial_write(struct console *con, const char *s,
1114                                         unsigned int n)
1115 {
1116         struct bfin_serial_port *uart = &bfin_serial_ports[con->index];
1117         unsigned int i;
1118
1119         for (i = 0; i < n; i++, s++) {
1120                 if (*s == '\n')
1121                         early_serial_putc(&uart->port, '\r');
1122                 early_serial_putc(&uart->port, *s);
1123         }
1124 }
1125
1126 static struct __initdata console bfin_early_serial_console = {
1127         .name = "early_BFuart",
1128         .write = early_serial_write,
1129         .device = uart_console_device,
1130         .flags = CON_PRINTBUFFER,
1131         .setup = bfin_serial_console_setup,
1132         .index = -1,
1133         .data  = &bfin_serial_reg,
1134 };
1135
1136 struct console __init *bfin_earlyserial_init(unsigned int port,
1137                                                 unsigned int cflag)
1138 {
1139         struct bfin_serial_port *uart;
1140         struct ktermios t;
1141
1142         if (port == -1 || port >= nr_active_ports)
1143                 port = 0;
1144         bfin_serial_init_ports();
1145         bfin_early_serial_console.index = port;
1146         uart = &bfin_serial_ports[port];
1147         t.c_cflag = cflag;
1148         t.c_iflag = 0;
1149         t.c_oflag = 0;
1150         t.c_lflag = ICANON;
1151         t.c_line = port;
1152         bfin_serial_set_termios(&uart->port, &t, &t);
1153         return &bfin_early_serial_console;
1154 }
1155
1156 #endif /* CONFIG_SERIAL_BFIN_CONSOLE */
1157
1158 static struct uart_driver bfin_serial_reg = {
1159         .owner                  = THIS_MODULE,
1160         .driver_name            = "bfin-uart",
1161         .dev_name               = BFIN_SERIAL_NAME,
1162         .major                  = BFIN_SERIAL_MAJOR,
1163         .minor                  = BFIN_SERIAL_MINOR,
1164         .nr                     = BFIN_UART_NR_PORTS,
1165         .cons                   = BFIN_SERIAL_CONSOLE,
1166 };
1167
1168 static int bfin_serial_suspend(struct platform_device *dev, pm_message_t state)
1169 {
1170         int i;
1171
1172         for (i = 0; i < nr_active_ports; i++) {
1173                 if (bfin_serial_ports[i].port.dev != &dev->dev)
1174                         continue;
1175                 uart_suspend_port(&bfin_serial_reg, &bfin_serial_ports[i].port);
1176         }
1177
1178         return 0;
1179 }
1180
1181 static int bfin_serial_resume(struct platform_device *dev)
1182 {
1183         int i;
1184
1185         for (i = 0; i < nr_active_ports; i++) {
1186                 if (bfin_serial_ports[i].port.dev != &dev->dev)
1187                         continue;
1188                 uart_resume_port(&bfin_serial_reg, &bfin_serial_ports[i].port);
1189         }
1190
1191         return 0;
1192 }
1193
1194 static int bfin_serial_probe(struct platform_device *dev)
1195 {
1196         struct resource *res = dev->resource;
1197         int i;
1198
1199         for (i = 0; i < dev->num_resources; i++, res++)
1200                 if (res->flags & IORESOURCE_MEM)
1201                         break;
1202
1203         if (i < dev->num_resources) {
1204                 for (i = 0; i < nr_active_ports; i++, res++) {
1205                         if (bfin_serial_ports[i].port.mapbase != res->start)
1206                                 continue;
1207                         bfin_serial_ports[i].port.dev = &dev->dev;
1208                         uart_add_one_port(&bfin_serial_reg, &bfin_serial_ports[i].port);
1209                 }
1210         }
1211
1212         return 0;
1213 }
1214
1215 static int bfin_serial_remove(struct platform_device *dev)
1216 {
1217         int i;
1218
1219         for (i = 0; i < nr_active_ports; i++) {
1220                 if (bfin_serial_ports[i].port.dev != &dev->dev)
1221                         continue;
1222                 uart_remove_one_port(&bfin_serial_reg, &bfin_serial_ports[i].port);
1223                 bfin_serial_ports[i].port.dev = NULL;
1224 #ifdef CONFIG_SERIAL_BFIN_CTSRTS
1225                 gpio_free(bfin_serial_ports[i].cts_pin);
1226                 gpio_free(bfin_serial_ports[i].rts_pin);
1227 #endif
1228         }
1229
1230         return 0;
1231 }
1232
1233 static struct platform_driver bfin_serial_driver = {
1234         .probe          = bfin_serial_probe,
1235         .remove         = bfin_serial_remove,
1236         .suspend        = bfin_serial_suspend,
1237         .resume         = bfin_serial_resume,
1238         .driver         = {
1239                 .name   = "bfin-uart",
1240                 .owner  = THIS_MODULE,
1241         },
1242 };
1243
1244 static int __init bfin_serial_init(void)
1245 {
1246         int ret;
1247
1248         pr_info("Serial: Blackfin serial driver\n");
1249
1250         bfin_serial_init_ports();
1251
1252         ret = uart_register_driver(&bfin_serial_reg);
1253         if (ret == 0) {
1254                 ret = platform_driver_register(&bfin_serial_driver);
1255                 if (ret) {
1256                         pr_debug("uart register failed\n");
1257                         uart_unregister_driver(&bfin_serial_reg);
1258                 }
1259         }
1260         return ret;
1261 }
1262
1263 static void __exit bfin_serial_exit(void)
1264 {
1265         platform_driver_unregister(&bfin_serial_driver);
1266         uart_unregister_driver(&bfin_serial_reg);
1267 }
1268
1269
1270 module_init(bfin_serial_init);
1271 module_exit(bfin_serial_exit);
1272
1273 MODULE_AUTHOR("Aubrey.Li <aubrey.li@analog.com>");
1274 MODULE_DESCRIPTION("Blackfin generic serial port driver");
1275 MODULE_LICENSE("GPL");
1276 MODULE_ALIAS_CHARDEV_MAJOR(BFIN_SERIAL_MAJOR);
1277 MODULE_ALIAS("platform:bfin-uart");