2 * arch/ppc/4xx_io/serial_sicc.c
4 * Driver for IBM STB3xxx SICC serial port
6 * Based on drivers/char/serial_amba.c, by ARM Ltd.
8 * Copyright 2001 IBM Crop.
9 * Author: IBM China Research Lab
10 * Yudong Yang <yangyud@cn.ibm.com>
11 * Yi Ge <geyi@cn.ibm.com>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 * This is a driver for SICC serial port on IBM Redwood 4 evaluation board.
29 * The driver support both as a console device and normal serial device and
30 * is compatible with normal ttyS* devices.
33 #include <linux/config.h>
34 #include <linux/module.h>
35 #include <linux/kernel.h>
36 #include <linux/errno.h>
37 #include <linux/signal.h>
38 #include <linux/sched.h>
39 #include <linux/interrupt.h>
40 #include <linux/tty.h>
41 #include <linux/tty_flip.h>
42 #include <linux/major.h>
43 #include <linux/string.h>
44 #include <linux/fcntl.h>
45 #include <linux/ptrace.h>
46 #include <linux/ioport.h>
48 #include <linux/slab.h>
49 #include <linux/init.h>
50 #include <linux/circ_buf.h>
51 #include <linux/serial.h>
52 #include <linux/console.h>
53 #include <linux/sysrq.h>
54 #include <linux/bitops.h>
56 #include <asm/system.h>
59 #include <asm/uaccess.h>
60 #include <asm/serial.h>
63 #include <linux/serialP.h>
66 /* -----------------------------------------------------------------------------
67 * From STB03xxx SICC UART Specification
68 * -----------------------------------------------------------------------------
69 * UART Register Offsets.
72 #define BL_SICC_LSR 0x0000000 /* line status register read/clear */
73 #define BL_SICC_LSRS 0x0000001 /* set line status register read/set */
74 #define BL_SICC_HSR 0x0000002 /* handshake status register r/clear */
75 #define BL_SICC_HSRS 0x0000003 /* set handshake status register r/set */
76 #define BL_SICC_BRDH 0x0000004 /* baudrate divisor high reg r/w */
77 #define BL_SICC_BRDL 0x0000005 /* baudrate divisor low reg r/w */
78 #define BL_SICC_LCR 0x0000006 /* control register r/w */
79 #define BL_SICC_RCR 0x0000007 /* receiver command register r/w */
80 #define BL_SICC_TxCR 0x0000008 /* transmitter command register r/w */
81 #define BL_SICC_RBR 0x0000009 /* receive buffer r */
82 #define BL_SICC_TBR 0x0000009 /* transmit buffer w */
83 #define BL_SICC_CTL2 0x000000A /* added for Vesta */
84 #define BL_SICC_IrCR 0x000000B /* added for Vesta IR */
86 /* masks and definitions for serial port control register */
88 #define _LCR_LM_MASK 0xc0 /* loop back modes */
89 #define _LCR_DTR_MASK 0x20 /* data terminal ready 0-inactive */
90 #define _LCR_RTS_MASK 0x10 /* request to send 0-inactive */
91 #define _LCR_DB_MASK 0x08 /* data bits mask */
92 #define _LCR_PE_MASK 0x04 /* parity enable */
93 #define _LCR_PTY_MASK 0x02 /* parity */
94 #define _LCR_SB_MASK 0x01 /* stop bit mask */
96 #define _LCR_LM_NORM 0x00 /* normal operation */
97 #define _LCR_LM_LOOP 0x40 /* internal loopback mode */
98 #define _LCR_LM_ECHO 0x80 /* automatic echo mode */
99 #define _LCR_LM_RES 0xc0 /* reserved */
101 #define _LCR_DTR_ACTIVE _LCR_DTR_MASK /* DTR is active */
102 #define _LCR_RTS_ACTIVE _LCR_RTS_MASK /* RTS is active */
103 #define _LCR_DB_8_BITS _LCR_DB_MASK /* 8 data bits */
104 #define _LCR_DB_7_BITS 0x00 /* 7 data bits */
105 #define _LCR_PE_ENABLE _LCR_PE_MASK /* parity enabled */
106 #define _LCR_PE_DISABLE 0x00 /* parity disabled */
107 #define _LCR_PTY_EVEN 0x00 /* even parity */
108 #define _LCR_PTY_ODD _LCR_PTY_MASK /* odd parity */
109 #define _LCR_SB_1_BIT 0x00 /* one stop bit */
110 #define _LCR_SB_2_BIT _LCR_SB_MASK /* two stop bit */
112 /* serial port handshake register */
114 #define _HSR_DIS_MASK 0x80 /* DSR input inactive error mask */
115 #define _HSR_CS_MASK 0x40 /* CTS input inactive error mask */
116 #define _HSR_DIS_ACT 0x00 /* dsr input is active */
117 #define _HSR_DIS_INACT _HSR_DIS_MASK /* dsr input is inactive */
118 #define _HSR_CS_ACT 0x00 /* cts input is active */
119 #define _HSR_CS_INACT _HSR_CS_MASK /* cts input is active */
121 /* serial port line status register */
123 #define _LSR_RBR_MASK 0x80 /* receive buffer ready mask */
124 #define _LSR_FE_MASK 0x40 /* framing error */
125 #define _LSR_OE_MASK 0x20 /* overrun error */
126 #define _LSR_PE_MASK 0x10 /* parity error */
127 #define _LSR_LB_MASK 0x08 /* line break */
128 #define _LSR_TBR_MASK 0x04 /* transmit buffer ready */
129 #define _LSR_TSR_MASK 0x02 /* transmit shift register ready */
131 #define _LSR_RBR_FULL _LSR_RBR_MASK /* receive buffer is full */
132 #define _LSR_FE_ERROR _LSR_FE_MASK /* framing error detected */
133 #define _LSR_OE_ERROR _LSR_OE_MASK /* overrun error detected */
134 #define _LSR_PE_ERROR _LSR_PE_MASK /* parity error detected */
135 #define _LSR_LB_BREAK _LSR_LB_MASK /* line break detected */
136 #define _LSR_TBR_EMPTY _LSR_TBR_MASK /* transmit buffer is ready */
137 #define _LSR_TSR_EMPTY _LSR_TSR_MASK /* transmit shift register is empty */
138 #define _LSR_TX_ALL 0x06 /* all physical transmit is done */
140 #define _LSR_RX_ERR (_LSR_LB_BREAK | _LSR_FE_MASK | _LSR_OE_MASK | \
143 /* serial port receiver command register */
145 #define _RCR_ER_MASK 0x80 /* enable receiver mask */
146 #define _RCR_DME_MASK 0x60 /* dma mode */
147 #define _RCR_EIE_MASK 0x10 /* error interrupt enable mask */
148 #define _RCR_PME_MASK 0x08 /* pause mode mask */
150 #define _RCR_ER_ENABLE _RCR_ER_MASK /* receiver enabled */
151 #define _RCR_DME_DISABLE 0x00 /* dma disabled */
152 #define _RCR_DME_RXRDY 0x20 /* dma disabled, RxRDY interrupt enabled*/
153 #define _RCR_DME_ENABLE2 0x40 /* dma enabled,receiver src channel 2 */
154 #define _RCR_DME_ENABLE3 0x60 /* dma enabled,receiver src channel 3 */
155 #define _RCR_PME_HARD _RCR_PME_MASK /* RTS controlled by hardware */
156 #define _RCR_PME_SOFT 0x00 /* RTS controlled by software */
158 /* serial port transmit command register */
160 #define _TxCR_ET_MASK 0x80 /* transmiter enable mask */
161 #define _TxCR_DME_MASK 0x60 /* dma mode mask */
162 #define _TxCR_TIE_MASK 0x10 /* empty interrupt enable mask */
163 #define _TxCR_EIE_MASK 0x08 /* error interrupt enable mask */
164 #define _TxCR_SPE_MASK 0x04 /* stop/pause mask */
165 #define _TxCR_TB_MASK 0x02 /* transmit break mask */
167 #define _TxCR_ET_ENABLE _TxCR_ET_MASK /* transmiter enabled */
168 #define _TxCR_DME_DISABLE 0x00 /* transmiter disabled, TBR intr disabled */
169 #define _TxCR_DME_TBR 0x20 /* transmiter disabled, TBR intr enabled */
170 #define _TxCR_DME_CHAN_2 0x40 /* dma enabled, destination chann 2 */
171 #define _TxCR_DME_CHAN_3 0x60 /* dma enabled, destination chann 3 */
173 /* serial ctl reg 2 - added for Vesta */
175 #define _CTL2_EXTERN 0x80 /* */
176 #define _CTL2_USEFIFO 0x40 /* */
177 #define _CTL2_RESETRF 0x08 /* */
178 #define _CTL2_RESETTF 0x04 /* */
182 #define SERIAL_SICC_NAME "ttySICC"
183 #define SERIAL_SICC_MAJOR 150
184 #define SERIAL_SICC_MINOR 1
185 #define SERIAL_SICC_NR 1
195 * Things needed by tty driver
197 static struct tty_driver
*siccnormal_driver
;
199 #if defined(CONFIG_SERIAL_SICC_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
200 #define SUPPORT_SYSRQ
204 * Things needed internally to this driver
208 * tmp_buf is used as a temporary buffer by serial_write. We need to
209 * lock it in case the copy_from_user blocks while swapping in a page,
210 * and some other program tries to do a serial write at the same time.
211 * Since the lock will only come under contention when the system is
212 * swapping and available memory is low, it makes sense to share one
213 * buffer across all the serial ports, since it significantly saves
214 * memory if large numbers of serial ports are open.
216 static u_char
*tmp_buf
;
217 static DECLARE_MUTEX(tmp_buf_sem
);
219 #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
221 /* number of characters left in xmit buffer before we ask for more */
222 #define WAKEUP_CHARS 256
223 #define SICC_ISR_PASS_LIMIT 256
225 #define EVT_WRITE_WAKEUP 0
242 * Static information about the port
245 unsigned int uart_base
;
246 unsigned int uart_base_phys
;
249 unsigned int uartclk
;
250 unsigned int fifosize
;
251 unsigned int tiocm_support
;
252 void (*set_mctrl
)(struct SICC_port
*, u_int mctrl
);
256 * This is the state information which is persistent across opens
259 struct SICC_icount icount
;
261 unsigned int close_delay
;
262 unsigned int closing_wait
;
263 unsigned int custom_divisor
;
266 struct SICC_info
*info
;
267 spinlock_t sicc_lock
;
270 #define SICC_XMIT_SIZE 1024
272 * This is the state information which is only valid when the port is open.
275 struct SICC_port
*port
;
276 struct SICC_state
*state
;
277 struct tty_struct
*tty
;
278 unsigned char x_char
;
279 unsigned char old_status
;
280 unsigned char read_status_mask
;
281 unsigned char ignore_status_mask
;
282 struct circ_buf xmit
;
289 unsigned int timeout
;
294 struct tasklet_struct tlet
;
296 wait_queue_head_t open_wait
;
297 wait_queue_head_t close_wait
;
298 wait_queue_head_t delta_msr_wait
;
301 #ifdef CONFIG_SERIAL_SICC_CONSOLE
302 static struct console siccuart_cons
;
304 static void siccuart_change_speed(struct SICC_info
*info
, struct termios
*old_termios
);
305 static void siccuart_wait_until_sent(struct tty_struct
*tty
, int timeout
);
309 static void powerpcMtcic_cr(unsigned long value
)
311 mtdcr(DCRN_CICCR
, value
);
314 static unsigned long powerpcMfcic_cr(void)
316 return mfdcr(DCRN_CICCR
);
319 static unsigned long powerpcMfclkgpcr(void)
321 return mfdcr(DCRN_SCCR
);
324 static void sicc_set_mctrl_null(struct SICC_port
*port
, u_int mctrl
)
328 static struct SICC_port sicc_ports
[SERIAL_SICC_NR
] = {
331 .uart_base_phys
= SICC0_IO_BASE
,
332 .irqrx
= SICC0_INTRX
,
333 .irqtx
= SICC0_INTTX
,
336 .set_mctrl
= sicc_set_mctrl_null
,
340 static struct SICC_state sicc_state
[SERIAL_SICC_NR
];
342 static void siccuart_enable_rx_interrupt(struct SICC_info
*info
)
346 cr
= readb(info
->port
->uart_base
+BL_SICC_RCR
);
347 cr
&= ~_RCR_DME_MASK
;
348 cr
|= _RCR_DME_RXRDY
;
349 writeb(cr
, info
->port
->uart_base
+BL_SICC_RCR
);
352 static void siccuart_disable_rx_interrupt(struct SICC_info
*info
)
356 cr
= readb(info
->port
->uart_base
+BL_SICC_RCR
);
357 cr
&= ~_RCR_DME_MASK
;
358 cr
|= _RCR_DME_DISABLE
;
359 writeb(cr
, info
->port
->uart_base
+BL_SICC_RCR
);
363 static void siccuart_enable_tx_interrupt(struct SICC_info
*info
)
367 cr
= readb(info
->port
->uart_base
+BL_SICC_TxCR
);
368 cr
&= ~_TxCR_DME_MASK
;
370 writeb(cr
, info
->port
->uart_base
+BL_SICC_TxCR
);
373 static void siccuart_disable_tx_interrupt(struct SICC_info
*info
)
377 cr
= readb(info
->port
->uart_base
+BL_SICC_TxCR
);
378 cr
&= ~_TxCR_DME_MASK
;
379 cr
|= _TxCR_DME_DISABLE
;
380 writeb(cr
, info
->port
->uart_base
+BL_SICC_TxCR
);
384 static void siccuart_stop(struct tty_struct
*tty
)
386 struct SICC_info
*info
= tty
->driver_data
;
389 /* disable interrupts while stopping serial port interrupts */
390 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
391 siccuart_disable_tx_interrupt(info
);
392 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
395 static void siccuart_start(struct tty_struct
*tty
)
397 struct SICC_info
*info
= tty
->driver_data
;
400 /* disable interrupts while starting serial port interrupts */
401 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
402 if (info
->xmit
.head
!= info
->xmit
.tail
404 siccuart_enable_tx_interrupt(info
);
405 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
410 * This routine is used by the interrupt handler to schedule
411 * processing in the software interrupt portion of the driver.
413 static void siccuart_event(struct SICC_info
*info
, int event
)
415 info
->event
|= 1 << event
;
416 tasklet_schedule(&info
->tlet
);
420 siccuart_rx_chars(struct SICC_info
*info
, struct pt_regs
*regs
)
422 struct tty_struct
*tty
= info
->tty
;
423 unsigned int status
, ch
, rsr
, flg
, ignored
= 0;
424 struct SICC_icount
*icount
= &info
->state
->icount
;
425 struct SICC_port
*port
= info
->port
;
427 status
= readb(port
->uart_base
+BL_SICC_LSR
);
428 while (status
& _LSR_RBR_FULL
) {
429 ch
= readb(port
->uart_base
+BL_SICC_RBR
);
431 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)
438 * Note that the error handling code is
439 * out of the main execution path
441 rsr
= readb(port
->uart_base
+BL_SICC_LSR
);
442 if (rsr
& _LSR_RX_ERR
)
446 if (ch
&& time_before(jiffies
, info
->sysrq
)) {
447 handle_sysrq(ch
, regs
, NULL
);
455 *tty
->flip
.flag_buf_ptr
++ = flg
;
456 *tty
->flip
.char_buf_ptr
++ = ch
;
459 status
= readb(port
->uart_base
+BL_SICC_LSR
);
462 tty_flip_buffer_push(tty
);
466 if (rsr
& _LSR_LB_BREAK
) {
467 rsr
&= ~(_LSR_FE_MASK
| _LSR_PE_MASK
);
471 if (info
->state
->line
== siccuart_cons
.index
) {
473 info
->sysrq
= jiffies
+ HZ
*5;
478 } else if (rsr
& _LSR_PE_MASK
)
480 else if (rsr
& _LSR_FE_MASK
)
482 if (rsr
& _LSR_OE_MASK
)
485 if (rsr
& info
->ignore_status_mask
) {
490 rsr
&= info
->read_status_mask
;
492 if (rsr
& _LSR_LB_BREAK
)
494 else if (rsr
& _LSR_PE_MASK
)
496 else if (rsr
& _LSR_FE_MASK
)
499 if (rsr
& _LSR_OE_MASK
) {
501 * CHECK: does overrun affect the current character?
502 * ASSUMPTION: it does not.
504 *tty
->flip
.flag_buf_ptr
++ = flg
;
505 *tty
->flip
.char_buf_ptr
++ = ch
;
507 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)
518 static void siccuart_tx_chars(struct SICC_info
*info
)
520 struct SICC_port
*port
= info
->port
;
522 unsigned char status
;
526 writeb(info
->x_char
, port
->uart_base
+ BL_SICC_TBR
);
527 info
->state
->icount
.tx
++;
531 if (info
->xmit
.head
== info
->xmit
.tail
532 || info
->tty
->stopped
533 || info
->tty
->hw_stopped
) {
534 siccuart_disable_tx_interrupt(info
);
535 writeb(status
&(~_LSR_RBR_MASK
),port
->uart_base
+BL_SICC_LSR
);
539 count
= port
->fifosize
;
541 writeb(info
->xmit
.buf
[info
->xmit
.tail
], port
->uart_base
+ BL_SICC_TBR
);
542 info
->xmit
.tail
= (info
->xmit
.tail
+ 1) & (SICC_XMIT_SIZE
- 1);
543 info
->state
->icount
.tx
++;
544 if (info
->xmit
.head
== info
->xmit
.tail
)
546 } while (--count
> 0);
548 if (CIRC_CNT(info
->xmit
.head
,
550 SICC_XMIT_SIZE
) < WAKEUP_CHARS
)
551 siccuart_event(info
, EVT_WRITE_WAKEUP
);
553 if (info
->xmit
.head
== info
->xmit
.tail
) {
554 siccuart_disable_tx_interrupt(info
);
559 static irqreturn_t
siccuart_int_rx(int irq
, void *dev_id
, struct pt_regs
*regs
)
561 struct SICC_info
*info
= dev_id
;
562 siccuart_rx_chars(info
, regs
);
567 static irqreturn_t
siccuart_int_tx(int irq
, void *dev_id
, struct pt_regs
*regs
)
569 struct SICC_info
*info
= dev_id
;
570 siccuart_tx_chars(info
);
574 static void siccuart_tasklet_action(unsigned long data
)
576 struct SICC_info
*info
= (struct SICC_info
*)data
;
577 struct tty_struct
*tty
;
580 if (!tty
|| !test_and_clear_bit(EVT_WRITE_WAKEUP
, &info
->event
))
583 if ((tty
->flags
& (1 << TTY_DO_WRITE_WAKEUP
)) &&
584 tty
->ldisc
.write_wakeup
)
585 (tty
->ldisc
.write_wakeup
)(tty
);
586 wake_up_interruptible(&tty
->write_wait
);
589 static int siccuart_startup(struct SICC_info
*info
)
595 if (info
->flags
& ASYNC_INITIALIZED
) {
599 page
= get_zeroed_page(GFP_KERNEL
);
603 if (info
->port
->uart_base
== 0)
604 info
->port
->uart_base
= (int)ioremap(info
->port
->uart_base_phys
, PAGE_SIZE
);
605 if (info
->port
->uart_base
== 0) {
610 /* lock access to info while doing setup */
611 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
616 info
->xmit
.buf
= (unsigned char *) page
;
620 if (info
->tty
->termios
->c_cflag
& CBAUD
)
621 info
->mctrl
= TIOCM_RTS
| TIOCM_DTR
;
622 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
625 * initialise the old status of the modem signals
627 info
->old_status
= 0; // UART_GET_FR(info->port) & AMBA_UARTFR_MODEM_ANY;
631 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
632 info
->xmit
.head
= info
->xmit
.tail
= 0;
635 * Set up the tty->alt_speed kludge
638 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_HI
)
639 info
->tty
->alt_speed
= 57600;
640 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_VHI
)
641 info
->tty
->alt_speed
= 115200;
642 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_SHI
)
643 info
->tty
->alt_speed
= 230400;
644 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_WARP
)
645 info
->tty
->alt_speed
= 460800;
649 writeb( 0x00, info
->port
->uart_base
+ BL_SICC_IrCR
); // disable IrDA
653 * and set the speed of the serial port
655 siccuart_change_speed(info
, 0);
657 // enable rx/tx ports
658 writeb(_RCR_ER_ENABLE
/*| _RCR_PME_HARD*/, info
->port
->uart_base
+ BL_SICC_RCR
);
659 writeb(_TxCR_ET_ENABLE
, info
->port
->uart_base
+ BL_SICC_TxCR
);
661 readb(info
->port
->uart_base
+ BL_SICC_RBR
); // clear rx port
663 writeb(0xf8, info
->port
->uart_base
+ BL_SICC_LSR
); /* reset bits 0-4 of LSR */
666 * Finally, enable interrupts
672 retval
= request_irq(info
->port
->irqrx
, siccuart_int_rx
, 0, "SICC rx", info
);
674 if (capable(CAP_SYS_ADMIN
)) {
676 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
681 retval
= request_irq(info
->port
->irqtx
, siccuart_int_tx
, 0, "SICC tx", info
);
683 if (capable(CAP_SYS_ADMIN
)) {
685 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
688 free_irq(info
->port
->irqrx
, info
);
692 siccuart_enable_rx_interrupt(info
);
694 info
->flags
|= ASYNC_INITIALIZED
;
695 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
700 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
705 * This routine will shutdown a serial port; interrupts are disabled, and
706 * DTR is dropped if the hangup on close termio flag is on.
708 static void siccuart_shutdown(struct SICC_info
*info
)
712 if (!(info
->flags
& ASYNC_INITIALIZED
))
715 /* lock while shutting down port */
716 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
); /* Disable interrupts */
719 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
720 * here so the queue might never be woken up
722 wake_up_interruptible(&info
->delta_msr_wait
);
725 * disable all interrupts, disable the port
727 siccuart_disable_rx_interrupt(info
);
728 siccuart_disable_tx_interrupt(info
);
733 free_irq(info
->port
->irqtx
, info
);
734 free_irq(info
->port
->irqrx
, info
);
736 if (info
->xmit
.buf
) {
737 unsigned long pg
= (unsigned long) info
->xmit
.buf
;
738 info
->xmit
.buf
= NULL
;
743 if (!info
->tty
|| (info
->tty
->termios
->c_cflag
& HUPCL
))
744 info
->mctrl
&= ~(TIOCM_DTR
|TIOCM_RTS
);
745 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
747 /* kill off our tasklet */
748 tasklet_kill(&info
->tlet
);
750 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
752 info
->flags
&= ~ASYNC_INITIALIZED
;
754 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
758 static void siccuart_change_speed(struct SICC_info
*info
, struct termios
*old_termios
)
760 unsigned int lcr_h
, baud
, quot
, cflag
, old_rcr
, old_tcr
, bits
;
763 if (!info
->tty
|| !info
->tty
->termios
)
766 cflag
= info
->tty
->termios
->c_cflag
;
768 pr_debug("siccuart_set_cflag(0x%x) called\n", cflag
);
769 /* byte size and parity */
770 switch (cflag
& CSIZE
) {
771 case CS7
: lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_7_BITS
| _LCR_SB_1_BIT
; bits
= 9; break;
772 default: lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_8_BITS
| _LCR_SB_1_BIT
; bits
= 10; break; // CS8
774 if (cflag
& CSTOPB
) {
775 lcr_h
|= _LCR_SB_2_BIT
;
778 if (cflag
& PARENB
) {
779 lcr_h
|= _LCR_PE_ENABLE
;
781 if (!(cflag
& PARODD
))
782 lcr_h
|= _LCR_PTY_ODD
;
784 lcr_h
|= _LCR_PTY_EVEN
;
788 /* Determine divisor based on baud rate */
789 baud
= tty_get_baud_rate(info
->tty
);
795 // here is ppc403SetBaud(com_port, baud);
796 unsigned long divisor
, clockSource
, temp
;
798 /* Ensure CICCR[7] is 0 to select Internal Baud Clock */
799 powerpcMtcic_cr((unsigned long)(powerpcMfcic_cr() & 0xFEFFFFFF));
801 /* Determine Internal Baud Clock Frequency */
802 /* powerpcMfclkgpcr() reads DCR 0x120 - the*/
803 /* SCCR (Serial Clock Control Register) on Vesta */
804 temp
= powerpcMfclkgpcr();
806 if(temp
& 0x00000080) {
807 clockSource
= 324000000;
810 clockSource
= 216000000;
812 clockSource
= clockSource
/(unsigned long)((temp
&0x00FC0000)>>18);
813 divisor
= clockSource
/(16*baud
) - 1;
814 /* divisor has only 12 bits of resolution */
815 if(divisor
>0x00000FFF){
823 ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_CUST
))
824 quot
= info
->state
->custom_divisor
;
826 if (!quot
&& old_termios
) {
827 info
->tty
->termios
->c_cflag
&= ~CBAUD
;
828 info
->tty
->termios
->c_cflag
|= (old_termios
->c_cflag
& CBAUD
);
831 } while (quot
== 0 && old_termios
);
833 /* As a last resort, if the quotient is zero, default to 9600 bps */
835 quot
= (info
->port
->uartclk
/ (16 * 9600)) - 1;
837 info
->timeout
= info
->port
->fifosize
* HZ
* bits
/ baud
;
838 info
->timeout
+= HZ
/50; /* Add .02 seconds of slop */
841 info
->flags
|= ASYNC_CTS_FLOW
;
843 info
->flags
&= ~ASYNC_CTS_FLOW
;
845 info
->flags
&= ~ASYNC_CHECK_CD
;
847 info
->flags
|= ASYNC_CHECK_CD
;
850 * Set up parity check flag
852 #define RELEVENT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
854 info
->read_status_mask
= _LSR_OE_MASK
;
855 if (I_INPCK(info
->tty
))
856 info
->read_status_mask
|= _LSR_FE_MASK
| _LSR_PE_MASK
;
857 if (I_BRKINT(info
->tty
) || I_PARMRK(info
->tty
))
858 info
->read_status_mask
|= _LSR_LB_MASK
;
861 * Characters to ignore
863 info
->ignore_status_mask
= 0;
864 if (I_IGNPAR(info
->tty
))
865 info
->ignore_status_mask
|= _LSR_FE_MASK
| _LSR_PE_MASK
;
866 if (I_IGNBRK(info
->tty
)) {
867 info
->ignore_status_mask
|= _LSR_LB_MASK
;
869 * If we're ignoring parity and break indicators,
870 * ignore overruns to (for real raw support).
872 if (I_IGNPAR(info
->tty
))
873 info
->ignore_status_mask
|= _LSR_OE_MASK
;
876 /* disable interrupts while reading and clearing registers */
877 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
879 old_rcr
= readb(info
->port
->uart_base
+ BL_SICC_RCR
);
880 old_tcr
= readb(info
->port
->uart_base
+ BL_SICC_TxCR
);
883 writeb(0, info
->port
->uart_base
+ BL_SICC_RCR
);
884 writeb(0, info
->port
->uart_base
+ BL_SICC_TxCR
);
886 /*RLBtrace (&ppc403Chan0, 0x2000000c, 0, 0);*/
889 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
893 writeb((quot
& 0x00000F00)>>8, info
->port
->uart_base
+ BL_SICC_BRDH
);
894 writeb( quot
& 0x00000FF, info
->port
->uart_base
+ BL_SICC_BRDL
);
896 /* Set CTL2 reg to use external clock (ExtClk) and enable FIFOs. */
897 /* For now, do NOT use FIFOs since 403 UART did not have this */
898 /* capability and this driver was inherited from 403UART. */
899 writeb(_CTL2_EXTERN
, info
->port
->uart_base
+ BL_SICC_CTL2
);
901 writeb(lcr_h
, info
->port
->uart_base
+ BL_SICC_LCR
);
903 writeb(old_rcr
, info
->port
->uart_base
+ BL_SICC_RCR
); // restore rcr
904 writeb(old_tcr
, info
->port
->uart_base
+ BL_SICC_TxCR
); // restore txcr
909 static void siccuart_put_char(struct tty_struct
*tty
, u_char ch
)
911 struct SICC_info
*info
= tty
->driver_data
;
914 if (!tty
|| !info
->xmit
.buf
)
917 /* lock info->xmit while adding character to tx buffer */
918 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
919 if (CIRC_SPACE(info
->xmit
.head
, info
->xmit
.tail
, SICC_XMIT_SIZE
) != 0) {
920 info
->xmit
.buf
[info
->xmit
.head
] = ch
;
921 info
->xmit
.head
= (info
->xmit
.head
+ 1) & (SICC_XMIT_SIZE
- 1);
923 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
926 static void siccuart_flush_chars(struct tty_struct
*tty
)
928 struct SICC_info
*info
= tty
->driver_data
;
931 if (info
->xmit
.head
== info
->xmit
.tail
937 /* disable interrupts while transmitting characters */
938 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
939 siccuart_enable_tx_interrupt(info
);
940 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
943 static int siccuart_write(struct tty_struct
*tty
,
944 const u_char
* buf
, int count
)
946 struct SICC_info
*info
= tty
->driver_data
;
950 if (!tty
|| !info
->xmit
.buf
|| !tmp_buf
)
953 /* lock info->xmit while removing characters from buffer */
954 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
956 c
= CIRC_SPACE_TO_END(info
->xmit
.head
,
963 memcpy(info
->xmit
.buf
+ info
->xmit
.head
, buf
, c
);
964 info
->xmit
.head
= (info
->xmit
.head
+ c
) &
965 (SICC_XMIT_SIZE
- 1);
970 if (info
->xmit
.head
!= info
->xmit
.tail
973 siccuart_enable_tx_interrupt(info
);
974 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
978 static int siccuart_write_room(struct tty_struct
*tty
)
980 struct SICC_info
*info
= tty
->driver_data
;
982 return CIRC_SPACE(info
->xmit
.head
, info
->xmit
.tail
, SICC_XMIT_SIZE
);
985 static int siccuart_chars_in_buffer(struct tty_struct
*tty
)
987 struct SICC_info
*info
= tty
->driver_data
;
989 return CIRC_CNT(info
->xmit
.head
, info
->xmit
.tail
, SICC_XMIT_SIZE
);
992 static void siccuart_flush_buffer(struct tty_struct
*tty
)
994 struct SICC_info
*info
= tty
->driver_data
;
997 pr_debug("siccuart_flush_buffer(%d) called\n", tty
->index
);
998 /* lock info->xmit while zeroing buffer counts */
999 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1000 info
->xmit
.head
= info
->xmit
.tail
= 0;
1001 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1002 wake_up_interruptible(&tty
->write_wait
);
1003 if ((tty
->flags
& (1 << TTY_DO_WRITE_WAKEUP
)) &&
1004 tty
->ldisc
.write_wakeup
)
1005 (tty
->ldisc
.write_wakeup
)(tty
);
1009 * This function is used to send a high-priority XON/XOFF character to
1012 static void siccuart_send_xchar(struct tty_struct
*tty
, char ch
)
1014 struct SICC_info
*info
= tty
->driver_data
;
1018 siccuart_enable_tx_interrupt(info
);
1021 static void siccuart_throttle(struct tty_struct
*tty
)
1023 struct SICC_info
*info
= tty
->driver_data
;
1024 unsigned long flags
;
1027 siccuart_send_xchar(tty
, STOP_CHAR(tty
));
1029 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1030 /* disable interrupts while setting modem control lines */
1031 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1032 info
->mctrl
&= ~TIOCM_RTS
;
1033 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1034 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1038 static void siccuart_unthrottle(struct tty_struct
*tty
)
1040 struct SICC_info
*info
= (struct SICC_info
*) tty
->driver_data
;
1041 unsigned long flags
;
1047 siccuart_send_xchar(tty
, START_CHAR(tty
));
1050 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1051 /* disable interrupts while setting modem control lines */
1052 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1053 info
->mctrl
|= TIOCM_RTS
;
1054 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1055 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1059 static int get_serial_info(struct SICC_info
*info
, struct serial_struct
*retinfo
)
1061 struct SICC_state
*state
= info
->state
;
1062 struct SICC_port
*port
= info
->port
;
1063 struct serial_struct tmp
;
1065 memset(&tmp
, 0, sizeof(tmp
));
1067 tmp
.line
= state
->line
;
1068 tmp
.port
= port
->uart_base
;
1069 if (HIGH_BITS_OFFSET
)
1070 tmp
.port_high
= port
->uart_base
>> HIGH_BITS_OFFSET
;
1071 tmp
.irq
= port
->irqrx
;
1073 tmp
.xmit_fifo_size
= port
->fifosize
;
1074 tmp
.baud_base
= port
->uartclk
/ 16;
1075 tmp
.close_delay
= state
->close_delay
;
1076 tmp
.closing_wait
= state
->closing_wait
;
1077 tmp
.custom_divisor
= state
->custom_divisor
;
1079 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
1084 static int set_serial_info(struct SICC_info
*info
,
1085 struct serial_struct
*newinfo
)
1087 struct serial_struct new_serial
;
1088 struct SICC_state
*state
, old_state
;
1089 struct SICC_port
*port
;
1090 unsigned long new_port
;
1091 unsigned int i
, change_irq
, change_port
;
1094 if (copy_from_user(&new_serial
, newinfo
, sizeof(new_serial
)))
1097 state
= info
->state
;
1101 new_port
= new_serial
.port
;
1102 if (HIGH_BITS_OFFSET
)
1103 new_port
+= (unsigned long) new_serial
.port_high
<< HIGH_BITS_OFFSET
;
1105 change_irq
= new_serial
.irq
!= port
->irqrx
;
1106 change_port
= new_port
!= port
->uart_base
;
1108 if (!capable(CAP_SYS_ADMIN
)) {
1109 if (change_irq
|| change_port
||
1110 (new_serial
.baud_base
!= port
->uartclk
/ 16) ||
1111 (new_serial
.close_delay
!= state
->close_delay
) ||
1112 (new_serial
.xmit_fifo_size
!= port
->fifosize
) ||
1113 ((new_serial
.flags
& ~ASYNC_USR_MASK
) !=
1114 (state
->flags
& ~ASYNC_USR_MASK
)))
1116 state
->flags
= ((state
->flags
& ~ASYNC_USR_MASK
) |
1117 (new_serial
.flags
& ASYNC_USR_MASK
));
1118 info
->flags
= ((info
->flags
& ~ASYNC_USR_MASK
) |
1119 (new_serial
.flags
& ASYNC_USR_MASK
));
1120 state
->custom_divisor
= new_serial
.custom_divisor
;
1121 goto check_and_exit
;
1124 if ((new_serial
.irq
>= NR_IRQS
) || (new_serial
.irq
< 0) ||
1125 (new_serial
.baud_base
< 9600))
1128 if (new_serial
.type
&& change_port
) {
1129 for (i
= 0; i
< SERIAL_SICC_NR
; i
++)
1130 if ((port
!= sicc_ports
+ i
) &&
1131 sicc_ports
[i
].uart_base
!= new_port
)
1135 if ((change_port
|| change_irq
) && (state
->count
> 1))
1139 * OK, past this point, all the error checking has been done.
1140 * At this point, we start making changes.....
1142 port
->uartclk
= new_serial
.baud_base
* 16;
1143 state
->flags
= ((state
->flags
& ~ASYNC_FLAGS
) |
1144 (new_serial
.flags
& ASYNC_FLAGS
));
1145 info
->flags
= ((state
->flags
& ~ASYNC_INTERNAL_FLAGS
) |
1146 (info
->flags
& ASYNC_INTERNAL_FLAGS
));
1147 state
->custom_divisor
= new_serial
.custom_divisor
;
1148 state
->close_delay
= new_serial
.close_delay
* HZ
/ 100;
1149 state
->closing_wait
= new_serial
.closing_wait
* HZ
/ 100;
1150 info
->tty
->low_latency
= (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
1151 port
->fifosize
= new_serial
.xmit_fifo_size
;
1153 if (change_port
|| change_irq
) {
1155 * We need to shutdown the serial port at the old
1156 * port/irq combination.
1158 siccuart_shutdown(info
);
1159 port
->irqrx
= new_serial
.irq
;
1160 port
->uart_base
= new_port
;
1164 if (!port
->uart_base
)
1166 if (info
->flags
& ASYNC_INITIALIZED
) {
1167 if ((old_state
.flags
& ASYNC_SPD_MASK
) !=
1168 (state
->flags
& ASYNC_SPD_MASK
) ||
1169 (old_state
.custom_divisor
!= state
->custom_divisor
)) {
1170 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_HI
)
1171 info
->tty
->alt_speed
= 57600;
1172 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_VHI
)
1173 info
->tty
->alt_speed
= 115200;
1174 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_SHI
)
1175 info
->tty
->alt_speed
= 230400;
1176 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_WARP
)
1177 info
->tty
->alt_speed
= 460800;
1178 siccuart_change_speed(info
, NULL
);
1181 retval
= siccuart_startup(info
);
1187 * get_lsr_info - get line status register info
1189 static int get_lsr_info(struct SICC_info
*info
, unsigned int *value
)
1191 unsigned int result
, status
;
1192 unsigned long flags
;
1194 /* disable interrupts while reading status from port */
1195 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1196 status
= readb(info
->port
->uart_base
+ BL_SICC_LSR
);
1197 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1198 result
= status
& _LSR_TSR_EMPTY
? TIOCSER_TEMT
: 0;
1201 * If we're about to load something into the transmit
1202 * register, we'll pretend the transmitter isn't empty to
1203 * avoid a race condition (depending on when the transmit
1204 * interrupt happens).
1207 ((CIRC_CNT(info
->xmit
.head
, info
->xmit
.tail
,
1208 SICC_XMIT_SIZE
) > 0) &&
1209 !info
->tty
->stopped
&& !info
->tty
->hw_stopped
))
1210 result
&= TIOCSER_TEMT
;
1212 return put_user(result
, value
);
1215 static int get_modem_info(struct SICC_info
*info
, unsigned int *value
)
1217 unsigned int result
= info
->mctrl
;
1219 return put_user(result
, value
);
1222 static int set_modem_info(struct SICC_info
*info
, unsigned int cmd
,
1223 unsigned int *value
)
1225 unsigned int arg
, old
;
1226 unsigned long flags
;
1228 if (get_user(arg
, value
))
1238 info
->mctrl
&= ~arg
;
1248 /* disable interrupts while setting modem control lines */
1249 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1250 if (old
!= info
->mctrl
)
1251 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1252 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1256 static void siccuart_break_ctl(struct tty_struct
*tty
, int break_state
)
1258 struct SICC_info
*info
= tty
->driver_data
;
1259 unsigned long flags
;
1263 /* disable interrupts while setting break state */
1264 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1265 lcr_h
= readb(info
->port
+ BL_SICC_LSR
);
1266 if (break_state
== -1)
1267 lcr_h
|= _LSR_LB_MASK
;
1269 lcr_h
&= ~_LSR_LB_MASK
;
1270 writeb(lcr_h
, info
->port
+ BL_SICC_LSRS
);
1271 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1274 static int siccuart_ioctl(struct tty_struct
*tty
, struct file
*file
,
1275 unsigned int cmd
, unsigned long arg
)
1277 struct SICC_info
*info
= tty
->driver_data
;
1278 struct SICC_icount cnow
;
1279 struct serial_icounter_struct icount
;
1280 unsigned long flags
;
1282 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1283 (cmd
!= TIOCSERCONFIG
) && (cmd
!= TIOCSERGSTRUCT
) &&
1284 (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
1285 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1291 return get_modem_info(info
, (unsigned int *)arg
);
1295 return set_modem_info(info
, cmd
, (unsigned int *)arg
);
1297 return get_serial_info(info
,
1298 (struct serial_struct
*)arg
);
1300 return set_serial_info(info
,
1301 (struct serial_struct
*)arg
);
1302 case TIOCSERGETLSR
: /* Get line status register */
1303 return get_lsr_info(info
, (unsigned int *)arg
);
1305 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1306 * - mask passed in arg for lines of interest
1307 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1308 * Caller should use TIOCGICOUNT to see which one it was
1313 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1314 * Return: write counters to the user passed counter struct
1315 * NB: both 1->0 and 0->1 transitions are counted except for
1316 * RI where only 0->1 is counted.
1319 /* disable interrupts while getting interrupt count */
1320 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1321 cnow
= info
->state
->icount
;
1322 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1323 icount
.cts
= cnow
.cts
;
1324 icount
.dsr
= cnow
.dsr
;
1325 icount
.rng
= cnow
.rng
;
1326 icount
.dcd
= cnow
.dcd
;
1327 icount
.rx
= cnow
.rx
;
1328 icount
.tx
= cnow
.tx
;
1329 icount
.frame
= cnow
.frame
;
1330 icount
.overrun
= cnow
.overrun
;
1331 icount
.parity
= cnow
.parity
;
1332 icount
.brk
= cnow
.brk
;
1333 icount
.buf_overrun
= cnow
.buf_overrun
;
1335 return copy_to_user((void *)arg
, &icount
, sizeof(icount
))
1339 return -ENOIOCTLCMD
;
1344 static void siccuart_set_termios(struct tty_struct
*tty
, struct termios
*old_termios
)
1346 struct SICC_info
*info
= tty
->driver_data
;
1347 unsigned long flags
;
1348 unsigned int cflag
= tty
->termios
->c_cflag
;
1350 if ((cflag
^ old_termios
->c_cflag
) == 0 &&
1351 RELEVENT_IFLAG(tty
->termios
->c_iflag
^ old_termios
->c_iflag
) == 0)
1354 siccuart_change_speed(info
, old_termios
);
1356 /* Handle transition to B0 status */
1357 if ((old_termios
->c_cflag
& CBAUD
) &&
1359 /* disable interrupts while setting break state */
1360 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1361 info
->mctrl
&= ~(TIOCM_RTS
| TIOCM_DTR
);
1362 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1363 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1366 /* Handle transition away from B0 status */
1367 if (!(old_termios
->c_cflag
& CBAUD
) &&
1369 /* disable interrupts while setting break state */
1370 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1371 info
->mctrl
|= TIOCM_DTR
;
1372 if (!(cflag
& CRTSCTS
) ||
1373 !test_bit(TTY_THROTTLED
, &tty
->flags
))
1374 info
->mctrl
|= TIOCM_RTS
;
1375 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1376 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1379 /* Handle turning off CRTSCTS */
1380 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1381 !(cflag
& CRTSCTS
)) {
1382 tty
->hw_stopped
= 0;
1383 siccuart_start(tty
);
1388 * No need to wake up processes in open wait, since they
1389 * sample the CLOCAL flag once, and don't recheck it.
1390 * XXX It's not clear whether the current behavior is correct
1391 * or not. Hence, this may change.....
1393 if (!(old_termios
->c_cflag
& CLOCAL
) &&
1394 (tty
->termios
->c_cflag
& CLOCAL
))
1395 wake_up_interruptible(&info
->open_wait
);
1399 static void siccuart_close(struct tty_struct
*tty
, struct file
*filp
)
1401 struct SICC_info
*info
= tty
->driver_data
;
1402 struct SICC_state
*state
;
1403 unsigned long flags
;
1408 state
= info
->state
;
1410 //pr_debug("siccuart_close() called\n");
1412 /* lock tty->driver_data while closing port */
1413 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1415 if (tty_hung_up_p(filp
)) {
1419 if ((tty
->count
== 1) && (state
->count
!= 1)) {
1421 * Uh, oh. tty->count is 1, which means that the tty
1422 * structure will be freed. state->count should always
1423 * be one in these conditions. If it's greater than
1424 * one, we've got real problems, since it means the
1425 * serial port won't be shutdown.
1427 printk("siccuart_close: bad serial port count; tty->count is 1, state->count is %d\n", state
->count
);
1430 if (--state
->count
< 0) {
1431 printk("rs_close: bad serial port count for %s: %d\n", tty
->name
, state
->count
);
1437 info
->flags
|= ASYNC_CLOSING
;
1438 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1440 * Now we wait for the transmit buffer to clear; and we notify
1441 * the line discipline to only process XON/XOFF characters.
1444 if (info
->state
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1445 tty_wait_until_sent(tty
, info
->state
->closing_wait
);
1447 * At this point, we stop accepting input. To do this, we
1448 * disable the receive line status interrupts.
1450 if (info
->flags
& ASYNC_INITIALIZED
) {
1451 siccuart_disable_rx_interrupt(info
);
1453 * Before we drop DTR, make sure the UART transmitter
1454 * has completely drained; this is especially
1455 * important if there is a transmit FIFO!
1457 siccuart_wait_until_sent(tty
, info
->timeout
);
1459 siccuart_shutdown(info
);
1460 if (tty
->driver
->flush_buffer
)
1461 tty
->driver
->flush_buffer(tty
);
1462 if (tty
->ldisc
.flush_buffer
)
1463 tty
->ldisc
.flush_buffer(tty
);
1467 if (info
->blocked_open
) {
1468 if (info
->state
->close_delay
) {
1469 set_current_state(TASK_INTERRUPTIBLE
);
1470 schedule_timeout(info
->state
->close_delay
);
1472 wake_up_interruptible(&info
->open_wait
);
1474 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
1475 wake_up_interruptible(&info
->close_wait
);
1479 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1483 static void siccuart_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1485 struct SICC_info
*info
= (struct SICC_info
*) tty
->driver_data
;
1486 unsigned long char_time
, expire
;
1488 if (info
->port
->fifosize
== 0)
1492 * Set the check interval to be 1/5 of the estimated time to
1493 * send a single character, and make it at least 1. The check
1494 * interval should also be less than the timeout.
1496 * Note: we have to use pretty tight timings here to satisfy
1499 char_time
= (info
->timeout
- HZ
/50) / info
->port
->fifosize
;
1500 char_time
= char_time
/ 5;
1504 // Crazy!! sometimes the input arg 'timeout' can be negtive numbers :-(
1505 if (timeout
>= 0 && timeout
< char_time
)
1506 char_time
= timeout
;
1508 * If the transmitter hasn't cleared in twice the approximate
1509 * amount of time to send the entire FIFO, it probably won't
1510 * ever clear. This assumes the UART isn't doing flow
1511 * control, which is currently the case. Hence, if it ever
1512 * takes longer than info->timeout, this is probably due to a
1513 * UART bug of some kind. So, we clamp the timeout parameter at
1516 if (!timeout
|| timeout
> 2 * info
->timeout
)
1517 timeout
= 2 * info
->timeout
;
1519 expire
= jiffies
+ timeout
;
1520 pr_debug("siccuart_wait_until_sent(%d), jiff=%lu, expire=%lu char_time=%lu...\n",
1521 tty
->index
, jiffies
,
1523 while ((readb(info
->port
->uart_base
+ BL_SICC_LSR
) & _LSR_TX_ALL
) != _LSR_TX_ALL
) {
1524 set_current_state(TASK_INTERRUPTIBLE
);
1525 schedule_timeout(char_time
);
1526 if (signal_pending(current
))
1528 if (timeout
&& time_after(jiffies
, expire
))
1531 set_current_state(TASK_RUNNING
);
1534 static void siccuart_hangup(struct tty_struct
*tty
)
1536 struct SICC_info
*info
= tty
->driver_data
;
1537 struct SICC_state
*state
= info
->state
;
1539 siccuart_flush_buffer(tty
);
1540 if (info
->flags
& ASYNC_CLOSING
)
1542 siccuart_shutdown(info
);
1545 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
1547 wake_up_interruptible(&info
->open_wait
);
1550 static int block_til_ready(struct tty_struct
*tty
, struct file
*filp
,
1551 struct SICC_info
*info
)
1553 DECLARE_WAITQUEUE(wait
, current
);
1554 struct SICC_state
*state
= info
->state
;
1555 unsigned long flags
;
1556 int do_clocal
= 0, extra_count
= 0, retval
;
1559 * If the device is in the middle of being closed, then block
1560 * until it's done, and then try again.
1562 if (tty_hung_up_p(filp
) ||
1563 (info
->flags
& ASYNC_CLOSING
)) {
1564 if (info
->flags
& ASYNC_CLOSING
)
1565 interruptible_sleep_on(&info
->close_wait
);
1566 return (info
->flags
& ASYNC_HUP_NOTIFY
) ?
1567 -EAGAIN
: -ERESTARTSYS
;
1571 * If non-blocking mode is set, or the port is not enabled,
1572 * then make the check up front and then exit.
1574 if ((filp
->f_flags
& O_NONBLOCK
) ||
1575 (tty
->flags
& (1 << TTY_IO_ERROR
))) {
1576 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
1580 if (tty
->termios
->c_cflag
& CLOCAL
)
1584 * Block waiting for the carrier detect and the line to become
1585 * free (i.e., not in use by the callout). While we are in
1586 * this loop, state->count is dropped by one, so that
1587 * rs_close() knows when to free things. We restore it upon
1588 * exit, either normal or abnormal.
1591 add_wait_queue(&info
->open_wait
, &wait
);
1592 /* lock while decrementing state->count */
1593 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1594 if (!tty_hung_up_p(filp
)) {
1598 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1599 info
->blocked_open
++;
1601 /* disable interrupts while setting modem control lines */
1602 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1603 if (tty
->termios
->c_cflag
& CBAUD
) {
1604 info
->mctrl
= TIOCM_DTR
| TIOCM_RTS
;
1605 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1607 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1608 set_current_state(TASK_INTERRUPTIBLE
);
1609 if (tty_hung_up_p(filp
) ||
1610 !(info
->flags
& ASYNC_INITIALIZED
)) {
1611 if (info
->flags
& ASYNC_HUP_NOTIFY
)
1614 retval
= -ERESTARTSYS
;
1617 if (!(info
->flags
& ASYNC_CLOSING
) &&
1618 (do_clocal
/*|| (UART_GET_FR(info->port) & SICC_UARTFR_DCD)*/))
1620 if (signal_pending(current
)) {
1621 retval
= -ERESTARTSYS
;
1626 set_current_state(TASK_RUNNING
);
1627 remove_wait_queue(&info
->open_wait
, &wait
);
1630 info
->blocked_open
--;
1633 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
1637 static struct SICC_info
*siccuart_get(int line
)
1639 struct SICC_info
*info
;
1640 struct SICC_state
*state
= sicc_state
+ line
;
1645 info
= kmalloc(sizeof(struct SICC_info
), GFP_KERNEL
);
1647 memset(info
, 0, sizeof(struct SICC_info
));
1648 init_waitqueue_head(&info
->open_wait
);
1649 init_waitqueue_head(&info
->close_wait
);
1650 init_waitqueue_head(&info
->delta_msr_wait
);
1651 info
->flags
= state
->flags
;
1652 info
->state
= state
;
1653 info
->port
= sicc_ports
+ line
;
1654 tasklet_init(&info
->tlet
, siccuart_tasklet_action
,
1655 (unsigned long)info
);
1665 static int siccuart_open(struct tty_struct
*tty
, struct file
*filp
)
1667 struct SICC_info
*info
;
1668 int retval
, line
= tty
->index
;
1671 // is this a line that we've got?
1672 if (line
>= SERIAL_SICC_NR
) {
1676 info
= siccuart_get(line
);
1680 tty
->driver_data
= info
;
1682 info
->tty
->low_latency
= (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
1685 * Make sure we have the temporary buffer allocated
1688 unsigned long page
= get_zeroed_page(GFP_KERNEL
);
1694 tmp_buf
= (u_char
*)page
;
1698 * If the port is in the middle of closing, bail out now.
1700 if (tty_hung_up_p(filp
) ||
1701 (info
->flags
& ASYNC_CLOSING
)) {
1702 if (info
->flags
& ASYNC_CLOSING
)
1703 interruptible_sleep_on(&info
->close_wait
);
1708 * Start up the serial port
1710 retval
= siccuart_startup(info
);
1715 retval
= block_til_ready(tty
, filp
, info
);
1720 #ifdef CONFIG_SERIAL_SICC_CONSOLE
1721 if (siccuart_cons
.cflag
&& siccuart_cons
.index
== line
) {
1722 tty
->termios
->c_cflag
= siccuart_cons
.cflag
;
1723 siccuart_cons
.cflag
= 0;
1724 siccuart_change_speed(info
, NULL
);
1730 static struct tty_operations sicc_ops
= {
1731 .open
= siccuart_open
,
1732 .close
= siccuart_close
,
1733 .write
= siccuart_write
,
1734 .put_char
= siccuart_put_char
,
1735 .flush_chars
= siccuart_flush_chars
,
1736 .write_room
= siccuart_write_room
,
1737 .chars_in_buffer
= siccuart_chars_in_buffer
,
1738 .flush_buffer
= siccuart_flush_buffer
,
1739 .ioctl
= siccuart_ioctl
,
1740 .throttle
= siccuart_throttle
,
1741 .unthrottle
= siccuart_unthrottle
,
1742 .send_xchar
= siccuart_send_xchar
,
1743 .set_termios
= siccuart_set_termios
,
1744 .stop
= siccuart_stop
,
1745 .start
= siccuart_start
,
1746 .hangup
= siccuart_hangup
,
1747 .break_ctl
= siccuart_break_ctl
,
1748 .wait_until_sent
= siccuart_wait_until_sent
,
1751 int __init
siccuart_init(void)
1754 siccnormal_driver
= alloc_tty_driver(SERIAL_SICC_NR
);
1755 if (!siccnormal_driver
)
1757 printk("IBM Vesta SICC serial port driver V 0.1 by Yudong Yang and Yi Ge / IBM CRL .\n");
1758 siccnormal_driver
->driver_name
= "serial_sicc";
1759 siccnormal_driver
->owner
= THIS_MODULE
;
1760 siccnormal_driver
->name
= SERIAL_SICC_NAME
;
1761 siccnormal_driver
->major
= SERIAL_SICC_MAJOR
;
1762 siccnormal_driver
->minor_start
= SERIAL_SICC_MINOR
;
1763 siccnormal_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1764 siccnormal_driver
->subtype
= SERIAL_TYPE_NORMAL
;
1765 siccnormal_driver
->init_termios
= tty_std_termios
;
1766 siccnormal_driver
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1767 siccnormal_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_NO_DEVFS
;
1768 tty_set_operations(siccnormal_driver
, &sicc_ops
);
1770 if (tty_register_driver(siccnormal_driver
))
1771 panic("Couldn't register SICC serial driver\n");
1773 for (i
= 0; i
< SERIAL_SICC_NR
; i
++) {
1774 struct SICC_state
*state
= sicc_state
+ i
;
1776 state
->close_delay
= 5 * HZ
/ 10;
1777 state
->closing_wait
= 30 * HZ
;
1778 spin_lock_init(&state
->sicc_lock
);
1785 __initcall(siccuart_init
);
1787 #ifdef CONFIG_SERIAL_SICC_CONSOLE
1788 /************** console driver *****************/
1791 * This code is currently never used; console->read is never called.
1792 * Therefore, although we have an implementation, we don't use it.
1793 * FIXME: the "const char *s" should be fixed to "char *s" some day.
1794 * (when the definition in include/linux/console.h is also fixed)
1796 #ifdef used_and_not_const_char_pointer
1797 static int siccuart_console_read(struct console
*co
, const char *s
, u_int count
)
1799 struct SICC_port
*port
= &sicc_ports
[co
->index
];
1800 unsigned int status
;
1804 pr_debug("siccuart_console_read() called\n");
1809 if(readb(port
->uart_base
+ BL_SICC_LSR
) & _LSR_RBR_FULL
) {
1810 *w
++ = readb(port
->uart_base
+ BL_SICC_RBR
);
1813 // nothing more to get, return
1823 * Print a string to the serial port trying not to disturb
1824 * any possible real use of the port...
1826 * The console_lock must be held when we get here.
1828 static void siccuart_console_write(struct console
*co
, const char *s
, u_int count
)
1830 struct SICC_port
*port
= &sicc_ports
[co
->index
];
1831 unsigned int old_cr
;
1835 * First save the CR then disable the interrupts
1837 old_cr
= readb(port
->uart_base
+ BL_SICC_TxCR
);
1838 writeb(old_cr
& ~_TxCR_DME_MASK
, port
->uart_base
+ BL_SICC_TxCR
);
1841 * Now, do each character
1843 for (i
= 0; i
< count
; i
++) {
1844 while ((readb(port
->uart_base
+ BL_SICC_LSR
)&_LSR_TX_ALL
) != _LSR_TX_ALL
);
1845 writeb(s
[i
], port
->uart_base
+ BL_SICC_TBR
);
1847 while ((readb(port
->uart_base
+ BL_SICC_LSR
)&_LSR_TX_ALL
) != _LSR_TX_ALL
);
1848 writeb('\r', port
->uart_base
+ BL_SICC_TBR
);
1853 * Finally, wait for transmitter to become empty
1854 * and restore the TCR
1856 while ((readb(port
->uart_base
+ BL_SICC_LSR
)&_LSR_TX_ALL
) != _LSR_TX_ALL
);
1857 writeb(old_cr
, port
->uart_base
+ BL_SICC_TxCR
);
1861 * Receive character from the serial port
1863 static int siccuart_console_wait_key(struct console
*co
)
1865 struct SICC_port
*port
= &sicc_ports
[co
->index
];
1868 while(!(readb(port
->uart_base
+ BL_SICC_LSR
) & _LSR_RBR_FULL
));
1869 c
= readb(port
->uart_base
+ BL_SICC_RBR
);
1873 static struct tty_driver
*siccuart_console_device(struct console
*c
, int *index
)
1876 return siccnormal_driver
;
1879 static int __init
siccuart_console_setup(struct console
*co
, char *options
)
1881 struct SICC_port
*port
;
1885 u_int cflag
= CREAD
| HUPCL
| CLOCAL
;
1889 if (co
->index
>= SERIAL_SICC_NR
)
1892 port
= &sicc_ports
[co
->index
];
1894 if (port
->uart_base
== 0)
1895 port
->uart_base
= (int)ioremap(port
->uart_base_phys
, PAGE_SIZE
);
1899 baud
= simple_strtoul(s
, NULL
, 10);
1900 while (*s
>= '0' && *s
<= '9')
1902 if (*s
) parity
= *s
++;
1903 if (*s
) bits
= *s
- '0';
1907 * Now construct a cflag setting.
1910 case 1200: cflag
|= B1200
; break;
1911 case 2400: cflag
|= B2400
; break;
1912 case 4800: cflag
|= B4800
; break;
1913 default: cflag
|= B9600
; baud
= 9600; break;
1914 case 19200: cflag
|= B19200
; break;
1915 case 38400: cflag
|= B38400
; break;
1916 case 57600: cflag
|= B57600
; break;
1917 case 115200: cflag
|= B115200
; break;
1920 case 7: cflag
|= CS7
; lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_7_BITS
| _LCR_SB_1_BIT
; break;
1921 default: cflag
|= CS8
; lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_8_BITS
| _LCR_SB_1_BIT
; break;
1925 case 'O': cflag
|= PARODD
; lcr_h
|= _LCR_PTY_ODD
; break;
1927 case 'E': cflag
|= PARENB
; lcr_h
|= _LCR_PE_ENABLE
| _LCR_PTY_ODD
; break;
1934 // a copy of is inserted here ppc403SetBaud(com_port, (int)9600);
1935 unsigned long divisor
, clockSource
, temp
;
1936 unsigned int rate
= baud
;
1938 /* Ensure CICCR[7] is 0 to select Internal Baud Clock */
1939 powerpcMtcic_cr((unsigned long)(powerpcMfcic_cr() & 0xFEFFFFFF));
1941 /* Determine Internal Baud Clock Frequency */
1942 /* powerpcMfclkgpcr() reads DCR 0x120 - the*/
1943 /* SCCR (Serial Clock Control Register) on Vesta */
1944 temp
= powerpcMfclkgpcr();
1946 if(temp
& 0x00000080) {
1947 clockSource
= 324000000;
1950 clockSource
= 216000000;
1952 clockSource
= clockSource
/(unsigned long)((temp
&0x00FC0000)>>18);
1953 divisor
= clockSource
/(16*rate
) - 1;
1954 /* divisor has only 12 bits of resolution */
1955 if(divisor
>0x00000FFF){
1962 writeb((quot
& 0x00000F00)>>8, port
->uart_base
+ BL_SICC_BRDH
);
1963 writeb( quot
& 0x00000FF, port
->uart_base
+ BL_SICC_BRDL
);
1965 /* Set CTL2 reg to use external clock (ExtClk) and enable FIFOs. */
1966 /* For now, do NOT use FIFOs since 403 UART did not have this */
1967 /* capability and this driver was inherited from 403UART. */
1968 writeb(_CTL2_EXTERN
, port
->uart_base
+ BL_SICC_CTL2
);
1970 writeb(lcr_h
, port
->uart_base
+ BL_SICC_LCR
);
1971 writeb(_RCR_ER_ENABLE
| _RCR_PME_HARD
, port
->uart_base
+ BL_SICC_RCR
);
1972 writeb( _TxCR_ET_ENABLE
, port
->uart_base
+ BL_SICC_TxCR
);
1974 // writeb(, info->port->uart_base + BL_SICC_RCR );
1976 * Transmitter Command Register: Transmitter enabled & DMA + TBR interrupt
1977 * + Transmitter Empty interrupt + Transmitter error interrupt disabled &
1978 * Stop mode when CTS active enabled & Transmit Break + Pattern Generation
1982 writeb( 0x00, port
->uart_base
+ BL_SICC_IrCR
); // disable IrDA
1984 readb(port
->uart_base
+ BL_SICC_RBR
);
1986 writeb(0xf8, port
->uart_base
+ BL_SICC_LSR
); /* reset bits 0-4 of LSR */
1988 /* we will enable the port as we need it */
1993 static struct console siccuart_cons
=
1995 .name
= SERIAL_SICC_NAME
,
1996 .write
= siccuart_console_write
,
1997 #ifdef used_and_not_const_char_pointer
1998 .read
= siccuart_console_read
,
2000 .device
= siccuart_console_device
,
2001 .wait_key
= siccuart_console_wait_key
,
2002 .setup
= siccuart_console_setup
,
2003 .flags
= CON_PRINTBUFFER
,
2007 void __init
sicc_console_init(void)
2009 register_console(&siccuart_cons
);
2012 #endif /* CONFIG_SERIAL_SICC_CONSOLE */