Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Freescale LINFlexD UART serial port driver
4 *
5 * Copyright 2012-2016 Freescale Semiconductor, Inc.
6 * Copyright 2017-2019 NXP
7 */
8
9#include <linux/console.h>
10#include <linux/io.h>
11#include <linux/irq.h>
12#include <linux/module.h>
13#include <linux/of.h>
14#include <linux/platform_device.h>
15#include <linux/serial_core.h>
16#include <linux/slab.h>
17#include <linux/tty_flip.h>
18#include <linux/delay.h>
19
20/* All registers are 32-bit width */
21
22#define LINCR1 0x0000 /* LIN control register */
23#define LINIER 0x0004 /* LIN interrupt enable register */
24#define LINSR 0x0008 /* LIN status register */
25#define LINESR 0x000C /* LIN error status register */
26#define UARTCR 0x0010 /* UART mode control register */
27#define UARTSR 0x0014 /* UART mode status register */
28#define LINTCSR 0x0018 /* LIN timeout control status register */
29#define LINOCR 0x001C /* LIN output compare register */
30#define LINTOCR 0x0020 /* LIN timeout control register */
31#define LINFBRR 0x0024 /* LIN fractional baud rate register */
32#define LINIBRR 0x0028 /* LIN integer baud rate register */
33#define LINCFR 0x002C /* LIN checksum field register */
34#define LINCR2 0x0030 /* LIN control register 2 */
35#define BIDR 0x0034 /* Buffer identifier register */
36#define BDRL 0x0038 /* Buffer data register least significant */
37#define BDRM 0x003C /* Buffer data register most significant */
38#define IFER 0x0040 /* Identifier filter enable register */
39#define IFMI 0x0044 /* Identifier filter match index */
40#define IFMR 0x0048 /* Identifier filter mode register */
41#define GCR 0x004C /* Global control register */
42#define UARTPTO 0x0050 /* UART preset timeout register */
43#define UARTCTO 0x0054 /* UART current timeout register */
44
45/*
46 * Register field definitions
47 */
48
49#define LINFLEXD_LINCR1_INIT BIT(0)
50#define LINFLEXD_LINCR1_MME BIT(4)
51#define LINFLEXD_LINCR1_BF BIT(7)
52
53#define LINFLEXD_LINSR_LINS_INITMODE BIT(12)
54#define LINFLEXD_LINSR_LINS_MASK (0xF << 12)
55
56#define LINFLEXD_LINIER_SZIE BIT(15)
57#define LINFLEXD_LINIER_OCIE BIT(14)
58#define LINFLEXD_LINIER_BEIE BIT(13)
59#define LINFLEXD_LINIER_CEIE BIT(12)
60#define LINFLEXD_LINIER_HEIE BIT(11)
61#define LINFLEXD_LINIER_FEIE BIT(8)
62#define LINFLEXD_LINIER_BOIE BIT(7)
63#define LINFLEXD_LINIER_LSIE BIT(6)
64#define LINFLEXD_LINIER_WUIE BIT(5)
65#define LINFLEXD_LINIER_DBFIE BIT(4)
66#define LINFLEXD_LINIER_DBEIETOIE BIT(3)
67#define LINFLEXD_LINIER_DRIE BIT(2)
68#define LINFLEXD_LINIER_DTIE BIT(1)
69#define LINFLEXD_LINIER_HRIE BIT(0)
70
71#define LINFLEXD_UARTCR_OSR_MASK (0xF << 24)
72#define LINFLEXD_UARTCR_OSR(uartcr) (((uartcr) \
73 & LINFLEXD_UARTCR_OSR_MASK) >> 24)
74
75#define LINFLEXD_UARTCR_ROSE BIT(23)
76
77#define LINFLEXD_UARTCR_RFBM BIT(9)
78#define LINFLEXD_UARTCR_TFBM BIT(8)
79#define LINFLEXD_UARTCR_WL1 BIT(7)
80#define LINFLEXD_UARTCR_PC1 BIT(6)
81
82#define LINFLEXD_UARTCR_RXEN BIT(5)
83#define LINFLEXD_UARTCR_TXEN BIT(4)
84#define LINFLEXD_UARTCR_PC0 BIT(3)
85
86#define LINFLEXD_UARTCR_PCE BIT(2)
87#define LINFLEXD_UARTCR_WL0 BIT(1)
88#define LINFLEXD_UARTCR_UART BIT(0)
89
90#define LINFLEXD_UARTSR_SZF BIT(15)
91#define LINFLEXD_UARTSR_OCF BIT(14)
92#define LINFLEXD_UARTSR_PE3 BIT(13)
93#define LINFLEXD_UARTSR_PE2 BIT(12)
94#define LINFLEXD_UARTSR_PE1 BIT(11)
95#define LINFLEXD_UARTSR_PE0 BIT(10)
96#define LINFLEXD_UARTSR_RMB BIT(9)
97#define LINFLEXD_UARTSR_FEF BIT(8)
98#define LINFLEXD_UARTSR_BOF BIT(7)
99#define LINFLEXD_UARTSR_RPS BIT(6)
100#define LINFLEXD_UARTSR_WUF BIT(5)
101#define LINFLEXD_UARTSR_4 BIT(4)
102
103#define LINFLEXD_UARTSR_TO BIT(3)
104
105#define LINFLEXD_UARTSR_DRFRFE BIT(2)
106#define LINFLEXD_UARTSR_DTFTFF BIT(1)
107#define LINFLEXD_UARTSR_NF BIT(0)
108#define LINFLEXD_UARTSR_PE (LINFLEXD_UARTSR_PE0 |\
109 LINFLEXD_UARTSR_PE1 |\
110 LINFLEXD_UARTSR_PE2 |\
111 LINFLEXD_UARTSR_PE3)
112
113#define LINFLEX_LDIV_MULTIPLIER (16)
114
115#define DRIVER_NAME "fsl-linflexuart"
116#define DEV_NAME "ttyLF"
117#define UART_NR 4
118
119#define EARLYCON_BUFFER_INITIAL_CAP 8
120
121#define PREINIT_DELAY 2000 /* us */
122
123static const struct of_device_id linflex_dt_ids[] = {
124 {
125 .compatible = "fsl,s32v234-linflexuart",
126 },
127 { /* sentinel */ }
128};
129MODULE_DEVICE_TABLE(of, linflex_dt_ids);
130
131#ifdef CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE
132static struct uart_port *earlycon_port;
133static bool linflex_earlycon_same_instance;
134static DEFINE_SPINLOCK(init_lock);
135static bool during_init;
136
137static struct {
138 char *content;
139 unsigned int len, cap;
140} earlycon_buf;
141#endif
142
143static void linflex_stop_tx(struct uart_port *port)
144{
145 unsigned long ier;
146
147 ier = readl(port->membase + LINIER);
148 ier &= ~(LINFLEXD_LINIER_DTIE);
149 writel(ier, port->membase + LINIER);
150}
151
152static void linflex_stop_rx(struct uart_port *port)
153{
154 unsigned long ier;
155
156 ier = readl(port->membase + LINIER);
157 writel(ier & ~LINFLEXD_LINIER_DRIE, port->membase + LINIER);
158}
159
160static void linflex_put_char(struct uart_port *sport, unsigned char c)
161{
162 unsigned long status;
163
164 writeb(c, sport->membase + BDRL);
165
166 /* Waiting for data transmission completed. */
167 while (((status = readl(sport->membase + UARTSR)) &
168 LINFLEXD_UARTSR_DTFTFF) !=
169 LINFLEXD_UARTSR_DTFTFF)
170 ;
171
172 writel(status | LINFLEXD_UARTSR_DTFTFF, sport->membase + UARTSR);
173}
174
175static inline void linflex_transmit_buffer(struct uart_port *sport)
176{
177 struct circ_buf *xmit = &sport->state->xmit;
178
179 while (!uart_circ_empty(xmit)) {
180 linflex_put_char(sport, xmit->buf[xmit->tail]);
181 uart_xmit_advance(sport, 1);
182 }
183
184 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
185 uart_write_wakeup(sport);
186
187 if (uart_circ_empty(xmit))
188 linflex_stop_tx(sport);
189}
190
191static void linflex_start_tx(struct uart_port *port)
192{
193 unsigned long ier;
194
195 linflex_transmit_buffer(port);
196 ier = readl(port->membase + LINIER);
197 writel(ier | LINFLEXD_LINIER_DTIE, port->membase + LINIER);
198}
199
200static irqreturn_t linflex_txint(int irq, void *dev_id)
201{
202 struct uart_port *sport = dev_id;
203 struct circ_buf *xmit = &sport->state->xmit;
204 unsigned long flags;
205
206 uart_port_lock_irqsave(sport, &flags);
207
208 if (sport->x_char) {
209 linflex_put_char(sport, sport->x_char);
210 goto out;
211 }
212
213 if (uart_circ_empty(xmit) || uart_tx_stopped(sport)) {
214 linflex_stop_tx(sport);
215 goto out;
216 }
217
218 linflex_transmit_buffer(sport);
219out:
220 uart_port_unlock_irqrestore(sport, flags);
221 return IRQ_HANDLED;
222}
223
224static irqreturn_t linflex_rxint(int irq, void *dev_id)
225{
226 struct uart_port *sport = dev_id;
227 unsigned int flg;
228 struct tty_port *port = &sport->state->port;
229 unsigned long flags, status;
230 unsigned char rx;
231 bool brk;
232
233 uart_port_lock_irqsave(sport, &flags);
234
235 status = readl(sport->membase + UARTSR);
236 while (status & LINFLEXD_UARTSR_RMB) {
237 rx = readb(sport->membase + BDRM);
238 brk = false;
239 flg = TTY_NORMAL;
240 sport->icount.rx++;
241
242 if (status & (LINFLEXD_UARTSR_BOF | LINFLEXD_UARTSR_FEF |
243 LINFLEXD_UARTSR_PE)) {
244 if (status & LINFLEXD_UARTSR_BOF)
245 sport->icount.overrun++;
246 if (status & LINFLEXD_UARTSR_FEF) {
247 if (!rx) {
248 brk = true;
249 sport->icount.brk++;
250 } else
251 sport->icount.frame++;
252 }
253 if (status & LINFLEXD_UARTSR_PE)
254 sport->icount.parity++;
255 }
256
257 writel(status, sport->membase + UARTSR);
258 status = readl(sport->membase + UARTSR);
259
260 if (brk) {
261 uart_handle_break(sport);
262 } else {
263 if (uart_handle_sysrq_char(sport, (unsigned char)rx))
264 continue;
265 tty_insert_flip_char(port, rx, flg);
266 }
267 }
268
269 uart_port_unlock_irqrestore(sport, flags);
270
271 tty_flip_buffer_push(port);
272
273 return IRQ_HANDLED;
274}
275
276static irqreturn_t linflex_int(int irq, void *dev_id)
277{
278 struct uart_port *sport = dev_id;
279 unsigned long status;
280
281 status = readl(sport->membase + UARTSR);
282
283 if (status & LINFLEXD_UARTSR_DRFRFE)
284 linflex_rxint(irq, dev_id);
285 if (status & LINFLEXD_UARTSR_DTFTFF)
286 linflex_txint(irq, dev_id);
287
288 return IRQ_HANDLED;
289}
290
291/* return TIOCSER_TEMT when transmitter is not busy */
292static unsigned int linflex_tx_empty(struct uart_port *port)
293{
294 unsigned long status;
295
296 status = readl(port->membase + UARTSR) & LINFLEXD_UARTSR_DTFTFF;
297
298 return status ? TIOCSER_TEMT : 0;
299}
300
301static unsigned int linflex_get_mctrl(struct uart_port *port)
302{
303 return 0;
304}
305
306static void linflex_set_mctrl(struct uart_port *port, unsigned int mctrl)
307{
308}
309
310static void linflex_break_ctl(struct uart_port *port, int break_state)
311{
312}
313
314static void linflex_setup_watermark(struct uart_port *sport)
315{
316 unsigned long cr, ier, cr1;
317
318 /* Disable transmission/reception */
319 ier = readl(sport->membase + LINIER);
320 ier &= ~(LINFLEXD_LINIER_DRIE | LINFLEXD_LINIER_DTIE);
321 writel(ier, sport->membase + LINIER);
322
323 cr = readl(sport->membase + UARTCR);
324 cr &= ~(LINFLEXD_UARTCR_RXEN | LINFLEXD_UARTCR_TXEN);
325 writel(cr, sport->membase + UARTCR);
326
327 /* Enter initialization mode by setting INIT bit */
328
329 /* set the Linflex in master mode and activate by-pass filter */
330 cr1 = LINFLEXD_LINCR1_BF | LINFLEXD_LINCR1_MME
331 | LINFLEXD_LINCR1_INIT;
332 writel(cr1, sport->membase + LINCR1);
333
334 /* wait for init mode entry */
335 while ((readl(sport->membase + LINSR)
336 & LINFLEXD_LINSR_LINS_MASK)
337 != LINFLEXD_LINSR_LINS_INITMODE)
338 ;
339
340 /*
341 * UART = 0x1; - Linflex working in UART mode
342 * TXEN = 0x1; - Enable transmission of data now
343 * RXEn = 0x1; - Receiver enabled
344 * WL0 = 0x1; - 8 bit data
345 * PCE = 0x0; - No parity
346 */
347
348 /* set UART bit to allow writing other bits */
349 writel(LINFLEXD_UARTCR_UART, sport->membase + UARTCR);
350
351 cr = (LINFLEXD_UARTCR_RXEN | LINFLEXD_UARTCR_TXEN |
352 LINFLEXD_UARTCR_WL0 | LINFLEXD_UARTCR_UART);
353
354 writel(cr, sport->membase + UARTCR);
355
356 cr1 &= ~(LINFLEXD_LINCR1_INIT);
357
358 writel(cr1, sport->membase + LINCR1);
359
360 ier = readl(sport->membase + LINIER);
361 ier |= LINFLEXD_LINIER_DRIE;
362 ier |= LINFLEXD_LINIER_DTIE;
363
364 writel(ier, sport->membase + LINIER);
365}
366
367static int linflex_startup(struct uart_port *port)
368{
369 int ret = 0;
370 unsigned long flags;
371
372 uart_port_lock_irqsave(port, &flags);
373
374 linflex_setup_watermark(port);
375
376 uart_port_unlock_irqrestore(port, flags);
377
378 ret = devm_request_irq(port->dev, port->irq, linflex_int, 0,
379 DRIVER_NAME, port);
380
381 return ret;
382}
383
384static void linflex_shutdown(struct uart_port *port)
385{
386 unsigned long ier;
387 unsigned long flags;
388
389 uart_port_lock_irqsave(port, &flags);
390
391 /* disable interrupts */
392 ier = readl(port->membase + LINIER);
393 ier &= ~(LINFLEXD_LINIER_DRIE | LINFLEXD_LINIER_DTIE);
394 writel(ier, port->membase + LINIER);
395
396 uart_port_unlock_irqrestore(port, flags);
397
398 devm_free_irq(port->dev, port->irq, port);
399}
400
401static void
402linflex_set_termios(struct uart_port *port, struct ktermios *termios,
403 const struct ktermios *old)
404{
405 unsigned long flags;
406 unsigned long cr, old_cr, cr1;
407 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
408
409 cr = readl(port->membase + UARTCR);
410 old_cr = cr;
411
412 /* Enter initialization mode by setting INIT bit */
413 cr1 = readl(port->membase + LINCR1);
414 cr1 |= LINFLEXD_LINCR1_INIT;
415 writel(cr1, port->membase + LINCR1);
416
417 /* wait for init mode entry */
418 while ((readl(port->membase + LINSR)
419 & LINFLEXD_LINSR_LINS_MASK)
420 != LINFLEXD_LINSR_LINS_INITMODE)
421 ;
422
423 /*
424 * only support CS8 and CS7, and for CS7 must enable PE.
425 * supported mode:
426 * - (7,e/o,1)
427 * - (8,n,1)
428 * - (8,e/o,1)
429 */
430 /* enter the UART into configuration mode */
431
432 while ((termios->c_cflag & CSIZE) != CS8 &&
433 (termios->c_cflag & CSIZE) != CS7) {
434 termios->c_cflag &= ~CSIZE;
435 termios->c_cflag |= old_csize;
436 old_csize = CS8;
437 }
438
439 if ((termios->c_cflag & CSIZE) == CS7) {
440 /* Word length: WL1WL0:00 */
441 cr = old_cr & ~LINFLEXD_UARTCR_WL1 & ~LINFLEXD_UARTCR_WL0;
442 }
443
444 if ((termios->c_cflag & CSIZE) == CS8) {
445 /* Word length: WL1WL0:01 */
446 cr = (old_cr | LINFLEXD_UARTCR_WL0) & ~LINFLEXD_UARTCR_WL1;
447 }
448
449 if (termios->c_cflag & CMSPAR) {
450 if ((termios->c_cflag & CSIZE) != CS8) {
451 termios->c_cflag &= ~CSIZE;
452 termios->c_cflag |= CS8;
453 }
454 /* has a space/sticky bit */
455 cr |= LINFLEXD_UARTCR_WL0;
456 }
457
458 if (termios->c_cflag & CSTOPB)
459 termios->c_cflag &= ~CSTOPB;
460
461 /* parity must be enabled when CS7 to match 8-bits format */
462 if ((termios->c_cflag & CSIZE) == CS7)
463 termios->c_cflag |= PARENB;
464
465 if ((termios->c_cflag & PARENB)) {
466 cr |= LINFLEXD_UARTCR_PCE;
467 if (termios->c_cflag & PARODD)
468 cr = (cr | LINFLEXD_UARTCR_PC0) &
469 (~LINFLEXD_UARTCR_PC1);
470 else
471 cr = cr & (~LINFLEXD_UARTCR_PC1 &
472 ~LINFLEXD_UARTCR_PC0);
473 } else {
474 cr &= ~LINFLEXD_UARTCR_PCE;
475 }
476
477 uart_port_lock_irqsave(port, &flags);
478
479 port->read_status_mask = 0;
480
481 if (termios->c_iflag & INPCK)
482 port->read_status_mask |= (LINFLEXD_UARTSR_FEF |
483 LINFLEXD_UARTSR_PE0 |
484 LINFLEXD_UARTSR_PE1 |
485 LINFLEXD_UARTSR_PE2 |
486 LINFLEXD_UARTSR_PE3);
487 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
488 port->read_status_mask |= LINFLEXD_UARTSR_FEF;
489
490 /* characters to ignore */
491 port->ignore_status_mask = 0;
492 if (termios->c_iflag & IGNPAR)
493 port->ignore_status_mask |= LINFLEXD_UARTSR_PE;
494 if (termios->c_iflag & IGNBRK) {
495 port->ignore_status_mask |= LINFLEXD_UARTSR_PE;
496 /*
497 * if we're ignoring parity and break indicators,
498 * ignore overruns too (for real raw support).
499 */
500 if (termios->c_iflag & IGNPAR)
501 port->ignore_status_mask |= LINFLEXD_UARTSR_BOF;
502 }
503
504 writel(cr, port->membase + UARTCR);
505
506 cr1 &= ~(LINFLEXD_LINCR1_INIT);
507
508 writel(cr1, port->membase + LINCR1);
509
510 uart_port_unlock_irqrestore(port, flags);
511}
512
513static const char *linflex_type(struct uart_port *port)
514{
515 return "FSL_LINFLEX";
516}
517
518static void linflex_release_port(struct uart_port *port)
519{
520 /* nothing to do */
521}
522
523static int linflex_request_port(struct uart_port *port)
524{
525 return 0;
526}
527
528/* configure/auto-configure the port */
529static void linflex_config_port(struct uart_port *port, int flags)
530{
531 if (flags & UART_CONFIG_TYPE)
532 port->type = PORT_LINFLEXUART;
533}
534
535static const struct uart_ops linflex_pops = {
536 .tx_empty = linflex_tx_empty,
537 .set_mctrl = linflex_set_mctrl,
538 .get_mctrl = linflex_get_mctrl,
539 .stop_tx = linflex_stop_tx,
540 .start_tx = linflex_start_tx,
541 .stop_rx = linflex_stop_rx,
542 .break_ctl = linflex_break_ctl,
543 .startup = linflex_startup,
544 .shutdown = linflex_shutdown,
545 .set_termios = linflex_set_termios,
546 .type = linflex_type,
547 .request_port = linflex_request_port,
548 .release_port = linflex_release_port,
549 .config_port = linflex_config_port,
550};
551
552static struct uart_port *linflex_ports[UART_NR];
553
554#ifdef CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE
555static void linflex_console_putchar(struct uart_port *port, unsigned char ch)
556{
557 unsigned long cr;
558
559 cr = readl(port->membase + UARTCR);
560
561 writeb(ch, port->membase + BDRL);
562
563 if (!(cr & LINFLEXD_UARTCR_TFBM))
564 while ((readl(port->membase + UARTSR) &
565 LINFLEXD_UARTSR_DTFTFF)
566 != LINFLEXD_UARTSR_DTFTFF)
567 ;
568 else
569 while (readl(port->membase + UARTSR) &
570 LINFLEXD_UARTSR_DTFTFF)
571 ;
572
573 if (!(cr & LINFLEXD_UARTCR_TFBM)) {
574 writel((readl(port->membase + UARTSR) |
575 LINFLEXD_UARTSR_DTFTFF),
576 port->membase + UARTSR);
577 }
578}
579
580static void linflex_earlycon_putchar(struct uart_port *port, unsigned char ch)
581{
582 unsigned long flags;
583 char *ret;
584
585 if (!linflex_earlycon_same_instance) {
586 linflex_console_putchar(port, ch);
587 return;
588 }
589
590 spin_lock_irqsave(&init_lock, flags);
591 if (!during_init)
592 goto outside_init;
593
594 if (earlycon_buf.len >= 1 << CONFIG_LOG_BUF_SHIFT)
595 goto init_release;
596
597 if (!earlycon_buf.cap) {
598 earlycon_buf.content = kmalloc(EARLYCON_BUFFER_INITIAL_CAP,
599 GFP_ATOMIC);
600 earlycon_buf.cap = earlycon_buf.content ?
601 EARLYCON_BUFFER_INITIAL_CAP : 0;
602 } else if (earlycon_buf.len == earlycon_buf.cap) {
603 ret = krealloc(earlycon_buf.content, earlycon_buf.cap << 1,
604 GFP_ATOMIC);
605 if (ret) {
606 earlycon_buf.content = ret;
607 earlycon_buf.cap <<= 1;
608 }
609 }
610
611 if (earlycon_buf.len < earlycon_buf.cap)
612 earlycon_buf.content[earlycon_buf.len++] = ch;
613
614 goto init_release;
615
616outside_init:
617 linflex_console_putchar(port, ch);
618init_release:
619 spin_unlock_irqrestore(&init_lock, flags);
620}
621
622static void linflex_string_write(struct uart_port *sport, const char *s,
623 unsigned int count)
624{
625 unsigned long cr, ier = 0;
626
627 ier = readl(sport->membase + LINIER);
628 linflex_stop_tx(sport);
629
630 cr = readl(sport->membase + UARTCR);
631 cr |= (LINFLEXD_UARTCR_TXEN);
632 writel(cr, sport->membase + UARTCR);
633
634 uart_console_write(sport, s, count, linflex_console_putchar);
635
636 writel(ier, sport->membase + LINIER);
637}
638
639static void
640linflex_console_write(struct console *co, const char *s, unsigned int count)
641{
642 struct uart_port *sport = linflex_ports[co->index];
643 unsigned long flags;
644 int locked = 1;
645
646 if (sport->sysrq)
647 locked = 0;
648 else if (oops_in_progress)
649 locked = uart_port_trylock_irqsave(sport, &flags);
650 else
651 uart_port_lock_irqsave(sport, &flags);
652
653 linflex_string_write(sport, s, count);
654
655 if (locked)
656 uart_port_unlock_irqrestore(sport, flags);
657}
658
659/*
660 * if the port was already initialised (eg, by a boot loader),
661 * try to determine the current setup.
662 */
663static void __init
664linflex_console_get_options(struct uart_port *sport, int *parity, int *bits)
665{
666 unsigned long cr;
667
668 cr = readl(sport->membase + UARTCR);
669 cr &= LINFLEXD_UARTCR_RXEN | LINFLEXD_UARTCR_TXEN;
670
671 if (!cr)
672 return;
673
674 /* ok, the port was enabled */
675
676 *parity = 'n';
677 if (cr & LINFLEXD_UARTCR_PCE) {
678 if (cr & LINFLEXD_UARTCR_PC0)
679 *parity = 'o';
680 else
681 *parity = 'e';
682 }
683
684 if ((cr & LINFLEXD_UARTCR_WL0) && ((cr & LINFLEXD_UARTCR_WL1) == 0)) {
685 if (cr & LINFLEXD_UARTCR_PCE)
686 *bits = 9;
687 else
688 *bits = 8;
689 }
690}
691
692static int __init linflex_console_setup(struct console *co, char *options)
693{
694 struct uart_port *sport;
695 int baud = 115200;
696 int bits = 8;
697 int parity = 'n';
698 int flow = 'n';
699 int ret;
700 int i;
701 unsigned long flags;
702 /*
703 * check whether an invalid uart number has been specified, and
704 * if so, search for the first available port that does have
705 * console support.
706 */
707 if (co->index == -1 || co->index >= ARRAY_SIZE(linflex_ports))
708 co->index = 0;
709
710 sport = linflex_ports[co->index];
711 if (!sport)
712 return -ENODEV;
713
714 if (options)
715 uart_parse_options(options, &baud, &parity, &bits, &flow);
716 else
717 linflex_console_get_options(sport, &parity, &bits);
718
719 if (earlycon_port && sport->mapbase == earlycon_port->mapbase) {
720 linflex_earlycon_same_instance = true;
721
722 spin_lock_irqsave(&init_lock, flags);
723 during_init = true;
724 spin_unlock_irqrestore(&init_lock, flags);
725
726 /* Workaround for character loss or output of many invalid
727 * characters, when INIT mode is entered shortly after a
728 * character has just been printed.
729 */
730 udelay(PREINIT_DELAY);
731 }
732
733 linflex_setup_watermark(sport);
734
735 ret = uart_set_options(sport, co, baud, parity, bits, flow);
736
737 if (!linflex_earlycon_same_instance)
738 goto done;
739
740 spin_lock_irqsave(&init_lock, flags);
741
742 /* Emptying buffer */
743 if (earlycon_buf.len) {
744 for (i = 0; i < earlycon_buf.len; i++)
745 linflex_console_putchar(earlycon_port,
746 earlycon_buf.content[i]);
747
748 kfree(earlycon_buf.content);
749 earlycon_buf.len = 0;
750 }
751
752 during_init = false;
753 spin_unlock_irqrestore(&init_lock, flags);
754
755done:
756 return ret;
757}
758
759static struct uart_driver linflex_reg;
760static struct console linflex_console = {
761 .name = DEV_NAME,
762 .write = linflex_console_write,
763 .device = uart_console_device,
764 .setup = linflex_console_setup,
765 .flags = CON_PRINTBUFFER,
766 .index = -1,
767 .data = &linflex_reg,
768};
769
770static void linflex_earlycon_write(struct console *con, const char *s,
771 unsigned int n)
772{
773 struct earlycon_device *dev = con->data;
774
775 uart_console_write(&dev->port, s, n, linflex_earlycon_putchar);
776}
777
778static int __init linflex_early_console_setup(struct earlycon_device *device,
779 const char *options)
780{
781 if (!device->port.membase)
782 return -ENODEV;
783
784 device->con->write = linflex_earlycon_write;
785 earlycon_port = &device->port;
786
787 return 0;
788}
789
790OF_EARLYCON_DECLARE(linflex, "fsl,s32v234-linflexuart",
791 linflex_early_console_setup);
792
793#define LINFLEX_CONSOLE (&linflex_console)
794#else
795#define LINFLEX_CONSOLE NULL
796#endif
797
798static struct uart_driver linflex_reg = {
799 .owner = THIS_MODULE,
800 .driver_name = DRIVER_NAME,
801 .dev_name = DEV_NAME,
802 .nr = ARRAY_SIZE(linflex_ports),
803 .cons = LINFLEX_CONSOLE,
804};
805
806static int linflex_probe(struct platform_device *pdev)
807{
808 struct device_node *np = pdev->dev.of_node;
809 struct uart_port *sport;
810 struct resource *res;
811 int ret;
812
813 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
814 if (!sport)
815 return -ENOMEM;
816
817 ret = of_alias_get_id(np, "serial");
818 if (ret < 0) {
819 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
820 return ret;
821 }
822 if (ret >= UART_NR) {
823 dev_err(&pdev->dev, "driver limited to %d serial ports\n",
824 UART_NR);
825 return -ENOMEM;
826 }
827
828 sport->line = ret;
829
830 sport->membase = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
831 if (IS_ERR(sport->membase))
832 return PTR_ERR(sport->membase);
833 sport->mapbase = res->start;
834
835 ret = platform_get_irq(pdev, 0);
836 if (ret < 0)
837 return ret;
838
839 sport->dev = &pdev->dev;
840 sport->type = PORT_LINFLEXUART;
841 sport->iotype = UPIO_MEM;
842 sport->irq = ret;
843 sport->ops = &linflex_pops;
844 sport->flags = UPF_BOOT_AUTOCONF;
845 sport->has_sysrq = IS_ENABLED(CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE);
846
847 linflex_ports[sport->line] = sport;
848
849 platform_set_drvdata(pdev, sport);
850
851 return uart_add_one_port(&linflex_reg, sport);
852}
853
854static void linflex_remove(struct platform_device *pdev)
855{
856 struct uart_port *sport = platform_get_drvdata(pdev);
857
858 uart_remove_one_port(&linflex_reg, sport);
859}
860
861#ifdef CONFIG_PM_SLEEP
862static int linflex_suspend(struct device *dev)
863{
864 struct uart_port *sport = dev_get_drvdata(dev);
865
866 uart_suspend_port(&linflex_reg, sport);
867
868 return 0;
869}
870
871static int linflex_resume(struct device *dev)
872{
873 struct uart_port *sport = dev_get_drvdata(dev);
874
875 uart_resume_port(&linflex_reg, sport);
876
877 return 0;
878}
879#endif
880
881static SIMPLE_DEV_PM_OPS(linflex_pm_ops, linflex_suspend, linflex_resume);
882
883static struct platform_driver linflex_driver = {
884 .probe = linflex_probe,
885 .remove_new = linflex_remove,
886 .driver = {
887 .name = DRIVER_NAME,
888 .of_match_table = linflex_dt_ids,
889 .pm = &linflex_pm_ops,
890 },
891};
892
893static int __init linflex_serial_init(void)
894{
895 int ret;
896
897 ret = uart_register_driver(&linflex_reg);
898 if (ret)
899 return ret;
900
901 ret = platform_driver_register(&linflex_driver);
902 if (ret)
903 uart_unregister_driver(&linflex_reg);
904
905 return ret;
906}
907
908static void __exit linflex_serial_exit(void)
909{
910 platform_driver_unregister(&linflex_driver);
911 uart_unregister_driver(&linflex_reg);
912}
913
914module_init(linflex_serial_init);
915module_exit(linflex_serial_exit);
916
917MODULE_DESCRIPTION("Freescale LINFlexD serial port driver");
918MODULE_LICENSE("GPL v2");
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Freescale LINFlexD UART serial port driver
4 *
5 * Copyright 2012-2016 Freescale Semiconductor, Inc.
6 * Copyright 2017-2019 NXP
7 */
8
9#include <linux/console.h>
10#include <linux/io.h>
11#include <linux/irq.h>
12#include <linux/module.h>
13#include <linux/of.h>
14#include <linux/of_device.h>
15#include <linux/serial_core.h>
16#include <linux/slab.h>
17#include <linux/tty_flip.h>
18#include <linux/delay.h>
19
20/* All registers are 32-bit width */
21
22#define LINCR1 0x0000 /* LIN control register */
23#define LINIER 0x0004 /* LIN interrupt enable register */
24#define LINSR 0x0008 /* LIN status register */
25#define LINESR 0x000C /* LIN error status register */
26#define UARTCR 0x0010 /* UART mode control register */
27#define UARTSR 0x0014 /* UART mode status register */
28#define LINTCSR 0x0018 /* LIN timeout control status register */
29#define LINOCR 0x001C /* LIN output compare register */
30#define LINTOCR 0x0020 /* LIN timeout control register */
31#define LINFBRR 0x0024 /* LIN fractional baud rate register */
32#define LINIBRR 0x0028 /* LIN integer baud rate register */
33#define LINCFR 0x002C /* LIN checksum field register */
34#define LINCR2 0x0030 /* LIN control register 2 */
35#define BIDR 0x0034 /* Buffer identifier register */
36#define BDRL 0x0038 /* Buffer data register least significant */
37#define BDRM 0x003C /* Buffer data register most significant */
38#define IFER 0x0040 /* Identifier filter enable register */
39#define IFMI 0x0044 /* Identifier filter match index */
40#define IFMR 0x0048 /* Identifier filter mode register */
41#define GCR 0x004C /* Global control register */
42#define UARTPTO 0x0050 /* UART preset timeout register */
43#define UARTCTO 0x0054 /* UART current timeout register */
44
45/*
46 * Register field definitions
47 */
48
49#define LINFLEXD_LINCR1_INIT BIT(0)
50#define LINFLEXD_LINCR1_MME BIT(4)
51#define LINFLEXD_LINCR1_BF BIT(7)
52
53#define LINFLEXD_LINSR_LINS_INITMODE BIT(12)
54#define LINFLEXD_LINSR_LINS_MASK (0xF << 12)
55
56#define LINFLEXD_LINIER_SZIE BIT(15)
57#define LINFLEXD_LINIER_OCIE BIT(14)
58#define LINFLEXD_LINIER_BEIE BIT(13)
59#define LINFLEXD_LINIER_CEIE BIT(12)
60#define LINFLEXD_LINIER_HEIE BIT(11)
61#define LINFLEXD_LINIER_FEIE BIT(8)
62#define LINFLEXD_LINIER_BOIE BIT(7)
63#define LINFLEXD_LINIER_LSIE BIT(6)
64#define LINFLEXD_LINIER_WUIE BIT(5)
65#define LINFLEXD_LINIER_DBFIE BIT(4)
66#define LINFLEXD_LINIER_DBEIETOIE BIT(3)
67#define LINFLEXD_LINIER_DRIE BIT(2)
68#define LINFLEXD_LINIER_DTIE BIT(1)
69#define LINFLEXD_LINIER_HRIE BIT(0)
70
71#define LINFLEXD_UARTCR_OSR_MASK (0xF << 24)
72#define LINFLEXD_UARTCR_OSR(uartcr) (((uartcr) \
73 & LINFLEXD_UARTCR_OSR_MASK) >> 24)
74
75#define LINFLEXD_UARTCR_ROSE BIT(23)
76
77#define LINFLEXD_UARTCR_RFBM BIT(9)
78#define LINFLEXD_UARTCR_TFBM BIT(8)
79#define LINFLEXD_UARTCR_WL1 BIT(7)
80#define LINFLEXD_UARTCR_PC1 BIT(6)
81
82#define LINFLEXD_UARTCR_RXEN BIT(5)
83#define LINFLEXD_UARTCR_TXEN BIT(4)
84#define LINFLEXD_UARTCR_PC0 BIT(3)
85
86#define LINFLEXD_UARTCR_PCE BIT(2)
87#define LINFLEXD_UARTCR_WL0 BIT(1)
88#define LINFLEXD_UARTCR_UART BIT(0)
89
90#define LINFLEXD_UARTSR_SZF BIT(15)
91#define LINFLEXD_UARTSR_OCF BIT(14)
92#define LINFLEXD_UARTSR_PE3 BIT(13)
93#define LINFLEXD_UARTSR_PE2 BIT(12)
94#define LINFLEXD_UARTSR_PE1 BIT(11)
95#define LINFLEXD_UARTSR_PE0 BIT(10)
96#define LINFLEXD_UARTSR_RMB BIT(9)
97#define LINFLEXD_UARTSR_FEF BIT(8)
98#define LINFLEXD_UARTSR_BOF BIT(7)
99#define LINFLEXD_UARTSR_RPS BIT(6)
100#define LINFLEXD_UARTSR_WUF BIT(5)
101#define LINFLEXD_UARTSR_4 BIT(4)
102
103#define LINFLEXD_UARTSR_TO BIT(3)
104
105#define LINFLEXD_UARTSR_DRFRFE BIT(2)
106#define LINFLEXD_UARTSR_DTFTFF BIT(1)
107#define LINFLEXD_UARTSR_NF BIT(0)
108#define LINFLEXD_UARTSR_PE (LINFLEXD_UARTSR_PE0 |\
109 LINFLEXD_UARTSR_PE1 |\
110 LINFLEXD_UARTSR_PE2 |\
111 LINFLEXD_UARTSR_PE3)
112
113#define LINFLEX_LDIV_MULTIPLIER (16)
114
115#define DRIVER_NAME "fsl-linflexuart"
116#define DEV_NAME "ttyLF"
117#define UART_NR 4
118
119#define EARLYCON_BUFFER_INITIAL_CAP 8
120
121#define PREINIT_DELAY 2000 /* us */
122
123static const struct of_device_id linflex_dt_ids[] = {
124 {
125 .compatible = "fsl,s32v234-linflexuart",
126 },
127 { /* sentinel */ }
128};
129MODULE_DEVICE_TABLE(of, linflex_dt_ids);
130
131#ifdef CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE
132static struct uart_port *earlycon_port;
133static bool linflex_earlycon_same_instance;
134static DEFINE_SPINLOCK(init_lock);
135static bool during_init;
136
137static struct {
138 char *content;
139 unsigned int len, cap;
140} earlycon_buf;
141#endif
142
143static void linflex_stop_tx(struct uart_port *port)
144{
145 unsigned long ier;
146
147 ier = readl(port->membase + LINIER);
148 ier &= ~(LINFLEXD_LINIER_DTIE);
149 writel(ier, port->membase + LINIER);
150}
151
152static void linflex_stop_rx(struct uart_port *port)
153{
154 unsigned long ier;
155
156 ier = readl(port->membase + LINIER);
157 writel(ier & ~LINFLEXD_LINIER_DRIE, port->membase + LINIER);
158}
159
160static inline void linflex_transmit_buffer(struct uart_port *sport)
161{
162 struct circ_buf *xmit = &sport->state->xmit;
163 unsigned char c;
164 unsigned long status;
165
166 while (!uart_circ_empty(xmit)) {
167 c = xmit->buf[xmit->tail];
168 writeb(c, sport->membase + BDRL);
169
170 /* Waiting for data transmission completed. */
171 while (((status = readl(sport->membase + UARTSR)) &
172 LINFLEXD_UARTSR_DTFTFF) !=
173 LINFLEXD_UARTSR_DTFTFF)
174 ;
175
176 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
177 sport->icount.tx++;
178
179 writel(status | LINFLEXD_UARTSR_DTFTFF,
180 sport->membase + UARTSR);
181 }
182
183 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
184 uart_write_wakeup(sport);
185
186 if (uart_circ_empty(xmit))
187 linflex_stop_tx(sport);
188}
189
190static void linflex_start_tx(struct uart_port *port)
191{
192 unsigned long ier;
193
194 linflex_transmit_buffer(port);
195 ier = readl(port->membase + LINIER);
196 writel(ier | LINFLEXD_LINIER_DTIE, port->membase + LINIER);
197}
198
199static irqreturn_t linflex_txint(int irq, void *dev_id)
200{
201 struct uart_port *sport = dev_id;
202 struct circ_buf *xmit = &sport->state->xmit;
203 unsigned long flags;
204 unsigned long status;
205
206 spin_lock_irqsave(&sport->lock, flags);
207
208 if (sport->x_char) {
209 writeb(sport->x_char, sport->membase + BDRL);
210
211 /* waiting for data transmission completed */
212 while (((status = readl(sport->membase + UARTSR)) &
213 LINFLEXD_UARTSR_DTFTFF) != LINFLEXD_UARTSR_DTFTFF)
214 ;
215
216 writel(status | LINFLEXD_UARTSR_DTFTFF,
217 sport->membase + UARTSR);
218
219 goto out;
220 }
221
222 if (uart_circ_empty(xmit) || uart_tx_stopped(sport)) {
223 linflex_stop_tx(sport);
224 goto out;
225 }
226
227 linflex_transmit_buffer(sport);
228
229 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
230 uart_write_wakeup(sport);
231
232out:
233 spin_unlock_irqrestore(&sport->lock, flags);
234 return IRQ_HANDLED;
235}
236
237static irqreturn_t linflex_rxint(int irq, void *dev_id)
238{
239 struct uart_port *sport = dev_id;
240 unsigned int flg;
241 struct tty_port *port = &sport->state->port;
242 unsigned long flags, status;
243 unsigned char rx;
244 bool brk;
245
246 spin_lock_irqsave(&sport->lock, flags);
247
248 status = readl(sport->membase + UARTSR);
249 while (status & LINFLEXD_UARTSR_RMB) {
250 rx = readb(sport->membase + BDRM);
251 brk = false;
252 flg = TTY_NORMAL;
253 sport->icount.rx++;
254
255 if (status & (LINFLEXD_UARTSR_BOF | LINFLEXD_UARTSR_SZF |
256 LINFLEXD_UARTSR_FEF | LINFLEXD_UARTSR_PE)) {
257 if (status & LINFLEXD_UARTSR_SZF)
258 status |= LINFLEXD_UARTSR_SZF;
259 if (status & LINFLEXD_UARTSR_BOF)
260 status |= LINFLEXD_UARTSR_BOF;
261 if (status & LINFLEXD_UARTSR_FEF) {
262 if (!rx)
263 brk = true;
264 status |= LINFLEXD_UARTSR_FEF;
265 }
266 if (status & LINFLEXD_UARTSR_PE)
267 status |= LINFLEXD_UARTSR_PE;
268 }
269
270 writel(status | LINFLEXD_UARTSR_RMB | LINFLEXD_UARTSR_DRFRFE,
271 sport->membase + UARTSR);
272 status = readl(sport->membase + UARTSR);
273
274 if (brk) {
275 uart_handle_break(sport);
276 } else {
277 if (uart_handle_sysrq_char(sport, (unsigned char)rx))
278 continue;
279 tty_insert_flip_char(port, rx, flg);
280 }
281 }
282
283 spin_unlock_irqrestore(&sport->lock, flags);
284
285 tty_flip_buffer_push(port);
286
287 return IRQ_HANDLED;
288}
289
290static irqreturn_t linflex_int(int irq, void *dev_id)
291{
292 struct uart_port *sport = dev_id;
293 unsigned long status;
294
295 status = readl(sport->membase + UARTSR);
296
297 if (status & LINFLEXD_UARTSR_DRFRFE)
298 linflex_rxint(irq, dev_id);
299 if (status & LINFLEXD_UARTSR_DTFTFF)
300 linflex_txint(irq, dev_id);
301
302 return IRQ_HANDLED;
303}
304
305/* return TIOCSER_TEMT when transmitter is not busy */
306static unsigned int linflex_tx_empty(struct uart_port *port)
307{
308 unsigned long status;
309
310 status = readl(port->membase + UARTSR) & LINFLEXD_UARTSR_DTFTFF;
311
312 return status ? TIOCSER_TEMT : 0;
313}
314
315static unsigned int linflex_get_mctrl(struct uart_port *port)
316{
317 return 0;
318}
319
320static void linflex_set_mctrl(struct uart_port *port, unsigned int mctrl)
321{
322}
323
324static void linflex_break_ctl(struct uart_port *port, int break_state)
325{
326}
327
328static void linflex_setup_watermark(struct uart_port *sport)
329{
330 unsigned long cr, ier, cr1;
331
332 /* Disable transmission/reception */
333 ier = readl(sport->membase + LINIER);
334 ier &= ~(LINFLEXD_LINIER_DRIE | LINFLEXD_LINIER_DTIE);
335 writel(ier, sport->membase + LINIER);
336
337 cr = readl(sport->membase + UARTCR);
338 cr &= ~(LINFLEXD_UARTCR_RXEN | LINFLEXD_UARTCR_TXEN);
339 writel(cr, sport->membase + UARTCR);
340
341 /* Enter initialization mode by setting INIT bit */
342
343 /* set the Linflex in master mode and activate by-pass filter */
344 cr1 = LINFLEXD_LINCR1_BF | LINFLEXD_LINCR1_MME
345 | LINFLEXD_LINCR1_INIT;
346 writel(cr1, sport->membase + LINCR1);
347
348 /* wait for init mode entry */
349 while ((readl(sport->membase + LINSR)
350 & LINFLEXD_LINSR_LINS_MASK)
351 != LINFLEXD_LINSR_LINS_INITMODE)
352 ;
353
354 /*
355 * UART = 0x1; - Linflex working in UART mode
356 * TXEN = 0x1; - Enable transmission of data now
357 * RXEn = 0x1; - Receiver enabled
358 * WL0 = 0x1; - 8 bit data
359 * PCE = 0x0; - No parity
360 */
361
362 /* set UART bit to allow writing other bits */
363 writel(LINFLEXD_UARTCR_UART, sport->membase + UARTCR);
364
365 cr = (LINFLEXD_UARTCR_RXEN | LINFLEXD_UARTCR_TXEN |
366 LINFLEXD_UARTCR_WL0 | LINFLEXD_UARTCR_UART);
367
368 writel(cr, sport->membase + UARTCR);
369
370 cr1 &= ~(LINFLEXD_LINCR1_INIT);
371
372 writel(cr1, sport->membase + LINCR1);
373
374 ier = readl(sport->membase + LINIER);
375 ier |= LINFLEXD_LINIER_DRIE;
376 ier |= LINFLEXD_LINIER_DTIE;
377
378 writel(ier, sport->membase + LINIER);
379}
380
381static int linflex_startup(struct uart_port *port)
382{
383 int ret = 0;
384 unsigned long flags;
385
386 spin_lock_irqsave(&port->lock, flags);
387
388 linflex_setup_watermark(port);
389
390 spin_unlock_irqrestore(&port->lock, flags);
391
392 ret = devm_request_irq(port->dev, port->irq, linflex_int, 0,
393 DRIVER_NAME, port);
394
395 return ret;
396}
397
398static void linflex_shutdown(struct uart_port *port)
399{
400 unsigned long ier;
401 unsigned long flags;
402
403 spin_lock_irqsave(&port->lock, flags);
404
405 /* disable interrupts */
406 ier = readl(port->membase + LINIER);
407 ier &= ~(LINFLEXD_LINIER_DRIE | LINFLEXD_LINIER_DTIE);
408 writel(ier, port->membase + LINIER);
409
410 spin_unlock_irqrestore(&port->lock, flags);
411
412 devm_free_irq(port->dev, port->irq, port);
413}
414
415static void
416linflex_set_termios(struct uart_port *port, struct ktermios *termios,
417 struct ktermios *old)
418{
419 unsigned long flags;
420 unsigned long cr, old_cr, cr1;
421 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
422
423 cr = readl(port->membase + UARTCR);
424 old_cr = cr;
425
426 /* Enter initialization mode by setting INIT bit */
427 cr1 = readl(port->membase + LINCR1);
428 cr1 |= LINFLEXD_LINCR1_INIT;
429 writel(cr1, port->membase + LINCR1);
430
431 /* wait for init mode entry */
432 while ((readl(port->membase + LINSR)
433 & LINFLEXD_LINSR_LINS_MASK)
434 != LINFLEXD_LINSR_LINS_INITMODE)
435 ;
436
437 /*
438 * only support CS8 and CS7, and for CS7 must enable PE.
439 * supported mode:
440 * - (7,e/o,1)
441 * - (8,n,1)
442 * - (8,e/o,1)
443 */
444 /* enter the UART into configuration mode */
445
446 while ((termios->c_cflag & CSIZE) != CS8 &&
447 (termios->c_cflag & CSIZE) != CS7) {
448 termios->c_cflag &= ~CSIZE;
449 termios->c_cflag |= old_csize;
450 old_csize = CS8;
451 }
452
453 if ((termios->c_cflag & CSIZE) == CS7) {
454 /* Word length: WL1WL0:00 */
455 cr = old_cr & ~LINFLEXD_UARTCR_WL1 & ~LINFLEXD_UARTCR_WL0;
456 }
457
458 if ((termios->c_cflag & CSIZE) == CS8) {
459 /* Word length: WL1WL0:01 */
460 cr = (old_cr | LINFLEXD_UARTCR_WL0) & ~LINFLEXD_UARTCR_WL1;
461 }
462
463 if (termios->c_cflag & CMSPAR) {
464 if ((termios->c_cflag & CSIZE) != CS8) {
465 termios->c_cflag &= ~CSIZE;
466 termios->c_cflag |= CS8;
467 }
468 /* has a space/sticky bit */
469 cr |= LINFLEXD_UARTCR_WL0;
470 }
471
472 if (termios->c_cflag & CSTOPB)
473 termios->c_cflag &= ~CSTOPB;
474
475 /* parity must be enabled when CS7 to match 8-bits format */
476 if ((termios->c_cflag & CSIZE) == CS7)
477 termios->c_cflag |= PARENB;
478
479 if ((termios->c_cflag & PARENB)) {
480 cr |= LINFLEXD_UARTCR_PCE;
481 if (termios->c_cflag & PARODD)
482 cr = (cr | LINFLEXD_UARTCR_PC0) &
483 (~LINFLEXD_UARTCR_PC1);
484 else
485 cr = cr & (~LINFLEXD_UARTCR_PC1 &
486 ~LINFLEXD_UARTCR_PC0);
487 } else {
488 cr &= ~LINFLEXD_UARTCR_PCE;
489 }
490
491 spin_lock_irqsave(&port->lock, flags);
492
493 port->read_status_mask = 0;
494
495 if (termios->c_iflag & INPCK)
496 port->read_status_mask |= (LINFLEXD_UARTSR_FEF |
497 LINFLEXD_UARTSR_PE0 |
498 LINFLEXD_UARTSR_PE1 |
499 LINFLEXD_UARTSR_PE2 |
500 LINFLEXD_UARTSR_PE3);
501 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
502 port->read_status_mask |= LINFLEXD_UARTSR_FEF;
503
504 /* characters to ignore */
505 port->ignore_status_mask = 0;
506 if (termios->c_iflag & IGNPAR)
507 port->ignore_status_mask |= LINFLEXD_UARTSR_PE;
508 if (termios->c_iflag & IGNBRK) {
509 port->ignore_status_mask |= LINFLEXD_UARTSR_PE;
510 /*
511 * if we're ignoring parity and break indicators,
512 * ignore overruns too (for real raw support).
513 */
514 if (termios->c_iflag & IGNPAR)
515 port->ignore_status_mask |= LINFLEXD_UARTSR_BOF;
516 }
517
518 writel(cr, port->membase + UARTCR);
519
520 cr1 &= ~(LINFLEXD_LINCR1_INIT);
521
522 writel(cr1, port->membase + LINCR1);
523
524 spin_unlock_irqrestore(&port->lock, flags);
525}
526
527static const char *linflex_type(struct uart_port *port)
528{
529 return "FSL_LINFLEX";
530}
531
532static void linflex_release_port(struct uart_port *port)
533{
534 /* nothing to do */
535}
536
537static int linflex_request_port(struct uart_port *port)
538{
539 return 0;
540}
541
542/* configure/auto-configure the port */
543static void linflex_config_port(struct uart_port *port, int flags)
544{
545 if (flags & UART_CONFIG_TYPE)
546 port->type = PORT_LINFLEXUART;
547}
548
549static const struct uart_ops linflex_pops = {
550 .tx_empty = linflex_tx_empty,
551 .set_mctrl = linflex_set_mctrl,
552 .get_mctrl = linflex_get_mctrl,
553 .stop_tx = linflex_stop_tx,
554 .start_tx = linflex_start_tx,
555 .stop_rx = linflex_stop_rx,
556 .break_ctl = linflex_break_ctl,
557 .startup = linflex_startup,
558 .shutdown = linflex_shutdown,
559 .set_termios = linflex_set_termios,
560 .type = linflex_type,
561 .request_port = linflex_request_port,
562 .release_port = linflex_release_port,
563 .config_port = linflex_config_port,
564};
565
566static struct uart_port *linflex_ports[UART_NR];
567
568#ifdef CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE
569static void linflex_console_putchar(struct uart_port *port, int ch)
570{
571 unsigned long cr;
572
573 cr = readl(port->membase + UARTCR);
574
575 writeb(ch, port->membase + BDRL);
576
577 if (!(cr & LINFLEXD_UARTCR_TFBM))
578 while ((readl(port->membase + UARTSR) &
579 LINFLEXD_UARTSR_DTFTFF)
580 != LINFLEXD_UARTSR_DTFTFF)
581 ;
582 else
583 while (readl(port->membase + UARTSR) &
584 LINFLEXD_UARTSR_DTFTFF)
585 ;
586
587 if (!(cr & LINFLEXD_UARTCR_TFBM)) {
588 writel((readl(port->membase + UARTSR) |
589 LINFLEXD_UARTSR_DTFTFF),
590 port->membase + UARTSR);
591 }
592}
593
594static void linflex_earlycon_putchar(struct uart_port *port, int ch)
595{
596 unsigned long flags;
597 char *ret;
598
599 if (!linflex_earlycon_same_instance) {
600 linflex_console_putchar(port, ch);
601 return;
602 }
603
604 spin_lock_irqsave(&init_lock, flags);
605 if (!during_init)
606 goto outside_init;
607
608 if (earlycon_buf.len >= 1 << CONFIG_LOG_BUF_SHIFT)
609 goto init_release;
610
611 if (!earlycon_buf.cap) {
612 earlycon_buf.content = kmalloc(EARLYCON_BUFFER_INITIAL_CAP,
613 GFP_ATOMIC);
614 earlycon_buf.cap = earlycon_buf.content ?
615 EARLYCON_BUFFER_INITIAL_CAP : 0;
616 } else if (earlycon_buf.len == earlycon_buf.cap) {
617 ret = krealloc(earlycon_buf.content, earlycon_buf.cap << 1,
618 GFP_ATOMIC);
619 if (ret) {
620 earlycon_buf.content = ret;
621 earlycon_buf.cap <<= 1;
622 }
623 }
624
625 if (earlycon_buf.len < earlycon_buf.cap)
626 earlycon_buf.content[earlycon_buf.len++] = ch;
627
628 goto init_release;
629
630outside_init:
631 linflex_console_putchar(port, ch);
632init_release:
633 spin_unlock_irqrestore(&init_lock, flags);
634}
635
636static void linflex_string_write(struct uart_port *sport, const char *s,
637 unsigned int count)
638{
639 unsigned long cr, ier = 0;
640
641 ier = readl(sport->membase + LINIER);
642 linflex_stop_tx(sport);
643
644 cr = readl(sport->membase + UARTCR);
645 cr |= (LINFLEXD_UARTCR_TXEN);
646 writel(cr, sport->membase + UARTCR);
647
648 uart_console_write(sport, s, count, linflex_console_putchar);
649
650 writel(ier, sport->membase + LINIER);
651}
652
653static void
654linflex_console_write(struct console *co, const char *s, unsigned int count)
655{
656 struct uart_port *sport = linflex_ports[co->index];
657 unsigned long flags;
658 int locked = 1;
659
660 if (sport->sysrq)
661 locked = 0;
662 else if (oops_in_progress)
663 locked = spin_trylock_irqsave(&sport->lock, flags);
664 else
665 spin_lock_irqsave(&sport->lock, flags);
666
667 linflex_string_write(sport, s, count);
668
669 if (locked)
670 spin_unlock_irqrestore(&sport->lock, flags);
671}
672
673/*
674 * if the port was already initialised (eg, by a boot loader),
675 * try to determine the current setup.
676 */
677static void __init
678linflex_console_get_options(struct uart_port *sport, int *parity, int *bits)
679{
680 unsigned long cr;
681
682 cr = readl(sport->membase + UARTCR);
683 cr &= LINFLEXD_UARTCR_RXEN | LINFLEXD_UARTCR_TXEN;
684
685 if (!cr)
686 return;
687
688 /* ok, the port was enabled */
689
690 *parity = 'n';
691 if (cr & LINFLEXD_UARTCR_PCE) {
692 if (cr & LINFLEXD_UARTCR_PC0)
693 *parity = 'o';
694 else
695 *parity = 'e';
696 }
697
698 if ((cr & LINFLEXD_UARTCR_WL0) && ((cr & LINFLEXD_UARTCR_WL1) == 0)) {
699 if (cr & LINFLEXD_UARTCR_PCE)
700 *bits = 9;
701 else
702 *bits = 8;
703 }
704}
705
706static int __init linflex_console_setup(struct console *co, char *options)
707{
708 struct uart_port *sport;
709 int baud = 115200;
710 int bits = 8;
711 int parity = 'n';
712 int flow = 'n';
713 int ret;
714 int i;
715 unsigned long flags;
716 /*
717 * check whether an invalid uart number has been specified, and
718 * if so, search for the first available port that does have
719 * console support.
720 */
721 if (co->index == -1 || co->index >= ARRAY_SIZE(linflex_ports))
722 co->index = 0;
723
724 sport = linflex_ports[co->index];
725 if (!sport)
726 return -ENODEV;
727
728 if (options)
729 uart_parse_options(options, &baud, &parity, &bits, &flow);
730 else
731 linflex_console_get_options(sport, &parity, &bits);
732
733 if (earlycon_port && sport->mapbase == earlycon_port->mapbase) {
734 linflex_earlycon_same_instance = true;
735
736 spin_lock_irqsave(&init_lock, flags);
737 during_init = true;
738 spin_unlock_irqrestore(&init_lock, flags);
739
740 /* Workaround for character loss or output of many invalid
741 * characters, when INIT mode is entered shortly after a
742 * character has just been printed.
743 */
744 udelay(PREINIT_DELAY);
745 }
746
747 linflex_setup_watermark(sport);
748
749 ret = uart_set_options(sport, co, baud, parity, bits, flow);
750
751 if (!linflex_earlycon_same_instance)
752 goto done;
753
754 spin_lock_irqsave(&init_lock, flags);
755
756 /* Emptying buffer */
757 if (earlycon_buf.len) {
758 for (i = 0; i < earlycon_buf.len; i++)
759 linflex_console_putchar(earlycon_port,
760 earlycon_buf.content[i]);
761
762 kfree(earlycon_buf.content);
763 earlycon_buf.len = 0;
764 }
765
766 during_init = false;
767 spin_unlock_irqrestore(&init_lock, flags);
768
769done:
770 return ret;
771}
772
773static struct uart_driver linflex_reg;
774static struct console linflex_console = {
775 .name = DEV_NAME,
776 .write = linflex_console_write,
777 .device = uart_console_device,
778 .setup = linflex_console_setup,
779 .flags = CON_PRINTBUFFER,
780 .index = -1,
781 .data = &linflex_reg,
782};
783
784static void linflex_earlycon_write(struct console *con, const char *s,
785 unsigned int n)
786{
787 struct earlycon_device *dev = con->data;
788
789 uart_console_write(&dev->port, s, n, linflex_earlycon_putchar);
790}
791
792static int __init linflex_early_console_setup(struct earlycon_device *device,
793 const char *options)
794{
795 if (!device->port.membase)
796 return -ENODEV;
797
798 device->con->write = linflex_earlycon_write;
799 earlycon_port = &device->port;
800
801 return 0;
802}
803
804OF_EARLYCON_DECLARE(linflex, "fsl,s32v234-linflexuart",
805 linflex_early_console_setup);
806
807#define LINFLEX_CONSOLE (&linflex_console)
808#else
809#define LINFLEX_CONSOLE NULL
810#endif
811
812static struct uart_driver linflex_reg = {
813 .owner = THIS_MODULE,
814 .driver_name = DRIVER_NAME,
815 .dev_name = DEV_NAME,
816 .nr = ARRAY_SIZE(linflex_ports),
817 .cons = LINFLEX_CONSOLE,
818};
819
820static int linflex_probe(struct platform_device *pdev)
821{
822 struct device_node *np = pdev->dev.of_node;
823 struct uart_port *sport;
824 struct resource *res;
825 int ret;
826
827 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
828 if (!sport)
829 return -ENOMEM;
830
831 ret = of_alias_get_id(np, "serial");
832 if (ret < 0) {
833 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
834 return ret;
835 }
836 if (ret >= UART_NR) {
837 dev_err(&pdev->dev, "driver limited to %d serial ports\n",
838 UART_NR);
839 return -ENOMEM;
840 }
841
842 sport->line = ret;
843
844 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
845 if (!res)
846 return -ENODEV;
847
848 sport->mapbase = res->start;
849 sport->membase = devm_ioremap_resource(&pdev->dev, res);
850 if (IS_ERR(sport->membase))
851 return PTR_ERR(sport->membase);
852
853 sport->dev = &pdev->dev;
854 sport->type = PORT_LINFLEXUART;
855 sport->iotype = UPIO_MEM;
856 sport->irq = platform_get_irq(pdev, 0);
857 sport->ops = &linflex_pops;
858 sport->flags = UPF_BOOT_AUTOCONF;
859 sport->has_sysrq = IS_ENABLED(CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE);
860
861 linflex_ports[sport->line] = sport;
862
863 platform_set_drvdata(pdev, sport);
864
865 ret = uart_add_one_port(&linflex_reg, sport);
866 if (ret)
867 return ret;
868
869 return 0;
870}
871
872static int linflex_remove(struct platform_device *pdev)
873{
874 struct uart_port *sport = platform_get_drvdata(pdev);
875
876 uart_remove_one_port(&linflex_reg, sport);
877
878 return 0;
879}
880
881#ifdef CONFIG_PM_SLEEP
882static int linflex_suspend(struct device *dev)
883{
884 struct uart_port *sport = dev_get_drvdata(dev);
885
886 uart_suspend_port(&linflex_reg, sport);
887
888 return 0;
889}
890
891static int linflex_resume(struct device *dev)
892{
893 struct uart_port *sport = dev_get_drvdata(dev);
894
895 uart_resume_port(&linflex_reg, sport);
896
897 return 0;
898}
899#endif
900
901static SIMPLE_DEV_PM_OPS(linflex_pm_ops, linflex_suspend, linflex_resume);
902
903static struct platform_driver linflex_driver = {
904 .probe = linflex_probe,
905 .remove = linflex_remove,
906 .driver = {
907 .name = DRIVER_NAME,
908 .of_match_table = linflex_dt_ids,
909 .pm = &linflex_pm_ops,
910 },
911};
912
913static int __init linflex_serial_init(void)
914{
915 int ret;
916
917 ret = uart_register_driver(&linflex_reg);
918 if (ret)
919 return ret;
920
921 ret = platform_driver_register(&linflex_driver);
922 if (ret)
923 uart_unregister_driver(&linflex_reg);
924
925 return ret;
926}
927
928static void __exit linflex_serial_exit(void)
929{
930 platform_driver_unregister(&linflex_driver);
931 uart_unregister_driver(&linflex_reg);
932}
933
934module_init(linflex_serial_init);
935module_exit(linflex_serial_exit);
936
937MODULE_DESCRIPTION("Freescale LINFlexD serial port driver");
938MODULE_LICENSE("GPL v2");