Home | History | Annotate | Line # | Download | only in ofisa
com_ofisa.c revision 1.3
      1 /*	$NetBSD: com_ofisa.c,v 1.3 2001/11/13 07:29:45 lukem Exp $	*/
      2 
      3 /*
      4  * Copyright 1997, 1998
      5  * Digital Equipment Corporation. All rights reserved.
      6  *
      7  * This software is furnished under license and may be used and
      8  * copied only in accordance with the following terms and conditions.
      9  * Subject to these conditions, you may download, copy, install,
     10  * use, modify and distribute this software in source and/or binary
     11  * form. No title or ownership is transferred hereby.
     12  *
     13  * 1) Any source code used, modified or distributed must reproduce
     14  *    and retain this copyright notice and list of conditions as
     15  *    they appear in the source file.
     16  *
     17  * 2) No right is granted to use any trade name, trademark, or logo of
     18  *    Digital Equipment Corporation. Neither the "Digital Equipment
     19  *    Corporation" name nor any trademark or logo of Digital Equipment
     20  *    Corporation may be used to endorse or promote products derived
     21  *    from this software without the prior written permission of
     22  *    Digital Equipment Corporation.
     23  *
     24  * 3) This software is provided "AS-IS" and any express or implied
     25  *    warranties, including but not limited to, any implied warranties
     26  *    of merchantability, fitness for a particular purpose, or
     27  *    non-infringement are disclaimed. In no event shall DIGITAL be
     28  *    liable for any damages whatsoever, and in particular, DIGITAL
     29  *    shall not be liable for special, indirect, consequential, or
     30  *    incidental damages or damages for lost profits, loss of
     31  *    revenue or loss of use, whether such damages arise in contract,
     32  *    negligence, tort, under statute, in equity, at law or otherwise,
     33  *    even if advised of the possibility of such damage.
     34  */
     35 
     36 /*
     37  * OFW Attachment for 'com' serial driver
     38  */
     39 
     40 #include <sys/cdefs.h>
     41 __KERNEL_RCSID(0, "$NetBSD: com_ofisa.c,v 1.3 2001/11/13 07:29:45 lukem Exp $");
     42 
     43 #include <sys/param.h>
     44 #include <sys/device.h>
     45 #include <sys/systm.h>
     46 #include <sys/tty.h>
     47 
     48 #include <machine/intr.h>
     49 #include <machine/bus.h>
     50 
     51 #include <dev/ofw/openfirm.h>
     52 #include <dev/isa/isavar.h>
     53 #include <dev/ofisa/ofisavar.h>
     54 
     55 #include <dev/ic/comreg.h>
     56 #include <dev/ic/comvar.h>
     57 
     58 struct com_ofisa_softc {
     59 	struct	com_softc sc_com;	/* real "com" softc */
     60 
     61 	/* OFW ISA-specific goo. */
     62 	void	*sc_ih;			/* interrupt handler */
     63 };
     64 
     65 int com_ofisa_probe __P((struct device *, struct cfdata *, void *));
     66 void com_ofisa_attach __P((struct device *, struct device *, void *));
     67 
     68 struct cfattach com_ofisa_ca = {
     69 	sizeof(struct com_ofisa_softc), com_ofisa_probe, com_ofisa_attach
     70 };
     71 
     72 int
     73 com_ofisa_probe(parent, cf, aux)
     74 	struct device *parent;
     75 	struct cfdata *cf;
     76 	void *aux;
     77 {
     78 	struct ofisa_attach_args *aa = aux;
     79 	const char *compatible_strings[] = { "pnpPNP,501", NULL };
     80 	int rv = 0;
     81 
     82 	if (of_compatible(aa->oba.oba_phandle, compatible_strings) != -1)
     83 		rv = 5;
     84 #ifdef _COM_OFISA_MD_MATCH
     85 	if (!rv)
     86 		rv = com_ofisa_md_match(parent, cf, aux);
     87 #endif
     88 	return (rv);
     89 }
     90 
     91 void
     92 com_ofisa_attach(parent, self, aux)
     93 	struct device *parent, *self;
     94 	void *aux;
     95 {
     96 	struct com_ofisa_softc *osc = (void *)self;
     97         struct com_softc *sc = &osc->sc_com;
     98 	struct ofisa_attach_args *aa = aux;
     99 	struct ofisa_reg_desc reg;
    100 	struct ofisa_intr_desc intr;
    101 	int freq;
    102 	char freqbuf[4];
    103 	int n;
    104 
    105 	/*
    106 	 * We're living on an ofw.  We have to ask the OFW what our
    107 	 * registers and interrupts properties look like.
    108 	 *
    109 	 * We expect exactly one register region and one interrupt.
    110 	 */
    111 
    112 	n = ofisa_reg_get(aa->oba.oba_phandle, &reg, 1);
    113 #ifdef _COM_OFISA_MD_REG_FIXUP
    114 	n = com_ofisa_md_reg_fixup(parent, self, aux, &reg, 1, n);
    115 #endif
    116 	if (n != 1) {
    117 		printf(": error getting register data\n");
    118 		return;
    119 	}
    120 	if (reg.len != 8) {
    121 		printf(": weird register size (%lu, expected 8)\n",
    122 		    (unsigned long)reg.len);
    123 		return;
    124 	}
    125 
    126 	n = ofisa_intr_get(aa->oba.oba_phandle, &intr, 1);
    127 #ifdef _COM_OFISA_MD_INTR_FIXUP
    128 	n = com_ofisa_md_intr_fixup(parent, self, aux, &intr, 1, n);
    129 #endif
    130 	if (n != 1) {
    131 		printf(": error getting interrupt data\n");
    132 		return;
    133 	}
    134 
    135 	if (OF_getproplen(aa->oba.oba_phandle, "clock-frequency") != 4 ||
    136 	    OF_getprop(aa->oba.oba_phandle, "clock-frequency", freqbuf,
    137 	      sizeof freqbuf) != 4)
    138 		freq = COM_FREQ;
    139 	else
    140 		freq = of_decode_int(&freqbuf[0]);
    141 
    142 	sc->sc_iot = (reg.type == OFISA_REG_TYPE_IO) ? aa->iot : aa->memt;
    143 	sc->sc_iobase = reg.addr;
    144 	sc->sc_frequency = freq;
    145 
    146 	if (!com_is_console(sc->sc_iot, sc->sc_iobase, &sc->sc_ioh) &&
    147 	    bus_space_map(sc->sc_iot, sc->sc_iobase, reg.len, 0,
    148 	      &sc->sc_ioh)) {
    149 		printf(": can't map register space\n");
    150                 return;
    151         }
    152 
    153 	osc->sc_ih = isa_intr_establish(aa->ic, intr.irq, intr.share,
    154 	    IPL_SERIAL, comintr, sc);
    155 
    156 	com_attach_subr(sc);
    157 
    158 #if 0
    159 	printf("%s: registers: ", sc->sc_dev.dv_xname);
    160 	ofisa_reg_print(&reg, 1);
    161 	printf("\n");
    162 	printf("%s: interrupts: ", sc->sc_dev.dv_xname);
    163 	ofisa_intr_print(&intr, 1);
    164 	printf("\n");
    165 #endif
    166 }
    167