3 * Common SUN serial routines. Based entirely
4 * upon drivers/sbus/char/sunserial.c which is:
6 * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
8 * Adaptation to new UART layer is:
10 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/console.h>
16 #include <linux/tty.h>
17 #include <linux/errno.h>
18 #include <linux/string.h>
19 #include <linux/serial_core.h>
20 #include <linux/init.h>
26 static int sunserial_current_minor
= 64;
28 int sunserial_register_minors(struct uart_driver
*drv
, int count
)
32 drv
->minor
= sunserial_current_minor
;
34 /* Register the driver on the first call */
36 err
= uart_register_driver(drv
);
38 sunserial_current_minor
+= count
;
39 drv
->tty_driver
->name_base
= drv
->minor
- 64;
43 EXPORT_SYMBOL(sunserial_register_minors
);
45 void sunserial_unregister_minors(struct uart_driver
*drv
, int count
)
48 sunserial_current_minor
-= count
;
51 uart_unregister_driver(drv
);
53 EXPORT_SYMBOL(sunserial_unregister_minors
);
55 int sunserial_console_match(struct console
*con
, struct device_node
*dp
,
56 struct uart_driver
*drv
, int line
, bool ignore_line
)
58 if (!con
|| of_console_device
!= dp
)
64 if (of_console_options
&&
65 *of_console_options
== 'b')
68 if ((line
& 1) != off
)
75 if (!console_set_on_cmdline
)
76 add_preferred_console(con
->name
, line
, NULL
);
80 EXPORT_SYMBOL(sunserial_console_match
);
82 void sunserial_console_termios(struct console
*con
, struct device_node
*uart_dp
)
85 char mode_prop
[] = "ttyX-mode";
86 int baud
, bits
, stop
, cflag
;
89 if (!strcmp(uart_dp
->name
, "rsc") ||
90 !strcmp(uart_dp
->name
, "rsc-console") ||
91 !strcmp(uart_dp
->name
, "rsc-control")) {
92 mode
= of_get_property(uart_dp
,
93 "ssp-console-modes", NULL
);
95 mode
= "115200,8,n,1,-";
96 } else if (!strcmp(uart_dp
->name
, "lom-console")) {
97 mode
= "9600,8,n,1,-";
99 struct device_node
*dp
;
103 if (of_console_options
)
104 c
= *of_console_options
;
108 dp
= of_find_node_by_path("/options");
109 mode
= of_get_property(dp
, mode_prop
, NULL
);
111 mode
= "9600,8,n,1,-";
114 cflag
= CREAD
| HUPCL
| CLOCAL
;
117 baud
= simple_strtoul(s
, NULL
, 0);
119 bits
= simple_strtoul(++s
, NULL
, 0);
123 stop
= simple_strtoul(++s
, NULL
, 0);
125 /* XXX handshake is not handled here. */
128 case 150: cflag
|= B150
; break;
129 case 300: cflag
|= B300
; break;
130 case 600: cflag
|= B600
; break;
131 case 1200: cflag
|= B1200
; break;
132 case 2400: cflag
|= B2400
; break;
133 case 4800: cflag
|= B4800
; break;
134 case 9600: cflag
|= B9600
; break;
135 case 19200: cflag
|= B19200
; break;
136 case 38400: cflag
|= B38400
; break;
137 case 57600: cflag
|= B57600
; break;
138 case 115200: cflag
|= B115200
; break;
139 case 230400: cflag
|= B230400
; break;
140 case 460800: cflag
|= B460800
; break;
141 default: baud
= 9600; cflag
|= B9600
; break;
145 case 5: cflag
|= CS5
; break;
146 case 6: cflag
|= CS6
; break;
147 case 7: cflag
|= CS7
; break;
148 case 8: cflag
|= CS8
; break;
149 default: cflag
|= CS8
; break;
153 case 'o': cflag
|= (PARENB
| PARODD
); break;
154 case 'e': cflag
|= PARENB
; break;
155 case 'n': default: break;
159 case 2: cflag
|= CSTOPB
; break;
160 case 1: default: break;
166 /* Sun serial MOUSE auto baud rate detection. */
167 static struct mouse_baud_cflag
{
170 } mouse_baud_table
[] = {
179 unsigned int suncore_mouse_baud_cflag_next(unsigned int cflag
, int *new_baud
)
183 for (i
= 0; mouse_baud_table
[i
].baud
!= -1; i
++)
184 if (mouse_baud_table
[i
].cflag
== (cflag
& CBAUD
))
188 if (mouse_baud_table
[i
].baud
== -1)
191 *new_baud
= mouse_baud_table
[i
].baud
;
192 return mouse_baud_table
[i
].cflag
;
195 EXPORT_SYMBOL(suncore_mouse_baud_cflag_next
);
197 /* Basically, when the baud rate is wrong the mouse spits out
200 int suncore_mouse_baud_detection(unsigned char ch
, int is_break
)
202 static int mouse_got_break
= 0;
206 /* Let a few normal bytes go by before we jump the gun
207 * and say we need to try another baud rate.
209 if (mouse_got_break
&& ctr
< 8)
212 /* Ok, we need to try another baud. */
217 if (mouse_got_break
) {
220 /* Correct baud rate determined. */
228 EXPORT_SYMBOL(suncore_mouse_baud_detection
);
230 static int __init
suncore_init(void)
235 static void __exit
suncore_exit(void)
239 module_init(suncore_init
);
240 module_exit(suncore_exit
);
242 MODULE_AUTHOR("Eddie C. Dost, David S. Miller");
243 MODULE_DESCRIPTION("Sun serial common layer");
244 MODULE_LICENSE("GPL");