]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/xtensa/platforms/iss/console.c
TTY: iss/console, use tty_port
[karo-tx-linux.git] / arch / xtensa / platforms / iss / console.c
1 /*
2  * arch/xtensa/platforms/iss/console.c
3  *
4  * This file is subject to the terms and conditions of the GNU General Public
5  * License.  See the file "COPYING" in the main directory of this archive
6  * for more details.
7  *
8  * Copyright (C) 2001-2005 Tensilica Inc.
9  *   Authors    Christian Zankel, Joe Taylor
10  */
11
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/console.h>
16 #include <linux/init.h>
17 #include <linux/mm.h>
18 #include <linux/major.h>
19 #include <linux/param.h>
20 #include <linux/seq_file.h>
21 #include <linux/serial.h>
22 #include <linux/serialP.h>
23
24 #include <asm/uaccess.h>
25 #include <asm/irq.h>
26
27 #include <platform/simcall.h>
28
29 #include <linux/tty.h>
30 #include <linux/tty_flip.h>
31
32 #ifdef SERIAL_INLINE
33 #define _INLINE_ inline
34 #endif
35
36 #define SERIAL_MAX_NUM_LINES 1
37 #define SERIAL_TIMER_VALUE (20 * HZ)
38
39 static struct tty_driver *serial_driver;
40 static struct tty_port serial_port;
41 static struct timer_list serial_timer;
42
43 static DEFINE_SPINLOCK(timer_lock);
44
45 int errno;
46
47 static int __simc (int a, int b, int c, int d, int e, int f) __attribute__((__noinline__));
48 static int __simc (int a, int b, int c, int d, int e, int f)
49 {
50         int ret;
51         __asm__ __volatile__ ("simcall\n"
52                         "mov %0, a2\n"
53                         "mov %1, a3\n" : "=a" (ret), "=a" (errno)
54                         : : "a2", "a3");
55         return ret;
56 }
57
58 static char *serial_version = "0.1";
59 static char *serial_name = "ISS serial driver";
60
61 /*
62  * This routine is called whenever a serial port is opened.  It
63  * enables interrupts for a serial port, linking in its async structure into
64  * the IRQ chain.   It also performs the serial-specific
65  * initialization for the tty structure.
66  */
67
68 static void rs_poll(unsigned long);
69
70 static int rs_open(struct tty_struct *tty, struct file * filp)
71 {
72         tty->port = &serial_port;
73         spin_lock(&timer_lock);
74         if (tty->count == 1) {
75                 setup_timer(&serial_timer, rs_poll, (unsigned long)tty);
76                 mod_timer(&serial_timer, jiffies + SERIAL_TIMER_VALUE);
77         }
78         spin_unlock(&timer_lock);
79
80         return 0;
81 }
82
83
84 /*
85  * ------------------------------------------------------------
86  * iss_serial_close()
87  *
88  * This routine is called when the serial port gets closed.  First, we
89  * wait for the last remaining data to be sent.  Then, we unlink its
90  * async structure from the interrupt chain if necessary, and we free
91  * that IRQ if nothing is left in the chain.
92  * ------------------------------------------------------------
93  */
94 static void rs_close(struct tty_struct *tty, struct file * filp)
95 {
96         spin_lock_bh(&timer_lock);
97         if (tty->count == 1)
98                 del_timer_sync(&serial_timer);
99         spin_unlock_bh(&timer_lock);
100 }
101
102
103 static int rs_write(struct tty_struct * tty,
104                     const unsigned char *buf, int count)
105 {
106         /* see drivers/char/serialX.c to reference original version */
107
108         __simc (SYS_write, 1, (unsigned long)buf, count, 0, 0);
109         return count;
110 }
111
112 static void rs_poll(unsigned long priv)
113 {
114         struct tty_struct* tty = (struct tty_struct*) priv;
115
116         struct timeval tv = { .tv_sec = 0, .tv_usec = 0 };
117         int i = 0;
118         unsigned char c;
119
120         spin_lock(&timer_lock);
121
122         while (__simc(SYS_select_one, 0, XTISS_SELECT_ONE_READ, (int)&tv,0,0)){
123                 __simc (SYS_read, 0, (unsigned long)&c, 1, 0, 0);
124                 tty_insert_flip_char(tty, c, TTY_NORMAL);
125                 i++;
126         }
127
128         if (i)
129                 tty_flip_buffer_push(tty);
130
131
132         mod_timer(&serial_timer, jiffies + SERIAL_TIMER_VALUE);
133         spin_unlock(&timer_lock);
134 }
135
136
137 static int rs_put_char(struct tty_struct *tty, unsigned char ch)
138 {
139         char buf[2];
140
141         buf[0] = ch;
142         buf[1] = '\0';          /* Is this NULL necessary? */
143         __simc (SYS_write, 1, (unsigned long) buf, 1, 0, 0);
144         return 1;
145 }
146
147 static void rs_flush_chars(struct tty_struct *tty)
148 {
149 }
150
151 static int rs_write_room(struct tty_struct *tty)
152 {
153         /* Let's say iss can always accept 2K characters.. */
154         return 2 * 1024;
155 }
156
157 static int rs_chars_in_buffer(struct tty_struct *tty)
158 {
159         /* the iss doesn't buffer characters */
160         return 0;
161 }
162
163 static void rs_hangup(struct tty_struct *tty)
164 {
165         /* Stub, once again.. */
166 }
167
168 static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
169 {
170         /* Stub, once again.. */
171 }
172
173 static int rs_proc_show(struct seq_file *m, void *v)
174 {
175         seq_printf(m, "serinfo:1.0 driver:%s\n", serial_version);
176         return 0;
177 }
178
179 static int rs_proc_open(struct inode *inode, struct file *file)
180 {
181         return single_open(file, rs_proc_show, NULL);
182 }
183
184 static const struct file_operations rs_proc_fops = {
185         .owner          = THIS_MODULE,
186         .open           = rs_proc_open,
187         .read           = seq_read,
188         .llseek         = seq_lseek,
189         .release        = single_release,
190 };
191
192 static const struct tty_operations serial_ops = {
193         .open = rs_open,
194         .close = rs_close,
195         .write = rs_write,
196         .put_char = rs_put_char,
197         .flush_chars = rs_flush_chars,
198         .write_room = rs_write_room,
199         .chars_in_buffer = rs_chars_in_buffer,
200         .hangup = rs_hangup,
201         .wait_until_sent = rs_wait_until_sent,
202         .proc_fops = &rs_proc_fops,
203 };
204
205 int __init rs_init(void)
206 {
207         tty_port_init(&serial_port);
208
209         serial_driver = alloc_tty_driver(SERIAL_MAX_NUM_LINES);
210
211         printk ("%s %s\n", serial_name, serial_version);
212
213         /* Initialize the tty_driver structure */
214
215         serial_driver->driver_name = "iss_serial";
216         serial_driver->name = "ttyS";
217         serial_driver->major = TTY_MAJOR;
218         serial_driver->minor_start = 64;
219         serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
220         serial_driver->subtype = SERIAL_TYPE_NORMAL;
221         serial_driver->init_termios = tty_std_termios;
222         serial_driver->init_termios.c_cflag =
223                 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
224         serial_driver->flags = TTY_DRIVER_REAL_RAW;
225
226         tty_set_operations(serial_driver, &serial_ops);
227
228         if (tty_register_driver(serial_driver))
229                 panic("Couldn't register serial driver\n");
230         return 0;
231 }
232
233
234 static __exit void rs_exit(void)
235 {
236         int error;
237
238         if ((error = tty_unregister_driver(serial_driver)))
239                 printk("ISS_SERIAL: failed to unregister serial driver (%d)\n",
240                        error);
241         put_tty_driver(serial_driver);
242 }
243
244
245 /* We use `late_initcall' instead of just `__initcall' as a workaround for
246  * the fact that (1) simcons_tty_init can't be called before tty_init,
247  * (2) tty_init is called via `module_init', (3) if statically linked,
248  * module_init == device_init, and (4) there's no ordering of init lists.
249  * We can do this easily because simcons is always statically linked, but
250  * other tty drivers that depend on tty_init and which must use
251  * `module_init' to declare their init routines are likely to be broken.
252  */
253
254 late_initcall(rs_init);
255
256
257 #ifdef CONFIG_SERIAL_CONSOLE
258
259 static void iss_console_write(struct console *co, const char *s, unsigned count)
260 {
261         int len = strlen(s);
262
263         if (s != 0 && *s != 0)
264                 __simc (SYS_write, 1, (unsigned long)s,
265                         count < len ? count : len,0,0);
266 }
267
268 static struct tty_driver* iss_console_device(struct console *c, int *index)
269 {
270         *index = c->index;
271         return serial_driver;
272 }
273
274
275 static struct console sercons = {
276         .name = "ttyS",
277         .write = iss_console_write,
278         .device = iss_console_device,
279         .flags = CON_PRINTBUFFER,
280         .index = -1
281 };
282
283 static int __init iss_console_init(void)
284 {
285         register_console(&sercons);
286         return 0;
287 }
288
289 console_initcall(iss_console_init);
290
291 #endif /* CONFIG_SERIAL_CONSOLE */
292