Home | History | Annotate | Line # | Download | only in dev
com_ebus.c revision 1.12.16.2
      1  1.12.16.2  gdamore /*	$NetBSD: com_ebus.c,v 1.12.16.2 2006/06/17 08:16:55 gdamore 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.11    lukem 
     39       1.11    lukem #include <sys/cdefs.h>
     40  1.12.16.2  gdamore __KERNEL_RCSID(0, "$NetBSD: com_ebus.c,v 1.12.16.2 2006/06/17 08:16:55 gdamore Exp $");
     41        1.1      uwe 
     42        1.1      uwe #include <sys/param.h>
     43        1.1      uwe #include <sys/systm.h>
     44        1.1      uwe #include <sys/device.h>
     45        1.1      uwe #include <sys/termios.h>
     46        1.1      uwe 
     47        1.1      uwe #include <machine/bus.h>
     48        1.1      uwe #include <machine/autoconf.h>
     49        1.1      uwe #include <machine/intr.h>
     50        1.1      uwe 
     51        1.2      uwe #include <dev/ebus/ebusreg.h>
     52        1.2      uwe #include <dev/ebus/ebusvar.h>
     53        1.1      uwe 
     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.6  thorpej CFATTACH_DECL(com_ebus, sizeof(struct com_ebus_softc),
     67        1.7  thorpej     com_ebus_match, com_ebus_attach, NULL, NULL);
     68        1.1      uwe 
     69        1.1      uwe static int
     70       1.12      uwe com_ebus_match(struct device *parent, struct cfdata *cf, void *aux)
     71        1.1      uwe {
     72        1.1      uwe 	struct ebus_attach_args *ea = aux;
     73        1.1      uwe 	bus_space_handle_t ioh;
     74        1.1      uwe 	int match;
     75        1.1      uwe 
     76        1.1      uwe 	if (strcmp(ea->ea_name, "su") != 0)
     77        1.1      uwe 		return (0);
     78        1.1      uwe 
     79        1.1      uwe 	match = 0;
     80        1.3      uwe 	if (bus_space_map(ea->ea_bustag, EBUS_ADDR_FROM_REG(&ea->ea_reg[0]),
     81        1.3      uwe 			  ea->ea_reg[0].size, 0, &ioh) == 0)
     82        1.1      uwe 	{
     83        1.1      uwe 		match = comprobe1(ea->ea_bustag, ioh);
     84        1.1      uwe 		bus_space_unmap(ea->ea_bustag, ioh, ea->ea_reg[0].size);
     85        1.1      uwe 	}
     86        1.1      uwe 
     87        1.1      uwe 	return (match);
     88        1.1      uwe }
     89        1.1      uwe 
     90        1.1      uwe static void
     91       1.12      uwe com_ebus_attach(struct device *parent, struct device *self, void *aux)
     92        1.1      uwe {
     93        1.1      uwe 	struct com_ebus_softc *ebsc = (void *)self;
     94        1.1      uwe 	struct com_softc *sc = &ebsc->ebsc_com;
     95        1.1      uwe 	struct ebus_attach_args *ea = aux;
     96  1.12.16.1  gdamore 	bus_space_tag_t iot;
     97  1.12.16.1  gdamore 	bus_space_handle_t ioh;
     98  1.12.16.1  gdamore 	bus_addr_t iobase;
     99        1.1      uwe 
    100  1.12.16.1  gdamore 	iot = ea->ea_bustag;
    101  1.12.16.1  gdamore 	iobase = EBUS_ADDR_FROM_REG(&ea->ea_reg[0]);
    102        1.1      uwe 	sc->sc_frequency = COM_FREQ;
    103        1.4  thorpej 	sc->sc_hwflags = COM_HW_NO_TXPRELOAD;
    104        1.1      uwe 
    105        1.1      uwe 	/*
    106        1.1      uwe 	 * XXX: It would be nice to be able to split console input and
    107        1.1      uwe 	 * output to different devices.  For now switch to serial
    108        1.1      uwe 	 * console if PROM stdin is on serial (so that we can use DDB).
    109        1.1      uwe 	 */
    110        1.1      uwe 	if (prom_instance_to_package(prom_stdin()) == ea->ea_node)
    111  1.12.16.1  gdamore 		comcnattach(iot, iobase, B9600, sc->sc_frequency,
    112  1.12.16.1  gdamore 		    COM_TYPE_NORMAL, (CLOCAL | CREAD | CS8));
    113  1.12.16.1  gdamore 
    114  1.12.16.1  gdamore 	if (!com_is_console(iot, iobase, &ioh)
    115  1.12.16.1  gdamore 	    && bus_space_map(iot, iobase, ea->ea_reg[0].size,
    116  1.12.16.1  gdamore 			     0, &ioh) != 0)
    117        1.1      uwe 	{
    118        1.1      uwe 		printf(": unable to map device registers\n");
    119        1.1      uwe 		return;
    120        1.1      uwe 	}
    121        1.1      uwe 
    122  1.12.16.1  gdamore 	COM_INIT_REGS(sc->sc_regs, iot, ioh, iobase);
    123  1.12.16.1  gdamore 
    124        1.1      uwe 	com_attach_subr(sc);
    125        1.1      uwe 
    126        1.1      uwe 	if (ea->ea_nintr != 0)
    127  1.12.16.2  gdamore 		(void)bus_intr_establish(iot, ea->ea_intr[0], IPL_SERIAL,
    128        1.1      uwe 					 comintr, sc);
    129        1.1      uwe }
    130