Home | History | Annotate | Line # | Download | only in isa
lm_isa.c revision 1.16.2.2
      1  1.16.2.2        ad /*	$NetBSD: lm_isa.c,v 1.16.2.2 2007/10/23 20:08:12 ad Exp $ */
      2       1.1      groo 
      3       1.1      groo /*-
      4       1.1      groo  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      5       1.1      groo  * All rights reserved.
      6       1.1      groo  *
      7       1.1      groo  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1      groo  * by Bill Squier.
      9       1.1      groo  *
     10       1.1      groo  * Redistribution and use in source and binary forms, with or without
     11       1.1      groo  * modification, are permitted provided that the following conditions
     12       1.1      groo  * are met:
     13       1.1      groo  * 1. Redistributions of source code must retain the above copyright
     14       1.1      groo  *    notice, this list of conditions and the following disclaimer.
     15       1.1      groo  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1      groo  *    notice, this list of conditions and the following disclaimer in the
     17       1.1      groo  *    documentation and/or other materials provided with the distribution.
     18       1.1      groo  * 3. All advertising materials mentioning features or use of this software
     19       1.1      groo  *    must display the following acknowledgement:
     20       1.1      groo  *        This product includes software developed by the NetBSD
     21       1.1      groo  *        Foundation, Inc. and its contributors.
     22       1.1      groo  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1      groo  *    contributors may be used to endorse or promote products derived
     24       1.1      groo  *    from this software without specific prior written permission.
     25       1.1      groo  *
     26       1.1      groo  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1      groo  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1      groo  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1      groo  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1      groo  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1      groo  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1      groo  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1      groo  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1      groo  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1      groo  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1      groo  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1      groo  */
     38       1.4     lukem 
     39       1.4     lukem #include <sys/cdefs.h>
     40  1.16.2.2        ad __KERNEL_RCSID(0, "$NetBSD: lm_isa.c,v 1.16.2.2 2007/10/23 20:08:12 ad Exp $");
     41       1.1      groo 
     42       1.1      groo #include <sys/param.h>
     43       1.1      groo #include <sys/systm.h>
     44       1.1      groo #include <sys/kernel.h>
     45       1.1      groo #include <sys/device.h>
     46       1.1      groo #include <sys/conf.h>
     47       1.1      groo 
     48  1.16.2.2        ad #include <sys/bus.h>
     49       1.1      groo 
     50       1.1      groo #include <dev/isa/isareg.h>
     51       1.1      groo #include <dev/isa/isavar.h>
     52       1.1      groo 
     53       1.3   thorpej #include <dev/sysmon/sysmonvar.h>
     54       1.1      groo 
     55       1.1      groo #include <dev/ic/nslm7xvar.h>
     56       1.1      groo 
     57       1.1      groo #if defined(LMDEBUG)
     58       1.1      groo #define DPRINTF(x)		do { printf x; } while (0)
     59       1.1      groo #else
     60       1.1      groo #define DPRINTF(x)
     61       1.1      groo #endif
     62       1.1      groo 
     63       1.1      groo 
     64       1.9        ad int lm_isa_match(struct device *, struct cfdata *, void *);
     65       1.9        ad void lm_isa_attach(struct device *, struct device *, void *);
     66  1.16.2.1        ad int lm_isa_detach(struct device *, int);
     67      1.16   xtraeme uint8_t lm_isa_readreg(struct lm_softc *, int);
     68       1.9        ad void lm_isa_writereg(struct lm_softc *, int, int);
     69       1.1      groo 
     70       1.8   thorpej CFATTACH_DECL(lm_isa, sizeof(struct lm_softc),
     71  1.16.2.1        ad     lm_isa_match, lm_isa_attach, lm_isa_detach, NULL);
     72       1.1      groo 
     73       1.1      groo int
     74      1.16   xtraeme lm_isa_match(struct device *parent, struct cfdata *match, void *aux)
     75       1.1      groo {
     76       1.1      groo 	bus_space_handle_t ioh;
     77       1.1      groo 	struct isa_attach_args *ia = aux;
     78       1.1      groo 	int rv;
     79       1.1      groo 
     80       1.1      groo 	/* Must supply an address */
     81       1.5   thorpej 	if (ia->ia_nio < 1)
     82      1.16   xtraeme 		return 0;
     83       1.5   thorpej 
     84       1.5   thorpej 	if (ISA_DIRECT_CONFIG(ia))
     85      1.16   xtraeme 		return 0;
     86       1.5   thorpej 
     87      1.10  drochner 	if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
     88      1.16   xtraeme 		return 0;
     89       1.1      groo 
     90      1.16   xtraeme 	if (bus_space_map(ia->ia_iot, ia->ia_io[0].ir_addr, 8, 0, &ioh))
     91      1.16   xtraeme 		return 0;
     92       1.1      groo 
     93       1.1      groo 
     94       1.2      groo 	/* Bus independent probe */
     95      1.16   xtraeme 	rv = lm_probe(ia->ia_iot, ioh);
     96       1.1      groo 
     97      1.16   xtraeme 	bus_space_unmap(ia->ia_iot, ioh, 8);
     98       1.1      groo 
     99       1.1      groo 	if (rv) {
    100       1.5   thorpej 		ia->ia_nio = 1;
    101       1.5   thorpej 		ia->ia_io[0].ir_size = 8;
    102       1.5   thorpej 
    103       1.5   thorpej 		ia->ia_niomem = 0;
    104       1.5   thorpej 		ia->ia_nirq = 0;
    105       1.5   thorpej 		ia->ia_ndrq = 0;
    106       1.1      groo 	}
    107       1.1      groo 
    108      1.16   xtraeme 	return rv;
    109       1.1      groo }
    110       1.1      groo 
    111       1.1      groo 
    112       1.1      groo void
    113      1.13  christos lm_isa_attach(struct device *parent, struct device *self, void *aux)
    114       1.1      groo {
    115       1.1      groo 	struct lm_softc *lmsc = (void *)self;
    116       1.1      groo 	struct isa_attach_args *ia = aux;
    117       1.1      groo 
    118      1.16   xtraeme 	lmsc->lm_iot = ia->ia_iot;
    119       1.1      groo 
    120      1.16   xtraeme 	if (bus_space_map(ia->ia_iot, ia->ia_io[0].ir_addr, 8, 0,
    121      1.16   xtraeme 	    &lmsc->lm_ioh)) {
    122      1.16   xtraeme 		aprint_error(": can't map i/o space\n");
    123       1.1      groo 		return;
    124       1.1      groo 	}
    125       1.1      groo 
    126      1.14       wiz 	/* Bus-independent attachment */
    127       1.9        ad 	lmsc->lm_writereg = lm_isa_writereg;
    128       1.9        ad 	lmsc->lm_readreg = lm_isa_readreg;
    129       1.9        ad 
    130       1.1      groo 	lm_attach(lmsc);
    131       1.9        ad }
    132       1.9        ad 
    133       1.9        ad 
    134      1.16   xtraeme uint8_t
    135      1.16   xtraeme lm_isa_readreg(struct lm_softc *sc, int reg)
    136       1.9        ad {
    137       1.9        ad 	bus_space_write_1(sc->lm_iot, sc->lm_ioh, LMC_ADDR, reg);
    138      1.16   xtraeme 	return bus_space_read_1(sc->lm_iot, sc->lm_ioh, LMC_DATA);
    139       1.9        ad }
    140       1.9        ad 
    141       1.9        ad 
    142       1.9        ad void
    143      1.16   xtraeme lm_isa_writereg(struct lm_softc *sc, int reg, int val)
    144       1.9        ad {
    145       1.9        ad 	bus_space_write_1(sc->lm_iot, sc->lm_ioh, LMC_ADDR, reg);
    146       1.9        ad 	bus_space_write_1(sc->lm_iot, sc->lm_ioh, LMC_DATA, val);
    147       1.1      groo }
    148  1.16.2.1        ad 
    149  1.16.2.1        ad int
    150  1.16.2.1        ad lm_isa_detach(struct device *self, int flags)
    151  1.16.2.1        ad {
    152  1.16.2.1        ad 	struct lm_softc *lmsc = device_private(self);
    153  1.16.2.1        ad 
    154  1.16.2.1        ad 	lm_detach(lmsc);
    155  1.16.2.1        ad 	bus_space_unmap(lmsc->lm_iot, lmsc->lm_ioh, 8);
    156  1.16.2.1        ad 	return 0;
    157  1.16.2.1        ad }
    158