Home | History | Annotate | Line # | Download | only in isa
      1  1.36   thorpej /*	$NetBSD: i82365_isa.c,v 1.36 2022/09/25 17:09:36 thorpej Exp $	*/
      2   1.2   thorpej 
      3   1.2   thorpej /*
      4   1.2   thorpej  * Copyright (c) 1997 Marc Horowitz.  All rights reserved.
      5   1.2   thorpej  *
      6   1.2   thorpej  * Redistribution and use in source and binary forms, with or without
      7   1.2   thorpej  * modification, are permitted provided that the following conditions
      8   1.2   thorpej  * are met:
      9   1.2   thorpej  * 1. Redistributions of source code must retain the above copyright
     10   1.2   thorpej  *    notice, this list of conditions and the following disclaimer.
     11   1.2   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.2   thorpej  *    notice, this list of conditions and the following disclaimer in the
     13   1.2   thorpej  *    documentation and/or other materials provided with the distribution.
     14   1.2   thorpej  * 3. All advertising materials mentioning features or use of this software
     15   1.2   thorpej  *    must display the following acknowledgement:
     16   1.2   thorpej  *	This product includes software developed by Marc Horowitz.
     17   1.2   thorpej  * 4. The name of the author may not be used to endorse or promote products
     18   1.2   thorpej  *    derived from this software without specific prior written permission.
     19   1.2   thorpej  *
     20   1.2   thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21   1.2   thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22   1.2   thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23   1.2   thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24   1.2   thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25   1.2   thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26   1.2   thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27   1.2   thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28   1.2   thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29   1.2   thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30   1.2   thorpej  */
     31  1.15     lukem 
     32  1.15     lukem #include <sys/cdefs.h>
     33  1.36   thorpej __KERNEL_RCSID(0, "$NetBSD: i82365_isa.c,v 1.36 2022/09/25 17:09:36 thorpej Exp $");
     34  1.15     lukem 
     35  1.15     lukem #define	PCICISADEBUG
     36   1.2   thorpej 
     37   1.2   thorpej #include <sys/param.h>
     38   1.2   thorpej #include <sys/systm.h>
     39   1.2   thorpej #include <sys/device.h>
     40   1.2   thorpej #include <sys/extent.h>
     41   1.2   thorpej 
     42  1.28        ad #include <sys/bus.h>
     43  1.28        ad #include <sys/intr.h>
     44   1.2   thorpej 
     45   1.2   thorpej #include <dev/isa/isareg.h>
     46   1.2   thorpej #include <dev/isa/isavar.h>
     47   1.2   thorpej 
     48   1.2   thorpej #include <dev/pcmcia/pcmciareg.h>
     49   1.2   thorpej #include <dev/pcmcia/pcmciavar.h>
     50   1.2   thorpej #include <dev/pcmcia/pcmciachip.h>
     51   1.2   thorpej 
     52   1.2   thorpej #include <dev/ic/i82365reg.h>
     53   1.2   thorpej #include <dev/ic/i82365var.h>
     54  1.10  sommerfe #include <dev/isa/i82365_isavar.h>
     55   1.6   thorpej 
     56   1.2   thorpej #ifdef PCICISADEBUG
     57  1.12    chopps int	pcicisa_debug = 0;
     58   1.2   thorpej #define	DPRINTF(arg) if (pcicisa_debug) printf arg;
     59   1.2   thorpej #else
     60   1.2   thorpej #define	DPRINTF(arg)
     61   1.2   thorpej #endif
     62   1.2   thorpej 
     63  1.31    cegger int	pcic_isa_probe(device_t, cfdata_t, void *);
     64  1.31    cegger void	pcic_isa_attach(device_t, device_t, void *);
     65   1.2   thorpej 
     66  1.34       chs CFATTACH_DECL_NEW(pcic_isa, sizeof(struct pcic_isa_softc),
     67  1.20   thorpej     pcic_isa_probe, pcic_isa_attach, NULL, NULL);
     68   1.2   thorpej 
     69  1.29  drochner static const struct pcmcia_chip_functions pcic_isa_functions = {
     70   1.2   thorpej 	pcic_chip_mem_alloc,
     71   1.2   thorpej 	pcic_chip_mem_free,
     72   1.2   thorpej 	pcic_chip_mem_map,
     73   1.2   thorpej 	pcic_chip_mem_unmap,
     74   1.2   thorpej 
     75   1.2   thorpej 	pcic_chip_io_alloc,
     76   1.2   thorpej 	pcic_chip_io_free,
     77   1.2   thorpej 	pcic_chip_io_map,
     78   1.2   thorpej 	pcic_chip_io_unmap,
     79   1.2   thorpej 
     80   1.2   thorpej 	pcic_isa_chip_intr_establish,
     81   1.2   thorpej 	pcic_isa_chip_intr_disestablish,
     82   1.2   thorpej 
     83   1.2   thorpej 	pcic_chip_socket_enable,
     84   1.2   thorpej 	pcic_chip_socket_disable,
     85  1.21   mycroft 	pcic_chip_socket_settype,
     86  1.25  christos 	NULL,
     87   1.2   thorpej };
     88   1.2   thorpej 
     89   1.2   thorpej int
     90  1.31    cegger pcic_isa_probe(device_t parent, cfdata_t match, void *aux)
     91   1.2   thorpej {
     92   1.2   thorpej 	struct isa_attach_args *ia = aux;
     93   1.2   thorpej 	bus_space_tag_t iot = ia->ia_iot;
     94   1.2   thorpej 	bus_space_handle_t ioh, memh;
     95  1.17   thorpej 	int val, found, msize;
     96  1.17   thorpej 
     97  1.17   thorpej 	if (ia->ia_nio < 1)
     98  1.33   tsutsui 		return 0;
     99  1.17   thorpej 	if (ia->ia_niomem < 1)
    100  1.33   tsutsui 		return 0;
    101  1.17   thorpej 
    102  1.17   thorpej 	if (ISA_DIRECT_CONFIG(ia))
    103  1.33   tsutsui 		return 0;
    104   1.3   thorpej 
    105   1.3   thorpej 	/* Disallow wildcarded i/o address. */
    106  1.22  drochner 	if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
    107  1.33   tsutsui 		return 0;
    108  1.22  drochner 	if (ia->ia_iomem[0].ir_addr == ISA_UNKNOWN_IOMEM)
    109  1.33   tsutsui 		return 0;
    110   1.2   thorpej 
    111  1.17   thorpej 	if (bus_space_map(iot, ia->ia_io[0].ir_addr, PCIC_IOSIZE, 0, &ioh))
    112  1.33   tsutsui 		return 0;
    113   1.2   thorpej 
    114  1.22  drochner 	if (ia->ia_iomem[0].ir_size == ISA_UNKNOWN_IOSIZ)
    115  1.17   thorpej 		msize = PCIC_MEMSIZE;
    116  1.17   thorpej 	else
    117  1.17   thorpej 		msize = ia->ia_iomem[0].ir_size;
    118  1.17   thorpej 
    119  1.17   thorpej 	if (bus_space_map(ia->ia_memt, ia->ia_iomem[0].ir_addr,
    120  1.17   thorpej 	    msize, 0, &memh)) {
    121  1.17   thorpej 		bus_space_unmap(iot, ioh, PCIC_IOSIZE);
    122  1.33   tsutsui 		return 0;
    123  1.17   thorpej 	}
    124   1.2   thorpej 
    125   1.2   thorpej 	found = 0;
    126   1.2   thorpej 
    127   1.2   thorpej 	/*
    128   1.2   thorpej 	 * this could be done with a loop, but it would violate the
    129   1.2   thorpej 	 * abstraction
    130   1.2   thorpej 	 */
    131   1.2   thorpej 
    132   1.2   thorpej 	bus_space_write_1(iot, ioh, PCIC_REG_INDEX, C0SA + PCIC_IDENT);
    133   1.2   thorpej 
    134   1.2   thorpej 	val = bus_space_read_1(iot, ioh, PCIC_REG_DATA);
    135   1.2   thorpej 
    136   1.2   thorpej 	if (pcic_ident_ok(val))
    137   1.2   thorpej 		found++;
    138   1.2   thorpej 
    139   1.2   thorpej 
    140   1.2   thorpej 	bus_space_write_1(iot, ioh, PCIC_REG_INDEX, C0SB + PCIC_IDENT);
    141   1.2   thorpej 
    142   1.2   thorpej 	val = bus_space_read_1(iot, ioh, PCIC_REG_DATA);
    143   1.2   thorpej 
    144   1.2   thorpej 	if (pcic_ident_ok(val))
    145   1.2   thorpej 		found++;
    146   1.2   thorpej 
    147   1.2   thorpej 
    148   1.2   thorpej 	bus_space_write_1(iot, ioh, PCIC_REG_INDEX, C1SA + PCIC_IDENT);
    149   1.2   thorpej 
    150   1.2   thorpej 	val = bus_space_read_1(iot, ioh, PCIC_REG_DATA);
    151   1.2   thorpej 
    152   1.2   thorpej 	if (pcic_ident_ok(val))
    153   1.2   thorpej 		found++;
    154   1.2   thorpej 
    155   1.2   thorpej 
    156   1.2   thorpej 	bus_space_write_1(iot, ioh, PCIC_REG_INDEX, C1SB + PCIC_IDENT);
    157   1.2   thorpej 
    158   1.2   thorpej 	val = bus_space_read_1(iot, ioh, PCIC_REG_DATA);
    159   1.2   thorpej 
    160   1.2   thorpej 	if (pcic_ident_ok(val))
    161   1.2   thorpej 		found++;
    162   1.2   thorpej 
    163   1.2   thorpej 
    164   1.2   thorpej 	bus_space_unmap(iot, ioh, PCIC_IOSIZE);
    165  1.17   thorpej 	bus_space_unmap(ia->ia_memt, memh, msize);
    166   1.2   thorpej 
    167   1.2   thorpej 	if (!found)
    168  1.33   tsutsui 		return 0;
    169   1.2   thorpej 
    170  1.17   thorpej 	ia->ia_nio = 1;
    171  1.17   thorpej 	ia->ia_io[0].ir_size = PCIC_IOSIZE;
    172  1.17   thorpej 
    173  1.17   thorpej 	ia->ia_niomem = 1;
    174  1.17   thorpej 	ia->ia_iomem[0].ir_size = msize;
    175  1.17   thorpej 
    176  1.17   thorpej 	/* IRQ is special. */
    177  1.17   thorpej 
    178  1.17   thorpej 	ia->ia_ndrq = 0;
    179   1.2   thorpej 
    180  1.33   tsutsui 	return 1;
    181   1.2   thorpej }
    182   1.2   thorpej 
    183   1.2   thorpej void
    184  1.31    cegger pcic_isa_attach(device_t parent, device_t self, void *aux)
    185   1.2   thorpej {
    186  1.32   tsutsui 	struct pcic_isa_softc *isc = device_private(self);
    187  1.32   tsutsui 	struct pcic_softc *sc = &isc->sc_pcic;
    188   1.2   thorpej 	struct isa_attach_args *ia = aux;
    189   1.2   thorpej 	isa_chipset_tag_t ic = ia->ia_ic;
    190   1.2   thorpej 	bus_space_tag_t iot = ia->ia_iot;
    191   1.2   thorpej 	bus_space_tag_t memt = ia->ia_memt;
    192   1.2   thorpej 	bus_space_handle_t ioh;
    193   1.2   thorpej 	bus_space_handle_t memh;
    194   1.2   thorpej 
    195  1.35   msaitoh 	aprint_naive("\n");
    196  1.34       chs 	sc->dev = self;
    197  1.34       chs 
    198   1.2   thorpej 	/* Map i/o space. */
    199  1.17   thorpej 	if (bus_space_map(iot, ia->ia_io[0].ir_addr, PCIC_IOSIZE, 0, &ioh)) {
    200  1.35   msaitoh 		aprint_error(": can't map i/o space\n");
    201   1.4   thorpej 		return;
    202   1.4   thorpej 	}
    203   1.2   thorpej 
    204   1.2   thorpej 	/* Map mem space. */
    205  1.17   thorpej 	if (bus_space_map(memt, ia->ia_iomem[0].ir_addr,
    206  1.17   thorpej 	    ia->ia_iomem[0].ir_size, 0, &memh)) {
    207  1.35   msaitoh 		aprint_error(": can't map mem space\n");
    208   1.4   thorpej 		return;
    209   1.4   thorpej 	}
    210   1.2   thorpej 
    211  1.17   thorpej 	sc->membase = ia->ia_iomem[0].ir_addr;
    212  1.17   thorpej 	sc->subregionmask =
    213  1.17   thorpej 	    (1 << (ia->ia_iomem[0].ir_size / PCIC_MEM_PAGESIZE)) - 1;
    214   1.2   thorpej 
    215  1.13   thorpej 	isc->sc_ic = ic;
    216  1.33   tsutsui 	sc->pct = &pcic_isa_functions;
    217   1.2   thorpej 
    218   1.2   thorpej 	sc->iot = iot;
    219   1.2   thorpej 	sc->ioh = ioh;
    220   1.2   thorpej 	sc->memt = memt;
    221   1.2   thorpej 	sc->memh = memh;
    222  1.17   thorpej 	if (ia->ia_nirq > 0)
    223  1.17   thorpej 		sc->irq = ia->ia_irq[0].ir_irq;
    224  1.17   thorpej 	else
    225  1.22  drochner 		sc->irq = ISA_UNKNOWN_IRQ;
    226   1.2   thorpej 
    227  1.35   msaitoh 	aprint_normal("\n");
    228   1.2   thorpej 
    229   1.2   thorpej 	pcic_attach(sc);
    230  1.17   thorpej 	pcic_isa_bus_width_probe(sc, iot, ioh, ia->ia_io[0].ir_addr,
    231  1.17   thorpej 	    PCIC_IOSIZE);
    232  1.12    chopps 	pcic_attach_sockets(sc);
    233   1.2   thorpej 
    234  1.12    chopps 	config_interrupts(self, pcic_isa_config_interrupts);
    235   1.2   thorpej }
    236