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/bitops.h>
37 #include <linux/delay.h>
41 #include <asm/system.h>
42 #include <asm/delay.h>
43 #include <asm/uaccess.h>
46 /* note: perhaps we can murge these files, so that you can just
47 * define 1 of them, and they can sort that out for themselves
49 #if defined(CONFIG_M68EZ328)
50 #include <asm/MC68EZ328.h>
52 #if defined(CONFIG_M68VZ328)
53 #include <asm/MC68VZ328.h>
55 #include <asm/MC68328.h>
56 #endif /* CONFIG_M68VZ328 */
57 #endif /* CONFIG_M68EZ328 */
59 #include "68328serial.h"
61 /* Turn off usage of real serial interrupt code, to "support" Copilot */
62 #ifdef CONFIG_XCOPILOT_BUGS
68 static struct m68k_serial m68k_soft
[NR_PORTS
];
70 static unsigned int uart_irqs
[NR_PORTS
] = UART_IRQ_DEFNS
;
72 /* multiple ports are contiguous in memory */
73 m68328_uart
*uart_addr
= (m68328_uart
*)USTCNT_ADDR
;
75 struct tty_struct m68k_ttys
;
76 struct m68k_serial
*m68k_consinfo
= 0;
78 #define M68K_CLOCK (16667000) /* FIXME: 16MHz is likely wrong */
81 extern wait_queue_head_t keypress_wait
;
84 struct tty_driver
*serial_driver
;
86 /* number of characters left in xmit buffer before we ask for more */
87 #define WAKEUP_CHARS 256
89 /* Debugging... DEBUG_INTR is bad to use when one of the zs
90 * lines is your console ;(
92 #undef SERIAL_DEBUG_INTR
93 #undef SERIAL_DEBUG_OPEN
94 #undef SERIAL_DEBUG_FLOW
96 #define RS_ISR_PASS_LIMIT 256
98 static void change_speed(struct m68k_serial
*info
);
101 * Setup for console. Argument comes from the boot command line.
104 #if defined(CONFIG_M68EZ328ADS) || defined(CONFIG_ALMA_ANS) || defined(CONFIG_DRAGONIXVZ)
105 #define CONSOLE_BAUD_RATE 115200
106 #define DEFAULT_CBAUD B115200
109 /* note: this is messy, but it works, again, perhaps defined somewhere else?*/
110 #ifdef CONFIG_M68VZ328
111 #define CONSOLE_BAUD_RATE 19200
112 #define DEFAULT_CBAUD B19200
117 #ifndef CONSOLE_BAUD_RATE
118 #define CONSOLE_BAUD_RATE 9600
119 #define DEFAULT_CBAUD B9600
123 static int m68328_console_initted
= 0;
124 static int m68328_console_baud
= CONSOLE_BAUD_RATE
;
125 static int m68328_console_cbaud
= DEFAULT_CBAUD
;
128 static inline int serial_paranoia_check(struct m68k_serial
*info
,
129 char *name
, const char *routine
)
131 #ifdef SERIAL_PARANOIA_CHECK
132 static const char *badmagic
=
133 "Warning: bad magic number for serial struct %s in %s\n";
134 static const char *badinfo
=
135 "Warning: null m68k_serial for %s in %s\n";
138 printk(badinfo
, name
, routine
);
141 if (info
->magic
!= SERIAL_MAGIC
) {
142 printk(badmagic
, name
, routine
);
150 * This is used to figure out the divisor speeds and the timeouts
152 static int baud_table
[] = {
153 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
154 9600, 19200, 38400, 57600, 115200, 0 };
156 /* Sets or clears DTR/RTS on the requested line */
157 static inline void m68k_rtsdtr(struct m68k_serial
*ss
, int set
)
160 /* set the RTS/CTS line */
167 /* Utility routines */
168 static inline int get_baud(struct m68k_serial
*ss
)
170 unsigned long result
= 115200;
171 unsigned short int baud
= uart_addr
[ss
->line
].ubaud
;
172 if (GET_FIELD(baud
, UBAUD_PRESCALER
) == 0x38) result
= 38400;
173 result
>>= GET_FIELD(baud
, UBAUD_DIVIDE
);
179 * ------------------------------------------------------------
180 * rs_stop() and rs_start()
182 * This routines are called before setting or resetting tty->stopped.
183 * They enable or disable transmitter interrupts, as necessary.
184 * ------------------------------------------------------------
186 static void rs_stop(struct tty_struct
*tty
)
188 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
189 m68328_uart
*uart
= &uart_addr
[info
->line
];
192 if (serial_paranoia_check(info
, tty
->name
, "rs_stop"))
195 local_irq_save(flags
);
196 uart
->ustcnt
&= ~USTCNT_TXEN
;
197 local_irq_restore(flags
);
200 static int rs_put_char(char ch
)
202 int flags
, loops
= 0;
204 local_irq_save(flags
);
206 while (!(UTX
& UTX_TX_AVAIL
) && (loops
< 1000)) {
213 local_irq_restore(flags
);
217 static void rs_start(struct tty_struct
*tty
)
219 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
220 m68328_uart
*uart
= &uart_addr
[info
->line
];
223 if (serial_paranoia_check(info
, tty
->name
, "rs_start"))
226 local_irq_save(flags
);
227 if (info
->xmit_cnt
&& info
->xmit_buf
&& !(uart
->ustcnt
& USTCNT_TXEN
)) {
229 uart
->ustcnt
|= USTCNT_TXEN
| USTCNT_TX_INTR_MASK
;
231 uart
->ustcnt
|= USTCNT_TXEN
;
234 local_irq_restore(flags
);
237 /* Drop into either the boot monitor or kadb upon receiving a break
238 * from keyboard/console input.
240 static void batten_down_hatches(void)
242 /* Drop into the debugger */
245 static void status_handle(struct m68k_serial
*info
, unsigned short status
)
249 if((info
->port
.tty
->termios
->c_cflag
& CRTSCTS
) &&
250 ((info
->curregs
[3] & AUTO_ENAB
)==0)) {
251 info
->curregs
[3] |= AUTO_ENAB
;
252 info
->pendregs
[3] |= AUTO_ENAB
;
253 write_zsreg(info
->m68k_channel
, 3, info
->curregs
[3]);
256 if((info
->curregs
[3] & AUTO_ENAB
)) {
257 info
->curregs
[3] &= ~AUTO_ENAB
;
258 info
->pendregs
[3] &= ~AUTO_ENAB
;
259 write_zsreg(info
->m68k_channel
, 3, info
->curregs
[3]);
263 /* If this is console input and this is a
264 * 'break asserted' status change interrupt
265 * see if we can drop into the debugger
267 if((status
& URX_BREAK
) && info
->break_abort
)
268 batten_down_hatches();
272 static void receive_chars(struct m68k_serial
*info
, unsigned short rx
)
274 struct tty_struct
*tty
= info
->port
.tty
;
275 m68328_uart
*uart
= &uart_addr
[info
->line
];
276 unsigned char ch
, flag
;
279 * This do { } while() loop will get ALL chars out of Rx FIFO
281 #ifndef CONFIG_XCOPILOT_BUGS
284 ch
= GET_FIELD(rx
, URX_RXDATA
);
287 if(URX_BREAK
& rx
) { /* whee, break received */
288 status_handle(info
, rx
);
290 #ifdef CONFIG_MAGIC_SYSRQ
291 } else if (ch
== 0x10) { /* ^P */
295 /* show_net_buffers(); */
297 } else if (ch
== 0x12) { /* ^R */
300 #endif /* CONFIG_MAGIC_SYSRQ */
302 /* It is a 'keyboard interrupt' ;-) */
303 #ifdef CONFIG_CONSOLE
304 wake_up(&keypress_wait
);
313 if(rx
& URX_PARITY_ERROR
) {
315 status_handle(info
, rx
);
316 } else if(rx
& URX_OVRUN
) {
318 status_handle(info
, rx
);
319 } else if(rx
& URX_FRAME_ERROR
) {
321 status_handle(info
, rx
);
323 tty_insert_flip_char(tty
, ch
, flag
);
324 #ifndef CONFIG_XCOPILOT_BUGS
325 } while((rx
= uart
->urx
.w
) & URX_DATA_READY
);
328 tty_schedule_flip(tty
);
334 static void transmit_chars(struct m68k_serial
*info
)
336 m68328_uart
*uart
= &uart_addr
[info
->line
];
340 uart
->utx
.b
.txdata
= info
->x_char
;
342 goto clear_and_return
;
345 if((info
->xmit_cnt
<= 0) || info
->port
.tty
->stopped
) {
346 /* That's peculiar... TX ints off */
347 uart
->ustcnt
&= ~USTCNT_TX_INTR_MASK
;
348 goto clear_and_return
;
352 uart
->utx
.b
.txdata
= info
->xmit_buf
[info
->xmit_tail
++];
353 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
356 if (info
->xmit_cnt
< WAKEUP_CHARS
)
357 schedule_work(&info
->tqueue
);
359 if(info
->xmit_cnt
<= 0) {
360 /* All done for now... TX ints off */
361 uart
->ustcnt
&= ~USTCNT_TX_INTR_MASK
;
362 goto clear_and_return
;
366 /* Clear interrupt (should be auto)*/
371 * This is the serial driver's generic interrupt routine
373 irqreturn_t
rs_interrupt(int irq
, void *dev_id
)
375 struct m68k_serial
*info
= dev_id
;
380 uart
= &uart_addr
[info
->line
];
386 if (rx
& URX_DATA_READY
) receive_chars(info
, rx
);
387 if (tx
& UTX_TX_AVAIL
) transmit_chars(info
);
389 receive_chars(info
, rx
);
394 static void do_softint(struct work_struct
*work
)
396 struct m68k_serial
*info
= container_of(work
, struct m68k_serial
, tqueue
);
397 struct tty_struct
*tty
;
399 tty
= info
->port
.tty
;
403 if (clear_bit(RS_EVENT_WRITE_WAKEUP
, &info
->event
)) {
410 * This routine is called from the scheduler tqueue when the interrupt
411 * routine has signalled that a hangup has occurred. The path of
412 * hangup processing is:
414 * serial interrupt routine -> (scheduler tqueue) ->
415 * do_serial_hangup() -> tty->hangup() -> rs_hangup()
418 static void do_serial_hangup(struct work_struct
*work
)
420 struct m68k_serial
*info
= container_of(work
, struct m68k_serial
, tqueue_hangup
);
421 struct tty_struct
*tty
;
423 tty
= info
->port
.tty
;
431 static int startup(struct m68k_serial
* info
)
433 m68328_uart
*uart
= &uart_addr
[info
->line
];
436 if (info
->flags
& S_INITIALIZED
)
439 if (!info
->xmit_buf
) {
440 info
->xmit_buf
= (unsigned char *) __get_free_page(GFP_KERNEL
);
445 local_irq_save(flags
);
448 * Clear the FIFO buffers and disable them
449 * (they will be reenabled in change_speed())
452 uart
->ustcnt
= USTCNT_UEN
;
453 info
->xmit_fifo_size
= 1;
454 uart
->ustcnt
= USTCNT_UEN
| USTCNT_RXEN
| USTCNT_TXEN
;
458 * Finally, enable sequencing and interrupts
461 uart
->ustcnt
= USTCNT_UEN
| USTCNT_RXEN
|
462 USTCNT_RX_INTR_MASK
| USTCNT_TX_INTR_MASK
;
464 uart
->ustcnt
= USTCNT_UEN
| USTCNT_RXEN
| USTCNT_RX_INTR_MASK
;
468 clear_bit(TTY_IO_ERROR
, &info
->port
.tty
->flags
);
469 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
472 * and set the speed of the serial port
477 info
->flags
|= S_INITIALIZED
;
478 local_irq_restore(flags
);
483 * This routine will shutdown a serial port; interrupts are disabled, and
484 * DTR is dropped if the hangup on close termio flag is on.
486 static void shutdown(struct m68k_serial
* info
)
488 m68328_uart
*uart
= &uart_addr
[info
->line
];
491 uart
->ustcnt
= 0; /* All off! */
492 if (!(info
->flags
& S_INITIALIZED
))
495 local_irq_save(flags
);
497 if (info
->xmit_buf
) {
498 free_page((unsigned long) info
->xmit_buf
);
503 set_bit(TTY_IO_ERROR
, &info
->port
.tty
->flags
);
505 info
->flags
&= ~S_INITIALIZED
;
506 local_irq_restore(flags
);
510 int divisor
, prescale
;
512 #ifndef CONFIG_M68VZ328
513 hw_baud_table
[18] = {
528 {1,0x26}, /* 19200 */
529 {0,0x26}, /* 38400 */
530 {1,0x38}, /* 57600 */
531 {0,0x38}, /* 115200 */
534 hw_baud_table
[18] = {
549 {2,0x26}, /* 19200 */
550 {1,0x26}, /* 38400 */
551 {0,0x26}, /* 57600 */
552 {1,0x38}, /* 115200 */
555 /* rate = 1036800 / ((65 - prescale) * (1<<divider)) */
558 * This routine is called to set the UART divisor registers to match
559 * the specified baud rate for a serial port.
561 static void change_speed(struct m68k_serial
*info
)
563 m68328_uart
*uart
= &uart_addr
[info
->line
];
565 unsigned short ustcnt
;
569 if (!info
->port
.tty
|| !info
->port
.tty
->termios
)
571 cflag
= info
->port
.tty
->termios
->c_cflag
;
572 if (!(port
= info
->port
))
575 ustcnt
= uart
->ustcnt
;
576 uart
->ustcnt
= ustcnt
& ~USTCNT_TXEN
;
580 i
= (i
& ~CBAUDEX
) + B38400
;
583 info
->baud
= baud_table
[i
];
584 uart
->ubaud
= PUT_FIELD(UBAUD_DIVIDE
, hw_baud_table
[i
].divisor
) |
585 PUT_FIELD(UBAUD_PRESCALER
, hw_baud_table
[i
].prescale
);
587 ustcnt
&= ~(USTCNT_PARITYEN
| USTCNT_ODD_EVEN
| USTCNT_STOP
| USTCNT_8_7
);
589 if ((cflag
& CSIZE
) == CS8
)
590 ustcnt
|= USTCNT_8_7
;
593 ustcnt
|= USTCNT_STOP
;
596 ustcnt
|= USTCNT_PARITYEN
;
598 ustcnt
|= USTCNT_ODD_EVEN
;
600 #ifdef CONFIG_SERIAL_68328_RTS_CTS
601 if (cflag
& CRTSCTS
) {
602 uart
->utx
.w
&= ~ UTX_NOCTS
;
604 uart
->utx
.w
|= UTX_NOCTS
;
608 ustcnt
|= USTCNT_TXEN
;
610 uart
->ustcnt
= ustcnt
;
615 * Fair output driver allows a process to speak.
617 static void rs_fair_output(void)
619 int left
; /* Output no more than that */
621 struct m68k_serial
*info
= &m68k_soft
[0];
624 if (info
== 0) return;
625 if (info
->xmit_buf
== 0) return;
627 local_irq_save(flags
);
628 left
= info
->xmit_cnt
;
630 c
= info
->xmit_buf
[info
->xmit_tail
];
631 info
->xmit_tail
= (info
->xmit_tail
+1) & (SERIAL_XMIT_SIZE
-1);
633 local_irq_restore(flags
);
637 local_irq_save(flags
);
638 left
= min(info
->xmit_cnt
, left
-1);
641 /* Last character is being transmitted now (hopefully). */
644 local_irq_restore(flags
);
649 * m68k_console_print is registered for printk.
651 void console_print_68328(const char *p
)
655 while((c
=*(p
++)) != 0) {
661 /* Comment this if you want to have a strict interrupt-driven output */
667 static void rs_set_ldisc(struct tty_struct
*tty
)
669 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
671 if (serial_paranoia_check(info
, tty
->name
, "rs_set_ldisc"))
674 info
->is_cons
= (tty
->termios
->c_line
== N_TTY
);
676 printk("ttyS%d console mode %s\n", info
->line
, info
->is_cons
? "on" : "off");
679 static void rs_flush_chars(struct tty_struct
*tty
)
681 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
682 m68328_uart
*uart
= &uart_addr
[info
->line
];
685 if (serial_paranoia_check(info
, tty
->name
, "rs_flush_chars"))
691 /* Enable transmitter */
692 local_irq_save(flags
);
694 if (info
->xmit_cnt
<= 0 || tty
->stopped
|| tty
->hw_stopped
||
696 local_irq_restore(flags
);
701 uart
->ustcnt
|= USTCNT_TXEN
| USTCNT_TX_INTR_MASK
;
703 uart
->ustcnt
|= USTCNT_TXEN
;
707 if (uart
->utx
.w
& UTX_TX_AVAIL
) {
712 uart
->utx
.b
.txdata
= info
->xmit_buf
[info
->xmit_tail
++];
713 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
718 while (!(uart
->utx
.w
& UTX_TX_AVAIL
)) udelay(5);
721 local_irq_restore(flags
);
724 extern void console_printn(const char * b
, int count
);
726 static int rs_write(struct tty_struct
* tty
,
727 const unsigned char *buf
, int count
)
730 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
731 m68328_uart
*uart
= &uart_addr
[info
->line
];
734 if (serial_paranoia_check(info
, tty
->name
, "rs_write"))
737 if (!tty
|| !info
->xmit_buf
)
740 local_save_flags(flags
);
743 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
744 SERIAL_XMIT_SIZE
- info
->xmit_head
));
745 local_irq_restore(flags
);
750 memcpy(info
->xmit_buf
+ info
->xmit_head
, buf
, c
);
753 info
->xmit_head
= (info
->xmit_head
+ c
) & (SERIAL_XMIT_SIZE
-1);
755 local_irq_restore(flags
);
761 if (info
->xmit_cnt
&& !tty
->stopped
&& !tty
->hw_stopped
) {
762 /* Enable transmitter */
765 while(info
->xmit_cnt
) {
768 uart
->ustcnt
|= USTCNT_TXEN
;
770 uart
->ustcnt
|= USTCNT_TX_INTR_MASK
;
772 while (!(uart
->utx
.w
& UTX_TX_AVAIL
)) udelay(5);
774 if (uart
->utx
.w
& UTX_TX_AVAIL
) {
775 uart
->utx
.b
.txdata
= info
->xmit_buf
[info
->xmit_tail
++];
776 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
783 local_irq_restore(flags
);
789 static int rs_write_room(struct tty_struct
*tty
)
791 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
794 if (serial_paranoia_check(info
, tty
->name
, "rs_write_room"))
796 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
802 static int rs_chars_in_buffer(struct tty_struct
*tty
)
804 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
806 if (serial_paranoia_check(info
, tty
->name
, "rs_chars_in_buffer"))
808 return info
->xmit_cnt
;
811 static void rs_flush_buffer(struct tty_struct
*tty
)
813 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
816 if (serial_paranoia_check(info
, tty
->name
, "rs_flush_buffer"))
818 local_irq_save(flags
);
819 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
820 local_irq_restore(flags
);
825 * ------------------------------------------------------------
828 * This routine is called by the upper-layer tty layer to signal that
829 * incoming characters should be throttled.
830 * ------------------------------------------------------------
832 static void rs_throttle(struct tty_struct
* tty
)
834 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
836 if (serial_paranoia_check(info
, tty
->name
, "rs_throttle"))
840 info
->x_char
= STOP_CHAR(tty
);
842 /* Turn off RTS line (do this atomic) */
845 static void rs_unthrottle(struct tty_struct
* tty
)
847 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
849 if (serial_paranoia_check(info
, tty
->name
, "rs_unthrottle"))
856 info
->x_char
= START_CHAR(tty
);
859 /* Assert RTS line (do this atomic) */
863 * ------------------------------------------------------------
864 * rs_ioctl() and friends
865 * ------------------------------------------------------------
868 static int get_serial_info(struct m68k_serial
* info
,
869 struct serial_struct
* retinfo
)
871 struct serial_struct tmp
;
875 memset(&tmp
, 0, sizeof(tmp
));
876 tmp
.type
= info
->type
;
877 tmp
.line
= info
->line
;
878 tmp
.port
= info
->port
;
880 tmp
.flags
= info
->flags
;
881 tmp
.baud_base
= info
->baud_base
;
882 tmp
.close_delay
= info
->close_delay
;
883 tmp
.closing_wait
= info
->closing_wait
;
884 tmp
.custom_divisor
= info
->custom_divisor
;
885 copy_to_user(retinfo
,&tmp
,sizeof(*retinfo
));
889 static int set_serial_info(struct m68k_serial
* info
,
890 struct serial_struct
* new_info
)
892 struct serial_struct new_serial
;
893 struct m68k_serial old_info
;
898 copy_from_user(&new_serial
,new_info
,sizeof(new_serial
));
901 if (!capable(CAP_SYS_ADMIN
)) {
902 if ((new_serial
.baud_base
!= info
->baud_base
) ||
903 (new_serial
.type
!= info
->type
) ||
904 (new_serial
.close_delay
!= info
->close_delay
) ||
905 ((new_serial
.flags
& ~S_USR_MASK
) !=
906 (info
->flags
& ~S_USR_MASK
)))
908 info
->flags
= ((info
->flags
& ~S_USR_MASK
) |
909 (new_serial
.flags
& S_USR_MASK
));
910 info
->custom_divisor
= new_serial
.custom_divisor
;
918 * OK, past this point, all the error checking has been done.
919 * At this point, we start making changes.....
922 info
->baud_base
= new_serial
.baud_base
;
923 info
->flags
= ((info
->flags
& ~S_FLAGS
) |
924 (new_serial
.flags
& S_FLAGS
));
925 info
->type
= new_serial
.type
;
926 info
->close_delay
= new_serial
.close_delay
;
927 info
->closing_wait
= new_serial
.closing_wait
;
930 retval
= startup(info
);
935 * get_lsr_info - get line status register info
937 * Purpose: Let user call ioctl() to get info when the UART physically
938 * is emptied. On bus types like RS485, the transmitter must
939 * release the bus after transmitting. This must be done when
940 * the transmit shift register is empty, not be done when the
941 * transmit holding register is empty. This functionality
942 * allows an RS485 driver to be written in user space.
944 static int get_lsr_info(struct m68k_serial
* info
, unsigned int *value
)
946 #ifdef CONFIG_SERIAL_68328_RTS_CTS
947 m68328_uart
*uart
= &uart_addr
[info
->line
];
949 unsigned char status
;
952 local_irq_save(flags
);
953 #ifdef CONFIG_SERIAL_68328_RTS_CTS
954 status
= (uart
->utx
.w
& UTX_CTS_STAT
) ? 1 : 0;
958 local_irq_restore(flags
);
959 put_user(status
,value
);
964 * This routine sends a break character out the serial port.
966 static void send_break(struct m68k_serial
* info
, unsigned int duration
)
968 m68328_uart
*uart
= &uart_addr
[info
->line
];
972 local_irq_save(flags
);
974 uart
->utx
.w
|= UTX_SEND_BREAK
;
975 msleep_interruptible(duration
);
976 uart
->utx
.w
&= ~UTX_SEND_BREAK
;
978 local_irq_restore(flags
);
981 static int rs_ioctl(struct tty_struct
*tty
, struct file
* file
,
982 unsigned int cmd
, unsigned long arg
)
985 struct m68k_serial
* info
= (struct m68k_serial
*)tty
->driver_data
;
988 if (serial_paranoia_check(info
, tty
->name
, "rs_ioctl"))
991 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
992 (cmd
!= TIOCSERCONFIG
) && (cmd
!= TIOCSERGWILD
) &&
993 (cmd
!= TIOCSERSWILD
) && (cmd
!= TIOCSERGSTRUCT
)) {
994 if (tty
->flags
& (1 << TTY_IO_ERROR
))
999 case TCSBRK
: /* SVID version: non-zero arg --> no break */
1000 retval
= tty_check_change(tty
);
1003 tty_wait_until_sent(tty
, 0);
1005 send_break(info
, 250); /* 1/4 second */
1007 case TCSBRKP
: /* support for POSIX tcsendbreak() */
1008 retval
= tty_check_change(tty
);
1011 tty_wait_until_sent(tty
, 0);
1012 send_break(info
, arg
? arg
*(100) : 250);
1015 if (access_ok(VERIFY_WRITE
, (void *) arg
,
1016 sizeof(struct serial_struct
)))
1017 return get_serial_info(info
,
1018 (struct serial_struct
*) arg
);
1021 return set_serial_info(info
,
1022 (struct serial_struct
*) arg
);
1023 case TIOCSERGETLSR
: /* Get line status register */
1024 if (access_ok(VERIFY_WRITE
, (void *) arg
,
1025 sizeof(unsigned int)))
1026 return get_lsr_info(info
, (unsigned int *) arg
);
1028 case TIOCSERGSTRUCT
:
1029 if (!access_ok(VERIFY_WRITE
, (void *) arg
,
1030 sizeof(struct m68k_serial
)))
1032 copy_to_user((struct m68k_serial
*) arg
,
1033 info
, sizeof(struct m68k_serial
));
1037 return -ENOIOCTLCMD
;
1042 static void rs_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1044 struct m68k_serial
*info
= (struct m68k_serial
*)tty
->driver_data
;
1048 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1049 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1050 tty
->hw_stopped
= 0;
1057 * ------------------------------------------------------------
1060 * This routine is called when the serial port gets closed. First, we
1061 * wait for the last remaining data to be sent. Then, we unlink its
1062 * S structure from the interrupt chain if necessary, and we free
1063 * that IRQ if nothing is left in the chain.
1064 * ------------------------------------------------------------
1066 static void rs_close(struct tty_struct
*tty
, struct file
* filp
)
1068 struct m68k_serial
* info
= (struct m68k_serial
*)tty
->driver_data
;
1069 m68328_uart
*uart
= &uart_addr
[info
->line
];
1070 unsigned long flags
;
1072 if (!info
|| serial_paranoia_check(info
, tty
->name
, "rs_close"))
1075 local_irq_save(flags
);
1077 if (tty_hung_up_p(filp
)) {
1078 local_irq_restore(flags
);
1082 if ((tty
->count
== 1) && (info
->count
!= 1)) {
1084 * Uh, oh. tty->count is 1, which means that the tty
1085 * structure will be freed. Info->count should always
1086 * be one in these conditions. If it's greater than
1087 * one, we've got real problems, since it means the
1088 * serial port won't be shutdown.
1090 printk("rs_close: bad serial port count; tty->count is 1, "
1091 "info->count is %d\n", info
->count
);
1094 if (--info
->count
< 0) {
1095 printk("rs_close: bad serial port count for ttyS%d: %d\n",
1096 info
->line
, info
->count
);
1100 local_irq_restore(flags
);
1103 info
->flags
|= S_CLOSING
;
1105 * Now we wait for the transmit buffer to clear; and we notify
1106 * the line discipline to only process XON/XOFF characters.
1109 if (info
->closing_wait
!= S_CLOSING_WAIT_NONE
)
1110 tty_wait_until_sent(tty
, info
->closing_wait
);
1112 * At this point we stop accepting input. To do this, we
1113 * disable the receive line status interrupts, and tell the
1114 * interrupt driver to stop checking the data ready bit in the
1115 * line status register.
1118 uart
->ustcnt
&= ~USTCNT_RXEN
;
1119 uart
->ustcnt
&= ~(USTCNT_RXEN
| USTCNT_RX_INTR_MASK
);
1122 rs_flush_buffer(tty
);
1124 tty_ldisc_flush(tty
);
1127 info
->port
.tty
= NULL
;
1128 #warning "This is not and has never been valid so fix it"
1130 if (tty
->ldisc
.num
!= ldiscs
[N_TTY
].num
) {
1131 if (tty
->ldisc
.close
)
1132 (tty
->ldisc
.close
)(tty
);
1133 tty
->ldisc
= ldiscs
[N_TTY
];
1134 tty
->termios
->c_line
= N_TTY
;
1135 if (tty
->ldisc
.open
)
1136 (tty
->ldisc
.open
)(tty
);
1139 if (info
->blocked_open
) {
1140 if (info
->close_delay
) {
1141 msleep_interruptible(jiffies_to_msecs(info
->close_delay
));
1143 wake_up_interruptible(&info
->open_wait
);
1145 info
->flags
&= ~(S_NORMAL_ACTIVE
|S_CLOSING
);
1146 wake_up_interruptible(&info
->close_wait
);
1147 local_irq_restore(flags
);
1151 * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
1153 void rs_hangup(struct tty_struct
*tty
)
1155 struct m68k_serial
* info
= (struct m68k_serial
*)tty
->driver_data
;
1157 if (serial_paranoia_check(info
, tty
->name
, "rs_hangup"))
1160 rs_flush_buffer(tty
);
1164 info
->flags
&= ~S_NORMAL_ACTIVE
;
1165 info
->port
.tty
= NULL
;
1166 wake_up_interruptible(&info
->open_wait
);
1170 * ------------------------------------------------------------
1171 * rs_open() and friends
1172 * ------------------------------------------------------------
1174 static int block_til_ready(struct tty_struct
*tty
, struct file
* filp
,
1175 struct m68k_serial
*info
)
1177 DECLARE_WAITQUEUE(wait
, current
);
1182 * If the device is in the middle of being closed, then block
1183 * until it's done, and then try again.
1185 if (info
->flags
& S_CLOSING
) {
1186 interruptible_sleep_on(&info
->close_wait
);
1187 #ifdef SERIAL_DO_RESTART
1188 if (info
->flags
& S_HUP_NOTIFY
)
1191 return -ERESTARTSYS
;
1198 * If non-blocking mode is set, or the port is not enabled,
1199 * then make the check up front and then exit.
1201 if ((filp
->f_flags
& O_NONBLOCK
) ||
1202 (tty
->flags
& (1 << TTY_IO_ERROR
))) {
1203 info
->flags
|= S_NORMAL_ACTIVE
;
1207 if (tty
->termios
->c_cflag
& CLOCAL
)
1211 * Block waiting for the carrier detect and the line to become
1212 * free (i.e., not in use by the callout). While we are in
1213 * this loop, info->count is dropped by one, so that
1214 * rs_close() knows when to free things. We restore it upon
1215 * exit, either normal or abnormal.
1218 add_wait_queue(&info
->open_wait
, &wait
);
1221 info
->blocked_open
++;
1223 local_irq_disable();
1224 m68k_rtsdtr(info
, 1);
1226 current
->state
= TASK_INTERRUPTIBLE
;
1227 if (tty_hung_up_p(filp
) ||
1228 !(info
->flags
& S_INITIALIZED
)) {
1229 #ifdef SERIAL_DO_RESTART
1230 if (info
->flags
& S_HUP_NOTIFY
)
1233 retval
= -ERESTARTSYS
;
1239 if (!(info
->flags
& S_CLOSING
) && do_clocal
)
1241 if (signal_pending(current
)) {
1242 retval
= -ERESTARTSYS
;
1247 current
->state
= TASK_RUNNING
;
1248 remove_wait_queue(&info
->open_wait
, &wait
);
1249 if (!tty_hung_up_p(filp
))
1251 info
->blocked_open
--;
1255 info
->flags
|= S_NORMAL_ACTIVE
;
1260 * This routine is called whenever a serial port is opened. It
1261 * enables interrupts for a serial port, linking in its S structure into
1262 * the IRQ chain. It also performs the serial-specific
1263 * initialization for the tty structure.
1265 int rs_open(struct tty_struct
*tty
, struct file
* filp
)
1267 struct m68k_serial
*info
;
1272 if (line
>= NR_PORTS
|| line
< 0) /* we have exactly one */
1275 info
= &m68k_soft
[line
];
1277 if (serial_paranoia_check(info
, tty
->name
, "rs_open"))
1281 tty
->driver_data
= info
;
1282 info
->port
.tty
= tty
;
1285 * Start up serial port
1287 retval
= startup(info
);
1291 return block_til_ready(tty
, filp
, info
);
1294 /* Finally, routines used to initialize the serial driver. */
1296 static void show_serial_version(void)
1298 printk("MC68328 serial driver version 1.00\n");
1301 static const struct tty_operations rs_ops
= {
1305 .flush_chars
= rs_flush_chars
,
1306 .write_room
= rs_write_room
,
1307 .chars_in_buffer
= rs_chars_in_buffer
,
1308 .flush_buffer
= rs_flush_buffer
,
1310 .throttle
= rs_throttle
,
1311 .unthrottle
= rs_unthrottle
,
1312 .set_termios
= rs_set_termios
,
1315 .hangup
= rs_hangup
,
1316 .set_ldisc
= rs_set_ldisc
,
1319 /* rs_init inits the driver */
1324 struct m68k_serial
*info
;
1326 serial_driver
= alloc_tty_driver(NR_PORTS
);
1330 show_serial_version();
1332 /* Initialize the tty_driver structure */
1333 /* SPARC: Not all of this is exactly right for us. */
1335 serial_driver
->name
= "ttyS";
1336 serial_driver
->major
= TTY_MAJOR
;
1337 serial_driver
->minor_start
= 64;
1338 serial_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1339 serial_driver
->subtype
= SERIAL_TYPE_NORMAL
;
1340 serial_driver
->init_termios
= tty_std_termios
;
1341 serial_driver
->init_termios
.c_cflag
=
1342 m68328_console_cbaud
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1343 serial_driver
->flags
= TTY_DRIVER_REAL_RAW
;
1344 tty_set_operations(serial_driver
, &rs_ops
);
1346 if (tty_register_driver(serial_driver
)) {
1347 put_tty_driver(serial_driver
);
1348 printk(KERN_ERR
"Couldn't register serial driver\n");
1352 local_irq_save(flags
);
1354 for(i
=0;i
<NR_PORTS
;i
++) {
1356 info
= &m68k_soft
[i
];
1357 info
->magic
= SERIAL_MAGIC
;
1358 info
->port
= (int) &uart_addr
[i
];
1359 info
->port
.tty
= NULL
;
1360 info
->irq
= uart_irqs
[i
];
1361 info
->custom_divisor
= 16;
1362 info
->close_delay
= 50;
1363 info
->closing_wait
= 3000;
1367 info
->blocked_open
= 0;
1368 INIT_WORK(&info
->tqueue
, do_softint
);
1369 INIT_WORK(&info
->tqueue_hangup
, do_serial_hangup
);
1370 init_waitqueue_head(&info
->open_wait
);
1371 init_waitqueue_head(&info
->close_wait
);
1373 info
->is_cons
= 1; /* Means shortcuts work */
1375 printk("%s%d at 0x%08x (irq = %d)", serial_driver
->name
, info
->line
,
1376 info
->port
, info
->irq
);
1377 printk(" is a builtin MC68328 UART\n");
1379 #ifdef CONFIG_M68VZ328
1381 PJSEL
&= 0xCF; /* PSW enable second port output */
1384 if (request_irq(uart_irqs
[i
],
1387 "M68328_UART", info
))
1388 panic("Unable to attach 68328 serial interrupt\n");
1390 local_irq_restore(flags
);
1394 module_init(rs68328_init
);
1398 static void m68328_set_baud(void)
1400 unsigned short ustcnt
;
1404 USTCNT
= ustcnt
& ~USTCNT_TXEN
;
1407 for (i
= 0; i
< ARRAY_SIZE(baud_table
); i
++)
1408 if (baud_table
[i
] == m68328_console_baud
)
1410 if (i
>= ARRAY_SIZE(baud_table
)) {
1411 m68328_console_baud
= 9600;
1415 UBAUD
= PUT_FIELD(UBAUD_DIVIDE
, hw_baud_table
[i
].divisor
) |
1416 PUT_FIELD(UBAUD_PRESCALER
, hw_baud_table
[i
].prescale
);
1417 ustcnt
&= ~(USTCNT_PARITYEN
| USTCNT_ODD_EVEN
| USTCNT_STOP
| USTCNT_8_7
);
1418 ustcnt
|= USTCNT_8_7
;
1419 ustcnt
|= USTCNT_TXEN
;
1421 m68328_console_initted
= 1;
1426 int m68328_console_setup(struct console
*cp
, char *arg
)
1428 int i
, n
= CONSOLE_BAUD_RATE
;
1434 n
= simple_strtoul(arg
,NULL
,0);
1436 for (i
= 0; i
< ARRAY_SIZE(baud_table
); i
++)
1437 if (baud_table
[i
] == n
)
1439 if (i
< BAUD_TABLE_SIZE
) {
1440 m68328_console_baud
= n
;
1441 m68328_console_cbaud
= 0;
1443 m68328_console_cbaud
|= CBAUDEX
;
1446 m68328_console_cbaud
|= i
;
1449 m68328_set_baud(); /* make sure baud rate changes */
1454 static struct tty_driver
*m68328_console_device(struct console
*c
, int *index
)
1457 return serial_driver
;
1461 void m68328_console_write (struct console
*co
, const char *str
,
1464 if (!m68328_console_initted
)
1469 rs_put_char( *str
++ );
1474 static struct console m68328_driver
= {
1476 .write
= m68328_console_write
,
1477 .device
= m68328_console_device
,
1478 .setup
= m68328_console_setup
,
1479 .flags
= CON_PRINTBUFFER
,
1484 static int __init
m68328_console_init(void)
1486 register_console(&m68328_driver
);
1490 console_initcall(m68328_console_init
);