1 /* 68328serial.c: Serial port driver for 68328 microcontroller
3 * Copyright (C) 1995 David S. Miller <davem@caip.rutgers.edu>
4 * Copyright (C) 1998 Kenneth Albanowski <kjahds@kjahds.com>
5 * Copyright (C) 1998, 1999 D. Jeff Dionne <jeff@uclinux.org>
6 * Copyright (C) 1999 Vladimir Gurevich <vgurevic@cisco.com>
7 * Copyright (C) 2002-2003 David McCullough <davidm@snapgear.com>
8 * Copyright (C) 2002 Greg Ungerer <gerg@snapgear.com>
10 * VZ Support/Fixes Evan Stawnyczy <e@lineo.ca>
11 * Multiple UART support Daniel Potts <danielp@cse.unsw.edu.au>
12 * Power management support Daniel Potts <danielp@cse.unsw.edu.au>
13 * VZ Second Serial Port enable Phil Wilshire
14 * 2.4/2.5 port David McCullough
18 #include <linux/module.h>
19 #include <linux/errno.h>
20 #include <linux/signal.h>
21 #include <linux/sched.h>
22 #include <linux/timer.h>
23 #include <linux/interrupt.h>
24 #include <linux/tty.h>
25 #include <linux/tty_flip.h>
26 #include <linux/major.h>
27 #include <linux/string.h>
28 #include <linux/fcntl.h>
30 #include <linux/kernel.h>
31 #include <linux/console.h>
32 #include <linux/reboot.h>
33 #include <linux/keyboard.h>
34 #include <linux/init.h>
36 #include <linux/pm_legacy.h>
37 #include <linux/bitops.h>
38 #include <linux/delay.h>
42 #include <asm/system.h>
43 #include <asm/delay.h>
44 #include <asm/uaccess.h>
47 /* note: perhaps we can murge these files, so that you can just
48 * define 1 of them, and they can sort that out for themselves
50 #if defined(CONFIG_M68EZ328)
51 #include <asm/MC68EZ328.h>
53 #if defined(CONFIG_M68VZ328)
54 #include <asm/MC68VZ328.h>
56 #include <asm/MC68328.h>
57 #endif /* CONFIG_M68VZ328 */
58 #endif /* CONFIG_M68EZ328 */
60 #include "68328serial.h"
62 /* Turn off usage of real serial interrupt code, to "support" Copilot */
63 #ifdef CONFIG_XCOPILOT_BUGS
69 static struct m68k_serial m68k_soft
[NR_PORTS
];
70 struct m68k_serial
*IRQ_ports
[NR_IRQS
];
72 static unsigned int uart_irqs
[NR_PORTS
] = UART_IRQ_DEFNS
;
74 /* multiple ports are contiguous in memory */
75 m68328_uart
*uart_addr
= (m68328_uart
*)USTCNT_ADDR
;
77 struct tty_struct m68k_ttys
;
78 struct m68k_serial
*m68k_consinfo
= 0;
80 #define M68K_CLOCK (16667000) /* FIXME: 16MHz is likely wrong */
83 extern wait_queue_head_t keypress_wait
;
86 struct tty_driver
*serial_driver
;
88 /* serial subtype definitions */
89 #define SERIAL_TYPE_NORMAL 1
91 /* number of characters left in xmit buffer before we ask for more */
92 #define WAKEUP_CHARS 256
94 /* Debugging... DEBUG_INTR is bad to use when one of the zs
95 * lines is your console ;(
97 #undef SERIAL_DEBUG_INTR
98 #undef SERIAL_DEBUG_OPEN
99 #undef SERIAL_DEBUG_FLOW
101 #define RS_ISR_PASS_LIMIT 256
103 static void change_speed(struct m68k_serial
*info
);
106 * Setup for console. Argument comes from the boot command line.
109 #if defined(CONFIG_M68EZ328ADS) || defined(CONFIG_ALMA_ANS) || defined(CONFIG_DRAGONIXVZ)
110 #define CONSOLE_BAUD_RATE 115200
111 #define DEFAULT_CBAUD B115200
114 /* note: this is messy, but it works, again, perhaps defined somewhere else?*/
115 #ifdef CONFIG_M68VZ328
116 #define CONSOLE_BAUD_RATE 19200
117 #define DEFAULT_CBAUD B19200
122 #ifndef CONSOLE_BAUD_RATE
123 #define CONSOLE_BAUD_RATE 9600
124 #define DEFAULT_CBAUD B9600
128 static int m68328_console_initted
= 0;
129 static int m68328_console_baud
= CONSOLE_BAUD_RATE
;
130 static int m68328_console_cbaud
= DEFAULT_CBAUD
;
133 static inline int serial_paranoia_check(struct m68k_serial
*info
,
134 char *name
, const char *routine
)
136 #ifdef SERIAL_PARANOIA_CHECK
137 static const char *badmagic
=
138 "Warning: bad magic number for serial struct %s in %s\n";
139 static const char *badinfo
=
140 "Warning: null m68k_serial for %s in %s\n";
143 printk(badinfo
, name
, routine
);
146 if (info
->magic
!= SERIAL_MAGIC
) {
147 printk(badmagic
, name
, routine
);
155 * This is used to figure out the divisor speeds and the timeouts
157 static int baud_table
[] = {
158 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
159 9600, 19200, 38400, 57600, 115200, 0 };
161 #define BAUD_TABLE_SIZE (sizeof(baud_table)/sizeof(baud_table[0]))
163 /* Sets or clears DTR/RTS on the requested line */
164 static inline void m68k_rtsdtr(struct m68k_serial
*ss
, int set
)
167 /* set the RTS/CTS line */
174 /* Utility routines */
175 static inline int get_baud(struct m68k_serial
*ss
)
177 unsigned long result
= 115200;
178 unsigned short int baud
= uart_addr
[ss
->line
].ubaud
;
179 if (GET_FIELD(baud
, UBAUD_PRESCALER
) == 0x38) result
= 38400;
180 result
>>= GET_FIELD(baud
, UBAUD_DIVIDE
);
186 * ------------------------------------------------------------
187 * rs_stop() and rs_start()
189 * This routines are called before setting or resetting tty->stopped.
190 * They enable or disable transmitter interrupts, as necessary.
191 * ------------------------------------------------------------
193 static void rs_stop(struct tty_struct
*tty
)
195 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
196 m68328_uart
*uart
= &uart_addr
[info
->line
];
199 if (serial_paranoia_check(info
, tty
->name
, "rs_stop"))
202 local_irq_save(flags
);
203 uart
->ustcnt
&= ~USTCNT_TXEN
;
204 local_irq_restore(flags
);
207 static void rs_put_char(char ch
)
209 int flags
, loops
= 0;
211 local_irq_save(flags
);
213 while (!(UTX
& UTX_TX_AVAIL
) && (loops
< 1000)) {
220 local_irq_restore(flags
);
223 static void rs_start(struct tty_struct
*tty
)
225 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
226 m68328_uart
*uart
= &uart_addr
[info
->line
];
229 if (serial_paranoia_check(info
, tty
->name
, "rs_start"))
232 local_irq_save(flags
);
233 if (info
->xmit_cnt
&& info
->xmit_buf
&& !(uart
->ustcnt
& USTCNT_TXEN
)) {
235 uart
->ustcnt
|= USTCNT_TXEN
| USTCNT_TX_INTR_MASK
;
237 uart
->ustcnt
|= USTCNT_TXEN
;
240 local_irq_restore(flags
);
243 /* Drop into either the boot monitor or kadb upon receiving a break
244 * from keyboard/console input.
246 static void batten_down_hatches(void)
248 /* Drop into the debugger */
251 static void status_handle(struct m68k_serial
*info
, unsigned short status
)
255 if((info
->tty
->termios
->c_cflag
& CRTSCTS
) &&
256 ((info
->curregs
[3] & AUTO_ENAB
)==0)) {
257 info
->curregs
[3] |= AUTO_ENAB
;
258 info
->pendregs
[3] |= AUTO_ENAB
;
259 write_zsreg(info
->m68k_channel
, 3, info
->curregs
[3]);
262 if((info
->curregs
[3] & AUTO_ENAB
)) {
263 info
->curregs
[3] &= ~AUTO_ENAB
;
264 info
->pendregs
[3] &= ~AUTO_ENAB
;
265 write_zsreg(info
->m68k_channel
, 3, info
->curregs
[3]);
269 /* If this is console input and this is a
270 * 'break asserted' status change interrupt
271 * see if we can drop into the debugger
273 if((status
& URX_BREAK
) && info
->break_abort
)
274 batten_down_hatches();
278 static void receive_chars(struct m68k_serial
*info
, struct pt_regs
*regs
,
281 struct tty_struct
*tty
= info
->tty
;
282 m68328_uart
*uart
= &uart_addr
[info
->line
];
283 unsigned char ch
, flag
;
286 * This do { } while() loop will get ALL chars out of Rx FIFO
288 #ifndef CONFIG_XCOPILOT_BUGS
291 ch
= GET_FIELD(rx
, URX_RXDATA
);
294 if(URX_BREAK
& rx
) { /* whee, break received */
295 status_handle(info
, rx
);
297 #ifdef CONFIG_MAGIC_SYSRQ
298 } else if (ch
== 0x10) { /* ^P */
302 /* show_net_buffers(); */
304 } else if (ch
== 0x12) { /* ^R */
307 #endif /* CONFIG_MAGIC_SYSRQ */
309 /* It is a 'keyboard interrupt' ;-) */
310 #ifdef CONFIG_CONSOLE
311 wake_up(&keypress_wait
);
320 if(rx
& URX_PARITY_ERROR
) {
322 status_handle(info
, rx
);
323 } else if(rx
& URX_OVRUN
) {
325 status_handle(info
, rx
);
326 } else if(rx
& URX_FRAME_ERROR
) {
328 status_handle(info
, rx
);
330 tty_insert_flip_char(tty
, ch
, flag
);
331 #ifndef CONFIG_XCOPILOT_BUGS
332 } while((rx
= uart
->urx
.w
) & URX_DATA_READY
);
335 tty_schedule_flip(tty
);
341 static void transmit_chars(struct m68k_serial
*info
)
343 m68328_uart
*uart
= &uart_addr
[info
->line
];
347 uart
->utx
.b
.txdata
= info
->x_char
;
349 goto clear_and_return
;
352 if((info
->xmit_cnt
<= 0) || info
->tty
->stopped
) {
353 /* That's peculiar... TX ints off */
354 uart
->ustcnt
&= ~USTCNT_TX_INTR_MASK
;
355 goto clear_and_return
;
359 uart
->utx
.b
.txdata
= info
->xmit_buf
[info
->xmit_tail
++];
360 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
363 if (info
->xmit_cnt
< WAKEUP_CHARS
)
364 schedule_work(&info
->tqueue
);
366 if(info
->xmit_cnt
<= 0) {
367 /* All done for now... TX ints off */
368 uart
->ustcnt
&= ~USTCNT_TX_INTR_MASK
;
369 goto clear_and_return
;
373 /* Clear interrupt (should be auto)*/
378 * This is the serial driver's generic interrupt routine
380 irqreturn_t
rs_interrupt(int irq
, void *dev_id
, struct pt_regs
* regs
)
382 struct m68k_serial
* info
;
387 info
= IRQ_ports
[irq
];
391 uart
= &uart_addr
[info
->line
];
397 if (rx
& URX_DATA_READY
) receive_chars(info
, regs
, rx
);
398 if (tx
& UTX_TX_AVAIL
) transmit_chars(info
);
400 receive_chars(info
, regs
, rx
);
405 static void do_softint(void *private)
407 struct m68k_serial
*info
= (struct m68k_serial
*) private;
408 struct tty_struct
*tty
;
414 if (clear_bit(RS_EVENT_WRITE_WAKEUP
, &info
->event
)) {
421 * This routine is called from the scheduler tqueue when the interrupt
422 * routine has signalled that a hangup has occurred. The path of
423 * hangup processing is:
425 * serial interrupt routine -> (scheduler tqueue) ->
426 * do_serial_hangup() -> tty->hangup() -> rs_hangup()
429 static void do_serial_hangup(void *private)
431 struct m68k_serial
*info
= (struct m68k_serial
*) private;
432 struct tty_struct
*tty
;
442 static int startup(struct m68k_serial
* info
)
444 m68328_uart
*uart
= &uart_addr
[info
->line
];
447 if (info
->flags
& S_INITIALIZED
)
450 if (!info
->xmit_buf
) {
451 info
->xmit_buf
= (unsigned char *) __get_free_page(GFP_KERNEL
);
456 local_irq_save(flags
);
459 * Clear the FIFO buffers and disable them
460 * (they will be reenabled in change_speed())
463 uart
->ustcnt
= USTCNT_UEN
;
464 info
->xmit_fifo_size
= 1;
465 uart
->ustcnt
= USTCNT_UEN
| USTCNT_RXEN
| USTCNT_TXEN
;
469 * Finally, enable sequencing and interrupts
472 uart
->ustcnt
= USTCNT_UEN
| USTCNT_RXEN
|
473 USTCNT_RX_INTR_MASK
| USTCNT_TX_INTR_MASK
;
475 uart
->ustcnt
= USTCNT_UEN
| USTCNT_RXEN
| USTCNT_RX_INTR_MASK
;
479 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
480 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
483 * and set the speed of the serial port
488 info
->flags
|= S_INITIALIZED
;
489 local_irq_restore(flags
);
494 * This routine will shutdown a serial port; interrupts are disabled, and
495 * DTR is dropped if the hangup on close termio flag is on.
497 static void shutdown(struct m68k_serial
* info
)
499 m68328_uart
*uart
= &uart_addr
[info
->line
];
502 uart
->ustcnt
= 0; /* All off! */
503 if (!(info
->flags
& S_INITIALIZED
))
506 local_irq_save(flags
);
508 if (info
->xmit_buf
) {
509 free_page((unsigned long) info
->xmit_buf
);
514 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
516 info
->flags
&= ~S_INITIALIZED
;
517 local_irq_restore(flags
);
521 int divisor
, prescale
;
523 #ifndef CONFIG_M68VZ328
524 hw_baud_table
[18] = {
539 {1,0x26}, /* 19200 */
540 {0,0x26}, /* 38400 */
541 {1,0x38}, /* 57600 */
542 {0,0x38}, /* 115200 */
545 hw_baud_table
[18] = {
560 {2,0x26}, /* 19200 */
561 {1,0x26}, /* 38400 */
562 {0,0x26}, /* 57600 */
563 {1,0x38}, /* 115200 */
566 /* rate = 1036800 / ((65 - prescale) * (1<<divider)) */
569 * This routine is called to set the UART divisor registers to match
570 * the specified baud rate for a serial port.
572 static void change_speed(struct m68k_serial
*info
)
574 m68328_uart
*uart
= &uart_addr
[info
->line
];
576 unsigned short ustcnt
;
580 if (!info
->tty
|| !info
->tty
->termios
)
582 cflag
= info
->tty
->termios
->c_cflag
;
583 if (!(port
= info
->port
))
586 ustcnt
= uart
->ustcnt
;
587 uart
->ustcnt
= ustcnt
& ~USTCNT_TXEN
;
591 i
= (i
& ~CBAUDEX
) + B38400
;
594 info
->baud
= baud_table
[i
];
595 uart
->ubaud
= PUT_FIELD(UBAUD_DIVIDE
, hw_baud_table
[i
].divisor
) |
596 PUT_FIELD(UBAUD_PRESCALER
, hw_baud_table
[i
].prescale
);
598 ustcnt
&= ~(USTCNT_PARITYEN
| USTCNT_ODD_EVEN
| USTCNT_STOP
| USTCNT_8_7
);
600 if ((cflag
& CSIZE
) == CS8
)
601 ustcnt
|= USTCNT_8_7
;
604 ustcnt
|= USTCNT_STOP
;
607 ustcnt
|= USTCNT_PARITYEN
;
609 ustcnt
|= USTCNT_ODD_EVEN
;
611 #ifdef CONFIG_SERIAL_68328_RTS_CTS
612 if (cflag
& CRTSCTS
) {
613 uart
->utx
.w
&= ~ UTX_NOCTS
;
615 uart
->utx
.w
|= UTX_NOCTS
;
619 ustcnt
|= USTCNT_TXEN
;
621 uart
->ustcnt
= ustcnt
;
626 * Fair output driver allows a process to speak.
628 static void rs_fair_output(void)
630 int left
; /* Output no more than that */
632 struct m68k_serial
*info
= &m68k_soft
[0];
635 if (info
== 0) return;
636 if (info
->xmit_buf
== 0) return;
638 local_irq_save(flags
);
639 left
= info
->xmit_cnt
;
641 c
= info
->xmit_buf
[info
->xmit_tail
];
642 info
->xmit_tail
= (info
->xmit_tail
+1) & (SERIAL_XMIT_SIZE
-1);
644 local_irq_restore(flags
);
648 local_irq_save(flags
);
649 left
= min(info
->xmit_cnt
, left
-1);
652 /* Last character is being transmitted now (hopefully). */
655 local_irq_restore(flags
);
660 * m68k_console_print is registered for printk.
662 void console_print_68328(const char *p
)
666 while((c
=*(p
++)) != 0) {
672 /* Comment this if you want to have a strict interrupt-driven output */
678 static void rs_set_ldisc(struct tty_struct
*tty
)
680 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
682 if (serial_paranoia_check(info
, tty
->name
, "rs_set_ldisc"))
685 info
->is_cons
= (tty
->termios
->c_line
== N_TTY
);
687 printk("ttyS%d console mode %s\n", info
->line
, info
->is_cons
? "on" : "off");
690 static void rs_flush_chars(struct tty_struct
*tty
)
692 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
693 m68328_uart
*uart
= &uart_addr
[info
->line
];
696 if (serial_paranoia_check(info
, tty
->name
, "rs_flush_chars"))
702 /* Enable transmitter */
703 local_irq_save(flags
);
705 if (info
->xmit_cnt
<= 0 || tty
->stopped
|| tty
->hw_stopped
||
707 local_irq_restore(flags
);
712 uart
->ustcnt
|= USTCNT_TXEN
| USTCNT_TX_INTR_MASK
;
714 uart
->ustcnt
|= USTCNT_TXEN
;
718 if (uart
->utx
.w
& UTX_TX_AVAIL
) {
723 uart
->utx
.b
.txdata
= info
->xmit_buf
[info
->xmit_tail
++];
724 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
729 while (!(uart
->utx
.w
& UTX_TX_AVAIL
)) udelay(5);
732 local_irq_restore(flags
);
735 extern void console_printn(const char * b
, int count
);
737 static int rs_write(struct tty_struct
* tty
,
738 const unsigned char *buf
, int count
)
741 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
742 m68328_uart
*uart
= &uart_addr
[info
->line
];
745 if (serial_paranoia_check(info
, tty
->name
, "rs_write"))
748 if (!tty
|| !info
->xmit_buf
)
751 local_save_flags(flags
);
754 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
755 SERIAL_XMIT_SIZE
- info
->xmit_head
));
756 local_irq_restore(flags
);
761 memcpy(info
->xmit_buf
+ info
->xmit_head
, buf
, c
);
764 info
->xmit_head
= (info
->xmit_head
+ c
) & (SERIAL_XMIT_SIZE
-1);
766 local_irq_restore(flags
);
772 if (info
->xmit_cnt
&& !tty
->stopped
&& !tty
->hw_stopped
) {
773 /* Enable transmitter */
776 while(info
->xmit_cnt
) {
779 uart
->ustcnt
|= USTCNT_TXEN
;
781 uart
->ustcnt
|= USTCNT_TX_INTR_MASK
;
783 while (!(uart
->utx
.w
& UTX_TX_AVAIL
)) udelay(5);
785 if (uart
->utx
.w
& UTX_TX_AVAIL
) {
786 uart
->utx
.b
.txdata
= info
->xmit_buf
[info
->xmit_tail
++];
787 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
794 local_irq_restore(flags
);
800 static int rs_write_room(struct tty_struct
*tty
)
802 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
805 if (serial_paranoia_check(info
, tty
->name
, "rs_write_room"))
807 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
813 static int rs_chars_in_buffer(struct tty_struct
*tty
)
815 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
817 if (serial_paranoia_check(info
, tty
->name
, "rs_chars_in_buffer"))
819 return info
->xmit_cnt
;
822 static void rs_flush_buffer(struct tty_struct
*tty
)
824 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
827 if (serial_paranoia_check(info
, tty
->name
, "rs_flush_buffer"))
829 local_irq_save(flags
);
830 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
831 local_irq_restore(flags
);
836 * ------------------------------------------------------------
839 * This routine is called by the upper-layer tty layer to signal that
840 * incoming characters should be throttled.
841 * ------------------------------------------------------------
843 static void rs_throttle(struct tty_struct
* tty
)
845 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
847 if (serial_paranoia_check(info
, tty
->name
, "rs_throttle"))
851 info
->x_char
= STOP_CHAR(tty
);
853 /* Turn off RTS line (do this atomic) */
856 static void rs_unthrottle(struct tty_struct
* tty
)
858 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
860 if (serial_paranoia_check(info
, tty
->name
, "rs_unthrottle"))
867 info
->x_char
= START_CHAR(tty
);
870 /* Assert RTS line (do this atomic) */
874 * ------------------------------------------------------------
875 * rs_ioctl() and friends
876 * ------------------------------------------------------------
879 static int get_serial_info(struct m68k_serial
* info
,
880 struct serial_struct
* retinfo
)
882 struct serial_struct tmp
;
886 memset(&tmp
, 0, sizeof(tmp
));
887 tmp
.type
= info
->type
;
888 tmp
.line
= info
->line
;
889 tmp
.port
= info
->port
;
891 tmp
.flags
= info
->flags
;
892 tmp
.baud_base
= info
->baud_base
;
893 tmp
.close_delay
= info
->close_delay
;
894 tmp
.closing_wait
= info
->closing_wait
;
895 tmp
.custom_divisor
= info
->custom_divisor
;
896 copy_to_user(retinfo
,&tmp
,sizeof(*retinfo
));
900 static int set_serial_info(struct m68k_serial
* info
,
901 struct serial_struct
* new_info
)
903 struct serial_struct new_serial
;
904 struct m68k_serial old_info
;
909 copy_from_user(&new_serial
,new_info
,sizeof(new_serial
));
912 if (!capable(CAP_SYS_ADMIN
)) {
913 if ((new_serial
.baud_base
!= info
->baud_base
) ||
914 (new_serial
.type
!= info
->type
) ||
915 (new_serial
.close_delay
!= info
->close_delay
) ||
916 ((new_serial
.flags
& ~S_USR_MASK
) !=
917 (info
->flags
& ~S_USR_MASK
)))
919 info
->flags
= ((info
->flags
& ~S_USR_MASK
) |
920 (new_serial
.flags
& S_USR_MASK
));
921 info
->custom_divisor
= new_serial
.custom_divisor
;
929 * OK, past this point, all the error checking has been done.
930 * At this point, we start making changes.....
933 info
->baud_base
= new_serial
.baud_base
;
934 info
->flags
= ((info
->flags
& ~S_FLAGS
) |
935 (new_serial
.flags
& S_FLAGS
));
936 info
->type
= new_serial
.type
;
937 info
->close_delay
= new_serial
.close_delay
;
938 info
->closing_wait
= new_serial
.closing_wait
;
941 retval
= startup(info
);
946 * get_lsr_info - get line status register info
948 * Purpose: Let user call ioctl() to get info when the UART physically
949 * is emptied. On bus types like RS485, the transmitter must
950 * release the bus after transmitting. This must be done when
951 * the transmit shift register is empty, not be done when the
952 * transmit holding register is empty. This functionality
953 * allows an RS485 driver to be written in user space.
955 static int get_lsr_info(struct m68k_serial
* info
, unsigned int *value
)
957 #ifdef CONFIG_SERIAL_68328_RTS_CTS
958 m68328_uart
*uart
= &uart_addr
[info
->line
];
960 unsigned char status
;
963 local_irq_save(flags
);
964 #ifdef CONFIG_SERIAL_68328_RTS_CTS
965 status
= (uart
->utx
.w
& UTX_CTS_STAT
) ? 1 : 0;
969 local_irq_restore(flags
);
970 put_user(status
,value
);
975 * This routine sends a break character out the serial port.
977 static void send_break(struct m68k_serial
* info
, unsigned int duration
)
979 m68328_uart
*uart
= &uart_addr
[info
->line
];
983 local_irq_save(flags
);
985 uart
->utx
.w
|= UTX_SEND_BREAK
;
986 msleep_interruptible(duration
);
987 uart
->utx
.w
&= ~UTX_SEND_BREAK
;
989 local_irq_restore(flags
);
992 static int rs_ioctl(struct tty_struct
*tty
, struct file
* file
,
993 unsigned int cmd
, unsigned long arg
)
996 struct m68k_serial
* info
= (struct m68k_serial
*)tty
->driver_data
;
999 if (serial_paranoia_check(info
, tty
->name
, "rs_ioctl"))
1002 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1003 (cmd
!= TIOCSERCONFIG
) && (cmd
!= TIOCSERGWILD
) &&
1004 (cmd
!= TIOCSERSWILD
) && (cmd
!= TIOCSERGSTRUCT
)) {
1005 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1010 case TCSBRK
: /* SVID version: non-zero arg --> no break */
1011 retval
= tty_check_change(tty
);
1014 tty_wait_until_sent(tty
, 0);
1016 send_break(info
, 250); /* 1/4 second */
1018 case TCSBRKP
: /* support for POSIX tcsendbreak() */
1019 retval
= tty_check_change(tty
);
1022 tty_wait_until_sent(tty
, 0);
1023 send_break(info
, arg
? arg
*(100) : 250);
1026 error
= put_user(C_CLOCAL(tty
) ? 1 : 0,
1027 (unsigned long *) arg
);
1032 get_user(arg
, (unsigned long *) arg
);
1033 tty
->termios
->c_cflag
=
1034 ((tty
->termios
->c_cflag
& ~CLOCAL
) |
1035 (arg
? CLOCAL
: 0));
1038 if (access_ok(VERIFY_WRITE
, (void *) arg
,
1039 sizeof(struct serial_struct
)))
1040 return get_serial_info(info
,
1041 (struct serial_struct
*) arg
);
1044 return set_serial_info(info
,
1045 (struct serial_struct
*) arg
);
1046 case TIOCSERGETLSR
: /* Get line status register */
1047 if (access_ok(VERIFY_WRITE
, (void *) arg
,
1048 sizeof(unsigned int)))
1049 return get_lsr_info(info
, (unsigned int *) arg
);
1051 case TIOCSERGSTRUCT
:
1052 if (!access_ok(VERIFY_WRITE
, (void *) arg
,
1053 sizeof(struct m68k_serial
)))
1055 copy_to_user((struct m68k_serial
*) arg
,
1056 info
, sizeof(struct m68k_serial
));
1060 return -ENOIOCTLCMD
;
1065 static void rs_set_termios(struct tty_struct
*tty
, struct termios
*old_termios
)
1067 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
1069 if (tty
->termios
->c_cflag
== old_termios
->c_cflag
)
1074 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1075 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1076 tty
->hw_stopped
= 0;
1083 * ------------------------------------------------------------
1086 * This routine is called when the serial port gets closed. First, we
1087 * wait for the last remaining data to be sent. Then, we unlink its
1088 * S structure from the interrupt chain if necessary, and we free
1089 * that IRQ if nothing is left in the chain.
1090 * ------------------------------------------------------------
1092 static void rs_close(struct tty_struct
*tty
, struct file
* filp
)
1094 struct m68k_serial
* info
= (struct m68k_serial
*)tty
->driver_data
;
1095 m68328_uart
*uart
= &uart_addr
[info
->line
];
1096 unsigned long flags
;
1098 if (!info
|| serial_paranoia_check(info
, tty
->name
, "rs_close"))
1101 local_irq_save(flags
);
1103 if (tty_hung_up_p(filp
)) {
1104 local_irq_restore(flags
);
1108 if ((tty
->count
== 1) && (info
->count
!= 1)) {
1110 * Uh, oh. tty->count is 1, which means that the tty
1111 * structure will be freed. Info->count should always
1112 * be one in these conditions. If it's greater than
1113 * one, we've got real problems, since it means the
1114 * serial port won't be shutdown.
1116 printk("rs_close: bad serial port count; tty->count is 1, "
1117 "info->count is %d\n", info
->count
);
1120 if (--info
->count
< 0) {
1121 printk("rs_close: bad serial port count for ttyS%d: %d\n",
1122 info
->line
, info
->count
);
1126 local_irq_restore(flags
);
1129 info
->flags
|= S_CLOSING
;
1131 * Now we wait for the transmit buffer to clear; and we notify
1132 * the line discipline to only process XON/XOFF characters.
1135 if (info
->closing_wait
!= S_CLOSING_WAIT_NONE
)
1136 tty_wait_until_sent(tty
, info
->closing_wait
);
1138 * At this point we stop accepting input. To do this, we
1139 * disable the receive line status interrupts, and tell the
1140 * interrupt driver to stop checking the data ready bit in the
1141 * line status register.
1144 uart
->ustcnt
&= ~USTCNT_RXEN
;
1145 uart
->ustcnt
&= ~(USTCNT_RXEN
| USTCNT_RX_INTR_MASK
);
1148 if (tty
->driver
->flush_buffer
)
1149 tty
->driver
->flush_buffer(tty
);
1151 tty_ldisc_flush(tty
);
1155 #warning "This is not and has never been valid so fix it"
1157 if (tty
->ldisc
.num
!= ldiscs
[N_TTY
].num
) {
1158 if (tty
->ldisc
.close
)
1159 (tty
->ldisc
.close
)(tty
);
1160 tty
->ldisc
= ldiscs
[N_TTY
];
1161 tty
->termios
->c_line
= N_TTY
;
1162 if (tty
->ldisc
.open
)
1163 (tty
->ldisc
.open
)(tty
);
1166 if (info
->blocked_open
) {
1167 if (info
->close_delay
) {
1168 msleep_interruptible(jiffies_to_msecs(info
->close_delay
));
1170 wake_up_interruptible(&info
->open_wait
);
1172 info
->flags
&= ~(S_NORMAL_ACTIVE
|S_CLOSING
);
1173 wake_up_interruptible(&info
->close_wait
);
1174 local_irq_restore(flags
);
1178 * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
1180 void rs_hangup(struct tty_struct
*tty
)
1182 struct m68k_serial
* info
= (struct m68k_serial
*)tty
->driver_data
;
1184 if (serial_paranoia_check(info
, tty
->name
, "rs_hangup"))
1187 rs_flush_buffer(tty
);
1191 info
->flags
&= ~S_NORMAL_ACTIVE
;
1193 wake_up_interruptible(&info
->open_wait
);
1197 * ------------------------------------------------------------
1198 * rs_open() and friends
1199 * ------------------------------------------------------------
1201 static int block_til_ready(struct tty_struct
*tty
, struct file
* filp
,
1202 struct m68k_serial
*info
)
1204 DECLARE_WAITQUEUE(wait
, current
);
1209 * If the device is in the middle of being closed, then block
1210 * until it's done, and then try again.
1212 if (info
->flags
& S_CLOSING
) {
1213 interruptible_sleep_on(&info
->close_wait
);
1214 #ifdef SERIAL_DO_RESTART
1215 if (info
->flags
& S_HUP_NOTIFY
)
1218 return -ERESTARTSYS
;
1225 * If non-blocking mode is set, or the port is not enabled,
1226 * then make the check up front and then exit.
1228 if ((filp
->f_flags
& O_NONBLOCK
) ||
1229 (tty
->flags
& (1 << TTY_IO_ERROR
))) {
1230 info
->flags
|= S_NORMAL_ACTIVE
;
1234 if (tty
->termios
->c_cflag
& CLOCAL
)
1238 * Block waiting for the carrier detect and the line to become
1239 * free (i.e., not in use by the callout). While we are in
1240 * this loop, info->count is dropped by one, so that
1241 * rs_close() knows when to free things. We restore it upon
1242 * exit, either normal or abnormal.
1245 add_wait_queue(&info
->open_wait
, &wait
);
1248 info
->blocked_open
++;
1250 local_irq_disable();
1251 m68k_rtsdtr(info
, 1);
1253 current
->state
= TASK_INTERRUPTIBLE
;
1254 if (tty_hung_up_p(filp
) ||
1255 !(info
->flags
& S_INITIALIZED
)) {
1256 #ifdef SERIAL_DO_RESTART
1257 if (info
->flags
& S_HUP_NOTIFY
)
1260 retval
= -ERESTARTSYS
;
1266 if (!(info
->flags
& S_CLOSING
) && do_clocal
)
1268 if (signal_pending(current
)) {
1269 retval
= -ERESTARTSYS
;
1274 current
->state
= TASK_RUNNING
;
1275 remove_wait_queue(&info
->open_wait
, &wait
);
1276 if (!tty_hung_up_p(filp
))
1278 info
->blocked_open
--;
1282 info
->flags
|= S_NORMAL_ACTIVE
;
1287 * This routine is called whenever a serial port is opened. It
1288 * enables interrupts for a serial port, linking in its S structure into
1289 * the IRQ chain. It also performs the serial-specific
1290 * initialization for the tty structure.
1292 int rs_open(struct tty_struct
*tty
, struct file
* filp
)
1294 struct m68k_serial
*info
;
1299 if (line
>= NR_PORTS
|| line
< 0) /* we have exactly one */
1302 info
= &m68k_soft
[line
];
1304 if (serial_paranoia_check(info
, tty
->name
, "rs_open"))
1308 tty
->driver_data
= info
;
1312 * Start up serial port
1314 retval
= startup(info
);
1318 return block_til_ready(tty
, filp
, info
);
1321 /* Finally, routines used to initialize the serial driver. */
1323 static void show_serial_version(void)
1325 printk("MC68328 serial driver version 1.00\n");
1328 #ifdef CONFIG_PM_LEGACY
1329 /* Serial Power management
1330 * The console (currently fixed at line 0) is a special case for power
1331 * management because the kernel is so chatty. The console will be
1332 * explicitly disabled my our power manager as the last minute, so we won't
1333 * mess with it here.
1335 static struct pm_dev
*serial_pm
[NR_PORTS
];
1337 static int serial_pm_callback(struct pm_dev
*dev
, pm_request_t request
, void *data
)
1339 struct m68k_serial
*info
= (struct m68k_serial
*)dev
->data
;
1344 /* special case for line 0 - pm restores it */
1360 void shutdown_console(void)
1362 struct m68k_serial
*info
= &m68k_soft
[0];
1364 /* HACK: wait a bit for any pending printk's to be dumped */
1373 void startup_console(void)
1375 struct m68k_serial
*info
= &m68k_soft
[0];
1378 #endif /* CONFIG_PM_LEGACY */
1381 static struct tty_operations rs_ops
= {
1385 .flush_chars
= rs_flush_chars
,
1386 .write_room
= rs_write_room
,
1387 .chars_in_buffer
= rs_chars_in_buffer
,
1388 .flush_buffer
= rs_flush_buffer
,
1390 .throttle
= rs_throttle
,
1391 .unthrottle
= rs_unthrottle
,
1392 .set_termios
= rs_set_termios
,
1395 .hangup
= rs_hangup
,
1396 .set_ldisc
= rs_set_ldisc
,
1399 /* rs_init inits the driver */
1404 struct m68k_serial
*info
;
1406 serial_driver
= alloc_tty_driver(NR_PORTS
);
1410 show_serial_version();
1412 /* Initialize the tty_driver structure */
1413 /* SPARC: Not all of this is exactly right for us. */
1415 serial_driver
->name
= "ttyS";
1416 serial_driver
->major
= TTY_MAJOR
;
1417 serial_driver
->minor_start
= 64;
1418 serial_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1419 serial_driver
->subtype
= SERIAL_TYPE_NORMAL
;
1420 serial_driver
->init_termios
= tty_std_termios
;
1421 serial_driver
->init_termios
.c_cflag
=
1422 m68328_console_cbaud
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1423 serial_driver
->flags
= TTY_DRIVER_REAL_RAW
;
1424 tty_set_operations(serial_driver
, &rs_ops
);
1426 if (tty_register_driver(serial_driver
)) {
1427 put_tty_driver(serial_driver
);
1428 printk(KERN_ERR
"Couldn't register serial driver\n");
1432 local_irq_save(flags
);
1434 for(i
=0;i
<NR_PORTS
;i
++) {
1436 info
= &m68k_soft
[i
];
1437 info
->magic
= SERIAL_MAGIC
;
1438 info
->port
= (int) &uart_addr
[i
];
1440 info
->irq
= uart_irqs
[i
];
1441 info
->custom_divisor
= 16;
1442 info
->close_delay
= 50;
1443 info
->closing_wait
= 3000;
1447 info
->blocked_open
= 0;
1448 INIT_WORK(&info
->tqueue
, do_softint
, info
);
1449 INIT_WORK(&info
->tqueue_hangup
, do_serial_hangup
, info
);
1450 init_waitqueue_head(&info
->open_wait
);
1451 init_waitqueue_head(&info
->close_wait
);
1453 info
->is_cons
= 1; /* Means shortcuts work */
1455 printk("%s%d at 0x%08x (irq = %d)", serial_driver
->name
, info
->line
,
1456 info
->port
, info
->irq
);
1457 printk(" is a builtin MC68328 UART\n");
1459 IRQ_ports
[info
->irq
] = info
; /* waste of space */
1461 #ifdef CONFIG_M68VZ328
1463 PJSEL
&= 0xCF; /* PSW enable second port output */
1466 if (request_irq(uart_irqs
[i
],
1469 "M68328_UART", NULL
))
1470 panic("Unable to attach 68328 serial interrupt\n");
1471 #ifdef CONFIG_PM_LEGACY
1472 serial_pm
[i
] = pm_register(PM_SYS_DEV
, PM_SYS_COM
, serial_pm_callback
);
1474 serial_pm
[i
]->data
= info
;
1477 local_irq_restore(flags
);
1481 module_init(rs68328_init
);
1485 static void m68328_set_baud(void)
1487 unsigned short ustcnt
;
1491 USTCNT
= ustcnt
& ~USTCNT_TXEN
;
1494 for (i
= 0; i
< sizeof(baud_table
) / sizeof(baud_table
[0]); i
++)
1495 if (baud_table
[i
] == m68328_console_baud
)
1497 if (i
>= sizeof(baud_table
) / sizeof(baud_table
[0])) {
1498 m68328_console_baud
= 9600;
1502 UBAUD
= PUT_FIELD(UBAUD_DIVIDE
, hw_baud_table
[i
].divisor
) |
1503 PUT_FIELD(UBAUD_PRESCALER
, hw_baud_table
[i
].prescale
);
1504 ustcnt
&= ~(USTCNT_PARITYEN
| USTCNT_ODD_EVEN
| USTCNT_STOP
| USTCNT_8_7
);
1505 ustcnt
|= USTCNT_8_7
;
1506 ustcnt
|= USTCNT_TXEN
;
1508 m68328_console_initted
= 1;
1513 int m68328_console_setup(struct console
*cp
, char *arg
)
1515 int i
, n
= CONSOLE_BAUD_RATE
;
1521 n
= simple_strtoul(arg
,NULL
,0);
1523 for (i
= 0; i
< BAUD_TABLE_SIZE
; i
++)
1524 if (baud_table
[i
] == n
)
1526 if (i
< BAUD_TABLE_SIZE
) {
1527 m68328_console_baud
= n
;
1528 m68328_console_cbaud
= 0;
1530 m68328_console_cbaud
|= CBAUDEX
;
1533 m68328_console_cbaud
|= i
;
1536 m68328_set_baud(); /* make sure baud rate changes */
1541 static struct tty_driver
*m68328_console_device(struct console
*c
, int *index
)
1544 return serial_driver
;
1548 void m68328_console_write (struct console
*co
, const char *str
,
1551 if (!m68328_console_initted
)
1556 rs_put_char( *str
++ );
1561 static struct console m68328_driver
= {
1563 .write
= m68328_console_write
,
1564 .device
= m68328_console_device
,
1565 .setup
= m68328_console_setup
,
1566 .flags
= CON_PRINTBUFFER
,
1571 static int __init
m68328_console_init(void)
1573 register_console(&m68328_driver
);
1577 console_initcall(m68328_console_init
);