Home | History | Annotate | Line # | Download | only in ofw
ofcons.c revision 1.16
      1  1.16    atatat /*	$NetBSD: ofcons.c,v 1.16 2002/03/17 19:40:59 atatat Exp $	*/
      2   1.1        ws 
      3   1.1        ws /*
      4   1.1        ws  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
      5   1.1        ws  * Copyright (C) 1995, 1996 TooLs GmbH.
      6   1.1        ws  * All rights reserved.
      7   1.1        ws  *
      8   1.1        ws  * Redistribution and use in source and binary forms, with or without
      9   1.1        ws  * modification, are permitted provided that the following conditions
     10   1.1        ws  * are met:
     11   1.1        ws  * 1. Redistributions of source code must retain the above copyright
     12   1.1        ws  *    notice, this list of conditions and the following disclaimer.
     13   1.1        ws  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1        ws  *    notice, this list of conditions and the following disclaimer in the
     15   1.1        ws  *    documentation and/or other materials provided with the distribution.
     16   1.1        ws  * 3. All advertising materials mentioning features or use of this software
     17   1.1        ws  *    must display the following acknowledgement:
     18   1.1        ws  *	This product includes software developed by TooLs GmbH.
     19   1.1        ws  * 4. The name of TooLs GmbH may not be used to endorse or promote products
     20   1.1        ws  *    derived from this software without specific prior written permission.
     21   1.1        ws  *
     22   1.1        ws  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
     23   1.1        ws  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24   1.1        ws  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25   1.1        ws  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     26   1.1        ws  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     27   1.1        ws  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     28   1.1        ws  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     29   1.1        ws  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     30   1.1        ws  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     31   1.1        ws  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32   1.1        ws  */
     33  1.15     lukem 
     34  1.15     lukem #include <sys/cdefs.h>
     35  1.16    atatat __KERNEL_RCSID(0, "$NetBSD: ofcons.c,v 1.16 2002/03/17 19:40:59 atatat Exp $");
     36   1.1        ws 
     37   1.1        ws #include <sys/param.h>
     38   1.1        ws #include <sys/conf.h>
     39   1.1        ws #include <sys/device.h>
     40   1.1        ws #include <sys/proc.h>
     41   1.1        ws #include <sys/systm.h>
     42  1.10   thorpej #include <sys/callout.h>
     43   1.1        ws #include <sys/tty.h>
     44   1.1        ws 
     45   1.1        ws #include <dev/cons.h>
     46   1.1        ws 
     47   1.1        ws #include <dev/ofw/openfirm.h>
     48   1.1        ws 
     49   1.8   mycroft struct ofcons_softc {
     50   1.1        ws 	struct device of_dev;
     51   1.1        ws 	struct tty *of_tty;
     52  1.10   thorpej 	struct callout sc_poll_ch;
     53   1.1        ws 	int of_flags;
     54   1.1        ws };
     55   1.1        ws /* flags: */
     56   1.1        ws #define	OFPOLL		1
     57   1.1        ws 
     58   1.1        ws #define	OFBURSTLEN	128	/* max number of bytes to write in one chunk */
     59  1.14      matt 
     60  1.14      matt cdev_decl(ofcons_);
     61  1.14      matt cons_decl(ofcons_);
     62   1.1        ws 
     63   1.1        ws static int stdin, stdout;
     64   1.1        ws 
     65   1.8   mycroft static int ofcons_match __P((struct device *, struct cfdata *, void *));
     66   1.8   mycroft static void ofcons_attach __P((struct device *, struct device *, void *));
     67   1.1        ws 
     68   1.1        ws struct cfattach ofcons_ca = {
     69   1.8   mycroft 	sizeof(struct ofcons_softc), ofcons_match, ofcons_attach
     70   1.1        ws };
     71   1.1        ws 
     72   1.6   thorpej extern struct cfdriver ofcons_cd;
     73   1.1        ws 
     74   1.8   mycroft static int ofcons_probe __P((void));
     75   1.1        ws 
     76   1.1        ws static int
     77   1.8   mycroft ofcons_match(parent, match, aux)
     78   1.1        ws 	struct device *parent;
     79   1.4   thorpej 	struct cfdata *match;
     80   1.4   thorpej 	void *aux;
     81   1.1        ws {
     82   1.8   mycroft 	struct ofbus_attach_args *oba = aux;
     83   1.1        ws 
     84   1.8   mycroft 	if (strcmp(oba->oba_busname, "ofw"))
     85   1.8   mycroft 		return (0);
     86   1.8   mycroft 	if (!ofcons_probe())
     87   1.1        ws 		return 0;
     88   1.8   mycroft 	return OF_instance_to_package(stdin) == oba->oba_phandle
     89   1.8   mycroft 		|| OF_instance_to_package(stdout) == oba->oba_phandle;
     90   1.1        ws }
     91   1.1        ws 
     92   1.1        ws static void
     93   1.8   mycroft ofcons_attach(parent, self, aux)
     94   1.1        ws 	struct device *parent, *self;
     95   1.1        ws 	void *aux;
     96   1.1        ws {
     97  1.11       scw 	struct ofcons_softc *sc = (struct ofcons_softc *) self;
     98  1.11       scw 
     99   1.3  christos 	printf("\n");
    100  1.10   thorpej 
    101  1.11       scw 	callout_init(&sc->sc_poll_ch);
    102   1.1        ws }
    103   1.1        ws 
    104   1.8   mycroft static void ofcons_start __P((struct tty *));
    105   1.8   mycroft static int ofcons_param __P((struct tty *, struct termios *));
    106  1.13       scw static void ofcons_pollin __P((void *));
    107   1.1        ws 
    108   1.1        ws int
    109   1.8   mycroft ofcons_open(dev, flag, mode, p)
    110   1.1        ws 	dev_t dev;
    111   1.1        ws 	int flag, mode;
    112   1.1        ws 	struct proc *p;
    113   1.1        ws {
    114   1.8   mycroft 	struct ofcons_softc *sc;
    115   1.1        ws 	int unit = minor(dev);
    116   1.1        ws 	struct tty *tp;
    117   1.1        ws 
    118   1.1        ws 	if (unit >= ofcons_cd.cd_ndevs)
    119   1.1        ws 		return ENXIO;
    120   1.1        ws 	sc = ofcons_cd.cd_devs[unit];
    121   1.1        ws 	if (!sc)
    122   1.1        ws 		return ENXIO;
    123   1.1        ws 	if (!(tp = sc->of_tty))
    124   1.1        ws 		sc->of_tty = tp = ttymalloc();
    125   1.8   mycroft 	tp->t_oproc = ofcons_start;
    126   1.8   mycroft 	tp->t_param = ofcons_param;
    127   1.1        ws 	tp->t_dev = dev;
    128   1.1        ws 	if (!(tp->t_state & TS_ISOPEN)) {
    129   1.1        ws 		ttychars(tp);
    130   1.1        ws 		tp->t_iflag = TTYDEF_IFLAG;
    131   1.1        ws 		tp->t_oflag = TTYDEF_OFLAG;
    132   1.1        ws 		tp->t_cflag = TTYDEF_CFLAG;
    133   1.1        ws 		tp->t_lflag = TTYDEF_LFLAG;
    134   1.1        ws 		tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
    135   1.8   mycroft 		ofcons_param(tp, &tp->t_termios);
    136   1.1        ws 		ttsetwater(tp);
    137   1.1        ws 	} else if ((tp->t_state&TS_XCLUDE) && suser(p->p_ucred, &p->p_acflag))
    138   1.1        ws 		return EBUSY;
    139   1.1        ws 	tp->t_state |= TS_CARR_ON;
    140   1.1        ws 
    141   1.1        ws 	if (!(sc->of_flags & OFPOLL)) {
    142   1.1        ws 		sc->of_flags |= OFPOLL;
    143  1.13       scw 		callout_reset(&sc->sc_poll_ch, 1, ofcons_pollin, sc);
    144   1.1        ws 	}
    145   1.1        ws 
    146  1.12       eeh 	return (*tp->t_linesw->l_open)(dev, tp);
    147   1.1        ws }
    148   1.1        ws 
    149   1.1        ws int
    150   1.8   mycroft ofcons_close(dev, flag, mode, p)
    151   1.1        ws 	dev_t dev;
    152   1.1        ws 	int flag, mode;
    153   1.1        ws 	struct proc *p;
    154   1.1        ws {
    155   1.8   mycroft 	struct ofcons_softc *sc = ofcons_cd.cd_devs[minor(dev)];
    156   1.1        ws 	struct tty *tp = sc->of_tty;
    157   1.1        ws 
    158  1.10   thorpej 	callout_stop(&sc->sc_poll_ch);
    159   1.1        ws 	sc->of_flags &= ~OFPOLL;
    160  1.12       eeh 	(*tp->t_linesw->l_close)(tp, flag);
    161   1.1        ws 	ttyclose(tp);
    162   1.1        ws 	return 0;
    163   1.1        ws }
    164   1.1        ws 
    165   1.1        ws int
    166   1.8   mycroft ofcons_read(dev, uio, flag)
    167   1.1        ws 	dev_t dev;
    168   1.1        ws 	struct uio *uio;
    169   1.1        ws 	int flag;
    170   1.1        ws {
    171   1.8   mycroft 	struct ofcons_softc *sc = ofcons_cd.cd_devs[minor(dev)];
    172   1.1        ws 	struct tty *tp = sc->of_tty;
    173   1.1        ws 
    174  1.12       eeh 	return (*tp->t_linesw->l_read)(tp, uio, flag);
    175   1.1        ws }
    176   1.1        ws 
    177   1.1        ws int
    178   1.8   mycroft ofcons_write(dev, uio, flag)
    179   1.1        ws 	dev_t dev;
    180   1.1        ws 	struct uio *uio;
    181   1.1        ws 	int flag;
    182   1.1        ws {
    183   1.8   mycroft 	struct ofcons_softc *sc = ofcons_cd.cd_devs[minor(dev)];
    184   1.1        ws 	struct tty *tp = sc->of_tty;
    185   1.1        ws 
    186  1.12       eeh 	return (*tp->t_linesw->l_write)(tp, uio, flag);
    187   1.1        ws }
    188   1.1        ws 
    189   1.1        ws int
    190  1.13       scw ofcons_poll(dev, events, p)
    191  1.13       scw 	dev_t dev;
    192  1.13       scw 	int events;
    193  1.13       scw 	struct proc *p;
    194  1.13       scw {
    195  1.13       scw 	struct ofcons_softc *sc = ofcons_cd.cd_devs[minor(dev)];
    196  1.13       scw 	struct tty *tp = sc->of_tty;
    197  1.13       scw 
    198  1.13       scw 	return ((*tp->t_linesw->l_poll)(tp, events, p));
    199  1.13       scw }
    200  1.13       scw int
    201   1.8   mycroft ofcons_ioctl(dev, cmd, data, flag, p)
    202   1.1        ws 	dev_t dev;
    203   1.1        ws 	u_long cmd;
    204   1.1        ws 	caddr_t data;
    205   1.1        ws 	int flag;
    206   1.1        ws 	struct proc *p;
    207   1.1        ws {
    208   1.8   mycroft 	struct ofcons_softc *sc = ofcons_cd.cd_devs[minor(dev)];
    209   1.1        ws 	struct tty *tp = sc->of_tty;
    210   1.1        ws 	int error;
    211   1.1        ws 
    212  1.16    atatat 	if ((error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, p)) != EPASSTHROUGH)
    213   1.1        ws 		return error;
    214  1.16    atatat 	return ttioctl(tp, cmd, data, flag, p);
    215   1.1        ws }
    216   1.1        ws 
    217   1.1        ws struct tty *
    218   1.8   mycroft ofcons_tty(dev)
    219   1.1        ws 	dev_t dev;
    220   1.1        ws {
    221   1.8   mycroft 	struct ofcons_softc *sc = ofcons_cd.cd_devs[minor(dev)];
    222   1.1        ws 
    223   1.1        ws 	return sc->of_tty;
    224   1.1        ws }
    225   1.1        ws 
    226   1.1        ws void
    227   1.8   mycroft ofcons_stop(tp, flag)
    228   1.1        ws 	struct tty *tp;
    229   1.1        ws 	int flag;
    230   1.1        ws {
    231   1.1        ws }
    232   1.1        ws 
    233   1.1        ws static void
    234   1.8   mycroft ofcons_start(tp)
    235   1.1        ws 	struct tty *tp;
    236   1.1        ws {
    237   1.1        ws 	struct clist *cl;
    238   1.1        ws 	int s, len;
    239   1.1        ws 	u_char buf[OFBURSTLEN];
    240   1.1        ws 
    241   1.1        ws 	s = spltty();
    242   1.1        ws 	if (tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP)) {
    243   1.1        ws 		splx(s);
    244   1.1        ws 		return;
    245   1.1        ws 	}
    246   1.1        ws 	tp->t_state |= TS_BUSY;
    247   1.1        ws 	splx(s);
    248   1.1        ws 	cl = &tp->t_outq;
    249   1.1        ws 	len = q_to_b(cl, buf, OFBURSTLEN);
    250   1.1        ws 	OF_write(stdout, buf, len);
    251   1.1        ws 	s = spltty();
    252   1.1        ws 	tp->t_state &= ~TS_BUSY;
    253   1.1        ws 	if (cl->c_cc) {
    254   1.1        ws 		tp->t_state |= TS_TIMEOUT;
    255  1.10   thorpej 		callout_reset(&tp->t_rstrt_ch, 1, ttrstrt, (void *)tp);
    256   1.1        ws 	}
    257   1.1        ws 	if (cl->c_cc <= tp->t_lowat) {
    258   1.1        ws 		if (tp->t_state & TS_ASLEEP) {
    259   1.1        ws 			tp->t_state &= ~TS_ASLEEP;
    260   1.1        ws 			wakeup(cl);
    261   1.1        ws 		}
    262   1.1        ws 		selwakeup(&tp->t_wsel);
    263   1.1        ws 	}
    264   1.1        ws 	splx(s);
    265   1.1        ws }
    266   1.1        ws 
    267   1.1        ws static int
    268   1.8   mycroft ofcons_param(tp, t)
    269   1.1        ws 	struct tty *tp;
    270   1.1        ws 	struct termios *t;
    271   1.1        ws {
    272   1.1        ws 	tp->t_ispeed = t->c_ispeed;
    273   1.1        ws 	tp->t_ospeed = t->c_ospeed;
    274   1.1        ws 	tp->t_cflag = t->c_cflag;
    275   1.1        ws 	return 0;
    276   1.1        ws }
    277   1.1        ws 
    278   1.1        ws static void
    279  1.13       scw ofcons_pollin(aux)
    280   1.1        ws 	void *aux;
    281   1.1        ws {
    282   1.8   mycroft 	struct ofcons_softc *sc = aux;
    283   1.1        ws 	struct tty *tp = sc->of_tty;
    284   1.1        ws 	char ch;
    285   1.1        ws 
    286   1.1        ws 	while (OF_read(stdin, &ch, 1) > 0) {
    287   1.1        ws 		if (tp && (tp->t_state & TS_ISOPEN))
    288  1.12       eeh 			(*tp->t_linesw->l_rint)(ch, tp);
    289   1.1        ws 	}
    290  1.13       scw 	callout_reset(&sc->sc_poll_ch, 1, ofcons_pollin, sc);
    291   1.1        ws }
    292   1.1        ws 
    293   1.1        ws static int
    294   1.8   mycroft ofcons_probe()
    295   1.1        ws {
    296   1.1        ws 	int chosen;
    297   1.7       cgd 	char stdinbuf[4], stdoutbuf[4];
    298   1.1        ws 
    299   1.1        ws 	if (stdin)
    300   1.1        ws 		return 1;
    301   1.1        ws 	if ((chosen = OF_finddevice("/chosen")) == -1)
    302   1.1        ws 		return 0;
    303   1.7       cgd 	if (OF_getprop(chosen, "stdin", stdinbuf, sizeof stdinbuf) !=
    304   1.7       cgd 	      sizeof stdinbuf ||
    305   1.7       cgd 	    OF_getprop(chosen, "stdout", stdoutbuf, sizeof stdoutbuf) !=
    306   1.7       cgd 	      sizeof stdoutbuf)
    307   1.1        ws 		return 0;
    308   1.7       cgd 
    309   1.7       cgd 	/* Decode properties. */
    310   1.7       cgd 	stdin = of_decode_int(stdinbuf);
    311   1.7       cgd 	stdout = of_decode_int(stdoutbuf);
    312   1.7       cgd 
    313   1.1        ws 	return 1;
    314   1.1        ws }
    315   1.1        ws 
    316   1.1        ws void
    317   1.8   mycroft ofcons_cnprobe(cd)
    318   1.1        ws 	struct consdev *cd;
    319   1.1        ws {
    320   1.1        ws 	int maj;
    321   1.1        ws 
    322   1.8   mycroft 	if (!ofcons_probe())
    323   1.1        ws 		return;
    324   1.1        ws 
    325   1.1        ws 	for (maj = 0; maj < nchrdev; maj++)
    326   1.8   mycroft 		if (cdevsw[maj].d_open == ofcons_open)
    327   1.1        ws 			break;
    328   1.1        ws 	cd->cn_dev = makedev(maj, 0);
    329   1.1        ws 	cd->cn_pri = CN_INTERNAL;
    330   1.1        ws }
    331   1.1        ws 
    332   1.1        ws void
    333   1.8   mycroft ofcons_cninit(cd)
    334   1.1        ws 	struct consdev *cd;
    335   1.1        ws {
    336   1.1        ws }
    337   1.1        ws 
    338   1.1        ws int
    339   1.8   mycroft ofcons_cngetc(dev)
    340   1.1        ws 	dev_t dev;
    341   1.1        ws {
    342   1.5   mycroft 	unsigned char ch = '\0';
    343   1.1        ws 	int l;
    344   1.1        ws 
    345   1.1        ws 	while ((l = OF_read(stdin, &ch, 1)) != 1)
    346   1.5   mycroft 		if (l != -2 && l != 0)
    347   1.1        ws 			return -1;
    348   1.1        ws 	return ch;
    349   1.1        ws }
    350   1.1        ws 
    351   1.1        ws void
    352   1.8   mycroft ofcons_cnputc(dev, c)
    353   1.1        ws 	dev_t dev;
    354   1.1        ws 	int c;
    355   1.1        ws {
    356   1.1        ws 	char ch = c;
    357   1.1        ws 
    358   1.1        ws 	OF_write(stdout, &ch, 1);
    359   1.1        ws }
    360   1.1        ws 
    361   1.1        ws void
    362   1.8   mycroft ofcons_cnpollc(dev, on)
    363   1.1        ws 	dev_t dev;
    364   1.1        ws 	int on;
    365   1.1        ws {
    366   1.8   mycroft 	struct ofcons_softc *sc = ofcons_cd.cd_devs[minor(dev)];
    367   1.1        ws 
    368   1.1        ws 	if (!sc)
    369   1.1        ws 		return;
    370   1.1        ws 	if (on) {
    371   1.1        ws 		if (sc->of_flags & OFPOLL)
    372  1.10   thorpej 			callout_stop(&sc->sc_poll_ch);
    373   1.1        ws 		sc->of_flags &= ~OFPOLL;
    374   1.1        ws 	} else {
    375   1.1        ws 		if (!(sc->of_flags & OFPOLL)) {
    376   1.1        ws 			sc->of_flags |= OFPOLL;
    377  1.13       scw 			callout_reset(&sc->sc_poll_ch, 1, ofcons_pollin, sc);
    378   1.1        ws 		}
    379   1.1        ws 	}
    380   1.1        ws }
    381