Home | History | Annotate | Line # | Download | only in arcbios
arcbios_tty.c revision 1.20.4.2
      1  1.20.4.1     rmind /*	$NetBSD: arcbios_tty.c,v 1.20.4.2 2011/05/31 03:04:34 rmind Exp $	*/
      2       1.1   thorpej 
      3       1.1   thorpej /*
      4       1.1   thorpej  * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
      5       1.1   thorpej  * All rights reserved.
      6       1.1   thorpej  *
      7       1.1   thorpej  * Author: Chris G. Demetriou
      8       1.8     perry  *
      9       1.1   thorpej  * Permission to use, copy, modify and distribute this software and
     10       1.1   thorpej  * its documentation is hereby granted, provided that both the copyright
     11       1.1   thorpej  * notice and this permission notice appear in all copies of the
     12       1.1   thorpej  * software, derivative works or modified versions, and any portions
     13       1.1   thorpej  * thereof, and that both notices appear in supporting documentation.
     14       1.8     perry  *
     15       1.8     perry  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     16       1.8     perry  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     17       1.1   thorpej  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     18       1.8     perry  *
     19       1.1   thorpej  * Carnegie Mellon requests users of this software to return to
     20       1.1   thorpej  *
     21       1.1   thorpej  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     22       1.1   thorpej  *  School of Computer Science
     23       1.1   thorpej  *  Carnegie Mellon University
     24       1.1   thorpej  *  Pittsburgh PA 15213-3890
     25       1.1   thorpej  *
     26       1.1   thorpej  * any improvements or extensions that they make and grant Carnegie the
     27       1.1   thorpej  * rights to redistribute these changes.
     28       1.1   thorpej  */
     29       1.3     lukem 
     30       1.3     lukem #include <sys/cdefs.h>
     31  1.20.4.1     rmind __KERNEL_RCSID(0, "$NetBSD: arcbios_tty.c,v 1.20.4.2 2011/05/31 03:04:34 rmind Exp $");
     32       1.1   thorpej 
     33       1.1   thorpej #include <sys/param.h>
     34       1.8     perry #include <sys/uio.h>
     35       1.1   thorpej #include <sys/systm.h>
     36       1.1   thorpej #include <sys/callout.h>
     37       1.1   thorpej #include <sys/kernel.h>
     38       1.1   thorpej #include <sys/conf.h>
     39       1.1   thorpej #include <sys/proc.h>
     40       1.1   thorpej #include <sys/tty.h>
     41       1.1   thorpej #include <sys/termios.h>
     42      1.13      yamt #include <sys/kauth.h>
     43       1.1   thorpej 
     44       1.1   thorpej #include <dev/cons.h>
     45       1.1   thorpej 
     46       1.1   thorpej #include <dev/arcbios/arcbios.h>
     47       1.1   thorpej #include <dev/arcbios/arcbiosvar.h>
     48       1.1   thorpej 
     49      1.17        ad callout_t  arcbios_tty_ch;
     50      1.17        ad bool arcbios_ch_init;
     51       1.1   thorpej static struct tty *arcbios_tty[1];
     52       1.1   thorpej 
     53       1.1   thorpej void	arcbios_tty_start(struct tty *);
     54       1.1   thorpej void	arcbios_tty_poll(void *);
     55       1.1   thorpej int	arcbios_tty_param(struct tty *, struct termios *);
     56       1.1   thorpej 
     57       1.5   gehenna dev_type_open(arcbios_ttyopen);
     58       1.5   gehenna dev_type_close(arcbios_ttyclose);
     59       1.5   gehenna dev_type_read(arcbios_ttyread);
     60       1.5   gehenna dev_type_write(arcbios_ttywrite);
     61       1.5   gehenna dev_type_ioctl(arcbios_ttyioctl);
     62       1.5   gehenna dev_type_stop(arcbios_ttystop);
     63       1.5   gehenna dev_type_tty(arcbios_ttytty);
     64       1.5   gehenna dev_type_poll(arcbios_ttypoll);
     65       1.5   gehenna 
     66       1.5   gehenna const struct cdevsw arcbios_cdevsw = {
     67       1.5   gehenna 	arcbios_ttyopen, arcbios_ttyclose, arcbios_ttyread, arcbios_ttywrite,
     68       1.5   gehenna 	arcbios_ttyioctl, arcbios_ttystop, arcbios_ttytty, arcbios_ttypoll,
     69       1.6  jdolecek 	nommap, ttykqfilter, D_TTY,
     70       1.5   gehenna };
     71       1.1   thorpej 
     72       1.1   thorpej int
     73      1.11  christos arcbios_ttyopen(dev_t dev, int flag, int mode, struct lwp *l)
     74       1.1   thorpej {
     75       1.1   thorpej 	int unit = minor(dev);
     76       1.1   thorpej 	struct tty *tp;
     77       1.2     rafal 	int s, error = 0, setuptimeout = 0;
     78       1.1   thorpej 
     79      1.17        ad 	if (!arcbios_ch_init) {
     80      1.17        ad 		arcbios_ch_init = true;
     81      1.18        ad 		callout_init(&arcbios_tty_ch, 0);
     82      1.17        ad 	}
     83      1.17        ad 
     84       1.1   thorpej 	if (unit != 0)
     85       1.1   thorpej 		return (ENODEV);
     86       1.1   thorpej 
     87       1.1   thorpej 	s = spltty();
     88       1.1   thorpej 
     89       1.1   thorpej 	if (arcbios_tty[unit] == NULL) {
     90  1.20.4.2     rmind 		tp = arcbios_tty[unit] = tty_alloc();
     91       1.1   thorpej 		tty_attach(tp);
     92       1.1   thorpej 	} else
     93       1.1   thorpej 		tp = arcbios_tty[unit];
     94       1.1   thorpej 
     95       1.1   thorpej 	tp->t_oproc = arcbios_tty_start;
     96       1.1   thorpej 	tp->t_param = arcbios_tty_param;
     97       1.1   thorpej 	tp->t_dev = dev;
     98      1.15      elad 
     99      1.15      elad 	if (kauth_authorize_device_tty(l->l_cred, KAUTH_DEVICE_TTY_OPEN, tp)) {
    100      1.15      elad 		splx(s);
    101      1.15      elad 		return (EBUSY);
    102      1.15      elad 	}
    103      1.15      elad 
    104       1.1   thorpej 	if ((tp->t_state & TS_ISOPEN) == 0) {
    105       1.1   thorpej 		tp->t_state |= TS_CARR_ON;
    106       1.1   thorpej 		ttychars(tp);
    107       1.1   thorpej 		tp->t_iflag = TTYDEF_IFLAG;
    108       1.1   thorpej 		tp->t_oflag = TTYDEF_OFLAG;
    109       1.1   thorpej 		tp->t_cflag = TTYDEF_CFLAG | CLOCAL;
    110       1.1   thorpej 		tp->t_lflag = TTYDEF_LFLAG;
    111       1.1   thorpej 		tp->t_ispeed = tp->t_ospeed = 9600;
    112       1.1   thorpej 		ttsetwater(tp);
    113       1.1   thorpej 
    114       1.1   thorpej 		setuptimeout = 1;
    115       1.1   thorpej 	}
    116       1.1   thorpej 
    117       1.1   thorpej 	splx(s);
    118       1.1   thorpej 
    119       1.1   thorpej 	error = (*tp->t_linesw->l_open)(dev, tp);
    120       1.1   thorpej 	if (error == 0 && setuptimeout)
    121       1.1   thorpej 		callout_reset(&arcbios_tty_ch, 1, arcbios_tty_poll, tp);
    122       1.1   thorpej 
    123       1.1   thorpej 	return (error);
    124       1.1   thorpej }
    125       1.8     perry 
    126       1.1   thorpej int
    127      1.11  christos arcbios_ttyclose(dev_t dev, int flag, int mode, struct lwp *l)
    128       1.1   thorpej {
    129       1.1   thorpej 	int unit = minor(dev);
    130       1.1   thorpej 	struct tty *tp = arcbios_tty[unit];
    131       1.1   thorpej 
    132       1.1   thorpej 	callout_stop(&arcbios_tty_ch);
    133       1.1   thorpej 	(*tp->t_linesw->l_close)(tp, flag);
    134       1.1   thorpej 	ttyclose(tp);
    135       1.1   thorpej 	return (0);
    136       1.1   thorpej }
    137       1.8     perry 
    138       1.1   thorpej int
    139       1.1   thorpej arcbios_ttyread(dev_t dev, struct uio *uio, int flag)
    140       1.1   thorpej {
    141       1.1   thorpej 	struct tty *tp = arcbios_tty[minor(dev)];
    142       1.1   thorpej 
    143       1.1   thorpej 	return ((*tp->t_linesw->l_read)(tp, uio, flag));
    144       1.1   thorpej }
    145       1.8     perry 
    146       1.1   thorpej int
    147       1.1   thorpej arcbios_ttywrite(dev_t dev, struct uio *uio, int flag)
    148       1.1   thorpej {
    149       1.1   thorpej 	struct tty *tp = arcbios_tty[minor(dev)];
    150       1.8     perry 
    151       1.1   thorpej 	return ((*tp->t_linesw->l_write)(tp, uio, flag));
    152       1.1   thorpej }
    153       1.1   thorpej 
    154       1.1   thorpej int
    155      1.11  christos arcbios_ttypoll(dev_t dev, int events, struct lwp *l)
    156       1.1   thorpej {
    157       1.1   thorpej 	struct tty *tp = arcbios_tty[minor(dev)];
    158       1.8     perry 
    159      1.11  christos 	return ((*tp->t_linesw->l_poll)(tp, events, l));
    160       1.1   thorpej }
    161       1.8     perry 
    162       1.1   thorpej int
    163      1.16  christos arcbios_ttyioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    164       1.1   thorpej {
    165       1.1   thorpej 	int unit = minor(dev);
    166       1.1   thorpej 	struct tty *tp = arcbios_tty[unit];
    167       1.1   thorpej 	int error;
    168       1.1   thorpej 
    169      1.11  christos 	error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, l);
    170       1.4    atatat 	if (error != EPASSTHROUGH)
    171       1.1   thorpej 		return (error);
    172      1.11  christos 	return (ttioctl(tp, cmd, data, flag, l));
    173       1.1   thorpej }
    174       1.1   thorpej 
    175       1.1   thorpej int
    176       1.1   thorpej arcbios_tty_param(struct tty *tp, struct termios *t)
    177       1.1   thorpej {
    178       1.1   thorpej 
    179       1.1   thorpej 	return (0);
    180       1.1   thorpej }
    181       1.1   thorpej 
    182       1.1   thorpej void
    183       1.1   thorpej arcbios_tty_start(struct tty *tp)
    184       1.1   thorpej {
    185       1.9   tsutsui 	u_long count;
    186       1.1   thorpej 	int s;
    187       1.1   thorpej 
    188       1.1   thorpej 	s = spltty();
    189       1.1   thorpej 	if (tp->t_state & (TS_TTSTOP | TS_BUSY))
    190       1.1   thorpej 		goto out;
    191      1.19        ad 	ttypull(tp);
    192       1.1   thorpej 	tp->t_state |= TS_BUSY;
    193       1.1   thorpej 	while (tp->t_outq.c_cc != 0) {
    194  1.20.4.1     rmind 		arcbios_Write(ARCBIOS_STDOUT, tp->t_outq.c_cf,
    195       1.1   thorpej 		    ndqb(&tp->t_outq, 0), &count);
    196       1.1   thorpej 		ndflush(&tp->t_outq, count);
    197       1.1   thorpej 	}
    198       1.1   thorpej 	tp->t_state &= ~TS_BUSY;
    199       1.1   thorpej  out:
    200       1.1   thorpej 	splx(s);
    201       1.1   thorpej }
    202       1.1   thorpej 
    203       1.1   thorpej void
    204       1.1   thorpej arcbios_ttystop(struct tty *tp, int flag)
    205       1.1   thorpej {
    206       1.1   thorpej 	int s;
    207       1.1   thorpej 
    208       1.1   thorpej 	s = spltty();
    209       1.1   thorpej 	if (tp->t_state & TS_BUSY)
    210       1.1   thorpej 		if ((tp->t_state & TS_TTSTOP) == 0)
    211       1.1   thorpej 			tp->t_state |= TS_FLUSH;
    212       1.1   thorpej 	splx(s);
    213       1.1   thorpej }
    214       1.1   thorpej 
    215       1.1   thorpej static int
    216       1.1   thorpej arcbios_tty_getchar(int *cp)
    217       1.1   thorpej {
    218       1.1   thorpej 	char c;
    219       1.1   thorpej 	int32_t q;
    220       1.9   tsutsui 	u_long count;
    221       1.1   thorpej 
    222  1.20.4.1     rmind 	q = arcbios_GetReadStatus(ARCBIOS_STDIN);
    223       1.1   thorpej 
    224       1.1   thorpej 	if (q == 0) {
    225  1.20.4.1     rmind 		arcbios_Read(ARCBIOS_STDIN, &c, 1, &count);
    226       1.8     perry 		*cp = c;
    227       1.1   thorpej 
    228       1.1   thorpej 		return 1;
    229       1.1   thorpej 	}
    230       1.1   thorpej 
    231       1.1   thorpej 	return 0;
    232       1.1   thorpej }
    233       1.1   thorpej 
    234       1.1   thorpej void
    235       1.1   thorpej arcbios_tty_poll(void *v)
    236       1.1   thorpej {
    237       1.1   thorpej 	struct tty *tp = v;
    238       1.1   thorpej 	int c, l_r;
    239       1.1   thorpej 
    240       1.1   thorpej 	while (arcbios_tty_getchar(&c)) {
    241       1.1   thorpej 		if (tp->t_state & TS_ISOPEN)
    242       1.1   thorpej 			l_r = (*tp->t_linesw->l_rint)(c, tp);
    243       1.1   thorpej 	}
    244       1.1   thorpej 	callout_reset(&arcbios_tty_ch, 1, arcbios_tty_poll, tp);
    245       1.1   thorpej }
    246       1.1   thorpej 
    247       1.1   thorpej struct tty *
    248       1.1   thorpej arcbios_ttytty(dev_t dev)
    249       1.1   thorpej {
    250       1.1   thorpej 
    251       1.1   thorpej 	if (minor(dev) != 0)
    252       1.1   thorpej 		panic("arcbios_ttytty: bogus");
    253       1.1   thorpej 
    254       1.1   thorpej 	return (arcbios_tty[0]);
    255       1.1   thorpej }
    256