vserver 1.9.3
[linux-2.6.git] / drivers / serial / 68328serial.c
1 /* 68328serial.c: Serial port driver for 68328 microcontroller
2  *
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>
9  *
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
15  */
16
17 #include <asm/dbg.h>
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/config.h>
27 #include <linux/major.h>
28 #include <linux/string.h>
29 #include <linux/fcntl.h>
30 #include <linux/mm.h>
31 #include <linux/kernel.h>
32 #include <linux/console.h>
33 #include <linux/reboot.h>
34 #include <linux/keyboard.h>
35 #include <linux/init.h>
36 #include <linux/pm.h>
37
38 #include <asm/io.h>
39 #include <asm/irq.h>
40 #include <asm/system.h>
41 #include <asm/segment.h>
42 #include <asm/bitops.h>
43 #include <asm/delay.h>
44 #include <asm/uaccess.h>
45
46 /* (es) */
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
49  */
50 #if defined(CONFIG_M68EZ328)
51 #include <asm/MC68EZ328.h>
52 #else
53 #if defined(CONFIG_M68VZ328)
54 #include <asm/MC68VZ328.h>
55 #else
56 #include <asm/MC68328.h>
57 #endif /* CONFIG_M68VZ328 */
58 #endif /* CONFIG_M68EZ328 */
59
60 #include "68328serial.h"
61
62 /* Turn off usage of real serial interrupt code, to "support" Copilot */
63 #ifdef CONFIG_XCOPILOT_BUGS
64 #undef USE_INTS
65 #else
66 #define USE_INTS
67 #endif
68
69 static struct m68k_serial m68k_soft[NR_PORTS];
70 struct m68k_serial *IRQ_ports[NR_IRQS];
71
72 static unsigned int uart_irqs[NR_PORTS] = UART_IRQ_DEFNS;
73
74 /* multiple ports are contiguous in memory */
75 m68328_uart *uart_addr = (m68328_uart *)USTCNT_ADDR;
76
77 struct tty_struct m68k_ttys;
78 struct m68k_serial *m68k_consinfo = 0;
79
80 #define M68K_CLOCK (16667000) /* FIXME: 16MHz is likely wrong */
81
82 #ifdef CONFIG_CONSOLE
83 extern wait_queue_head_t keypress_wait; 
84 #endif
85
86 struct tty_driver *serial_driver;
87
88 /* serial subtype definitions */
89 #define SERIAL_TYPE_NORMAL      1
90  
91 /* number of characters left in xmit buffer before we ask for more */
92 #define WAKEUP_CHARS 256
93
94 /* Debugging... DEBUG_INTR is bad to use when one of the zs
95  * lines is your console ;(
96  */
97 #undef SERIAL_DEBUG_INTR
98 #undef SERIAL_DEBUG_OPEN
99 #undef SERIAL_DEBUG_FLOW
100
101 #define RS_ISR_PASS_LIMIT 256
102
103 #define _INLINE_ inline
104
105 static void change_speed(struct m68k_serial *info);
106
107 /*
108  *      Setup for console. Argument comes from the boot command line.
109  */
110
111 #if defined(CONFIG_M68EZ328ADS) || defined(CONFIG_ALMA_ANS) || defined(CONFIG_DRAGONIXVZ)
112 #define CONSOLE_BAUD_RATE       115200
113 #define DEFAULT_CBAUD           B115200
114 #else
115         /* (es) */
116         /* note: this is messy, but it works, again, perhaps defined somewhere else?*/
117         #ifdef CONFIG_M68VZ328
118         #define CONSOLE_BAUD_RATE       19200
119         #define DEFAULT_CBAUD           B19200
120         #endif
121         /* (/es) */
122 #endif
123
124 #ifndef CONSOLE_BAUD_RATE
125 #define CONSOLE_BAUD_RATE       9600
126 #define DEFAULT_CBAUD           B9600
127 #endif
128
129
130 static int m68328_console_initted = 0;
131 static int m68328_console_baud    = CONSOLE_BAUD_RATE;
132 static int m68328_console_cbaud   = DEFAULT_CBAUD;
133
134
135 /*
136  * tmp_buf is used as a temporary buffer by serial_write.  We need to
137  * lock it in case the memcpy_fromfs blocks while swapping in a page,
138  * and some other program tries to do a serial write at the same time.
139  * Since the lock will only come under contention when the system is
140  * swapping and available memory is low, it makes sense to share one
141  * buffer across all the serial ports, since it significantly saves
142  * memory if large numbers of serial ports are open.
143  */
144 static unsigned char tmp_buf[SERIAL_XMIT_SIZE]; /* This is cheating */
145 DECLARE_MUTEX(tmp_buf_sem);
146
147 static inline int serial_paranoia_check(struct m68k_serial *info,
148                                         char *name, const char *routine)
149 {
150 #ifdef SERIAL_PARANOIA_CHECK
151         static const char *badmagic =
152                 "Warning: bad magic number for serial struct %s in %s\n";
153         static const char *badinfo =
154                 "Warning: null m68k_serial for %s in %s\n";
155
156         if (!info) {
157                 printk(badinfo, name, routine);
158                 return 1;
159         }
160         if (info->magic != SERIAL_MAGIC) {
161                 printk(badmagic, name, routine);
162                 return 1;
163         }
164 #endif
165         return 0;
166 }
167
168 /*
169  * This is used to figure out the divisor speeds and the timeouts
170  */
171 static int baud_table[] = {
172         0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
173         9600, 19200, 38400, 57600, 115200, 0 };
174
175 #define BAUD_TABLE_SIZE (sizeof(baud_table)/sizeof(baud_table[0]))
176
177 /* Sets or clears DTR/RTS on the requested line */
178 static inline void m68k_rtsdtr(struct m68k_serial *ss, int set)
179 {
180         if (set) {
181                 /* set the RTS/CTS line */
182         } else {
183                 /* clear it */
184         }
185         return;
186 }
187
188 /* Utility routines */
189 static inline int get_baud(struct m68k_serial *ss)
190 {
191         unsigned long result = 115200;
192         unsigned short int baud = uart_addr[ss->line].ubaud;
193         if (GET_FIELD(baud, UBAUD_PRESCALER) == 0x38) result = 38400;
194         result >>= GET_FIELD(baud, UBAUD_DIVIDE);
195
196         return result;
197 }
198
199 /*
200  * ------------------------------------------------------------
201  * rs_stop() and rs_start()
202  *
203  * This routines are called before setting or resetting tty->stopped.
204  * They enable or disable transmitter interrupts, as necessary.
205  * ------------------------------------------------------------
206  */
207 static void rs_stop(struct tty_struct *tty)
208 {
209         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
210         m68328_uart *uart = &uart_addr[info->line];
211         unsigned long flags;
212
213         if (serial_paranoia_check(info, tty->name, "rs_stop"))
214                 return;
215         
216         save_flags(flags); cli();
217         uart->ustcnt &= ~USTCNT_TXEN;
218         restore_flags(flags);
219 }
220
221 static void rs_put_char(char ch)
222 {
223         int flags, loops = 0;
224
225         save_flags(flags); cli();
226
227         while (!(UTX & UTX_TX_AVAIL) && (loops < 1000)) {
228                 loops++;
229                 udelay(5);
230         }
231
232         UTX_TXDATA = ch;
233         udelay(5);
234         restore_flags(flags);
235 }
236
237 static void rs_start(struct tty_struct *tty)
238 {
239         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
240         m68328_uart *uart = &uart_addr[info->line];
241         unsigned long flags;
242         
243         if (serial_paranoia_check(info, tty->name, "rs_start"))
244                 return;
245         
246         save_flags(flags); cli();
247         if (info->xmit_cnt && info->xmit_buf && !(uart->ustcnt & USTCNT_TXEN)) {
248 #ifdef USE_INTS
249                 uart->ustcnt |= USTCNT_TXEN | USTCNT_TX_INTR_MASK;
250 #else
251                 uart->ustcnt |= USTCNT_TXEN;
252 #endif
253         }
254         restore_flags(flags);
255 }
256
257 /* Drop into either the boot monitor or kadb upon receiving a break
258  * from keyboard/console input.
259  */
260 static void batten_down_hatches(void)
261 {
262         /* Drop into the debugger */
263 }
264
265 static _INLINE_ void status_handle(struct m68k_serial *info, unsigned short status)
266 {
267 #if 0
268         if(status & DCD) {
269                 if((info->tty->termios->c_cflag & CRTSCTS) &&
270                    ((info->curregs[3] & AUTO_ENAB)==0)) {
271                         info->curregs[3] |= AUTO_ENAB;
272                         info->pendregs[3] |= AUTO_ENAB;
273                         write_zsreg(info->m68k_channel, 3, info->curregs[3]);
274                 }
275         } else {
276                 if((info->curregs[3] & AUTO_ENAB)) {
277                         info->curregs[3] &= ~AUTO_ENAB;
278                         info->pendregs[3] &= ~AUTO_ENAB;
279                         write_zsreg(info->m68k_channel, 3, info->curregs[3]);
280                 }
281         }
282 #endif
283         /* If this is console input and this is a
284          * 'break asserted' status change interrupt
285          * see if we can drop into the debugger
286          */
287         if((status & URX_BREAK) && info->break_abort)
288                 batten_down_hatches();
289         return;
290 }
291
292 static _INLINE_ void receive_chars(struct m68k_serial *info, struct pt_regs *regs, unsigned short rx)
293 {
294         struct tty_struct *tty = info->tty;
295         m68328_uart *uart = &uart_addr[info->line];
296         unsigned char ch;
297
298         /*
299          * This do { } while() loop will get ALL chars out of Rx FIFO 
300          */
301 #ifndef CONFIG_XCOPILOT_BUGS
302         do {
303 #endif  
304                 ch = GET_FIELD(rx, URX_RXDATA);
305         
306                 if(info->is_cons) {
307                         if(URX_BREAK & rx) { /* whee, break received */
308                                 status_handle(info, rx);
309                                 return;
310 #ifdef CONFIG_MAGIC_SYSRQ
311                         } else if (ch == 0x10) { /* ^P */
312                                 show_state();
313                                 show_free_areas();
314                                 show_buffers();
315 /*                              show_net_buffers(); */
316                                 return;
317                         } else if (ch == 0x12) { /* ^R */
318                                 machine_restart(NULL);
319                                 return;
320 #endif /* CONFIG_MAGIC_SYSRQ */
321                         }
322                         /* It is a 'keyboard interrupt' ;-) */
323 #ifdef CONFIG_CONSOLE
324                         wake_up(&keypress_wait);
325 #endif                  
326                 }
327
328                 if(!tty)
329                         goto clear_and_exit;
330                 
331                 /*
332                  * Make sure that we do not overflow the buffer
333                  */
334                 if (tty->flip.count >= TTY_FLIPBUF_SIZE) {
335                         schedule_work(&tty->flip.work);
336                         return;
337                 }
338
339                 if(rx & URX_PARITY_ERROR) {
340                         *tty->flip.flag_buf_ptr++ = TTY_PARITY;
341                         status_handle(info, rx);
342                 } else if(rx & URX_OVRUN) {
343                         *tty->flip.flag_buf_ptr++ = TTY_OVERRUN;
344                         status_handle(info, rx);
345                 } else if(rx & URX_FRAME_ERROR) {
346                         *tty->flip.flag_buf_ptr++ = TTY_FRAME;
347                         status_handle(info, rx);
348                 } else {
349                         *tty->flip.flag_buf_ptr++ = 0; /* XXX */
350                 }
351                 *tty->flip.char_buf_ptr++ = ch;
352                 tty->flip.count++;
353
354 #ifndef CONFIG_XCOPILOT_BUGS
355         } while((rx = uart->urx.w) & URX_DATA_READY);
356 #endif
357
358         schedule_work(&tty->flip.work);
359
360 clear_and_exit:
361         return;
362 }
363
364 static _INLINE_ void transmit_chars(struct m68k_serial *info)
365 {
366         m68328_uart *uart = &uart_addr[info->line];
367
368         if (info->x_char) {
369                 /* Send next char */
370                 uart->utx.b.txdata = info->x_char;
371                 info->x_char = 0;
372                 goto clear_and_return;
373         }
374
375         if((info->xmit_cnt <= 0) || info->tty->stopped) {
376                 /* That's peculiar... TX ints off */
377                 uart->ustcnt &= ~USTCNT_TX_INTR_MASK;
378                 goto clear_and_return;
379         }
380
381         /* Send char */
382         uart->utx.b.txdata = info->xmit_buf[info->xmit_tail++];
383         info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
384         info->xmit_cnt--;
385
386         if (info->xmit_cnt < WAKEUP_CHARS)
387                 schedule_work(&info->tqueue);
388
389         if(info->xmit_cnt <= 0) {
390                 /* All done for now... TX ints off */
391                 uart->ustcnt &= ~USTCNT_TX_INTR_MASK;
392                 goto clear_and_return;
393         }
394
395 clear_and_return:
396         /* Clear interrupt (should be auto)*/
397         return;
398 }
399
400 /*
401  * This is the serial driver's generic interrupt routine
402  */
403 irqreturn_t rs_interrupt(int irq, void *dev_id, struct pt_regs * regs)
404 {
405         struct m68k_serial * info;
406         m68328_uart *uart;
407         unsigned short rx;
408         unsigned short tx;
409
410         info = IRQ_ports[irq];
411         if(!info)
412             return IRQ_NONE;
413
414         uart = &uart_addr[info->line];
415         rx = uart->urx.w;
416
417 #ifdef USE_INTS
418         tx = uart->utx.w;
419
420         if (rx & URX_DATA_READY) receive_chars(info, regs, rx);
421         if (tx & UTX_TX_AVAIL)   transmit_chars(info);
422 #else
423         receive_chars(info, regs, rx);          
424 #endif
425         return IRQ_HANDLED;
426 }
427
428 static void do_softint(void *private)
429 {
430         struct m68k_serial      *info = (struct m68k_serial *) private;
431         struct tty_struct       *tty;
432         
433         tty = info->tty;
434         if (!tty)
435                 return;
436 #if 0
437         if (clear_bit(RS_EVENT_WRITE_WAKEUP, &info->event)) {
438                 tty_wakeup(tty);
439         }
440 #endif   
441 }
442
443 /*
444  * This routine is called from the scheduler tqueue when the interrupt
445  * routine has signalled that a hangup has occurred.  The path of
446  * hangup processing is:
447  *
448  *      serial interrupt routine -> (scheduler tqueue) ->
449  *      do_serial_hangup() -> tty->hangup() -> rs_hangup()
450  * 
451  */
452 static void do_serial_hangup(void *private)
453 {
454         struct m68k_serial      *info = (struct m68k_serial *) private;
455         struct tty_struct       *tty;
456         
457         tty = info->tty;
458         if (!tty)
459                 return;
460
461         tty_hangup(tty);
462 }
463
464
465 static int startup(struct m68k_serial * info)
466 {
467         m68328_uart *uart = &uart_addr[info->line];
468         unsigned long flags;
469         
470         if (info->flags & S_INITIALIZED)
471                 return 0;
472
473         if (!info->xmit_buf) {
474                 info->xmit_buf = (unsigned char *) __get_free_page(GFP_KERNEL);
475                 if (!info->xmit_buf)
476                         return -ENOMEM;
477         }
478
479         save_flags(flags); cli();
480
481         /*
482          * Clear the FIFO buffers and disable them
483          * (they will be reenabled in change_speed())
484          */
485
486         uart->ustcnt = USTCNT_UEN;
487         info->xmit_fifo_size = 1;
488         uart->ustcnt = USTCNT_UEN | USTCNT_RXEN | USTCNT_TXEN;
489         (void)uart->urx.w;
490
491         /*
492          * Finally, enable sequencing and interrupts
493          */
494 #ifdef USE_INTS
495         uart->ustcnt = USTCNT_UEN | USTCNT_RXEN | 
496                  USTCNT_RX_INTR_MASK | USTCNT_TX_INTR_MASK;
497 #else
498         uart->ustcnt = USTCNT_UEN | USTCNT_RXEN | USTCNT_RX_INTR_MASK;
499 #endif
500
501         if (info->tty)
502                 clear_bit(TTY_IO_ERROR, &info->tty->flags);
503         info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
504
505         /*
506          * and set the speed of the serial port
507          */
508
509         change_speed(info);
510
511         info->flags |= S_INITIALIZED;
512         restore_flags(flags);
513         return 0;
514 }
515
516 /*
517  * This routine will shutdown a serial port; interrupts are disabled, and
518  * DTR is dropped if the hangup on close termio flag is on.
519  */
520 static void shutdown(struct m68k_serial * info)
521 {
522         m68328_uart *uart = &uart_addr[info->line];
523         unsigned long   flags;
524
525         uart->ustcnt = 0; /* All off! */
526         if (!(info->flags & S_INITIALIZED))
527                 return;
528
529         save_flags(flags); cli(); /* Disable interrupts */
530         
531         if (info->xmit_buf) {
532                 free_page((unsigned long) info->xmit_buf);
533                 info->xmit_buf = 0;
534         }
535
536         if (info->tty)
537                 set_bit(TTY_IO_ERROR, &info->tty->flags);
538         
539         info->flags &= ~S_INITIALIZED;
540         restore_flags(flags);
541 }
542
543 struct {
544         int divisor, prescale;
545 }
546 #ifndef CONFIG_M68VZ328
547  hw_baud_table[18] = {
548         {0,0}, /* 0 */
549         {0,0}, /* 50 */
550         {0,0}, /* 75 */
551         {0,0}, /* 110 */
552         {0,0}, /* 134 */
553         {0,0}, /* 150 */
554         {0,0}, /* 200 */
555         {7,0x26}, /* 300 */
556         {6,0x26}, /* 600 */
557         {5,0x26}, /* 1200 */
558         {0,0}, /* 1800 */
559         {4,0x26}, /* 2400 */
560         {3,0x26}, /* 4800 */
561         {2,0x26}, /* 9600 */
562         {1,0x26}, /* 19200 */
563         {0,0x26}, /* 38400 */
564         {1,0x38}, /* 57600 */
565         {0,0x38}, /* 115200 */
566 };
567 #else
568  hw_baud_table[18] = {
569                  {0,0}, /* 0 */
570                  {0,0}, /* 50 */
571                  {0,0}, /* 75 */
572                  {0,0}, /* 110 */
573                  {0,0}, /* 134 */
574                  {0,0}, /* 150 */
575                  {0,0}, /* 200 */
576                  {0,0}, /* 300 */
577                  {7,0x26}, /* 600 */
578                  {6,0x26}, /* 1200 */
579                  {0,0}, /* 1800 */
580                  {5,0x26}, /* 2400 */
581                  {4,0x26}, /* 4800 */
582                  {3,0x26}, /* 9600 */
583                  {2,0x26}, /* 19200 */
584                  {1,0x26}, /* 38400 */
585                  {0,0x26}, /* 57600 */
586                  {1,0x38}, /* 115200 */
587 }; 
588 #endif
589 /* rate = 1036800 / ((65 - prescale) * (1<<divider)) */
590
591 /*
592  * This routine is called to set the UART divisor registers to match
593  * the specified baud rate for a serial port.
594  */
595 static void change_speed(struct m68k_serial *info)
596 {
597         m68328_uart *uart = &uart_addr[info->line];
598         unsigned short port;
599         unsigned short ustcnt;
600         unsigned cflag;
601         int     i;
602
603         if (!info->tty || !info->tty->termios)
604                 return;
605         cflag = info->tty->termios->c_cflag;
606         if (!(port = info->port))
607                 return;
608
609         ustcnt = uart->ustcnt;
610         uart->ustcnt = ustcnt & ~USTCNT_TXEN;
611
612         i = cflag & CBAUD;
613         if (i & CBAUDEX) {
614                 i = (i & ~CBAUDEX) + B38400;
615         }
616
617         info->baud = baud_table[i];
618         uart->ubaud = PUT_FIELD(UBAUD_DIVIDE,    hw_baud_table[i].divisor) | 
619                 PUT_FIELD(UBAUD_PRESCALER, hw_baud_table[i].prescale);
620
621         ustcnt &= ~(USTCNT_PARITYEN | USTCNT_ODD_EVEN | USTCNT_STOP | USTCNT_8_7);
622         
623         if ((cflag & CSIZE) == CS8)
624                 ustcnt |= USTCNT_8_7;
625                 
626         if (cflag & CSTOPB)
627                 ustcnt |= USTCNT_STOP;
628
629         if (cflag & PARENB)
630                 ustcnt |= USTCNT_PARITYEN;
631         if (cflag & PARODD)
632                 ustcnt |= USTCNT_ODD_EVEN;
633         
634 #ifdef CONFIG_SERIAL_68328_RTS_CTS
635         if (cflag & CRTSCTS) {
636                 uart->utx.w &= ~ UTX_NOCTS;
637         } else {
638                 uart->utx.w |= UTX_NOCTS;
639         }
640 #endif
641
642         ustcnt |= USTCNT_TXEN;
643         
644         uart->ustcnt = ustcnt;
645         return;
646 }
647
648 /*
649  * Fair output driver allows a process to speak.
650  */
651 static void rs_fair_output(void)
652 {
653         int left;               /* Output no more than that */
654         unsigned long flags;
655         struct m68k_serial *info = &m68k_soft[0];
656         char c;
657
658         if (info == 0) return;
659         if (info->xmit_buf == 0) return;
660
661         save_flags(flags);  cli();
662         left = info->xmit_cnt;
663         while (left != 0) {
664                 c = info->xmit_buf[info->xmit_tail];
665                 info->xmit_tail = (info->xmit_tail+1) & (SERIAL_XMIT_SIZE-1);
666                 info->xmit_cnt--;
667                 restore_flags(flags);
668
669                 rs_put_char(c);
670
671                 save_flags(flags);  cli();
672                 left = min(info->xmit_cnt, left-1);
673         }
674
675         /* Last character is being transmitted now (hopefully). */
676         udelay(5);
677
678         restore_flags(flags);
679         return;
680 }
681
682 /*
683  * m68k_console_print is registered for printk.
684  */
685 void console_print_68328(const char *p)
686 {
687         char c;
688         
689         while((c=*(p++)) != 0) {
690                 if(c == '\n')
691                         rs_put_char('\r');
692                 rs_put_char(c);
693         }
694
695         /* Comment this if you want to have a strict interrupt-driven output */
696         rs_fair_output();
697
698         return;
699 }
700
701 static void rs_set_ldisc(struct tty_struct *tty)
702 {
703         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
704
705         if (serial_paranoia_check(info, tty->name, "rs_set_ldisc"))
706                 return;
707
708         info->is_cons = (tty->termios->c_line == N_TTY);
709         
710         printk("ttyS%d console mode %s\n", info->line, info->is_cons ? "on" : "off");
711 }
712
713 static void rs_flush_chars(struct tty_struct *tty)
714 {
715         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
716         m68328_uart *uart = &uart_addr[info->line];
717         unsigned long flags;
718
719         if (serial_paranoia_check(info, tty->name, "rs_flush_chars"))
720                 return;
721 #ifndef USE_INTS
722         for(;;) {
723 #endif
724
725         /* Enable transmitter */
726         save_flags(flags); cli();
727
728         if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
729                         !info->xmit_buf) {
730                 restore_flags(flags);
731                 return;
732         }
733
734 #ifdef USE_INTS
735         uart->ustcnt |= USTCNT_TXEN | USTCNT_TX_INTR_MASK;
736 #else
737         uart->ustcnt |= USTCNT_TXEN;
738 #endif
739
740 #ifdef USE_INTS
741         if (uart->utx.w & UTX_TX_AVAIL) {
742 #else
743         if (1) {
744 #endif
745                 /* Send char */
746                 uart->utx.b.txdata = info->xmit_buf[info->xmit_tail++];
747                 info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
748                 info->xmit_cnt--;
749         }
750
751 #ifndef USE_INTS
752         while (!(uart->utx.w & UTX_TX_AVAIL)) udelay(5);
753         }
754 #endif
755         restore_flags(flags);
756 }
757
758 extern void console_printn(const char * b, int count);
759
760 static int rs_write(struct tty_struct * tty, int from_user,
761                     const unsigned char *buf, int count)
762 {
763         int     c, total = 0;
764         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
765         m68328_uart *uart = &uart_addr[info->line];
766         unsigned long flags;
767
768         if (serial_paranoia_check(info, tty->name, "rs_write"))
769                 return 0;
770
771         if (!tty || !info->xmit_buf)
772                 return 0;
773
774         save_flags(flags);
775         while (1) {
776                 cli();          
777                 c = min_t(int, count, min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
778                                    SERIAL_XMIT_SIZE - info->xmit_head));
779                 if (c <= 0)
780                         break;
781
782                 if (from_user) {
783                         down(&tmp_buf_sem);
784                         copy_from_user(tmp_buf, buf, c);
785                         c = min_t(int, c, min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
786                                        SERIAL_XMIT_SIZE - info->xmit_head));
787                         memcpy(info->xmit_buf + info->xmit_head, tmp_buf, c);
788                         up(&tmp_buf_sem);
789                 } else
790                         memcpy(info->xmit_buf + info->xmit_head, buf, c);
791                 info->xmit_head = (info->xmit_head + c) & (SERIAL_XMIT_SIZE-1);
792                 info->xmit_cnt += c;
793                 restore_flags(flags);
794                 buf += c;
795                 count -= c;
796                 total += c;
797         }
798
799         if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped) {
800                 /* Enable transmitter */
801                 cli();          
802 #ifndef USE_INTS
803                 while(info->xmit_cnt) {
804 #endif
805
806                 uart->ustcnt |= USTCNT_TXEN;
807 #ifdef USE_INTS
808                 uart->ustcnt |= USTCNT_TX_INTR_MASK;
809 #else
810                 while (!(uart->utx.w & UTX_TX_AVAIL)) udelay(5);
811 #endif
812                 if (uart->utx.w & UTX_TX_AVAIL) {
813                         uart->utx.b.txdata = info->xmit_buf[info->xmit_tail++];
814                         info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
815                         info->xmit_cnt--;
816                 }
817
818 #ifndef USE_INTS
819                 }
820 #endif
821                 restore_flags(flags);
822         }
823         restore_flags(flags);
824         return total;
825 }
826
827 static int rs_write_room(struct tty_struct *tty)
828 {
829         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
830         int     ret;
831                                 
832         if (serial_paranoia_check(info, tty->name, "rs_write_room"))
833                 return 0;
834         ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
835         if (ret < 0)
836                 ret = 0;
837         return ret;
838 }
839
840 static int rs_chars_in_buffer(struct tty_struct *tty)
841 {
842         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
843                                 
844         if (serial_paranoia_check(info, tty->name, "rs_chars_in_buffer"))
845                 return 0;
846         return info->xmit_cnt;
847 }
848
849 static void rs_flush_buffer(struct tty_struct *tty)
850 {
851         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
852                                 
853         if (serial_paranoia_check(info, tty->name, "rs_flush_buffer"))
854                 return;
855         cli();
856         info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
857         sti();
858         tty_wakeup(tty);
859 }
860
861 /*
862  * ------------------------------------------------------------
863  * rs_throttle()
864  * 
865  * This routine is called by the upper-layer tty layer to signal that
866  * incoming characters should be throttled.
867  * ------------------------------------------------------------
868  */
869 static void rs_throttle(struct tty_struct * tty)
870 {
871         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
872
873         if (serial_paranoia_check(info, tty->name, "rs_throttle"))
874                 return;
875         
876         if (I_IXOFF(tty))
877                 info->x_char = STOP_CHAR(tty);
878
879         /* Turn off RTS line (do this atomic) */
880 }
881
882 static void rs_unthrottle(struct tty_struct * tty)
883 {
884         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
885
886         if (serial_paranoia_check(info, tty->name, "rs_unthrottle"))
887                 return;
888         
889         if (I_IXOFF(tty)) {
890                 if (info->x_char)
891                         info->x_char = 0;
892                 else
893                         info->x_char = START_CHAR(tty);
894         }
895
896         /* Assert RTS line (do this atomic) */
897 }
898
899 /*
900  * ------------------------------------------------------------
901  * rs_ioctl() and friends
902  * ------------------------------------------------------------
903  */
904
905 static int get_serial_info(struct m68k_serial * info,
906                            struct serial_struct * retinfo)
907 {
908         struct serial_struct tmp;
909   
910         if (!retinfo)
911                 return -EFAULT;
912         memset(&tmp, 0, sizeof(tmp));
913         tmp.type = info->type;
914         tmp.line = info->line;
915         tmp.port = info->port;
916         tmp.irq = info->irq;
917         tmp.flags = info->flags;
918         tmp.baud_base = info->baud_base;
919         tmp.close_delay = info->close_delay;
920         tmp.closing_wait = info->closing_wait;
921         tmp.custom_divisor = info->custom_divisor;
922         copy_to_user(retinfo,&tmp,sizeof(*retinfo));
923         return 0;
924 }
925
926 static int set_serial_info(struct m68k_serial * info,
927                            struct serial_struct * new_info)
928 {
929         struct serial_struct new_serial;
930         struct m68k_serial old_info;
931         int                     retval = 0;
932
933         if (!new_info)
934                 return -EFAULT;
935         copy_from_user(&new_serial,new_info,sizeof(new_serial));
936         old_info = *info;
937
938         if (!capable(CAP_SYS_ADMIN)) {
939                 if ((new_serial.baud_base != info->baud_base) ||
940                     (new_serial.type != info->type) ||
941                     (new_serial.close_delay != info->close_delay) ||
942                     ((new_serial.flags & ~S_USR_MASK) !=
943                      (info->flags & ~S_USR_MASK)))
944                         return -EPERM;
945                 info->flags = ((info->flags & ~S_USR_MASK) |
946                                (new_serial.flags & S_USR_MASK));
947                 info->custom_divisor = new_serial.custom_divisor;
948                 goto check_and_exit;
949         }
950
951         if (info->count > 1)
952                 return -EBUSY;
953
954         /*
955          * OK, past this point, all the error checking has been done.
956          * At this point, we start making changes.....
957          */
958
959         info->baud_base = new_serial.baud_base;
960         info->flags = ((info->flags & ~S_FLAGS) |
961                         (new_serial.flags & S_FLAGS));
962         info->type = new_serial.type;
963         info->close_delay = new_serial.close_delay;
964         info->closing_wait = new_serial.closing_wait;
965
966 check_and_exit:
967         retval = startup(info);
968         return retval;
969 }
970
971 /*
972  * get_lsr_info - get line status register info
973  *
974  * Purpose: Let user call ioctl() to get info when the UART physically
975  *          is emptied.  On bus types like RS485, the transmitter must
976  *          release the bus after transmitting. This must be done when
977  *          the transmit shift register is empty, not be done when the
978  *          transmit holding register is empty.  This functionality
979  *          allows an RS485 driver to be written in user space. 
980  */
981 static int get_lsr_info(struct m68k_serial * info, unsigned int *value)
982 {
983 #ifdef CONFIG_SERIAL_68328_RTS_CTS
984         m68328_uart *uart = &uart_addr[info->line];
985 #endif
986         unsigned char status;
987
988         cli();
989 #ifdef CONFIG_SERIAL_68328_RTS_CTS
990         status = (uart->utx.w & UTX_CTS_STAT) ? 1 : 0;
991 #else
992         status = 0;
993 #endif
994         sti();
995         put_user(status,value);
996         return 0;
997 }
998
999 /*
1000  * This routine sends a break character out the serial port.
1001  */
1002 static void send_break( struct m68k_serial * info, int duration)
1003 {
1004         m68328_uart *uart = &uart_addr[info->line];
1005         unsigned long flags;
1006         if (!info->port)
1007                 return;
1008         current->state = TASK_INTERRUPTIBLE;
1009         save_flags(flags);
1010         cli();
1011 #ifdef USE_INTS 
1012         uart->utx.w |= UTX_SEND_BREAK;
1013         schedule_timeout(duration);
1014         uart->utx.w &= ~UTX_SEND_BREAK;
1015 #endif          
1016         restore_flags(flags);
1017 }
1018
1019 static int rs_ioctl(struct tty_struct *tty, struct file * file,
1020                     unsigned int cmd, unsigned long arg)
1021 {
1022         int error;
1023         struct m68k_serial * info = (struct m68k_serial *)tty->driver_data;
1024         int retval;
1025
1026         if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1027                 return -ENODEV;
1028
1029         if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
1030             (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGWILD)  &&
1031             (cmd != TIOCSERSWILD) && (cmd != TIOCSERGSTRUCT)) {
1032                 if (tty->flags & (1 << TTY_IO_ERROR))
1033                     return -EIO;
1034         }
1035         
1036         switch (cmd) {
1037                 case TCSBRK:    /* SVID version: non-zero arg --> no break */
1038                         retval = tty_check_change(tty);
1039                         if (retval)
1040                                 return retval;
1041                         tty_wait_until_sent(tty, 0);
1042                         if (!arg)
1043                                 send_break(info, HZ/4); /* 1/4 second */
1044                         return 0;
1045                 case TCSBRKP:   /* support for POSIX tcsendbreak() */
1046                         retval = tty_check_change(tty);
1047                         if (retval)
1048                                 return retval;
1049                         tty_wait_until_sent(tty, 0);
1050                         send_break(info, arg ? arg*(HZ/10) : HZ/4);
1051                         return 0;
1052                 case TIOCGSOFTCAR:
1053                         error = put_user(C_CLOCAL(tty) ? 1 : 0,
1054                                     (unsigned long *) arg);
1055                         if (error)
1056                                 return error;
1057                         return 0;
1058                 case TIOCSSOFTCAR:
1059                         get_user(arg, (unsigned long *) arg);
1060                         tty->termios->c_cflag =
1061                                 ((tty->termios->c_cflag & ~CLOCAL) |
1062                                  (arg ? CLOCAL : 0));
1063                         return 0;
1064                 case TIOCGSERIAL:
1065                         error = verify_area(VERIFY_WRITE, (void *) arg,
1066                                                 sizeof(struct serial_struct));
1067                         if (error)
1068                                 return error;
1069                         return get_serial_info(info,
1070                                                (struct serial_struct *) arg);
1071                 case TIOCSSERIAL:
1072                         return set_serial_info(info,
1073                                                (struct serial_struct *) arg);
1074                 case TIOCSERGETLSR: /* Get line status register */
1075                         error = verify_area(VERIFY_WRITE, (void *) arg,
1076                                 sizeof(unsigned int));
1077                         if (error)
1078                                 return error;
1079                         else
1080                             return get_lsr_info(info, (unsigned int *) arg);
1081
1082                 case TIOCSERGSTRUCT:
1083                         error = verify_area(VERIFY_WRITE, (void *) arg,
1084                                                 sizeof(struct m68k_serial));
1085                         if (error)
1086                                 return error;
1087                         copy_to_user((struct m68k_serial *) arg,
1088                                     info, sizeof(struct m68k_serial));
1089                         return 0;
1090                         
1091                 default:
1092                         return -ENOIOCTLCMD;
1093                 }
1094         return 0;
1095 }
1096
1097 static void rs_set_termios(struct tty_struct *tty, struct termios *old_termios)
1098 {
1099         struct m68k_serial *info = (struct m68k_serial *)tty->driver_data;
1100
1101         if (tty->termios->c_cflag == old_termios->c_cflag)
1102                 return;
1103
1104         change_speed(info);
1105
1106         if ((old_termios->c_cflag & CRTSCTS) &&
1107             !(tty->termios->c_cflag & CRTSCTS)) {
1108                 tty->hw_stopped = 0;
1109                 rs_start(tty);
1110         }
1111         
1112 }
1113
1114 /*
1115  * ------------------------------------------------------------
1116  * rs_close()
1117  * 
1118  * This routine is called when the serial port gets closed.  First, we
1119  * wait for the last remaining data to be sent.  Then, we unlink its
1120  * S structure from the interrupt chain if necessary, and we free
1121  * that IRQ if nothing is left in the chain.
1122  * ------------------------------------------------------------
1123  */
1124 static void rs_close(struct tty_struct *tty, struct file * filp)
1125 {
1126         struct m68k_serial * info = (struct m68k_serial *)tty->driver_data;
1127         m68328_uart *uart = &uart_addr[info->line];
1128         unsigned long flags;
1129
1130         if (!info || serial_paranoia_check(info, tty->name, "rs_close"))
1131                 return;
1132         
1133         save_flags(flags); cli();
1134         
1135         if (tty_hung_up_p(filp)) {
1136                 restore_flags(flags);
1137                 return;
1138         }
1139         
1140         if ((tty->count == 1) && (info->count != 1)) {
1141                 /*
1142                  * Uh, oh.  tty->count is 1, which means that the tty
1143                  * structure will be freed.  Info->count should always
1144                  * be one in these conditions.  If it's greater than
1145                  * one, we've got real problems, since it means the
1146                  * serial port won't be shutdown.
1147                  */
1148                 printk("rs_close: bad serial port count; tty->count is 1, "
1149                        "info->count is %d\n", info->count);
1150                 info->count = 1;
1151         }
1152         if (--info->count < 0) {
1153                 printk("rs_close: bad serial port count for ttyS%d: %d\n",
1154                        info->line, info->count);
1155                 info->count = 0;
1156         }
1157         if (info->count) {
1158                 restore_flags(flags);
1159                 return;
1160         }
1161         info->flags |= S_CLOSING;
1162         /*
1163          * Now we wait for the transmit buffer to clear; and we notify 
1164          * the line discipline to only process XON/XOFF characters.
1165          */
1166         tty->closing = 1;
1167         if (info->closing_wait != S_CLOSING_WAIT_NONE)
1168                 tty_wait_until_sent(tty, info->closing_wait);
1169         /*
1170          * At this point we stop accepting input.  To do this, we
1171          * disable the receive line status interrupts, and tell the
1172          * interrupt driver to stop checking the data ready bit in the
1173          * line status register.
1174          */
1175
1176         uart->ustcnt &= ~USTCNT_RXEN;
1177         uart->ustcnt &= ~(USTCNT_RXEN | USTCNT_RX_INTR_MASK);
1178
1179         shutdown(info);
1180         if (tty->driver->flush_buffer)
1181                 tty->driver->flush_buffer(tty);
1182                 
1183         tty_ldisc_flush(tty);
1184         tty->closing = 0;
1185         info->event = 0;
1186         info->tty = 0;
1187 #warning "This is not and has never been valid so fix it"       
1188 #if 0
1189         if (tty->ldisc.num != ldiscs[N_TTY].num) {
1190                 if (tty->ldisc.close)
1191                         (tty->ldisc.close)(tty);
1192                 tty->ldisc = ldiscs[N_TTY];
1193                 tty->termios->c_line = N_TTY;
1194                 if (tty->ldisc.open)
1195                         (tty->ldisc.open)(tty);
1196         }
1197 #endif  
1198         if (info->blocked_open) {
1199                 if (info->close_delay) {
1200                         current->state = TASK_INTERRUPTIBLE;
1201                         schedule_timeout(info->close_delay);
1202                 }
1203                 wake_up_interruptible(&info->open_wait);
1204         }
1205         info->flags &= ~(S_NORMAL_ACTIVE|S_CLOSING);
1206         wake_up_interruptible(&info->close_wait);
1207         restore_flags(flags);
1208 }
1209
1210 /*
1211  * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
1212  */
1213 void rs_hangup(struct tty_struct *tty)
1214 {
1215         struct m68k_serial * info = (struct m68k_serial *)tty->driver_data;
1216         
1217         if (serial_paranoia_check(info, tty->name, "rs_hangup"))
1218                 return;
1219         
1220         rs_flush_buffer(tty);
1221         shutdown(info);
1222         info->event = 0;
1223         info->count = 0;
1224         info->flags &= ~S_NORMAL_ACTIVE;
1225         info->tty = 0;
1226         wake_up_interruptible(&info->open_wait);
1227 }
1228
1229 /*
1230  * ------------------------------------------------------------
1231  * rs_open() and friends
1232  * ------------------------------------------------------------
1233  */
1234 static int block_til_ready(struct tty_struct *tty, struct file * filp,
1235                            struct m68k_serial *info)
1236 {
1237         DECLARE_WAITQUEUE(wait, current);
1238         int             retval;
1239         int             do_clocal = 0;
1240
1241         /*
1242          * If the device is in the middle of being closed, then block
1243          * until it's done, and then try again.
1244          */
1245         if (info->flags & S_CLOSING) {
1246                 interruptible_sleep_on(&info->close_wait);
1247 #ifdef SERIAL_DO_RESTART
1248                 if (info->flags & S_HUP_NOTIFY)
1249                         return -EAGAIN;
1250                 else
1251                         return -ERESTARTSYS;
1252 #else
1253                 return -EAGAIN;
1254 #endif
1255         }
1256         
1257         /*
1258          * If non-blocking mode is set, or the port is not enabled,
1259          * then make the check up front and then exit.
1260          */
1261         if ((filp->f_flags & O_NONBLOCK) ||
1262             (tty->flags & (1 << TTY_IO_ERROR))) {
1263                 info->flags |= S_NORMAL_ACTIVE;
1264                 return 0;
1265         }
1266
1267         if (tty->termios->c_cflag & CLOCAL)
1268                 do_clocal = 1;
1269
1270         /*
1271          * Block waiting for the carrier detect and the line to become
1272          * free (i.e., not in use by the callout).  While we are in
1273          * this loop, info->count is dropped by one, so that
1274          * rs_close() knows when to free things.  We restore it upon
1275          * exit, either normal or abnormal.
1276          */
1277         retval = 0;
1278         add_wait_queue(&info->open_wait, &wait);
1279
1280         info->count--;
1281         info->blocked_open++;
1282         while (1) {
1283                 cli();
1284                 m68k_rtsdtr(info, 1);
1285                 sti();
1286                 current->state = TASK_INTERRUPTIBLE;
1287                 if (tty_hung_up_p(filp) ||
1288                     !(info->flags & S_INITIALIZED)) {
1289 #ifdef SERIAL_DO_RESTART
1290                         if (info->flags & S_HUP_NOTIFY)
1291                                 retval = -EAGAIN;
1292                         else
1293                                 retval = -ERESTARTSYS;  
1294 #else
1295                         retval = -EAGAIN;
1296 #endif
1297                         break;
1298                 }
1299                 if (!(info->flags & S_CLOSING) && do_clocal)
1300                         break;
1301                 if (signal_pending(current)) {
1302                         retval = -ERESTARTSYS;
1303                         break;
1304                 }
1305                 schedule();
1306         }
1307         current->state = TASK_RUNNING;
1308         remove_wait_queue(&info->open_wait, &wait);
1309         if (!tty_hung_up_p(filp))
1310                 info->count++;
1311         info->blocked_open--;
1312
1313         if (retval)
1314                 return retval;
1315         info->flags |= S_NORMAL_ACTIVE;
1316         return 0;
1317 }       
1318
1319 /*
1320  * This routine is called whenever a serial port is opened.  It
1321  * enables interrupts for a serial port, linking in its S structure into
1322  * the IRQ chain.   It also performs the serial-specific
1323  * initialization for the tty structure.
1324  */
1325 int rs_open(struct tty_struct *tty, struct file * filp)
1326 {
1327         struct m68k_serial      *info;
1328         int                     retval, line;
1329
1330         line = tty->index;
1331         
1332         if (line >= NR_PORTS || line < 0) /* we have exactly one */
1333                 return -ENODEV;
1334
1335         info = &m68k_soft[line];
1336
1337         if (serial_paranoia_check(info, tty->name, "rs_open"))
1338                 return -ENODEV;
1339
1340         info->count++;
1341         tty->driver_data = info;
1342         info->tty = tty;
1343
1344         /*
1345          * Start up serial port
1346          */
1347         retval = startup(info);
1348         if (retval)
1349                 return retval;
1350
1351         return block_til_ready(tty, filp, info);
1352 }
1353
1354 /* Finally, routines used to initialize the serial driver. */
1355
1356 static void show_serial_version(void)
1357 {
1358         printk("MC68328 serial driver version 1.00\n");
1359 }
1360
1361 #ifdef CONFIG_PM
1362 /* Serial Power management
1363  *  The console (currently fixed at line 0) is a special case for power
1364  *  management because the kernel is so chatty. The console will be 
1365  *  explicitly disabled my our power manager as the last minute, so we won't
1366  *  mess with it here.
1367  */
1368 static struct pm_dev *serial_pm[NR_PORTS];
1369
1370 static int serial_pm_callback(struct pm_dev *dev, pm_request_t request, void *data)
1371 {
1372         struct m68k_serial *info = (struct m68k_serial *)dev->data;
1373
1374         if(info == NULL)
1375                 return -1;
1376
1377         /* special case for line 0 - pm restores it */
1378         if(info->line == 0)
1379                 return 0; 
1380
1381         switch (request) {
1382         case PM_SUSPEND:
1383                 shutdown(info);
1384                 break;
1385
1386         case PM_RESUME:
1387                 startup(info);
1388                 break;
1389         }
1390         return 0;
1391 }
1392
1393 void shutdown_console(void)
1394 {
1395         struct m68k_serial *info = &m68k_soft[0];
1396
1397         /* HACK: wait a bit for any pending printk's to be dumped */
1398         {
1399                 int i = 10000;
1400                 while(i--);
1401         }
1402
1403         shutdown(info);
1404 }
1405
1406 void startup_console(void)
1407 {
1408         struct m68k_serial *info = &m68k_soft[0];
1409         startup(info);
1410 }
1411 #endif
1412
1413
1414 static struct tty_operations rs_ops = {
1415         .open = rs_open,
1416         .close = rs_close,
1417         .write = rs_write,
1418         .flush_chars = rs_flush_chars,
1419         .write_room = rs_write_room,
1420         .chars_in_buffer = rs_chars_in_buffer,
1421         .flush_buffer = rs_flush_buffer,
1422         .ioctl = rs_ioctl,
1423         .throttle = rs_throttle,
1424         .unthrottle = rs_unthrottle,
1425         .set_termios = rs_set_termios,
1426         .stop = rs_stop,
1427         .start = rs_start,
1428         .hangup = rs_hangup,
1429         .set_ldisc = rs_set_ldisc,
1430 };
1431
1432 /* rs_init inits the driver */
1433 static int __init
1434 rs68328_init(void)
1435 {
1436         int flags, i;
1437         struct m68k_serial *info;
1438
1439         serial_driver = alloc_tty_driver(NR_PORTS);
1440         if (!serial_driver)
1441                 return -ENOMEM;
1442
1443         show_serial_version();
1444
1445         /* Initialize the tty_driver structure */
1446         /* SPARC: Not all of this is exactly right for us. */
1447         
1448         serial_driver->name = "ttyS";
1449         serial_driver->major = TTY_MAJOR;
1450         serial_driver->minor_start = 64;
1451         serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
1452         serial_driver->subtype = SERIAL_TYPE_NORMAL;
1453         serial_driver->init_termios = tty_std_termios;
1454         serial_driver->init_termios.c_cflag = 
1455                         m68328_console_cbaud | CS8 | CREAD | HUPCL | CLOCAL;
1456         serial_driver->flags = TTY_DRIVER_REAL_RAW;
1457         tty_set_operations(serial_driver, &rs_ops);
1458
1459         if (tty_register_driver(serial_driver)) {
1460                 put_tty_driver(serial_driver);
1461                 printk(KERN_ERR "Couldn't register serial driver\n");
1462                 return -ENOMEM;
1463         }
1464
1465         save_flags(flags); cli();
1466
1467         for(i=0;i<NR_PORTS;i++) {
1468
1469             info = &m68k_soft[i];
1470             info->magic = SERIAL_MAGIC;
1471             info->port = (int) &uart_addr[i];
1472             info->tty = 0;
1473             info->irq = uart_irqs[i];
1474             info->custom_divisor = 16;
1475             info->close_delay = 50;
1476             info->closing_wait = 3000;
1477             info->x_char = 0;
1478             info->event = 0;
1479             info->count = 0;
1480             info->blocked_open = 0;
1481             INIT_WORK(&info->tqueue, do_softint, info);
1482             INIT_WORK(&info->tqueue_hangup, do_serial_hangup, info);
1483             init_waitqueue_head(&info->open_wait);
1484             init_waitqueue_head(&info->close_wait);
1485             info->line = i;
1486             info->is_cons = 1; /* Means shortcuts work */
1487             
1488             printk("%s%d at 0x%08x (irq = %d)", serial_driver->name, info->line, 
1489                    info->port, info->irq);
1490             printk(" is a builtin MC68328 UART\n");
1491             
1492             IRQ_ports[info->irq] = info;        /* waste of space */
1493
1494 #ifdef CONFIG_M68VZ328
1495                 if (i > 0 )
1496                         PJSEL &= 0xCF;  /* PSW enable second port output */
1497 #endif
1498
1499             if (request_irq(uart_irqs[i],
1500                             rs_interrupt,
1501                             IRQ_FLG_STD,
1502                             "M68328_UART", NULL))
1503                 panic("Unable to attach 68328 serial interrupt\n");
1504 #ifdef CONFIG_PM
1505             serial_pm[i] = pm_register(PM_SYS_DEV, PM_SYS_COM, serial_pm_callback);
1506             if (serial_pm[i])
1507                     serial_pm[i]->data = info;
1508 #endif
1509         }
1510         restore_flags(flags);
1511         return 0;
1512 }
1513
1514
1515
1516 /*
1517  * register_serial and unregister_serial allows for serial ports to be
1518  * configured at run-time, to support PCMCIA modems.
1519  */
1520 /* SPARC: Unused at this time, just here to make things link. */
1521 int register_serial(struct serial_struct *req)
1522 {
1523         return -1;
1524 }
1525
1526 void unregister_serial(int line)
1527 {
1528         return;
1529 }
1530         
1531 module_init(rs68328_init);
1532
1533
1534
1535 static void m68328_set_baud(void)
1536 {
1537         unsigned short ustcnt;
1538         int     i;
1539
1540         ustcnt = USTCNT;
1541         USTCNT = ustcnt & ~USTCNT_TXEN;
1542
1543 again:
1544         for (i = 0; i < sizeof(baud_table) / sizeof(baud_table[0]); i++)
1545                 if (baud_table[i] == m68328_console_baud)
1546                         break;
1547         if (i >= sizeof(baud_table) / sizeof(baud_table[0])) {
1548                 m68328_console_baud = 9600;
1549                 goto again;
1550         }
1551
1552         UBAUD = PUT_FIELD(UBAUD_DIVIDE,    hw_baud_table[i].divisor) | 
1553                 PUT_FIELD(UBAUD_PRESCALER, hw_baud_table[i].prescale);
1554         ustcnt &= ~(USTCNT_PARITYEN | USTCNT_ODD_EVEN | USTCNT_STOP | USTCNT_8_7);
1555         ustcnt |= USTCNT_8_7;
1556         ustcnt |= USTCNT_TXEN;
1557         USTCNT = ustcnt;
1558         m68328_console_initted = 1;
1559         return;
1560 }
1561
1562
1563 int m68328_console_setup(struct console *cp, char *arg)
1564 {
1565         int             i, n = CONSOLE_BAUD_RATE;
1566
1567         if (!cp)
1568                 return(-1);
1569
1570         if (arg)
1571                 n = simple_strtoul(arg,NULL,0);
1572
1573         for (i = 0; i < BAUD_TABLE_SIZE; i++)
1574                 if (baud_table[i] == n)
1575                         break;
1576         if (i < BAUD_TABLE_SIZE) {
1577                 m68328_console_baud = n;
1578                 m68328_console_cbaud = 0;
1579                 if (i > 15) {
1580                         m68328_console_cbaud |= CBAUDEX;
1581                         i -= 15;
1582                 }
1583                 m68328_console_cbaud |= i;
1584         }
1585
1586         m68328_set_baud(); /* make sure baud rate changes */
1587         return(0);
1588 }
1589
1590
1591 static struct tty_driver *m68328_console_device(struct console *c, int *index)
1592 {
1593         *index = c->index;
1594         return serial_driver;
1595 }
1596
1597
1598 void m68328_console_write (struct console *co, const char *str,
1599                            unsigned int count)
1600 {
1601         if (!m68328_console_initted)
1602                 m68328_set_baud();
1603     while (count--) {
1604         if (*str == '\n')
1605            rs_put_char('\r');
1606         rs_put_char( *str++ );
1607     }
1608 }
1609
1610
1611 static struct console m68328_driver = {
1612         .name           = "ttyS",
1613         .write          = m68328_console_write,
1614         .device         = m68328_console_device,
1615         .setup          = m68328_console_setup,
1616         .flags          = CON_PRINTBUFFER,
1617         .index          = -1,
1618 };
1619
1620
1621 static int __init m68328_console_init(void)
1622 {
1623         register_console(&m68328_driver);
1624         return 0;
1625 }
1626
1627 console_initcall(m68328_console_init);