Merge master.kernel.org:/home/rmk/linux-2.6-serial
[pandora-kernel.git] / arch / um / drivers / chan_kern.c
1 /*
2  * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #include <linux/stddef.h>
7 #include <linux/kernel.h>
8 #include <linux/list.h>
9 #include <linux/slab.h>
10 #include <linux/tty.h>
11 #include <linux/string.h>
12 #include <linux/tty_flip.h>
13 #include <asm/irq.h>
14 #include "chan_kern.h"
15 #include "user_util.h"
16 #include "kern.h"
17 #include "irq_user.h"
18 #include "sigio.h"
19 #include "line.h"
20 #include "os.h"
21
22 /* XXX: could well be moved to somewhere else, if needed. */
23 static int my_printf(const char * fmt, ...)
24         __attribute__ ((format (printf, 1, 2)));
25
26 static int my_printf(const char * fmt, ...)
27 {
28         /* Yes, can be called on atomic context.*/
29         char *buf = kmalloc(4096, GFP_ATOMIC);
30         va_list args;
31         int r;
32
33         if (!buf) {
34                 /* We print directly fmt.
35                  * Yes, yes, yes, feel free to complain. */
36                 r = strlen(fmt);
37         } else {
38                 va_start(args, fmt);
39                 r = vsprintf(buf, fmt, args);
40                 va_end(args);
41                 fmt = buf;
42         }
43
44         if (r)
45                 r = os_write_file(1, fmt, r);
46         return r;
47
48 }
49
50 #ifdef CONFIG_NOCONFIG_CHAN
51 /* Despite its name, there's no added trailing newline. */
52 static int my_puts(const char * buf)
53 {
54         return os_write_file(1, buf, strlen(buf));
55 }
56
57 static void *not_configged_init(char *str, int device, struct chan_opts *opts)
58 {
59         my_puts("Using a channel type which is configured out of "
60                "UML\n");
61         return NULL;
62 }
63
64 static int not_configged_open(int input, int output, int primary, void *data,
65                               char **dev_out)
66 {
67         my_puts("Using a channel type which is configured out of "
68                "UML\n");
69         return -ENODEV;
70 }
71
72 static void not_configged_close(int fd, void *data)
73 {
74         my_puts("Using a channel type which is configured out of "
75                "UML\n");
76 }
77
78 static int not_configged_read(int fd, char *c_out, void *data)
79 {
80         my_puts("Using a channel type which is configured out of "
81                "UML\n");
82         return -EIO;
83 }
84
85 static int not_configged_write(int fd, const char *buf, int len, void *data)
86 {
87         my_puts("Using a channel type which is configured out of "
88                "UML\n");
89         return -EIO;
90 }
91
92 static int not_configged_console_write(int fd, const char *buf, int len)
93 {
94         my_puts("Using a channel type which is configured out of "
95                "UML\n");
96         return -EIO;
97 }
98
99 static int not_configged_window_size(int fd, void *data, unsigned short *rows,
100                                      unsigned short *cols)
101 {
102         my_puts("Using a channel type which is configured out of "
103                "UML\n");
104         return -ENODEV;
105 }
106
107 static void not_configged_free(void *data)
108 {
109         my_puts("Using a channel type which is configured out of "
110                "UML\n");
111 }
112
113 static struct chan_ops not_configged_ops = {
114         .init           = not_configged_init,
115         .open           = not_configged_open,
116         .close          = not_configged_close,
117         .read           = not_configged_read,
118         .write          = not_configged_write,
119         .console_write  = not_configged_console_write,
120         .window_size    = not_configged_window_size,
121         .free           = not_configged_free,
122         .winch          = 0,
123 };
124 #endif /* CONFIG_NOCONFIG_CHAN */
125
126 void generic_close(int fd, void *unused)
127 {
128         os_close_file(fd);
129 }
130
131 int generic_read(int fd, char *c_out, void *unused)
132 {
133         int n;
134
135         n = os_read_file(fd, c_out, sizeof(*c_out));
136
137         if(n == -EAGAIN)
138                 return 0;
139         else if(n == 0)
140                 return -EIO;
141         return n;
142 }
143
144 /* XXX Trivial wrapper around os_write_file */
145
146 int generic_write(int fd, const char *buf, int n, void *unused)
147 {
148         return os_write_file(fd, buf, n);
149 }
150
151 int generic_window_size(int fd, void *unused, unsigned short *rows_out,
152                         unsigned short *cols_out)
153 {
154         int rows, cols;
155         int ret;
156
157         ret = os_window_size(fd, &rows, &cols);
158         if(ret < 0)
159                 return ret;
160
161         ret = ((*rows_out != rows) || (*cols_out != cols));
162
163         *rows_out = rows;
164         *cols_out = cols;
165
166         return ret;
167 }
168
169 void generic_free(void *data)
170 {
171         kfree(data);
172 }
173
174 static void tty_receive_char(struct tty_struct *tty, char ch)
175 {
176         if(tty == NULL) return;
177
178         if(I_IXON(tty) && !I_IXOFF(tty) && !tty->raw) {
179                 if(ch == STOP_CHAR(tty)){
180                         stop_tty(tty);
181                         return;
182                 }
183                 else if(ch == START_CHAR(tty)){
184                         start_tty(tty);
185                         return;
186                 }
187         }
188
189         if((tty->flip.flag_buf_ptr == NULL) ||
190            (tty->flip.char_buf_ptr == NULL))
191                 return;
192         tty_insert_flip_char(tty, ch, TTY_NORMAL);
193 }
194
195 static int open_one_chan(struct chan *chan)
196 {
197         int fd;
198
199         if(chan->opened)
200                 return 0;
201
202         if(chan->ops->open == NULL)
203                 fd = 0;
204         else fd = (*chan->ops->open)(chan->input, chan->output, chan->primary,
205                                      chan->data, &chan->dev);
206         if(fd < 0)
207                 return fd;
208         chan->fd = fd;
209
210         chan->opened = 1;
211         return 0;
212 }
213
214 int open_chan(struct list_head *chans)
215 {
216         struct list_head *ele;
217         struct chan *chan;
218         int ret, err = 0;
219
220         list_for_each(ele, chans){
221                 chan = list_entry(ele, struct chan, list);
222                 ret = open_one_chan(chan);
223                 if(chan->primary)
224                         err = ret;
225         }
226         return err;
227 }
228
229 void chan_enable_winch(struct list_head *chans, struct tty_struct *tty)
230 {
231         struct list_head *ele;
232         struct chan *chan;
233
234         list_for_each(ele, chans){
235                 chan = list_entry(ele, struct chan, list);
236                 if(chan->primary && chan->output && chan->ops->winch){
237                         register_winch(chan->fd, tty);
238                         return;
239                 }
240         }
241 }
242
243 void enable_chan(struct line *line)
244 {
245         struct list_head *ele;
246         struct chan *chan;
247
248         list_for_each(ele, &line->chan_list){
249                 chan = list_entry(ele, struct chan, list);
250                 if(open_one_chan(chan))
251                         continue;
252
253                 if(chan->enabled)
254                         continue;
255                 line_setup_irq(chan->fd, chan->input, chan->output, line,
256                                chan);
257                 chan->enabled = 1;
258         }
259 }
260
261 static LIST_HEAD(irqs_to_free);
262
263 void free_irqs(void)
264 {
265         struct chan *chan;
266
267         while(!list_empty(&irqs_to_free)){
268                 chan = list_entry(irqs_to_free.next, struct chan, free_list);
269                 list_del(&chan->free_list);
270
271                 if(chan->input)
272                         free_irq(chan->line->driver->read_irq, chan);
273                 if(chan->output)
274                         free_irq(chan->line->driver->write_irq, chan);
275                 chan->enabled = 0;
276         }
277 }
278
279 static void close_one_chan(struct chan *chan, int delay_free_irq)
280 {
281         if(!chan->opened)
282                 return;
283
284         if(delay_free_irq){
285                 list_add(&chan->free_list, &irqs_to_free);
286         }
287         else {
288                 if(chan->input)
289                         free_irq(chan->line->driver->read_irq, chan);
290                 if(chan->output)
291                         free_irq(chan->line->driver->write_irq, chan);
292                 chan->enabled = 0;
293         }
294         if(chan->ops->close != NULL)
295                 (*chan->ops->close)(chan->fd, chan->data);
296
297         chan->opened = 0;
298         chan->fd = -1;
299 }
300
301 void close_chan(struct list_head *chans, int delay_free_irq)
302 {
303         struct chan *chan;
304
305         /* Close in reverse order as open in case more than one of them
306          * refers to the same device and they save and restore that device's
307          * state.  Then, the first one opened will have the original state,
308          * so it must be the last closed.
309          */
310         list_for_each_entry_reverse(chan, chans, list) {
311                 close_one_chan(chan, delay_free_irq);
312         }
313 }
314
315 void deactivate_chan(struct list_head *chans, int irq)
316 {
317         struct list_head *ele;
318
319         struct chan *chan;
320         list_for_each(ele, chans) {
321                 chan = list_entry(ele, struct chan, list);
322
323                 if(chan->enabled && chan->input)
324                         deactivate_fd(chan->fd, irq);
325         }
326 }
327
328 void reactivate_chan(struct list_head *chans, int irq)
329 {
330         struct list_head *ele;
331         struct chan *chan;
332
333         list_for_each(ele, chans) {
334                 chan = list_entry(ele, struct chan, list);
335
336                 if(chan->enabled && chan->input)
337                         reactivate_fd(chan->fd, irq);
338         }
339 }
340
341 int write_chan(struct list_head *chans, const char *buf, int len,
342                int write_irq)
343 {
344         struct list_head *ele;
345         struct chan *chan = NULL;
346         int n, ret = 0;
347
348         list_for_each(ele, chans) {
349                 chan = list_entry(ele, struct chan, list);
350                 if (!chan->output || (chan->ops->write == NULL))
351                         continue;
352                 n = chan->ops->write(chan->fd, buf, len, chan->data);
353                 if (chan->primary) {
354                         ret = n;
355                         if ((ret == -EAGAIN) || ((ret >= 0) && (ret < len)))
356                                 reactivate_fd(chan->fd, write_irq);
357                 }
358         }
359         return ret;
360 }
361
362 int console_write_chan(struct list_head *chans, const char *buf, int len)
363 {
364         struct list_head *ele;
365         struct chan *chan;
366         int n, ret = 0;
367
368         list_for_each(ele, chans){
369                 chan = list_entry(ele, struct chan, list);
370                 if(!chan->output || (chan->ops->console_write == NULL))
371                         continue;
372                 n = chan->ops->console_write(chan->fd, buf, len);
373                 if(chan->primary) ret = n;
374         }
375         return ret;
376 }
377
378 int console_open_chan(struct line *line, struct console *co,
379                       struct chan_opts *opts)
380 {
381         int err;
382
383         err = open_chan(&line->chan_list);
384         if(err)
385                 return err;
386
387         printk("Console initialized on /dev/%s%d\n",co->name,co->index);
388         return 0;
389 }
390
391 int chan_window_size(struct list_head *chans, unsigned short *rows_out,
392                       unsigned short *cols_out)
393 {
394         struct list_head *ele;
395         struct chan *chan;
396
397         list_for_each(ele, chans){
398                 chan = list_entry(ele, struct chan, list);
399                 if(chan->primary){
400                         if(chan->ops->window_size == NULL)
401                                 return 0;
402                         return chan->ops->window_size(chan->fd, chan->data,
403                                                       rows_out, cols_out);
404                 }
405         }
406         return 0;
407 }
408
409 void free_one_chan(struct chan *chan, int delay_free_irq)
410 {
411         list_del(&chan->list);
412
413         close_one_chan(chan, delay_free_irq);
414
415         if(chan->ops->free != NULL)
416                 (*chan->ops->free)(chan->data);
417
418         if(chan->primary && chan->output) ignore_sigio_fd(chan->fd);
419         kfree(chan);
420 }
421
422 void free_chan(struct list_head *chans, int delay_free_irq)
423 {
424         struct list_head *ele, *next;
425         struct chan *chan;
426
427         list_for_each_safe(ele, next, chans){
428                 chan = list_entry(ele, struct chan, list);
429                 free_one_chan(chan, delay_free_irq);
430         }
431 }
432
433 static int one_chan_config_string(struct chan *chan, char *str, int size,
434                                   char **error_out)
435 {
436         int n = 0;
437
438         if(chan == NULL){
439                 CONFIG_CHUNK(str, size, n, "none", 1);
440                 return n;
441         }
442
443         CONFIG_CHUNK(str, size, n, chan->ops->type, 0);
444
445         if(chan->dev == NULL){
446                 CONFIG_CHUNK(str, size, n, "", 1);
447                 return n;
448         }
449
450         CONFIG_CHUNK(str, size, n, ":", 0);
451         CONFIG_CHUNK(str, size, n, chan->dev, 0);
452
453         return n;
454 }
455
456 static int chan_pair_config_string(struct chan *in, struct chan *out,
457                                    char *str, int size, char **error_out)
458 {
459         int n;
460
461         n = one_chan_config_string(in, str, size, error_out);
462         str += n;
463         size -= n;
464
465         if(in == out){
466                 CONFIG_CHUNK(str, size, n, "", 1);
467                 return n;
468         }
469
470         CONFIG_CHUNK(str, size, n, ",", 1);
471         n = one_chan_config_string(out, str, size, error_out);
472         str += n;
473         size -= n;
474         CONFIG_CHUNK(str, size, n, "", 1);
475
476         return n;
477 }
478
479 int chan_config_string(struct list_head *chans, char *str, int size,
480                        char **error_out)
481 {
482         struct list_head *ele;
483         struct chan *chan, *in = NULL, *out = NULL;
484
485         list_for_each(ele, chans){
486                 chan = list_entry(ele, struct chan, list);
487                 if(!chan->primary)
488                         continue;
489                 if(chan->input)
490                         in = chan;
491                 if(chan->output)
492                         out = chan;
493         }
494
495         return chan_pair_config_string(in, out, str, size, error_out);
496 }
497
498 struct chan_type {
499         char *key;
500         struct chan_ops *ops;
501 };
502
503 struct chan_type chan_table[] = {
504         { "fd", &fd_ops },
505
506 #ifdef CONFIG_NULL_CHAN
507         { "null", &null_ops },
508 #else
509         { "null", &not_configged_ops },
510 #endif
511
512 #ifdef CONFIG_PORT_CHAN
513         { "port", &port_ops },
514 #else
515         { "port", &not_configged_ops },
516 #endif
517
518 #ifdef CONFIG_PTY_CHAN
519         { "pty", &pty_ops },
520         { "pts", &pts_ops },
521 #else
522         { "pty", &not_configged_ops },
523         { "pts", &not_configged_ops },
524 #endif
525
526 #ifdef CONFIG_TTY_CHAN
527         { "tty", &tty_ops },
528 #else
529         { "tty", &not_configged_ops },
530 #endif
531
532 #ifdef CONFIG_XTERM_CHAN
533         { "xterm", &xterm_ops },
534 #else
535         { "xterm", &not_configged_ops },
536 #endif
537 };
538
539 static struct chan *parse_chan(struct line *line, char *str, int device,
540                                struct chan_opts *opts)
541 {
542         struct chan_type *entry;
543         struct chan_ops *ops;
544         struct chan *chan;
545         void *data;
546         int i;
547
548         ops = NULL;
549         data = NULL;
550         for(i = 0; i < sizeof(chan_table)/sizeof(chan_table[0]); i++){
551                 entry = &chan_table[i];
552                 if(!strncmp(str, entry->key, strlen(entry->key))){
553                         ops = entry->ops;
554                         str += strlen(entry->key);
555                         break;
556                 }
557         }
558         if(ops == NULL){
559                 my_printf("parse_chan couldn't parse \"%s\"\n",
560                        str);
561                 return NULL;
562         }
563         if(ops->init == NULL)
564                 return NULL;
565         data = (*ops->init)(str, device, opts);
566         if(data == NULL)
567                 return NULL;
568
569         chan = kmalloc(sizeof(*chan), GFP_ATOMIC);
570         if(chan == NULL)
571                 return NULL;
572         *chan = ((struct chan) { .list          = LIST_HEAD_INIT(chan->list),
573                                  .free_list     =
574                                         LIST_HEAD_INIT(chan->free_list),
575                                  .line          = line,
576                                  .primary       = 1,
577                                  .input         = 0,
578                                  .output        = 0,
579                                  .opened        = 0,
580                                  .enabled       = 0,
581                                  .fd            = -1,
582                                  .ops           = ops,
583                                  .data          = data });
584         return chan;
585 }
586
587 int parse_chan_pair(char *str, struct line *line, int device,
588                     struct chan_opts *opts)
589 {
590         struct list_head *chans = &line->chan_list;
591         struct chan *new, *chan;
592         char *in, *out;
593
594         if(!list_empty(chans)){
595                 chan = list_entry(chans->next, struct chan, list);
596                 free_chan(chans, 0);
597                 INIT_LIST_HEAD(chans);
598         }
599
600         out = strchr(str, ',');
601         if(out != NULL){
602                 in = str;
603                 *out = '\0';
604                 out++;
605                 new = parse_chan(line, in, device, opts);
606                 if(new == NULL)
607                         return -1;
608
609                 new->input = 1;
610                 list_add(&new->list, chans);
611
612                 new = parse_chan(line, out, device, opts);
613                 if(new == NULL)
614                         return -1;
615
616                 list_add(&new->list, chans);
617                 new->output = 1;
618         }
619         else {
620                 new = parse_chan(line, str, device, opts);
621                 if(new == NULL)
622                         return -1;
623
624                 list_add(&new->list, chans);
625                 new->input = 1;
626                 new->output = 1;
627         }
628         return 0;
629 }
630
631 int chan_out_fd(struct list_head *chans)
632 {
633         struct list_head *ele;
634         struct chan *chan;
635
636         list_for_each(ele, chans){
637                 chan = list_entry(ele, struct chan, list);
638                 if(chan->primary && chan->output)
639                         return chan->fd;
640         }
641         return -1;
642 }
643
644 void chan_interrupt(struct list_head *chans, struct work_struct *task,
645                     struct tty_struct *tty, int irq)
646 {
647         struct list_head *ele, *next;
648         struct chan *chan;
649         int err;
650         char c;
651
652         list_for_each_safe(ele, next, chans){
653                 chan = list_entry(ele, struct chan, list);
654                 if(!chan->input || (chan->ops->read == NULL)) continue;
655                 do {
656                         if((tty != NULL) &&
657                            (tty->flip.count >= TTY_FLIPBUF_SIZE)){
658                                 schedule_delayed_work(task, 1);
659                                 goto out;
660                         }
661                         err = chan->ops->read(chan->fd, &c, chan->data);
662                         if(err > 0)
663                                 tty_receive_char(tty, c);
664                 } while(err > 0);
665
666                 if(err == 0) reactivate_fd(chan->fd, irq);
667                 if(err == -EIO){
668                         if(chan->primary){
669                                 if(tty != NULL)
670                                         tty_hangup(tty);
671                                 close_chan(chans, 1);
672                                 return;
673                         }
674                         else close_one_chan(chan, 1);
675                 }
676         }
677  out:
678         if(tty) tty_flip_buffer_push(tty);
679 }