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
, unsigned short rx
)
280 struct tty_struct
*tty
= info
->tty
;
281 m68328_uart
*uart
= &uart_addr
[info
->line
];
282 unsigned char ch
, flag
;
285 * This do { } while() loop will get ALL chars out of Rx FIFO
287 #ifndef CONFIG_XCOPILOT_BUGS
290 ch
= GET_FIELD(rx
, URX_RXDATA
);
293 if(URX_BREAK
& rx
) { /* whee, break received */
294 status_handle(info
, rx
);
296 #ifdef CONFIG_MAGIC_SYSRQ
297 } else if (ch
== 0x10) { /* ^P */
301 /* show_net_buffers(); */
303 } else if (ch
== 0x12) { /* ^R */
306 #endif /* CONFIG_MAGIC_SYSRQ */
308 /* It is a 'keyboard interrupt' ;-) */
309 #ifdef CONFIG_CONSOLE
310 wake_up(&keypress_wait
);
319 if(rx
& URX_PARITY_ERROR
) {
321 status_handle(info
, rx
);
322 } else if(rx
& URX_OVRUN
) {
324 status_handle(info
, rx
);
325 } else if(rx
& URX_FRAME_ERROR
) {
327 status_handle(info
, rx
);
329 tty_insert_flip_char(tty
, ch
, flag
);
330 #ifndef CONFIG_XCOPILOT_BUGS
331 } while((rx
= uart
->urx
.w
) & URX_DATA_READY
);
334 tty_schedule_flip(tty
);
340 static void transmit_chars(struct m68k_serial
*info
)
342 m68328_uart
*uart
= &uart_addr
[info
->line
];
346 uart
->utx
.b
.txdata
= info
->x_char
;
348 goto clear_and_return
;
351 if((info
->xmit_cnt
<= 0) || info
->tty
->stopped
) {
352 /* That's peculiar... TX ints off */
353 uart
->ustcnt
&= ~USTCNT_TX_INTR_MASK
;
354 goto clear_and_return
;
358 uart
->utx
.b
.txdata
= info
->xmit_buf
[info
->xmit_tail
++];
359 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
362 if (info
->xmit_cnt
< WAKEUP_CHARS
)
363 schedule_work(&info
->tqueue
);
365 if(info
->xmit_cnt
<= 0) {
366 /* All done for now... TX ints off */
367 uart
->ustcnt
&= ~USTCNT_TX_INTR_MASK
;
368 goto clear_and_return
;
372 /* Clear interrupt (should be auto)*/
377 * This is the serial driver's generic interrupt routine
379 irqreturn_t
rs_interrupt(int irq
, void *dev_id
)
381 struct m68k_serial
* info
;
386 info
= IRQ_ports
[irq
];
390 uart
= &uart_addr
[info
->line
];
396 if (rx
& URX_DATA_READY
) receive_chars(info
, rx
);
397 if (tx
& UTX_TX_AVAIL
) transmit_chars(info
);
399 receive_chars(info
, rx
);
404 static void do_softint(void *private)
406 struct m68k_serial
*info
= (struct m68k_serial
*) private;
407 struct tty_struct
*tty
;
413 if (clear_bit(RS_EVENT_WRITE_WAKEUP
, &info
->event
)) {
420 * This routine is called from the scheduler tqueue when the interrupt
421 * routine has signalled that a hangup has occurred. The path of
422 * hangup processing is:
424 * serial interrupt routine -> (scheduler tqueue) ->
425 * do_serial_hangup() -> tty->hangup() -> rs_hangup()
428 static void do_serial_hangup(void *private)
430 struct m68k_serial
*info
= (struct m68k_serial
*) private;
431 struct tty_struct
*tty
;
441 static int startup(struct m68k_serial
* info
)
443 m68328_uart
*uart
= &uart_addr
[info
->line
];
446 if (info
->flags
& S_INITIALIZED
)
449 if (!info
->xmit_buf
) {
450 info
->xmit_buf
= (unsigned char *) __get_free_page(GFP_KERNEL
);
455 local_irq_save(flags
);
458 * Clear the FIFO buffers and disable them
459 * (they will be reenabled in change_speed())
462 uart
->ustcnt
= USTCNT_UEN
;
463 info
->xmit_fifo_size
= 1;
464 uart
->ustcnt
= USTCNT_UEN
| USTCNT_RXEN
| USTCNT_TXEN
;
468 * Finally, enable sequencing and interrupts
471 uart
->ustcnt
= USTCNT_UEN
| USTCNT_RXEN
|
472 USTCNT_RX_INTR_MASK
| USTCNT_TX_INTR_MASK
;
474 uart
->ustcnt
= USTCNT_UEN
| USTCNT_RXEN
| USTCNT_RX_INTR_MASK
;
478 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
479 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
482 * and set the speed of the serial port
487 info
->flags
|= S_INITIALIZED
;
488 local_irq_restore(flags
);
493 * This routine will shutdown a serial port; interrupts are disabled, and
494 * DTR is dropped if the hangup on close termio flag is on.
496 static void shutdown(struct m68k_serial
* info
)
498 m68328_uart
*uart
= &uart_addr
[info
->line
];
501 uart
->ustcnt
= 0; /* All off! */
502 if (!(info
->flags
& S_INITIALIZED
))
505 local_irq_save(flags
);
507 if (info
->xmit_buf
) {
508 free_page((unsigned long) info
->xmit_buf
);
513 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
515 info
->flags
&= ~S_INITIALIZED
;
516 local_irq_restore(flags
);
520 int divisor
, prescale
;
522 #ifndef CONFIG_M68VZ328
523 hw_baud_table
[18] = {
538 {1,0x26}, /* 19200 */
539 {0,0x26}, /* 38400 */
540 {1,0x38}, /* 57600 */
541 {0,0x38}, /* 115200 */
544 hw_baud_table
[18] = {
559 {2,0x26}, /* 19200 */
560 {1,0x26}, /* 38400 */
561 {0,0x26}, /* 57600 */
562 {1,0x38}, /* 115200 */
565 /* rate = 1036800 / ((65 - prescale) * (1<<divider)) */
568 * This routine is called to set the UART divisor registers to match
569 * the specified baud rate for a serial port.
571 static void change_speed(struct m68k_serial
*info
)
573 m68328_uart
*uart
= &uart_addr
[info
->line
];
575 unsigned short ustcnt
;
579 if (!info
->tty
|| !info
->tty
->termios
)
581 cflag
= info
->tty
->termios
->c_cflag
;
582 if (!(port
= info
->port
))
585 ustcnt
= uart
->ustcnt
;
586 uart
->ustcnt
= ustcnt
& ~USTCNT_TXEN
;
590 i
= (i
& ~CBAUDEX
) + B38400
;
593 info
->baud
= baud_table
[i
];
594 uart
->ubaud
= PUT_FIELD(UBAUD_DIVIDE
, hw_baud_table
[i
].divisor
) |
595 PUT_FIELD(UBAUD_PRESCALER
, hw_baud_table
[i
].prescale
);
597 ustcnt
&= ~(USTCNT_PARITYEN
| USTCNT_ODD_EVEN
| USTCNT_STOP
| USTCNT_8_7
);
599 if ((cflag
& CSIZE
) == CS8
)
600 ustcnt
|= USTCNT_8_7
;
603 ustcnt
|= USTCNT_STOP
;
606 ustcnt
|= USTCNT_PARITYEN
;
608 ustcnt
|= USTCNT_ODD_EVEN
;
610 #ifdef CONFIG_SERIAL_68328_RTS_CTS
611 if (cflag
& CRTSCTS
) {
612 uart
->utx
.w
&= ~ UTX_NOCTS
;
614 uart
->utx
.w
|= UTX_NOCTS
;
618 ustcnt
|= USTCNT_TXEN
;
620 uart
->ustcnt
= ustcnt
;
625 * Fair output driver allows a process to speak.
627 static void rs_fair_output(void)
629 int left
; /* Output no more than that */
631 struct m68k_serial
*info
= &m68k_soft
[0];
634 if (info
== 0) return;
635 if (info
->xmit_buf
== 0) return;
637 local_irq_save(flags
);
638 left
= info
->xmit_cnt
;
640 c
= info
->xmit_buf
[info
->xmit_tail
];
641 info
->xmit_tail
= (info
->xmit_tail
+1) & (SERIAL_XMIT_SIZE
-1);
643 local_irq_restore(flags
);
647 local_irq_save(flags
);
648 left
= min(info
->xmit_cnt
, left
-1);
651 /* Last character is being transmitted now (hopefully). */
654 local_irq_restore(flags
);
659 * m68k_console_print is registered for printk.
661 void console_print_68328(const char *p
)
665 while((c
=*(p
++)) != 0) {
671 /* Comment this if you want to have a strict interrupt-driven output */
677 static void rs_set_ldisc(struct tty_struct
*tty
)
679 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
681 if (serial_paranoia_check(info
, tty
->name
, "rs_set_ldisc"))
684 info
->is_cons
= (tty
->termios
->c_line
== N_TTY
);
686 printk("ttyS%d console mode %s\n", info
->line
, info
->is_cons
? "on" : "off");
689 static void rs_flush_chars(struct tty_struct
*tty
)
691 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
692 m68328_uart
*uart
= &uart_addr
[info
->line
];
695 if (serial_paranoia_check(info
, tty
->name
, "rs_flush_chars"))
701 /* Enable transmitter */
702 local_irq_save(flags
);
704 if (info
->xmit_cnt
<= 0 || tty
->stopped
|| tty
->hw_stopped
||
706 local_irq_restore(flags
);
711 uart
->ustcnt
|= USTCNT_TXEN
| USTCNT_TX_INTR_MASK
;
713 uart
->ustcnt
|= USTCNT_TXEN
;
717 if (uart
->utx
.w
& UTX_TX_AVAIL
) {
722 uart
->utx
.b
.txdata
= info
->xmit_buf
[info
->xmit_tail
++];
723 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
728 while (!(uart
->utx
.w
& UTX_TX_AVAIL
)) udelay(5);
731 local_irq_restore(flags
);
734 extern void console_printn(const char * b
, int count
);
736 static int rs_write(struct tty_struct
* tty
,
737 const unsigned char *buf
, int count
)
740 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
741 m68328_uart
*uart
= &uart_addr
[info
->line
];
744 if (serial_paranoia_check(info
, tty
->name
, "rs_write"))
747 if (!tty
|| !info
->xmit_buf
)
750 local_save_flags(flags
);
753 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
754 SERIAL_XMIT_SIZE
- info
->xmit_head
));
755 local_irq_restore(flags
);
760 memcpy(info
->xmit_buf
+ info
->xmit_head
, buf
, c
);
763 info
->xmit_head
= (info
->xmit_head
+ c
) & (SERIAL_XMIT_SIZE
-1);
765 local_irq_restore(flags
);
771 if (info
->xmit_cnt
&& !tty
->stopped
&& !tty
->hw_stopped
) {
772 /* Enable transmitter */
775 while(info
->xmit_cnt
) {
778 uart
->ustcnt
|= USTCNT_TXEN
;
780 uart
->ustcnt
|= USTCNT_TX_INTR_MASK
;
782 while (!(uart
->utx
.w
& UTX_TX_AVAIL
)) udelay(5);
784 if (uart
->utx
.w
& UTX_TX_AVAIL
) {
785 uart
->utx
.b
.txdata
= info
->xmit_buf
[info
->xmit_tail
++];
786 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
793 local_irq_restore(flags
);
799 static int rs_write_room(struct tty_struct
*tty
)
801 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
804 if (serial_paranoia_check(info
, tty
->name
, "rs_write_room"))
806 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
812 static int rs_chars_in_buffer(struct tty_struct
*tty
)
814 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
816 if (serial_paranoia_check(info
, tty
->name
, "rs_chars_in_buffer"))
818 return info
->xmit_cnt
;
821 static void rs_flush_buffer(struct tty_struct
*tty
)
823 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
826 if (serial_paranoia_check(info
, tty
->name
, "rs_flush_buffer"))
828 local_irq_save(flags
);
829 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
830 local_irq_restore(flags
);
835 * ------------------------------------------------------------
838 * This routine is called by the upper-layer tty layer to signal that
839 * incoming characters should be throttled.
840 * ------------------------------------------------------------
842 static void rs_throttle(struct tty_struct
* tty
)
844 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
846 if (serial_paranoia_check(info
, tty
->name
, "rs_throttle"))
850 info
->x_char
= STOP_CHAR(tty
);
852 /* Turn off RTS line (do this atomic) */
855 static void rs_unthrottle(struct tty_struct
* tty
)
857 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
859 if (serial_paranoia_check(info
, tty
->name
, "rs_unthrottle"))
866 info
->x_char
= START_CHAR(tty
);
869 /* Assert RTS line (do this atomic) */
873 * ------------------------------------------------------------
874 * rs_ioctl() and friends
875 * ------------------------------------------------------------
878 static int get_serial_info(struct m68k_serial
* info
,
879 struct serial_struct
* retinfo
)
881 struct serial_struct tmp
;
885 memset(&tmp
, 0, sizeof(tmp
));
886 tmp
.type
= info
->type
;
887 tmp
.line
= info
->line
;
888 tmp
.port
= info
->port
;
890 tmp
.flags
= info
->flags
;
891 tmp
.baud_base
= info
->baud_base
;
892 tmp
.close_delay
= info
->close_delay
;
893 tmp
.closing_wait
= info
->closing_wait
;
894 tmp
.custom_divisor
= info
->custom_divisor
;
895 copy_to_user(retinfo
,&tmp
,sizeof(*retinfo
));
899 static int set_serial_info(struct m68k_serial
* info
,
900 struct serial_struct
* new_info
)
902 struct serial_struct new_serial
;
903 struct m68k_serial old_info
;
908 copy_from_user(&new_serial
,new_info
,sizeof(new_serial
));
911 if (!capable(CAP_SYS_ADMIN
)) {
912 if ((new_serial
.baud_base
!= info
->baud_base
) ||
913 (new_serial
.type
!= info
->type
) ||
914 (new_serial
.close_delay
!= info
->close_delay
) ||
915 ((new_serial
.flags
& ~S_USR_MASK
) !=
916 (info
->flags
& ~S_USR_MASK
)))
918 info
->flags
= ((info
->flags
& ~S_USR_MASK
) |
919 (new_serial
.flags
& S_USR_MASK
));
920 info
->custom_divisor
= new_serial
.custom_divisor
;
928 * OK, past this point, all the error checking has been done.
929 * At this point, we start making changes.....
932 info
->baud_base
= new_serial
.baud_base
;
933 info
->flags
= ((info
->flags
& ~S_FLAGS
) |
934 (new_serial
.flags
& S_FLAGS
));
935 info
->type
= new_serial
.type
;
936 info
->close_delay
= new_serial
.close_delay
;
937 info
->closing_wait
= new_serial
.closing_wait
;
940 retval
= startup(info
);
945 * get_lsr_info - get line status register info
947 * Purpose: Let user call ioctl() to get info when the UART physically
948 * is emptied. On bus types like RS485, the transmitter must
949 * release the bus after transmitting. This must be done when
950 * the transmit shift register is empty, not be done when the
951 * transmit holding register is empty. This functionality
952 * allows an RS485 driver to be written in user space.
954 static int get_lsr_info(struct m68k_serial
* info
, unsigned int *value
)
956 #ifdef CONFIG_SERIAL_68328_RTS_CTS
957 m68328_uart
*uart
= &uart_addr
[info
->line
];
959 unsigned char status
;
962 local_irq_save(flags
);
963 #ifdef CONFIG_SERIAL_68328_RTS_CTS
964 status
= (uart
->utx
.w
& UTX_CTS_STAT
) ? 1 : 0;
968 local_irq_restore(flags
);
969 put_user(status
,value
);
974 * This routine sends a break character out the serial port.
976 static void send_break(struct m68k_serial
* info
, unsigned int duration
)
978 m68328_uart
*uart
= &uart_addr
[info
->line
];
982 local_irq_save(flags
);
984 uart
->utx
.w
|= UTX_SEND_BREAK
;
985 msleep_interruptible(duration
);
986 uart
->utx
.w
&= ~UTX_SEND_BREAK
;
988 local_irq_restore(flags
);
991 static int rs_ioctl(struct tty_struct
*tty
, struct file
* file
,
992 unsigned int cmd
, unsigned long arg
)
995 struct m68k_serial
* info
= (struct m68k_serial
*)tty
->driver_data
;
998 if (serial_paranoia_check(info
, tty
->name
, "rs_ioctl"))
1001 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1002 (cmd
!= TIOCSERCONFIG
) && (cmd
!= TIOCSERGWILD
) &&
1003 (cmd
!= TIOCSERSWILD
) && (cmd
!= TIOCSERGSTRUCT
)) {
1004 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1009 case TCSBRK
: /* SVID version: non-zero arg --> no break */
1010 retval
= tty_check_change(tty
);
1013 tty_wait_until_sent(tty
, 0);
1015 send_break(info
, 250); /* 1/4 second */
1017 case TCSBRKP
: /* support for POSIX tcsendbreak() */
1018 retval
= tty_check_change(tty
);
1021 tty_wait_until_sent(tty
, 0);
1022 send_break(info
, arg
? arg
*(100) : 250);
1025 error
= put_user(C_CLOCAL(tty
) ? 1 : 0,
1026 (unsigned long *) arg
);
1031 get_user(arg
, (unsigned long *) arg
);
1032 tty
->termios
->c_cflag
=
1033 ((tty
->termios
->c_cflag
& ~CLOCAL
) |
1034 (arg
? CLOCAL
: 0));
1037 if (access_ok(VERIFY_WRITE
, (void *) arg
,
1038 sizeof(struct serial_struct
)))
1039 return get_serial_info(info
,
1040 (struct serial_struct
*) arg
);
1043 return set_serial_info(info
,
1044 (struct serial_struct
*) arg
);
1045 case TIOCSERGETLSR
: /* Get line status register */
1046 if (access_ok(VERIFY_WRITE
, (void *) arg
,
1047 sizeof(unsigned int)))
1048 return get_lsr_info(info
, (unsigned int *) arg
);
1050 case TIOCSERGSTRUCT
:
1051 if (!access_ok(VERIFY_WRITE
, (void *) arg
,
1052 sizeof(struct m68k_serial
)))
1054 copy_to_user((struct m68k_serial
*) arg
,
1055 info
, sizeof(struct m68k_serial
));
1059 return -ENOIOCTLCMD
;
1064 static void rs_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1066 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
1068 if (tty
->termios
->c_cflag
== old_termios
->c_cflag
)
1073 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1074 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1075 tty
->hw_stopped
= 0;
1082 * ------------------------------------------------------------
1085 * This routine is called when the serial port gets closed. First, we
1086 * wait for the last remaining data to be sent. Then, we unlink its
1087 * S structure from the interrupt chain if necessary, and we free
1088 * that IRQ if nothing is left in the chain.
1089 * ------------------------------------------------------------
1091 static void rs_close(struct tty_struct
*tty
, struct file
* filp
)
1093 struct m68k_serial
* info
= (struct m68k_serial
*)tty
->driver_data
;
1094 m68328_uart
*uart
= &uart_addr
[info
->line
];
1095 unsigned long flags
;
1097 if (!info
|| serial_paranoia_check(info
, tty
->name
, "rs_close"))
1100 local_irq_save(flags
);
1102 if (tty_hung_up_p(filp
)) {
1103 local_irq_restore(flags
);
1107 if ((tty
->count
== 1) && (info
->count
!= 1)) {
1109 * Uh, oh. tty->count is 1, which means that the tty
1110 * structure will be freed. Info->count should always
1111 * be one in these conditions. If it's greater than
1112 * one, we've got real problems, since it means the
1113 * serial port won't be shutdown.
1115 printk("rs_close: bad serial port count; tty->count is 1, "
1116 "info->count is %d\n", info
->count
);
1119 if (--info
->count
< 0) {
1120 printk("rs_close: bad serial port count for ttyS%d: %d\n",
1121 info
->line
, info
->count
);
1125 local_irq_restore(flags
);
1128 info
->flags
|= S_CLOSING
;
1130 * Now we wait for the transmit buffer to clear; and we notify
1131 * the line discipline to only process XON/XOFF characters.
1134 if (info
->closing_wait
!= S_CLOSING_WAIT_NONE
)
1135 tty_wait_until_sent(tty
, info
->closing_wait
);
1137 * At this point we stop accepting input. To do this, we
1138 * disable the receive line status interrupts, and tell the
1139 * interrupt driver to stop checking the data ready bit in the
1140 * line status register.
1143 uart
->ustcnt
&= ~USTCNT_RXEN
;
1144 uart
->ustcnt
&= ~(USTCNT_RXEN
| USTCNT_RX_INTR_MASK
);
1147 if (tty
->driver
->flush_buffer
)
1148 tty
->driver
->flush_buffer(tty
);
1150 tty_ldisc_flush(tty
);
1154 #warning "This is not and has never been valid so fix it"
1156 if (tty
->ldisc
.num
!= ldiscs
[N_TTY
].num
) {
1157 if (tty
->ldisc
.close
)
1158 (tty
->ldisc
.close
)(tty
);
1159 tty
->ldisc
= ldiscs
[N_TTY
];
1160 tty
->termios
->c_line
= N_TTY
;
1161 if (tty
->ldisc
.open
)
1162 (tty
->ldisc
.open
)(tty
);
1165 if (info
->blocked_open
) {
1166 if (info
->close_delay
) {
1167 msleep_interruptible(jiffies_to_msecs(info
->close_delay
));
1169 wake_up_interruptible(&info
->open_wait
);
1171 info
->flags
&= ~(S_NORMAL_ACTIVE
|S_CLOSING
);
1172 wake_up_interruptible(&info
->close_wait
);
1173 local_irq_restore(flags
);
1177 * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
1179 void rs_hangup(struct tty_struct
*tty
)
1181 struct m68k_serial
* info
= (struct m68k_serial
*)tty
->driver_data
;
1183 if (serial_paranoia_check(info
, tty
->name
, "rs_hangup"))
1186 rs_flush_buffer(tty
);
1190 info
->flags
&= ~S_NORMAL_ACTIVE
;
1192 wake_up_interruptible(&info
->open_wait
);
1196 * ------------------------------------------------------------
1197 * rs_open() and friends
1198 * ------------------------------------------------------------
1200 static int block_til_ready(struct tty_struct
*tty
, struct file
* filp
,
1201 struct m68k_serial
*info
)
1203 DECLARE_WAITQUEUE(wait
, current
);
1208 * If the device is in the middle of being closed, then block
1209 * until it's done, and then try again.
1211 if (info
->flags
& S_CLOSING
) {
1212 interruptible_sleep_on(&info
->close_wait
);
1213 #ifdef SERIAL_DO_RESTART
1214 if (info
->flags
& S_HUP_NOTIFY
)
1217 return -ERESTARTSYS
;
1224 * If non-blocking mode is set, or the port is not enabled,
1225 * then make the check up front and then exit.
1227 if ((filp
->f_flags
& O_NONBLOCK
) ||
1228 (tty
->flags
& (1 << TTY_IO_ERROR
))) {
1229 info
->flags
|= S_NORMAL_ACTIVE
;
1233 if (tty
->termios
->c_cflag
& CLOCAL
)
1237 * Block waiting for the carrier detect and the line to become
1238 * free (i.e., not in use by the callout). While we are in
1239 * this loop, info->count is dropped by one, so that
1240 * rs_close() knows when to free things. We restore it upon
1241 * exit, either normal or abnormal.
1244 add_wait_queue(&info
->open_wait
, &wait
);
1247 info
->blocked_open
++;
1249 local_irq_disable();
1250 m68k_rtsdtr(info
, 1);
1252 current
->state
= TASK_INTERRUPTIBLE
;
1253 if (tty_hung_up_p(filp
) ||
1254 !(info
->flags
& S_INITIALIZED
)) {
1255 #ifdef SERIAL_DO_RESTART
1256 if (info
->flags
& S_HUP_NOTIFY
)
1259 retval
= -ERESTARTSYS
;
1265 if (!(info
->flags
& S_CLOSING
) && do_clocal
)
1267 if (signal_pending(current
)) {
1268 retval
= -ERESTARTSYS
;
1273 current
->state
= TASK_RUNNING
;
1274 remove_wait_queue(&info
->open_wait
, &wait
);
1275 if (!tty_hung_up_p(filp
))
1277 info
->blocked_open
--;
1281 info
->flags
|= S_NORMAL_ACTIVE
;
1286 * This routine is called whenever a serial port is opened. It
1287 * enables interrupts for a serial port, linking in its S structure into
1288 * the IRQ chain. It also performs the serial-specific
1289 * initialization for the tty structure.
1291 int rs_open(struct tty_struct
*tty
, struct file
* filp
)
1293 struct m68k_serial
*info
;
1298 if (line
>= NR_PORTS
|| line
< 0) /* we have exactly one */
1301 info
= &m68k_soft
[line
];
1303 if (serial_paranoia_check(info
, tty
->name
, "rs_open"))
1307 tty
->driver_data
= info
;
1311 * Start up serial port
1313 retval
= startup(info
);
1317 return block_til_ready(tty
, filp
, info
);
1320 /* Finally, routines used to initialize the serial driver. */
1322 static void show_serial_version(void)
1324 printk("MC68328 serial driver version 1.00\n");
1327 #ifdef CONFIG_PM_LEGACY
1328 /* Serial Power management
1329 * The console (currently fixed at line 0) is a special case for power
1330 * management because the kernel is so chatty. The console will be
1331 * explicitly disabled my our power manager as the last minute, so we won't
1332 * mess with it here.
1334 static struct pm_dev
*serial_pm
[NR_PORTS
];
1336 static int serial_pm_callback(struct pm_dev
*dev
, pm_request_t request
, void *data
)
1338 struct m68k_serial
*info
= (struct m68k_serial
*)dev
->data
;
1343 /* special case for line 0 - pm restores it */
1359 void shutdown_console(void)
1361 struct m68k_serial
*info
= &m68k_soft
[0];
1363 /* HACK: wait a bit for any pending printk's to be dumped */
1372 void startup_console(void)
1374 struct m68k_serial
*info
= &m68k_soft
[0];
1377 #endif /* CONFIG_PM_LEGACY */
1380 static const struct tty_operations rs_ops
= {
1384 .flush_chars
= rs_flush_chars
,
1385 .write_room
= rs_write_room
,
1386 .chars_in_buffer
= rs_chars_in_buffer
,
1387 .flush_buffer
= rs_flush_buffer
,
1389 .throttle
= rs_throttle
,
1390 .unthrottle
= rs_unthrottle
,
1391 .set_termios
= rs_set_termios
,
1394 .hangup
= rs_hangup
,
1395 .set_ldisc
= rs_set_ldisc
,
1398 /* rs_init inits the driver */
1403 struct m68k_serial
*info
;
1405 serial_driver
= alloc_tty_driver(NR_PORTS
);
1409 show_serial_version();
1411 /* Initialize the tty_driver structure */
1412 /* SPARC: Not all of this is exactly right for us. */
1414 serial_driver
->name
= "ttyS";
1415 serial_driver
->major
= TTY_MAJOR
;
1416 serial_driver
->minor_start
= 64;
1417 serial_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1418 serial_driver
->subtype
= SERIAL_TYPE_NORMAL
;
1419 serial_driver
->init_termios
= tty_std_termios
;
1420 serial_driver
->init_termios
.c_cflag
=
1421 m68328_console_cbaud
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1422 serial_driver
->flags
= TTY_DRIVER_REAL_RAW
;
1423 tty_set_operations(serial_driver
, &rs_ops
);
1425 if (tty_register_driver(serial_driver
)) {
1426 put_tty_driver(serial_driver
);
1427 printk(KERN_ERR
"Couldn't register serial driver\n");
1431 local_irq_save(flags
);
1433 for(i
=0;i
<NR_PORTS
;i
++) {
1435 info
= &m68k_soft
[i
];
1436 info
->magic
= SERIAL_MAGIC
;
1437 info
->port
= (int) &uart_addr
[i
];
1439 info
->irq
= uart_irqs
[i
];
1440 info
->custom_divisor
= 16;
1441 info
->close_delay
= 50;
1442 info
->closing_wait
= 3000;
1446 info
->blocked_open
= 0;
1447 INIT_WORK(&info
->tqueue
, do_softint
, info
);
1448 INIT_WORK(&info
->tqueue_hangup
, do_serial_hangup
, info
);
1449 init_waitqueue_head(&info
->open_wait
);
1450 init_waitqueue_head(&info
->close_wait
);
1452 info
->is_cons
= 1; /* Means shortcuts work */
1454 printk("%s%d at 0x%08x (irq = %d)", serial_driver
->name
, info
->line
,
1455 info
->port
, info
->irq
);
1456 printk(" is a builtin MC68328 UART\n");
1458 IRQ_ports
[info
->irq
] = info
; /* waste of space */
1460 #ifdef CONFIG_M68VZ328
1462 PJSEL
&= 0xCF; /* PSW enable second port output */
1465 if (request_irq(uart_irqs
[i
],
1468 "M68328_UART", NULL
))
1469 panic("Unable to attach 68328 serial interrupt\n");
1470 #ifdef CONFIG_PM_LEGACY
1471 serial_pm
[i
] = pm_register(PM_SYS_DEV
, PM_SYS_COM
, serial_pm_callback
);
1473 serial_pm
[i
]->data
= info
;
1476 local_irq_restore(flags
);
1480 module_init(rs68328_init
);
1484 static void m68328_set_baud(void)
1486 unsigned short ustcnt
;
1490 USTCNT
= ustcnt
& ~USTCNT_TXEN
;
1493 for (i
= 0; i
< sizeof(baud_table
) / sizeof(baud_table
[0]); i
++)
1494 if (baud_table
[i
] == m68328_console_baud
)
1496 if (i
>= sizeof(baud_table
) / sizeof(baud_table
[0])) {
1497 m68328_console_baud
= 9600;
1501 UBAUD
= PUT_FIELD(UBAUD_DIVIDE
, hw_baud_table
[i
].divisor
) |
1502 PUT_FIELD(UBAUD_PRESCALER
, hw_baud_table
[i
].prescale
);
1503 ustcnt
&= ~(USTCNT_PARITYEN
| USTCNT_ODD_EVEN
| USTCNT_STOP
| USTCNT_8_7
);
1504 ustcnt
|= USTCNT_8_7
;
1505 ustcnt
|= USTCNT_TXEN
;
1507 m68328_console_initted
= 1;
1512 int m68328_console_setup(struct console
*cp
, char *arg
)
1514 int i
, n
= CONSOLE_BAUD_RATE
;
1520 n
= simple_strtoul(arg
,NULL
,0);
1522 for (i
= 0; i
< BAUD_TABLE_SIZE
; i
++)
1523 if (baud_table
[i
] == n
)
1525 if (i
< BAUD_TABLE_SIZE
) {
1526 m68328_console_baud
= n
;
1527 m68328_console_cbaud
= 0;
1529 m68328_console_cbaud
|= CBAUDEX
;
1532 m68328_console_cbaud
|= i
;
1535 m68328_set_baud(); /* make sure baud rate changes */
1540 static struct tty_driver
*m68328_console_device(struct console
*c
, int *index
)
1543 return serial_driver
;
1547 void m68328_console_write (struct console
*co
, const char *str
,
1550 if (!m68328_console_initted
)
1555 rs_put_char( *str
++ );
1560 static struct console m68328_driver
= {
1562 .write
= m68328_console_write
,
1563 .device
= m68328_console_device
,
1564 .setup
= m68328_console_setup
,
1565 .flags
= CON_PRINTBUFFER
,
1570 static int __init
m68328_console_init(void)
1572 register_console(&m68328_driver
);
1576 console_initcall(m68328_console_init
);