blob: 891d194ae754e95e43de55b494b8848e236a9040 [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;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700152 struct tty_struct *tty = up->port.state->port.tty;
Bryan Wu2f351742008-04-30 00:52:12 -0700153 unsigned int ch;
154
sonic zhangccf68e52009-12-09 12:31:28 -0800155 spin_lock(&up->port.lock);
156
157 while (SPORT_GET_STAT(up) & RXNE) {
Bryan Wu2f351742008-04-30 00:52:12 -0700158 ch = rx_one_byte(up);
159 up->port.icount.rx++;
160
sonic zhangccf68e52009-12-09 12:31:28 -0800161 if (!uart_handle_sysrq_char(&up->port, ch))
Bryan Wu2f351742008-04-30 00:52:12 -0700162 tty_insert_flip_char(tty, ch, TTY_NORMAL);
sonic zhangccf68e52009-12-09 12:31:28 -0800163 }
Bryan Wu2f351742008-04-30 00:52:12 -0700164 tty_flip_buffer_push(tty);
165
sonic zhangccf68e52009-12-09 12:31:28 -0800166 spin_unlock(&up->port.lock);
167
Bryan Wu2f351742008-04-30 00:52:12 -0700168 return IRQ_HANDLED;
169}
170
171static irqreturn_t sport_uart_tx_irq(int irq, void *dev_id)
172{
sonic zhangccf68e52009-12-09 12:31:28 -0800173 struct sport_uart_port *up = dev_id;
174
175 spin_lock(&up->port.lock);
176 sport_uart_tx_chars(up);
177 spin_unlock(&up->port.lock);
Bryan Wu2f351742008-04-30 00:52:12 -0700178
179 return IRQ_HANDLED;
180}
181
182static irqreturn_t sport_uart_err_irq(int irq, void *dev_id)
183{
184 struct sport_uart_port *up = dev_id;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700185 struct tty_struct *tty = up->port.state->port.tty;
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++;
193 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
194 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);
Bryan Wu2f351742008-04-30 00:52:12 -0700208 return IRQ_HANDLED;
209}
210
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500211#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
212static unsigned int sport_get_mctrl(struct uart_port *port)
213{
214 struct sport_uart_port *up = (struct sport_uart_port *)port;
215 if (up->cts_pin < 0)
216 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
217
218 /* CTS PIN is negative assertive. */
219 if (SPORT_UART_GET_CTS(up))
220 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
221 else
222 return TIOCM_DSR | TIOCM_CAR;
223}
224
225static void sport_set_mctrl(struct uart_port *port, unsigned int mctrl)
226{
227 struct sport_uart_port *up = (struct sport_uart_port *)port;
228 if (up->rts_pin < 0)
229 return;
230
231 /* RTS PIN is negative assertive. */
232 if (mctrl & TIOCM_RTS)
233 SPORT_UART_ENABLE_RTS(up);
234 else
235 SPORT_UART_DISABLE_RTS(up);
236}
237
238/*
239 * Handle any change of modem status signal.
240 */
241static irqreturn_t sport_mctrl_cts_int(int irq, void *dev_id)
242{
243 struct sport_uart_port *up = (struct sport_uart_port *)dev_id;
244 unsigned int status;
245
246 status = sport_get_mctrl(&up->port);
247 uart_handle_cts_change(&up->port, status & TIOCM_CTS);
248
249 return IRQ_HANDLED;
250}
251#else
252static unsigned int sport_get_mctrl(struct uart_port *port)
253{
254 pr_debug("%s enter\n", __func__);
255 return TIOCM_CTS | TIOCM_CD | TIOCM_DSR;
256}
257
258static void sport_set_mctrl(struct uart_port *port, unsigned int mctrl)
259{
260 pr_debug("%s enter\n", __func__);
261}
262#endif
263
Bryan Wu2f351742008-04-30 00:52:12 -0700264/* Reqeust IRQ, Setup clock */
265static int sport_startup(struct uart_port *port)
266{
267 struct sport_uart_port *up = (struct sport_uart_port *)port;
sonic zhangccf68e52009-12-09 12:31:28 -0800268 int ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700269
Harvey Harrison6ef53062009-01-02 13:49:13 +0000270 pr_debug("%s enter\n", __func__);
sonic zhangccf68e52009-12-09 12:31:28 -0800271 ret = request_irq(up->port.irq, sport_uart_rx_irq, 0,
272 "SPORT_UART_RX", up);
273 if (ret) {
274 dev_err(port->dev, "unable to request SPORT RX interrupt\n");
275 return ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700276 }
277
sonic zhangccf68e52009-12-09 12:31:28 -0800278 ret = request_irq(up->port.irq+1, sport_uart_tx_irq, 0,
279 "SPORT_UART_TX", up);
280 if (ret) {
281 dev_err(port->dev, "unable to request SPORT TX interrupt\n");
Bryan Wu2f351742008-04-30 00:52:12 -0700282 goto fail1;
283 }
284
sonic zhangccf68e52009-12-09 12:31:28 -0800285 ret = request_irq(up->err_irq, sport_uart_err_irq, 0,
286 "SPORT_UART_STATUS", up);
287 if (ret) {
288 dev_err(port->dev, "unable to request SPORT status interrupt\n");
Bryan Wu2f351742008-04-30 00:52:12 -0700289 goto fail2;
290 }
291
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500292#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
293 if (up->cts_pin >= 0) {
294 if (request_irq(gpio_to_irq(up->cts_pin),
295 sport_mctrl_cts_int,
296 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING |
297 IRQF_DISABLED, "BFIN_SPORT_UART_CTS", up)) {
298 up->cts_pin = -1;
Joe Perches85ee7a12011-04-23 20:38:19 -0700299 dev_info(port->dev, "Unable to attach BlackFin UART over SPORT CTS interrupt. So, disable it.\n");
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500300 }
301 }
302 if (up->rts_pin >= 0)
303 gpio_direction_output(up->rts_pin, 0);
304#endif
305
Bryan Wu2f351742008-04-30 00:52:12 -0700306 return 0;
sonic zhangccf68e52009-12-09 12:31:28 -0800307 fail2:
308 free_irq(up->port.irq+1, up);
309 fail1:
310 free_irq(up->port.irq, up);
Bryan Wu2f351742008-04-30 00:52:12 -0700311
sonic zhangccf68e52009-12-09 12:31:28 -0800312 return ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700313}
314
Sonic Zhang9356c462010-03-09 12:25:37 -0500315/*
316 * sport_uart_tx_chars
317 *
318 * ret 1 means need to enable sport.
319 * ret 0 means do nothing.
320 */
321static int sport_uart_tx_chars(struct sport_uart_port *up)
Bryan Wu2f351742008-04-30 00:52:12 -0700322{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700323 struct circ_buf *xmit = &up->port.state->xmit;
Bryan Wu2f351742008-04-30 00:52:12 -0700324
325 if (SPORT_GET_STAT(up) & TXF)
Sonic Zhang9356c462010-03-09 12:25:37 -0500326 return 0;
Bryan Wu2f351742008-04-30 00:52:12 -0700327
328 if (up->port.x_char) {
329 tx_one_byte(up, up->port.x_char);
330 up->port.icount.tx++;
331 up->port.x_char = 0;
Sonic Zhang9356c462010-03-09 12:25:37 -0500332 return 1;
Bryan Wu2f351742008-04-30 00:52:12 -0700333 }
334
335 if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) {
Sonic Zhang3f3a9782010-03-09 12:25:29 -0500336 /* The waiting loop to stop SPORT TX from TX interrupt is
337 * too long. This may block SPORT RX interrupts and cause
338 * RX FIFO overflow. So, do stop sport TX only after the last
339 * char in TX FIFO is moved into the shift register.
340 */
341 if (SPORT_GET_STAT(up) & TXHRE)
342 sport_stop_tx(&up->port);
Sonic Zhang9356c462010-03-09 12:25:37 -0500343 return 0;
Bryan Wu2f351742008-04-30 00:52:12 -0700344 }
345
346 while(!(SPORT_GET_STAT(up) & TXF) && !uart_circ_empty(xmit)) {
347 tx_one_byte(up, xmit->buf[xmit->tail]);
348 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE -1);
349 up->port.icount.tx++;
350 }
351
352 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
353 uart_write_wakeup(&up->port);
Sonic Zhang9356c462010-03-09 12:25:37 -0500354
355 return 1;
Bryan Wu2f351742008-04-30 00:52:12 -0700356}
357
358static unsigned int sport_tx_empty(struct uart_port *port)
359{
360 struct sport_uart_port *up = (struct sport_uart_port *)port;
361 unsigned int stat;
362
363 stat = SPORT_GET_STAT(up);
Harvey Harrison6ef53062009-01-02 13:49:13 +0000364 pr_debug("%s stat:%04x\n", __func__, stat);
Bryan Wu2f351742008-04-30 00:52:12 -0700365 if (stat & TXHRE) {
366 return TIOCSER_TEMT;
367 } else
368 return 0;
369}
370
Bryan Wu2f351742008-04-30 00:52:12 -0700371static void sport_stop_tx(struct uart_port *port)
372{
373 struct sport_uart_port *up = (struct sport_uart_port *)port;
Bryan Wu2f351742008-04-30 00:52:12 -0700374
Harvey Harrison6ef53062009-01-02 13:49:13 +0000375 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700376
Sonic Zhang9356c462010-03-09 12:25:37 -0500377 if (!(SPORT_GET_TCR1(up) & TSPEN))
378 return;
379
Bryan Wu2f351742008-04-30 00:52:12 -0700380 /* Although the hold register is empty, last byte is still in shift
sonic zhangccf68e52009-12-09 12:31:28 -0800381 * register and not sent out yet. So, put a dummy data into TX FIFO.
382 * Then, sport tx stops when last byte is shift out and the dummy
383 * data is moved into the shift register.
384 */
385 SPORT_PUT_TX(up, 0xffff);
386 while (!(SPORT_GET_STAT(up) & TXHRE))
387 cpu_relax();
Bryan Wu2f351742008-04-30 00:52:12 -0700388
389 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) & ~TSPEN));
390 SSYNC();
391
392 return;
393}
394
395static void sport_start_tx(struct uart_port *port)
396{
397 struct sport_uart_port *up = (struct sport_uart_port *)port;
398
Harvey Harrison6ef53062009-01-02 13:49:13 +0000399 pr_debug("%s enter\n", __func__);
sonic zhangccf68e52009-12-09 12:31:28 -0800400
Bryan Wu2f351742008-04-30 00:52:12 -0700401 /* Write data into SPORT FIFO before enable SPROT to transmit */
Sonic Zhang9356c462010-03-09 12:25:37 -0500402 if (sport_uart_tx_chars(up)) {
403 /* Enable transmit, then an interrupt will generated */
404 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) | TSPEN));
405 SSYNC();
406 }
Bryan Wu2f351742008-04-30 00:52:12 -0700407
Harvey Harrison6ef53062009-01-02 13:49:13 +0000408 pr_debug("%s exit\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700409}
410
411static void sport_stop_rx(struct uart_port *port)
412{
413 struct sport_uart_port *up = (struct sport_uart_port *)port;
414
Harvey Harrison6ef53062009-01-02 13:49:13 +0000415 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700416 /* Disable sport to stop rx */
417 SPORT_PUT_RCR1(up, (SPORT_GET_RCR1(up) & ~RSPEN));
418 SSYNC();
419}
420
421static void sport_enable_ms(struct uart_port *port)
422{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000423 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700424}
425
426static void sport_break_ctl(struct uart_port *port, int break_state)
427{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000428 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700429}
430
431static void sport_shutdown(struct uart_port *port)
432{
433 struct sport_uart_port *up = (struct sport_uart_port *)port;
434
sonic zhangccf68e52009-12-09 12:31:28 -0800435 dev_dbg(port->dev, "%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700436
437 /* Disable sport */
438 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) & ~TSPEN));
439 SPORT_PUT_RCR1(up, (SPORT_GET_RCR1(up) & ~RSPEN));
440 SSYNC();
441
sonic zhangccf68e52009-12-09 12:31:28 -0800442 free_irq(up->port.irq, up);
443 free_irq(up->port.irq+1, up);
Bryan Wu2f351742008-04-30 00:52:12 -0700444 free_irq(up->err_irq, up);
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500445#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
446 if (up->cts_pin >= 0)
447 free_irq(gpio_to_irq(up->cts_pin), up);
448#endif
Bryan Wu2f351742008-04-30 00:52:12 -0700449}
450
Bryan Wu2f351742008-04-30 00:52:12 -0700451static const char *sport_type(struct uart_port *port)
452{
453 struct sport_uart_port *up = (struct sport_uart_port *)port;
454
Harvey Harrison6ef53062009-01-02 13:49:13 +0000455 pr_debug("%s enter\n", __func__);
sonic zhangccf68e52009-12-09 12:31:28 -0800456 return up->port.type == PORT_BFIN_SPORT ? "BFIN-SPORT-UART" : NULL;
Bryan Wu2f351742008-04-30 00:52:12 -0700457}
458
459static void sport_release_port(struct uart_port *port)
460{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000461 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700462}
463
464static int sport_request_port(struct uart_port *port)
465{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000466 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700467 return 0;
468}
469
470static void sport_config_port(struct uart_port *port, int flags)
471{
472 struct sport_uart_port *up = (struct sport_uart_port *)port;
473
Harvey Harrison6ef53062009-01-02 13:49:13 +0000474 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700475 up->port.type = PORT_BFIN_SPORT;
476}
477
478static int sport_verify_port(struct uart_port *port, struct serial_struct *ser)
479{
Harvey Harrison6ef53062009-01-02 13:49:13 +0000480 pr_debug("%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700481 return 0;
482}
483
sonic zhangccf68e52009-12-09 12:31:28 -0800484static void sport_set_termios(struct uart_port *port,
485 struct ktermios *termios, struct ktermios *old)
486{
487 struct sport_uart_port *up = (struct sport_uart_port *)port;
488 unsigned long flags;
489 int i;
490
491 pr_debug("%s enter, c_cflag:%08x\n", __func__, termios->c_cflag);
492
493 switch (termios->c_cflag & CSIZE) {
494 case CS8:
495 up->csize = 8;
496 break;
497 case CS7:
498 up->csize = 7;
499 break;
500 case CS6:
501 up->csize = 6;
502 break;
503 case CS5:
504 up->csize = 5;
505 break;
506 default:
507 pr_warning("requested word length not supported\n");
508 }
509
510 if (termios->c_cflag & CSTOPB) {
511 up->stopb = 1;
512 }
513 if (termios->c_cflag & PARENB) {
514 pr_warning("PAREN bits is not supported yet\n");
515 /* up->parib = 1; */
516 }
517
Sonic Zhang9498dc92010-03-09 12:25:34 -0500518 spin_lock_irqsave(&up->port.lock, flags);
519
Mike Frysinger60bd9402010-03-09 12:25:36 -0500520 port->read_status_mask = 0;
sonic zhangccf68e52009-12-09 12:31:28 -0800521
522 /*
523 * Characters to ignore
524 */
525 port->ignore_status_mask = 0;
sonic zhangccf68e52009-12-09 12:31:28 -0800526
527 /* RX extract mask */
528 up->rxmask = 0x01 | (((up->csize + up->stopb) * 2 - 1) << 0x8);
529 /* TX masks, 8 bit data and 1 bit stop for example:
530 * mask1 = b#0111111110
531 * mask2 = b#1000000000
532 */
533 for (i = 0, up->txmask1 = 0; i < up->csize; i++)
534 up->txmask1 |= (1<<i);
535 up->txmask2 = (1<<i);
536 if (up->stopb) {
537 ++i;
538 up->txmask2 |= (1<<i);
539 }
540 up->txmask1 <<= 1;
541 up->txmask2 <<= 1;
542 /* uart baud rate */
543 port->uartclk = uart_get_baud_rate(port, termios, old, 0, get_sclk()/16);
544
sonic zhangccf68e52009-12-09 12:31:28 -0800545 /* Disable UART */
546 SPORT_PUT_TCR1(up, SPORT_GET_TCR1(up) & ~TSPEN);
547 SPORT_PUT_RCR1(up, SPORT_GET_RCR1(up) & ~RSPEN);
548
549 sport_uart_setup(up, up->csize + up->stopb, port->uartclk);
550
551 /* driver TX line high after config, one dummy data is
552 * necessary to stop sport after shift one byte
553 */
554 SPORT_PUT_TX(up, 0xffff);
555 SPORT_PUT_TX(up, 0xffff);
556 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) | TSPEN));
557 SSYNC();
558 while (!(SPORT_GET_STAT(up) & TXHRE))
559 cpu_relax();
560 SPORT_PUT_TCR1(up, SPORT_GET_TCR1(up) & ~TSPEN);
561 SSYNC();
562
563 /* Port speed changed, update the per-port timeout. */
564 uart_update_timeout(port, termios->c_cflag, port->uartclk);
565
566 /* Enable sport rx */
567 SPORT_PUT_RCR1(up, SPORT_GET_RCR1(up) | RSPEN);
568 SSYNC();
569
570 spin_unlock_irqrestore(&up->port.lock, flags);
571}
572
Bryan Wu2f351742008-04-30 00:52:12 -0700573struct uart_ops sport_uart_ops = {
574 .tx_empty = sport_tx_empty,
575 .set_mctrl = sport_set_mctrl,
576 .get_mctrl = sport_get_mctrl,
577 .stop_tx = sport_stop_tx,
578 .start_tx = sport_start_tx,
579 .stop_rx = sport_stop_rx,
580 .enable_ms = sport_enable_ms,
581 .break_ctl = sport_break_ctl,
582 .startup = sport_startup,
583 .shutdown = sport_shutdown,
584 .set_termios = sport_set_termios,
585 .type = sport_type,
586 .release_port = sport_release_port,
587 .request_port = sport_request_port,
588 .config_port = sport_config_port,
589 .verify_port = sport_verify_port,
590};
591
sonic zhangccf68e52009-12-09 12:31:28 -0800592#define BFIN_SPORT_UART_MAX_PORTS 4
593
594static struct sport_uart_port *bfin_sport_uart_ports[BFIN_SPORT_UART_MAX_PORTS];
595
596#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
Sonic Zhangb59588a2010-03-09 12:25:32 -0500597#define CLASS_BFIN_SPORT_CONSOLE "bfin-sport-console"
598
sonic zhangccf68e52009-12-09 12:31:28 -0800599static int __init
600sport_uart_console_setup(struct console *co, char *options)
601{
602 struct sport_uart_port *up;
603 int baud = 57600;
604 int bits = 8;
605 int parity = 'n';
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500606# ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
607 int flow = 'r';
608# else
sonic zhangccf68e52009-12-09 12:31:28 -0800609 int flow = 'n';
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500610# endif
sonic zhangccf68e52009-12-09 12:31:28 -0800611
612 /* Check whether an invalid uart number has been specified */
613 if (co->index < 0 || co->index >= BFIN_SPORT_UART_MAX_PORTS)
614 return -ENODEV;
615
616 up = bfin_sport_uart_ports[co->index];
617 if (!up)
618 return -ENODEV;
619
620 if (options)
621 uart_parse_options(options, &baud, &parity, &bits, &flow);
622
623 return uart_set_options(&up->port, co, baud, parity, bits, flow);
624}
625
626static void sport_uart_console_putchar(struct uart_port *port, int ch)
627{
628 struct sport_uart_port *up = (struct sport_uart_port *)port;
629
630 while (SPORT_GET_STAT(up) & TXF)
631 barrier();
632
633 tx_one_byte(up, ch);
634}
635
636/*
637 * Interrupts are disabled on entering
638 */
639static void
640sport_uart_console_write(struct console *co, const char *s, unsigned int count)
641{
642 struct sport_uart_port *up = bfin_sport_uart_ports[co->index];
643 unsigned long flags;
644
645 spin_lock_irqsave(&up->port.lock, flags);
646
647 if (SPORT_GET_TCR1(up) & TSPEN)
648 uart_console_write(&up->port, s, count, sport_uart_console_putchar);
649 else {
650 /* dummy data to start sport */
651 while (SPORT_GET_STAT(up) & TXF)
652 barrier();
653 SPORT_PUT_TX(up, 0xffff);
654 /* Enable transmit, then an interrupt will generated */
655 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) | TSPEN));
656 SSYNC();
657
658 uart_console_write(&up->port, s, count, sport_uart_console_putchar);
659
660 /* Although the hold register is empty, last byte is still in shift
661 * register and not sent out yet. So, put a dummy data into TX FIFO.
662 * Then, sport tx stops when last byte is shift out and the dummy
663 * data is moved into the shift register.
664 */
665 while (SPORT_GET_STAT(up) & TXF)
666 barrier();
667 SPORT_PUT_TX(up, 0xffff);
668 while (!(SPORT_GET_STAT(up) & TXHRE))
669 barrier();
670
671 /* Stop sport tx transfer */
672 SPORT_PUT_TCR1(up, (SPORT_GET_TCR1(up) & ~TSPEN));
673 SSYNC();
Bryan Wu2f351742008-04-30 00:52:12 -0700674 }
sonic zhangccf68e52009-12-09 12:31:28 -0800675
676 spin_unlock_irqrestore(&up->port.lock, flags);
677}
678
679static struct uart_driver sport_uart_reg;
680
681static struct console sport_uart_console = {
682 .name = DEVICE_NAME,
683 .write = sport_uart_console_write,
684 .device = uart_console_device,
685 .setup = sport_uart_console_setup,
686 .flags = CON_PRINTBUFFER,
687 .index = -1,
688 .data = &sport_uart_reg,
Bryan Wu2f351742008-04-30 00:52:12 -0700689};
690
sonic zhangccf68e52009-12-09 12:31:28 -0800691#define SPORT_UART_CONSOLE (&sport_uart_console)
692#else
693#define SPORT_UART_CONSOLE NULL
694#endif /* CONFIG_SERIAL_BFIN_SPORT_CONSOLE */
695
696
Bryan Wu2f351742008-04-30 00:52:12 -0700697static struct uart_driver sport_uart_reg = {
698 .owner = THIS_MODULE,
sonic zhangccf68e52009-12-09 12:31:28 -0800699 .driver_name = DRV_NAME,
700 .dev_name = DEVICE_NAME,
Bryan Wu2f351742008-04-30 00:52:12 -0700701 .major = 204,
702 .minor = 84,
sonic zhangccf68e52009-12-09 12:31:28 -0800703 .nr = BFIN_SPORT_UART_MAX_PORTS,
704 .cons = SPORT_UART_CONSOLE,
Bryan Wu2f351742008-04-30 00:52:12 -0700705};
706
sonic zhangccf68e52009-12-09 12:31:28 -0800707#ifdef CONFIG_PM
708static int sport_uart_suspend(struct device *dev)
Bryan Wu2f351742008-04-30 00:52:12 -0700709{
sonic zhangccf68e52009-12-09 12:31:28 -0800710 struct sport_uart_port *sport = dev_get_drvdata(dev);
Bryan Wu2f351742008-04-30 00:52:12 -0700711
sonic zhangccf68e52009-12-09 12:31:28 -0800712 dev_dbg(dev, "%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700713 if (sport)
714 uart_suspend_port(&sport_uart_reg, &sport->port);
715
716 return 0;
717}
718
sonic zhangccf68e52009-12-09 12:31:28 -0800719static int sport_uart_resume(struct device *dev)
Bryan Wu2f351742008-04-30 00:52:12 -0700720{
sonic zhangccf68e52009-12-09 12:31:28 -0800721 struct sport_uart_port *sport = dev_get_drvdata(dev);
Bryan Wu2f351742008-04-30 00:52:12 -0700722
sonic zhangccf68e52009-12-09 12:31:28 -0800723 dev_dbg(dev, "%s enter\n", __func__);
Bryan Wu2f351742008-04-30 00:52:12 -0700724 if (sport)
725 uart_resume_port(&sport_uart_reg, &sport->port);
726
727 return 0;
728}
729
sonic zhangccf68e52009-12-09 12:31:28 -0800730static struct dev_pm_ops bfin_sport_uart_dev_pm_ops = {
731 .suspend = sport_uart_suspend,
732 .resume = sport_uart_resume,
733};
734#endif
Bryan Wu2f351742008-04-30 00:52:12 -0700735
sonic zhangccf68e52009-12-09 12:31:28 -0800736static int __devinit sport_uart_probe(struct platform_device *pdev)
737{
738 struct resource *res;
739 struct sport_uart_port *sport;
740 int ret = 0;
741
742 dev_dbg(&pdev->dev, "%s enter\n", __func__);
743
744 if (pdev->id < 0 || pdev->id >= BFIN_SPORT_UART_MAX_PORTS) {
745 dev_err(&pdev->dev, "Wrong sport uart platform device id.\n");
746 return -ENOENT;
747 }
748
749 if (bfin_sport_uart_ports[pdev->id] == NULL) {
750 bfin_sport_uart_ports[pdev->id] =
Sonic Zhangf4d10ca2010-03-09 12:25:35 -0500751 kzalloc(sizeof(struct sport_uart_port), GFP_KERNEL);
sonic zhangccf68e52009-12-09 12:31:28 -0800752 sport = bfin_sport_uart_ports[pdev->id];
753 if (!sport) {
754 dev_err(&pdev->dev,
Sonic Zhangf4d10ca2010-03-09 12:25:35 -0500755 "Fail to malloc sport_uart_port\n");
sonic zhangccf68e52009-12-09 12:31:28 -0800756 return -ENOMEM;
757 }
758
759 ret = peripheral_request_list(
760 (unsigned short *)pdev->dev.platform_data, DRV_NAME);
761 if (ret) {
762 dev_err(&pdev->dev,
763 "Fail to request SPORT peripherals\n");
764 goto out_error_free_mem;
765 }
766
767 spin_lock_init(&sport->port.lock);
768 sport->port.fifosize = SPORT_TX_FIFO_SIZE,
769 sport->port.ops = &sport_uart_ops;
770 sport->port.line = pdev->id;
771 sport->port.iotype = UPIO_MEM;
772 sport->port.flags = UPF_BOOT_AUTOCONF;
773
774 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
775 if (res == NULL) {
776 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
777 ret = -ENOENT;
778 goto out_error_free_peripherals;
779 }
780
Tobias Klausere1144742010-05-11 09:10:23 +0200781 sport->port.membase = ioremap(res->start, resource_size(res));
sonic zhangccf68e52009-12-09 12:31:28 -0800782 if (!sport->port.membase) {
783 dev_err(&pdev->dev, "Cannot map sport IO\n");
784 ret = -ENXIO;
785 goto out_error_free_peripherals;
786 }
Sonic Zhange8126b32010-03-09 12:25:31 -0500787 sport->port.mapbase = res->start;
sonic zhangccf68e52009-12-09 12:31:28 -0800788
789 sport->port.irq = platform_get_irq(pdev, 0);
Vasiliy Kulikov940f3be2011-01-17 13:08:52 +0300790 if ((int)sport->port.irq < 0) {
sonic zhangccf68e52009-12-09 12:31:28 -0800791 dev_err(&pdev->dev, "No sport RX/TX IRQ specified\n");
792 ret = -ENOENT;
793 goto out_error_unmap;
794 }
795
796 sport->err_irq = platform_get_irq(pdev, 1);
797 if (sport->err_irq < 0) {
798 dev_err(&pdev->dev, "No sport status IRQ specified\n");
799 ret = -ENOENT;
800 goto out_error_unmap;
801 }
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500802#ifdef CONFIG_SERIAL_BFIN_SPORT_CTSRTS
803 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
804 if (res == NULL)
805 sport->cts_pin = -1;
806 else
807 sport->cts_pin = res->start;
808
809 res = platform_get_resource(pdev, IORESOURCE_IO, 1);
810 if (res == NULL)
811 sport->rts_pin = -1;
812 else
813 sport->rts_pin = res->start;
814
815 if (sport->rts_pin >= 0)
816 gpio_request(sport->rts_pin, DRV_NAME);
817#endif
sonic zhangccf68e52009-12-09 12:31:28 -0800818 }
819
820#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
821 if (!is_early_platform_device(pdev)) {
822#endif
823 sport = bfin_sport_uart_ports[pdev->id];
824 sport->port.dev = &pdev->dev;
825 dev_set_drvdata(&pdev->dev, sport);
826 ret = uart_add_one_port(&sport_uart_reg, &sport->port);
827#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
828 }
829#endif
830 if (!ret)
831 return 0;
832
833 if (sport) {
834out_error_unmap:
835 iounmap(sport->port.membase);
836out_error_free_peripherals:
837 peripheral_free_list(
838 (unsigned short *)pdev->dev.platform_data);
839out_error_free_mem:
840 kfree(sport);
841 bfin_sport_uart_ports[pdev->id] = NULL;
842 }
843
844 return ret;
Bryan Wu2f351742008-04-30 00:52:12 -0700845}
846
sonic zhangccf68e52009-12-09 12:31:28 -0800847static int __devexit sport_uart_remove(struct platform_device *pdev)
Bryan Wu2f351742008-04-30 00:52:12 -0700848{
sonic zhangccf68e52009-12-09 12:31:28 -0800849 struct sport_uart_port *sport = platform_get_drvdata(pdev);
Bryan Wu2f351742008-04-30 00:52:12 -0700850
sonic zhangccf68e52009-12-09 12:31:28 -0800851 dev_dbg(&pdev->dev, "%s enter\n", __func__);
852 dev_set_drvdata(&pdev->dev, NULL);
Bryan Wu2f351742008-04-30 00:52:12 -0700853
sonic zhangccf68e52009-12-09 12:31:28 -0800854 if (sport) {
Bryan Wu2f351742008-04-30 00:52:12 -0700855 uart_remove_one_port(&sport_uart_reg, &sport->port);
Sonic Zhang1f7d1c82010-03-09 12:25:33 -0500856#ifdef CONFIG_SERIAL_BFIN_CTSRTS
857 if (sport->rts_pin >= 0)
858 gpio_free(sport->rts_pin);
859#endif
sonic zhangccf68e52009-12-09 12:31:28 -0800860 iounmap(sport->port.membase);
861 peripheral_free_list(
862 (unsigned short *)pdev->dev.platform_data);
863 kfree(sport);
864 bfin_sport_uart_ports[pdev->id] = NULL;
865 }
Bryan Wu2f351742008-04-30 00:52:12 -0700866
867 return 0;
868}
869
870static struct platform_driver sport_uart_driver = {
871 .probe = sport_uart_probe,
sonic zhangccf68e52009-12-09 12:31:28 -0800872 .remove = __devexit_p(sport_uart_remove),
Bryan Wu2f351742008-04-30 00:52:12 -0700873 .driver = {
874 .name = DRV_NAME,
sonic zhangccf68e52009-12-09 12:31:28 -0800875#ifdef CONFIG_PM
876 .pm = &bfin_sport_uart_dev_pm_ops,
877#endif
Bryan Wu2f351742008-04-30 00:52:12 -0700878 },
879};
880
sonic zhangccf68e52009-12-09 12:31:28 -0800881#ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE
882static __initdata struct early_platform_driver early_sport_uart_driver = {
Sonic Zhangb59588a2010-03-09 12:25:32 -0500883 .class_str = CLASS_BFIN_SPORT_CONSOLE,
sonic zhangccf68e52009-12-09 12:31:28 -0800884 .pdrv = &sport_uart_driver,
885 .requested_id = EARLY_PLATFORM_ID_UNSET,
886};
887
888static int __init sport_uart_rs_console_init(void)
889{
890 early_platform_driver_register(&early_sport_uart_driver, DRV_NAME);
891
Sonic Zhangb59588a2010-03-09 12:25:32 -0500892 early_platform_driver_probe(CLASS_BFIN_SPORT_CONSOLE,
893 BFIN_SPORT_UART_MAX_PORTS, 0);
sonic zhangccf68e52009-12-09 12:31:28 -0800894
895 register_console(&sport_uart_console);
896
897 return 0;
898}
899console_initcall(sport_uart_rs_console_init);
900#endif
901
Bryan Wu2f351742008-04-30 00:52:12 -0700902static int __init sport_uart_init(void)
903{
904 int ret;
905
Sonic Zhange8126b32010-03-09 12:25:31 -0500906 pr_info("Blackfin uart over sport driver\n");
sonic zhangccf68e52009-12-09 12:31:28 -0800907
Bryan Wu2f351742008-04-30 00:52:12 -0700908 ret = uart_register_driver(&sport_uart_reg);
sonic zhangccf68e52009-12-09 12:31:28 -0800909 if (ret) {
910 pr_err("failed to register %s:%d\n",
Bryan Wu2f351742008-04-30 00:52:12 -0700911 sport_uart_reg.driver_name, ret);
912 return ret;
913 }
914
915 ret = platform_driver_register(&sport_uart_driver);
sonic zhangccf68e52009-12-09 12:31:28 -0800916 if (ret) {
917 pr_err("failed to register sport uart driver:%d\n", ret);
Bryan Wu2f351742008-04-30 00:52:12 -0700918 uart_unregister_driver(&sport_uart_reg);
919 }
920
Bryan Wu2f351742008-04-30 00:52:12 -0700921 return ret;
922}
sonic zhangccf68e52009-12-09 12:31:28 -0800923module_init(sport_uart_init);
Bryan Wu2f351742008-04-30 00:52:12 -0700924
925static void __exit sport_uart_exit(void)
926{
Bryan Wu2f351742008-04-30 00:52:12 -0700927 platform_driver_unregister(&sport_uart_driver);
928 uart_unregister_driver(&sport_uart_reg);
929}
Bryan Wu2f351742008-04-30 00:52:12 -0700930module_exit(sport_uart_exit);
931
sonic zhangccf68e52009-12-09 12:31:28 -0800932MODULE_AUTHOR("Sonic Zhang, Roy Huang");
933MODULE_DESCRIPTION("Blackfin serial over SPORT driver");
Bryan Wu2f351742008-04-30 00:52:12 -0700934MODULE_LICENSE("GPL");