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