blob: 984e1c050096729628631fc1f6654019adaff22c [file] [log] [blame]
Bryan Wu2f351742008-04-30 00:52:12 -07001/*
sonic zhangccf68e52009-12-09 12:31:28 -08002 * Blackfin On-Chip Sport Emulated UART Driver
Bryan Wu2f351742008-04-30 00:52:12 -07003 *
sonic zhangccf68e52009-12-09 12:31:28 -08004 * Copyright 2006-2009 Analog Devices Inc.
Bryan Wu2f351742008-04-30 00:52:12 -07005 *
sonic zhangccf68e52009-12-09 12:31:28 -08006 * Enter bugs at http://blackfin.uclinux.org/
Bryan Wu2f351742008-04-30 00:52:12 -07007 *
sonic zhangccf68e52009-12-09 12:31:28 -08008 * Licensed under the GPL-2 or later.
Bryan Wu2f351742008-04-30 00:52:12 -07009 */
10
11/*
12 * This driver and the hardware supported are in term of EE-191 of ADI.
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020013 * http://www.analog.com/static/imported-files/application_notes/EE191.pdf
Bryan Wu2f351742008-04-30 00:52:12 -070014 * This application note describe how to implement a UART on a Sharc DSP,
15 * but this driver is implemented on Blackfin Processor.
sonic zhangccf68e52009-12-09 12:31:28 -080016 * Transmit Frame Sync is not used by this driver to transfer data out.
Bryan Wu2f351742008-04-30 00:52:12 -070017 */
18
sonic zhangccf68e52009-12-09 12:31:28 -080019/* #define DEBUG */
Bryan Wu2f351742008-04-30 00:52:12 -070020
sonic zhangccf68e52009-12-09 12:31:28 -080021#define DRV_NAME "bfin-sport-uart"
22#define DEVICE_NAME "ttySS"
23#define pr_fmt(fmt) DRV_NAME ": " fmt
Bryan Wu2f351742008-04-30 00:52:12 -070024
25#include <linux/module.h>
26#include <linux/ioport.h>
sonic zhangccf68e52009-12-09 12:31:28 -080027#include <linux/io.h>
Bryan Wu2f351742008-04-30 00:52:12 -070028#include <linux/init.h>
29#include <linux/console.h>
30#include <linux/sysrq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Bryan Wu2f351742008-04-30 00:52:12 -070032#include <linux/platform_device.h>
33#include <linux/tty.h>
34#include <linux/tty_flip.h>
35#include <linux/serial_core.h>
Peter Hurley16020b92014-09-02 17:39:18 -040036#include <linux/gpio.h>
Bryan Wu2f351742008-04-30 00:52:12 -070037
Mike Frysinger2ce1efc2010-03-09 12:25:38 -050038#include <asm/bfin_sport.h>
Bryan Wu2f351742008-04-30 00:52:12 -070039#include <asm/delay.h>
40#include <asm/portmux.h>
41
42#include "bfin_sport_uart.h"
43
Bryan Wu2f351742008-04-30 00:52:12 -070044struct sport_uart_port {
45 struct uart_port port;
Bryan Wu2f351742008-04-30 00:52:12 -070046 int err_irq;
sonic zhangccf68e52009-12-09 12:31:28 -080047 unsigned short csize;
48 unsigned short rxmask;
49 unsigned short txmask1;
50 unsigned short txmask2;
51 unsigned char stopb;
52/* unsigned char parib; */
Sonic Zhang1f7d1c82010-03-09 12:25:33 -050053#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
54 int cts_pin;
55 int rts_pin;
56#endif
Bryan Wu2f351742008-04-30 00:52:12 -070057};
58
Sonic Zhang9356c462010-03-09 12:25:37 -050059static int sport_uart_tx_chars(struct sport_uart_port *up);
Bryan Wu2f351742008-04-30 00:52:12 -070060static void sport_stop_tx(struct uart_port *port);
61
62static inline void tx_one_byte(struct sport_uart_port *up, unsigned int value)
63{
sonic zhangccf68e52009-12-09 12:31:28 -080064 pr_debug("%s value:%x, mask1=0x%x, mask2=0x%x\n", __func__, value,
65 up->txmask1, up->txmask2);
66
67 /* Place Start and Stop bits */
Mike Frysinger4328e3e2009-06-11 13:37:11 +010068 __asm__ __volatile__ (
sonic zhangccf68e52009-12-09 12:31:28 -080069 "%[val] <<= 1;"
70 "%[val] = %[val] & %[mask1];"
71 "%[val] = %[val] | %[mask2];"
72 : [val]"+d"(value)
73 : [mask1]"d"(up->txmask1), [mask2]"d"(up->txmask2)
74 : "ASTAT"
Mike Frysinger4328e3e2009-06-11 13:37:11 +010075 );
Harvey Harrison6ef53062009-01-02 13:49:13 +000076 pr_debug("%s value:%x\n", __func__, value);
Bryan Wu2f351742008-04-30 00:52:12 -070077
78 SPORT_PUT_TX(up, value);
79}
80
sonic zhangccf68e52009-12-09 12:31:28 -080081static inline unsigned char rx_one_byte(struct sport_uart_port *up)
Bryan Wu2f351742008-04-30 00:52:12 -070082{
sonic zhangccf68e52009-12-09 12:31:28 -080083 unsigned int value;
84 unsigned char extract;
Mike Frysinger4328e3e2009-06-11 13:37:11 +010085 u32 tmp_mask1, tmp_mask2, tmp_shift, tmp;
Bryan Wu2f351742008-04-30 00:52:12 -070086
sonic zhangccf68e52009-12-09 12:31:28 -080087 if ((up->csize + up->stopb) > 7)
88 value = SPORT_GET_RX32(up);
89 else
90 value = SPORT_GET_RX(up);
Bryan Wu2f351742008-04-30 00:52:12 -070091
sonic zhangccf68e52009-12-09 12:31:28 -080092 pr_debug("%s value:%x, cs=%d, mask=0x%x\n", __func__, value,
93 up->csize, up->rxmask);
94
95 /* Extract data */
Mike Frysinger4328e3e2009-06-11 13:37:11 +010096 __asm__ __volatile__ (
97 "%[extr] = 0;"
sonic zhangccf68e52009-12-09 12:31:28 -080098 "%[mask1] = %[rxmask];"
99 "%[mask2] = 0x0200(Z);"
Mike Frysinger4328e3e2009-06-11 13:37:11 +0100100 "%[shift] = 0;"
101 "LSETUP(.Lloop_s, .Lloop_e) LC0 = %[lc];"
102 ".Lloop_s:"
103 "%[tmp] = extract(%[val], %[mask1].L)(Z);"
104 "%[tmp] <<= %[shift];"
105 "%[extr] = %[extr] | %[tmp];"
106 "%[mask1] = %[mask1] - %[mask2];"
107 ".Lloop_e:"
108 "%[shift] += 1;"
sonic zhangccf68e52009-12-09 12:31:28 -0800109 : [extr]"=&d"(extract), [shift]"=&d"(tmp_shift), [tmp]"=&d"(tmp),
110 [mask1]"=&d"(tmp_mask1), [mask2]"=&d"(tmp_mask2)
111 : [val]"d"(value), [rxmask]"d"(up->rxmask), [lc]"a"(up->csize)
Mike Frysinger4328e3e2009-06-11 13:37:11 +0100112 : "ASTAT", "LB0", "LC0", "LT0"
113 );
Bryan Wu2f351742008-04-30 00:52:12 -0700114
115 pr_debug(" extract:%x\n", extract);
116 return extract;
117}
118
sonic zhangccf68e52009-12-09 12:31:28 -0800119static int sport_uart_setup(struct sport_uart_port *up, int size, int baud_rate)
Bryan Wu2f351742008-04-30 00:52:12 -0700120{
sonic zhangccf68e52009-12-09 12:31:28 -0800121 int tclkdiv, rclkdiv;
122 unsigned int sclk = get_sclk();
Bryan Wu2f351742008-04-30 00:52:12 -0700123
sonic zhangccf68e52009-12-09 12:31:28 -0800124 /* Set TCR1 and TCR2, TFSR is not enabled for uart */
Sonic Zhang33674692010-08-28 16:32:55 -0400125 SPORT_PUT_TCR1(up, (LATFS | ITFS | TFSR | TLSBIT | ITCLK));
sonic zhangccf68e52009-12-09 12:31:28 -0800126 SPORT_PUT_TCR2(up, size + 1);
Harvey Harrison6ef53062009-01-02 13:49:13 +0000127 pr_debug("%s TCR1:%x, TCR2:%x\n", __func__, SPORT_GET_TCR1(up), SPORT_GET_TCR2(up));
Bryan Wu2f351742008-04-30 00:52:12 -0700128
129 /* Set RCR1 and RCR2 */
130 SPORT_PUT_RCR1(up, (RCKFE | LARFS | LRFS | RFSR | IRCLK));
sonic zhangccf68e52009-12-09 12:31:28 -0800131 SPORT_PUT_RCR2(up, (size + 1) * 2 - 1);
Harvey Harrison6ef53062009-01-02 13:49:13 +0000132 pr_debug("%s RCR1:%x, RCR2:%x\n", __func__, SPORT_GET_RCR1(up), SPORT_GET_RCR2(up));
Bryan Wu2f351742008-04-30 00:52:12 -0700133
sonic zhangccf68e52009-12-09 12:31:28 -0800134 tclkdiv = sclk / (2 * baud_rate) - 1;
Sonic Zhang0dd25df2010-10-16 18:22:34 -0400135 /* The actual uart baud rate of devices vary between +/-2%. The sport
136 * RX sample rate should be faster than the double of the worst case,
137 * otherwise, wrong data are received. So, set sport RX clock to be
138 * 3% faster.
139 */
140 rclkdiv = sclk / (2 * baud_rate * 2 * 97 / 100) - 1;
Bryan Wu2f351742008-04-30 00:52:12 -0700141 SPORT_PUT_TCLKDIV(up, tclkdiv);
Bryan Wu2f351742008-04-30 00:52:12 -0700142 SPORT_PUT_RCLKDIV(up, rclkdiv);
143 SSYNC();
sonic zhangccf68e52009-12-09 12:31:28 -0800144 pr_debug("%s sclk:%d, baud_rate:%d, tclkdiv:%d, rclkdiv:%d\n",
145 __func__, sclk, baud_rate, tclkdiv, rclkdiv);
Bryan Wu2f351742008-04-30 00:52:12 -0700146
147 return 0;
148}
149
150static irqreturn_t sport_uart_rx_irq(int irq, void *dev_id)
151{
152 struct sport_uart_port *up = dev_id;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100153 struct tty_port *port = &up->port.state->port;
Bryan Wu2f351742008-04-30 00:52:12 -0700154 unsigned int ch;
155
sonic zhangccf68e52009-12-09 12:31:28 -0800156 spin_lock(&up->port.lock);
157
158 while (SPORT_GET_STAT(up) & RXNE) {
Bryan Wu2f351742008-04-30 00:52:12 -0700159 ch = rx_one_byte(up);
160 up->port.icount.rx++;
161
sonic zhangccf68e52009-12-09 12:31:28 -0800162 if (!uart_handle_sysrq_char(&up->port, ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100163 tty_insert_flip_char(port, ch, TTY_NORMAL);
sonic zhangccf68e52009-12-09 12:31:28 -0800164 }
Bryan Wu2f351742008-04-30 00:52:12 -0700165
sonic zhangccf68e52009-12-09 12:31:28 -0800166 spin_unlock(&up->port.lock);
167
Viresh Kumar88c54a62013-08-19 20:14:11 +0530168 /* XXX this won't deadlock with lowlat? */
169 tty_flip_buffer_push(port);
170
Bryan Wu2f351742008-04-30 00:52:12 -0700171 return IRQ_HANDLED;
172}
173
174static irqreturn_t sport_uart_tx_irq(int irq, void *dev_id)
175{
sonic zhangccf68e52009-12-09 12:31:28 -0800176 struct sport_uart_port *up = dev_id;
177
178 spin_lock(&up->port.lock);
179 sport_uart_tx_chars(up);
180 spin_unlock(&up->port.lock);
Bryan Wu2f351742008-04-30 00:52:12 -0700181
182 return IRQ_HANDLED;
183}
184
185static irqreturn_t sport_uart_err_irq(int irq, void *dev_id)
186{
187 struct sport_uart_port *up = dev_id;
Bryan Wu2f351742008-04-30 00:52:12 -0700188 unsigned int stat = SPORT_GET_STAT(up);
189
sonic zhangccf68e52009-12-09 12:31:28 -0800190 spin_lock(&up->port.lock);
191
Bryan Wu2f351742008-04-30 00:52:12 -0700192 /* Overflow in RX FIFO */
193 if (stat & ROVF) {
194 up->port.icount.overrun++;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100195 tty_insert_flip_char(&up->port.state->port, 0, TTY_OVERRUN);
Bryan Wu2f351742008-04-30 00:52:12 -0700196 SPORT_PUT_STAT(up, ROVF); /* Clear ROVF bit */
197 }
198 /* These should not happen */
199 if (stat & (TOVF | TUVF | RUVF)) {
sonic zhangccf68e52009-12-09 12:31:28 -0800200 pr_err("SPORT Error:%s %s %s\n",
201 (stat & TOVF) ? "TX overflow" : "",
202 (stat & TUVF) ? "TX underflow" : "",
203 (stat & RUVF) ? "RX underflow" : "");
Bryan Wu2f351742008-04-30 00:52:12 -0700204 SPORT_PUT_TCR1(up, SPORT_GET_TCR1(up) & ~TSPEN);
205 SPORT_PUT_RCR1(up, SPORT_GET_RCR1(up) & ~RSPEN);
206 }
207 SSYNC();
208
sonic zhangccf68e52009-12-09 12:31:28 -0800209 spin_unlock(&up->port.lock);
Jiri Slaby92a19f92013-01-03 15:53:03 +0100210 /* XXX we don't push the overrun bit to TTY? */
211
Bryan Wu2f351742008-04-30 00:52:12 -0700212 return IRQ_HANDLED;
213}
214
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500215#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
216static unsigned int sport_get_mctrl(struct uart_port *port)
217{
218 struct sport_uart_port *up = (struct sport_uart_port *)port;
219 if (up->cts_pin < 0)
220 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
221
222 /* CTS PIN is negative assertive. */
223 if (SPORT_UART_GET_CTS(up))
224 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
225 else
226 return TIOCM_DSR | TIOCM_CAR;
227}
228
229static void sport_set_mctrl(struct uart_port *port, unsigned int mctrl)
230{
231 struct sport_uart_port *up = (struct sport_uart_port *)port;
232 if (up->rts_pin < 0)
233 return;
234
235 /* RTS PIN is negative assertive. */
236 if (mctrl & TIOCM_RTS)
237 SPORT_UART_ENABLE_RTS(up);
238 else
239 SPORT_UART_DISABLE_RTS(up);
240}
241
242/*
243 * Handle any change of modem status signal.
244 */
245static irqreturn_t sport_mctrl_cts_int(int irq, void *dev_id)
246{
247 struct sport_uart_port *up = (struct sport_uart_port *)dev_id;
248 unsigned int status;
249
250 status = sport_get_mctrl(&up->port);
251 uart_handle_cts_change(&up->port, status & TIOCM_CTS);
252
253 return IRQ_HANDLED;
254}
255#else
256static unsigned int sport_get_mctrl(struct uart_port *port)
257{
258 pr_debug("%s enter\n", __func__);
259 return TIOCM_CTS | TIOCM_CD | TIOCM_DSR;
260}
261
262static void sport_set_mctrl(struct uart_port *port, unsigned int mctrl)
263{
264 pr_debug("%s enter\n", __func__);
265}
266#endif
267
Bryan Wu2f351742008-04-30 00:52:12 -0700268/* Reqeust IRQ, Setup clock */
269static int sport_startup(struct uart_port *port)
270{
271 struct sport_uart_port *up = (struct sport_uart_port *)port;
sonic zhangccf68e52009-12-09 12:31:28 -0800272 int ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700273
Harvey Harrison6ef53062009-01-02 13:49:13 +0000274 pr_debug("%s enter\n", __func__);
sonic zhangccf68e52009-12-09 12:31:28 -0800275 ret = request_irq(up->port.irq, sport_uart_rx_irq, 0,
276 "SPORT_UART_RX", up);
277 if (ret) {
278 dev_err(port->dev, "unable to request SPORT RX interrupt\n");
279 return ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700280 }
281
sonic zhangccf68e52009-12-09 12:31:28 -0800282 ret = request_irq(up->port.irq+1, sport_uart_tx_irq, 0,
283 "SPORT_UART_TX", up);
284 if (ret) {
285 dev_err(port->dev, "unable to request SPORT TX interrupt\n");
Bryan Wu2f351742008-04-30 00:52:12 -0700286 goto fail1;
287 }
288
sonic zhangccf68e52009-12-09 12:31:28 -0800289 ret = request_irq(up->err_irq, sport_uart_err_irq, 0,
290 "SPORT_UART_STATUS", up);
291 if (ret) {
292 dev_err(port->dev, "unable to request SPORT status interrupt\n");
Bryan Wu2f351742008-04-30 00:52:12 -0700293 goto fail2;
294 }
295
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500296#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
297 if (up->cts_pin >= 0) {
298 if (request_irq(gpio_to_irq(up->cts_pin),
299 sport_mctrl_cts_int,
300 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING |
Yong Zhang9cfb5c02011-09-22 16:59:15 +0800301 0, "BFIN_SPORT_UART_CTS", up)) {
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500302 up->cts_pin = -1;
Joe Perches85ee7a12011-04-23 20:38:19 -0700303 dev_info(port->dev, "Unable to attach BlackFin UART over SPORT CTS interrupt. So, disable it.\n");
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500304 }
305 }
Sonic Zhangdc8f3702011-12-06 15:16:34 +0800306 if (up->rts_pin >= 0) {
307 if (gpio_request(up->rts_pin, DRV_NAME)) {
308 dev_info(port->dev, "fail to request RTS PIN at GPIO_%d\n", up->rts_pin);
309 up->rts_pin = -1;
310 } else
311 gpio_direction_output(up->rts_pin, 0);
312 }
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500313#endif
314
Bryan Wu2f351742008-04-30 00:52:12 -0700315 return 0;
sonic zhangccf68e52009-12-09 12:31:28 -0800316 fail2:
317 free_irq(up->port.irq+1, up);
318 fail1:
319 free_irq(up->port.irq, up);
Bryan Wu2f351742008-04-30 00:52:12 -0700320
sonic zhangccf68e52009-12-09 12:31:28 -0800321 return ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700322}
323
Sonic Zhang9356c462010-03-09 12:25:37 -0500324/*
325 * sport_uart_tx_chars
326 *
327 * ret 1 means need to enable sport.
328 * ret 0 means do nothing.
329 */
330static int sport_uart_tx_chars(struct sport_uart_port *up)
Bryan Wu2f351742008-04-30 00:52:12 -0700331{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700332 struct circ_buf *xmit = &up->port.state->xmit;
Bryan Wu2f351742008-04-30 00:52:12 -0700333
334 if (SPORT_GET_STAT(up) & TXF)
Sonic Zhang9356c462010-03-09 12:25:37 -0500335 return 0;
Bryan Wu2f351742008-04-30 00:52:12 -0700336
337 if (up->port.x_char) {
338 tx_one_byte(up, up->port.x_char);
339 up->port.icount.tx++;
340 up->port.x_char = 0;
Sonic Zhang9356c462010-03-09 12:25:37 -0500341 return 1;
Bryan Wu2f351742008-04-30 00:52:12 -0700342 }
343
344 if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) {
Sonic Zhang3f3a9782010-03-09 12:25:29 -0500345 /* The waiting loop to stop SPORT TX from TX interrupt is
346 * too long. This may block SPORT RX interrupts and cause
347 * RX FIFO overflow. So, do stop sport TX only after the last
348 * char in TX FIFO is moved into the shift register.
349 */
350 if (SPORT_GET_STAT(up) & TXHRE)
351 sport_stop_tx(&up->port);
Sonic Zhang9356c462010-03-09 12:25:37 -0500352 return 0;
Bryan Wu2f351742008-04-30 00:52:12 -0700353 }
354
355 while(!(SPORT_GET_STAT(up) & TXF) && !uart_circ_empty(xmit)) {
356 tx_one_byte(up, xmit->buf[xmit->tail]);
357 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE -1);
358 up->port.icount.tx++;
359 }
360
361 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
362 uart_write_wakeup(&up->port);
Sonic Zhang9356c462010-03-09 12:25:37 -0500363
364 return 1;
Bryan Wu2f351742008-04-30 00:52:12 -0700365}
366
367static unsigned int sport_tx_empty(struct uart_port *port)
368{
369 struct sport_uart_port *up = (struct sport_uart_port *)port;
370 unsigned int stat;
371
372 stat = SPORT_GET_STAT(up);
Harvey Harrison6ef53062009-01-02 13:49:13 +0000373 pr_debug("%s stat:%04x\n", __func__, stat);
Bryan Wu2f351742008-04-30 00:52:12 -0700374 if (stat & TXHRE) {
375 return TIOCSER_TEMT;
376 } else
377 return 0;
378}
379
Bryan Wu2f351742008-04-30 00:52:12 -0700380static void sport_stop_tx(struct uart_port *port)
381{
382 struct sport_uart_port *up = (struct sport_uart_port *)port;
Bryan Wu2f351742008-04-30 00:52:12 -0700383
Harvey Harrison6ef53062009-01-02 13:49:13 +0000384 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700385
Sonic Zhang9356c462010-03-09 12:25:37 -0500386 if (!(SPORT_GET_TCR1(up) & TSPEN))
387 return;
388
Bryan Wu2f351742008-04-30 00:52:12 -0700389 /* Although the hold register is empty, last byte is still in shift
sonic zhangccf68e52009-12-09 12:31:28 -0800390 * register and not sent out yet. So, put a dummy data into TX FIFO.
391 * Then, sport tx stops when last byte is shift out and the dummy
392 * data is moved into the shift register.
393 */
394 SPORT_PUT_TX(up, 0xffff);
395 while (!(SPORT_GET_STAT(up) & TXHRE))
396 cpu_relax();
Bryan Wu2f351742008-04-30 00:52:12 -0700397
398 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) & ~TSPEN));
399 SSYNC();
400
401 return;
402}
403
404static void sport_start_tx(struct uart_port *port)
405{
406 struct sport_uart_port *up = (struct sport_uart_port *)port;
407
Harvey Harrison6ef53062009-01-02 13:49:13 +0000408 pr_debug("%s enter\n", __func__);
sonic zhangccf68e52009-12-09 12:31:28 -0800409
Bryan Wu2f351742008-04-30 00:52:12 -0700410 /* Write data into SPORT FIFO before enable SPROT to transmit */
Sonic Zhang9356c462010-03-09 12:25:37 -0500411 if (sport_uart_tx_chars(up)) {
412 /* Enable transmit, then an interrupt will generated */
413 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) | TSPEN));
414 SSYNC();
415 }
Bryan Wu2f351742008-04-30 00:52:12 -0700416
Harvey Harrison6ef53062009-01-02 13:49:13 +0000417 pr_debug("%s exit\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700418}
419
420static void sport_stop_rx(struct uart_port *port)
421{
422 struct sport_uart_port *up = (struct sport_uart_port *)port;
423
Harvey Harrison6ef53062009-01-02 13:49:13 +0000424 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700425 /* Disable sport to stop rx */
426 SPORT_PUT_RCR1(up, (SPORT_GET_RCR1(up) & ~RSPEN));
427 SSYNC();
428}
429
Bryan Wu2f351742008-04-30 00:52:12 -0700430static void sport_break_ctl(struct uart_port *port, int break_state)
431{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000432 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700433}
434
435static void sport_shutdown(struct uart_port *port)
436{
437 struct sport_uart_port *up = (struct sport_uart_port *)port;
438
sonic zhangccf68e52009-12-09 12:31:28 -0800439 dev_dbg(port->dev, "%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700440
441 /* Disable sport */
442 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) & ~TSPEN));
443 SPORT_PUT_RCR1(up, (SPORT_GET_RCR1(up) & ~RSPEN));
444 SSYNC();
445
sonic zhangccf68e52009-12-09 12:31:28 -0800446 free_irq(up->port.irq, up);
447 free_irq(up->port.irq+1, up);
Bryan Wu2f351742008-04-30 00:52:12 -0700448 free_irq(up->err_irq, up);
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500449#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
450 if (up->cts_pin >= 0)
451 free_irq(gpio_to_irq(up->cts_pin), up);
Sonic Zhangdc8f3702011-12-06 15:16:34 +0800452 if (up->rts_pin >= 0)
453 gpio_free(up->rts_pin);
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500454#endif
Bryan Wu2f351742008-04-30 00:52:12 -0700455}
456
Bryan Wu2f351742008-04-30 00:52:12 -0700457static const char *sport_type(struct uart_port *port)
458{
459 struct sport_uart_port *up = (struct sport_uart_port *)port;
460
Harvey Harrison6ef53062009-01-02 13:49:13 +0000461 pr_debug("%s enter\n", __func__);
sonic zhangccf68e52009-12-09 12:31:28 -0800462 return up->port.type == PORT_BFIN_SPORT ? "BFIN-SPORT-UART" : NULL;
Bryan Wu2f351742008-04-30 00:52:12 -0700463}
464
465static void sport_release_port(struct uart_port *port)
466{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000467 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700468}
469
470static int sport_request_port(struct uart_port *port)
471{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000472 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700473 return 0;
474}
475
476static void sport_config_port(struct uart_port *port, int flags)
477{
478 struct sport_uart_port *up = (struct sport_uart_port *)port;
479
Harvey Harrison6ef53062009-01-02 13:49:13 +0000480 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700481 up->port.type = PORT_BFIN_SPORT;
482}
483
484static int sport_verify_port(struct uart_port *port, struct serial_struct *ser)
485{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000486 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700487 return 0;
488}
489
sonic zhangccf68e52009-12-09 12:31:28 -0800490static void sport_set_termios(struct uart_port *port,
491 struct ktermios *termios, struct ktermios *old)
492{
493 struct sport_uart_port *up = (struct sport_uart_port *)port;
494 unsigned long flags;
495 int i;
496
497 pr_debug("%s enter, c_cflag:%08x\n", __func__, termios->c_cflag);
498
Peter Hurley8bd67d7d22014-06-16 09:17:10 -0400499#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
500 if (old == NULL && up->cts_pin != -1)
501 termios->c_cflag |= CRTSCTS;
502 else if (up->cts_pin == -1)
503 termios->c_cflag &= ~CRTSCTS;
504#endif
505
sonic zhangccf68e52009-12-09 12:31:28 -0800506 switch (termios->c_cflag & CSIZE) {
507 case CS8:
508 up->csize = 8;
509 break;
510 case CS7:
511 up->csize = 7;
512 break;
513 case CS6:
514 up->csize = 6;
515 break;
516 case CS5:
517 up->csize = 5;
518 break;
519 default:
Joe Perchese620e542014-11-09 22:46:35 -0800520 pr_warn("requested word length not supported\n");
521 break;
sonic zhangccf68e52009-12-09 12:31:28 -0800522 }
523
524 if (termios->c_cflag & CSTOPB) {
525 up->stopb = 1;
526 }
527 if (termios->c_cflag & PARENB) {
Joe Perchese620e542014-11-09 22:46:35 -0800528 pr_warn("PAREN bit is not supported yet\n");
sonic zhangccf68e52009-12-09 12:31:28 -0800529 /* up->parib = 1; */
530 }
531
Sonic Zhang9498dc92010-03-09 12:25:34 -0500532 spin_lock_irqsave(&up->port.lock, flags);
533
Mike Frysinger60bd9402010-03-09 12:25:36 -0500534 port->read_status_mask = 0;
sonic zhangccf68e52009-12-09 12:31:28 -0800535
536 /*
537 * Characters to ignore
538 */
539 port->ignore_status_mask = 0;
sonic zhangccf68e52009-12-09 12:31:28 -0800540
541 /* RX extract mask */
542 up->rxmask = 0x01 | (((up->csize + up->stopb) * 2 - 1) << 0x8);
543 /* TX masks, 8 bit data and 1 bit stop for example:
544 * mask1 = b#0111111110
545 * mask2 = b#1000000000
546 */
547 for (i = 0, up->txmask1 = 0; i < up->csize; i++)
548 up->txmask1 |= (1<<i);
549 up->txmask2 = (1<<i);
550 if (up->stopb) {
551 ++i;
552 up->txmask2 |= (1<<i);
553 }
554 up->txmask1 <<= 1;
555 up->txmask2 <<= 1;
556 /* uart baud rate */
557 port->uartclk = uart_get_baud_rate(port, termios, old, 0, get_sclk()/16);
558
sonic zhangccf68e52009-12-09 12:31:28 -0800559 /* Disable UART */
560 SPORT_PUT_TCR1(up, SPORT_GET_TCR1(up) & ~TSPEN);
561 SPORT_PUT_RCR1(up, SPORT_GET_RCR1(up) & ~RSPEN);
562
563 sport_uart_setup(up, up->csize + up->stopb, port->uartclk);
564
565 /* driver TX line high after config, one dummy data is
566 * necessary to stop sport after shift one byte
567 */
568 SPORT_PUT_TX(up, 0xffff);
569 SPORT_PUT_TX(up, 0xffff);
570 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) | TSPEN));
571 SSYNC();
572 while (!(SPORT_GET_STAT(up) & TXHRE))
573 cpu_relax();
574 SPORT_PUT_TCR1(up, SPORT_GET_TCR1(up) & ~TSPEN);
575 SSYNC();
576
577 /* Port speed changed, update the per-port timeout. */
578 uart_update_timeout(port, termios->c_cflag, port->uartclk);
579
580 /* Enable sport rx */
581 SPORT_PUT_RCR1(up, SPORT_GET_RCR1(up) | RSPEN);
582 SSYNC();
583
584 spin_unlock_irqrestore(&up->port.lock, flags);
585}
586
Bryan Wu2f351742008-04-30 00:52:12 -0700587struct uart_ops sport_uart_ops = {
588 .tx_empty = sport_tx_empty,
589 .set_mctrl = sport_set_mctrl,
590 .get_mctrl = sport_get_mctrl,
591 .stop_tx = sport_stop_tx,
592 .start_tx = sport_start_tx,
593 .stop_rx = sport_stop_rx,
Bryan Wu2f351742008-04-30 00:52:12 -0700594 .break_ctl = sport_break_ctl,
595 .startup = sport_startup,
596 .shutdown = sport_shutdown,
597 .set_termios = sport_set_termios,
598 .type = sport_type,
599 .release_port = sport_release_port,
600 .request_port = sport_request_port,
601 .config_port = sport_config_port,
602 .verify_port = sport_verify_port,
603};
604
sonic zhangccf68e52009-12-09 12:31:28 -0800605#define BFIN_SPORT_UART_MAX_PORTS 4
606
607static struct sport_uart_port *bfin_sport_uart_ports[BFIN_SPORT_UART_MAX_PORTS];
608
609#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
Sonic Zhangb59588a2010-03-09 12:25:32 -0500610#define CLASS_BFIN_SPORT_CONSOLE "bfin-sport-console"
611
sonic zhangccf68e52009-12-09 12:31:28 -0800612static int __init
613sport_uart_console_setup(struct console *co, char *options)
614{
615 struct sport_uart_port *up;
616 int baud = 57600;
617 int bits = 8;
618 int parity = 'n';
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500619# ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
620 int flow = 'r';
621# else
sonic zhangccf68e52009-12-09 12:31:28 -0800622 int flow = 'n';
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500623# endif
sonic zhangccf68e52009-12-09 12:31:28 -0800624
625 /* Check whether an invalid uart number has been specified */
626 if (co->index < 0 || co->index >= BFIN_SPORT_UART_MAX_PORTS)
627 return -ENODEV;
628
629 up = bfin_sport_uart_ports[co->index];
630 if (!up)
631 return -ENODEV;
632
633 if (options)
634 uart_parse_options(options, &baud, &parity, &bits, &flow);
635
636 return uart_set_options(&up->port, co, baud, parity, bits, flow);
637}
638
639static void sport_uart_console_putchar(struct uart_port *port, int ch)
640{
641 struct sport_uart_port *up = (struct sport_uart_port *)port;
642
643 while (SPORT_GET_STAT(up) & TXF)
644 barrier();
645
646 tx_one_byte(up, ch);
647}
648
649/*
650 * Interrupts are disabled on entering
651 */
652static void
653sport_uart_console_write(struct console *co, const char *s, unsigned int count)
654{
655 struct sport_uart_port *up = bfin_sport_uart_ports[co->index];
656 unsigned long flags;
657
658 spin_lock_irqsave(&up->port.lock, flags);
659
660 if (SPORT_GET_TCR1(up) & TSPEN)
661 uart_console_write(&up->port, s, count, sport_uart_console_putchar);
662 else {
663 /* dummy data to start sport */
664 while (SPORT_GET_STAT(up) & TXF)
665 barrier();
666 SPORT_PUT_TX(up, 0xffff);
667 /* Enable transmit, then an interrupt will generated */
668 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) | TSPEN));
669 SSYNC();
670
671 uart_console_write(&up->port, s, count, sport_uart_console_putchar);
672
673 /* Although the hold register is empty, last byte is still in shift
674 * register and not sent out yet. So, put a dummy data into TX FIFO.
675 * Then, sport tx stops when last byte is shift out and the dummy
676 * data is moved into the shift register.
677 */
678 while (SPORT_GET_STAT(up) & TXF)
679 barrier();
680 SPORT_PUT_TX(up, 0xffff);
681 while (!(SPORT_GET_STAT(up) & TXHRE))
682 barrier();
683
684 /* Stop sport tx transfer */
685 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) & ~TSPEN));
686 SSYNC();
Bryan Wu2f351742008-04-30 00:52:12 -0700687 }
sonic zhangccf68e52009-12-09 12:31:28 -0800688
689 spin_unlock_irqrestore(&up->port.lock, flags);
690}
691
692static struct uart_driver sport_uart_reg;
693
694static struct console sport_uart_console = {
695 .name = DEVICE_NAME,
696 .write = sport_uart_console_write,
697 .device = uart_console_device,
698 .setup = sport_uart_console_setup,
699 .flags = CON_PRINTBUFFER,
700 .index = -1,
701 .data = &sport_uart_reg,
Bryan Wu2f351742008-04-30 00:52:12 -0700702};
703
sonic zhangccf68e52009-12-09 12:31:28 -0800704#define SPORT_UART_CONSOLE (&sport_uart_console)
705#else
706#define SPORT_UART_CONSOLE NULL
707#endif /* CONFIG_SERIAL_BFIN_SPORT_CONSOLE */
708
709
Bryan Wu2f351742008-04-30 00:52:12 -0700710static struct uart_driver sport_uart_reg = {
711 .owner = THIS_MODULE,
sonic zhangccf68e52009-12-09 12:31:28 -0800712 .driver_name = DRV_NAME,
713 .dev_name = DEVICE_NAME,
Bryan Wu2f351742008-04-30 00:52:12 -0700714 .major = 204,
715 .minor = 84,
sonic zhangccf68e52009-12-09 12:31:28 -0800716 .nr = BFIN_SPORT_UART_MAX_PORTS,
717 .cons = SPORT_UART_CONSOLE,
Bryan Wu2f351742008-04-30 00:52:12 -0700718};
719
sonic zhangccf68e52009-12-09 12:31:28 -0800720#ifdef CONFIG_PM
721static int sport_uart_suspend(struct device *dev)
Bryan Wu2f351742008-04-30 00:52:12 -0700722{
sonic zhangccf68e52009-12-09 12:31:28 -0800723 struct sport_uart_port *sport = dev_get_drvdata(dev);
Bryan Wu2f351742008-04-30 00:52:12 -0700724
sonic zhangccf68e52009-12-09 12:31:28 -0800725 dev_dbg(dev, "%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700726 if (sport)
727 uart_suspend_port(&sport_uart_reg, &sport->port);
728
729 return 0;
730}
731
sonic zhangccf68e52009-12-09 12:31:28 -0800732static int sport_uart_resume(struct device *dev)
Bryan Wu2f351742008-04-30 00:52:12 -0700733{
sonic zhangccf68e52009-12-09 12:31:28 -0800734 struct sport_uart_port *sport = dev_get_drvdata(dev);
Bryan Wu2f351742008-04-30 00:52:12 -0700735
sonic zhangccf68e52009-12-09 12:31:28 -0800736 dev_dbg(dev, "%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700737 if (sport)
738 uart_resume_port(&sport_uart_reg, &sport->port);
739
740 return 0;
741}
742
sonic zhangccf68e52009-12-09 12:31:28 -0800743static struct dev_pm_ops bfin_sport_uart_dev_pm_ops = {
744 .suspend = sport_uart_suspend,
745 .resume = sport_uart_resume,
746};
747#endif
Bryan Wu2f351742008-04-30 00:52:12 -0700748
Bill Pemberton9671f092012-11-19 13:21:50 -0500749static int sport_uart_probe(struct platform_device *pdev)
sonic zhangccf68e52009-12-09 12:31:28 -0800750{
751 struct resource *res;
752 struct sport_uart_port *sport;
753 int ret = 0;
754
755 dev_dbg(&pdev->dev, "%s enter\n", __func__);
756
757 if (pdev->id < 0 || pdev->id >= BFIN_SPORT_UART_MAX_PORTS) {
758 dev_err(&pdev->dev, "Wrong sport uart platform device id.\n");
759 return -ENOENT;
760 }
761
762 if (bfin_sport_uart_ports[pdev->id] == NULL) {
763 bfin_sport_uart_ports[pdev->id] =
Sonic Zhangf4d10ca2010-03-09 12:25:35 -0500764 kzalloc(sizeof(struct sport_uart_port), GFP_KERNEL);
sonic zhangccf68e52009-12-09 12:31:28 -0800765 sport = bfin_sport_uart_ports[pdev->id];
766 if (!sport) {
767 dev_err(&pdev->dev,
Sonic Zhangf4d10ca2010-03-09 12:25:35 -0500768 "Fail to malloc sport_uart_port\n");
sonic zhangccf68e52009-12-09 12:31:28 -0800769 return -ENOMEM;
770 }
771
Jingoo Hanaaba1052013-09-09 14:09:20 +0900772 ret = peripheral_request_list(dev_get_platdata(&pdev->dev),
773 DRV_NAME);
sonic zhangccf68e52009-12-09 12:31:28 -0800774 if (ret) {
775 dev_err(&pdev->dev,
776 "Fail to request SPORT peripherals\n");
777 goto out_error_free_mem;
778 }
779
780 spin_lock_init(&sport->port.lock);
781 sport->port.fifosize = SPORT_TX_FIFO_SIZE,
782 sport->port.ops = &sport_uart_ops;
783 sport->port.line = pdev->id;
784 sport->port.iotype = UPIO_MEM;
785 sport->port.flags = UPF_BOOT_AUTOCONF;
786
787 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
788 if (res == NULL) {
789 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
790 ret = -ENOENT;
791 goto out_error_free_peripherals;
792 }
793
Tobias Klausere1144742010-05-11 09:10:23 +0200794 sport->port.membase = ioremap(res->start, resource_size(res));
sonic zhangccf68e52009-12-09 12:31:28 -0800795 if (!sport->port.membase) {
796 dev_err(&pdev->dev, "Cannot map sport IO\n");
797 ret = -ENXIO;
798 goto out_error_free_peripherals;
799 }
Sonic Zhange8126b32010-03-09 12:25:31 -0500800 sport->port.mapbase = res->start;
sonic zhangccf68e52009-12-09 12:31:28 -0800801
802 sport->port.irq = platform_get_irq(pdev, 0);
Vasiliy Kulikov940f3be2011-01-17 13:08:52 +0300803 if ((int)sport->port.irq < 0) {
sonic zhangccf68e52009-12-09 12:31:28 -0800804 dev_err(&pdev->dev, "No sport RX/TX IRQ specified\n");
805 ret = -ENOENT;
806 goto out_error_unmap;
807 }
808
809 sport->err_irq = platform_get_irq(pdev, 1);
810 if (sport->err_irq < 0) {
811 dev_err(&pdev->dev, "No sport status IRQ specified\n");
812 ret = -ENOENT;
813 goto out_error_unmap;
814 }
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500815#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
816 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
817 if (res == NULL)
818 sport->cts_pin = -1;
Peter Hurley8bd67d7d22014-06-16 09:17:10 -0400819 else
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500820 sport->cts_pin = res->start;
821
822 res = platform_get_resource(pdev, IORESOURCE_IO, 1);
823 if (res == NULL)
824 sport->rts_pin = -1;
825 else
826 sport->rts_pin = res->start;
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500827#endif
sonic zhangccf68e52009-12-09 12:31:28 -0800828 }
829
830#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
831 if (!is_early_platform_device(pdev)) {
832#endif
833 sport = bfin_sport_uart_ports[pdev->id];
834 sport->port.dev = &pdev->dev;
835 dev_set_drvdata(&pdev->dev, sport);
836 ret = uart_add_one_port(&sport_uart_reg, &sport->port);
837#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
838 }
839#endif
840 if (!ret)
841 return 0;
842
843 if (sport) {
844out_error_unmap:
845 iounmap(sport->port.membase);
846out_error_free_peripherals:
Jingoo Hanaaba1052013-09-09 14:09:20 +0900847 peripheral_free_list(dev_get_platdata(&pdev->dev));
sonic zhangccf68e52009-12-09 12:31:28 -0800848out_error_free_mem:
849 kfree(sport);
850 bfin_sport_uart_ports[pdev->id] = NULL;
851 }
852
853 return ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700854}
855
Bill Pembertonae8d8a12012-11-19 13:26:18 -0500856static int sport_uart_remove(struct platform_device *pdev)
Bryan Wu2f351742008-04-30 00:52:12 -0700857{
sonic zhangccf68e52009-12-09 12:31:28 -0800858 struct sport_uart_port *sport = platform_get_drvdata(pdev);
Bryan Wu2f351742008-04-30 00:52:12 -0700859
sonic zhangccf68e52009-12-09 12:31:28 -0800860 dev_dbg(&pdev->dev, "%s enter\n", __func__);
861 dev_set_drvdata(&pdev->dev, NULL);
Bryan Wu2f351742008-04-30 00:52:12 -0700862
sonic zhangccf68e52009-12-09 12:31:28 -0800863 if (sport) {
Bryan Wu2f351742008-04-30 00:52:12 -0700864 uart_remove_one_port(&sport_uart_reg, &sport->port);
sonic zhangccf68e52009-12-09 12:31:28 -0800865 iounmap(sport->port.membase);
Jingoo Hanaaba1052013-09-09 14:09:20 +0900866 peripheral_free_list(dev_get_platdata(&pdev->dev));
sonic zhangccf68e52009-12-09 12:31:28 -0800867 kfree(sport);
868 bfin_sport_uart_ports[pdev->id] = NULL;
869 }
Bryan Wu2f351742008-04-30 00:52:12 -0700870
871 return 0;
872}
873
874static struct platform_driver sport_uart_driver = {
875 .probe = sport_uart_probe,
Bill Pemberton2d47b712012-11-19 13:21:34 -0500876 .remove = sport_uart_remove,
Bryan Wu2f351742008-04-30 00:52:12 -0700877 .driver = {
878 .name = DRV_NAME,
sonic zhangccf68e52009-12-09 12:31:28 -0800879#ifdef CONFIG_PM
880 .pm = &bfin_sport_uart_dev_pm_ops,
881#endif
Bryan Wu2f351742008-04-30 00:52:12 -0700882 },
883};
884
sonic zhangccf68e52009-12-09 12:31:28 -0800885#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
Sachin Kamat20246fd2013-08-08 17:10:50 +0530886static struct early_platform_driver early_sport_uart_driver __initdata = {
Sonic Zhangb59588a2010-03-09 12:25:32 -0500887 .class_str = CLASS_BFIN_SPORT_CONSOLE,
sonic zhangccf68e52009-12-09 12:31:28 -0800888 .pdrv = &sport_uart_driver,
889 .requested_id = EARLY_PLATFORM_ID_UNSET,
890};
891
892static int __init sport_uart_rs_console_init(void)
893{
894 early_platform_driver_register(&early_sport_uart_driver, DRV_NAME);
895
Sonic Zhangb59588a2010-03-09 12:25:32 -0500896 early_platform_driver_probe(CLASS_BFIN_SPORT_CONSOLE,
897 BFIN_SPORT_UART_MAX_PORTS, 0);
sonic zhangccf68e52009-12-09 12:31:28 -0800898
899 register_console(&sport_uart_console);
900
901 return 0;
902}
903console_initcall(sport_uart_rs_console_init);
904#endif
905
Bryan Wu2f351742008-04-30 00:52:12 -0700906static int __init sport_uart_init(void)
907{
908 int ret;
909
Sonic Zhange8126b32010-03-09 12:25:31 -0500910 pr_info("Blackfin uart over sport driver\n");
sonic zhangccf68e52009-12-09 12:31:28 -0800911
Bryan Wu2f351742008-04-30 00:52:12 -0700912 ret = uart_register_driver(&sport_uart_reg);
sonic zhangccf68e52009-12-09 12:31:28 -0800913 if (ret) {
914 pr_err("failed to register %s:%d\n",
Bryan Wu2f351742008-04-30 00:52:12 -0700915 sport_uart_reg.driver_name, ret);
916 return ret;
917 }
918
919 ret = platform_driver_register(&sport_uart_driver);
sonic zhangccf68e52009-12-09 12:31:28 -0800920 if (ret) {
921 pr_err("failed to register sport uart driver:%d\n", ret);
Bryan Wu2f351742008-04-30 00:52:12 -0700922 uart_unregister_driver(&sport_uart_reg);
923 }
924
Bryan Wu2f351742008-04-30 00:52:12 -0700925 return ret;
926}
sonic zhangccf68e52009-12-09 12:31:28 -0800927module_init(sport_uart_init);
Bryan Wu2f351742008-04-30 00:52:12 -0700928
929static void __exit sport_uart_exit(void)
930{
Bryan Wu2f351742008-04-30 00:52:12 -0700931 platform_driver_unregister(&sport_uart_driver);
932 uart_unregister_driver(&sport_uart_reg);
933}
Bryan Wu2f351742008-04-30 00:52:12 -0700934module_exit(sport_uart_exit);
935
sonic zhangccf68e52009-12-09 12:31:28 -0800936MODULE_AUTHOR("Sonic Zhang, Roy Huang");
937MODULE_DESCRIPTION("Blackfin serial over SPORT driver");
Bryan Wu2f351742008-04-30 00:52:12 -0700938MODULE_LICENSE("GPL");