Home | History | Annotate | Line # | Download | only in dev
com_ebus.c revision 1.16.54.1
      1  1.16.54.1  christos /*	$NetBSD: com_ebus.c,v 1.16.54.1 2019/06/10 22:06:46 christos 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  *
     19        1.1       uwe  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20        1.1       uwe  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21        1.1       uwe  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22        1.1       uwe  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23        1.1       uwe  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24        1.1       uwe  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25        1.1       uwe  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26        1.1       uwe  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27        1.1       uwe  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28        1.1       uwe  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29        1.1       uwe  * POSSIBILITY OF SUCH DAMAGE.
     30        1.1       uwe  */
     31       1.11     lukem 
     32       1.11     lukem #include <sys/cdefs.h>
     33  1.16.54.1  christos __KERNEL_RCSID(0, "$NetBSD: com_ebus.c,v 1.16.54.1 2019/06/10 22:06:46 christos Exp $");
     34        1.1       uwe 
     35        1.1       uwe #include <sys/param.h>
     36        1.1       uwe #include <sys/systm.h>
     37        1.1       uwe #include <sys/device.h>
     38        1.1       uwe #include <sys/termios.h>
     39        1.1       uwe 
     40       1.16    dyoung #include <sys/bus.h>
     41        1.1       uwe #include <machine/autoconf.h>
     42        1.1       uwe #include <machine/intr.h>
     43        1.1       uwe 
     44        1.2       uwe #include <dev/ebus/ebusreg.h>
     45        1.2       uwe #include <dev/ebus/ebusvar.h>
     46        1.1       uwe 
     47        1.1       uwe #include <dev/ic/comreg.h>
     48        1.1       uwe #include <dev/ic/comvar.h>
     49        1.1       uwe 
     50        1.1       uwe struct com_ebus_softc {
     51        1.1       uwe 	struct com_softc ebsc_com;	/* real "com" softc */
     52        1.1       uwe 
     53        1.1       uwe 	/* this space for rent */
     54        1.1       uwe };
     55        1.1       uwe 
     56       1.14      cube static int com_ebus_match(device_t, cfdata_t , void *);
     57       1.14      cube static void com_ebus_attach(device_t, device_t, void *);
     58        1.1       uwe 
     59       1.14      cube CFATTACH_DECL_NEW(com_ebus, sizeof(struct com_ebus_softc),
     60        1.7   thorpej     com_ebus_match, com_ebus_attach, NULL, NULL);
     61        1.1       uwe 
     62        1.1       uwe static int
     63       1.14      cube com_ebus_match(device_t parent, cfdata_t cf, void *aux)
     64        1.1       uwe {
     65        1.1       uwe 	struct ebus_attach_args *ea = aux;
     66        1.1       uwe 	bus_space_handle_t ioh;
     67        1.1       uwe 	int match;
     68        1.1       uwe 
     69        1.1       uwe 	if (strcmp(ea->ea_name, "su") != 0)
     70        1.1       uwe 		return (0);
     71        1.1       uwe 
     72        1.1       uwe 	match = 0;
     73        1.3       uwe 	if (bus_space_map(ea->ea_bustag, EBUS_ADDR_FROM_REG(&ea->ea_reg[0]),
     74        1.3       uwe 			  ea->ea_reg[0].size, 0, &ioh) == 0)
     75        1.1       uwe 	{
     76        1.1       uwe 		match = comprobe1(ea->ea_bustag, ioh);
     77        1.1       uwe 		bus_space_unmap(ea->ea_bustag, ioh, ea->ea_reg[0].size);
     78        1.1       uwe 	}
     79        1.1       uwe 
     80        1.1       uwe 	return (match);
     81        1.1       uwe }
     82        1.1       uwe 
     83        1.1       uwe static void
     84       1.14      cube com_ebus_attach(device_t parent, device_t self, void *aux)
     85        1.1       uwe {
     86       1.14      cube 	struct com_ebus_softc *ebsc = device_private(self);
     87        1.1       uwe 	struct com_softc *sc = &ebsc->ebsc_com;
     88        1.1       uwe 	struct ebus_attach_args *ea = aux;
     89       1.13   gdamore 	bus_space_tag_t iot;
     90       1.13   gdamore 	bus_space_handle_t ioh;
     91       1.13   gdamore 	bus_addr_t iobase;
     92        1.1       uwe 
     93       1.14      cube 	sc->sc_dev = self;
     94       1.13   gdamore 	iot = ea->ea_bustag;
     95       1.13   gdamore 	iobase = EBUS_ADDR_FROM_REG(&ea->ea_reg[0]);
     96        1.1       uwe 	sc->sc_frequency = COM_FREQ;
     97        1.4   thorpej 	sc->sc_hwflags = COM_HW_NO_TXPRELOAD;
     98        1.1       uwe 
     99        1.1       uwe 	/*
    100        1.1       uwe 	 * XXX: It would be nice to be able to split console input and
    101        1.1       uwe 	 * output to different devices.  For now switch to serial
    102        1.1       uwe 	 * console if PROM stdin is on serial (so that we can use DDB).
    103        1.1       uwe 	 */
    104        1.1       uwe 	if (prom_instance_to_package(prom_stdin()) == ea->ea_node)
    105       1.13   gdamore 		comcnattach(iot, iobase, B9600, sc->sc_frequency,
    106       1.13   gdamore 		    COM_TYPE_NORMAL, (CLOCAL | CREAD | CS8));
    107       1.13   gdamore 
    108       1.13   gdamore 	if (!com_is_console(iot, iobase, &ioh)
    109       1.13   gdamore 	    && bus_space_map(iot, iobase, ea->ea_reg[0].size,
    110       1.13   gdamore 			     0, &ioh) != 0)
    111        1.1       uwe 	{
    112       1.14      cube 		aprint_error(": unable to map device registers\n");
    113        1.1       uwe 		return;
    114        1.1       uwe 	}
    115        1.1       uwe 
    116  1.16.54.1  christos 	com_init_regs(&sc->sc_regs, iot, ioh, iobase);
    117       1.13   gdamore 
    118        1.1       uwe 	com_attach_subr(sc);
    119        1.1       uwe 
    120        1.1       uwe 	if (ea->ea_nintr != 0)
    121       1.13   gdamore 		(void)bus_intr_establish(iot, ea->ea_intr[0], IPL_SERIAL,
    122        1.1       uwe 					 comintr, sc);
    123        1.1       uwe }
    124