2 * Driver for IBM STB3xxx SICC serial port
4 * Based on drivers/char/serial_amba.c, by ARM Ltd.
6 * Copyright 2001 IBM Crop.
7 * Author: IBM China Research Lab
8 * Yudong Yang <yangyud@cn.ibm.com>
9 * Yi Ge <geyi@cn.ibm.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 * This is a driver for SICC serial port on IBM Redwood 4 evaluation board.
27 * The driver support both as a console device and normal serial device and
28 * is compatible with normal ttyS* devices.
31 #include <linux/config.h>
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/errno.h>
35 #include <linux/signal.h>
36 #include <linux/sched.h>
37 #include <linux/interrupt.h>
38 #include <linux/tty.h>
39 #include <linux/tty_flip.h>
40 #include <linux/major.h>
41 #include <linux/string.h>
42 #include <linux/fcntl.h>
43 #include <linux/ptrace.h>
44 #include <linux/ioport.h>
46 #include <linux/slab.h>
47 #include <linux/init.h>
48 #include <linux/capability.h>
49 #include <linux/circ_buf.h>
50 #include <linux/serial.h>
51 #include <linux/console.h>
52 #include <linux/sysrq.h>
53 #include <linux/bitops.h>
55 #include <asm/system.h>
58 #include <asm/uaccess.h>
59 #include <asm/serial.h>
62 #include <linux/serialP.h>
65 /* -----------------------------------------------------------------------------
66 * From STB03xxx SICC UART Specification
67 * -----------------------------------------------------------------------------
68 * UART Register Offsets.
71 #define BL_SICC_LSR 0x0000000 /* line status register read/clear */
72 #define BL_SICC_LSRS 0x0000001 /* set line status register read/set */
73 #define BL_SICC_HSR 0x0000002 /* handshake status register r/clear */
74 #define BL_SICC_HSRS 0x0000003 /* set handshake status register r/set */
75 #define BL_SICC_BRDH 0x0000004 /* baudrate divisor high reg r/w */
76 #define BL_SICC_BRDL 0x0000005 /* baudrate divisor low reg r/w */
77 #define BL_SICC_LCR 0x0000006 /* control register r/w */
78 #define BL_SICC_RCR 0x0000007 /* receiver command register r/w */
79 #define BL_SICC_TxCR 0x0000008 /* transmitter command register r/w */
80 #define BL_SICC_RBR 0x0000009 /* receive buffer r */
81 #define BL_SICC_TBR 0x0000009 /* transmit buffer w */
82 #define BL_SICC_CTL2 0x000000A /* added for Vesta */
83 #define BL_SICC_IrCR 0x000000B /* added for Vesta IR */
85 /* masks and definitions for serial port control register */
87 #define _LCR_LM_MASK 0xc0 /* loop back modes */
88 #define _LCR_DTR_MASK 0x20 /* data terminal ready 0-inactive */
89 #define _LCR_RTS_MASK 0x10 /* request to send 0-inactive */
90 #define _LCR_DB_MASK 0x08 /* data bits mask */
91 #define _LCR_PE_MASK 0x04 /* parity enable */
92 #define _LCR_PTY_MASK 0x02 /* parity */
93 #define _LCR_SB_MASK 0x01 /* stop bit mask */
95 #define _LCR_LM_NORM 0x00 /* normal operation */
96 #define _LCR_LM_LOOP 0x40 /* internal loopback mode */
97 #define _LCR_LM_ECHO 0x80 /* automatic echo mode */
98 #define _LCR_LM_RES 0xc0 /* reserved */
100 #define _LCR_DTR_ACTIVE _LCR_DTR_MASK /* DTR is active */
101 #define _LCR_RTS_ACTIVE _LCR_RTS_MASK /* RTS is active */
102 #define _LCR_DB_8_BITS _LCR_DB_MASK /* 8 data bits */
103 #define _LCR_DB_7_BITS 0x00 /* 7 data bits */
104 #define _LCR_PE_ENABLE _LCR_PE_MASK /* parity enabled */
105 #define _LCR_PE_DISABLE 0x00 /* parity disabled */
106 #define _LCR_PTY_EVEN 0x00 /* even parity */
107 #define _LCR_PTY_ODD _LCR_PTY_MASK /* odd parity */
108 #define _LCR_SB_1_BIT 0x00 /* one stop bit */
109 #define _LCR_SB_2_BIT _LCR_SB_MASK /* two stop bit */
111 /* serial port handshake register */
113 #define _HSR_DIS_MASK 0x80 /* DSR input inactive error mask */
114 #define _HSR_CS_MASK 0x40 /* CTS input inactive error mask */
115 #define _HSR_DIS_ACT 0x00 /* dsr input is active */
116 #define _HSR_DIS_INACT _HSR_DIS_MASK /* dsr input is inactive */
117 #define _HSR_CS_ACT 0x00 /* cts input is active */
118 #define _HSR_CS_INACT _HSR_CS_MASK /* cts input is active */
120 /* serial port line status register */
122 #define _LSR_RBR_MASK 0x80 /* receive buffer ready mask */
123 #define _LSR_FE_MASK 0x40 /* framing error */
124 #define _LSR_OE_MASK 0x20 /* overrun error */
125 #define _LSR_PE_MASK 0x10 /* parity error */
126 #define _LSR_LB_MASK 0x08 /* line break */
127 #define _LSR_TBR_MASK 0x04 /* transmit buffer ready */
128 #define _LSR_TSR_MASK 0x02 /* transmit shift register ready */
130 #define _LSR_RBR_FULL _LSR_RBR_MASK /* receive buffer is full */
131 #define _LSR_FE_ERROR _LSR_FE_MASK /* framing error detected */
132 #define _LSR_OE_ERROR _LSR_OE_MASK /* overrun error detected */
133 #define _LSR_PE_ERROR _LSR_PE_MASK /* parity error detected */
134 #define _LSR_LB_BREAK _LSR_LB_MASK /* line break detected */
135 #define _LSR_TBR_EMPTY _LSR_TBR_MASK /* transmit buffer is ready */
136 #define _LSR_TSR_EMPTY _LSR_TSR_MASK /* transmit shift register is empty */
137 #define _LSR_TX_ALL 0x06 /* all physical transmit is done */
139 #define _LSR_RX_ERR (_LSR_LB_BREAK | _LSR_FE_MASK | _LSR_OE_MASK | \
142 /* serial port receiver command register */
144 #define _RCR_ER_MASK 0x80 /* enable receiver mask */
145 #define _RCR_DME_MASK 0x60 /* dma mode */
146 #define _RCR_EIE_MASK 0x10 /* error interrupt enable mask */
147 #define _RCR_PME_MASK 0x08 /* pause mode mask */
149 #define _RCR_ER_ENABLE _RCR_ER_MASK /* receiver enabled */
150 #define _RCR_DME_DISABLE 0x00 /* dma disabled */
151 #define _RCR_DME_RXRDY 0x20 /* dma disabled, RxRDY interrupt enabled*/
152 #define _RCR_DME_ENABLE2 0x40 /* dma enabled,receiver src channel 2 */
153 #define _RCR_DME_ENABLE3 0x60 /* dma enabled,receiver src channel 3 */
154 #define _RCR_PME_HARD _RCR_PME_MASK /* RTS controlled by hardware */
155 #define _RCR_PME_SOFT 0x00 /* RTS controlled by software */
157 /* serial port transmit command register */
159 #define _TxCR_ET_MASK 0x80 /* transmiter enable mask */
160 #define _TxCR_DME_MASK 0x60 /* dma mode mask */
161 #define _TxCR_TIE_MASK 0x10 /* empty interrupt enable mask */
162 #define _TxCR_EIE_MASK 0x08 /* error interrupt enable mask */
163 #define _TxCR_SPE_MASK 0x04 /* stop/pause mask */
164 #define _TxCR_TB_MASK 0x02 /* transmit break mask */
166 #define _TxCR_ET_ENABLE _TxCR_ET_MASK /* transmiter enabled */
167 #define _TxCR_DME_DISABLE 0x00 /* transmiter disabled, TBR intr disabled */
168 #define _TxCR_DME_TBR 0x20 /* transmiter disabled, TBR intr enabled */
169 #define _TxCR_DME_CHAN_2 0x40 /* dma enabled, destination chann 2 */
170 #define _TxCR_DME_CHAN_3 0x60 /* dma enabled, destination chann 3 */
172 /* serial ctl reg 2 - added for Vesta */
174 #define _CTL2_EXTERN 0x80 /* */
175 #define _CTL2_USEFIFO 0x40 /* */
176 #define _CTL2_RESETRF 0x08 /* */
177 #define _CTL2_RESETTF 0x04 /* */
181 #define SERIAL_SICC_NAME "ttySICC"
182 #define SERIAL_SICC_MAJOR 150
183 #define SERIAL_SICC_MINOR 1
184 #define SERIAL_SICC_NR 1
194 * Things needed by tty driver
196 static struct tty_driver
*siccnormal_driver
;
198 #if defined(CONFIG_SERIAL_SICC_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
199 #define SUPPORT_SYSRQ
203 * Things needed internally to this driver
207 * tmp_buf is used as a temporary buffer by serial_write. We need to
208 * lock it in case the copy_from_user blocks while swapping in a page,
209 * and some other program tries to do a serial write at the same time.
210 * Since the lock will only come under contention when the system is
211 * swapping and available memory is low, it makes sense to share one
212 * buffer across all the serial ports, since it significantly saves
213 * memory if large numbers of serial ports are open.
215 static u_char
*tmp_buf
;
217 #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
219 /* number of characters left in xmit buffer before we ask for more */
220 #define WAKEUP_CHARS 256
221 #define SICC_ISR_PASS_LIMIT 256
223 #define EVT_WRITE_WAKEUP 0
240 * Static information about the port
243 unsigned int uart_base
;
244 unsigned int uart_base_phys
;
247 unsigned int uartclk
;
248 unsigned int fifosize
;
249 unsigned int tiocm_support
;
250 void (*set_mctrl
)(struct SICC_port
*, u_int mctrl
);
254 * This is the state information which is persistent across opens
257 struct SICC_icount icount
;
259 unsigned int close_delay
;
260 unsigned int closing_wait
;
261 unsigned int custom_divisor
;
264 struct SICC_info
*info
;
265 spinlock_t sicc_lock
;
268 #define SICC_XMIT_SIZE 1024
270 * This is the state information which is only valid when the port is open.
273 struct SICC_port
*port
;
274 struct SICC_state
*state
;
275 struct tty_struct
*tty
;
276 unsigned char x_char
;
277 unsigned char old_status
;
278 unsigned char read_status_mask
;
279 unsigned char ignore_status_mask
;
280 struct circ_buf xmit
;
287 unsigned int timeout
;
292 struct tasklet_struct tlet
;
294 wait_queue_head_t open_wait
;
295 wait_queue_head_t close_wait
;
296 wait_queue_head_t delta_msr_wait
;
299 #ifdef CONFIG_SERIAL_SICC_CONSOLE
300 static struct console siccuart_cons
;
302 static void siccuart_change_speed(struct SICC_info
*info
, struct termios
*old_termios
);
303 static void siccuart_wait_until_sent(struct tty_struct
*tty
, int timeout
);
307 static void powerpcMtcic_cr(unsigned long value
)
309 mtdcr(DCRN_CICCR
, value
);
312 static unsigned long powerpcMfcic_cr(void)
314 return mfdcr(DCRN_CICCR
);
317 static unsigned long powerpcMfclkgpcr(void)
319 return mfdcr(DCRN_SCCR
);
322 static void sicc_set_mctrl_null(struct SICC_port
*port
, u_int mctrl
)
326 static struct SICC_port sicc_ports
[SERIAL_SICC_NR
] = {
329 .uart_base_phys
= SICC0_IO_BASE
,
330 .irqrx
= SICC0_INTRX
,
331 .irqtx
= SICC0_INTTX
,
334 .set_mctrl
= sicc_set_mctrl_null
,
338 static struct SICC_state sicc_state
[SERIAL_SICC_NR
];
340 static void siccuart_enable_rx_interrupt(struct SICC_info
*info
)
344 cr
= readb(info
->port
->uart_base
+BL_SICC_RCR
);
345 cr
&= ~_RCR_DME_MASK
;
346 cr
|= _RCR_DME_RXRDY
;
347 writeb(cr
, info
->port
->uart_base
+BL_SICC_RCR
);
350 static void siccuart_disable_rx_interrupt(struct SICC_info
*info
)
354 cr
= readb(info
->port
->uart_base
+BL_SICC_RCR
);
355 cr
&= ~_RCR_DME_MASK
;
356 cr
|= _RCR_DME_DISABLE
;
357 writeb(cr
, info
->port
->uart_base
+BL_SICC_RCR
);
361 static void siccuart_enable_tx_interrupt(struct SICC_info
*info
)
365 cr
= readb(info
->port
->uart_base
+BL_SICC_TxCR
);
366 cr
&= ~_TxCR_DME_MASK
;
368 writeb(cr
, info
->port
->uart_base
+BL_SICC_TxCR
);
371 static void siccuart_disable_tx_interrupt(struct SICC_info
*info
)
375 cr
= readb(info
->port
->uart_base
+BL_SICC_TxCR
);
376 cr
&= ~_TxCR_DME_MASK
;
377 cr
|= _TxCR_DME_DISABLE
;
378 writeb(cr
, info
->port
->uart_base
+BL_SICC_TxCR
);
382 static void siccuart_stop(struct tty_struct
*tty
)
384 struct SICC_info
*info
= tty
->driver_data
;
387 /* disable interrupts while stopping serial port interrupts */
388 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
389 siccuart_disable_tx_interrupt(info
);
390 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
393 static void siccuart_start(struct tty_struct
*tty
)
395 struct SICC_info
*info
= tty
->driver_data
;
398 /* disable interrupts while starting serial port interrupts */
399 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
400 if (info
->xmit
.head
!= info
->xmit
.tail
402 siccuart_enable_tx_interrupt(info
);
403 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
408 * This routine is used by the interrupt handler to schedule
409 * processing in the software interrupt portion of the driver.
411 static void siccuart_event(struct SICC_info
*info
, int event
)
413 info
->event
|= 1 << event
;
414 tasklet_schedule(&info
->tlet
);
418 siccuart_rx_chars(struct SICC_info
*info
, struct pt_regs
*regs
)
420 struct tty_struct
*tty
= info
->tty
;
421 unsigned int status
, ch
, rsr
, flg
, ignored
= 0;
422 struct SICC_icount
*icount
= &info
->state
->icount
;
423 struct SICC_port
*port
= info
->port
;
425 status
= readb(port
->uart_base
+BL_SICC_LSR
);
426 while (status
& _LSR_RBR_FULL
) {
427 ch
= readb(port
->uart_base
+BL_SICC_RBR
);
429 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)
436 * Note that the error handling code is
437 * out of the main execution path
439 rsr
= readb(port
->uart_base
+BL_SICC_LSR
);
440 if (rsr
& _LSR_RX_ERR
)
444 if (ch
&& time_before(jiffies
, info
->sysrq
)) {
445 handle_sysrq(ch
, regs
, NULL
);
453 *tty
->flip
.flag_buf_ptr
++ = flg
;
454 *tty
->flip
.char_buf_ptr
++ = ch
;
457 status
= readb(port
->uart_base
+BL_SICC_LSR
);
460 tty_flip_buffer_push(tty
);
464 if (rsr
& _LSR_LB_BREAK
) {
465 rsr
&= ~(_LSR_FE_MASK
| _LSR_PE_MASK
);
469 if (info
->state
->line
== siccuart_cons
.index
) {
471 info
->sysrq
= jiffies
+ HZ
*5;
476 } else if (rsr
& _LSR_PE_MASK
)
478 else if (rsr
& _LSR_FE_MASK
)
480 if (rsr
& _LSR_OE_MASK
)
483 if (rsr
& info
->ignore_status_mask
) {
488 rsr
&= info
->read_status_mask
;
490 if (rsr
& _LSR_LB_BREAK
)
492 else if (rsr
& _LSR_PE_MASK
)
494 else if (rsr
& _LSR_FE_MASK
)
497 if (rsr
& _LSR_OE_MASK
) {
499 * CHECK: does overrun affect the current character?
500 * ASSUMPTION: it does not.
502 *tty
->flip
.flag_buf_ptr
++ = flg
;
503 *tty
->flip
.char_buf_ptr
++ = ch
;
505 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)
516 static void siccuart_tx_chars(struct SICC_info
*info
)
518 struct SICC_port
*port
= info
->port
;
520 unsigned char status
;
524 writeb(info
->x_char
, port
->uart_base
+ BL_SICC_TBR
);
525 info
->state
->icount
.tx
++;
529 if (info
->xmit
.head
== info
->xmit
.tail
530 || info
->tty
->stopped
531 || info
->tty
->hw_stopped
) {
532 siccuart_disable_tx_interrupt(info
);
533 writeb(status
&(~_LSR_RBR_MASK
),port
->uart_base
+BL_SICC_LSR
);
537 count
= port
->fifosize
;
539 writeb(info
->xmit
.buf
[info
->xmit
.tail
], port
->uart_base
+ BL_SICC_TBR
);
540 info
->xmit
.tail
= (info
->xmit
.tail
+ 1) & (SICC_XMIT_SIZE
- 1);
541 info
->state
->icount
.tx
++;
542 if (info
->xmit
.head
== info
->xmit
.tail
)
544 } while (--count
> 0);
546 if (CIRC_CNT(info
->xmit
.head
,
548 SICC_XMIT_SIZE
) < WAKEUP_CHARS
)
549 siccuart_event(info
, EVT_WRITE_WAKEUP
);
551 if (info
->xmit
.head
== info
->xmit
.tail
) {
552 siccuart_disable_tx_interrupt(info
);
557 static irqreturn_t
siccuart_int_rx(int irq
, void *dev_id
, struct pt_regs
*regs
)
559 struct SICC_info
*info
= dev_id
;
560 siccuart_rx_chars(info
, regs
);
565 static irqreturn_t
siccuart_int_tx(int irq
, void *dev_id
, struct pt_regs
*regs
)
567 struct SICC_info
*info
= dev_id
;
568 siccuart_tx_chars(info
);
572 static void siccuart_tasklet_action(unsigned long data
)
574 struct SICC_info
*info
= (struct SICC_info
*)data
;
575 struct tty_struct
*tty
;
578 if (!tty
|| !test_and_clear_bit(EVT_WRITE_WAKEUP
, &info
->event
))
581 if ((tty
->flags
& (1 << TTY_DO_WRITE_WAKEUP
)) &&
582 tty
->ldisc
.write_wakeup
)
583 (tty
->ldisc
.write_wakeup
)(tty
);
584 wake_up_interruptible(&tty
->write_wait
);
587 static int siccuart_startup(struct SICC_info
*info
)
593 if (info
->flags
& ASYNC_INITIALIZED
) {
597 page
= get_zeroed_page(GFP_KERNEL
);
601 if (info
->port
->uart_base
== 0)
602 info
->port
->uart_base
= (int)ioremap(info
->port
->uart_base_phys
, PAGE_SIZE
);
603 if (info
->port
->uart_base
== 0) {
608 /* lock access to info while doing setup */
609 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
614 info
->xmit
.buf
= (unsigned char *) page
;
618 if (info
->tty
->termios
->c_cflag
& CBAUD
)
619 info
->mctrl
= TIOCM_RTS
| TIOCM_DTR
;
620 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
623 * initialise the old status of the modem signals
625 info
->old_status
= 0; // UART_GET_FR(info->port) & AMBA_UARTFR_MODEM_ANY;
629 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
630 info
->xmit
.head
= info
->xmit
.tail
= 0;
633 * Set up the tty->alt_speed kludge
636 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_HI
)
637 info
->tty
->alt_speed
= 57600;
638 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_VHI
)
639 info
->tty
->alt_speed
= 115200;
640 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_SHI
)
641 info
->tty
->alt_speed
= 230400;
642 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_WARP
)
643 info
->tty
->alt_speed
= 460800;
647 writeb( 0x00, info
->port
->uart_base
+ BL_SICC_IrCR
); // disable IrDA
651 * and set the speed of the serial port
653 siccuart_change_speed(info
, 0);
655 // enable rx/tx ports
656 writeb(_RCR_ER_ENABLE
/*| _RCR_PME_HARD*/, info
->port
->uart_base
+ BL_SICC_RCR
);
657 writeb(_TxCR_ET_ENABLE
, info
->port
->uart_base
+ BL_SICC_TxCR
);
659 readb(info
->port
->uart_base
+ BL_SICC_RBR
); // clear rx port
661 writeb(0xf8, info
->port
->uart_base
+ BL_SICC_LSR
); /* reset bits 0-4 of LSR */
664 * Finally, enable interrupts
670 retval
= request_irq(info
->port
->irqrx
, siccuart_int_rx
, 0, "SICC rx", info
);
672 if (capable(CAP_SYS_ADMIN
)) {
674 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
679 retval
= request_irq(info
->port
->irqtx
, siccuart_int_tx
, 0, "SICC tx", info
);
681 if (capable(CAP_SYS_ADMIN
)) {
683 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
686 free_irq(info
->port
->irqrx
, info
);
690 siccuart_enable_rx_interrupt(info
);
692 info
->flags
|= ASYNC_INITIALIZED
;
693 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
698 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
703 * This routine will shutdown a serial port; interrupts are disabled, and
704 * DTR is dropped if the hangup on close termio flag is on.
706 static void siccuart_shutdown(struct SICC_info
*info
)
710 if (!(info
->flags
& ASYNC_INITIALIZED
))
713 /* lock while shutting down port */
714 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
); /* Disable interrupts */
717 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
718 * here so the queue might never be woken up
720 wake_up_interruptible(&info
->delta_msr_wait
);
723 * disable all interrupts, disable the port
725 siccuart_disable_rx_interrupt(info
);
726 siccuart_disable_tx_interrupt(info
);
731 free_irq(info
->port
->irqtx
, info
);
732 free_irq(info
->port
->irqrx
, info
);
734 if (info
->xmit
.buf
) {
735 unsigned long pg
= (unsigned long) info
->xmit
.buf
;
736 info
->xmit
.buf
= NULL
;
741 if (!info
->tty
|| (info
->tty
->termios
->c_cflag
& HUPCL
))
742 info
->mctrl
&= ~(TIOCM_DTR
|TIOCM_RTS
);
743 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
745 /* kill off our tasklet */
746 tasklet_kill(&info
->tlet
);
748 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
750 info
->flags
&= ~ASYNC_INITIALIZED
;
752 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
756 static void siccuart_change_speed(struct SICC_info
*info
, struct termios
*old_termios
)
758 unsigned int lcr_h
, baud
, quot
, cflag
, old_rcr
, old_tcr
, bits
;
761 if (!info
->tty
|| !info
->tty
->termios
)
764 cflag
= info
->tty
->termios
->c_cflag
;
766 pr_debug("siccuart_set_cflag(0x%x) called\n", cflag
);
767 /* byte size and parity */
768 switch (cflag
& CSIZE
) {
769 case CS7
: lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_7_BITS
| _LCR_SB_1_BIT
; bits
= 9; break;
770 default: lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_8_BITS
| _LCR_SB_1_BIT
; bits
= 10; break; // CS8
772 if (cflag
& CSTOPB
) {
773 lcr_h
|= _LCR_SB_2_BIT
;
776 if (cflag
& PARENB
) {
777 lcr_h
|= _LCR_PE_ENABLE
;
779 if (!(cflag
& PARODD
))
780 lcr_h
|= _LCR_PTY_ODD
;
782 lcr_h
|= _LCR_PTY_EVEN
;
786 /* Determine divisor based on baud rate */
787 baud
= tty_get_baud_rate(info
->tty
);
793 // here is ppc403SetBaud(com_port, baud);
794 unsigned long divisor
, clockSource
, temp
;
796 /* Ensure CICCR[7] is 0 to select Internal Baud Clock */
797 powerpcMtcic_cr((unsigned long)(powerpcMfcic_cr() & 0xFEFFFFFF));
799 /* Determine Internal Baud Clock Frequency */
800 /* powerpcMfclkgpcr() reads DCR 0x120 - the*/
801 /* SCCR (Serial Clock Control Register) on Vesta */
802 temp
= powerpcMfclkgpcr();
804 if(temp
& 0x00000080) {
805 clockSource
= 324000000;
808 clockSource
= 216000000;
810 clockSource
= clockSource
/(unsigned long)((temp
&0x00FC0000)>>18);
811 divisor
= clockSource
/(16*baud
) - 1;
812 /* divisor has only 12 bits of resolution */
813 if(divisor
>0x00000FFF){
821 ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_CUST
))
822 quot
= info
->state
->custom_divisor
;
824 if (!quot
&& old_termios
) {
825 info
->tty
->termios
->c_cflag
&= ~CBAUD
;
826 info
->tty
->termios
->c_cflag
|= (old_termios
->c_cflag
& CBAUD
);
829 } while (quot
== 0 && old_termios
);
831 /* As a last resort, if the quotient is zero, default to 9600 bps */
833 quot
= (info
->port
->uartclk
/ (16 * 9600)) - 1;
835 info
->timeout
= info
->port
->fifosize
* HZ
* bits
/ baud
;
836 info
->timeout
+= HZ
/50; /* Add .02 seconds of slop */
839 info
->flags
|= ASYNC_CTS_FLOW
;
841 info
->flags
&= ~ASYNC_CTS_FLOW
;
843 info
->flags
&= ~ASYNC_CHECK_CD
;
845 info
->flags
|= ASYNC_CHECK_CD
;
848 * Set up parity check flag
850 #define RELEVENT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
852 info
->read_status_mask
= _LSR_OE_MASK
;
853 if (I_INPCK(info
->tty
))
854 info
->read_status_mask
|= _LSR_FE_MASK
| _LSR_PE_MASK
;
855 if (I_BRKINT(info
->tty
) || I_PARMRK(info
->tty
))
856 info
->read_status_mask
|= _LSR_LB_MASK
;
859 * Characters to ignore
861 info
->ignore_status_mask
= 0;
862 if (I_IGNPAR(info
->tty
))
863 info
->ignore_status_mask
|= _LSR_FE_MASK
| _LSR_PE_MASK
;
864 if (I_IGNBRK(info
->tty
)) {
865 info
->ignore_status_mask
|= _LSR_LB_MASK
;
867 * If we're ignoring parity and break indicators,
868 * ignore overruns to (for real raw support).
870 if (I_IGNPAR(info
->tty
))
871 info
->ignore_status_mask
|= _LSR_OE_MASK
;
874 /* disable interrupts while reading and clearing registers */
875 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
877 old_rcr
= readb(info
->port
->uart_base
+ BL_SICC_RCR
);
878 old_tcr
= readb(info
->port
->uart_base
+ BL_SICC_TxCR
);
881 writeb(0, info
->port
->uart_base
+ BL_SICC_RCR
);
882 writeb(0, info
->port
->uart_base
+ BL_SICC_TxCR
);
884 /*RLBtrace (&ppc403Chan0, 0x2000000c, 0, 0);*/
887 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
891 writeb((quot
& 0x00000F00)>>8, info
->port
->uart_base
+ BL_SICC_BRDH
);
892 writeb( quot
& 0x00000FF, info
->port
->uart_base
+ BL_SICC_BRDL
);
894 /* Set CTL2 reg to use external clock (ExtClk) and enable FIFOs. */
895 /* For now, do NOT use FIFOs since 403 UART did not have this */
896 /* capability and this driver was inherited from 403UART. */
897 writeb(_CTL2_EXTERN
, info
->port
->uart_base
+ BL_SICC_CTL2
);
899 writeb(lcr_h
, info
->port
->uart_base
+ BL_SICC_LCR
);
901 writeb(old_rcr
, info
->port
->uart_base
+ BL_SICC_RCR
); // restore rcr
902 writeb(old_tcr
, info
->port
->uart_base
+ BL_SICC_TxCR
); // restore txcr
907 static void siccuart_put_char(struct tty_struct
*tty
, u_char ch
)
909 struct SICC_info
*info
= tty
->driver_data
;
912 if (!tty
|| !info
->xmit
.buf
)
915 /* lock info->xmit while adding character to tx buffer */
916 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
917 if (CIRC_SPACE(info
->xmit
.head
, info
->xmit
.tail
, SICC_XMIT_SIZE
) != 0) {
918 info
->xmit
.buf
[info
->xmit
.head
] = ch
;
919 info
->xmit
.head
= (info
->xmit
.head
+ 1) & (SICC_XMIT_SIZE
- 1);
921 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
924 static void siccuart_flush_chars(struct tty_struct
*tty
)
926 struct SICC_info
*info
= tty
->driver_data
;
929 if (info
->xmit
.head
== info
->xmit
.tail
935 /* disable interrupts while transmitting characters */
936 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
937 siccuart_enable_tx_interrupt(info
);
938 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
941 static int siccuart_write(struct tty_struct
*tty
,
942 const u_char
* buf
, int count
)
944 struct SICC_info
*info
= tty
->driver_data
;
948 if (!tty
|| !info
->xmit
.buf
|| !tmp_buf
)
951 /* lock info->xmit while removing characters from buffer */
952 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
954 c
= CIRC_SPACE_TO_END(info
->xmit
.head
,
961 memcpy(info
->xmit
.buf
+ info
->xmit
.head
, buf
, c
);
962 info
->xmit
.head
= (info
->xmit
.head
+ c
) &
963 (SICC_XMIT_SIZE
- 1);
968 if (info
->xmit
.head
!= info
->xmit
.tail
971 siccuart_enable_tx_interrupt(info
);
972 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
976 static int siccuart_write_room(struct tty_struct
*tty
)
978 struct SICC_info
*info
= tty
->driver_data
;
980 return CIRC_SPACE(info
->xmit
.head
, info
->xmit
.tail
, SICC_XMIT_SIZE
);
983 static int siccuart_chars_in_buffer(struct tty_struct
*tty
)
985 struct SICC_info
*info
= tty
->driver_data
;
987 return CIRC_CNT(info
->xmit
.head
, info
->xmit
.tail
, SICC_XMIT_SIZE
);
990 static void siccuart_flush_buffer(struct tty_struct
*tty
)
992 struct SICC_info
*info
= tty
->driver_data
;
995 pr_debug("siccuart_flush_buffer(%d) called\n", tty
->index
);
996 /* lock info->xmit while zeroing buffer counts */
997 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
998 info
->xmit
.head
= info
->xmit
.tail
= 0;
999 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1000 wake_up_interruptible(&tty
->write_wait
);
1001 if ((tty
->flags
& (1 << TTY_DO_WRITE_WAKEUP
)) &&
1002 tty
->ldisc
.write_wakeup
)
1003 (tty
->ldisc
.write_wakeup
)(tty
);
1007 * This function is used to send a high-priority XON/XOFF character to
1010 static void siccuart_send_xchar(struct tty_struct
*tty
, char ch
)
1012 struct SICC_info
*info
= tty
->driver_data
;
1016 siccuart_enable_tx_interrupt(info
);
1019 static void siccuart_throttle(struct tty_struct
*tty
)
1021 struct SICC_info
*info
= tty
->driver_data
;
1022 unsigned long flags
;
1025 siccuart_send_xchar(tty
, STOP_CHAR(tty
));
1027 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1028 /* disable interrupts while setting modem control lines */
1029 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1030 info
->mctrl
&= ~TIOCM_RTS
;
1031 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1032 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1036 static void siccuart_unthrottle(struct tty_struct
*tty
)
1038 struct SICC_info
*info
= (struct SICC_info
*) tty
->driver_data
;
1039 unsigned long flags
;
1045 siccuart_send_xchar(tty
, START_CHAR(tty
));
1048 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1049 /* disable interrupts while setting modem control lines */
1050 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1051 info
->mctrl
|= TIOCM_RTS
;
1052 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1053 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1057 static int get_serial_info(struct SICC_info
*info
, struct serial_struct
*retinfo
)
1059 struct SICC_state
*state
= info
->state
;
1060 struct SICC_port
*port
= info
->port
;
1061 struct serial_struct tmp
;
1063 memset(&tmp
, 0, sizeof(tmp
));
1065 tmp
.line
= state
->line
;
1066 tmp
.port
= port
->uart_base
;
1067 if (HIGH_BITS_OFFSET
)
1068 tmp
.port_high
= port
->uart_base
>> HIGH_BITS_OFFSET
;
1069 tmp
.irq
= port
->irqrx
;
1071 tmp
.xmit_fifo_size
= port
->fifosize
;
1072 tmp
.baud_base
= port
->uartclk
/ 16;
1073 tmp
.close_delay
= state
->close_delay
;
1074 tmp
.closing_wait
= state
->closing_wait
;
1075 tmp
.custom_divisor
= state
->custom_divisor
;
1077 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
1082 static int set_serial_info(struct SICC_info
*info
,
1083 struct serial_struct
*newinfo
)
1085 struct serial_struct new_serial
;
1086 struct SICC_state
*state
, old_state
;
1087 struct SICC_port
*port
;
1088 unsigned long new_port
;
1089 unsigned int i
, change_irq
, change_port
;
1092 if (copy_from_user(&new_serial
, newinfo
, sizeof(new_serial
)))
1095 state
= info
->state
;
1099 new_port
= new_serial
.port
;
1100 if (HIGH_BITS_OFFSET
)
1101 new_port
+= (unsigned long) new_serial
.port_high
<< HIGH_BITS_OFFSET
;
1103 change_irq
= new_serial
.irq
!= port
->irqrx
;
1104 change_port
= new_port
!= port
->uart_base
;
1106 if (!capable(CAP_SYS_ADMIN
)) {
1107 if (change_irq
|| change_port
||
1108 (new_serial
.baud_base
!= port
->uartclk
/ 16) ||
1109 (new_serial
.close_delay
!= state
->close_delay
) ||
1110 (new_serial
.xmit_fifo_size
!= port
->fifosize
) ||
1111 ((new_serial
.flags
& ~ASYNC_USR_MASK
) !=
1112 (state
->flags
& ~ASYNC_USR_MASK
)))
1114 state
->flags
= ((state
->flags
& ~ASYNC_USR_MASK
) |
1115 (new_serial
.flags
& ASYNC_USR_MASK
));
1116 info
->flags
= ((info
->flags
& ~ASYNC_USR_MASK
) |
1117 (new_serial
.flags
& ASYNC_USR_MASK
));
1118 state
->custom_divisor
= new_serial
.custom_divisor
;
1119 goto check_and_exit
;
1122 if ((new_serial
.irq
>= NR_IRQS
) || (new_serial
.irq
< 0) ||
1123 (new_serial
.baud_base
< 9600))
1126 if (new_serial
.type
&& change_port
) {
1127 for (i
= 0; i
< SERIAL_SICC_NR
; i
++)
1128 if ((port
!= sicc_ports
+ i
) &&
1129 sicc_ports
[i
].uart_base
!= new_port
)
1133 if ((change_port
|| change_irq
) && (state
->count
> 1))
1137 * OK, past this point, all the error checking has been done.
1138 * At this point, we start making changes.....
1140 port
->uartclk
= new_serial
.baud_base
* 16;
1141 state
->flags
= ((state
->flags
& ~ASYNC_FLAGS
) |
1142 (new_serial
.flags
& ASYNC_FLAGS
));
1143 info
->flags
= ((state
->flags
& ~ASYNC_INTERNAL_FLAGS
) |
1144 (info
->flags
& ASYNC_INTERNAL_FLAGS
));
1145 state
->custom_divisor
= new_serial
.custom_divisor
;
1146 state
->close_delay
= msecs_to_jiffies(10 * new_serial
.close_delay
);
1147 state
->closing_wait
= msecs_to_jiffies(10 * new_serial
.closing_wait
);
1148 info
->tty
->low_latency
= (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
1149 port
->fifosize
= new_serial
.xmit_fifo_size
;
1151 if (change_port
|| change_irq
) {
1153 * We need to shutdown the serial port at the old
1154 * port/irq combination.
1156 siccuart_shutdown(info
);
1157 port
->irqrx
= new_serial
.irq
;
1158 port
->uart_base
= new_port
;
1162 if (!port
->uart_base
)
1164 if (info
->flags
& ASYNC_INITIALIZED
) {
1165 if ((old_state
.flags
& ASYNC_SPD_MASK
) !=
1166 (state
->flags
& ASYNC_SPD_MASK
) ||
1167 (old_state
.custom_divisor
!= state
->custom_divisor
)) {
1168 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_HI
)
1169 info
->tty
->alt_speed
= 57600;
1170 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_VHI
)
1171 info
->tty
->alt_speed
= 115200;
1172 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_SHI
)
1173 info
->tty
->alt_speed
= 230400;
1174 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_WARP
)
1175 info
->tty
->alt_speed
= 460800;
1176 siccuart_change_speed(info
, NULL
);
1179 retval
= siccuart_startup(info
);
1185 * get_lsr_info - get line status register info
1187 static int get_lsr_info(struct SICC_info
*info
, unsigned int *value
)
1189 unsigned int result
, status
;
1190 unsigned long flags
;
1192 /* disable interrupts while reading status from port */
1193 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1194 status
= readb(info
->port
->uart_base
+ BL_SICC_LSR
);
1195 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1196 result
= status
& _LSR_TSR_EMPTY
? TIOCSER_TEMT
: 0;
1199 * If we're about to load something into the transmit
1200 * register, we'll pretend the transmitter isn't empty to
1201 * avoid a race condition (depending on when the transmit
1202 * interrupt happens).
1205 ((CIRC_CNT(info
->xmit
.head
, info
->xmit
.tail
,
1206 SICC_XMIT_SIZE
) > 0) &&
1207 !info
->tty
->stopped
&& !info
->tty
->hw_stopped
))
1208 result
&= TIOCSER_TEMT
;
1210 return put_user(result
, value
);
1213 static int get_modem_info(struct SICC_info
*info
, unsigned int *value
)
1215 unsigned int result
= info
->mctrl
;
1217 return put_user(result
, value
);
1220 static int set_modem_info(struct SICC_info
*info
, unsigned int cmd
,
1221 unsigned int *value
)
1223 unsigned int arg
, old
;
1224 unsigned long flags
;
1226 if (get_user(arg
, value
))
1236 info
->mctrl
&= ~arg
;
1246 /* disable interrupts while setting modem control lines */
1247 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1248 if (old
!= info
->mctrl
)
1249 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1250 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1254 static void siccuart_break_ctl(struct tty_struct
*tty
, int break_state
)
1256 struct SICC_info
*info
= tty
->driver_data
;
1257 unsigned long flags
;
1261 /* disable interrupts while setting break state */
1262 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1263 lcr_h
= readb(info
->port
+ BL_SICC_LSR
);
1264 if (break_state
== -1)
1265 lcr_h
|= _LSR_LB_MASK
;
1267 lcr_h
&= ~_LSR_LB_MASK
;
1268 writeb(lcr_h
, info
->port
+ BL_SICC_LSRS
);
1269 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1272 static int siccuart_ioctl(struct tty_struct
*tty
, struct file
*file
,
1273 unsigned int cmd
, unsigned long arg
)
1275 struct SICC_info
*info
= tty
->driver_data
;
1276 struct SICC_icount cnow
;
1277 struct serial_icounter_struct icount
;
1278 unsigned long flags
;
1280 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1281 (cmd
!= TIOCSERCONFIG
) && (cmd
!= TIOCSERGSTRUCT
) &&
1282 (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
1283 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1289 return get_modem_info(info
, (unsigned int *)arg
);
1293 return set_modem_info(info
, cmd
, (unsigned int *)arg
);
1295 return get_serial_info(info
,
1296 (struct serial_struct
*)arg
);
1298 return set_serial_info(info
,
1299 (struct serial_struct
*)arg
);
1300 case TIOCSERGETLSR
: /* Get line status register */
1301 return get_lsr_info(info
, (unsigned int *)arg
);
1303 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1304 * - mask passed in arg for lines of interest
1305 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1306 * Caller should use TIOCGICOUNT to see which one it was
1311 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1312 * Return: write counters to the user passed counter struct
1313 * NB: both 1->0 and 0->1 transitions are counted except for
1314 * RI where only 0->1 is counted.
1317 /* disable interrupts while getting interrupt count */
1318 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1319 cnow
= info
->state
->icount
;
1320 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1321 icount
.cts
= cnow
.cts
;
1322 icount
.dsr
= cnow
.dsr
;
1323 icount
.rng
= cnow
.rng
;
1324 icount
.dcd
= cnow
.dcd
;
1325 icount
.rx
= cnow
.rx
;
1326 icount
.tx
= cnow
.tx
;
1327 icount
.frame
= cnow
.frame
;
1328 icount
.overrun
= cnow
.overrun
;
1329 icount
.parity
= cnow
.parity
;
1330 icount
.brk
= cnow
.brk
;
1331 icount
.buf_overrun
= cnow
.buf_overrun
;
1333 return copy_to_user((void *)arg
, &icount
, sizeof(icount
))
1337 return -ENOIOCTLCMD
;
1342 static void siccuart_set_termios(struct tty_struct
*tty
, struct termios
*old_termios
)
1344 struct SICC_info
*info
= tty
->driver_data
;
1345 unsigned long flags
;
1346 unsigned int cflag
= tty
->termios
->c_cflag
;
1348 if ((cflag
^ old_termios
->c_cflag
) == 0 &&
1349 RELEVENT_IFLAG(tty
->termios
->c_iflag
^ old_termios
->c_iflag
) == 0)
1352 siccuart_change_speed(info
, old_termios
);
1354 /* Handle transition to B0 status */
1355 if ((old_termios
->c_cflag
& CBAUD
) &&
1357 /* disable interrupts while setting break state */
1358 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1359 info
->mctrl
&= ~(TIOCM_RTS
| TIOCM_DTR
);
1360 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1361 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1364 /* Handle transition away from B0 status */
1365 if (!(old_termios
->c_cflag
& CBAUD
) &&
1367 /* disable interrupts while setting break state */
1368 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1369 info
->mctrl
|= TIOCM_DTR
;
1370 if (!(cflag
& CRTSCTS
) ||
1371 !test_bit(TTY_THROTTLED
, &tty
->flags
))
1372 info
->mctrl
|= TIOCM_RTS
;
1373 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1374 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1377 /* Handle turning off CRTSCTS */
1378 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1379 !(cflag
& CRTSCTS
)) {
1380 tty
->hw_stopped
= 0;
1381 siccuart_start(tty
);
1386 * No need to wake up processes in open wait, since they
1387 * sample the CLOCAL flag once, and don't recheck it.
1388 * XXX It's not clear whether the current behavior is correct
1389 * or not. Hence, this may change.....
1391 if (!(old_termios
->c_cflag
& CLOCAL
) &&
1392 (tty
->termios
->c_cflag
& CLOCAL
))
1393 wake_up_interruptible(&info
->open_wait
);
1397 static void siccuart_close(struct tty_struct
*tty
, struct file
*filp
)
1399 struct SICC_info
*info
= tty
->driver_data
;
1400 struct SICC_state
*state
;
1401 unsigned long flags
;
1406 state
= info
->state
;
1408 //pr_debug("siccuart_close() called\n");
1410 /* lock tty->driver_data while closing port */
1411 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1413 if (tty_hung_up_p(filp
)) {
1417 if ((tty
->count
== 1) && (state
->count
!= 1)) {
1419 * Uh, oh. tty->count is 1, which means that the tty
1420 * structure will be freed. state->count should always
1421 * be one in these conditions. If it's greater than
1422 * one, we've got real problems, since it means the
1423 * serial port won't be shutdown.
1425 printk("siccuart_close: bad serial port count; tty->count is 1, state->count is %d\n", state
->count
);
1428 if (--state
->count
< 0) {
1429 printk("rs_close: bad serial port count for %s: %d\n", tty
->name
, state
->count
);
1435 info
->flags
|= ASYNC_CLOSING
;
1436 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1438 * Now we wait for the transmit buffer to clear; and we notify
1439 * the line discipline to only process XON/XOFF characters.
1442 if (info
->state
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1443 tty_wait_until_sent(tty
, info
->state
->closing_wait
);
1445 * At this point, we stop accepting input. To do this, we
1446 * disable the receive line status interrupts.
1448 if (info
->flags
& ASYNC_INITIALIZED
) {
1449 siccuart_disable_rx_interrupt(info
);
1451 * Before we drop DTR, make sure the UART transmitter
1452 * has completely drained; this is especially
1453 * important if there is a transmit FIFO!
1455 siccuart_wait_until_sent(tty
, info
->timeout
);
1457 siccuart_shutdown(info
);
1458 if (tty
->driver
->flush_buffer
)
1459 tty
->driver
->flush_buffer(tty
);
1460 if (tty
->ldisc
.flush_buffer
)
1461 tty
->ldisc
.flush_buffer(tty
);
1465 if (info
->blocked_open
) {
1466 if (info
->state
->close_delay
)
1467 schedule_timeout_interruptible(info
->state
->close_delay
);
1468 wake_up_interruptible(&info
->open_wait
);
1470 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
1471 wake_up_interruptible(&info
->close_wait
);
1475 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1479 static void siccuart_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1481 struct SICC_info
*info
= (struct SICC_info
*) tty
->driver_data
;
1482 unsigned long char_time
, expire
;
1484 if (info
->port
->fifosize
== 0)
1488 * Set the check interval to be 1/5 of the estimated time to
1489 * send a single character, and make it at least 1. The check
1490 * interval should also be less than the timeout.
1492 * Note: we have to use pretty tight timings here to satisfy
1495 char_time
= (info
->timeout
- msecs_to_jiffies(20)) / info
->port
->fifosize
;
1496 char_time
= char_time
/ 5;
1500 // Crazy!! sometimes the input arg 'timeout' can be negtive numbers :-(
1501 if (timeout
>= 0 && timeout
< char_time
)
1502 char_time
= timeout
;
1504 * If the transmitter hasn't cleared in twice the approximate
1505 * amount of time to send the entire FIFO, it probably won't
1506 * ever clear. This assumes the UART isn't doing flow
1507 * control, which is currently the case. Hence, if it ever
1508 * takes longer than info->timeout, this is probably due to a
1509 * UART bug of some kind. So, we clamp the timeout parameter at
1512 if (!timeout
|| timeout
> 2 * info
->timeout
)
1513 timeout
= 2 * info
->timeout
;
1515 expire
= jiffies
+ timeout
;
1516 pr_debug("siccuart_wait_until_sent(%d), jiff=%lu, expire=%lu char_time=%lu...\n",
1517 tty
->index
, jiffies
,
1519 while ((readb(info
->port
->uart_base
+ BL_SICC_LSR
) & _LSR_TX_ALL
) != _LSR_TX_ALL
) {
1520 schedule_timeout_interruptible(char_time
);
1521 if (signal_pending(current
))
1523 if (timeout
&& time_after(jiffies
, expire
))
1526 set_current_state(TASK_RUNNING
);
1529 static void siccuart_hangup(struct tty_struct
*tty
)
1531 struct SICC_info
*info
= tty
->driver_data
;
1532 struct SICC_state
*state
= info
->state
;
1534 siccuart_flush_buffer(tty
);
1535 if (info
->flags
& ASYNC_CLOSING
)
1537 siccuart_shutdown(info
);
1540 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
1542 wake_up_interruptible(&info
->open_wait
);
1545 static int block_til_ready(struct tty_struct
*tty
, struct file
*filp
,
1546 struct SICC_info
*info
)
1548 DECLARE_WAITQUEUE(wait
, current
);
1549 struct SICC_state
*state
= info
->state
;
1550 unsigned long flags
;
1551 int do_clocal
= 0, extra_count
= 0, retval
;
1554 * If the device is in the middle of being closed, then block
1555 * until it's done, and then try again.
1557 if (tty_hung_up_p(filp
) ||
1558 (info
->flags
& ASYNC_CLOSING
)) {
1559 if (info
->flags
& ASYNC_CLOSING
)
1560 interruptible_sleep_on(&info
->close_wait
);
1561 return (info
->flags
& ASYNC_HUP_NOTIFY
) ?
1562 -EAGAIN
: -ERESTARTSYS
;
1566 * If non-blocking mode is set, or the port is not enabled,
1567 * then make the check up front and then exit.
1569 if ((filp
->f_flags
& O_NONBLOCK
) ||
1570 (tty
->flags
& (1 << TTY_IO_ERROR
))) {
1571 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
1575 if (tty
->termios
->c_cflag
& CLOCAL
)
1579 * Block waiting for the carrier detect and the line to become
1580 * free (i.e., not in use by the callout). While we are in
1581 * this loop, state->count is dropped by one, so that
1582 * rs_close() knows when to free things. We restore it upon
1583 * exit, either normal or abnormal.
1586 add_wait_queue(&info
->open_wait
, &wait
);
1587 /* lock while decrementing state->count */
1588 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1589 if (!tty_hung_up_p(filp
)) {
1593 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1594 info
->blocked_open
++;
1596 /* disable interrupts while setting modem control lines */
1597 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1598 if (tty
->termios
->c_cflag
& CBAUD
) {
1599 info
->mctrl
= TIOCM_DTR
| TIOCM_RTS
;
1600 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1602 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1603 set_current_state(TASK_INTERRUPTIBLE
);
1604 if (tty_hung_up_p(filp
) ||
1605 !(info
->flags
& ASYNC_INITIALIZED
)) {
1606 if (info
->flags
& ASYNC_HUP_NOTIFY
)
1609 retval
= -ERESTARTSYS
;
1612 if (!(info
->flags
& ASYNC_CLOSING
) &&
1613 (do_clocal
/*|| (UART_GET_FR(info->port) & SICC_UARTFR_DCD)*/))
1615 if (signal_pending(current
)) {
1616 retval
= -ERESTARTSYS
;
1621 set_current_state(TASK_RUNNING
);
1622 remove_wait_queue(&info
->open_wait
, &wait
);
1625 info
->blocked_open
--;
1628 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
1632 static struct SICC_info
*siccuart_get(int line
)
1634 struct SICC_info
*info
;
1635 struct SICC_state
*state
= sicc_state
+ line
;
1640 info
= kzalloc(sizeof(struct SICC_info
), GFP_KERNEL
);
1642 init_waitqueue_head(&info
->open_wait
);
1643 init_waitqueue_head(&info
->close_wait
);
1644 init_waitqueue_head(&info
->delta_msr_wait
);
1645 info
->flags
= state
->flags
;
1646 info
->state
= state
;
1647 info
->port
= sicc_ports
+ line
;
1648 tasklet_init(&info
->tlet
, siccuart_tasklet_action
,
1649 (unsigned long)info
);
1659 static int siccuart_open(struct tty_struct
*tty
, struct file
*filp
)
1661 struct SICC_info
*info
;
1662 int retval
, line
= tty
->index
;
1665 // is this a line that we've got?
1666 if (line
>= SERIAL_SICC_NR
) {
1670 info
= siccuart_get(line
);
1674 tty
->driver_data
= info
;
1676 info
->tty
->low_latency
= (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
1679 * Make sure we have the temporary buffer allocated
1682 unsigned long page
= get_zeroed_page(GFP_KERNEL
);
1688 tmp_buf
= (u_char
*)page
;
1692 * If the port is in the middle of closing, bail out now.
1694 if (tty_hung_up_p(filp
) ||
1695 (info
->flags
& ASYNC_CLOSING
)) {
1696 if (info
->flags
& ASYNC_CLOSING
)
1697 interruptible_sleep_on(&info
->close_wait
);
1702 * Start up the serial port
1704 retval
= siccuart_startup(info
);
1709 retval
= block_til_ready(tty
, filp
, info
);
1714 #ifdef CONFIG_SERIAL_SICC_CONSOLE
1715 if (siccuart_cons
.cflag
&& siccuart_cons
.index
== line
) {
1716 tty
->termios
->c_cflag
= siccuart_cons
.cflag
;
1717 siccuart_cons
.cflag
= 0;
1718 siccuart_change_speed(info
, NULL
);
1724 static struct tty_operations sicc_ops
= {
1725 .open
= siccuart_open
,
1726 .close
= siccuart_close
,
1727 .write
= siccuart_write
,
1728 .put_char
= siccuart_put_char
,
1729 .flush_chars
= siccuart_flush_chars
,
1730 .write_room
= siccuart_write_room
,
1731 .chars_in_buffer
= siccuart_chars_in_buffer
,
1732 .flush_buffer
= siccuart_flush_buffer
,
1733 .ioctl
= siccuart_ioctl
,
1734 .throttle
= siccuart_throttle
,
1735 .unthrottle
= siccuart_unthrottle
,
1736 .send_xchar
= siccuart_send_xchar
,
1737 .set_termios
= siccuart_set_termios
,
1738 .stop
= siccuart_stop
,
1739 .start
= siccuart_start
,
1740 .hangup
= siccuart_hangup
,
1741 .break_ctl
= siccuart_break_ctl
,
1742 .wait_until_sent
= siccuart_wait_until_sent
,
1745 int __init
siccuart_init(void)
1748 siccnormal_driver
= alloc_tty_driver(SERIAL_SICC_NR
);
1749 if (!siccnormal_driver
)
1751 printk("IBM Vesta SICC serial port driver V 0.1 by Yudong Yang and Yi Ge / IBM CRL .\n");
1752 siccnormal_driver
->driver_name
= "serial_sicc";
1753 siccnormal_driver
->owner
= THIS_MODULE
;
1754 siccnormal_driver
->name
= SERIAL_SICC_NAME
;
1755 siccnormal_driver
->major
= SERIAL_SICC_MAJOR
;
1756 siccnormal_driver
->minor_start
= SERIAL_SICC_MINOR
;
1757 siccnormal_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1758 siccnormal_driver
->subtype
= SERIAL_TYPE_NORMAL
;
1759 siccnormal_driver
->init_termios
= tty_std_termios
;
1760 siccnormal_driver
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1761 siccnormal_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_NO_DEVFS
;
1762 tty_set_operations(siccnormal_driver
, &sicc_ops
);
1764 if (tty_register_driver(siccnormal_driver
))
1765 panic("Couldn't register SICC serial driver\n");
1767 for (i
= 0; i
< SERIAL_SICC_NR
; i
++) {
1768 struct SICC_state
*state
= sicc_state
+ i
;
1770 state
->close_delay
= msecs_to_jiffies(500);
1771 state
->closing_wait
= 30 * HZ
;
1772 spin_lock_init(&state
->sicc_lock
);
1779 __initcall(siccuart_init
);
1781 #ifdef CONFIG_SERIAL_SICC_CONSOLE
1782 /************** console driver *****************/
1785 * This code is currently never used; console->read is never called.
1786 * Therefore, although we have an implementation, we don't use it.
1787 * FIXME: the "const char *s" should be fixed to "char *s" some day.
1788 * (when the definition in include/linux/console.h is also fixed)
1790 #ifdef used_and_not_const_char_pointer
1791 static int siccuart_console_read(struct console
*co
, const char *s
, u_int count
)
1793 struct SICC_port
*port
= &sicc_ports
[co
->index
];
1794 unsigned int status
;
1798 pr_debug("siccuart_console_read() called\n");
1803 if(readb(port
->uart_base
+ BL_SICC_LSR
) & _LSR_RBR_FULL
) {
1804 *w
++ = readb(port
->uart_base
+ BL_SICC_RBR
);
1807 // nothing more to get, return
1817 * Print a string to the serial port trying not to disturb
1818 * any possible real use of the port...
1820 * The console_lock must be held when we get here.
1822 static void siccuart_console_write(struct console
*co
, const char *s
, u_int count
)
1824 struct SICC_port
*port
= &sicc_ports
[co
->index
];
1825 unsigned int old_cr
;
1829 * First save the CR then disable the interrupts
1831 old_cr
= readb(port
->uart_base
+ BL_SICC_TxCR
);
1832 writeb(old_cr
& ~_TxCR_DME_MASK
, port
->uart_base
+ BL_SICC_TxCR
);
1835 * Now, do each character
1837 for (i
= 0; i
< count
; i
++) {
1838 while ((readb(port
->uart_base
+ BL_SICC_LSR
)&_LSR_TX_ALL
) != _LSR_TX_ALL
);
1839 writeb(s
[i
], port
->uart_base
+ BL_SICC_TBR
);
1841 while ((readb(port
->uart_base
+ BL_SICC_LSR
)&_LSR_TX_ALL
) != _LSR_TX_ALL
);
1842 writeb('\r', port
->uart_base
+ BL_SICC_TBR
);
1847 * Finally, wait for transmitter to become empty
1848 * and restore the TCR
1850 while ((readb(port
->uart_base
+ BL_SICC_LSR
)&_LSR_TX_ALL
) != _LSR_TX_ALL
);
1851 writeb(old_cr
, port
->uart_base
+ BL_SICC_TxCR
);
1855 * Receive character from the serial port
1857 static int siccuart_console_wait_key(struct console
*co
)
1859 struct SICC_port
*port
= &sicc_ports
[co
->index
];
1862 while(!(readb(port
->uart_base
+ BL_SICC_LSR
) & _LSR_RBR_FULL
));
1863 c
= readb(port
->uart_base
+ BL_SICC_RBR
);
1867 static struct tty_driver
*siccuart_console_device(struct console
*c
, int *index
)
1870 return siccnormal_driver
;
1873 static int __init
siccuart_console_setup(struct console
*co
, char *options
)
1875 struct SICC_port
*port
;
1879 u_int cflag
= CREAD
| HUPCL
| CLOCAL
;
1883 if (co
->index
>= SERIAL_SICC_NR
)
1886 port
= &sicc_ports
[co
->index
];
1888 if (port
->uart_base
== 0)
1889 port
->uart_base
= (int)ioremap(port
->uart_base_phys
, PAGE_SIZE
);
1893 baud
= simple_strtoul(s
, NULL
, 10);
1894 while (*s
>= '0' && *s
<= '9')
1896 if (*s
) parity
= *s
++;
1897 if (*s
) bits
= *s
- '0';
1901 * Now construct a cflag setting.
1904 case 1200: cflag
|= B1200
; break;
1905 case 2400: cflag
|= B2400
; break;
1906 case 4800: cflag
|= B4800
; break;
1907 default: cflag
|= B9600
; baud
= 9600; break;
1908 case 19200: cflag
|= B19200
; break;
1909 case 38400: cflag
|= B38400
; break;
1910 case 57600: cflag
|= B57600
; break;
1911 case 115200: cflag
|= B115200
; break;
1914 case 7: cflag
|= CS7
; lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_7_BITS
| _LCR_SB_1_BIT
; break;
1915 default: cflag
|= CS8
; lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_8_BITS
| _LCR_SB_1_BIT
; break;
1919 case 'O': cflag
|= PARODD
; lcr_h
|= _LCR_PTY_ODD
; break;
1921 case 'E': cflag
|= PARENB
; lcr_h
|= _LCR_PE_ENABLE
| _LCR_PTY_ODD
; break;
1928 // a copy of is inserted here ppc403SetBaud(com_port, (int)9600);
1929 unsigned long divisor
, clockSource
, temp
;
1930 unsigned int rate
= baud
;
1932 /* Ensure CICCR[7] is 0 to select Internal Baud Clock */
1933 powerpcMtcic_cr((unsigned long)(powerpcMfcic_cr() & 0xFEFFFFFF));
1935 /* Determine Internal Baud Clock Frequency */
1936 /* powerpcMfclkgpcr() reads DCR 0x120 - the*/
1937 /* SCCR (Serial Clock Control Register) on Vesta */
1938 temp
= powerpcMfclkgpcr();
1940 if(temp
& 0x00000080) {
1941 clockSource
= 324000000;
1944 clockSource
= 216000000;
1946 clockSource
= clockSource
/(unsigned long)((temp
&0x00FC0000)>>18);
1947 divisor
= clockSource
/(16*rate
) - 1;
1948 /* divisor has only 12 bits of resolution */
1949 if(divisor
>0x00000FFF){
1956 writeb((quot
& 0x00000F00)>>8, port
->uart_base
+ BL_SICC_BRDH
);
1957 writeb( quot
& 0x00000FF, port
->uart_base
+ BL_SICC_BRDL
);
1959 /* Set CTL2 reg to use external clock (ExtClk) and enable FIFOs. */
1960 /* For now, do NOT use FIFOs since 403 UART did not have this */
1961 /* capability and this driver was inherited from 403UART. */
1962 writeb(_CTL2_EXTERN
, port
->uart_base
+ BL_SICC_CTL2
);
1964 writeb(lcr_h
, port
->uart_base
+ BL_SICC_LCR
);
1965 writeb(_RCR_ER_ENABLE
| _RCR_PME_HARD
, port
->uart_base
+ BL_SICC_RCR
);
1966 writeb( _TxCR_ET_ENABLE
, port
->uart_base
+ BL_SICC_TxCR
);
1968 // writeb(, info->port->uart_base + BL_SICC_RCR );
1970 * Transmitter Command Register: Transmitter enabled & DMA + TBR interrupt
1971 * + Transmitter Empty interrupt + Transmitter error interrupt disabled &
1972 * Stop mode when CTS active enabled & Transmit Break + Pattern Generation
1976 writeb( 0x00, port
->uart_base
+ BL_SICC_IrCR
); // disable IrDA
1978 readb(port
->uart_base
+ BL_SICC_RBR
);
1980 writeb(0xf8, port
->uart_base
+ BL_SICC_LSR
); /* reset bits 0-4 of LSR */
1982 /* we will enable the port as we need it */
1987 static struct console siccuart_cons
=
1989 .name
= SERIAL_SICC_NAME
,
1990 .write
= siccuart_console_write
,
1991 #ifdef used_and_not_const_char_pointer
1992 .read
= siccuart_console_read
,
1994 .device
= siccuart_console_device
,
1995 .wait_key
= siccuart_console_wait_key
,
1996 .setup
= siccuart_console_setup
,
1997 .flags
= CON_PRINTBUFFER
,
2001 void __init
sicc_console_init(void)
2003 register_console(&siccuart_cons
);
2006 #endif /* CONFIG_SERIAL_SICC_CONSOLE */