2 * Driver for IBM STB3xxx SICC serial port
4 * Based on drivers/char/serial_amba.c, by ARM Ltd.
6 * Copyright 2001 IBM Corp.
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/module.h>
32 #include <linux/kernel.h>
33 #include <linux/errno.h>
34 #include <linux/signal.h>
35 #include <linux/sched.h>
36 #include <linux/interrupt.h>
37 #include <linux/tty.h>
38 #include <linux/tty_flip.h>
39 #include <linux/major.h>
40 #include <linux/string.h>
41 #include <linux/fcntl.h>
42 #include <linux/ptrace.h>
43 #include <linux/ioport.h>
45 #include <linux/slab.h>
46 #include <linux/init.h>
47 #include <linux/capability.h>
48 #include <linux/circ_buf.h>
49 #include <linux/serial.h>
50 #include <linux/console.h>
51 #include <linux/sysrq.h>
52 #include <linux/bitops.h>
54 #include <asm/system.h>
57 #include <asm/uaccess.h>
58 #include <asm/serial.h>
61 #include <linux/serialP.h>
64 /* -----------------------------------------------------------------------------
65 * From STB03xxx SICC UART Specification
66 * -----------------------------------------------------------------------------
67 * UART Register Offsets.
70 #define BL_SICC_LSR 0x0000000 /* line status register read/clear */
71 #define BL_SICC_LSRS 0x0000001 /* set line status register read/set */
72 #define BL_SICC_HSR 0x0000002 /* handshake status register r/clear */
73 #define BL_SICC_HSRS 0x0000003 /* set handshake status register r/set */
74 #define BL_SICC_BRDH 0x0000004 /* baudrate divisor high reg r/w */
75 #define BL_SICC_BRDL 0x0000005 /* baudrate divisor low reg r/w */
76 #define BL_SICC_LCR 0x0000006 /* control register r/w */
77 #define BL_SICC_RCR 0x0000007 /* receiver command register r/w */
78 #define BL_SICC_TxCR 0x0000008 /* transmitter command register r/w */
79 #define BL_SICC_RBR 0x0000009 /* receive buffer r */
80 #define BL_SICC_TBR 0x0000009 /* transmit buffer w */
81 #define BL_SICC_CTL2 0x000000A /* added for Vesta */
82 #define BL_SICC_IrCR 0x000000B /* added for Vesta IR */
84 /* masks and definitions for serial port control register */
86 #define _LCR_LM_MASK 0xc0 /* loop back modes */
87 #define _LCR_DTR_MASK 0x20 /* data terminal ready 0-inactive */
88 #define _LCR_RTS_MASK 0x10 /* request to send 0-inactive */
89 #define _LCR_DB_MASK 0x08 /* data bits mask */
90 #define _LCR_PE_MASK 0x04 /* parity enable */
91 #define _LCR_PTY_MASK 0x02 /* parity */
92 #define _LCR_SB_MASK 0x01 /* stop bit mask */
94 #define _LCR_LM_NORM 0x00 /* normal operation */
95 #define _LCR_LM_LOOP 0x40 /* internal loopback mode */
96 #define _LCR_LM_ECHO 0x80 /* automatic echo mode */
97 #define _LCR_LM_RES 0xc0 /* reserved */
99 #define _LCR_DTR_ACTIVE _LCR_DTR_MASK /* DTR is active */
100 #define _LCR_RTS_ACTIVE _LCR_RTS_MASK /* RTS is active */
101 #define _LCR_DB_8_BITS _LCR_DB_MASK /* 8 data bits */
102 #define _LCR_DB_7_BITS 0x00 /* 7 data bits */
103 #define _LCR_PE_ENABLE _LCR_PE_MASK /* parity enabled */
104 #define _LCR_PE_DISABLE 0x00 /* parity disabled */
105 #define _LCR_PTY_EVEN 0x00 /* even parity */
106 #define _LCR_PTY_ODD _LCR_PTY_MASK /* odd parity */
107 #define _LCR_SB_1_BIT 0x00 /* one stop bit */
108 #define _LCR_SB_2_BIT _LCR_SB_MASK /* two stop bit */
110 /* serial port handshake register */
112 #define _HSR_DIS_MASK 0x80 /* DSR input inactive error mask */
113 #define _HSR_CS_MASK 0x40 /* CTS input inactive error mask */
114 #define _HSR_DIS_ACT 0x00 /* dsr input is active */
115 #define _HSR_DIS_INACT _HSR_DIS_MASK /* dsr input is inactive */
116 #define _HSR_CS_ACT 0x00 /* cts input is active */
117 #define _HSR_CS_INACT _HSR_CS_MASK /* cts input is active */
119 /* serial port line status register */
121 #define _LSR_RBR_MASK 0x80 /* receive buffer ready mask */
122 #define _LSR_FE_MASK 0x40 /* framing error */
123 #define _LSR_OE_MASK 0x20 /* overrun error */
124 #define _LSR_PE_MASK 0x10 /* parity error */
125 #define _LSR_LB_MASK 0x08 /* line break */
126 #define _LSR_TBR_MASK 0x04 /* transmit buffer ready */
127 #define _LSR_TSR_MASK 0x02 /* transmit shift register ready */
129 #define _LSR_RBR_FULL _LSR_RBR_MASK /* receive buffer is full */
130 #define _LSR_FE_ERROR _LSR_FE_MASK /* framing error detected */
131 #define _LSR_OE_ERROR _LSR_OE_MASK /* overrun error detected */
132 #define _LSR_PE_ERROR _LSR_PE_MASK /* parity error detected */
133 #define _LSR_LB_BREAK _LSR_LB_MASK /* line break detected */
134 #define _LSR_TBR_EMPTY _LSR_TBR_MASK /* transmit buffer is ready */
135 #define _LSR_TSR_EMPTY _LSR_TSR_MASK /* transmit shift register is empty */
136 #define _LSR_TX_ALL 0x06 /* all physical transmit is done */
138 #define _LSR_RX_ERR (_LSR_LB_BREAK | _LSR_FE_MASK | _LSR_OE_MASK | \
141 /* serial port receiver command register */
143 #define _RCR_ER_MASK 0x80 /* enable receiver mask */
144 #define _RCR_DME_MASK 0x60 /* dma mode */
145 #define _RCR_EIE_MASK 0x10 /* error interrupt enable mask */
146 #define _RCR_PME_MASK 0x08 /* pause mode mask */
148 #define _RCR_ER_ENABLE _RCR_ER_MASK /* receiver enabled */
149 #define _RCR_DME_DISABLE 0x00 /* dma disabled */
150 #define _RCR_DME_RXRDY 0x20 /* dma disabled, RxRDY interrupt enabled*/
151 #define _RCR_DME_ENABLE2 0x40 /* dma enabled,receiver src channel 2 */
152 #define _RCR_DME_ENABLE3 0x60 /* dma enabled,receiver src channel 3 */
153 #define _RCR_PME_HARD _RCR_PME_MASK /* RTS controlled by hardware */
154 #define _RCR_PME_SOFT 0x00 /* RTS controlled by software */
156 /* serial port transmit command register */
158 #define _TxCR_ET_MASK 0x80 /* transmitter enable mask */
159 #define _TxCR_DME_MASK 0x60 /* dma mode mask */
160 #define _TxCR_TIE_MASK 0x10 /* empty interrupt enable mask */
161 #define _TxCR_EIE_MASK 0x08 /* error interrupt enable mask */
162 #define _TxCR_SPE_MASK 0x04 /* stop/pause mask */
163 #define _TxCR_TB_MASK 0x02 /* transmit break mask */
165 #define _TxCR_ET_ENABLE _TxCR_ET_MASK /* transmitter enabled */
166 #define _TxCR_DME_DISABLE 0x00 /* transmitter disabled, TBR intr disabled */
167 #define _TxCR_DME_TBR 0x20 /* transmitter disabled, TBR intr enabled */
168 #define _TxCR_DME_CHAN_2 0x40 /* dma enabled, destination chann 2 */
169 #define _TxCR_DME_CHAN_3 0x60 /* dma enabled, destination chann 3 */
171 /* serial ctl reg 2 - added for Vesta */
173 #define _CTL2_EXTERN 0x80 /* */
174 #define _CTL2_USEFIFO 0x40 /* */
175 #define _CTL2_RESETRF 0x08 /* */
176 #define _CTL2_RESETTF 0x04 /* */
180 #define SERIAL_SICC_NAME "ttySICC"
181 #define SERIAL_SICC_MAJOR 150
182 #define SERIAL_SICC_MINOR 1
183 #define SERIAL_SICC_NR 1
193 * Things needed by tty driver
195 static struct tty_driver
*siccnormal_driver
;
197 #if defined(CONFIG_SERIAL_SICC_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
198 #define SUPPORT_SYSRQ
202 * Things needed internally to this driver
206 * tmp_buf is used as a temporary buffer by serial_write. We need to
207 * lock it in case the copy_from_user blocks while swapping in a page,
208 * and some other program tries to do a serial write at the same time.
209 * Since the lock will only come under contention when the system is
210 * swapping and available memory is low, it makes sense to share one
211 * buffer across all the serial ports, since it significantly saves
212 * memory if large numbers of serial ports are open.
214 static u_char
*tmp_buf
;
216 #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
218 /* number of characters left in xmit buffer before we ask for more */
219 #define WAKEUP_CHARS 256
220 #define SICC_ISR_PASS_LIMIT 256
222 #define EVT_WRITE_WAKEUP 0
239 * Static information about the port
242 unsigned int uart_base
;
243 unsigned int uart_base_phys
;
246 unsigned int uartclk
;
247 unsigned int fifosize
;
248 unsigned int tiocm_support
;
249 void (*set_mctrl
)(struct SICC_port
*, u_int mctrl
);
253 * This is the state information which is persistent across opens
256 struct SICC_icount icount
;
258 unsigned int close_delay
;
259 unsigned int closing_wait
;
260 unsigned int custom_divisor
;
263 struct SICC_info
*info
;
264 spinlock_t sicc_lock
;
267 #define SICC_XMIT_SIZE 1024
269 * This is the state information which is only valid when the port is open.
272 struct SICC_port
*port
;
273 struct SICC_state
*state
;
274 struct tty_struct
*tty
;
275 unsigned char x_char
;
276 unsigned char old_status
;
277 unsigned char read_status_mask
;
278 unsigned char ignore_status_mask
;
279 struct circ_buf xmit
;
286 unsigned int timeout
;
291 struct tasklet_struct tlet
;
293 wait_queue_head_t open_wait
;
294 wait_queue_head_t close_wait
;
295 wait_queue_head_t delta_msr_wait
;
298 #ifdef CONFIG_SERIAL_SICC_CONSOLE
299 static struct console siccuart_cons
;
301 static void siccuart_change_speed(struct SICC_info
*info
, struct termios
*old_termios
);
302 static void siccuart_wait_until_sent(struct tty_struct
*tty
, int timeout
);
306 static void powerpcMtcic_cr(unsigned long value
)
308 mtdcr(DCRN_CICCR
, value
);
311 static unsigned long powerpcMfcic_cr(void)
313 return mfdcr(DCRN_CICCR
);
316 static unsigned long powerpcMfclkgpcr(void)
318 return mfdcr(DCRN_SCCR
);
321 static void sicc_set_mctrl_null(struct SICC_port
*port
, u_int mctrl
)
325 static struct SICC_port sicc_ports
[SERIAL_SICC_NR
] = {
328 .uart_base_phys
= SICC0_IO_BASE
,
329 .irqrx
= SICC0_INTRX
,
330 .irqtx
= SICC0_INTTX
,
333 .set_mctrl
= sicc_set_mctrl_null
,
337 static struct SICC_state sicc_state
[SERIAL_SICC_NR
];
339 static void siccuart_enable_rx_interrupt(struct SICC_info
*info
)
343 cr
= readb(info
->port
->uart_base
+BL_SICC_RCR
);
344 cr
&= ~_RCR_DME_MASK
;
345 cr
|= _RCR_DME_RXRDY
;
346 writeb(cr
, info
->port
->uart_base
+BL_SICC_RCR
);
349 static void siccuart_disable_rx_interrupt(struct SICC_info
*info
)
353 cr
= readb(info
->port
->uart_base
+BL_SICC_RCR
);
354 cr
&= ~_RCR_DME_MASK
;
355 cr
|= _RCR_DME_DISABLE
;
356 writeb(cr
, info
->port
->uart_base
+BL_SICC_RCR
);
360 static void siccuart_enable_tx_interrupt(struct SICC_info
*info
)
364 cr
= readb(info
->port
->uart_base
+BL_SICC_TxCR
);
365 cr
&= ~_TxCR_DME_MASK
;
367 writeb(cr
, info
->port
->uart_base
+BL_SICC_TxCR
);
370 static void siccuart_disable_tx_interrupt(struct SICC_info
*info
)
374 cr
= readb(info
->port
->uart_base
+BL_SICC_TxCR
);
375 cr
&= ~_TxCR_DME_MASK
;
376 cr
|= _TxCR_DME_DISABLE
;
377 writeb(cr
, info
->port
->uart_base
+BL_SICC_TxCR
);
381 static void siccuart_stop(struct tty_struct
*tty
)
383 struct SICC_info
*info
= tty
->driver_data
;
386 /* disable interrupts while stopping serial port interrupts */
387 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
388 siccuart_disable_tx_interrupt(info
);
389 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
392 static void siccuart_start(struct tty_struct
*tty
)
394 struct SICC_info
*info
= tty
->driver_data
;
397 /* disable interrupts while starting serial port interrupts */
398 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
399 if (info
->xmit
.head
!= info
->xmit
.tail
401 siccuart_enable_tx_interrupt(info
);
402 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
407 * This routine is used by the interrupt handler to schedule
408 * processing in the software interrupt portion of the driver.
410 static void siccuart_event(struct SICC_info
*info
, int event
)
412 info
->event
|= 1 << event
;
413 tasklet_schedule(&info
->tlet
);
417 siccuart_rx_chars(struct SICC_info
*info
)
419 struct tty_struct
*tty
= info
->tty
;
420 unsigned int status
, ch
, rsr
, flg
, ignored
= 0;
421 struct SICC_icount
*icount
= &info
->state
->icount
;
422 struct SICC_port
*port
= info
->port
;
424 status
= readb(port
->uart_base
+BL_SICC_LSR
);
425 while (status
& _LSR_RBR_FULL
) {
426 ch
= readb(port
->uart_base
+BL_SICC_RBR
);
428 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)
435 * Note that the error handling code is
436 * out of the main execution path
438 rsr
= readb(port
->uart_base
+BL_SICC_LSR
);
439 if (rsr
& _LSR_RX_ERR
)
443 if (ch
&& time_before(jiffies
, info
->sysrq
)) {
444 handle_sysrq(ch
, NULL
);
452 *tty
->flip
.flag_buf_ptr
++ = flg
;
453 *tty
->flip
.char_buf_ptr
++ = ch
;
456 status
= readb(port
->uart_base
+BL_SICC_LSR
);
459 tty_flip_buffer_push(tty
);
463 if (rsr
& _LSR_LB_BREAK
) {
464 rsr
&= ~(_LSR_FE_MASK
| _LSR_PE_MASK
);
468 if (info
->state
->line
== siccuart_cons
.index
) {
470 info
->sysrq
= jiffies
+ HZ
*5;
475 } else if (rsr
& _LSR_PE_MASK
)
477 else if (rsr
& _LSR_FE_MASK
)
479 if (rsr
& _LSR_OE_MASK
)
482 if (rsr
& info
->ignore_status_mask
) {
487 rsr
&= info
->read_status_mask
;
489 if (rsr
& _LSR_LB_BREAK
)
491 else if (rsr
& _LSR_PE_MASK
)
493 else if (rsr
& _LSR_FE_MASK
)
496 if (rsr
& _LSR_OE_MASK
) {
498 * CHECK: does overrun affect the current character?
499 * ASSUMPTION: it does not.
501 *tty
->flip
.flag_buf_ptr
++ = flg
;
502 *tty
->flip
.char_buf_ptr
++ = ch
;
504 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)
515 static void siccuart_tx_chars(struct SICC_info
*info
)
517 struct SICC_port
*port
= info
->port
;
519 unsigned char status
;
523 writeb(info
->x_char
, port
->uart_base
+ BL_SICC_TBR
);
524 info
->state
->icount
.tx
++;
528 if (info
->xmit
.head
== info
->xmit
.tail
529 || info
->tty
->stopped
530 || info
->tty
->hw_stopped
) {
531 siccuart_disable_tx_interrupt(info
);
532 writeb(status
&(~_LSR_RBR_MASK
),port
->uart_base
+BL_SICC_LSR
);
536 count
= port
->fifosize
;
538 writeb(info
->xmit
.buf
[info
->xmit
.tail
], port
->uart_base
+ BL_SICC_TBR
);
539 info
->xmit
.tail
= (info
->xmit
.tail
+ 1) & (SICC_XMIT_SIZE
- 1);
540 info
->state
->icount
.tx
++;
541 if (info
->xmit
.head
== info
->xmit
.tail
)
543 } while (--count
> 0);
545 if (CIRC_CNT(info
->xmit
.head
,
547 SICC_XMIT_SIZE
) < WAKEUP_CHARS
)
548 siccuart_event(info
, EVT_WRITE_WAKEUP
);
550 if (info
->xmit
.head
== info
->xmit
.tail
) {
551 siccuart_disable_tx_interrupt(info
);
556 static irqreturn_t
siccuart_int_rx(int irq
, void *dev_id
)
558 struct SICC_info
*info
= dev_id
;
559 siccuart_rx_chars(info
)
564 static irqreturn_t
siccuart_int_tx(int irq
, void *dev_id
)
566 struct SICC_info
*info
= dev_id
;
567 siccuart_tx_chars(info
);
571 static void siccuart_tasklet_action(unsigned long data
)
573 struct SICC_info
*info
= (struct SICC_info
*)data
;
574 struct tty_struct
*tty
;
577 if (!tty
|| !test_and_clear_bit(EVT_WRITE_WAKEUP
, &info
->event
))
580 if ((tty
->flags
& (1 << TTY_DO_WRITE_WAKEUP
)) &&
581 tty
->ldisc
.write_wakeup
)
582 (tty
->ldisc
.write_wakeup
)(tty
);
583 wake_up_interruptible(&tty
->write_wait
);
586 static int siccuart_startup(struct SICC_info
*info
)
592 if (info
->flags
& ASYNC_INITIALIZED
) {
596 page
= get_zeroed_page(GFP_KERNEL
);
600 if (info
->port
->uart_base
== 0)
601 info
->port
->uart_base
= (int)ioremap(info
->port
->uart_base_phys
, PAGE_SIZE
);
602 if (info
->port
->uart_base
== 0) {
607 /* lock access to info while doing setup */
608 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
613 info
->xmit
.buf
= (unsigned char *) page
;
617 if (info
->tty
->termios
->c_cflag
& CBAUD
)
618 info
->mctrl
= TIOCM_RTS
| TIOCM_DTR
;
619 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
622 * initialise the old status of the modem signals
624 info
->old_status
= 0; // UART_GET_FR(info->port) & AMBA_UARTFR_MODEM_ANY;
628 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
629 info
->xmit
.head
= info
->xmit
.tail
= 0;
632 * Set up the tty->alt_speed kludge
635 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_HI
)
636 info
->tty
->alt_speed
= 57600;
637 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_VHI
)
638 info
->tty
->alt_speed
= 115200;
639 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_SHI
)
640 info
->tty
->alt_speed
= 230400;
641 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_WARP
)
642 info
->tty
->alt_speed
= 460800;
646 writeb( 0x00, info
->port
->uart_base
+ BL_SICC_IrCR
); // disable IrDA
650 * and set the speed of the serial port
652 siccuart_change_speed(info
, 0);
654 // enable rx/tx ports
655 writeb(_RCR_ER_ENABLE
/*| _RCR_PME_HARD*/, info
->port
->uart_base
+ BL_SICC_RCR
);
656 writeb(_TxCR_ET_ENABLE
, info
->port
->uart_base
+ BL_SICC_TxCR
);
658 readb(info
->port
->uart_base
+ BL_SICC_RBR
); // clear rx port
660 writeb(0xf8, info
->port
->uart_base
+ BL_SICC_LSR
); /* reset bits 0-4 of LSR */
663 * Finally, enable interrupts
669 retval
= request_irq(info
->port
->irqrx
, siccuart_int_rx
, 0, "SICC rx", info
);
671 if (capable(CAP_SYS_ADMIN
)) {
673 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
678 retval
= request_irq(info
->port
->irqtx
, siccuart_int_tx
, 0, "SICC tx", info
);
680 if (capable(CAP_SYS_ADMIN
)) {
682 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
685 free_irq(info
->port
->irqrx
, info
);
689 siccuart_enable_rx_interrupt(info
);
691 info
->flags
|= ASYNC_INITIALIZED
;
692 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
697 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
702 * This routine will shutdown a serial port; interrupts are disabled, and
703 * DTR is dropped if the hangup on close termio flag is on.
705 static void siccuart_shutdown(struct SICC_info
*info
)
709 if (!(info
->flags
& ASYNC_INITIALIZED
))
712 /* lock while shutting down port */
713 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
); /* Disable interrupts */
716 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
717 * here so the queue might never be woken up
719 wake_up_interruptible(&info
->delta_msr_wait
);
722 * disable all interrupts, disable the port
724 siccuart_disable_rx_interrupt(info
);
725 siccuart_disable_tx_interrupt(info
);
730 free_irq(info
->port
->irqtx
, info
);
731 free_irq(info
->port
->irqrx
, info
);
733 if (info
->xmit
.buf
) {
734 unsigned long pg
= (unsigned long) info
->xmit
.buf
;
735 info
->xmit
.buf
= NULL
;
740 if (!info
->tty
|| (info
->tty
->termios
->c_cflag
& HUPCL
))
741 info
->mctrl
&= ~(TIOCM_DTR
|TIOCM_RTS
);
742 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
744 /* kill off our tasklet */
745 tasklet_kill(&info
->tlet
);
747 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
749 info
->flags
&= ~ASYNC_INITIALIZED
;
751 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
755 static void siccuart_change_speed(struct SICC_info
*info
, struct termios
*old_termios
)
757 unsigned int lcr_h
, baud
, quot
, cflag
, old_rcr
, old_tcr
, bits
;
760 if (!info
->tty
|| !info
->tty
->termios
)
763 cflag
= info
->tty
->termios
->c_cflag
;
765 pr_debug("siccuart_set_cflag(0x%x) called\n", cflag
);
766 /* byte size and parity */
767 switch (cflag
& CSIZE
) {
768 case CS7
: lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_7_BITS
| _LCR_SB_1_BIT
; bits
= 9; break;
769 default: lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_8_BITS
| _LCR_SB_1_BIT
; bits
= 10; break; // CS8
771 if (cflag
& CSTOPB
) {
772 lcr_h
|= _LCR_SB_2_BIT
;
775 if (cflag
& PARENB
) {
776 lcr_h
|= _LCR_PE_ENABLE
;
778 if (!(cflag
& PARODD
))
779 lcr_h
|= _LCR_PTY_ODD
;
781 lcr_h
|= _LCR_PTY_EVEN
;
785 /* Determine divisor based on baud rate */
786 baud
= tty_get_baud_rate(info
->tty
);
792 // here is ppc403SetBaud(com_port, baud);
793 unsigned long divisor
, clockSource
, temp
;
795 /* Ensure CICCR[7] is 0 to select Internal Baud Clock */
796 powerpcMtcic_cr((unsigned long)(powerpcMfcic_cr() & 0xFEFFFFFF));
798 /* Determine Internal Baud Clock Frequency */
799 /* powerpcMfclkgpcr() reads DCR 0x120 - the*/
800 /* SCCR (Serial Clock Control Register) on Vesta */
801 temp
= powerpcMfclkgpcr();
803 if(temp
& 0x00000080) {
804 clockSource
= 324000000;
807 clockSource
= 216000000;
809 clockSource
= clockSource
/(unsigned long)((temp
&0x00FC0000)>>18);
810 divisor
= clockSource
/(16*baud
) - 1;
811 /* divisor has only 12 bits of resolution */
812 if(divisor
>0x00000FFF){
820 ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_CUST
))
821 quot
= info
->state
->custom_divisor
;
823 if (!quot
&& old_termios
) {
824 info
->tty
->termios
->c_cflag
&= ~CBAUD
;
825 info
->tty
->termios
->c_cflag
|= (old_termios
->c_cflag
& CBAUD
);
828 } while (quot
== 0 && old_termios
);
830 /* As a last resort, if the quotient is zero, default to 9600 bps */
832 quot
= (info
->port
->uartclk
/ (16 * 9600)) - 1;
834 info
->timeout
= info
->port
->fifosize
* HZ
* bits
/ baud
;
835 info
->timeout
+= HZ
/50; /* Add .02 seconds of slop */
838 info
->flags
|= ASYNC_CTS_FLOW
;
840 info
->flags
&= ~ASYNC_CTS_FLOW
;
842 info
->flags
&= ~ASYNC_CHECK_CD
;
844 info
->flags
|= ASYNC_CHECK_CD
;
847 * Set up parity check flag
849 #define RELEVENT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
851 info
->read_status_mask
= _LSR_OE_MASK
;
852 if (I_INPCK(info
->tty
))
853 info
->read_status_mask
|= _LSR_FE_MASK
| _LSR_PE_MASK
;
854 if (I_BRKINT(info
->tty
) || I_PARMRK(info
->tty
))
855 info
->read_status_mask
|= _LSR_LB_MASK
;
858 * Characters to ignore
860 info
->ignore_status_mask
= 0;
861 if (I_IGNPAR(info
->tty
))
862 info
->ignore_status_mask
|= _LSR_FE_MASK
| _LSR_PE_MASK
;
863 if (I_IGNBRK(info
->tty
)) {
864 info
->ignore_status_mask
|= _LSR_LB_MASK
;
866 * If we're ignoring parity and break indicators,
867 * ignore overruns to (for real raw support).
869 if (I_IGNPAR(info
->tty
))
870 info
->ignore_status_mask
|= _LSR_OE_MASK
;
873 /* disable interrupts while reading and clearing registers */
874 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
876 old_rcr
= readb(info
->port
->uart_base
+ BL_SICC_RCR
);
877 old_tcr
= readb(info
->port
->uart_base
+ BL_SICC_TxCR
);
880 writeb(0, info
->port
->uart_base
+ BL_SICC_RCR
);
881 writeb(0, info
->port
->uart_base
+ BL_SICC_TxCR
);
883 /*RLBtrace (&ppc403Chan0, 0x2000000c, 0, 0);*/
886 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
890 writeb((quot
& 0x00000F00)>>8, info
->port
->uart_base
+ BL_SICC_BRDH
);
891 writeb( quot
& 0x00000FF, info
->port
->uart_base
+ BL_SICC_BRDL
);
893 /* Set CTL2 reg to use external clock (ExtClk) and enable FIFOs. */
894 /* For now, do NOT use FIFOs since 403 UART did not have this */
895 /* capability and this driver was inherited from 403UART. */
896 writeb(_CTL2_EXTERN
, info
->port
->uart_base
+ BL_SICC_CTL2
);
898 writeb(lcr_h
, info
->port
->uart_base
+ BL_SICC_LCR
);
900 writeb(old_rcr
, info
->port
->uart_base
+ BL_SICC_RCR
); // restore rcr
901 writeb(old_tcr
, info
->port
->uart_base
+ BL_SICC_TxCR
); // restore txcr
906 static void siccuart_put_char(struct tty_struct
*tty
, u_char ch
)
908 struct SICC_info
*info
= tty
->driver_data
;
911 if (!tty
|| !info
->xmit
.buf
)
914 /* lock info->xmit while adding character to tx buffer */
915 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
916 if (CIRC_SPACE(info
->xmit
.head
, info
->xmit
.tail
, SICC_XMIT_SIZE
) != 0) {
917 info
->xmit
.buf
[info
->xmit
.head
] = ch
;
918 info
->xmit
.head
= (info
->xmit
.head
+ 1) & (SICC_XMIT_SIZE
- 1);
920 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
923 static void siccuart_flush_chars(struct tty_struct
*tty
)
925 struct SICC_info
*info
= tty
->driver_data
;
928 if (info
->xmit
.head
== info
->xmit
.tail
934 /* disable interrupts while transmitting characters */
935 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
936 siccuart_enable_tx_interrupt(info
);
937 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
940 static int siccuart_write(struct tty_struct
*tty
,
941 const u_char
* buf
, int count
)
943 struct SICC_info
*info
= tty
->driver_data
;
947 if (!tty
|| !info
->xmit
.buf
|| !tmp_buf
)
950 /* lock info->xmit while removing characters from buffer */
951 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
953 c
= CIRC_SPACE_TO_END(info
->xmit
.head
,
960 memcpy(info
->xmit
.buf
+ info
->xmit
.head
, buf
, c
);
961 info
->xmit
.head
= (info
->xmit
.head
+ c
) &
962 (SICC_XMIT_SIZE
- 1);
967 if (info
->xmit
.head
!= info
->xmit
.tail
970 siccuart_enable_tx_interrupt(info
);
971 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
975 static int siccuart_write_room(struct tty_struct
*tty
)
977 struct SICC_info
*info
= tty
->driver_data
;
979 return CIRC_SPACE(info
->xmit
.head
, info
->xmit
.tail
, SICC_XMIT_SIZE
);
982 static int siccuart_chars_in_buffer(struct tty_struct
*tty
)
984 struct SICC_info
*info
= tty
->driver_data
;
986 return CIRC_CNT(info
->xmit
.head
, info
->xmit
.tail
, SICC_XMIT_SIZE
);
989 static void siccuart_flush_buffer(struct tty_struct
*tty
)
991 struct SICC_info
*info
= tty
->driver_data
;
994 pr_debug("siccuart_flush_buffer(%d) called\n", tty
->index
);
995 /* lock info->xmit while zeroing buffer counts */
996 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
997 info
->xmit
.head
= info
->xmit
.tail
= 0;
998 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
999 wake_up_interruptible(&tty
->write_wait
);
1000 if ((tty
->flags
& (1 << TTY_DO_WRITE_WAKEUP
)) &&
1001 tty
->ldisc
.write_wakeup
)
1002 (tty
->ldisc
.write_wakeup
)(tty
);
1006 * This function is used to send a high-priority XON/XOFF character to
1009 static void siccuart_send_xchar(struct tty_struct
*tty
, char ch
)
1011 struct SICC_info
*info
= tty
->driver_data
;
1015 siccuart_enable_tx_interrupt(info
);
1018 static void siccuart_throttle(struct tty_struct
*tty
)
1020 struct SICC_info
*info
= tty
->driver_data
;
1021 unsigned long flags
;
1024 siccuart_send_xchar(tty
, STOP_CHAR(tty
));
1026 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1027 /* disable interrupts while setting modem control lines */
1028 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1029 info
->mctrl
&= ~TIOCM_RTS
;
1030 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1031 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1035 static void siccuart_unthrottle(struct tty_struct
*tty
)
1037 struct SICC_info
*info
= (struct SICC_info
*) tty
->driver_data
;
1038 unsigned long flags
;
1044 siccuart_send_xchar(tty
, START_CHAR(tty
));
1047 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1048 /* disable interrupts while setting modem control lines */
1049 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1050 info
->mctrl
|= TIOCM_RTS
;
1051 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1052 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1056 static int get_serial_info(struct SICC_info
*info
, struct serial_struct
*retinfo
)
1058 struct SICC_state
*state
= info
->state
;
1059 struct SICC_port
*port
= info
->port
;
1060 struct serial_struct tmp
;
1062 memset(&tmp
, 0, sizeof(tmp
));
1064 tmp
.line
= state
->line
;
1065 tmp
.port
= port
->uart_base
;
1066 if (HIGH_BITS_OFFSET
)
1067 tmp
.port_high
= port
->uart_base
>> HIGH_BITS_OFFSET
;
1068 tmp
.irq
= port
->irqrx
;
1070 tmp
.xmit_fifo_size
= port
->fifosize
;
1071 tmp
.baud_base
= port
->uartclk
/ 16;
1072 tmp
.close_delay
= state
->close_delay
;
1073 tmp
.closing_wait
= state
->closing_wait
;
1074 tmp
.custom_divisor
= state
->custom_divisor
;
1076 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
1081 static int set_serial_info(struct SICC_info
*info
,
1082 struct serial_struct
*newinfo
)
1084 struct serial_struct new_serial
;
1085 struct SICC_state
*state
, old_state
;
1086 struct SICC_port
*port
;
1087 unsigned long new_port
;
1088 unsigned int i
, change_irq
, change_port
;
1091 if (copy_from_user(&new_serial
, newinfo
, sizeof(new_serial
)))
1094 state
= info
->state
;
1098 new_port
= new_serial
.port
;
1099 if (HIGH_BITS_OFFSET
)
1100 new_port
+= (unsigned long) new_serial
.port_high
<< HIGH_BITS_OFFSET
;
1102 change_irq
= new_serial
.irq
!= port
->irqrx
;
1103 change_port
= new_port
!= port
->uart_base
;
1105 if (!capable(CAP_SYS_ADMIN
)) {
1106 if (change_irq
|| change_port
||
1107 (new_serial
.baud_base
!= port
->uartclk
/ 16) ||
1108 (new_serial
.close_delay
!= state
->close_delay
) ||
1109 (new_serial
.xmit_fifo_size
!= port
->fifosize
) ||
1110 ((new_serial
.flags
& ~ASYNC_USR_MASK
) !=
1111 (state
->flags
& ~ASYNC_USR_MASK
)))
1113 state
->flags
= ((state
->flags
& ~ASYNC_USR_MASK
) |
1114 (new_serial
.flags
& ASYNC_USR_MASK
));
1115 info
->flags
= ((info
->flags
& ~ASYNC_USR_MASK
) |
1116 (new_serial
.flags
& ASYNC_USR_MASK
));
1117 state
->custom_divisor
= new_serial
.custom_divisor
;
1118 goto check_and_exit
;
1121 if ((new_serial
.irq
>= NR_IRQS
) || (new_serial
.irq
< 0) ||
1122 (new_serial
.baud_base
< 9600))
1125 if (new_serial
.type
&& change_port
) {
1126 for (i
= 0; i
< SERIAL_SICC_NR
; i
++)
1127 if ((port
!= sicc_ports
+ i
) &&
1128 sicc_ports
[i
].uart_base
!= new_port
)
1132 if ((change_port
|| change_irq
) && (state
->count
> 1))
1136 * OK, past this point, all the error checking has been done.
1137 * At this point, we start making changes.....
1139 port
->uartclk
= new_serial
.baud_base
* 16;
1140 state
->flags
= ((state
->flags
& ~ASYNC_FLAGS
) |
1141 (new_serial
.flags
& ASYNC_FLAGS
));
1142 info
->flags
= ((state
->flags
& ~ASYNC_INTERNAL_FLAGS
) |
1143 (info
->flags
& ASYNC_INTERNAL_FLAGS
));
1144 state
->custom_divisor
= new_serial
.custom_divisor
;
1145 state
->close_delay
= msecs_to_jiffies(10 * new_serial
.close_delay
);
1146 state
->closing_wait
= msecs_to_jiffies(10 * new_serial
.closing_wait
);
1147 info
->tty
->low_latency
= (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
1148 port
->fifosize
= new_serial
.xmit_fifo_size
;
1150 if (change_port
|| change_irq
) {
1152 * We need to shutdown the serial port at the old
1153 * port/irq combination.
1155 siccuart_shutdown(info
);
1156 port
->irqrx
= new_serial
.irq
;
1157 port
->uart_base
= new_port
;
1161 if (!port
->uart_base
)
1163 if (info
->flags
& ASYNC_INITIALIZED
) {
1164 if ((old_state
.flags
& ASYNC_SPD_MASK
) !=
1165 (state
->flags
& ASYNC_SPD_MASK
) ||
1166 (old_state
.custom_divisor
!= state
->custom_divisor
)) {
1167 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_HI
)
1168 info
->tty
->alt_speed
= 57600;
1169 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_VHI
)
1170 info
->tty
->alt_speed
= 115200;
1171 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_SHI
)
1172 info
->tty
->alt_speed
= 230400;
1173 if ((state
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_WARP
)
1174 info
->tty
->alt_speed
= 460800;
1175 siccuart_change_speed(info
, NULL
);
1178 retval
= siccuart_startup(info
);
1184 * get_lsr_info - get line status register info
1186 static int get_lsr_info(struct SICC_info
*info
, unsigned int *value
)
1188 unsigned int result
, status
;
1189 unsigned long flags
;
1191 /* disable interrupts while reading status from port */
1192 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1193 status
= readb(info
->port
->uart_base
+ BL_SICC_LSR
);
1194 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1195 result
= status
& _LSR_TSR_EMPTY
? TIOCSER_TEMT
: 0;
1198 * If we're about to load something into the transmit
1199 * register, we'll pretend the transmitter isn't empty to
1200 * avoid a race condition (depending on when the transmit
1201 * interrupt happens).
1204 ((CIRC_CNT(info
->xmit
.head
, info
->xmit
.tail
,
1205 SICC_XMIT_SIZE
) > 0) &&
1206 !info
->tty
->stopped
&& !info
->tty
->hw_stopped
))
1207 result
&= TIOCSER_TEMT
;
1209 return put_user(result
, value
);
1212 static int get_modem_info(struct SICC_info
*info
, unsigned int *value
)
1214 unsigned int result
= info
->mctrl
;
1216 return put_user(result
, value
);
1219 static int set_modem_info(struct SICC_info
*info
, unsigned int cmd
,
1220 unsigned int *value
)
1222 unsigned int arg
, old
;
1223 unsigned long flags
;
1225 if (get_user(arg
, value
))
1235 info
->mctrl
&= ~arg
;
1245 /* disable interrupts while setting modem control lines */
1246 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1247 if (old
!= info
->mctrl
)
1248 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1249 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1253 static void siccuart_break_ctl(struct tty_struct
*tty
, int break_state
)
1255 struct SICC_info
*info
= tty
->driver_data
;
1256 unsigned long flags
;
1260 /* disable interrupts while setting break state */
1261 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1262 lcr_h
= readb(info
->port
+ BL_SICC_LSR
);
1263 if (break_state
== -1)
1264 lcr_h
|= _LSR_LB_MASK
;
1266 lcr_h
&= ~_LSR_LB_MASK
;
1267 writeb(lcr_h
, info
->port
+ BL_SICC_LSRS
);
1268 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1271 static int siccuart_ioctl(struct tty_struct
*tty
, struct file
*file
,
1272 unsigned int cmd
, unsigned long arg
)
1274 struct SICC_info
*info
= tty
->driver_data
;
1275 struct SICC_icount cnow
;
1276 struct serial_icounter_struct icount
;
1277 unsigned long flags
;
1279 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1280 (cmd
!= TIOCSERCONFIG
) && (cmd
!= TIOCSERGSTRUCT
) &&
1281 (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
1282 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1288 return get_modem_info(info
, (unsigned int *)arg
);
1292 return set_modem_info(info
, cmd
, (unsigned int *)arg
);
1294 return get_serial_info(info
,
1295 (struct serial_struct
*)arg
);
1297 return set_serial_info(info
,
1298 (struct serial_struct
*)arg
);
1299 case TIOCSERGETLSR
: /* Get line status register */
1300 return get_lsr_info(info
, (unsigned int *)arg
);
1302 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1303 * - mask passed in arg for lines of interest
1304 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1305 * Caller should use TIOCGICOUNT to see which one it was
1310 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1311 * Return: write counters to the user passed counter struct
1312 * NB: both 1->0 and 0->1 transitions are counted except for
1313 * RI where only 0->1 is counted.
1316 /* disable interrupts while getting interrupt count */
1317 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1318 cnow
= info
->state
->icount
;
1319 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1320 icount
.cts
= cnow
.cts
;
1321 icount
.dsr
= cnow
.dsr
;
1322 icount
.rng
= cnow
.rng
;
1323 icount
.dcd
= cnow
.dcd
;
1324 icount
.rx
= cnow
.rx
;
1325 icount
.tx
= cnow
.tx
;
1326 icount
.frame
= cnow
.frame
;
1327 icount
.overrun
= cnow
.overrun
;
1328 icount
.parity
= cnow
.parity
;
1329 icount
.brk
= cnow
.brk
;
1330 icount
.buf_overrun
= cnow
.buf_overrun
;
1332 return copy_to_user((void *)arg
, &icount
, sizeof(icount
))
1336 return -ENOIOCTLCMD
;
1341 static void siccuart_set_termios(struct tty_struct
*tty
, struct termios
*old_termios
)
1343 struct SICC_info
*info
= tty
->driver_data
;
1344 unsigned long flags
;
1345 unsigned int cflag
= tty
->termios
->c_cflag
;
1347 if ((cflag
^ old_termios
->c_cflag
) == 0 &&
1348 RELEVENT_IFLAG(tty
->termios
->c_iflag
^ old_termios
->c_iflag
) == 0)
1351 siccuart_change_speed(info
, old_termios
);
1353 /* Handle transition to B0 status */
1354 if ((old_termios
->c_cflag
& CBAUD
) &&
1356 /* disable interrupts while setting break state */
1357 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1358 info
->mctrl
&= ~(TIOCM_RTS
| TIOCM_DTR
);
1359 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1360 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1363 /* Handle transition away from B0 status */
1364 if (!(old_termios
->c_cflag
& CBAUD
) &&
1366 /* disable interrupts while setting break state */
1367 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1368 info
->mctrl
|= TIOCM_DTR
;
1369 if (!(cflag
& CRTSCTS
) ||
1370 !test_bit(TTY_THROTTLED
, &tty
->flags
))
1371 info
->mctrl
|= TIOCM_RTS
;
1372 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1373 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1376 /* Handle turning off CRTSCTS */
1377 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1378 !(cflag
& CRTSCTS
)) {
1379 tty
->hw_stopped
= 0;
1380 siccuart_start(tty
);
1385 * No need to wake up processes in open wait, since they
1386 * sample the CLOCAL flag once, and don't recheck it.
1387 * XXX It's not clear whether the current behavior is correct
1388 * or not. Hence, this may change.....
1390 if (!(old_termios
->c_cflag
& CLOCAL
) &&
1391 (tty
->termios
->c_cflag
& CLOCAL
))
1392 wake_up_interruptible(&info
->open_wait
);
1396 static void siccuart_close(struct tty_struct
*tty
, struct file
*filp
)
1398 struct SICC_info
*info
= tty
->driver_data
;
1399 struct SICC_state
*state
;
1400 unsigned long flags
;
1405 state
= info
->state
;
1407 //pr_debug("siccuart_close() called\n");
1409 /* lock tty->driver_data while closing port */
1410 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1412 if (tty_hung_up_p(filp
)) {
1416 if ((tty
->count
== 1) && (state
->count
!= 1)) {
1418 * Uh, oh. tty->count is 1, which means that the tty
1419 * structure will be freed. state->count should always
1420 * be one in these conditions. If it's greater than
1421 * one, we've got real problems, since it means the
1422 * serial port won't be shutdown.
1424 printk("siccuart_close: bad serial port count; tty->count is 1, state->count is %d\n", state
->count
);
1427 if (--state
->count
< 0) {
1428 printk("rs_close: bad serial port count for %s: %d\n", tty
->name
, state
->count
);
1434 info
->flags
|= ASYNC_CLOSING
;
1435 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1437 * Now we wait for the transmit buffer to clear; and we notify
1438 * the line discipline to only process XON/XOFF characters.
1441 if (info
->state
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1442 tty_wait_until_sent(tty
, info
->state
->closing_wait
);
1444 * At this point, we stop accepting input. To do this, we
1445 * disable the receive line status interrupts.
1447 if (info
->flags
& ASYNC_INITIALIZED
) {
1448 siccuart_disable_rx_interrupt(info
);
1450 * Before we drop DTR, make sure the UART transmitter
1451 * has completely drained; this is especially
1452 * important if there is a transmit FIFO!
1454 siccuart_wait_until_sent(tty
, info
->timeout
);
1456 siccuart_shutdown(info
);
1457 if (tty
->driver
->flush_buffer
)
1458 tty
->driver
->flush_buffer(tty
);
1459 if (tty
->ldisc
.flush_buffer
)
1460 tty
->ldisc
.flush_buffer(tty
);
1464 if (info
->blocked_open
) {
1465 if (info
->state
->close_delay
)
1466 schedule_timeout_interruptible(info
->state
->close_delay
);
1467 wake_up_interruptible(&info
->open_wait
);
1469 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
1470 wake_up_interruptible(&info
->close_wait
);
1474 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1478 static void siccuart_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1480 struct SICC_info
*info
= (struct SICC_info
*) tty
->driver_data
;
1481 unsigned long char_time
, expire
;
1483 if (info
->port
->fifosize
== 0)
1487 * Set the check interval to be 1/5 of the estimated time to
1488 * send a single character, and make it at least 1. The check
1489 * interval should also be less than the timeout.
1491 * Note: we have to use pretty tight timings here to satisfy
1494 char_time
= (info
->timeout
- msecs_to_jiffies(20)) / info
->port
->fifosize
;
1495 char_time
= char_time
/ 5;
1499 // Crazy!! sometimes the input arg 'timeout' can be negtive numbers :-(
1500 if (timeout
>= 0 && timeout
< char_time
)
1501 char_time
= timeout
;
1503 * If the transmitter hasn't cleared in twice the approximate
1504 * amount of time to send the entire FIFO, it probably won't
1505 * ever clear. This assumes the UART isn't doing flow
1506 * control, which is currently the case. Hence, if it ever
1507 * takes longer than info->timeout, this is probably due to a
1508 * UART bug of some kind. So, we clamp the timeout parameter at
1511 if (!timeout
|| timeout
> 2 * info
->timeout
)
1512 timeout
= 2 * info
->timeout
;
1514 expire
= jiffies
+ timeout
;
1515 pr_debug("siccuart_wait_until_sent(%d), jiff=%lu, expire=%lu char_time=%lu...\n",
1516 tty
->index
, jiffies
,
1518 while ((readb(info
->port
->uart_base
+ BL_SICC_LSR
) & _LSR_TX_ALL
) != _LSR_TX_ALL
) {
1519 schedule_timeout_interruptible(char_time
);
1520 if (signal_pending(current
))
1522 if (timeout
&& time_after(jiffies
, expire
))
1525 set_current_state(TASK_RUNNING
);
1528 static void siccuart_hangup(struct tty_struct
*tty
)
1530 struct SICC_info
*info
= tty
->driver_data
;
1531 struct SICC_state
*state
= info
->state
;
1533 siccuart_flush_buffer(tty
);
1534 if (info
->flags
& ASYNC_CLOSING
)
1536 siccuart_shutdown(info
);
1539 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
1541 wake_up_interruptible(&info
->open_wait
);
1544 static int block_til_ready(struct tty_struct
*tty
, struct file
*filp
,
1545 struct SICC_info
*info
)
1547 DECLARE_WAITQUEUE(wait
, current
);
1548 struct SICC_state
*state
= info
->state
;
1549 unsigned long flags
;
1550 int do_clocal
= 0, extra_count
= 0, retval
;
1553 * If the device is in the middle of being closed, then block
1554 * until it's done, and then try again.
1556 if (tty_hung_up_p(filp
) ||
1557 (info
->flags
& ASYNC_CLOSING
)) {
1558 if (info
->flags
& ASYNC_CLOSING
)
1559 interruptible_sleep_on(&info
->close_wait
);
1560 return (info
->flags
& ASYNC_HUP_NOTIFY
) ?
1561 -EAGAIN
: -ERESTARTSYS
;
1565 * If non-blocking mode is set, or the port is not enabled,
1566 * then make the check up front and then exit.
1568 if ((filp
->f_flags
& O_NONBLOCK
) ||
1569 (tty
->flags
& (1 << TTY_IO_ERROR
))) {
1570 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
1574 if (tty
->termios
->c_cflag
& CLOCAL
)
1578 * Block waiting for the carrier detect and the line to become
1579 * free (i.e., not in use by the callout). While we are in
1580 * this loop, state->count is dropped by one, so that
1581 * rs_close() knows when to free things. We restore it upon
1582 * exit, either normal or abnormal.
1585 add_wait_queue(&info
->open_wait
, &wait
);
1586 /* lock while decrementing state->count */
1587 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1588 if (!tty_hung_up_p(filp
)) {
1592 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1593 info
->blocked_open
++;
1595 /* disable interrupts while setting modem control lines */
1596 spin_lock_irqsave(&info
->state
->sicc_lock
,flags
);
1597 if (tty
->termios
->c_cflag
& CBAUD
) {
1598 info
->mctrl
= TIOCM_DTR
| TIOCM_RTS
;
1599 info
->port
->set_mctrl(info
->port
, info
->mctrl
);
1601 spin_unlock_irqrestore(&info
->state
->sicc_lock
,flags
);
1602 set_current_state(TASK_INTERRUPTIBLE
);
1603 if (tty_hung_up_p(filp
) ||
1604 !(info
->flags
& ASYNC_INITIALIZED
)) {
1605 if (info
->flags
& ASYNC_HUP_NOTIFY
)
1608 retval
= -ERESTARTSYS
;
1611 if (!(info
->flags
& ASYNC_CLOSING
) &&
1612 (do_clocal
/*|| (UART_GET_FR(info->port) & SICC_UARTFR_DCD)*/))
1614 if (signal_pending(current
)) {
1615 retval
= -ERESTARTSYS
;
1620 set_current_state(TASK_RUNNING
);
1621 remove_wait_queue(&info
->open_wait
, &wait
);
1624 info
->blocked_open
--;
1627 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
1631 static struct SICC_info
*siccuart_get(int line
)
1633 struct SICC_info
*info
;
1634 struct SICC_state
*state
= sicc_state
+ line
;
1639 info
= kzalloc(sizeof(struct SICC_info
), GFP_KERNEL
);
1641 init_waitqueue_head(&info
->open_wait
);
1642 init_waitqueue_head(&info
->close_wait
);
1643 init_waitqueue_head(&info
->delta_msr_wait
);
1644 info
->flags
= state
->flags
;
1645 info
->state
= state
;
1646 info
->port
= sicc_ports
+ line
;
1647 tasklet_init(&info
->tlet
, siccuart_tasklet_action
,
1648 (unsigned long)info
);
1658 static int siccuart_open(struct tty_struct
*tty
, struct file
*filp
)
1660 struct SICC_info
*info
;
1661 int retval
, line
= tty
->index
;
1664 // is this a line that we've got?
1665 if (line
>= SERIAL_SICC_NR
) {
1669 info
= siccuart_get(line
);
1673 tty
->driver_data
= info
;
1675 info
->tty
->low_latency
= (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
1678 * Make sure we have the temporary buffer allocated
1681 unsigned long page
= get_zeroed_page(GFP_KERNEL
);
1687 tmp_buf
= (u_char
*)page
;
1691 * If the port is in the middle of closing, bail out now.
1693 if (tty_hung_up_p(filp
) ||
1694 (info
->flags
& ASYNC_CLOSING
)) {
1695 if (info
->flags
& ASYNC_CLOSING
)
1696 interruptible_sleep_on(&info
->close_wait
);
1701 * Start up the serial port
1703 retval
= siccuart_startup(info
);
1708 retval
= block_til_ready(tty
, filp
, info
);
1713 #ifdef CONFIG_SERIAL_SICC_CONSOLE
1714 if (siccuart_cons
.cflag
&& siccuart_cons
.index
== line
) {
1715 tty
->termios
->c_cflag
= siccuart_cons
.cflag
;
1716 siccuart_cons
.cflag
= 0;
1717 siccuart_change_speed(info
, NULL
);
1723 static const struct tty_operations sicc_ops
= {
1724 .open
= siccuart_open
,
1725 .close
= siccuart_close
,
1726 .write
= siccuart_write
,
1727 .put_char
= siccuart_put_char
,
1728 .flush_chars
= siccuart_flush_chars
,
1729 .write_room
= siccuart_write_room
,
1730 .chars_in_buffer
= siccuart_chars_in_buffer
,
1731 .flush_buffer
= siccuart_flush_buffer
,
1732 .ioctl
= siccuart_ioctl
,
1733 .throttle
= siccuart_throttle
,
1734 .unthrottle
= siccuart_unthrottle
,
1735 .send_xchar
= siccuart_send_xchar
,
1736 .set_termios
= siccuart_set_termios
,
1737 .stop
= siccuart_stop
,
1738 .start
= siccuart_start
,
1739 .hangup
= siccuart_hangup
,
1740 .break_ctl
= siccuart_break_ctl
,
1741 .wait_until_sent
= siccuart_wait_until_sent
,
1744 int __init
siccuart_init(void)
1747 siccnormal_driver
= alloc_tty_driver(SERIAL_SICC_NR
);
1748 if (!siccnormal_driver
)
1750 printk("IBM Vesta SICC serial port driver V 0.1 by Yudong Yang and Yi Ge / IBM CRL .\n");
1751 siccnormal_driver
->driver_name
= "serial_sicc";
1752 siccnormal_driver
->owner
= THIS_MODULE
;
1753 siccnormal_driver
->name
= SERIAL_SICC_NAME
;
1754 siccnormal_driver
->major
= SERIAL_SICC_MAJOR
;
1755 siccnormal_driver
->minor_start
= SERIAL_SICC_MINOR
;
1756 siccnormal_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1757 siccnormal_driver
->subtype
= SERIAL_TYPE_NORMAL
;
1758 siccnormal_driver
->init_termios
= tty_std_termios
;
1759 siccnormal_driver
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1760 siccnormal_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
;
1761 tty_set_operations(siccnormal_driver
, &sicc_ops
);
1763 if (tty_register_driver(siccnormal_driver
))
1764 panic("Couldn't register SICC serial driver\n");
1766 for (i
= 0; i
< SERIAL_SICC_NR
; i
++) {
1767 struct SICC_state
*state
= sicc_state
+ i
;
1769 state
->close_delay
= msecs_to_jiffies(500);
1770 state
->closing_wait
= 30 * HZ
;
1771 spin_lock_init(&state
->sicc_lock
);
1778 __initcall(siccuart_init
);
1780 #ifdef CONFIG_SERIAL_SICC_CONSOLE
1781 /************** console driver *****************/
1784 * This code is currently never used; console->read is never called.
1785 * Therefore, although we have an implementation, we don't use it.
1786 * FIXME: the "const char *s" should be fixed to "char *s" some day.
1787 * (when the definition in include/linux/console.h is also fixed)
1789 #ifdef used_and_not_const_char_pointer
1790 static int siccuart_console_read(struct console
*co
, const char *s
, u_int count
)
1792 struct SICC_port
*port
= &sicc_ports
[co
->index
];
1793 unsigned int status
;
1797 pr_debug("siccuart_console_read() called\n");
1802 if(readb(port
->uart_base
+ BL_SICC_LSR
) & _LSR_RBR_FULL
) {
1803 *w
++ = readb(port
->uart_base
+ BL_SICC_RBR
);
1806 // nothing more to get, return
1816 * Print a string to the serial port trying not to disturb
1817 * any possible real use of the port...
1819 * The console_lock must be held when we get here.
1821 static void siccuart_console_write(struct console
*co
, const char *s
, u_int count
)
1823 struct SICC_port
*port
= &sicc_ports
[co
->index
];
1824 unsigned int old_cr
;
1828 * First save the CR then disable the interrupts
1830 old_cr
= readb(port
->uart_base
+ BL_SICC_TxCR
);
1831 writeb(old_cr
& ~_TxCR_DME_MASK
, port
->uart_base
+ BL_SICC_TxCR
);
1834 * Now, do each character
1836 for (i
= 0; i
< count
; i
++) {
1837 while ((readb(port
->uart_base
+ BL_SICC_LSR
)&_LSR_TX_ALL
) != _LSR_TX_ALL
);
1838 writeb(s
[i
], port
->uart_base
+ BL_SICC_TBR
);
1840 while ((readb(port
->uart_base
+ BL_SICC_LSR
)&_LSR_TX_ALL
) != _LSR_TX_ALL
);
1841 writeb('\r', port
->uart_base
+ BL_SICC_TBR
);
1846 * Finally, wait for transmitter to become empty
1847 * and restore the TCR
1849 while ((readb(port
->uart_base
+ BL_SICC_LSR
)&_LSR_TX_ALL
) != _LSR_TX_ALL
);
1850 writeb(old_cr
, port
->uart_base
+ BL_SICC_TxCR
);
1854 * Receive character from the serial port
1856 static int siccuart_console_wait_key(struct console
*co
)
1858 struct SICC_port
*port
= &sicc_ports
[co
->index
];
1861 while(!(readb(port
->uart_base
+ BL_SICC_LSR
) & _LSR_RBR_FULL
));
1862 c
= readb(port
->uart_base
+ BL_SICC_RBR
);
1866 static struct tty_driver
*siccuart_console_device(struct console
*c
, int *index
)
1869 return siccnormal_driver
;
1872 static int __init
siccuart_console_setup(struct console
*co
, char *options
)
1874 struct SICC_port
*port
;
1878 u_int cflag
= CREAD
| HUPCL
| CLOCAL
;
1882 if (co
->index
>= SERIAL_SICC_NR
)
1885 port
= &sicc_ports
[co
->index
];
1887 if (port
->uart_base
== 0)
1888 port
->uart_base
= (int)ioremap(port
->uart_base_phys
, PAGE_SIZE
);
1892 baud
= simple_strtoul(s
, NULL
, 10);
1893 while (*s
>= '0' && *s
<= '9')
1895 if (*s
) parity
= *s
++;
1896 if (*s
) bits
= *s
- '0';
1900 * Now construct a cflag setting.
1903 case 1200: cflag
|= B1200
; break;
1904 case 2400: cflag
|= B2400
; break;
1905 case 4800: cflag
|= B4800
; break;
1906 default: cflag
|= B9600
; baud
= 9600; break;
1907 case 19200: cflag
|= B19200
; break;
1908 case 38400: cflag
|= B38400
; break;
1909 case 57600: cflag
|= B57600
; break;
1910 case 115200: cflag
|= B115200
; break;
1913 case 7: cflag
|= CS7
; lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_7_BITS
| _LCR_SB_1_BIT
; break;
1914 default: cflag
|= CS8
; lcr_h
= _LCR_PE_DISABLE
| _LCR_DB_8_BITS
| _LCR_SB_1_BIT
; break;
1918 case 'O': cflag
|= PARODD
; lcr_h
|= _LCR_PTY_ODD
; break;
1920 case 'E': cflag
|= PARENB
; lcr_h
|= _LCR_PE_ENABLE
| _LCR_PTY_ODD
; break;
1927 // a copy of is inserted here ppc403SetBaud(com_port, (int)9600);
1928 unsigned long divisor
, clockSource
, temp
;
1929 unsigned int rate
= baud
;
1931 /* Ensure CICCR[7] is 0 to select Internal Baud Clock */
1932 powerpcMtcic_cr((unsigned long)(powerpcMfcic_cr() & 0xFEFFFFFF));
1934 /* Determine Internal Baud Clock Frequency */
1935 /* powerpcMfclkgpcr() reads DCR 0x120 - the*/
1936 /* SCCR (Serial Clock Control Register) on Vesta */
1937 temp
= powerpcMfclkgpcr();
1939 if(temp
& 0x00000080) {
1940 clockSource
= 324000000;
1943 clockSource
= 216000000;
1945 clockSource
= clockSource
/(unsigned long)((temp
&0x00FC0000)>>18);
1946 divisor
= clockSource
/(16*rate
) - 1;
1947 /* divisor has only 12 bits of resolution */
1948 if(divisor
>0x00000FFF){
1955 writeb((quot
& 0x00000F00)>>8, port
->uart_base
+ BL_SICC_BRDH
);
1956 writeb( quot
& 0x00000FF, port
->uart_base
+ BL_SICC_BRDL
);
1958 /* Set CTL2 reg to use external clock (ExtClk) and enable FIFOs. */
1959 /* For now, do NOT use FIFOs since 403 UART did not have this */
1960 /* capability and this driver was inherited from 403UART. */
1961 writeb(_CTL2_EXTERN
, port
->uart_base
+ BL_SICC_CTL2
);
1963 writeb(lcr_h
, port
->uart_base
+ BL_SICC_LCR
);
1964 writeb(_RCR_ER_ENABLE
| _RCR_PME_HARD
, port
->uart_base
+ BL_SICC_RCR
);
1965 writeb( _TxCR_ET_ENABLE
, port
->uart_base
+ BL_SICC_TxCR
);
1967 // writeb(, info->port->uart_base + BL_SICC_RCR );
1969 * Transmitter Command Register: Transmitter enabled & DMA + TBR interrupt
1970 * + Transmitter Empty interrupt + Transmitter error interrupt disabled &
1971 * Stop mode when CTS active enabled & Transmit Break + Pattern Generation
1975 writeb( 0x00, port
->uart_base
+ BL_SICC_IrCR
); // disable IrDA
1977 readb(port
->uart_base
+ BL_SICC_RBR
);
1979 writeb(0xf8, port
->uart_base
+ BL_SICC_LSR
); /* reset bits 0-4 of LSR */
1981 /* we will enable the port as we need it */
1986 static struct console siccuart_cons
=
1988 .name
= SERIAL_SICC_NAME
,
1989 .write
= siccuart_console_write
,
1990 #ifdef used_and_not_const_char_pointer
1991 .read
= siccuart_console_read
,
1993 .device
= siccuart_console_device
,
1994 .wait_key
= siccuart_console_wait_key
,
1995 .setup
= siccuart_console_setup
,
1996 .flags
= CON_PRINTBUFFER
,
2000 void __init
sicc_console_init(void)
2002 register_console(&siccuart_cons
);
2005 #endif /* CONFIG_SERIAL_SICC_CONSOLE */