blob: e4d3ac2e8992f952c57a142e7dd63c7fb723c508 [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>
36
Mike Frysinger2ce1efc2010-03-09 12:25:38 -050037#include <asm/bfin_sport.h>
Bryan Wu2f351742008-04-30 00:52:12 -070038#include <asm/delay.h>
39#include <asm/portmux.h>
40
41#include "bfin_sport_uart.h"
42
Bryan Wu2f351742008-04-30 00:52:12 -070043struct sport_uart_port {
44 struct uart_port port;
Bryan Wu2f351742008-04-30 00:52:12 -070045 int err_irq;
sonic zhangccf68e52009-12-09 12:31:28 -080046 unsigned short csize;
47 unsigned short rxmask;
48 unsigned short txmask1;
49 unsigned short txmask2;
50 unsigned char stopb;
51/* unsigned char parib; */
Sonic Zhang1f7d1c82010-03-09 12:25:33 -050052#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
53 int cts_pin;
54 int rts_pin;
55#endif
Bryan Wu2f351742008-04-30 00:52:12 -070056};
57
Sonic Zhang9356c462010-03-09 12:25:37 -050058static int sport_uart_tx_chars(struct sport_uart_port *up);
Bryan Wu2f351742008-04-30 00:52:12 -070059static void sport_stop_tx(struct uart_port *port);
60
61static inline void tx_one_byte(struct sport_uart_port *up, unsigned int value)
62{
sonic zhangccf68e52009-12-09 12:31:28 -080063 pr_debug("%s value:%x, mask1=0x%x, mask2=0x%x\n", __func__, value,
64 up->txmask1, up->txmask2);
65
66 /* Place Start and Stop bits */
Mike Frysinger4328e3e2009-06-11 13:37:11 +010067 __asm__ __volatile__ (
sonic zhangccf68e52009-12-09 12:31:28 -080068 "%[val] <<= 1;"
69 "%[val] = %[val] & %[mask1];"
70 "%[val] = %[val] | %[mask2];"
71 : [val]"+d"(value)
72 : [mask1]"d"(up->txmask1), [mask2]"d"(up->txmask2)
73 : "ASTAT"
Mike Frysinger4328e3e2009-06-11 13:37:11 +010074 );
Harvey Harrison6ef53062009-01-02 13:49:13 +000075 pr_debug("%s value:%x\n", __func__, value);
Bryan Wu2f351742008-04-30 00:52:12 -070076
77 SPORT_PUT_TX(up, value);
78}
79
sonic zhangccf68e52009-12-09 12:31:28 -080080static inline unsigned char rx_one_byte(struct sport_uart_port *up)
Bryan Wu2f351742008-04-30 00:52:12 -070081{
sonic zhangccf68e52009-12-09 12:31:28 -080082 unsigned int value;
83 unsigned char extract;
Mike Frysinger4328e3e2009-06-11 13:37:11 +010084 u32 tmp_mask1, tmp_mask2, tmp_shift, tmp;
Bryan Wu2f351742008-04-30 00:52:12 -070085
sonic zhangccf68e52009-12-09 12:31:28 -080086 if ((up->csize + up->stopb) > 7)
87 value = SPORT_GET_RX32(up);
88 else
89 value = SPORT_GET_RX(up);
Bryan Wu2f351742008-04-30 00:52:12 -070090
sonic zhangccf68e52009-12-09 12:31:28 -080091 pr_debug("%s value:%x, cs=%d, mask=0x%x\n", __func__, value,
92 up->csize, up->rxmask);
93
94 /* Extract data */
Mike Frysinger4328e3e2009-06-11 13:37:11 +010095 __asm__ __volatile__ (
96 "%[extr] = 0;"
sonic zhangccf68e52009-12-09 12:31:28 -080097 "%[mask1] = %[rxmask];"
98 "%[mask2] = 0x0200(Z);"
Mike Frysinger4328e3e2009-06-11 13:37:11 +010099 "%[shift] = 0;"
100 "LSETUP(.Lloop_s, .Lloop_e) LC0 = %[lc];"
101 ".Lloop_s:"
102 "%[tmp] = extract(%[val], %[mask1].L)(Z);"
103 "%[tmp] <<= %[shift];"
104 "%[extr] = %[extr] | %[tmp];"
105 "%[mask1] = %[mask1] - %[mask2];"
106 ".Lloop_e:"
107 "%[shift] += 1;"
sonic zhangccf68e52009-12-09 12:31:28 -0800108 : [extr]"=&d"(extract), [shift]"=&d"(tmp_shift), [tmp]"=&d"(tmp),
109 [mask1]"=&d"(tmp_mask1), [mask2]"=&d"(tmp_mask2)
110 : [val]"d"(value), [rxmask]"d"(up->rxmask), [lc]"a"(up->csize)
Mike Frysinger4328e3e2009-06-11 13:37:11 +0100111 : "ASTAT", "LB0", "LC0", "LT0"
112 );
Bryan Wu2f351742008-04-30 00:52:12 -0700113
114 pr_debug(" extract:%x\n", extract);
115 return extract;
116}
117
sonic zhangccf68e52009-12-09 12:31:28 -0800118static int sport_uart_setup(struct sport_uart_port *up, int size, int baud_rate)
Bryan Wu2f351742008-04-30 00:52:12 -0700119{
sonic zhangccf68e52009-12-09 12:31:28 -0800120 int tclkdiv, rclkdiv;
121 unsigned int sclk = get_sclk();
Bryan Wu2f351742008-04-30 00:52:12 -0700122
sonic zhangccf68e52009-12-09 12:31:28 -0800123 /* Set TCR1 and TCR2, TFSR is not enabled for uart */
Sonic Zhang33674692010-08-28 16:32:55 -0400124 SPORT_PUT_TCR1(up, (LATFS | ITFS | TFSR | TLSBIT | ITCLK));
sonic zhangccf68e52009-12-09 12:31:28 -0800125 SPORT_PUT_TCR2(up, size + 1);
Harvey Harrison6ef53062009-01-02 13:49:13 +0000126 pr_debug("%s TCR1:%x, TCR2:%x\n", __func__, SPORT_GET_TCR1(up), SPORT_GET_TCR2(up));
Bryan Wu2f351742008-04-30 00:52:12 -0700127
128 /* Set RCR1 and RCR2 */
129 SPORT_PUT_RCR1(up, (RCKFE | LARFS | LRFS | RFSR | IRCLK));
sonic zhangccf68e52009-12-09 12:31:28 -0800130 SPORT_PUT_RCR2(up, (size + 1) * 2 - 1);
Harvey Harrison6ef53062009-01-02 13:49:13 +0000131 pr_debug("%s RCR1:%x, RCR2:%x\n", __func__, SPORT_GET_RCR1(up), SPORT_GET_RCR2(up));
Bryan Wu2f351742008-04-30 00:52:12 -0700132
sonic zhangccf68e52009-12-09 12:31:28 -0800133 tclkdiv = sclk / (2 * baud_rate) - 1;
Sonic Zhang0dd25df2010-10-16 18:22:34 -0400134 /* The actual uart baud rate of devices vary between +/-2%. The sport
135 * RX sample rate should be faster than the double of the worst case,
136 * otherwise, wrong data are received. So, set sport RX clock to be
137 * 3% faster.
138 */
139 rclkdiv = sclk / (2 * baud_rate * 2 * 97 / 100) - 1;
Bryan Wu2f351742008-04-30 00:52:12 -0700140 SPORT_PUT_TCLKDIV(up, tclkdiv);
Bryan Wu2f351742008-04-30 00:52:12 -0700141 SPORT_PUT_RCLKDIV(up, rclkdiv);
142 SSYNC();
sonic zhangccf68e52009-12-09 12:31:28 -0800143 pr_debug("%s sclk:%d, baud_rate:%d, tclkdiv:%d, rclkdiv:%d\n",
144 __func__, sclk, baud_rate, tclkdiv, rclkdiv);
Bryan Wu2f351742008-04-30 00:52:12 -0700145
146 return 0;
147}
148
149static irqreturn_t sport_uart_rx_irq(int irq, void *dev_id)
150{
151 struct sport_uart_port *up = dev_id;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100152 struct tty_port *port = &up->port.state->port;
153 struct tty_struct *tty = tport->tty;
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 tty_flip_buffer_push(tty);
166
sonic zhangccf68e52009-12-09 12:31:28 -0800167 spin_unlock(&up->port.lock);
168
Bryan Wu2f351742008-04-30 00:52:12 -0700169 return IRQ_HANDLED;
170}
171
172static irqreturn_t sport_uart_tx_irq(int irq, void *dev_id)
173{
sonic zhangccf68e52009-12-09 12:31:28 -0800174 struct sport_uart_port *up = dev_id;
175
176 spin_lock(&up->port.lock);
177 sport_uart_tx_chars(up);
178 spin_unlock(&up->port.lock);
Bryan Wu2f351742008-04-30 00:52:12 -0700179
180 return IRQ_HANDLED;
181}
182
183static irqreturn_t sport_uart_err_irq(int irq, void *dev_id)
184{
185 struct sport_uart_port *up = dev_id;
Bryan Wu2f351742008-04-30 00:52:12 -0700186 unsigned int stat = SPORT_GET_STAT(up);
187
sonic zhangccf68e52009-12-09 12:31:28 -0800188 spin_lock(&up->port.lock);
189
Bryan Wu2f351742008-04-30 00:52:12 -0700190 /* Overflow in RX FIFO */
191 if (stat & ROVF) {
192 up->port.icount.overrun++;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100193 tty_insert_flip_char(&up->port.state->port, 0, TTY_OVERRUN);
Bryan Wu2f351742008-04-30 00:52:12 -0700194 SPORT_PUT_STAT(up, ROVF); /* Clear ROVF bit */
195 }
196 /* These should not happen */
197 if (stat & (TOVF | TUVF | RUVF)) {
sonic zhangccf68e52009-12-09 12:31:28 -0800198 pr_err("SPORT Error:%s %s %s\n",
199 (stat & TOVF) ? "TX overflow" : "",
200 (stat & TUVF) ? "TX underflow" : "",
201 (stat & RUVF) ? "RX underflow" : "");
Bryan Wu2f351742008-04-30 00:52:12 -0700202 SPORT_PUT_TCR1(up, SPORT_GET_TCR1(up) & ~TSPEN);
203 SPORT_PUT_RCR1(up, SPORT_GET_RCR1(up) & ~RSPEN);
204 }
205 SSYNC();
206
sonic zhangccf68e52009-12-09 12:31:28 -0800207 spin_unlock(&up->port.lock);
Jiri Slaby92a19f92013-01-03 15:53:03 +0100208 /* XXX we don't push the overrun bit to TTY? */
209
Bryan Wu2f351742008-04-30 00:52:12 -0700210 return IRQ_HANDLED;
211}
212
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500213#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
214static unsigned int sport_get_mctrl(struct uart_port *port)
215{
216 struct sport_uart_port *up = (struct sport_uart_port *)port;
217 if (up->cts_pin < 0)
218 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
219
220 /* CTS PIN is negative assertive. */
221 if (SPORT_UART_GET_CTS(up))
222 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
223 else
224 return TIOCM_DSR | TIOCM_CAR;
225}
226
227static void sport_set_mctrl(struct uart_port *port, unsigned int mctrl)
228{
229 struct sport_uart_port *up = (struct sport_uart_port *)port;
230 if (up->rts_pin < 0)
231 return;
232
233 /* RTS PIN is negative assertive. */
234 if (mctrl & TIOCM_RTS)
235 SPORT_UART_ENABLE_RTS(up);
236 else
237 SPORT_UART_DISABLE_RTS(up);
238}
239
240/*
241 * Handle any change of modem status signal.
242 */
243static irqreturn_t sport_mctrl_cts_int(int irq, void *dev_id)
244{
245 struct sport_uart_port *up = (struct sport_uart_port *)dev_id;
246 unsigned int status;
247
248 status = sport_get_mctrl(&up->port);
249 uart_handle_cts_change(&up->port, status & TIOCM_CTS);
250
251 return IRQ_HANDLED;
252}
253#else
254static unsigned int sport_get_mctrl(struct uart_port *port)
255{
256 pr_debug("%s enter\n", __func__);
257 return TIOCM_CTS | TIOCM_CD | TIOCM_DSR;
258}
259
260static void sport_set_mctrl(struct uart_port *port, unsigned int mctrl)
261{
262 pr_debug("%s enter\n", __func__);
263}
264#endif
265
Bryan Wu2f351742008-04-30 00:52:12 -0700266/* Reqeust IRQ, Setup clock */
267static int sport_startup(struct uart_port *port)
268{
269 struct sport_uart_port *up = (struct sport_uart_port *)port;
sonic zhangccf68e52009-12-09 12:31:28 -0800270 int ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700271
Harvey Harrison6ef53062009-01-02 13:49:13 +0000272 pr_debug("%s enter\n", __func__);
sonic zhangccf68e52009-12-09 12:31:28 -0800273 ret = request_irq(up->port.irq, sport_uart_rx_irq, 0,
274 "SPORT_UART_RX", up);
275 if (ret) {
276 dev_err(port->dev, "unable to request SPORT RX interrupt\n");
277 return ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700278 }
279
sonic zhangccf68e52009-12-09 12:31:28 -0800280 ret = request_irq(up->port.irq+1, sport_uart_tx_irq, 0,
281 "SPORT_UART_TX", up);
282 if (ret) {
283 dev_err(port->dev, "unable to request SPORT TX interrupt\n");
Bryan Wu2f351742008-04-30 00:52:12 -0700284 goto fail1;
285 }
286
sonic zhangccf68e52009-12-09 12:31:28 -0800287 ret = request_irq(up->err_irq, sport_uart_err_irq, 0,
288 "SPORT_UART_STATUS", up);
289 if (ret) {
290 dev_err(port->dev, "unable to request SPORT status interrupt\n");
Bryan Wu2f351742008-04-30 00:52:12 -0700291 goto fail2;
292 }
293
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500294#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
295 if (up->cts_pin >= 0) {
296 if (request_irq(gpio_to_irq(up->cts_pin),
297 sport_mctrl_cts_int,
298 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING |
Yong Zhang9cfb5c02011-09-22 16:59:15 +0800299 0, "BFIN_SPORT_UART_CTS", up)) {
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500300 up->cts_pin = -1;
Joe Perches85ee7a12011-04-23 20:38:19 -0700301 dev_info(port->dev, "Unable to attach BlackFin UART over SPORT CTS interrupt. So, disable it.\n");
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500302 }
303 }
Sonic Zhangdc8f3702011-12-06 15:16:34 +0800304 if (up->rts_pin >= 0) {
305 if (gpio_request(up->rts_pin, DRV_NAME)) {
306 dev_info(port->dev, "fail to request RTS PIN at GPIO_%d\n", up->rts_pin);
307 up->rts_pin = -1;
308 } else
309 gpio_direction_output(up->rts_pin, 0);
310 }
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500311#endif
312
Bryan Wu2f351742008-04-30 00:52:12 -0700313 return 0;
sonic zhangccf68e52009-12-09 12:31:28 -0800314 fail2:
315 free_irq(up->port.irq+1, up);
316 fail1:
317 free_irq(up->port.irq, up);
Bryan Wu2f351742008-04-30 00:52:12 -0700318
sonic zhangccf68e52009-12-09 12:31:28 -0800319 return ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700320}
321
Sonic Zhang9356c462010-03-09 12:25:37 -0500322/*
323 * sport_uart_tx_chars
324 *
325 * ret 1 means need to enable sport.
326 * ret 0 means do nothing.
327 */
328static int sport_uart_tx_chars(struct sport_uart_port *up)
Bryan Wu2f351742008-04-30 00:52:12 -0700329{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700330 struct circ_buf *xmit = &up->port.state->xmit;
Bryan Wu2f351742008-04-30 00:52:12 -0700331
332 if (SPORT_GET_STAT(up) & TXF)
Sonic Zhang9356c462010-03-09 12:25:37 -0500333 return 0;
Bryan Wu2f351742008-04-30 00:52:12 -0700334
335 if (up->port.x_char) {
336 tx_one_byte(up, up->port.x_char);
337 up->port.icount.tx++;
338 up->port.x_char = 0;
Sonic Zhang9356c462010-03-09 12:25:37 -0500339 return 1;
Bryan Wu2f351742008-04-30 00:52:12 -0700340 }
341
342 if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) {
Sonic Zhang3f3a9782010-03-09 12:25:29 -0500343 /* The waiting loop to stop SPORT TX from TX interrupt is
344 * too long. This may block SPORT RX interrupts and cause
345 * RX FIFO overflow. So, do stop sport TX only after the last
346 * char in TX FIFO is moved into the shift register.
347 */
348 if (SPORT_GET_STAT(up) & TXHRE)
349 sport_stop_tx(&up->port);
Sonic Zhang9356c462010-03-09 12:25:37 -0500350 return 0;
Bryan Wu2f351742008-04-30 00:52:12 -0700351 }
352
353 while(!(SPORT_GET_STAT(up) & TXF) && !uart_circ_empty(xmit)) {
354 tx_one_byte(up, xmit->buf[xmit->tail]);
355 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE -1);
356 up->port.icount.tx++;
357 }
358
359 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
360 uart_write_wakeup(&up->port);
Sonic Zhang9356c462010-03-09 12:25:37 -0500361
362 return 1;
Bryan Wu2f351742008-04-30 00:52:12 -0700363}
364
365static unsigned int sport_tx_empty(struct uart_port *port)
366{
367 struct sport_uart_port *up = (struct sport_uart_port *)port;
368 unsigned int stat;
369
370 stat = SPORT_GET_STAT(up);
Harvey Harrison6ef53062009-01-02 13:49:13 +0000371 pr_debug("%s stat:%04x\n", __func__, stat);
Bryan Wu2f351742008-04-30 00:52:12 -0700372 if (stat & TXHRE) {
373 return TIOCSER_TEMT;
374 } else
375 return 0;
376}
377
Bryan Wu2f351742008-04-30 00:52:12 -0700378static void sport_stop_tx(struct uart_port *port)
379{
380 struct sport_uart_port *up = (struct sport_uart_port *)port;
Bryan Wu2f351742008-04-30 00:52:12 -0700381
Harvey Harrison6ef53062009-01-02 13:49:13 +0000382 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700383
Sonic Zhang9356c462010-03-09 12:25:37 -0500384 if (!(SPORT_GET_TCR1(up) & TSPEN))
385 return;
386
Bryan Wu2f351742008-04-30 00:52:12 -0700387 /* Although the hold register is empty, last byte is still in shift
sonic zhangccf68e52009-12-09 12:31:28 -0800388 * register and not sent out yet. So, put a dummy data into TX FIFO.
389 * Then, sport tx stops when last byte is shift out and the dummy
390 * data is moved into the shift register.
391 */
392 SPORT_PUT_TX(up, 0xffff);
393 while (!(SPORT_GET_STAT(up) & TXHRE))
394 cpu_relax();
Bryan Wu2f351742008-04-30 00:52:12 -0700395
396 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) & ~TSPEN));
397 SSYNC();
398
399 return;
400}
401
402static void sport_start_tx(struct uart_port *port)
403{
404 struct sport_uart_port *up = (struct sport_uart_port *)port;
405
Harvey Harrison6ef53062009-01-02 13:49:13 +0000406 pr_debug("%s enter\n", __func__);
sonic zhangccf68e52009-12-09 12:31:28 -0800407
Bryan Wu2f351742008-04-30 00:52:12 -0700408 /* Write data into SPORT FIFO before enable SPROT to transmit */
Sonic Zhang9356c462010-03-09 12:25:37 -0500409 if (sport_uart_tx_chars(up)) {
410 /* Enable transmit, then an interrupt will generated */
411 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) | TSPEN));
412 SSYNC();
413 }
Bryan Wu2f351742008-04-30 00:52:12 -0700414
Harvey Harrison6ef53062009-01-02 13:49:13 +0000415 pr_debug("%s exit\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700416}
417
418static void sport_stop_rx(struct uart_port *port)
419{
420 struct sport_uart_port *up = (struct sport_uart_port *)port;
421
Harvey Harrison6ef53062009-01-02 13:49:13 +0000422 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700423 /* Disable sport to stop rx */
424 SPORT_PUT_RCR1(up, (SPORT_GET_RCR1(up) & ~RSPEN));
425 SSYNC();
426}
427
428static void sport_enable_ms(struct uart_port *port)
429{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000430 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700431}
432
433static void sport_break_ctl(struct uart_port *port, int break_state)
434{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000435 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700436}
437
438static void sport_shutdown(struct uart_port *port)
439{
440 struct sport_uart_port *up = (struct sport_uart_port *)port;
441
sonic zhangccf68e52009-12-09 12:31:28 -0800442 dev_dbg(port->dev, "%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700443
444 /* Disable sport */
445 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) & ~TSPEN));
446 SPORT_PUT_RCR1(up, (SPORT_GET_RCR1(up) & ~RSPEN));
447 SSYNC();
448
sonic zhangccf68e52009-12-09 12:31:28 -0800449 free_irq(up->port.irq, up);
450 free_irq(up->port.irq+1, up);
Bryan Wu2f351742008-04-30 00:52:12 -0700451 free_irq(up->err_irq, up);
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500452#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
453 if (up->cts_pin >= 0)
454 free_irq(gpio_to_irq(up->cts_pin), up);
Sonic Zhangdc8f3702011-12-06 15:16:34 +0800455 if (up->rts_pin >= 0)
456 gpio_free(up->rts_pin);
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500457#endif
Bryan Wu2f351742008-04-30 00:52:12 -0700458}
459
Bryan Wu2f351742008-04-30 00:52:12 -0700460static const char *sport_type(struct uart_port *port)
461{
462 struct sport_uart_port *up = (struct sport_uart_port *)port;
463
Harvey Harrison6ef53062009-01-02 13:49:13 +0000464 pr_debug("%s enter\n", __func__);
sonic zhangccf68e52009-12-09 12:31:28 -0800465 return up->port.type == PORT_BFIN_SPORT ? "BFIN-SPORT-UART" : NULL;
Bryan Wu2f351742008-04-30 00:52:12 -0700466}
467
468static void sport_release_port(struct uart_port *port)
469{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000470 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700471}
472
473static int sport_request_port(struct uart_port *port)
474{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000475 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700476 return 0;
477}
478
479static void sport_config_port(struct uart_port *port, int flags)
480{
481 struct sport_uart_port *up = (struct sport_uart_port *)port;
482
Harvey Harrison6ef53062009-01-02 13:49:13 +0000483 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700484 up->port.type = PORT_BFIN_SPORT;
485}
486
487static int sport_verify_port(struct uart_port *port, struct serial_struct *ser)
488{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000489 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700490 return 0;
491}
492
sonic zhangccf68e52009-12-09 12:31:28 -0800493static void sport_set_termios(struct uart_port *port,
494 struct ktermios *termios, struct ktermios *old)
495{
496 struct sport_uart_port *up = (struct sport_uart_port *)port;
497 unsigned long flags;
498 int i;
499
500 pr_debug("%s enter, c_cflag:%08x\n", __func__, termios->c_cflag);
501
502 switch (termios->c_cflag & CSIZE) {
503 case CS8:
504 up->csize = 8;
505 break;
506 case CS7:
507 up->csize = 7;
508 break;
509 case CS6:
510 up->csize = 6;
511 break;
512 case CS5:
513 up->csize = 5;
514 break;
515 default:
516 pr_warning("requested word length not supported\n");
517 }
518
519 if (termios->c_cflag & CSTOPB) {
520 up->stopb = 1;
521 }
522 if (termios->c_cflag & PARENB) {
523 pr_warning("PAREN bits is not supported yet\n");
524 /* up->parib = 1; */
525 }
526
Sonic Zhang9498dc92010-03-09 12:25:34 -0500527 spin_lock_irqsave(&up->port.lock, flags);
528
Mike Frysinger60bd9402010-03-09 12:25:36 -0500529 port->read_status_mask = 0;
sonic zhangccf68e52009-12-09 12:31:28 -0800530
531 /*
532 * Characters to ignore
533 */
534 port->ignore_status_mask = 0;
sonic zhangccf68e52009-12-09 12:31:28 -0800535
536 /* RX extract mask */
537 up->rxmask = 0x01 | (((up->csize + up->stopb) * 2 - 1) << 0x8);
538 /* TX masks, 8 bit data and 1 bit stop for example:
539 * mask1 = b#0111111110
540 * mask2 = b#1000000000
541 */
542 for (i = 0, up->txmask1 = 0; i < up->csize; i++)
543 up->txmask1 |= (1<<i);
544 up->txmask2 = (1<<i);
545 if (up->stopb) {
546 ++i;
547 up->txmask2 |= (1<<i);
548 }
549 up->txmask1 <<= 1;
550 up->txmask2 <<= 1;
551 /* uart baud rate */
552 port->uartclk = uart_get_baud_rate(port, termios, old, 0, get_sclk()/16);
553
sonic zhangccf68e52009-12-09 12:31:28 -0800554 /* Disable UART */
555 SPORT_PUT_TCR1(up, SPORT_GET_TCR1(up) & ~TSPEN);
556 SPORT_PUT_RCR1(up, SPORT_GET_RCR1(up) & ~RSPEN);
557
558 sport_uart_setup(up, up->csize + up->stopb, port->uartclk);
559
560 /* driver TX line high after config, one dummy data is
561 * necessary to stop sport after shift one byte
562 */
563 SPORT_PUT_TX(up, 0xffff);
564 SPORT_PUT_TX(up, 0xffff);
565 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) | TSPEN));
566 SSYNC();
567 while (!(SPORT_GET_STAT(up) & TXHRE))
568 cpu_relax();
569 SPORT_PUT_TCR1(up, SPORT_GET_TCR1(up) & ~TSPEN);
570 SSYNC();
571
572 /* Port speed changed, update the per-port timeout. */
573 uart_update_timeout(port, termios->c_cflag, port->uartclk);
574
575 /* Enable sport rx */
576 SPORT_PUT_RCR1(up, SPORT_GET_RCR1(up) | RSPEN);
577 SSYNC();
578
579 spin_unlock_irqrestore(&up->port.lock, flags);
580}
581
Bryan Wu2f351742008-04-30 00:52:12 -0700582struct uart_ops sport_uart_ops = {
583 .tx_empty = sport_tx_empty,
584 .set_mctrl = sport_set_mctrl,
585 .get_mctrl = sport_get_mctrl,
586 .stop_tx = sport_stop_tx,
587 .start_tx = sport_start_tx,
588 .stop_rx = sport_stop_rx,
589 .enable_ms = sport_enable_ms,
590 .break_ctl = sport_break_ctl,
591 .startup = sport_startup,
592 .shutdown = sport_shutdown,
593 .set_termios = sport_set_termios,
594 .type = sport_type,
595 .release_port = sport_release_port,
596 .request_port = sport_request_port,
597 .config_port = sport_config_port,
598 .verify_port = sport_verify_port,
599};
600
sonic zhangccf68e52009-12-09 12:31:28 -0800601#define BFIN_SPORT_UART_MAX_PORTS 4
602
603static struct sport_uart_port *bfin_sport_uart_ports[BFIN_SPORT_UART_MAX_PORTS];
604
605#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
Sonic Zhangb59588a2010-03-09 12:25:32 -0500606#define CLASS_BFIN_SPORT_CONSOLE "bfin-sport-console"
607
sonic zhangccf68e52009-12-09 12:31:28 -0800608static int __init
609sport_uart_console_setup(struct console *co, char *options)
610{
611 struct sport_uart_port *up;
612 int baud = 57600;
613 int bits = 8;
614 int parity = 'n';
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500615# ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
616 int flow = 'r';
617# else
sonic zhangccf68e52009-12-09 12:31:28 -0800618 int flow = 'n';
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500619# endif
sonic zhangccf68e52009-12-09 12:31:28 -0800620
621 /* Check whether an invalid uart number has been specified */
622 if (co->index < 0 || co->index >= BFIN_SPORT_UART_MAX_PORTS)
623 return -ENODEV;
624
625 up = bfin_sport_uart_ports[co->index];
626 if (!up)
627 return -ENODEV;
628
629 if (options)
630 uart_parse_options(options, &baud, &parity, &bits, &flow);
631
632 return uart_set_options(&up->port, co, baud, parity, bits, flow);
633}
634
635static void sport_uart_console_putchar(struct uart_port *port, int ch)
636{
637 struct sport_uart_port *up = (struct sport_uart_port *)port;
638
639 while (SPORT_GET_STAT(up) & TXF)
640 barrier();
641
642 tx_one_byte(up, ch);
643}
644
645/*
646 * Interrupts are disabled on entering
647 */
648static void
649sport_uart_console_write(struct console *co, const char *s, unsigned int count)
650{
651 struct sport_uart_port *up = bfin_sport_uart_ports[co->index];
652 unsigned long flags;
653
654 spin_lock_irqsave(&up->port.lock, flags);
655
656 if (SPORT_GET_TCR1(up) & TSPEN)
657 uart_console_write(&up->port, s, count, sport_uart_console_putchar);
658 else {
659 /* dummy data to start sport */
660 while (SPORT_GET_STAT(up) & TXF)
661 barrier();
662 SPORT_PUT_TX(up, 0xffff);
663 /* Enable transmit, then an interrupt will generated */
664 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) | TSPEN));
665 SSYNC();
666
667 uart_console_write(&up->port, s, count, sport_uart_console_putchar);
668
669 /* Although the hold register is empty, last byte is still in shift
670 * register and not sent out yet. So, put a dummy data into TX FIFO.
671 * Then, sport tx stops when last byte is shift out and the dummy
672 * data is moved into the shift register.
673 */
674 while (SPORT_GET_STAT(up) & TXF)
675 barrier();
676 SPORT_PUT_TX(up, 0xffff);
677 while (!(SPORT_GET_STAT(up) & TXHRE))
678 barrier();
679
680 /* Stop sport tx transfer */
681 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) & ~TSPEN));
682 SSYNC();
Bryan Wu2f351742008-04-30 00:52:12 -0700683 }
sonic zhangccf68e52009-12-09 12:31:28 -0800684
685 spin_unlock_irqrestore(&up->port.lock, flags);
686}
687
688static struct uart_driver sport_uart_reg;
689
690static struct console sport_uart_console = {
691 .name = DEVICE_NAME,
692 .write = sport_uart_console_write,
693 .device = uart_console_device,
694 .setup = sport_uart_console_setup,
695 .flags = CON_PRINTBUFFER,
696 .index = -1,
697 .data = &sport_uart_reg,
Bryan Wu2f351742008-04-30 00:52:12 -0700698};
699
sonic zhangccf68e52009-12-09 12:31:28 -0800700#define SPORT_UART_CONSOLE (&sport_uart_console)
701#else
702#define SPORT_UART_CONSOLE NULL
703#endif /* CONFIG_SERIAL_BFIN_SPORT_CONSOLE */
704
705
Bryan Wu2f351742008-04-30 00:52:12 -0700706static struct uart_driver sport_uart_reg = {
707 .owner = THIS_MODULE,
sonic zhangccf68e52009-12-09 12:31:28 -0800708 .driver_name = DRV_NAME,
709 .dev_name = DEVICE_NAME,
Bryan Wu2f351742008-04-30 00:52:12 -0700710 .major = 204,
711 .minor = 84,
sonic zhangccf68e52009-12-09 12:31:28 -0800712 .nr = BFIN_SPORT_UART_MAX_PORTS,
713 .cons = SPORT_UART_CONSOLE,
Bryan Wu2f351742008-04-30 00:52:12 -0700714};
715
sonic zhangccf68e52009-12-09 12:31:28 -0800716#ifdef CONFIG_PM
717static int sport_uart_suspend(struct device *dev)
Bryan Wu2f351742008-04-30 00:52:12 -0700718{
sonic zhangccf68e52009-12-09 12:31:28 -0800719 struct sport_uart_port *sport = dev_get_drvdata(dev);
Bryan Wu2f351742008-04-30 00:52:12 -0700720
sonic zhangccf68e52009-12-09 12:31:28 -0800721 dev_dbg(dev, "%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700722 if (sport)
723 uart_suspend_port(&sport_uart_reg, &sport->port);
724
725 return 0;
726}
727
sonic zhangccf68e52009-12-09 12:31:28 -0800728static int sport_uart_resume(struct device *dev)
Bryan Wu2f351742008-04-30 00:52:12 -0700729{
sonic zhangccf68e52009-12-09 12:31:28 -0800730 struct sport_uart_port *sport = dev_get_drvdata(dev);
Bryan Wu2f351742008-04-30 00:52:12 -0700731
sonic zhangccf68e52009-12-09 12:31:28 -0800732 dev_dbg(dev, "%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700733 if (sport)
734 uart_resume_port(&sport_uart_reg, &sport->port);
735
736 return 0;
737}
738
sonic zhangccf68e52009-12-09 12:31:28 -0800739static struct dev_pm_ops bfin_sport_uart_dev_pm_ops = {
740 .suspend = sport_uart_suspend,
741 .resume = sport_uart_resume,
742};
743#endif
Bryan Wu2f351742008-04-30 00:52:12 -0700744
Bill Pemberton9671f092012-11-19 13:21:50 -0500745static int sport_uart_probe(struct platform_device *pdev)
sonic zhangccf68e52009-12-09 12:31:28 -0800746{
747 struct resource *res;
748 struct sport_uart_port *sport;
749 int ret = 0;
750
751 dev_dbg(&pdev->dev, "%s enter\n", __func__);
752
753 if (pdev->id < 0 || pdev->id >= BFIN_SPORT_UART_MAX_PORTS) {
754 dev_err(&pdev->dev, "Wrong sport uart platform device id.\n");
755 return -ENOENT;
756 }
757
758 if (bfin_sport_uart_ports[pdev->id] == NULL) {
759 bfin_sport_uart_ports[pdev->id] =
Sonic Zhangf4d10ca2010-03-09 12:25:35 -0500760 kzalloc(sizeof(struct sport_uart_port), GFP_KERNEL);
sonic zhangccf68e52009-12-09 12:31:28 -0800761 sport = bfin_sport_uart_ports[pdev->id];
762 if (!sport) {
763 dev_err(&pdev->dev,
Sonic Zhangf4d10ca2010-03-09 12:25:35 -0500764 "Fail to malloc sport_uart_port\n");
sonic zhangccf68e52009-12-09 12:31:28 -0800765 return -ENOMEM;
766 }
767
768 ret = peripheral_request_list(
769 (unsigned short *)pdev->dev.platform_data, DRV_NAME);
770 if (ret) {
771 dev_err(&pdev->dev,
772 "Fail to request SPORT peripherals\n");
773 goto out_error_free_mem;
774 }
775
776 spin_lock_init(&sport->port.lock);
777 sport->port.fifosize = SPORT_TX_FIFO_SIZE,
778 sport->port.ops = &sport_uart_ops;
779 sport->port.line = pdev->id;
780 sport->port.iotype = UPIO_MEM;
781 sport->port.flags = UPF_BOOT_AUTOCONF;
782
783 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
784 if (res == NULL) {
785 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
786 ret = -ENOENT;
787 goto out_error_free_peripherals;
788 }
789
Tobias Klausere1144742010-05-11 09:10:23 +0200790 sport->port.membase = ioremap(res->start, resource_size(res));
sonic zhangccf68e52009-12-09 12:31:28 -0800791 if (!sport->port.membase) {
792 dev_err(&pdev->dev, "Cannot map sport IO\n");
793 ret = -ENXIO;
794 goto out_error_free_peripherals;
795 }
Sonic Zhange8126b32010-03-09 12:25:31 -0500796 sport->port.mapbase = res->start;
sonic zhangccf68e52009-12-09 12:31:28 -0800797
798 sport->port.irq = platform_get_irq(pdev, 0);
Vasiliy Kulikov940f3be2011-01-17 13:08:52 +0300799 if ((int)sport->port.irq < 0) {
sonic zhangccf68e52009-12-09 12:31:28 -0800800 dev_err(&pdev->dev, "No sport RX/TX IRQ specified\n");
801 ret = -ENOENT;
802 goto out_error_unmap;
803 }
804
805 sport->err_irq = platform_get_irq(pdev, 1);
806 if (sport->err_irq < 0) {
807 dev_err(&pdev->dev, "No sport status IRQ specified\n");
808 ret = -ENOENT;
809 goto out_error_unmap;
810 }
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500811#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
812 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
813 if (res == NULL)
814 sport->cts_pin = -1;
Sonic Zhangcee39482011-12-06 16:22:34 +0800815 else {
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500816 sport->cts_pin = res->start;
Sonic Zhangcee39482011-12-06 16:22:34 +0800817 sport->port.flags |= ASYNC_CTS_FLOW;
818 }
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500819
820 res = platform_get_resource(pdev, IORESOURCE_IO, 1);
821 if (res == NULL)
822 sport->rts_pin = -1;
823 else
824 sport->rts_pin = res->start;
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500825#endif
sonic zhangccf68e52009-12-09 12:31:28 -0800826 }
827
828#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
829 if (!is_early_platform_device(pdev)) {
830#endif
831 sport = bfin_sport_uart_ports[pdev->id];
832 sport->port.dev = &pdev->dev;
833 dev_set_drvdata(&pdev->dev, sport);
834 ret = uart_add_one_port(&sport_uart_reg, &sport->port);
835#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
836 }
837#endif
838 if (!ret)
839 return 0;
840
841 if (sport) {
842out_error_unmap:
843 iounmap(sport->port.membase);
844out_error_free_peripherals:
845 peripheral_free_list(
846 (unsigned short *)pdev->dev.platform_data);
847out_error_free_mem:
848 kfree(sport);
849 bfin_sport_uart_ports[pdev->id] = NULL;
850 }
851
852 return ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700853}
854
Bill Pembertonae8d8a12012-11-19 13:26:18 -0500855static int sport_uart_remove(struct platform_device *pdev)
Bryan Wu2f351742008-04-30 00:52:12 -0700856{
sonic zhangccf68e52009-12-09 12:31:28 -0800857 struct sport_uart_port *sport = platform_get_drvdata(pdev);
Bryan Wu2f351742008-04-30 00:52:12 -0700858
sonic zhangccf68e52009-12-09 12:31:28 -0800859 dev_dbg(&pdev->dev, "%s enter\n", __func__);
860 dev_set_drvdata(&pdev->dev, NULL);
Bryan Wu2f351742008-04-30 00:52:12 -0700861
sonic zhangccf68e52009-12-09 12:31:28 -0800862 if (sport) {
Bryan Wu2f351742008-04-30 00:52:12 -0700863 uart_remove_one_port(&sport_uart_reg, &sport->port);
sonic zhangccf68e52009-12-09 12:31:28 -0800864 iounmap(sport->port.membase);
865 peripheral_free_list(
866 (unsigned short *)pdev->dev.platform_data);
867 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
886static __initdata struct early_platform_driver early_sport_uart_driver = {
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");