Home | History | Annotate | Line # | Download | only in ev64260
com_obio.c revision 1.6.58.2
      1  1.6.58.1      mjf /*	$NetBSD: com_obio.c,v 1.6.58.2 2008/06/02 13:22:04 mjf Exp $	*/
      2       1.1     matt 
      3       1.1     matt /*-
      4       1.1     matt  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5       1.1     matt  * All rights reserved.
      6       1.1     matt  *
      7       1.1     matt  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1     matt  * by Charles M. Hannum.
      9       1.1     matt  *
     10       1.1     matt  * Redistribution and use in source and binary forms, with or without
     11       1.1     matt  * modification, are permitted provided that the following conditions
     12       1.1     matt  * are met:
     13       1.1     matt  * 1. Redistributions of source code must retain the above copyright
     14       1.1     matt  *    notice, this list of conditions and the following disclaimer.
     15       1.1     matt  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1     matt  *    notice, this list of conditions and the following disclaimer in the
     17       1.1     matt  *    documentation and/or other materials provided with the distribution.
     18       1.1     matt  *
     19       1.1     matt  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1     matt  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1     matt  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1     matt  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1     matt  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1     matt  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1     matt  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1     matt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1     matt  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1     matt  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1     matt  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1     matt  */
     31       1.1     matt 
     32       1.1     matt /*-
     33       1.1     matt  * Copyright (c) 1991 The Regents of the University of California.
     34       1.1     matt  * All rights reserved.
     35       1.1     matt  *
     36       1.1     matt  * Redistribution and use in source and binary forms, with or without
     37       1.1     matt  * modification, are permitted provided that the following conditions
     38       1.1     matt  * are met:
     39       1.1     matt  * 1. Redistributions of source code must retain the above copyright
     40       1.1     matt  *    notice, this list of conditions and the following disclaimer.
     41       1.1     matt  * 2. Redistributions in binary form must reproduce the above copyright
     42       1.1     matt  *    notice, this list of conditions and the following disclaimer in the
     43       1.1     matt  *    documentation and/or other materials provided with the distribution.
     44       1.4      agc  * 3. Neither the name of the University nor the names of its contributors
     45       1.1     matt  *    may be used to endorse or promote products derived from this software
     46       1.1     matt  *    without specific prior written permission.
     47       1.1     matt  *
     48       1.1     matt  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     49       1.1     matt  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     50       1.1     matt  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     51       1.1     matt  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     52       1.1     matt  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     53       1.1     matt  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     54       1.1     matt  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     55       1.1     matt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     56       1.1     matt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     57       1.1     matt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     58       1.1     matt  * SUCH DAMAGE.
     59       1.1     matt  *
     60       1.1     matt  *	@(#)com.c	7.5 (Berkeley) 5/16/91
     61       1.1     matt  */
     62       1.3    lukem 
     63       1.3    lukem #include <sys/cdefs.h>
     64  1.6.58.1      mjf __KERNEL_RCSID(0, "$NetBSD: com_obio.c,v 1.6.58.2 2008/06/02 13:22:04 mjf Exp $");
     65       1.1     matt 
     66       1.1     matt #include <sys/param.h>
     67       1.1     matt #include <sys/systm.h>
     68       1.1     matt #include <sys/ioctl.h>
     69       1.1     matt #include <sys/select.h>
     70       1.1     matt #include <sys/tty.h>
     71       1.1     matt #include <sys/proc.h>
     72       1.1     matt #include <sys/user.h>
     73       1.1     matt #include <sys/conf.h>
     74       1.1     matt #include <sys/file.h>
     75       1.1     matt #include <sys/uio.h>
     76       1.1     matt #include <sys/kernel.h>
     77       1.1     matt #include <sys/syslog.h>
     78       1.1     matt #include <sys/types.h>
     79       1.1     matt #include <sys/device.h>
     80       1.1     matt #include <sys/termios.h>
     81       1.1     matt 
     82       1.1     matt #include <machine/bus.h>
     83       1.1     matt #include <machine/intr.h>
     84       1.1     matt 
     85       1.1     matt #include <dev/ic/comreg.h>
     86       1.1     matt #include <dev/ic/comvar.h>
     87       1.1     matt 
     88       1.1     matt #include <dev/marvell/gtvar.h>
     89       1.1     matt 
     90       1.1     matt struct com_obio_softc {
     91       1.1     matt 	struct com_softc osc_com;	/* real "com" softc */
     92       1.1     matt 
     93       1.1     matt 	/* OBIO-specific goo. */
     94       1.1     matt };
     95       1.1     matt 
     96  1.6.58.1      mjf static int com_obio_match (device_t, cfdata_t , void *);
     97  1.6.58.1      mjf static void com_obio_attach (device_t, device_t, void *);
     98       1.1     matt 
     99  1.6.58.1      mjf CFATTACH_DECL_NEW(com_obio, sizeof(struct com_obio_softc),
    100       1.1     matt     com_obio_match, com_obio_attach, NULL, NULL);
    101       1.1     matt 
    102       1.1     matt int
    103  1.6.58.1      mjf com_obio_match(device_t parent, cfdata_t cf, void *aux)
    104       1.1     matt {
    105       1.1     matt 	struct obio_attach_args *oa = aux;
    106       1.1     matt 	bus_space_handle_t ioh;
    107       1.1     matt 	int rv = 0;
    108       1.1     matt 
    109       1.1     matt 	if (oa->oa_offset == OBIO_UNK_OFFSET ||
    110       1.1     matt 	    oa->oa_size == OBIO_UNK_SIZE)
    111       1.1     matt 		return (0);
    112       1.1     matt 
    113       1.1     matt 	if (com_is_console(oa->oa_memt, oa->oa_offset, NULL)) {
    114       1.1     matt 		rv = 1;
    115       1.1     matt 	} else {
    116       1.1     matt 		if (bus_space_map(oa->oa_memt, oa->oa_offset,
    117       1.1     matt 		    oa->oa_size, 0, &ioh))
    118       1.1     matt 			return (0);
    119       1.1     matt 		rv = comprobe1(oa->oa_memt, ioh);
    120       1.1     matt 		bus_space_unmap(oa->oa_memt, ioh, oa->oa_size);
    121       1.1     matt 	}
    122       1.1     matt 
    123       1.1     matt 	return (rv);
    124       1.1     matt }
    125       1.1     matt 
    126       1.1     matt void
    127  1.6.58.1      mjf com_obio_attach(device_t parent, device_t self, void *aux)
    128       1.1     matt {
    129  1.6.58.1      mjf 	struct com_obio_softc *osc = device_private(self);
    130       1.1     matt 	struct com_softc *sc = &osc->osc_com;
    131       1.1     matt 	struct obio_attach_args *oa = aux;
    132       1.6  gdamore 	bus_space_handle_t ioh;
    133       1.1     matt 
    134  1.6.58.1      mjf 	sc->sc_dev = self;
    135       1.1     matt 	sc->sc_frequency = COM_FREQ*2;
    136       1.1     matt 
    137       1.6  gdamore 	if (!com_is_console(oa->oa_memt, oa->oa_offset, &ioh) &&
    138       1.6  gdamore 	    bus_space_map(oa->oa_memt, oa->oa_offset, oa->oa_size,
    139       1.6  gdamore 		0, &ioh) != 0) {
    140  1.6.58.1      mjf 		aprint_error(": can't map registers\n");
    141       1.1     matt 		return;
    142       1.1     matt 	}
    143       1.1     matt 
    144       1.6  gdamore 	COM_INIT_REGS(sc->sc_regs, oa->oa_memt, ioh, oa->oa_offset);
    145       1.6  gdamore 	sc->sc_regs.cr_nports = oa->oa_size;
    146       1.1     matt 	com_attach_subr(sc);
    147       1.1     matt 
    148       1.1     matt 	if (oa->oa_irq >= 0) {
    149       1.1     matt 		intr_establish(oa->oa_irq, IST_EDGE, IPL_SERIAL, comintr, sc);
    150  1.6.58.1      mjf 		aprint_normal_dev(self, "interrupting at %s\n",
    151  1.6.58.1      mjf 		    intr_string(oa->oa_irq));
    152       1.1     matt 	}
    153       1.1     matt }
    154