2 * NXP (Philips) SCC+++(SCN+++) serial driver
4 * Copyright (C) 2012 Alexander Shiyan <shc_work@mail.ru>
6 * Based on sc26xx.c, by Thomas Bogendörfer (tsbogend@alpha.franken.de)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #if defined(CONFIG_SERIAL_SCCNXP_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
18 #include <linux/clk.h>
19 #include <linux/err.h>
20 #include <linux/module.h>
21 #include <linux/device.h>
22 #include <linux/console.h>
23 #include <linux/serial_core.h>
24 #include <linux/serial.h>
26 #include <linux/tty.h>
27 #include <linux/tty_flip.h>
28 #include <linux/spinlock.h>
29 #include <linux/platform_device.h>
30 #include <linux/platform_data/serial-sccnxp.h>
31 #include <linux/regulator/consumer.h>
33 #define SCCNXP_NAME "uart-sccnxp"
34 #define SCCNXP_MAJOR 204
35 #define SCCNXP_MINOR 205
37 #define SCCNXP_MR_REG (0x00)
38 # define MR0_BAUD_NORMAL (0 << 0)
39 # define MR0_BAUD_EXT1 (1 << 0)
40 # define MR0_BAUD_EXT2 (5 << 0)
41 # define MR0_FIFO (1 << 3)
42 # define MR0_TXLVL (1 << 4)
43 # define MR1_BITS_5 (0 << 0)
44 # define MR1_BITS_6 (1 << 0)
45 # define MR1_BITS_7 (2 << 0)
46 # define MR1_BITS_8 (3 << 0)
47 # define MR1_PAR_EVN (0 << 2)
48 # define MR1_PAR_ODD (1 << 2)
49 # define MR1_PAR_NO (4 << 2)
50 # define MR2_STOP1 (7 << 0)
51 # define MR2_STOP2 (0xf << 0)
52 #define SCCNXP_SR_REG (0x01)
53 #define SCCNXP_CSR_REG SCCNXP_SR_REG
54 # define SR_RXRDY (1 << 0)
55 # define SR_FULL (1 << 1)
56 # define SR_TXRDY (1 << 2)
57 # define SR_TXEMT (1 << 3)
58 # define SR_OVR (1 << 4)
59 # define SR_PE (1 << 5)
60 # define SR_FE (1 << 6)
61 # define SR_BRK (1 << 7)
62 #define SCCNXP_CR_REG (0x02)
63 # define CR_RX_ENABLE (1 << 0)
64 # define CR_RX_DISABLE (1 << 1)
65 # define CR_TX_ENABLE (1 << 2)
66 # define CR_TX_DISABLE (1 << 3)
67 # define CR_CMD_MRPTR1 (0x01 << 4)
68 # define CR_CMD_RX_RESET (0x02 << 4)
69 # define CR_CMD_TX_RESET (0x03 << 4)
70 # define CR_CMD_STATUS_RESET (0x04 << 4)
71 # define CR_CMD_BREAK_RESET (0x05 << 4)
72 # define CR_CMD_START_BREAK (0x06 << 4)
73 # define CR_CMD_STOP_BREAK (0x07 << 4)
74 # define CR_CMD_MRPTR0 (0x0b << 4)
75 #define SCCNXP_RHR_REG (0x03)
76 #define SCCNXP_THR_REG SCCNXP_RHR_REG
77 #define SCCNXP_IPCR_REG (0x04)
78 #define SCCNXP_ACR_REG SCCNXP_IPCR_REG
79 # define ACR_BAUD0 (0 << 7)
80 # define ACR_BAUD1 (1 << 7)
81 # define ACR_TIMER_MODE (6 << 4)
82 #define SCCNXP_ISR_REG (0x05)
83 #define SCCNXP_IMR_REG SCCNXP_ISR_REG
84 # define IMR_TXRDY (1 << 0)
85 # define IMR_RXRDY (1 << 1)
86 # define ISR_TXRDY(x) (1 << ((x * 4) + 0))
87 # define ISR_RXRDY(x) (1 << ((x * 4) + 1))
88 #define SCCNXP_IPR_REG (0x0d)
89 #define SCCNXP_OPCR_REG SCCNXP_IPR_REG
90 #define SCCNXP_SOP_REG (0x0e)
91 #define SCCNXP_ROP_REG (0x0f)
94 #define MCTRL_MASK(sig) (0xf << (sig))
95 #define MCTRL_IBIT(cfg, sig) ((((cfg) >> (sig)) & 0xf) - LINE_IP0)
96 #define MCTRL_OBIT(cfg, sig) ((((cfg) >> (sig)) & 0xf) - LINE_OP0)
98 #define SCCNXP_HAVE_IO 0x00000001
99 #define SCCNXP_HAVE_MR0 0x00000002
104 unsigned long freq_min
;
105 unsigned long freq_std
;
106 unsigned long freq_max
;
108 unsigned int fifosize
;
112 struct uart_driver uart
;
113 struct uart_port port
[SCCNXP_MAX_UARTS
];
114 bool opened
[SCCNXP_MAX_UARTS
];
119 struct sccnxp_chip
*chip
;
121 #ifdef CONFIG_SERIAL_SCCNXP_CONSOLE
122 struct console console
;
128 struct timer_list timer
;
130 struct sccnxp_pdata pdata
;
132 struct regulator
*regulator
;
135 static const struct sccnxp_chip sc2681
= {
141 .flags
= SCCNXP_HAVE_IO
,
145 static const struct sccnxp_chip sc2691
= {
155 static const struct sccnxp_chip sc2692
= {
161 .flags
= SCCNXP_HAVE_IO
,
165 static const struct sccnxp_chip sc2891
= {
171 .flags
= SCCNXP_HAVE_IO
| SCCNXP_HAVE_MR0
,
175 static const struct sccnxp_chip sc2892
= {
181 .flags
= SCCNXP_HAVE_IO
| SCCNXP_HAVE_MR0
,
185 static const struct sccnxp_chip sc28202
= {
189 .freq_std
= 14745600,
190 .freq_max
= 50000000,
191 .flags
= SCCNXP_HAVE_IO
| SCCNXP_HAVE_MR0
,
195 static const struct sccnxp_chip sc68681
= {
201 .flags
= SCCNXP_HAVE_IO
,
205 static const struct sccnxp_chip sc68692
= {
211 .flags
= SCCNXP_HAVE_IO
,
215 static inline u8
sccnxp_read(struct uart_port
*port
, u8 reg
)
217 return readb(port
->membase
+ (reg
<< port
->regshift
));
220 static inline void sccnxp_write(struct uart_port
*port
, u8 reg
, u8 v
)
222 writeb(v
, port
->membase
+ (reg
<< port
->regshift
));
225 static inline u8
sccnxp_port_read(struct uart_port
*port
, u8 reg
)
227 return sccnxp_read(port
, (port
->line
<< 3) + reg
);
230 static inline void sccnxp_port_write(struct uart_port
*port
, u8 reg
, u8 v
)
232 sccnxp_write(port
, (port
->line
<< 3) + reg
, v
);
235 static int sccnxp_update_best_err(int a
, int b
, int *besterr
)
237 int err
= abs(a
- b
);
239 if ((*besterr
< 0) || (*besterr
> err
)) {
247 static const struct {
253 { 0, ACR_BAUD0
, MR0_BAUD_NORMAL
, 50, },
254 { 0, ACR_BAUD1
, MR0_BAUD_NORMAL
, 75, },
255 { 1, ACR_BAUD0
, MR0_BAUD_NORMAL
, 110, },
256 { 2, ACR_BAUD0
, MR0_BAUD_NORMAL
, 134, },
257 { 3, ACR_BAUD1
, MR0_BAUD_NORMAL
, 150, },
258 { 3, ACR_BAUD0
, MR0_BAUD_NORMAL
, 200, },
259 { 4, ACR_BAUD0
, MR0_BAUD_NORMAL
, 300, },
260 { 0, ACR_BAUD1
, MR0_BAUD_EXT1
, 450, },
261 { 1, ACR_BAUD0
, MR0_BAUD_EXT2
, 880, },
262 { 3, ACR_BAUD1
, MR0_BAUD_EXT1
, 900, },
263 { 5, ACR_BAUD0
, MR0_BAUD_NORMAL
, 600, },
264 { 7, ACR_BAUD0
, MR0_BAUD_NORMAL
, 1050, },
265 { 2, ACR_BAUD0
, MR0_BAUD_EXT2
, 1076, },
266 { 6, ACR_BAUD0
, MR0_BAUD_NORMAL
, 1200, },
267 { 10, ACR_BAUD1
, MR0_BAUD_NORMAL
, 1800, },
268 { 7, ACR_BAUD1
, MR0_BAUD_NORMAL
, 2000, },
269 { 8, ACR_BAUD0
, MR0_BAUD_NORMAL
, 2400, },
270 { 5, ACR_BAUD1
, MR0_BAUD_EXT1
, 3600, },
271 { 9, ACR_BAUD0
, MR0_BAUD_NORMAL
, 4800, },
272 { 10, ACR_BAUD0
, MR0_BAUD_NORMAL
, 7200, },
273 { 11, ACR_BAUD0
, MR0_BAUD_NORMAL
, 9600, },
274 { 8, ACR_BAUD0
, MR0_BAUD_EXT1
, 14400, },
275 { 12, ACR_BAUD1
, MR0_BAUD_NORMAL
, 19200, },
276 { 9, ACR_BAUD0
, MR0_BAUD_EXT1
, 28800, },
277 { 12, ACR_BAUD0
, MR0_BAUD_NORMAL
, 38400, },
278 { 11, ACR_BAUD0
, MR0_BAUD_EXT1
, 57600, },
279 { 12, ACR_BAUD1
, MR0_BAUD_EXT1
, 115200, },
280 { 12, ACR_BAUD0
, MR0_BAUD_EXT1
, 230400, },
284 static int sccnxp_set_baud(struct uart_port
*port
, int baud
)
286 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
287 int div_std
, tmp_baud
, bestbaud
= baud
, besterr
= -1;
288 struct sccnxp_chip
*chip
= s
->chip
;
289 u8 i
, acr
= 0, csr
= 0, mr0
= 0;
291 /* Find best baud from table */
292 for (i
= 0; baud_std
[i
].baud
&& besterr
; i
++) {
293 if (baud_std
[i
].mr0
&& !(chip
->flags
& SCCNXP_HAVE_MR0
))
295 div_std
= DIV_ROUND_CLOSEST(chip
->freq_std
, baud_std
[i
].baud
);
296 tmp_baud
= DIV_ROUND_CLOSEST(port
->uartclk
, div_std
);
297 if (!sccnxp_update_best_err(baud
, tmp_baud
, &besterr
)) {
298 acr
= baud_std
[i
].acr
;
299 csr
= baud_std
[i
].csr
;
300 mr0
= baud_std
[i
].mr0
;
305 if (chip
->flags
& SCCNXP_HAVE_MR0
) {
306 /* Enable FIFO, set half level for TX */
307 mr0
|= MR0_FIFO
| MR0_TXLVL
;
309 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_CMD_MRPTR0
);
310 sccnxp_port_write(port
, SCCNXP_MR_REG
, mr0
);
313 sccnxp_port_write(port
, SCCNXP_ACR_REG
, acr
| ACR_TIMER_MODE
);
314 sccnxp_port_write(port
, SCCNXP_CSR_REG
, (csr
<< 4) | csr
);
316 if (baud
!= bestbaud
)
317 dev_dbg(port
->dev
, "Baudrate desired: %i, calculated: %i\n",
323 static void sccnxp_enable_irq(struct uart_port
*port
, int mask
)
325 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
327 s
->imr
|= mask
<< (port
->line
* 4);
328 sccnxp_write(port
, SCCNXP_IMR_REG
, s
->imr
);
331 static void sccnxp_disable_irq(struct uart_port
*port
, int mask
)
333 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
335 s
->imr
&= ~(mask
<< (port
->line
* 4));
336 sccnxp_write(port
, SCCNXP_IMR_REG
, s
->imr
);
339 static void sccnxp_set_bit(struct uart_port
*port
, int sig
, int state
)
342 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
344 if (s
->pdata
.mctrl_cfg
[port
->line
] & MCTRL_MASK(sig
)) {
345 bitmask
= 1 << MCTRL_OBIT(s
->pdata
.mctrl_cfg
[port
->line
], sig
);
347 sccnxp_write(port
, SCCNXP_SOP_REG
, bitmask
);
349 sccnxp_write(port
, SCCNXP_ROP_REG
, bitmask
);
353 static void sccnxp_handle_rx(struct uart_port
*port
)
356 unsigned int ch
, flag
;
359 sr
= sccnxp_port_read(port
, SCCNXP_SR_REG
);
360 if (!(sr
& SR_RXRDY
))
362 sr
&= SR_PE
| SR_FE
| SR_OVR
| SR_BRK
;
364 ch
= sccnxp_port_read(port
, SCCNXP_RHR_REG
);
372 sccnxp_port_write(port
, SCCNXP_CR_REG
,
374 if (uart_handle_break(port
))
376 } else if (sr
& SR_PE
)
377 port
->icount
.parity
++;
379 port
->icount
.frame
++;
380 else if (sr
& SR_OVR
) {
381 port
->icount
.overrun
++;
382 sccnxp_port_write(port
, SCCNXP_CR_REG
,
383 CR_CMD_STATUS_RESET
);
386 sr
&= port
->read_status_mask
;
393 else if (sr
& SR_OVR
)
397 if (uart_handle_sysrq_char(port
, ch
))
400 if (sr
& port
->ignore_status_mask
)
403 uart_insert_char(port
, sr
, SR_OVR
, ch
, flag
);
406 tty_flip_buffer_push(&port
->state
->port
);
409 static void sccnxp_handle_tx(struct uart_port
*port
)
412 struct circ_buf
*xmit
= &port
->state
->xmit
;
413 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
415 if (unlikely(port
->x_char
)) {
416 sccnxp_port_write(port
, SCCNXP_THR_REG
, port
->x_char
);
422 if (uart_circ_empty(xmit
) || uart_tx_stopped(port
)) {
423 /* Disable TX if FIFO is empty */
424 if (sccnxp_port_read(port
, SCCNXP_SR_REG
) & SR_TXEMT
) {
425 sccnxp_disable_irq(port
, IMR_TXRDY
);
427 /* Set direction to input */
428 if (s
->chip
->flags
& SCCNXP_HAVE_IO
)
429 sccnxp_set_bit(port
, DIR_OP
, 0);
434 while (!uart_circ_empty(xmit
)) {
435 sr
= sccnxp_port_read(port
, SCCNXP_SR_REG
);
436 if (!(sr
& SR_TXRDY
))
439 sccnxp_port_write(port
, SCCNXP_THR_REG
, xmit
->buf
[xmit
->tail
]);
440 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
444 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
445 uart_write_wakeup(port
);
448 static void sccnxp_handle_events(struct sccnxp_port
*s
)
454 isr
= sccnxp_read(&s
->port
[0], SCCNXP_ISR_REG
);
459 for (i
= 0; i
< s
->uart
.nr
; i
++) {
460 if (s
->opened
[i
] && (isr
& ISR_RXRDY(i
)))
461 sccnxp_handle_rx(&s
->port
[i
]);
462 if (s
->opened
[i
] && (isr
& ISR_TXRDY(i
)))
463 sccnxp_handle_tx(&s
->port
[i
]);
468 static void sccnxp_timer(unsigned long data
)
470 struct sccnxp_port
*s
= (struct sccnxp_port
*)data
;
473 spin_lock_irqsave(&s
->lock
, flags
);
474 sccnxp_handle_events(s
);
475 spin_unlock_irqrestore(&s
->lock
, flags
);
477 mod_timer(&s
->timer
, jiffies
+ usecs_to_jiffies(s
->pdata
.poll_time_us
));
480 static irqreturn_t
sccnxp_ist(int irq
, void *dev_id
)
482 struct sccnxp_port
*s
= (struct sccnxp_port
*)dev_id
;
485 spin_lock_irqsave(&s
->lock
, flags
);
486 sccnxp_handle_events(s
);
487 spin_unlock_irqrestore(&s
->lock
, flags
);
492 static void sccnxp_start_tx(struct uart_port
*port
)
494 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
497 spin_lock_irqsave(&s
->lock
, flags
);
499 /* Set direction to output */
500 if (s
->chip
->flags
& SCCNXP_HAVE_IO
)
501 sccnxp_set_bit(port
, DIR_OP
, 1);
503 sccnxp_enable_irq(port
, IMR_TXRDY
);
505 spin_unlock_irqrestore(&s
->lock
, flags
);
508 static void sccnxp_stop_tx(struct uart_port
*port
)
513 static void sccnxp_stop_rx(struct uart_port
*port
)
515 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
518 spin_lock_irqsave(&s
->lock
, flags
);
519 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_RX_DISABLE
);
520 spin_unlock_irqrestore(&s
->lock
, flags
);
523 static unsigned int sccnxp_tx_empty(struct uart_port
*port
)
527 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
529 spin_lock_irqsave(&s
->lock
, flags
);
530 val
= sccnxp_port_read(port
, SCCNXP_SR_REG
);
531 spin_unlock_irqrestore(&s
->lock
, flags
);
533 return (val
& SR_TXEMT
) ? TIOCSER_TEMT
: 0;
536 static void sccnxp_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
538 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
541 if (!(s
->chip
->flags
& SCCNXP_HAVE_IO
))
544 spin_lock_irqsave(&s
->lock
, flags
);
546 sccnxp_set_bit(port
, DTR_OP
, mctrl
& TIOCM_DTR
);
547 sccnxp_set_bit(port
, RTS_OP
, mctrl
& TIOCM_RTS
);
549 spin_unlock_irqrestore(&s
->lock
, flags
);
552 static unsigned int sccnxp_get_mctrl(struct uart_port
*port
)
556 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
557 unsigned int mctrl
= TIOCM_DSR
| TIOCM_CTS
| TIOCM_CAR
;
559 if (!(s
->chip
->flags
& SCCNXP_HAVE_IO
))
562 spin_lock_irqsave(&s
->lock
, flags
);
564 ipr
= ~sccnxp_read(port
, SCCNXP_IPCR_REG
);
566 if (s
->pdata
.mctrl_cfg
[port
->line
] & MCTRL_MASK(DSR_IP
)) {
567 bitmask
= 1 << MCTRL_IBIT(s
->pdata
.mctrl_cfg
[port
->line
],
570 mctrl
|= (ipr
& bitmask
) ? TIOCM_DSR
: 0;
572 if (s
->pdata
.mctrl_cfg
[port
->line
] & MCTRL_MASK(CTS_IP
)) {
573 bitmask
= 1 << MCTRL_IBIT(s
->pdata
.mctrl_cfg
[port
->line
],
576 mctrl
|= (ipr
& bitmask
) ? TIOCM_CTS
: 0;
578 if (s
->pdata
.mctrl_cfg
[port
->line
] & MCTRL_MASK(DCD_IP
)) {
579 bitmask
= 1 << MCTRL_IBIT(s
->pdata
.mctrl_cfg
[port
->line
],
582 mctrl
|= (ipr
& bitmask
) ? TIOCM_CAR
: 0;
584 if (s
->pdata
.mctrl_cfg
[port
->line
] & MCTRL_MASK(RNG_IP
)) {
585 bitmask
= 1 << MCTRL_IBIT(s
->pdata
.mctrl_cfg
[port
->line
],
588 mctrl
|= (ipr
& bitmask
) ? TIOCM_RNG
: 0;
591 spin_unlock_irqrestore(&s
->lock
, flags
);
596 static void sccnxp_break_ctl(struct uart_port
*port
, int break_state
)
598 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
601 spin_lock_irqsave(&s
->lock
, flags
);
602 sccnxp_port_write(port
, SCCNXP_CR_REG
, break_state
?
603 CR_CMD_START_BREAK
: CR_CMD_STOP_BREAK
);
604 spin_unlock_irqrestore(&s
->lock
, flags
);
607 static void sccnxp_set_termios(struct uart_port
*port
,
608 struct ktermios
*termios
, struct ktermios
*old
)
610 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
615 spin_lock_irqsave(&s
->lock
, flags
);
617 /* Mask termios capabilities we don't support */
618 termios
->c_cflag
&= ~CMSPAR
;
620 /* Disable RX & TX, reset break condition, status and FIFOs */
621 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_CMD_RX_RESET
|
622 CR_RX_DISABLE
| CR_TX_DISABLE
);
623 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_CMD_TX_RESET
);
624 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_CMD_STATUS_RESET
);
625 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_CMD_BREAK_RESET
);
628 switch (termios
->c_cflag
& CSIZE
) {
645 if (termios
->c_cflag
& PARENB
) {
646 if (termios
->c_cflag
& PARODD
)
652 mr2
= (termios
->c_cflag
& CSTOPB
) ? MR2_STOP2
: MR2_STOP1
;
654 /* Update desired format */
655 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_CMD_MRPTR1
);
656 sccnxp_port_write(port
, SCCNXP_MR_REG
, mr1
);
657 sccnxp_port_write(port
, SCCNXP_MR_REG
, mr2
);
659 /* Set read status mask */
660 port
->read_status_mask
= SR_OVR
;
661 if (termios
->c_iflag
& INPCK
)
662 port
->read_status_mask
|= SR_PE
| SR_FE
;
663 if (termios
->c_iflag
& (IGNBRK
| BRKINT
| PARMRK
))
664 port
->read_status_mask
|= SR_BRK
;
666 /* Set status ignore mask */
667 port
->ignore_status_mask
= 0;
668 if (termios
->c_iflag
& IGNBRK
)
669 port
->ignore_status_mask
|= SR_BRK
;
670 if (termios
->c_iflag
& IGNPAR
)
671 port
->ignore_status_mask
|= SR_PE
;
672 if (!(termios
->c_cflag
& CREAD
))
673 port
->ignore_status_mask
|= SR_PE
| SR_OVR
| SR_FE
| SR_BRK
;
676 baud
= uart_get_baud_rate(port
, termios
, old
, 50,
677 (s
->chip
->flags
& SCCNXP_HAVE_MR0
) ?
679 baud
= sccnxp_set_baud(port
, baud
);
681 /* Update timeout according to new baud rate */
682 uart_update_timeout(port
, termios
->c_cflag
, baud
);
684 /* Report actual baudrate back to core */
685 if (tty_termios_baud_rate(termios
))
686 tty_termios_encode_baud_rate(termios
, baud
, baud
);
689 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_RX_ENABLE
| CR_TX_ENABLE
);
691 spin_unlock_irqrestore(&s
->lock
, flags
);
694 static int sccnxp_startup(struct uart_port
*port
)
696 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
699 spin_lock_irqsave(&s
->lock
, flags
);
701 if (s
->chip
->flags
& SCCNXP_HAVE_IO
) {
702 /* Outputs are controlled manually */
703 sccnxp_write(port
, SCCNXP_OPCR_REG
, 0);
706 /* Reset break condition, status and FIFOs */
707 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_CMD_RX_RESET
);
708 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_CMD_TX_RESET
);
709 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_CMD_STATUS_RESET
);
710 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_CMD_BREAK_RESET
);
713 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_RX_ENABLE
| CR_TX_ENABLE
);
715 /* Enable RX interrupt */
716 sccnxp_enable_irq(port
, IMR_RXRDY
);
718 s
->opened
[port
->line
] = 1;
720 spin_unlock_irqrestore(&s
->lock
, flags
);
725 static void sccnxp_shutdown(struct uart_port
*port
)
727 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
730 spin_lock_irqsave(&s
->lock
, flags
);
732 s
->opened
[port
->line
] = 0;
734 /* Disable interrupts */
735 sccnxp_disable_irq(port
, IMR_TXRDY
| IMR_RXRDY
);
737 /* Disable TX & RX */
738 sccnxp_port_write(port
, SCCNXP_CR_REG
, CR_RX_DISABLE
| CR_TX_DISABLE
);
740 /* Leave direction to input */
741 if (s
->chip
->flags
& SCCNXP_HAVE_IO
)
742 sccnxp_set_bit(port
, DIR_OP
, 0);
744 spin_unlock_irqrestore(&s
->lock
, flags
);
747 static const char *sccnxp_type(struct uart_port
*port
)
749 struct sccnxp_port
*s
= dev_get_drvdata(port
->dev
);
751 return (port
->type
== PORT_SC26XX
) ? s
->chip
->name
: NULL
;
754 static void sccnxp_release_port(struct uart_port
*port
)
759 static int sccnxp_request_port(struct uart_port
*port
)
765 static void sccnxp_config_port(struct uart_port
*port
, int flags
)
767 if (flags
& UART_CONFIG_TYPE
)
768 port
->type
= PORT_SC26XX
;
771 static int sccnxp_verify_port(struct uart_port
*port
, struct serial_struct
*s
)
773 if ((s
->type
== PORT_UNKNOWN
) || (s
->type
== PORT_SC26XX
))
775 if (s
->irq
== port
->irq
)
781 static const struct uart_ops sccnxp_ops
= {
782 .tx_empty
= sccnxp_tx_empty
,
783 .set_mctrl
= sccnxp_set_mctrl
,
784 .get_mctrl
= sccnxp_get_mctrl
,
785 .stop_tx
= sccnxp_stop_tx
,
786 .start_tx
= sccnxp_start_tx
,
787 .stop_rx
= sccnxp_stop_rx
,
788 .break_ctl
= sccnxp_break_ctl
,
789 .startup
= sccnxp_startup
,
790 .shutdown
= sccnxp_shutdown
,
791 .set_termios
= sccnxp_set_termios
,
793 .release_port
= sccnxp_release_port
,
794 .request_port
= sccnxp_request_port
,
795 .config_port
= sccnxp_config_port
,
796 .verify_port
= sccnxp_verify_port
,
799 #ifdef CONFIG_SERIAL_SCCNXP_CONSOLE
800 static void sccnxp_console_putchar(struct uart_port
*port
, int c
)
805 if (sccnxp_port_read(port
, SCCNXP_SR_REG
) & SR_TXRDY
) {
806 sccnxp_port_write(port
, SCCNXP_THR_REG
, c
);
813 static void sccnxp_console_write(struct console
*co
, const char *c
, unsigned n
)
815 struct sccnxp_port
*s
= (struct sccnxp_port
*)co
->data
;
816 struct uart_port
*port
= &s
->port
[co
->index
];
819 spin_lock_irqsave(&s
->lock
, flags
);
820 uart_console_write(port
, c
, n
, sccnxp_console_putchar
);
821 spin_unlock_irqrestore(&s
->lock
, flags
);
824 static int sccnxp_console_setup(struct console
*co
, char *options
)
826 struct sccnxp_port
*s
= (struct sccnxp_port
*)co
->data
;
827 struct uart_port
*port
= &s
->port
[(co
->index
> 0) ? co
->index
: 0];
828 int baud
= 9600, bits
= 8, parity
= 'n', flow
= 'n';
831 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
833 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
837 static const struct platform_device_id sccnxp_id_table
[] = {
838 { .name
= "sc2681", .driver_data
= (kernel_ulong_t
)&sc2681
, },
839 { .name
= "sc2691", .driver_data
= (kernel_ulong_t
)&sc2691
, },
840 { .name
= "sc2692", .driver_data
= (kernel_ulong_t
)&sc2692
, },
841 { .name
= "sc2891", .driver_data
= (kernel_ulong_t
)&sc2891
, },
842 { .name
= "sc2892", .driver_data
= (kernel_ulong_t
)&sc2892
, },
843 { .name
= "sc28202", .driver_data
= (kernel_ulong_t
)&sc28202
, },
844 { .name
= "sc68681", .driver_data
= (kernel_ulong_t
)&sc68681
, },
845 { .name
= "sc68692", .driver_data
= (kernel_ulong_t
)&sc68692
, },
848 MODULE_DEVICE_TABLE(platform
, sccnxp_id_table
);
850 static int sccnxp_probe(struct platform_device
*pdev
)
852 struct resource
*res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
853 struct sccnxp_pdata
*pdata
= dev_get_platdata(&pdev
->dev
);
855 struct sccnxp_port
*s
;
856 void __iomem
*membase
;
859 membase
= devm_ioremap_resource(&pdev
->dev
, res
);
861 return PTR_ERR(membase
);
863 s
= devm_kzalloc(&pdev
->dev
, sizeof(struct sccnxp_port
), GFP_KERNEL
);
865 dev_err(&pdev
->dev
, "Error allocating port structure\n");
868 platform_set_drvdata(pdev
, s
);
870 spin_lock_init(&s
->lock
);
872 s
->chip
= (struct sccnxp_chip
*)pdev
->id_entry
->driver_data
;
874 s
->regulator
= devm_regulator_get(&pdev
->dev
, "vcc");
875 if (!IS_ERR(s
->regulator
)) {
876 ret
= regulator_enable(s
->regulator
);
879 "Failed to enable regulator: %i\n", ret
);
882 } else if (PTR_ERR(s
->regulator
) == -EPROBE_DEFER
)
883 return -EPROBE_DEFER
;
885 clk
= devm_clk_get(&pdev
->dev
, NULL
);
887 if (PTR_ERR(clk
) == -EPROBE_DEFER
) {
891 dev_notice(&pdev
->dev
, "Using default clock frequency\n");
892 uartclk
= s
->chip
->freq_std
;
894 uartclk
= clk_get_rate(clk
);
896 /* Check input frequency */
897 if ((uartclk
< s
->chip
->freq_min
) || (uartclk
> s
->chip
->freq_max
)) {
898 dev_err(&pdev
->dev
, "Frequency out of bounds\n");
904 memcpy(&s
->pdata
, pdata
, sizeof(struct sccnxp_pdata
));
906 if (s
->pdata
.poll_time_us
) {
907 dev_info(&pdev
->dev
, "Using poll mode, resolution %u usecs\n",
908 s
->pdata
.poll_time_us
);
913 s
->irq
= platform_get_irq(pdev
, 0);
915 dev_err(&pdev
->dev
, "Missing irq resource data\n");
921 s
->uart
.owner
= THIS_MODULE
;
922 s
->uart
.dev_name
= "ttySC";
923 s
->uart
.major
= SCCNXP_MAJOR
;
924 s
->uart
.minor
= SCCNXP_MINOR
;
925 s
->uart
.nr
= s
->chip
->nr
;
926 #ifdef CONFIG_SERIAL_SCCNXP_CONSOLE
927 s
->uart
.cons
= &s
->console
;
928 s
->uart
.cons
->device
= uart_console_device
;
929 s
->uart
.cons
->write
= sccnxp_console_write
;
930 s
->uart
.cons
->setup
= sccnxp_console_setup
;
931 s
->uart
.cons
->flags
= CON_PRINTBUFFER
;
932 s
->uart
.cons
->index
= -1;
933 s
->uart
.cons
->data
= s
;
934 strcpy(s
->uart
.cons
->name
, "ttySC");
936 ret
= uart_register_driver(&s
->uart
);
938 dev_err(&pdev
->dev
, "Registering UART driver failed\n");
942 for (i
= 0; i
< s
->uart
.nr
; i
++) {
944 s
->port
[i
].dev
= &pdev
->dev
;
945 s
->port
[i
].irq
= s
->irq
;
946 s
->port
[i
].type
= PORT_SC26XX
;
947 s
->port
[i
].fifosize
= s
->chip
->fifosize
;
948 s
->port
[i
].flags
= UPF_SKIP_TEST
| UPF_FIXED_TYPE
;
949 s
->port
[i
].iotype
= UPIO_MEM
;
950 s
->port
[i
].mapbase
= res
->start
;
951 s
->port
[i
].membase
= membase
;
952 s
->port
[i
].regshift
= s
->pdata
.reg_shift
;
953 s
->port
[i
].uartclk
= uartclk
;
954 s
->port
[i
].ops
= &sccnxp_ops
;
955 uart_add_one_port(&s
->uart
, &s
->port
[i
]);
956 /* Set direction to input */
957 if (s
->chip
->flags
& SCCNXP_HAVE_IO
)
958 sccnxp_set_bit(&s
->port
[i
], DIR_OP
, 0);
961 /* Disable interrupts */
963 sccnxp_write(&s
->port
[0], SCCNXP_IMR_REG
, 0);
966 ret
= devm_request_threaded_irq(&pdev
->dev
, s
->irq
, NULL
,
968 IRQF_TRIGGER_FALLING
|
970 dev_name(&pdev
->dev
), s
);
974 dev_err(&pdev
->dev
, "Unable to reguest IRQ %i\n", s
->irq
);
976 init_timer(&s
->timer
);
977 setup_timer(&s
->timer
, sccnxp_timer
, (unsigned long)s
);
978 mod_timer(&s
->timer
, jiffies
+
979 usecs_to_jiffies(s
->pdata
.poll_time_us
));
983 uart_unregister_driver(&s
->uart
);
985 if (!IS_ERR(s
->regulator
))
986 return regulator_disable(s
->regulator
);
991 static int sccnxp_remove(struct platform_device
*pdev
)
994 struct sccnxp_port
*s
= platform_get_drvdata(pdev
);
997 devm_free_irq(&pdev
->dev
, s
->irq
, s
);
999 del_timer_sync(&s
->timer
);
1001 for (i
= 0; i
< s
->uart
.nr
; i
++)
1002 uart_remove_one_port(&s
->uart
, &s
->port
[i
]);
1004 uart_unregister_driver(&s
->uart
);
1006 if (!IS_ERR(s
->regulator
))
1007 return regulator_disable(s
->regulator
);
1012 static struct platform_driver sccnxp_uart_driver
= {
1014 .name
= SCCNXP_NAME
,
1016 .probe
= sccnxp_probe
,
1017 .remove
= sccnxp_remove
,
1018 .id_table
= sccnxp_id_table
,
1020 module_platform_driver(sccnxp_uart_driver
);
1022 MODULE_LICENSE("GPL v2");
1023 MODULE_AUTHOR("Alexander Shiyan <shc_work@mail.ru>");
1024 MODULE_DESCRIPTION("SCCNXP serial driver");