2 * mcfserial.c -- serial driver for ColdFire internal UARTS.
4 * Copyright (C) 1999-2003 Greg Ungerer <gerg@snapgear.com>
5 * Copyright (c) 2000-2001 Lineo, Inc. <www.lineo.com>
6 * Copyright (C) 2001-2002 SnapGear Inc. <www.snapgear.com>
8 * Based on code from 68332serial.c which was:
10 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
11 * Copyright (C) 1998 TSHG
12 * Copyright (c) 1999 Rt-Control Inc. <jeff@uclinux.org>
15 * 08/07/2003 Daniele Bellucci <bellucda@tiscali.it>
16 * some cleanups in mcfrs_write.
20 #include <linux/module.h>
21 #include <linux/errno.h>
22 #include <linux/signal.h>
23 #include <linux/sched.h>
24 #include <linux/timer.h>
25 #include <linux/wait.h>
26 #include <linux/interrupt.h>
27 #include <linux/tty.h>
28 #include <linux/tty_flip.h>
29 #include <linux/string.h>
30 #include <linux/fcntl.h>
32 #include <linux/kernel.h>
33 #include <linux/serial.h>
34 #include <linux/serialP.h>
35 #include <linux/console.h>
36 #include <linux/init.h>
37 #include <linux/bitops.h>
38 #include <linux/delay.h>
42 #include <asm/system.h>
43 #include <asm/semaphore.h>
44 #include <asm/delay.h>
45 #include <asm/coldfire.h>
46 #include <asm/mcfsim.h>
47 #include <asm/mcfuart.h>
48 #include <asm/nettel.h>
49 #include <asm/uaccess.h>
50 #include "mcfserial.h"
52 struct timer_list mcfrs_timer_struct
;
55 * Default console baud rate, we use this as the default
56 * for all ports so init can just open /dev/console and
57 * keep going. Perhaps one day the cflag settings for the
58 * console can be used instead.
60 #if defined(CONFIG_HW_FEITH)
61 #define CONSOLE_BAUD_RATE 38400
62 #define DEFAULT_CBAUD B38400
63 #elif defined(CONFIG_MOD5272) || defined(CONFIG_M5208EVB) || \
64 defined(CONFIG_M5329EVB) || defined(CONFIG_GILBARCO)
65 #define CONSOLE_BAUD_RATE 115200
66 #define DEFAULT_CBAUD B115200
67 #elif defined(CONFIG_ARNEWSH) || defined(CONFIG_FREESCALE) || \
68 defined(CONFIG_senTec) || defined(CONFIG_SNEHA) || defined(CONFIG_AVNET)
69 #define CONSOLE_BAUD_RATE 19200
70 #define DEFAULT_CBAUD B19200
73 #ifndef CONSOLE_BAUD_RATE
74 #define CONSOLE_BAUD_RATE 9600
75 #define DEFAULT_CBAUD B9600
78 int mcfrs_console_inited
= 0;
79 int mcfrs_console_port
= -1;
80 int mcfrs_console_baud
= CONSOLE_BAUD_RATE
;
81 int mcfrs_console_cbaud
= DEFAULT_CBAUD
;
84 * Driver data structures.
86 static struct tty_driver
*mcfrs_serial_driver
;
88 /* number of characters left in xmit buffer before we ask for more */
89 #define WAKEUP_CHARS 256
93 #undef SERIAL_DEBUG_OPEN
94 #undef SERIAL_DEBUG_FLOW
96 #if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
97 defined(CONFIG_M520x) || defined(CONFIG_M532x)
98 #define IRQBASE (MCFINT_VECBASE+MCFINT_UART0)
104 * Configuration table, UARTs to look for at startup.
106 static struct mcf_serial mcfrs_table
[] = {
109 .addr
= (volatile unsigned char *) (MCF_MBAR
+MCFUART_BASE1
),
111 .flags
= ASYNC_BOOT_AUTOCONF
,
116 .addr
= (volatile unsigned char *) (MCF_MBAR
+MCFUART_BASE2
),
118 .flags
= ASYNC_BOOT_AUTOCONF
,
124 .addr
= (volatile unsigned char *) (MCF_MBAR
+MCFUART_BASE3
),
126 .flags
= ASYNC_BOOT_AUTOCONF
,
132 .addr
= (volatile unsigned char *) (MCF_MBAR
+MCFUART_BASE4
),
134 .flags
= ASYNC_BOOT_AUTOCONF
,
140 #define NR_PORTS (sizeof(mcfrs_table) / sizeof(struct mcf_serial))
143 * This is used to figure out the divisor speeds and the timeouts.
145 static int mcfrs_baud_table
[] = {
146 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
147 9600, 19200, 38400, 57600, 115200, 230400, 460800, 0
149 #define MCFRS_BAUD_TABLE_SIZE \
150 (sizeof(mcfrs_baud_table)/sizeof(mcfrs_baud_table[0]))
153 #ifdef CONFIG_MAGIC_SYSRQ
155 * Magic system request keys. Used for debugging...
157 extern int magic_sysrq_key(int ch
);
162 * Forware declarations...
164 static void mcfrs_change_speed(struct mcf_serial
*info
);
165 static void mcfrs_wait_until_sent(struct tty_struct
*tty
, int timeout
);
168 static inline int serial_paranoia_check(struct mcf_serial
*info
,
169 char *name
, const char *routine
)
171 #ifdef SERIAL_PARANOIA_CHECK
172 static const char badmagic
[] =
173 "MCFRS(warning): bad magic number for serial struct %s in %s\n";
174 static const char badinfo
[] =
175 "MCFRS(warning): null mcf_serial for %s in %s\n";
178 printk(badinfo
, name
, routine
);
181 if (info
->magic
!= SERIAL_MAGIC
) {
182 printk(badmagic
, name
, routine
);
190 * Sets or clears DTR and RTS on the requested line.
192 static void mcfrs_setsignals(struct mcf_serial
*info
, int dtr
, int rts
)
194 volatile unsigned char *uartp
;
198 printk("%s(%d): mcfrs_setsignals(info=%x,dtr=%d,rts=%d)\n",
199 __FILE__
, __LINE__
, info
, dtr
, rts
);
202 local_irq_save(flags
);
206 mcf_setppdata(MCFPP_DTR1
, (dtr
? 0 : MCFPP_DTR1
));
208 mcf_setppdata(MCFPP_DTR0
, (dtr
? 0 : MCFPP_DTR0
));
214 info
->sigs
|= TIOCM_RTS
;
215 uartp
[MCFUART_UOP1
] = MCFUART_UOP_RTS
;
217 info
->sigs
&= ~TIOCM_RTS
;
218 uartp
[MCFUART_UOP0
] = MCFUART_UOP_RTS
;
221 local_irq_restore(flags
);
226 * Gets values of serial signals.
228 static int mcfrs_getsignals(struct mcf_serial
*info
)
230 volatile unsigned char *uartp
;
233 #if defined(CONFIG_NETtel) && defined(CONFIG_M5307)
234 unsigned short ppdata
;
238 printk("%s(%d): mcfrs_getsignals(info=%x)\n", __FILE__
, __LINE__
);
241 local_irq_save(flags
);
243 sigs
= (uartp
[MCFUART_UIPR
] & MCFUART_UIPR_CTS
) ? 0 : TIOCM_CTS
;
244 sigs
|= (info
->sigs
& TIOCM_RTS
);
249 ppdata
= mcf_getppdata();
250 if (info
->line
== 0) {
251 sigs
|= (ppdata
& MCFPP_DCD0
) ? 0 : TIOCM_CD
;
252 sigs
|= (ppdata
& MCFPP_DTR0
) ? 0 : TIOCM_DTR
;
253 } else if (info
->line
== 1) {
254 sigs
|= (ppdata
& MCFPP_DCD1
) ? 0 : TIOCM_CD
;
255 sigs
|= (ppdata
& MCFPP_DTR1
) ? 0 : TIOCM_DTR
;
260 local_irq_restore(flags
);
265 * ------------------------------------------------------------
266 * mcfrs_stop() and mcfrs_start()
268 * This routines are called before setting or resetting tty->stopped.
269 * They enable or disable transmitter interrupts, as necessary.
270 * ------------------------------------------------------------
272 static void mcfrs_stop(struct tty_struct
*tty
)
274 volatile unsigned char *uartp
;
275 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
278 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_stop"))
281 local_irq_save(flags
);
283 info
->imr
&= ~MCFUART_UIR_TXREADY
;
284 uartp
[MCFUART_UIMR
] = info
->imr
;
285 local_irq_restore(flags
);
288 static void mcfrs_start(struct tty_struct
*tty
)
290 volatile unsigned char *uartp
;
291 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
294 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_start"))
297 local_irq_save(flags
);
298 if (info
->xmit_cnt
&& info
->xmit_buf
) {
300 info
->imr
|= MCFUART_UIR_TXREADY
;
301 uartp
[MCFUART_UIMR
] = info
->imr
;
303 local_irq_restore(flags
);
307 * ----------------------------------------------------------------------
309 * Here starts the interrupt handling routines. All of the following
310 * subroutines are declared as inline and are folded into
311 * mcfrs_interrupt(). They were separated out for readability's sake.
313 * Note: mcfrs_interrupt() is a "fast" interrupt, which means that it
314 * runs with interrupts turned off. People who may want to modify
315 * mcfrs_interrupt() should try to keep the interrupt handler as fast as
316 * possible. After you are done making modifications, it is not a bad
319 * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c
321 * and look at the resulting assemble code in serial.s.
323 * - Ted Ts'o (tytso@mit.edu), 7-Mar-93
324 * -----------------------------------------------------------------------
327 static inline void receive_chars(struct mcf_serial
*info
)
329 volatile unsigned char *uartp
;
330 struct tty_struct
*tty
= info
->tty
;
331 unsigned char status
, ch
, flag
;
338 while ((status
= uartp
[MCFUART_USR
]) & MCFUART_USR_RXREADY
) {
339 ch
= uartp
[MCFUART_URB
];
342 #ifdef CONFIG_MAGIC_SYSRQ
343 if (mcfrs_console_inited
&& (info
->line
== mcfrs_console_port
)) {
344 if (magic_sysrq_key(ch
))
350 if (status
& MCFUART_USR_RXERR
) {
351 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETERR
;
352 if (status
& MCFUART_USR_RXBREAK
) {
353 info
->stats
.rxbreak
++;
355 } else if (status
& MCFUART_USR_RXPARITY
) {
356 info
->stats
.rxparity
++;
358 } else if (status
& MCFUART_USR_RXOVERRUN
) {
359 info
->stats
.rxoverrun
++;
361 } else if (status
& MCFUART_USR_RXFRAMING
) {
362 info
->stats
.rxframing
++;
366 tty_insert_flip_char(tty
, ch
, flag
);
368 tty_schedule_flip(tty
);
372 static inline void transmit_chars(struct mcf_serial
*info
)
374 volatile unsigned char *uartp
;
379 /* Send special char - probably flow control */
380 uartp
[MCFUART_UTB
] = info
->x_char
;
385 if ((info
->xmit_cnt
<= 0) || info
->tty
->stopped
) {
386 info
->imr
&= ~MCFUART_UIR_TXREADY
;
387 uartp
[MCFUART_UIMR
] = info
->imr
;
391 while (uartp
[MCFUART_USR
] & MCFUART_USR_TXREADY
) {
392 uartp
[MCFUART_UTB
] = info
->xmit_buf
[info
->xmit_tail
++];
393 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
395 if (--info
->xmit_cnt
<= 0)
399 if (info
->xmit_cnt
< WAKEUP_CHARS
)
400 schedule_work(&info
->tqueue
);
405 * This is the serial driver's generic interrupt routine
407 irqreturn_t
mcfrs_interrupt(int irq
, void *dev_id
)
409 struct mcf_serial
*info
;
412 info
= &mcfrs_table
[(irq
- IRQBASE
)];
413 isr
= info
->addr
[MCFUART_UISR
] & info
->imr
;
415 if (isr
& MCFUART_UIR_RXREADY
)
417 if (isr
& MCFUART_UIR_TXREADY
)
418 transmit_chars(info
);
423 * -------------------------------------------------------------------
424 * Here ends the serial interrupt routines.
425 * -------------------------------------------------------------------
428 static void mcfrs_offintr(void *private)
430 struct mcf_serial
*info
= (struct mcf_serial
*) private;
431 struct tty_struct
*tty
;
441 * Change of state on a DCD line.
443 void mcfrs_modem_change(struct mcf_serial
*info
, int dcd
)
445 if (info
->count
== 0)
448 if (info
->flags
& ASYNC_CHECK_CD
) {
450 wake_up_interruptible(&info
->open_wait
);
452 schedule_work(&info
->tqueue_hangup
);
459 unsigned short mcfrs_ppstatus
;
462 * This subroutine is called when the RS_TIMER goes off. It is used
463 * to monitor the state of the DCD lines - since they have no edge
464 * sensors and interrupt generators.
466 static void mcfrs_timer(void)
468 unsigned int ppstatus
, dcdval
, i
;
470 ppstatus
= mcf_getppdata() & (MCFPP_DCD0
| MCFPP_DCD1
);
472 if (ppstatus
!= mcfrs_ppstatus
) {
473 for (i
= 0; (i
< 2); i
++) {
474 dcdval
= (i
? MCFPP_DCD1
: MCFPP_DCD0
);
475 if ((ppstatus
& dcdval
) != (mcfrs_ppstatus
& dcdval
)) {
476 mcfrs_modem_change(&mcfrs_table
[i
],
477 ((ppstatus
& dcdval
) ? 0 : 1));
481 mcfrs_ppstatus
= ppstatus
;
484 mcfrs_timer_struct
.expires
= jiffies
+ HZ
/25;
485 add_timer(&mcfrs_timer_struct
);
488 #endif /* MCFPP_DCD0 */
492 * This routine is called from the scheduler tqueue when the interrupt
493 * routine has signalled that a hangup has occurred. The path of
494 * hangup processing is:
496 * serial interrupt routine -> (scheduler tqueue) ->
497 * do_serial_hangup() -> tty->hangup() -> mcfrs_hangup()
500 static void do_serial_hangup(void *private)
502 struct mcf_serial
*info
= (struct mcf_serial
*) private;
503 struct tty_struct
*tty
;
512 static int startup(struct mcf_serial
* info
)
514 volatile unsigned char *uartp
;
517 if (info
->flags
& ASYNC_INITIALIZED
)
520 if (!info
->xmit_buf
) {
521 info
->xmit_buf
= (unsigned char *) __get_free_page(GFP_KERNEL
);
526 local_irq_save(flags
);
528 #ifdef SERIAL_DEBUG_OPEN
529 printk("starting up ttyS%d (irq %d)...\n", info
->line
, info
->irq
);
533 * Reset UART, get it into known state...
536 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETRX
; /* reset RX */
537 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETTX
; /* reset TX */
538 mcfrs_setsignals(info
, 1, 1);
541 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
542 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
545 * and set the speed of the serial port
547 mcfrs_change_speed(info
);
550 * Lastly enable the UART transmitter and receiver, and
553 info
->imr
= MCFUART_UIR_RXREADY
;
554 uartp
[MCFUART_UCR
] = MCFUART_UCR_RXENABLE
| MCFUART_UCR_TXENABLE
;
555 uartp
[MCFUART_UIMR
] = info
->imr
;
557 info
->flags
|= ASYNC_INITIALIZED
;
558 local_irq_restore(flags
);
563 * This routine will shutdown a serial port; interrupts are disabled, and
564 * DTR is dropped if the hangup on close termio flag is on.
566 static void shutdown(struct mcf_serial
* info
)
568 volatile unsigned char *uartp
;
571 if (!(info
->flags
& ASYNC_INITIALIZED
))
574 #ifdef SERIAL_DEBUG_OPEN
575 printk("Shutting down serial port %d (irq %d)....\n", info
->line
,
579 local_irq_save(flags
);
582 uartp
[MCFUART_UIMR
] = 0; /* mask all interrupts */
583 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETRX
; /* reset RX */
584 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETTX
; /* reset TX */
586 if (!info
->tty
|| (info
->tty
->termios
->c_cflag
& HUPCL
))
587 mcfrs_setsignals(info
, 0, 0);
589 if (info
->xmit_buf
) {
590 free_page((unsigned long) info
->xmit_buf
);
595 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
597 info
->flags
&= ~ASYNC_INITIALIZED
;
598 local_irq_restore(flags
);
603 * This routine is called to set the UART divisor registers to match
604 * the specified baud rate for a serial port.
606 static void mcfrs_change_speed(struct mcf_serial
*info
)
608 volatile unsigned char *uartp
;
609 unsigned int baudclk
, cflag
;
611 unsigned char mr1
, mr2
;
614 unsigned int fraction
;
617 if (!info
->tty
|| !info
->tty
->termios
)
619 cflag
= info
->tty
->termios
->c_cflag
;
624 printk("%s(%d): mcfrs_change_speed()\n", __FILE__
, __LINE__
);
631 info
->tty
->termios
->c_cflag
&= ~CBAUDEX
;
636 mcfrs_setsignals(info
, 0, -1);
640 /* compute the baudrate clock */
643 * For the MCF5272, also compute the baudrate fraction.
645 baudclk
= (MCF_BUSCLK
/ mcfrs_baud_table
[i
]) / 32;
646 fraction
= MCF_BUSCLK
- (baudclk
* 32 * mcfrs_baud_table
[i
]);
648 fraction
/= (32 * mcfrs_baud_table
[i
]);
650 baudclk
= ((MCF_BUSCLK
/ mcfrs_baud_table
[i
]) + 16) / 32;
653 info
->baud
= mcfrs_baud_table
[i
];
655 mr1
= MCFUART_MR1_RXIRQRDY
| MCFUART_MR1_RXERRCHAR
;
658 switch (cflag
& CSIZE
) {
659 case CS5
: mr1
|= MCFUART_MR1_CS5
; break;
660 case CS6
: mr1
|= MCFUART_MR1_CS6
; break;
661 case CS7
: mr1
|= MCFUART_MR1_CS7
; break;
663 default: mr1
|= MCFUART_MR1_CS8
; break;
666 if (cflag
& PARENB
) {
667 if (cflag
& CMSPAR
) {
669 mr1
|= MCFUART_MR1_PARITYMARK
;
671 mr1
|= MCFUART_MR1_PARITYSPACE
;
674 mr1
|= MCFUART_MR1_PARITYODD
;
676 mr1
|= MCFUART_MR1_PARITYEVEN
;
679 mr1
|= MCFUART_MR1_PARITYNONE
;
683 mr2
|= MCFUART_MR2_STOP2
;
685 mr2
|= MCFUART_MR2_STOP1
;
687 if (cflag
& CRTSCTS
) {
688 mr1
|= MCFUART_MR1_RXRTS
;
689 mr2
|= MCFUART_MR2_TXCTS
;
693 info
->flags
&= ~ASYNC_CHECK_CD
;
695 info
->flags
|= ASYNC_CHECK_CD
;
699 local_irq_save(flags
);
701 printk("%s(%d): mr1=%x mr2=%x baudclk=%x\n", __FILE__
, __LINE__
,
705 Note: pg 12-16 of MCF5206e User's Manual states that a
706 software reset should be performed prior to changing
707 UMR1,2, UCSR, UACR, bit 7
709 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETRX
; /* reset RX */
710 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETTX
; /* reset TX */
711 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETMRPTR
; /* reset MR pointer */
712 uartp
[MCFUART_UMR
] = mr1
;
713 uartp
[MCFUART_UMR
] = mr2
;
714 uartp
[MCFUART_UBG1
] = (baudclk
& 0xff00) >> 8; /* set msb byte */
715 uartp
[MCFUART_UBG2
] = (baudclk
& 0xff); /* set lsb byte */
717 uartp
[MCFUART_UFPD
] = (fraction
& 0xf); /* set fraction */
719 uartp
[MCFUART_UCSR
] = MCFUART_UCSR_RXCLKTIMER
| MCFUART_UCSR_TXCLKTIMER
;
720 uartp
[MCFUART_UCR
] = MCFUART_UCR_RXENABLE
| MCFUART_UCR_TXENABLE
;
721 mcfrs_setsignals(info
, 1, -1);
722 local_irq_restore(flags
);
726 static void mcfrs_flush_chars(struct tty_struct
*tty
)
728 volatile unsigned char *uartp
;
729 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
732 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_flush_chars"))
735 uartp
= (volatile unsigned char *) info
->addr
;
738 * re-enable receiver interrupt
740 local_irq_save(flags
);
741 if ((!(info
->imr
& MCFUART_UIR_RXREADY
)) &&
742 (info
->flags
& ASYNC_INITIALIZED
) ) {
743 info
->imr
|= MCFUART_UIR_RXREADY
;
744 uartp
[MCFUART_UIMR
] = info
->imr
;
746 local_irq_restore(flags
);
748 if (info
->xmit_cnt
<= 0 || tty
->stopped
|| tty
->hw_stopped
||
752 /* Enable transmitter */
753 local_irq_save(flags
);
754 info
->imr
|= MCFUART_UIR_TXREADY
;
755 uartp
[MCFUART_UIMR
] = info
->imr
;
756 local_irq_restore(flags
);
759 static int mcfrs_write(struct tty_struct
* tty
,
760 const unsigned char *buf
, int count
)
762 volatile unsigned char *uartp
;
763 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
768 printk("%s(%d): mcfrs_write(tty=%x,buf=%x,count=%d)\n",
769 __FILE__
, __LINE__
, (int)tty
, (int)buf
, count
);
772 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_write"))
775 if (!tty
|| !info
->xmit_buf
)
778 local_save_flags(flags
);
781 c
= min(count
, (int) min(((int)SERIAL_XMIT_SIZE
) - info
->xmit_cnt
- 1,
782 ((int)SERIAL_XMIT_SIZE
) - info
->xmit_head
));
783 local_irq_restore(flags
);
788 memcpy(info
->xmit_buf
+ info
->xmit_head
, buf
, c
);
791 info
->xmit_head
= (info
->xmit_head
+ c
) & (SERIAL_XMIT_SIZE
-1);
793 local_irq_restore(flags
);
802 info
->imr
|= MCFUART_UIR_TXREADY
;
803 uartp
[MCFUART_UIMR
] = info
->imr
;
804 local_irq_restore(flags
);
809 static int mcfrs_write_room(struct tty_struct
*tty
)
811 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
814 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_write_room"))
816 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
822 static int mcfrs_chars_in_buffer(struct tty_struct
*tty
)
824 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
826 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_chars_in_buffer"))
828 return info
->xmit_cnt
;
831 static void mcfrs_flush_buffer(struct tty_struct
*tty
)
833 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
836 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_flush_buffer"))
839 local_irq_save(flags
);
840 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
841 local_irq_restore(flags
);
847 * ------------------------------------------------------------
850 * This routine is called by the upper-layer tty layer to signal that
851 * incoming characters should be throttled.
852 * ------------------------------------------------------------
854 static void mcfrs_throttle(struct tty_struct
* tty
)
856 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
857 #ifdef SERIAL_DEBUG_THROTTLE
860 printk("throttle %s: %d....\n", _tty_name(tty
, buf
),
861 tty
->ldisc
.chars_in_buffer(tty
));
864 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_throttle"))
868 info
->x_char
= STOP_CHAR(tty
);
870 /* Turn off RTS line (do this atomic) */
873 static void mcfrs_unthrottle(struct tty_struct
* tty
)
875 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
876 #ifdef SERIAL_DEBUG_THROTTLE
879 printk("unthrottle %s: %d....\n", _tty_name(tty
, buf
),
880 tty
->ldisc
.chars_in_buffer(tty
));
883 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_unthrottle"))
890 info
->x_char
= START_CHAR(tty
);
893 /* Assert RTS line (do this atomic) */
897 * ------------------------------------------------------------
898 * mcfrs_ioctl() and friends
899 * ------------------------------------------------------------
902 static int get_serial_info(struct mcf_serial
* info
,
903 struct serial_struct
* retinfo
)
905 struct serial_struct tmp
;
909 memset(&tmp
, 0, sizeof(tmp
));
910 tmp
.type
= info
->type
;
911 tmp
.line
= info
->line
;
912 tmp
.port
= (unsigned int) info
->addr
;
914 tmp
.flags
= info
->flags
;
915 tmp
.baud_base
= info
->baud_base
;
916 tmp
.close_delay
= info
->close_delay
;
917 tmp
.closing_wait
= info
->closing_wait
;
918 tmp
.custom_divisor
= info
->custom_divisor
;
919 return copy_to_user(retinfo
,&tmp
,sizeof(*retinfo
)) ? -EFAULT
: 0;
922 static int set_serial_info(struct mcf_serial
* info
,
923 struct serial_struct
* new_info
)
925 struct serial_struct new_serial
;
926 struct mcf_serial old_info
;
931 if (copy_from_user(&new_serial
,new_info
,sizeof(new_serial
)))
935 if (!capable(CAP_SYS_ADMIN
)) {
936 if ((new_serial
.baud_base
!= info
->baud_base
) ||
937 (new_serial
.type
!= info
->type
) ||
938 (new_serial
.close_delay
!= info
->close_delay
) ||
939 ((new_serial
.flags
& ~ASYNC_USR_MASK
) !=
940 (info
->flags
& ~ASYNC_USR_MASK
)))
942 info
->flags
= ((info
->flags
& ~ASYNC_USR_MASK
) |
943 (new_serial
.flags
& ASYNC_USR_MASK
));
944 info
->custom_divisor
= new_serial
.custom_divisor
;
952 * OK, past this point, all the error checking has been done.
953 * At this point, we start making changes.....
956 info
->baud_base
= new_serial
.baud_base
;
957 info
->flags
= ((info
->flags
& ~ASYNC_FLAGS
) |
958 (new_serial
.flags
& ASYNC_FLAGS
));
959 info
->type
= new_serial
.type
;
960 info
->close_delay
= new_serial
.close_delay
;
961 info
->closing_wait
= new_serial
.closing_wait
;
964 retval
= startup(info
);
969 * get_lsr_info - get line status register info
971 * Purpose: Let user call ioctl() to get info when the UART physically
972 * is emptied. On bus types like RS485, the transmitter must
973 * release the bus after transmitting. This must be done when
974 * the transmit shift register is empty, not be done when the
975 * transmit holding register is empty. This functionality
976 * allows an RS485 driver to be written in user space.
978 static int get_lsr_info(struct mcf_serial
* info
, unsigned int *value
)
980 volatile unsigned char *uartp
;
982 unsigned char status
;
984 local_irq_save(flags
);
986 status
= (uartp
[MCFUART_USR
] & MCFUART_USR_TXEMPTY
) ? TIOCSER_TEMT
: 0;
987 local_irq_restore(flags
);
989 return put_user(status
,value
);
993 * This routine sends a break character out the serial port.
995 static void send_break( struct mcf_serial
* info
, int duration
)
997 volatile unsigned char *uartp
;
1002 set_current_state(TASK_INTERRUPTIBLE
);
1005 local_irq_save(flags
);
1006 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDBREAKSTART
;
1007 schedule_timeout(duration
);
1008 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDBREAKSTOP
;
1009 local_irq_restore(flags
);
1012 static int mcfrs_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1014 struct mcf_serial
* info
= (struct mcf_serial
*)tty
->driver_data
;
1016 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_ioctl"))
1018 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1021 return mcfrs_getsignals(info
);
1024 static int mcfrs_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1025 unsigned int set
, unsigned int clear
)
1027 struct mcf_serial
* info
= (struct mcf_serial
*)tty
->driver_data
;
1028 int rts
= -1, dtr
= -1;
1030 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_ioctl"))
1032 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1035 if (set
& TIOCM_RTS
)
1037 if (set
& TIOCM_DTR
)
1039 if (clear
& TIOCM_RTS
)
1041 if (clear
& TIOCM_DTR
)
1044 mcfrs_setsignals(info
, dtr
, rts
);
1049 static int mcfrs_ioctl(struct tty_struct
*tty
, struct file
* file
,
1050 unsigned int cmd
, unsigned long arg
)
1052 struct mcf_serial
* info
= (struct mcf_serial
*)tty
->driver_data
;
1055 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_ioctl"))
1058 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1059 (cmd
!= TIOCSERCONFIG
) && (cmd
!= TIOCSERGWILD
) &&
1060 (cmd
!= TIOCSERSWILD
) && (cmd
!= TIOCSERGSTRUCT
)) {
1061 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1066 case TCSBRK
: /* SVID version: non-zero arg --> no break */
1067 retval
= tty_check_change(tty
);
1070 tty_wait_until_sent(tty
, 0);
1072 send_break(info
, HZ
/4); /* 1/4 second */
1074 case TCSBRKP
: /* support for POSIX tcsendbreak() */
1075 retval
= tty_check_change(tty
);
1078 tty_wait_until_sent(tty
, 0);
1079 send_break(info
, arg
? arg
*(HZ
/10) : HZ
/4);
1082 error
= put_user(C_CLOCAL(tty
) ? 1 : 0,
1083 (unsigned long *) arg
);
1088 get_user(arg
, (unsigned long *) arg
);
1089 tty
->termios
->c_cflag
=
1090 ((tty
->termios
->c_cflag
& ~CLOCAL
) |
1091 (arg
? CLOCAL
: 0));
1094 if (access_ok(VERIFY_WRITE
, (void *) arg
,
1095 sizeof(struct serial_struct
)))
1096 return get_serial_info(info
,
1097 (struct serial_struct
*) arg
);
1100 return set_serial_info(info
,
1101 (struct serial_struct
*) arg
);
1102 case TIOCSERGETLSR
: /* Get line status register */
1103 if (access_ok(VERIFY_WRITE
, (void *) arg
,
1104 sizeof(unsigned int)))
1105 return get_lsr_info(info
, (unsigned int *) arg
);
1107 case TIOCSERGSTRUCT
:
1108 error
= copy_to_user((struct mcf_serial
*) arg
,
1109 info
, sizeof(struct mcf_serial
));
1117 get_user(val
, (unsigned int *) arg
);
1118 mcf_setpa(MCFPP_PA11
, (val
? 0 : MCFPP_PA11
));
1123 val
= (mcf_getpa() & MCFPP_PA11
) ? 0 : 1;
1124 put_user(val
, (unsigned int *) arg
);
1130 return -ENOIOCTLCMD
;
1135 static void mcfrs_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1137 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
1139 if (tty
->termios
->c_cflag
== old_termios
->c_cflag
)
1142 mcfrs_change_speed(info
);
1144 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1145 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1146 tty
->hw_stopped
= 0;
1147 mcfrs_setsignals(info
, -1, 1);
1155 * ------------------------------------------------------------
1158 * This routine is called when the serial port gets closed. First, we
1159 * wait for the last remaining data to be sent. Then, we unlink its
1160 * S structure from the interrupt chain if necessary, and we free
1161 * that IRQ if nothing is left in the chain.
1162 * ------------------------------------------------------------
1164 static void mcfrs_close(struct tty_struct
*tty
, struct file
* filp
)
1166 volatile unsigned char *uartp
;
1167 struct mcf_serial
*info
= (struct mcf_serial
*)tty
->driver_data
;
1168 unsigned long flags
;
1170 if (!info
|| serial_paranoia_check(info
, tty
->name
, "mcfrs_close"))
1173 local_irq_save(flags
);
1175 if (tty_hung_up_p(filp
)) {
1176 local_irq_restore(flags
);
1180 #ifdef SERIAL_DEBUG_OPEN
1181 printk("mcfrs_close ttyS%d, count = %d\n", info
->line
, info
->count
);
1183 if ((tty
->count
== 1) && (info
->count
!= 1)) {
1185 * Uh, oh. tty->count is 1, which means that the tty
1186 * structure will be freed. Info->count should always
1187 * be one in these conditions. If it's greater than
1188 * one, we've got real problems, since it means the
1189 * serial port won't be shutdown.
1191 printk("MCFRS: bad serial port count; tty->count is 1, "
1192 "info->count is %d\n", info
->count
);
1195 if (--info
->count
< 0) {
1196 printk("MCFRS: bad serial port count for ttyS%d: %d\n",
1197 info
->line
, info
->count
);
1201 local_irq_restore(flags
);
1204 info
->flags
|= ASYNC_CLOSING
;
1207 * Now we wait for the transmit buffer to clear; and we notify
1208 * the line discipline to only process XON/XOFF characters.
1211 if (info
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1212 tty_wait_until_sent(tty
, info
->closing_wait
);
1215 * At this point we stop accepting input. To do this, we
1216 * disable the receive line status interrupts, and tell the
1217 * interrupt driver to stop checking the data ready bit in the
1218 * line status register.
1220 info
->imr
&= ~MCFUART_UIR_RXREADY
;
1222 uartp
[MCFUART_UIMR
] = info
->imr
;
1225 /* FIXME: do we need to keep this enabled for console?? */
1226 if (mcfrs_console_inited
&& (mcfrs_console_port
== info
->line
)) {
1227 /* Do not disable the UART */ ;
1231 if (tty
->driver
->flush_buffer
)
1232 tty
->driver
->flush_buffer(tty
);
1233 tty_ldisc_flush(tty
);
1239 if (tty
->ldisc
.num
!= ldiscs
[N_TTY
].num
) {
1240 if (tty
->ldisc
.close
)
1241 (tty
->ldisc
.close
)(tty
);
1242 tty
->ldisc
= ldiscs
[N_TTY
];
1243 tty
->termios
->c_line
= N_TTY
;
1244 if (tty
->ldisc
.open
)
1245 (tty
->ldisc
.open
)(tty
);
1248 if (info
->blocked_open
) {
1249 if (info
->close_delay
) {
1250 msleep_interruptible(jiffies_to_msecs(info
->close_delay
));
1252 wake_up_interruptible(&info
->open_wait
);
1254 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
1255 wake_up_interruptible(&info
->close_wait
);
1256 local_irq_restore(flags
);
1260 * mcfrs_wait_until_sent() --- wait until the transmitter is empty
1263 mcfrs_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1266 #define MCF5272_FIFO_SIZE 25 /* fifo size + shift reg */
1268 struct mcf_serial
* info
= (struct mcf_serial
*)tty
->driver_data
;
1269 volatile unsigned char *uartp
;
1270 unsigned long orig_jiffies
, fifo_time
, char_time
, fifo_cnt
;
1272 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_wait_until_sent"))
1275 orig_jiffies
= jiffies
;
1278 * Set the check interval to be 1/5 of the approximate time
1279 * to send the entire fifo, and make it at least 1. The check
1280 * interval should also be less than the timeout.
1282 * Note: we have to use pretty tight timings here to satisfy
1285 fifo_time
= (MCF5272_FIFO_SIZE
* HZ
* 10) / info
->baud
;
1286 char_time
= fifo_time
/ 5;
1289 if (timeout
&& timeout
< char_time
)
1290 char_time
= timeout
;
1293 * Clamp the timeout period at 2 * the time to empty the
1294 * fifo. Just to be safe, set the minimum at .5 seconds.
1297 if (fifo_time
< (HZ
/2))
1299 if (!timeout
|| timeout
> fifo_time
)
1300 timeout
= fifo_time
;
1303 * Account for the number of bytes in the UART
1304 * transmitter FIFO plus any byte being shifted out.
1306 uartp
= (volatile unsigned char *) info
->addr
;
1308 fifo_cnt
= (uartp
[MCFUART_UTF
] & MCFUART_UTF_TXB
);
1309 if ((uartp
[MCFUART_USR
] & (MCFUART_USR_TXREADY
|
1310 MCFUART_USR_TXEMPTY
)) ==
1311 MCFUART_USR_TXREADY
)
1315 msleep_interruptible(jiffies_to_msecs(char_time
));
1316 if (signal_pending(current
))
1318 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
1323 * For the other coldfire models, assume all data has been sent
1329 * mcfrs_hangup() --- called by tty_hangup() when a hangup is signaled.
1331 void mcfrs_hangup(struct tty_struct
*tty
)
1333 struct mcf_serial
* info
= (struct mcf_serial
*)tty
->driver_data
;
1335 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_hangup"))
1338 mcfrs_flush_buffer(tty
);
1342 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
1344 wake_up_interruptible(&info
->open_wait
);
1348 * ------------------------------------------------------------
1349 * mcfrs_open() and friends
1350 * ------------------------------------------------------------
1352 static int block_til_ready(struct tty_struct
*tty
, struct file
* filp
,
1353 struct mcf_serial
*info
)
1355 DECLARE_WAITQUEUE(wait
, current
);
1360 * If the device is in the middle of being closed, then block
1361 * until it's done, and then try again.
1363 if (info
->flags
& ASYNC_CLOSING
) {
1364 interruptible_sleep_on(&info
->close_wait
);
1365 #ifdef SERIAL_DO_RESTART
1366 if (info
->flags
& ASYNC_HUP_NOTIFY
)
1369 return -ERESTARTSYS
;
1376 * If non-blocking mode is set, or the port is not enabled,
1377 * then make the check up front and then exit.
1379 if ((filp
->f_flags
& O_NONBLOCK
) ||
1380 (tty
->flags
& (1 << TTY_IO_ERROR
))) {
1381 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
1385 if (tty
->termios
->c_cflag
& CLOCAL
)
1389 * Block waiting for the carrier detect and the line to become
1390 * free (i.e., not in use by the callout). While we are in
1391 * this loop, info->count is dropped by one, so that
1392 * mcfrs_close() knows when to free things. We restore it upon
1393 * exit, either normal or abnormal.
1396 add_wait_queue(&info
->open_wait
, &wait
);
1397 #ifdef SERIAL_DEBUG_OPEN
1398 printk("block_til_ready before block: ttyS%d, count = %d\n",
1399 info
->line
, info
->count
);
1402 info
->blocked_open
++;
1404 local_irq_disable();
1405 mcfrs_setsignals(info
, 1, 1);
1407 current
->state
= TASK_INTERRUPTIBLE
;
1408 if (tty_hung_up_p(filp
) ||
1409 !(info
->flags
& ASYNC_INITIALIZED
)) {
1410 #ifdef SERIAL_DO_RESTART
1411 if (info
->flags
& ASYNC_HUP_NOTIFY
)
1414 retval
= -ERESTARTSYS
;
1420 if (!(info
->flags
& ASYNC_CLOSING
) &&
1421 (do_clocal
|| (mcfrs_getsignals(info
) & TIOCM_CD
)))
1423 if (signal_pending(current
)) {
1424 retval
= -ERESTARTSYS
;
1427 #ifdef SERIAL_DEBUG_OPEN
1428 printk("block_til_ready blocking: ttyS%d, count = %d\n",
1429 info
->line
, info
->count
);
1433 current
->state
= TASK_RUNNING
;
1434 remove_wait_queue(&info
->open_wait
, &wait
);
1435 if (!tty_hung_up_p(filp
))
1437 info
->blocked_open
--;
1438 #ifdef SERIAL_DEBUG_OPEN
1439 printk("block_til_ready after blocking: ttyS%d, count = %d\n",
1440 info
->line
, info
->count
);
1444 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
1449 * This routine is called whenever a serial port is opened. It
1450 * enables interrupts for a serial port, linking in its structure into
1451 * the IRQ chain. It also performs the serial-specific
1452 * initialization for the tty structure.
1454 int mcfrs_open(struct tty_struct
*tty
, struct file
* filp
)
1456 struct mcf_serial
*info
;
1460 if ((line
< 0) || (line
>= NR_PORTS
))
1462 info
= mcfrs_table
+ line
;
1463 if (serial_paranoia_check(info
, tty
->name
, "mcfrs_open"))
1465 #ifdef SERIAL_DEBUG_OPEN
1466 printk("mcfrs_open %s, count = %d\n", tty
->name
, info
->count
);
1469 tty
->driver_data
= info
;
1473 * Start up serial port
1475 retval
= startup(info
);
1479 retval
= block_til_ready(tty
, filp
, info
);
1481 #ifdef SERIAL_DEBUG_OPEN
1482 printk("mcfrs_open returning after block_til_ready with %d\n",
1488 #ifdef SERIAL_DEBUG_OPEN
1489 printk("mcfrs_open %s successful...\n", tty
->name
);
1495 * Based on the line number set up the internal interrupt stuff.
1497 static void mcfrs_irqinit(struct mcf_serial
*info
)
1499 #if defined(CONFIG_M5272)
1500 volatile unsigned long *icrp
;
1501 volatile unsigned long *portp
;
1502 volatile unsigned char *uartp
;
1505 icrp
= (volatile unsigned long *) (MCF_MBAR
+ MCFSIM_ICR2
);
1507 switch (info
->line
) {
1515 printk("MCFRS: don't know how to handle UART %d interrupt?\n",
1520 /* Enable the output lines for the serial ports */
1521 portp
= (volatile unsigned long *) (MCF_MBAR
+ MCFSIM_PBCNT
);
1522 *portp
= (*portp
& ~0x000000ff) | 0x00000055;
1523 portp
= (volatile unsigned long *) (MCF_MBAR
+ MCFSIM_PDCNT
);
1524 *portp
= (*portp
& ~0x000003fc) | 0x000002a8;
1525 #elif defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x)
1526 volatile unsigned char *icrp
, *uartp
;
1527 volatile unsigned long *imrp
;
1531 icrp
= (volatile unsigned char *) (MCF_MBAR
+ MCFICM_INTC0
+
1532 MCFINTC_ICR0
+ MCFINT_UART0
+ info
->line
);
1533 *icrp
= 0x30 + info
->line
; /* level 6, line based priority */
1535 imrp
= (volatile unsigned long *) (MCF_MBAR
+ MCFICM_INTC0
+
1537 *imrp
&= ~((1 << (info
->irq
- MCFINT_VECBASE
)) | 1);
1538 #if defined(CONFIG_M527x)
1541 * External Pin Mask Setting & Enable External Pin for Interface
1542 * mrcbis@aliceposta.it
1544 unsigned short *serpin_enable_mask
;
1545 serpin_enable_mask
= (MCF_IPSBAR
+ MCF_GPIO_PAR_UART
);
1546 if (info
->line
== 0)
1547 *serpin_enable_mask
|= UART0_ENABLE_MASK
;
1548 else if (info
->line
== 1)
1549 *serpin_enable_mask
|= UART1_ENABLE_MASK
;
1550 else if (info
->line
== 2)
1551 *serpin_enable_mask
|= UART2_ENABLE_MASK
;
1554 #elif defined(CONFIG_M520x)
1555 volatile unsigned char *icrp
, *uartp
;
1556 volatile unsigned long *imrp
;
1560 icrp
= (volatile unsigned char *) (MCF_MBAR
+ MCFICM_INTC0
+
1561 MCFINTC_ICR0
+ MCFINT_UART0
+ info
->line
);
1564 imrp
= (volatile unsigned long *) (MCF_MBAR
+ MCFICM_INTC0
+
1566 *imrp
&= ~((1 << (info
->irq
- MCFINT_VECBASE
)) | 1);
1567 if (info
->line
< 2) {
1568 unsigned short *uart_par
;
1569 uart_par
= (unsigned short *)(MCF_IPSBAR
+ MCF_GPIO_PAR_UART
);
1570 if (info
->line
== 0)
1571 *uart_par
|= MCF_GPIO_PAR_UART_PAR_UTXD0
1572 | MCF_GPIO_PAR_UART_PAR_URXD0
;
1573 else if (info
->line
== 1)
1574 *uart_par
|= MCF_GPIO_PAR_UART_PAR_UTXD1
1575 | MCF_GPIO_PAR_UART_PAR_URXD1
;
1576 } else if (info
->line
== 2) {
1577 unsigned char *feci2c_par
;
1578 feci2c_par
= (unsigned char *)(MCF_IPSBAR
+ MCF_GPIO_PAR_FECI2C
);
1579 *feci2c_par
&= ~0x0F;
1580 *feci2c_par
|= MCF_GPIO_PAR_FECI2C_PAR_SCL_UTXD2
1581 | MCF_GPIO_PAR_FECI2C_PAR_SDA_URXD2
;
1583 #elif defined(CONFIG_M532x)
1584 volatile unsigned char *uartp
;
1586 switch (info
->line
) {
1588 MCF_INTC0_ICR26
= 0x3;
1589 MCF_INTC0_CIMR
= 26;
1590 /* GPIO initialization */
1591 MCF_GPIO_PAR_UART
|= 0x000F;
1594 MCF_INTC0_ICR27
= 0x3;
1595 MCF_INTC0_CIMR
= 27;
1596 /* GPIO initialization */
1597 MCF_GPIO_PAR_UART
|= 0x0FF0;
1600 MCF_INTC0_ICR28
= 0x3;
1601 MCF_INTC0_CIMR
= 28;
1602 /* GPIOs also must be initalized, depends on board */
1606 volatile unsigned char *icrp
, *uartp
;
1608 switch (info
->line
) {
1610 icrp
= (volatile unsigned char *) (MCF_MBAR
+ MCFSIM_UART1ICR
);
1611 *icrp
= /*MCFSIM_ICR_AUTOVEC |*/ MCFSIM_ICR_LEVEL6
|
1613 mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART1
);
1616 icrp
= (volatile unsigned char *) (MCF_MBAR
+ MCFSIM_UART2ICR
);
1617 *icrp
= /*MCFSIM_ICR_AUTOVEC |*/ MCFSIM_ICR_LEVEL6
|
1619 mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART2
);
1622 printk("MCFRS: don't know how to handle UART %d interrupt?\n",
1628 uartp
[MCFUART_UIVR
] = info
->irq
;
1631 /* Clear mask, so no surprise interrupts. */
1632 uartp
[MCFUART_UIMR
] = 0;
1634 if (request_irq(info
->irq
, mcfrs_interrupt
, IRQF_DISABLED
,
1635 "ColdFire UART", NULL
)) {
1636 printk("MCFRS: Unable to attach ColdFire UART %d interrupt "
1637 "vector=%d\n", info
->line
, info
->irq
);
1644 char *mcfrs_drivername
= "ColdFire internal UART serial driver version 1.00\n";
1648 * Serial stats reporting...
1650 int mcfrs_readproc(char *page
, char **start
, off_t off
, int count
,
1651 int *eof
, void *data
)
1653 struct mcf_serial
*info
;
1657 len
= sprintf(page
, mcfrs_drivername
);
1658 for (i
= 0; (i
< NR_PORTS
); i
++) {
1659 info
= &mcfrs_table
[i
];
1660 len
+= sprintf((page
+ len
), "%d: port:%x irq=%d baud:%d ",
1661 i
, (unsigned int) info
->addr
, info
->irq
, info
->baud
);
1662 if (info
->stats
.rx
|| info
->stats
.tx
)
1663 len
+= sprintf((page
+ len
), "tx:%d rx:%d ",
1664 info
->stats
.tx
, info
->stats
.rx
);
1665 if (info
->stats
.rxframing
)
1666 len
+= sprintf((page
+ len
), "fe:%d ",
1667 info
->stats
.rxframing
);
1668 if (info
->stats
.rxparity
)
1669 len
+= sprintf((page
+ len
), "pe:%d ",
1670 info
->stats
.rxparity
);
1671 if (info
->stats
.rxbreak
)
1672 len
+= sprintf((page
+ len
), "brk:%d ",
1673 info
->stats
.rxbreak
);
1674 if (info
->stats
.rxoverrun
)
1675 len
+= sprintf((page
+ len
), "oe:%d ",
1676 info
->stats
.rxoverrun
);
1678 str
[0] = str
[1] = 0;
1679 if ((sigs
= mcfrs_getsignals(info
))) {
1680 if (sigs
& TIOCM_RTS
)
1681 strcat(str
, "|RTS");
1682 if (sigs
& TIOCM_CTS
)
1683 strcat(str
, "|CTS");
1684 if (sigs
& TIOCM_DTR
)
1685 strcat(str
, "|DTR");
1686 if (sigs
& TIOCM_CD
)
1690 len
+= sprintf((page
+ len
), "%s\n", &str
[1]);
1697 /* Finally, routines used to initialize the serial driver. */
1699 static void show_serial_version(void)
1701 printk(mcfrs_drivername
);
1704 static const struct tty_operations mcfrs_ops
= {
1706 .close
= mcfrs_close
,
1707 .write
= mcfrs_write
,
1708 .flush_chars
= mcfrs_flush_chars
,
1709 .write_room
= mcfrs_write_room
,
1710 .chars_in_buffer
= mcfrs_chars_in_buffer
,
1711 .flush_buffer
= mcfrs_flush_buffer
,
1712 .ioctl
= mcfrs_ioctl
,
1713 .throttle
= mcfrs_throttle
,
1714 .unthrottle
= mcfrs_unthrottle
,
1715 .set_termios
= mcfrs_set_termios
,
1717 .start
= mcfrs_start
,
1718 .hangup
= mcfrs_hangup
,
1719 .read_proc
= mcfrs_readproc
,
1720 .wait_until_sent
= mcfrs_wait_until_sent
,
1721 .tiocmget
= mcfrs_tiocmget
,
1722 .tiocmset
= mcfrs_tiocmset
,
1725 /* mcfrs_init inits the driver */
1729 struct mcf_serial
*info
;
1730 unsigned long flags
;
1733 /* Setup base handler, and timer table. */
1735 init_timer(&mcfrs_timer_struct
);
1736 mcfrs_timer_struct
.function
= mcfrs_timer
;
1737 mcfrs_timer_struct
.data
= 0;
1738 mcfrs_timer_struct
.expires
= jiffies
+ HZ
/25;
1739 add_timer(&mcfrs_timer_struct
);
1740 mcfrs_ppstatus
= mcf_getppdata() & (MCFPP_DCD0
| MCFPP_DCD1
);
1742 mcfrs_serial_driver
= alloc_tty_driver(NR_PORTS
);
1743 if (!mcfrs_serial_driver
)
1746 show_serial_version();
1748 /* Initialize the tty_driver structure */
1749 mcfrs_serial_driver
->owner
= THIS_MODULE
;
1750 mcfrs_serial_driver
->name
= "ttyS";
1751 mcfrs_serial_driver
->driver_name
= "mcfserial";
1752 mcfrs_serial_driver
->major
= TTY_MAJOR
;
1753 mcfrs_serial_driver
->minor_start
= 64;
1754 mcfrs_serial_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1755 mcfrs_serial_driver
->subtype
= SERIAL_TYPE_NORMAL
;
1756 mcfrs_serial_driver
->init_termios
= tty_std_termios
;
1758 mcfrs_serial_driver
->init_termios
.c_cflag
=
1759 mcfrs_console_cbaud
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1760 mcfrs_serial_driver
->flags
= TTY_DRIVER_REAL_RAW
;
1762 tty_set_operations(mcfrs_serial_driver
, &mcfrs_ops
);
1764 if (tty_register_driver(mcfrs_serial_driver
)) {
1765 printk("MCFRS: Couldn't register serial driver\n");
1766 put_tty_driver(mcfrs_serial_driver
);
1770 local_irq_save(flags
);
1773 * Configure all the attached serial ports.
1775 for (i
= 0, info
= mcfrs_table
; (i
< NR_PORTS
); i
++, info
++) {
1776 info
->magic
= SERIAL_MAGIC
;
1779 info
->custom_divisor
= 16;
1780 info
->close_delay
= 50;
1781 info
->closing_wait
= 3000;
1785 info
->blocked_open
= 0;
1786 INIT_WORK(&info
->tqueue
, mcfrs_offintr
, info
);
1787 INIT_WORK(&info
->tqueue_hangup
, do_serial_hangup
, info
);
1788 init_waitqueue_head(&info
->open_wait
);
1789 init_waitqueue_head(&info
->close_wait
);
1792 mcfrs_setsignals(info
, 0, 0);
1793 mcfrs_irqinit(info
);
1795 printk("ttyS%d at 0x%04x (irq = %d)", info
->line
,
1796 (unsigned int) info
->addr
, info
->irq
);
1797 printk(" is a builtin ColdFire UART\n");
1800 local_irq_restore(flags
);
1804 module_init(mcfrs_init
);
1806 /****************************************************************************/
1807 /* Serial Console */
1808 /****************************************************************************/
1811 * Quick and dirty UART initialization, for console output.
1814 void mcfrs_init_console(void)
1816 volatile unsigned char *uartp
;
1820 * Reset UART, get it into known state...
1822 uartp
= (volatile unsigned char *) (MCF_MBAR
+
1823 (mcfrs_console_port
? MCFUART_BASE2
: MCFUART_BASE1
));
1825 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETRX
; /* reset RX */
1826 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETTX
; /* reset TX */
1827 uartp
[MCFUART_UCR
] = MCFUART_UCR_CMDRESETMRPTR
; /* reset MR pointer */
1830 * Set port for defined baud , 8 data bits, 1 stop bit, no parity.
1832 uartp
[MCFUART_UMR
] = MCFUART_MR1_PARITYNONE
| MCFUART_MR1_CS8
;
1833 uartp
[MCFUART_UMR
] = MCFUART_MR2_STOP1
;
1838 * For the MCF5272, also compute the baudrate fraction.
1840 int fraction
= MCF_BUSCLK
- (clk
* 32 * mcfrs_console_baud
);
1842 fraction
/= (32 * mcfrs_console_baud
);
1843 uartp
[MCFUART_UFPD
] = (fraction
& 0xf); /* set fraction */
1844 clk
= (MCF_BUSCLK
/ mcfrs_console_baud
) / 32;
1847 clk
= ((MCF_BUSCLK
/ mcfrs_console_baud
) + 16) / 32; /* set baud */
1850 uartp
[MCFUART_UBG1
] = (clk
& 0xff00) >> 8; /* set msb baud */
1851 uartp
[MCFUART_UBG2
] = (clk
& 0xff); /* set lsb baud */
1852 uartp
[MCFUART_UCSR
] = MCFUART_UCSR_RXCLKTIMER
| MCFUART_UCSR_TXCLKTIMER
;
1853 uartp
[MCFUART_UCR
] = MCFUART_UCR_RXENABLE
| MCFUART_UCR_TXENABLE
;
1855 mcfrs_console_inited
++;
1861 * Setup for console. Argument comes from the boot command line.
1864 int mcfrs_console_setup(struct console
*cp
, char *arg
)
1866 int i
, n
= CONSOLE_BAUD_RATE
;
1871 if (!strncmp(cp
->name
, "ttyS", 4))
1872 mcfrs_console_port
= cp
->index
;
1873 else if (!strncmp(cp
->name
, "cua", 3))
1874 mcfrs_console_port
= cp
->index
;
1879 n
= simple_strtoul(arg
,NULL
,0);
1880 for (i
= 0; i
< MCFRS_BAUD_TABLE_SIZE
; i
++)
1881 if (mcfrs_baud_table
[i
] == n
)
1883 if (i
< MCFRS_BAUD_TABLE_SIZE
) {
1884 mcfrs_console_baud
= n
;
1885 mcfrs_console_cbaud
= 0;
1887 mcfrs_console_cbaud
|= CBAUDEX
;
1890 mcfrs_console_cbaud
|= i
;
1892 mcfrs_init_console(); /* make sure baud rate changes */
1897 static struct tty_driver
*mcfrs_console_device(struct console
*c
, int *index
)
1900 return mcfrs_serial_driver
;
1905 * Output a single character, using UART polled mode.
1906 * This is used for console output.
1909 void mcfrs_put_char(char ch
)
1911 volatile unsigned char *uartp
;
1912 unsigned long flags
;
1915 uartp
= (volatile unsigned char *) (MCF_MBAR
+
1916 (mcfrs_console_port
? MCFUART_BASE2
: MCFUART_BASE1
));
1918 local_irq_save(flags
);
1919 for (i
= 0; (i
< 0x10000); i
++) {
1920 if (uartp
[MCFUART_USR
] & MCFUART_USR_TXREADY
)
1924 uartp
[MCFUART_UTB
] = ch
;
1925 for (i
= 0; (i
< 0x10000); i
++)
1926 if (uartp
[MCFUART_USR
] & MCFUART_USR_TXEMPTY
)
1930 mcfrs_init_console(); /* try and get it back */
1931 local_irq_restore(flags
);
1938 * rs_console_write is registered for printk output.
1941 void mcfrs_console_write(struct console
*cp
, const char *p
, unsigned len
)
1943 if (!mcfrs_console_inited
)
1944 mcfrs_init_console();
1947 mcfrs_put_char('\r');
1948 mcfrs_put_char(*p
++);
1953 * declare our consoles
1956 struct console mcfrs_console
= {
1958 .write
= mcfrs_console_write
,
1959 .device
= mcfrs_console_device
,
1960 .setup
= mcfrs_console_setup
,
1961 .flags
= CON_PRINTBUFFER
,
1965 static int __init
mcfrs_console_init(void)
1967 register_console(&mcfrs_console
);
1971 console_initcall(mcfrs_console_init
);
1973 /****************************************************************************/