Home | History | Annotate | Line # | Download | only in dev
com_ebus.c revision 1.1
      1  1.1  uwe /*	$NetBSD: com_ebus.c,v 1.1 2001/12/11 00:31:08 uwe Exp $ */
      2  1.1  uwe 
      3  1.1  uwe /*-
      4  1.1  uwe  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  1.1  uwe  * All rights reserved.
      6  1.1  uwe  *
      7  1.1  uwe  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  uwe  * by Charles M. Hannum.
      9  1.1  uwe  *
     10  1.1  uwe  * Redistribution and use in source and binary forms, with or without
     11  1.1  uwe  * modification, are permitted provided that the following conditions
     12  1.1  uwe  * are met:
     13  1.1  uwe  * 1. Redistributions of source code must retain the above copyright
     14  1.1  uwe  *    notice, this list of conditions and the following disclaimer.
     15  1.1  uwe  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  uwe  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  uwe  *    documentation and/or other materials provided with the distribution.
     18  1.1  uwe  * 3. All advertising materials mentioning features or use of this software
     19  1.1  uwe  *    must display the following acknowledgement:
     20  1.1  uwe  *        This product includes software developed by the NetBSD
     21  1.1  uwe  *        Foundation, Inc. and its contributors.
     22  1.1  uwe  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  uwe  *    contributors may be used to endorse or promote products derived
     24  1.1  uwe  *    from this software without specific prior written permission.
     25  1.1  uwe  *
     26  1.1  uwe  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  uwe  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  uwe  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  uwe  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  uwe  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  uwe  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  uwe  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  uwe  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  uwe  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  uwe  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  uwe  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  uwe  */
     38  1.1  uwe 
     39  1.1  uwe #include <sys/param.h>
     40  1.1  uwe #include <sys/systm.h>
     41  1.1  uwe #include <sys/device.h>
     42  1.1  uwe #include <sys/termios.h>
     43  1.1  uwe 
     44  1.1  uwe #include <machine/bus.h>
     45  1.1  uwe #include <machine/autoconf.h>
     46  1.1  uwe #include <machine/intr.h>
     47  1.1  uwe 
     48  1.1  uwe #include <dev/pci/pcireg.h>	/* XXX: for PCI_INTERRUPT_PIN */
     49  1.1  uwe 
     50  1.1  uwe #include <sparc/dev/ebusreg.h>
     51  1.1  uwe #include <sparc/dev/ebusvar.h>
     52  1.1  uwe 
     53  1.1  uwe #include <dev/ic/ns16550reg.h>
     54  1.1  uwe #include <dev/ic/comreg.h>
     55  1.1  uwe #include <dev/ic/comvar.h>
     56  1.1  uwe 
     57  1.1  uwe struct com_ebus_softc {
     58  1.1  uwe 	struct com_softc ebsc_com;	/* real "com" softc */
     59  1.1  uwe 
     60  1.1  uwe 	/* this space for rent */
     61  1.1  uwe };
     62  1.1  uwe 
     63  1.1  uwe static int com_ebus_match(struct device *, struct cfdata *, void *);
     64  1.1  uwe static void com_ebus_attach(struct device *, struct device *, void *);
     65  1.1  uwe 
     66  1.1  uwe struct cfattach com_ebus_ca = {
     67  1.1  uwe 	sizeof(struct com_ebus_softc), com_ebus_match, com_ebus_attach
     68  1.1  uwe };
     69  1.1  uwe 
     70  1.1  uwe static int
     71  1.1  uwe com_ebus_match(parent, cf, aux)
     72  1.1  uwe 	struct device *parent;
     73  1.1  uwe 	struct cfdata *cf;
     74  1.1  uwe 	void *aux;
     75  1.1  uwe {
     76  1.1  uwe 	struct ebus_attach_args *ea = aux;
     77  1.1  uwe 	bus_space_handle_t ioh;
     78  1.1  uwe 	int match;
     79  1.1  uwe 
     80  1.1  uwe 	if (strcmp(ea->ea_name, "su") != 0)
     81  1.1  uwe 		return (0);
     82  1.1  uwe 
     83  1.1  uwe 	match = 0;
     84  1.1  uwe 	if (ebus_bus_map(ea->ea_bustag,
     85  1.1  uwe 			 EBUS_ADDR_FROM_REG(&ea->ea_reg[0]),
     86  1.1  uwe 			 ea->ea_reg[0].size,
     87  1.1  uwe 			 BUS_SPACE_MAP_LINEAR, 0,
     88  1.1  uwe 			 &ioh) == 0)
     89  1.1  uwe 	{
     90  1.1  uwe 		match = comprobe1(ea->ea_bustag, ioh);
     91  1.1  uwe 		bus_space_unmap(ea->ea_bustag, ioh, ea->ea_reg[0].size);
     92  1.1  uwe 	}
     93  1.1  uwe 
     94  1.1  uwe 	return (match);
     95  1.1  uwe }
     96  1.1  uwe 
     97  1.1  uwe static void
     98  1.1  uwe com_ebus_attach(parent, self, aux)
     99  1.1  uwe 	struct device *parent, *self;
    100  1.1  uwe 	void *aux;
    101  1.1  uwe {
    102  1.1  uwe 	struct com_ebus_softc *ebsc = (void *)self;
    103  1.1  uwe 	struct com_softc *sc = &ebsc->ebsc_com;
    104  1.1  uwe 	struct ebus_attach_args *ea = aux;
    105  1.1  uwe 
    106  1.1  uwe 	sc->sc_iot = ea->ea_bustag;
    107  1.1  uwe 	sc->sc_iobase = EBUS_ADDR_FROM_REG(&ea->ea_reg[0]);
    108  1.1  uwe 	sc->sc_frequency = COM_FREQ;
    109  1.1  uwe 
    110  1.1  uwe 	/*
    111  1.1  uwe 	 * XXX: It would be nice to be able to split console input and
    112  1.1  uwe 	 * output to different devices.  For now switch to serial
    113  1.1  uwe 	 * console if PROM stdin is on serial (so that we can use DDB).
    114  1.1  uwe 	 */
    115  1.1  uwe 	if (prom_instance_to_package(prom_stdin()) == ea->ea_node)
    116  1.1  uwe 		comcnattach(sc->sc_iot, sc->sc_iobase,
    117  1.1  uwe 			    B9600, sc->sc_frequency, (CLOCAL | CREAD | CS8));
    118  1.1  uwe 
    119  1.1  uwe 	if (!com_is_console(sc->sc_iot, sc->sc_iobase, &sc->sc_ioh)
    120  1.1  uwe 	    && ebus_bus_map(sc->sc_iot, sc->sc_iobase, ea->ea_reg[0].size,
    121  1.1  uwe 			    0, 0, &sc->sc_ioh) != 0)
    122  1.1  uwe 	{
    123  1.1  uwe 		printf(": unable to map device registers\n");
    124  1.1  uwe 		return;
    125  1.1  uwe 	}
    126  1.1  uwe 
    127  1.1  uwe 	com_attach_subr(sc);
    128  1.1  uwe 
    129  1.1  uwe 	if (ea->ea_nintr != 0)
    130  1.1  uwe 		(void)bus_intr_establish(sc->sc_iot,
    131  1.1  uwe 					 ea->ea_intr[0], IPL_SERIAL, 0,
    132  1.1  uwe 					 comintr, sc);
    133  1.1  uwe }
    134