2 * Support for the asynchronous serial interface (DUART) included
3 * in the BCM1250 and derived System-On-a-Chip (SOC) devices.
5 * Copyright (c) 2007 Maciej W. Rozycki
7 * Derived from drivers/char/sb1250_duart.c for which the following
10 * Copyright (c) 2000, 2001, 2002, 2003, 2004 Broadcom Corporation
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
19 * "BCM1250/BCM1125/BCM1125H User Manual", Broadcom Corporation
22 #if defined(CONFIG_SERIAL_SB1250_DUART_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
26 #include <linux/compiler.h>
27 #include <linux/console.h>
28 #include <linux/delay.h>
29 #include <linux/errno.h>
30 #include <linux/init.h>
31 #include <linux/interrupt.h>
32 #include <linux/ioport.h>
33 #include <linux/kernel.h>
34 #include <linux/major.h>
35 #include <linux/serial.h>
36 #include <linux/serial_core.h>
37 #include <linux/spinlock.h>
38 #include <linux/sysrq.h>
39 #include <linux/tty.h>
40 #include <linux/types.h>
42 #include <asm/atomic.h>
46 #include <asm/sibyte/sb1250.h>
47 #include <asm/sibyte/sb1250_uart.h>
48 #include <asm/sibyte/swarm.h>
51 #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
52 #include <asm/sibyte/bcm1480_regs.h>
53 #include <asm/sibyte/bcm1480_int.h>
55 #define SBD_CHANREGS(line) A_BCM1480_DUART_CHANREG((line), 0)
56 #define SBD_CTRLREGS(line) A_BCM1480_DUART_CTRLREG((line), 0)
57 #define SBD_INT(line) (K_BCM1480_INT_UART_0 + (line))
59 #define DUART_CHANREG_SPACING BCM1480_DUART_CHANREG_SPACING
61 #define R_DUART_IMRREG(line) R_BCM1480_DUART_IMRREG(line)
62 #define R_DUART_INCHREG(line) R_BCM1480_DUART_INCHREG(line)
63 #define R_DUART_ISRREG(line) R_BCM1480_DUART_ISRREG(line)
65 #elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
66 #include <asm/sibyte/sb1250_regs.h>
67 #include <asm/sibyte/sb1250_int.h>
69 #define SBD_CHANREGS(line) A_DUART_CHANREG((line), 0)
70 #define SBD_CTRLREGS(line) A_DUART_CTRLREG(0)
71 #define SBD_INT(line) (K_INT_UART_0 + (line))
74 #error invalid SB1250 UART configuration
79 MODULE_AUTHOR("Maciej W. Rozycki <macro@linux-mips.org>");
80 MODULE_DESCRIPTION("BCM1xxx on-chip DUART serial driver");
81 MODULE_LICENSE("GPL");
84 #define DUART_MAX_CHIP 2
85 #define DUART_MAX_SIDE 2
91 struct sbd_duart
*duart
;
92 struct uart_port port
;
93 unsigned char __iomem
*memctrl
;
99 * Per-DUART state for the shared register space.
102 struct sbd_port sport
[2];
103 unsigned long mapctrl
;
107 #define to_sport(uport) container_of(uport, struct sbd_port, port)
109 static struct sbd_duart sbd_duarts
[DUART_MAX_CHIP
];
113 * Reading and writing SB1250 DUART registers.
115 * There are three register spaces: two per-channel ones and
116 * a shared one. We have to define accessors appropriately.
117 * All registers are 64-bit and all but the Baud Rate Clock
118 * registers only define 8 least significant bits. There is
119 * also a workaround to take into account. Raw accessors use
120 * the full register width, but cooked ones truncate it
121 * intentionally so that the rest of the driver does not care.
123 static u64
__read_sbdchn(struct sbd_port
*sport
, int reg
)
125 void __iomem
*csr
= sport
->port
.membase
+ reg
;
127 return __raw_readq(csr
);
130 static u64
__read_sbdshr(struct sbd_port
*sport
, int reg
)
132 void __iomem
*csr
= sport
->memctrl
+ reg
;
134 return __raw_readq(csr
);
137 static void __write_sbdchn(struct sbd_port
*sport
, int reg
, u64 value
)
139 void __iomem
*csr
= sport
->port
.membase
+ reg
;
141 __raw_writeq(value
, csr
);
144 static void __write_sbdshr(struct sbd_port
*sport
, int reg
, u64 value
)
146 void __iomem
*csr
= sport
->memctrl
+ reg
;
148 __raw_writeq(value
, csr
);
152 * In bug 1956, we get glitches that can mess up uart registers. This
153 * "read-mode-reg after any register access" is an accepted workaround.
155 static void __war_sbd1956(struct sbd_port
*sport
)
157 __read_sbdchn(sport
, R_DUART_MODE_REG_1
);
158 __read_sbdchn(sport
, R_DUART_MODE_REG_2
);
161 static unsigned char read_sbdchn(struct sbd_port
*sport
, int reg
)
163 unsigned char retval
;
165 retval
= __read_sbdchn(sport
, reg
);
167 __war_sbd1956(sport
);
171 static unsigned char read_sbdshr(struct sbd_port
*sport
, int reg
)
173 unsigned char retval
;
175 retval
= __read_sbdshr(sport
, reg
);
177 __war_sbd1956(sport
);
181 static void write_sbdchn(struct sbd_port
*sport
, int reg
, unsigned int value
)
183 __write_sbdchn(sport
, reg
, value
);
185 __war_sbd1956(sport
);
188 static void write_sbdshr(struct sbd_port
*sport
, int reg
, unsigned int value
)
190 __write_sbdshr(sport
, reg
, value
);
192 __war_sbd1956(sport
);
196 static int sbd_receive_ready(struct sbd_port
*sport
)
198 return read_sbdchn(sport
, R_DUART_STATUS
) & M_DUART_RX_RDY
;
201 static int sbd_receive_drain(struct sbd_port
*sport
)
205 while (sbd_receive_ready(sport
) && --loops
)
206 read_sbdchn(sport
, R_DUART_RX_HOLD
);
210 static int __maybe_unused
sbd_transmit_ready(struct sbd_port
*sport
)
212 return read_sbdchn(sport
, R_DUART_STATUS
) & M_DUART_TX_RDY
;
215 static int __maybe_unused
sbd_transmit_drain(struct sbd_port
*sport
)
219 while (!sbd_transmit_ready(sport
) && --loops
)
224 static int sbd_transmit_empty(struct sbd_port
*sport
)
226 return read_sbdchn(sport
, R_DUART_STATUS
) & M_DUART_TX_EMT
;
229 static int sbd_line_drain(struct sbd_port
*sport
)
233 while (!sbd_transmit_empty(sport
) && --loops
)
239 static unsigned int sbd_tx_empty(struct uart_port
*uport
)
241 struct sbd_port
*sport
= to_sport(uport
);
243 return sbd_transmit_empty(sport
) ? TIOCSER_TEMT
: 0;
246 static unsigned int sbd_get_mctrl(struct uart_port
*uport
)
248 struct sbd_port
*sport
= to_sport(uport
);
249 unsigned int mctrl
, status
;
251 status
= read_sbdshr(sport
, R_DUART_IN_PORT
);
252 status
>>= (uport
->line
) % 2;
253 mctrl
= (!(status
& M_DUART_IN_PIN0_VAL
) ? TIOCM_CTS
: 0) |
254 (!(status
& M_DUART_IN_PIN4_VAL
) ? TIOCM_CAR
: 0) |
255 (!(status
& M_DUART_RIN0_PIN
) ? TIOCM_RNG
: 0) |
256 (!(status
& M_DUART_IN_PIN2_VAL
) ? TIOCM_DSR
: 0);
260 static void sbd_set_mctrl(struct uart_port
*uport
, unsigned int mctrl
)
262 struct sbd_port
*sport
= to_sport(uport
);
263 unsigned int clr
= 0, set
= 0, mode2
;
265 if (mctrl
& TIOCM_DTR
)
266 set
|= M_DUART_SET_OPR2
;
268 clr
|= M_DUART_CLR_OPR2
;
269 if (mctrl
& TIOCM_RTS
)
270 set
|= M_DUART_SET_OPR0
;
272 clr
|= M_DUART_CLR_OPR0
;
273 clr
<<= (uport
->line
) % 2;
274 set
<<= (uport
->line
) % 2;
276 mode2
= read_sbdchn(sport
, R_DUART_MODE_REG_2
);
277 mode2
&= ~M_DUART_CHAN_MODE
;
278 if (mctrl
& TIOCM_LOOP
)
279 mode2
|= V_DUART_CHAN_MODE_LCL_LOOP
;
281 mode2
|= V_DUART_CHAN_MODE_NORMAL
;
283 write_sbdshr(sport
, R_DUART_CLEAR_OPR
, clr
);
284 write_sbdshr(sport
, R_DUART_SET_OPR
, set
);
285 write_sbdchn(sport
, R_DUART_MODE_REG_2
, mode2
);
288 static void sbd_stop_tx(struct uart_port
*uport
)
290 struct sbd_port
*sport
= to_sport(uport
);
292 write_sbdchn(sport
, R_DUART_CMD
, M_DUART_TX_DIS
);
293 sport
->tx_stopped
= 1;
296 static void sbd_start_tx(struct uart_port
*uport
)
298 struct sbd_port
*sport
= to_sport(uport
);
301 /* Enable tx interrupts. */
302 mask
= read_sbdshr(sport
, R_DUART_IMRREG((uport
->line
) % 2));
303 mask
|= M_DUART_IMR_TX
;
304 write_sbdshr(sport
, R_DUART_IMRREG((uport
->line
) % 2), mask
);
306 /* Go!, go!, go!... */
307 write_sbdchn(sport
, R_DUART_CMD
, M_DUART_TX_EN
);
308 sport
->tx_stopped
= 0;
311 static void sbd_stop_rx(struct uart_port
*uport
)
313 struct sbd_port
*sport
= to_sport(uport
);
315 write_sbdshr(sport
, R_DUART_IMRREG((uport
->line
) % 2), 0);
318 static void sbd_enable_ms(struct uart_port
*uport
)
320 struct sbd_port
*sport
= to_sport(uport
);
322 write_sbdchn(sport
, R_DUART_AUXCTL_X
,
323 M_DUART_CIN_CHNG_ENA
| M_DUART_CTS_CHNG_ENA
);
326 static void sbd_break_ctl(struct uart_port
*uport
, int break_state
)
328 struct sbd_port
*sport
= to_sport(uport
);
330 if (break_state
== -1)
331 write_sbdchn(sport
, R_DUART_CMD
, V_DUART_MISC_CMD_START_BREAK
);
333 write_sbdchn(sport
, R_DUART_CMD
, V_DUART_MISC_CMD_STOP_BREAK
);
337 static void sbd_receive_chars(struct sbd_port
*sport
)
339 struct uart_port
*uport
= &sport
->port
;
340 struct uart_icount
*icount
;
341 unsigned int status
, ch
, flag
;
344 for (count
= 16; count
; count
--) {
345 status
= read_sbdchn(sport
, R_DUART_STATUS
);
346 if (!(status
& M_DUART_RX_RDY
))
349 ch
= read_sbdchn(sport
, R_DUART_RX_HOLD
);
353 icount
= &uport
->icount
;
356 if (unlikely(status
&
357 (M_DUART_RCVD_BRK
| M_DUART_FRM_ERR
|
358 M_DUART_PARITY_ERR
| M_DUART_OVRUN_ERR
))) {
359 if (status
& M_DUART_RCVD_BRK
) {
361 if (uart_handle_break(uport
))
363 } else if (status
& M_DUART_FRM_ERR
)
365 else if (status
& M_DUART_PARITY_ERR
)
367 if (status
& M_DUART_OVRUN_ERR
)
370 status
&= uport
->read_status_mask
;
371 if (status
& M_DUART_RCVD_BRK
)
373 else if (status
& M_DUART_FRM_ERR
)
375 else if (status
& M_DUART_PARITY_ERR
)
379 if (uart_handle_sysrq_char(uport
, ch
))
382 uart_insert_char(uport
, status
, M_DUART_OVRUN_ERR
, ch
, flag
);
385 tty_flip_buffer_push(uport
->state
->port
.tty
);
388 static void sbd_transmit_chars(struct sbd_port
*sport
)
390 struct uart_port
*uport
= &sport
->port
;
391 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
395 /* XON/XOFF chars. */
396 if (sport
->port
.x_char
) {
397 write_sbdchn(sport
, R_DUART_TX_HOLD
, sport
->port
.x_char
);
398 sport
->port
.icount
.tx
++;
399 sport
->port
.x_char
= 0;
403 /* If nothing to do or stopped or hardware stopped. */
404 stop_tx
= (uart_circ_empty(xmit
) || uart_tx_stopped(&sport
->port
));
408 write_sbdchn(sport
, R_DUART_TX_HOLD
, xmit
->buf
[xmit
->tail
]);
409 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
410 sport
->port
.icount
.tx
++;
412 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
413 uart_write_wakeup(&sport
->port
);
416 /* Are we are done? */
417 if (stop_tx
|| uart_circ_empty(xmit
)) {
418 /* Disable tx interrupts. */
419 mask
= read_sbdshr(sport
, R_DUART_IMRREG((uport
->line
) % 2));
420 mask
&= ~M_DUART_IMR_TX
;
421 write_sbdshr(sport
, R_DUART_IMRREG((uport
->line
) % 2), mask
);
425 static void sbd_status_handle(struct sbd_port
*sport
)
427 struct uart_port
*uport
= &sport
->port
;
430 delta
= read_sbdshr(sport
, R_DUART_INCHREG((uport
->line
) % 2));
431 delta
>>= (uport
->line
) % 2;
433 if (delta
& (M_DUART_IN_PIN0_VAL
<< S_DUART_IN_PIN_CHNG
))
434 uart_handle_cts_change(uport
, !(delta
& M_DUART_IN_PIN0_VAL
));
436 if (delta
& (M_DUART_IN_PIN2_VAL
<< S_DUART_IN_PIN_CHNG
))
439 if (delta
& ((M_DUART_IN_PIN2_VAL
| M_DUART_IN_PIN0_VAL
) <<
440 S_DUART_IN_PIN_CHNG
))
441 wake_up_interruptible(&uport
->state
->port
.delta_msr_wait
);
444 static irqreturn_t
sbd_interrupt(int irq
, void *dev_id
)
446 struct sbd_port
*sport
= dev_id
;
447 struct uart_port
*uport
= &sport
->port
;
448 irqreturn_t status
= IRQ_NONE
;
449 unsigned int intstat
;
452 for (count
= 16; count
; count
--) {
453 intstat
= read_sbdshr(sport
,
454 R_DUART_ISRREG((uport
->line
) % 2));
455 intstat
&= read_sbdshr(sport
,
456 R_DUART_IMRREG((uport
->line
) % 2));
457 intstat
&= M_DUART_ISR_ALL
;
461 if (intstat
& M_DUART_ISR_RX
)
462 sbd_receive_chars(sport
);
463 if (intstat
& M_DUART_ISR_IN
)
464 sbd_status_handle(sport
);
465 if (intstat
& M_DUART_ISR_TX
)
466 sbd_transmit_chars(sport
);
468 status
= IRQ_HANDLED
;
475 static int sbd_startup(struct uart_port
*uport
)
477 struct sbd_port
*sport
= to_sport(uport
);
481 ret
= request_irq(sport
->port
.irq
, sbd_interrupt
,
482 IRQF_SHARED
, "sb1250-duart", sport
);
486 /* Clear the receive FIFO. */
487 sbd_receive_drain(sport
);
489 /* Clear the interrupt registers. */
490 write_sbdchn(sport
, R_DUART_CMD
, V_DUART_MISC_CMD_RESET_BREAK_INT
);
491 read_sbdshr(sport
, R_DUART_INCHREG((uport
->line
) % 2));
493 /* Set rx/tx interrupt to FIFO available. */
494 mode1
= read_sbdchn(sport
, R_DUART_MODE_REG_1
);
495 mode1
&= ~(M_DUART_RX_IRQ_SEL_RXFULL
| M_DUART_TX_IRQ_SEL_TXEMPT
);
496 write_sbdchn(sport
, R_DUART_MODE_REG_1
, mode1
);
498 /* Disable tx, enable rx. */
499 write_sbdchn(sport
, R_DUART_CMD
, M_DUART_TX_DIS
| M_DUART_RX_EN
);
500 sport
->tx_stopped
= 1;
502 /* Enable interrupts. */
503 write_sbdshr(sport
, R_DUART_IMRREG((uport
->line
) % 2),
504 M_DUART_IMR_IN
| M_DUART_IMR_RX
);
509 static void sbd_shutdown(struct uart_port
*uport
)
511 struct sbd_port
*sport
= to_sport(uport
);
513 write_sbdchn(sport
, R_DUART_CMD
, M_DUART_TX_DIS
| M_DUART_RX_DIS
);
514 sport
->tx_stopped
= 1;
515 free_irq(sport
->port
.irq
, sport
);
519 static void sbd_init_port(struct sbd_port
*sport
)
521 struct uart_port
*uport
= &sport
->port
;
523 if (sport
->initialised
)
526 /* There is no DUART reset feature, so just set some sane defaults. */
527 write_sbdchn(sport
, R_DUART_CMD
, V_DUART_MISC_CMD_RESET_TX
);
528 write_sbdchn(sport
, R_DUART_CMD
, V_DUART_MISC_CMD_RESET_RX
);
529 write_sbdchn(sport
, R_DUART_MODE_REG_1
, V_DUART_BITS_PER_CHAR_8
);
530 write_sbdchn(sport
, R_DUART_MODE_REG_2
, 0);
531 write_sbdchn(sport
, R_DUART_FULL_CTL
,
532 V_DUART_INT_TIME(0) | V_DUART_SIG_FULL(15));
533 write_sbdchn(sport
, R_DUART_OPCR_X
, 0);
534 write_sbdchn(sport
, R_DUART_AUXCTL_X
, 0);
535 write_sbdshr(sport
, R_DUART_IMRREG((uport
->line
) % 2), 0);
537 sport
->initialised
= 1;
540 static void sbd_set_termios(struct uart_port
*uport
, struct ktermios
*termios
,
541 struct ktermios
*old_termios
)
543 struct sbd_port
*sport
= to_sport(uport
);
544 unsigned int mode1
= 0, mode2
= 0, aux
= 0;
545 unsigned int mode1mask
= 0, mode2mask
= 0, auxmask
= 0;
546 unsigned int oldmode1
, oldmode2
, oldaux
;
547 unsigned int baud
, brg
;
548 unsigned int command
;
550 mode1mask
|= ~(M_DUART_PARITY_MODE
| M_DUART_PARITY_TYPE_ODD
|
551 M_DUART_BITS_PER_CHAR
);
552 mode2mask
|= ~M_DUART_STOP_BIT_LEN_2
;
553 auxmask
|= ~M_DUART_CTS_CHNG_ENA
;
556 switch (termios
->c_cflag
& CSIZE
) {
559 /* Unsupported, leave unchanged. */
560 mode1mask
|= M_DUART_PARITY_MODE
;
563 mode1
|= V_DUART_BITS_PER_CHAR_7
;
567 mode1
|= V_DUART_BITS_PER_CHAR_8
;
571 /* Parity and stop bits. */
572 if (termios
->c_cflag
& CSTOPB
)
573 mode2
|= M_DUART_STOP_BIT_LEN_2
;
575 mode2
|= M_DUART_STOP_BIT_LEN_1
;
576 if (termios
->c_cflag
& PARENB
)
577 mode1
|= V_DUART_PARITY_MODE_ADD
;
579 mode1
|= V_DUART_PARITY_MODE_NONE
;
580 if (termios
->c_cflag
& PARODD
)
581 mode1
|= M_DUART_PARITY_TYPE_ODD
;
583 mode1
|= M_DUART_PARITY_TYPE_EVEN
;
585 baud
= uart_get_baud_rate(uport
, termios
, old_termios
, 1200, 5000000);
586 brg
= V_DUART_BAUD_RATE(baud
);
587 /* The actual lower bound is 1221bps, so compensate. */
588 if (brg
> M_DUART_CLK_COUNTER
)
589 brg
= M_DUART_CLK_COUNTER
;
591 uart_update_timeout(uport
, termios
->c_cflag
, baud
);
593 uport
->read_status_mask
= M_DUART_OVRUN_ERR
;
594 if (termios
->c_iflag
& INPCK
)
595 uport
->read_status_mask
|= M_DUART_FRM_ERR
|
597 if (termios
->c_iflag
& (BRKINT
| PARMRK
))
598 uport
->read_status_mask
|= M_DUART_RCVD_BRK
;
600 uport
->ignore_status_mask
= 0;
601 if (termios
->c_iflag
& IGNPAR
)
602 uport
->ignore_status_mask
|= M_DUART_FRM_ERR
|
604 if (termios
->c_iflag
& IGNBRK
) {
605 uport
->ignore_status_mask
|= M_DUART_RCVD_BRK
;
606 if (termios
->c_iflag
& IGNPAR
)
607 uport
->ignore_status_mask
|= M_DUART_OVRUN_ERR
;
610 if (termios
->c_cflag
& CREAD
)
611 command
= M_DUART_RX_EN
;
613 command
= M_DUART_RX_DIS
;
615 if (termios
->c_cflag
& CRTSCTS
)
616 aux
|= M_DUART_CTS_CHNG_ENA
;
618 aux
&= ~M_DUART_CTS_CHNG_ENA
;
620 spin_lock(&uport
->lock
);
622 if (sport
->tx_stopped
)
623 command
|= M_DUART_TX_DIS
;
625 command
|= M_DUART_TX_EN
;
627 oldmode1
= read_sbdchn(sport
, R_DUART_MODE_REG_1
) & mode1mask
;
628 oldmode2
= read_sbdchn(sport
, R_DUART_MODE_REG_2
) & mode2mask
;
629 oldaux
= read_sbdchn(sport
, R_DUART_AUXCTL_X
) & auxmask
;
631 if (!sport
->tx_stopped
)
632 sbd_line_drain(sport
);
633 write_sbdchn(sport
, R_DUART_CMD
, M_DUART_TX_DIS
| M_DUART_RX_DIS
);
635 write_sbdchn(sport
, R_DUART_MODE_REG_1
, mode1
| oldmode1
);
636 write_sbdchn(sport
, R_DUART_MODE_REG_2
, mode2
| oldmode2
);
637 write_sbdchn(sport
, R_DUART_CLK_SEL
, brg
);
638 write_sbdchn(sport
, R_DUART_AUXCTL_X
, aux
| oldaux
);
640 write_sbdchn(sport
, R_DUART_CMD
, command
);
642 spin_unlock(&uport
->lock
);
646 static const char *sbd_type(struct uart_port
*uport
)
648 return "SB1250 DUART";
651 static void sbd_release_port(struct uart_port
*uport
)
653 struct sbd_port
*sport
= to_sport(uport
);
654 struct sbd_duart
*duart
= sport
->duart
;
657 iounmap(sport
->memctrl
);
658 sport
->memctrl
= NULL
;
659 iounmap(uport
->membase
);
660 uport
->membase
= NULL
;
662 map_guard
= atomic_add_return(-1, &duart
->map_guard
);
664 release_mem_region(duart
->mapctrl
, DUART_CHANREG_SPACING
);
665 release_mem_region(uport
->mapbase
, DUART_CHANREG_SPACING
);
668 static int sbd_map_port(struct uart_port
*uport
)
670 const char *err
= KERN_ERR
"sbd: Cannot map MMIO\n";
671 struct sbd_port
*sport
= to_sport(uport
);
672 struct sbd_duart
*duart
= sport
->duart
;
675 uport
->membase
= ioremap_nocache(uport
->mapbase
,
676 DUART_CHANREG_SPACING
);
677 if (!uport
->membase
) {
683 sport
->memctrl
= ioremap_nocache(duart
->mapctrl
,
684 DUART_CHANREG_SPACING
);
685 if (!sport
->memctrl
) {
687 iounmap(uport
->membase
);
688 uport
->membase
= NULL
;
695 static int sbd_request_port(struct uart_port
*uport
)
697 const char *err
= KERN_ERR
"sbd: Unable to reserve MMIO resource\n";
698 struct sbd_duart
*duart
= to_sport(uport
)->duart
;
702 if (!request_mem_region(uport
->mapbase
, DUART_CHANREG_SPACING
,
707 map_guard
= atomic_add_return(1, &duart
->map_guard
);
708 if (map_guard
== 1) {
709 if (!request_mem_region(duart
->mapctrl
, DUART_CHANREG_SPACING
,
711 atomic_add(-1, &duart
->map_guard
);
717 ret
= sbd_map_port(uport
);
719 map_guard
= atomic_add_return(-1, &duart
->map_guard
);
721 release_mem_region(duart
->mapctrl
,
722 DUART_CHANREG_SPACING
);
726 release_mem_region(uport
->mapbase
, DUART_CHANREG_SPACING
);
732 static void sbd_config_port(struct uart_port
*uport
, int flags
)
734 struct sbd_port
*sport
= to_sport(uport
);
736 if (flags
& UART_CONFIG_TYPE
) {
737 if (sbd_request_port(uport
))
740 uport
->type
= PORT_SB1250_DUART
;
742 sbd_init_port(sport
);
746 static int sbd_verify_port(struct uart_port
*uport
, struct serial_struct
*ser
)
750 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= PORT_SB1250_DUART
)
752 if (ser
->irq
!= uport
->irq
)
754 if (ser
->baud_base
!= uport
->uartclk
/ 16)
760 static const struct uart_ops sbd_ops
= {
761 .tx_empty
= sbd_tx_empty
,
762 .set_mctrl
= sbd_set_mctrl
,
763 .get_mctrl
= sbd_get_mctrl
,
764 .stop_tx
= sbd_stop_tx
,
765 .start_tx
= sbd_start_tx
,
766 .stop_rx
= sbd_stop_rx
,
767 .enable_ms
= sbd_enable_ms
,
768 .break_ctl
= sbd_break_ctl
,
769 .startup
= sbd_startup
,
770 .shutdown
= sbd_shutdown
,
771 .set_termios
= sbd_set_termios
,
773 .release_port
= sbd_release_port
,
774 .request_port
= sbd_request_port
,
775 .config_port
= sbd_config_port
,
776 .verify_port
= sbd_verify_port
,
779 /* Initialize SB1250 DUART port structures. */
780 static void __init
sbd_probe_duarts(void)
789 /* Set the number of available units based on the SOC type. */
791 case K_SYS_SOC_TYPE_BCM1x55
:
792 case K_SYS_SOC_TYPE_BCM1x80
:
796 /* Assume at least two serial ports at the normal address. */
803 for (chip
= 0, line
= 0; chip
< DUART_MAX_CHIP
&& line
< max_lines
;
805 sbd_duarts
[chip
].mapctrl
= SBD_CTRLREGS(line
);
807 for (side
= 0; side
< DUART_MAX_SIDE
&& line
< max_lines
;
809 struct sbd_port
*sport
= &sbd_duarts
[chip
].sport
[side
];
810 struct uart_port
*uport
= &sport
->port
;
812 sport
->duart
= &sbd_duarts
[chip
];
814 uport
->irq
= SBD_INT(line
);
815 uport
->uartclk
= 100000000 / 20 * 16;
816 uport
->fifosize
= 16;
817 uport
->iotype
= UPIO_MEM
;
818 uport
->flags
= UPF_BOOT_AUTOCONF
;
819 uport
->ops
= &sbd_ops
;
821 uport
->mapbase
= SBD_CHANREGS(line
);
827 #ifdef CONFIG_SERIAL_SB1250_DUART_CONSOLE
829 * Serial console stuff. Very basic, polling driver for doing serial
830 * console output. The console_lock is held by the caller, so we
831 * shouldn't be interrupted for more console activity.
833 static void sbd_console_putchar(struct uart_port
*uport
, int ch
)
835 struct sbd_port
*sport
= to_sport(uport
);
837 sbd_transmit_drain(sport
);
838 write_sbdchn(sport
, R_DUART_TX_HOLD
, ch
);
841 static void sbd_console_write(struct console
*co
, const char *s
,
844 int chip
= co
->index
/ DUART_MAX_SIDE
;
845 int side
= co
->index
% DUART_MAX_SIDE
;
846 struct sbd_port
*sport
= &sbd_duarts
[chip
].sport
[side
];
847 struct uart_port
*uport
= &sport
->port
;
851 /* Disable transmit interrupts and enable the transmitter. */
852 spin_lock_irqsave(&uport
->lock
, flags
);
853 mask
= read_sbdshr(sport
, R_DUART_IMRREG((uport
->line
) % 2));
854 write_sbdshr(sport
, R_DUART_IMRREG((uport
->line
) % 2),
855 mask
& ~M_DUART_IMR_TX
);
856 write_sbdchn(sport
, R_DUART_CMD
, M_DUART_TX_EN
);
857 spin_unlock_irqrestore(&uport
->lock
, flags
);
859 uart_console_write(&sport
->port
, s
, count
, sbd_console_putchar
);
861 /* Restore transmit interrupts and the transmitter enable. */
862 spin_lock_irqsave(&uport
->lock
, flags
);
863 sbd_line_drain(sport
);
864 if (sport
->tx_stopped
)
865 write_sbdchn(sport
, R_DUART_CMD
, M_DUART_TX_DIS
);
866 write_sbdshr(sport
, R_DUART_IMRREG((uport
->line
) % 2), mask
);
867 spin_unlock_irqrestore(&uport
->lock
, flags
);
870 static int __init
sbd_console_setup(struct console
*co
, char *options
)
872 int chip
= co
->index
/ DUART_MAX_SIDE
;
873 int side
= co
->index
% DUART_MAX_SIDE
;
874 struct sbd_port
*sport
= &sbd_duarts
[chip
].sport
[side
];
875 struct uart_port
*uport
= &sport
->port
;
885 ret
= sbd_map_port(uport
);
889 sbd_init_port(sport
);
892 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
893 return uart_set_options(uport
, co
, baud
, parity
, bits
, flow
);
896 static struct uart_driver sbd_reg
;
897 static struct console sbd_console
= {
899 .write
= sbd_console_write
,
900 .device
= uart_console_device
,
901 .setup
= sbd_console_setup
,
902 .flags
= CON_PRINTBUFFER
,
907 static int __init
sbd_serial_console_init(void)
910 register_console(&sbd_console
);
915 console_initcall(sbd_serial_console_init
);
917 #define SERIAL_SB1250_DUART_CONSOLE &sbd_console
919 #define SERIAL_SB1250_DUART_CONSOLE NULL
920 #endif /* CONFIG_SERIAL_SB1250_DUART_CONSOLE */
923 static struct uart_driver sbd_reg
= {
924 .owner
= THIS_MODULE
,
925 .driver_name
= "sb1250_duart",
928 .minor
= SB1250_DUART_MINOR_BASE
,
929 .nr
= DUART_MAX_CHIP
* DUART_MAX_SIDE
,
930 .cons
= SERIAL_SB1250_DUART_CONSOLE
,
933 /* Set up the driver and register it. */
934 static int __init
sbd_init(void)
940 ret
= uart_register_driver(&sbd_reg
);
944 for (i
= 0; i
< DUART_MAX_CHIP
* DUART_MAX_SIDE
; i
++) {
945 struct sbd_duart
*duart
= &sbd_duarts
[i
/ DUART_MAX_SIDE
];
946 struct sbd_port
*sport
= &duart
->sport
[i
% DUART_MAX_SIDE
];
947 struct uart_port
*uport
= &sport
->port
;
950 uart_add_one_port(&sbd_reg
, uport
);
956 /* Unload the driver. Unregister stuff, get ready to go away. */
957 static void __exit
sbd_exit(void)
961 for (i
= DUART_MAX_CHIP
* DUART_MAX_SIDE
- 1; i
>= 0; i
--) {
962 struct sbd_duart
*duart
= &sbd_duarts
[i
/ DUART_MAX_SIDE
];
963 struct sbd_port
*sport
= &duart
->sport
[i
% DUART_MAX_SIDE
];
964 struct uart_port
*uport
= &sport
->port
;
967 uart_remove_one_port(&sbd_reg
, uport
);
970 uart_unregister_driver(&sbd_reg
);
973 module_init(sbd_init
);
974 module_exit(sbd_exit
);