Home | History | Annotate | Line # | Download | only in tc
ioasic.c revision 1.21
      1 /* $NetBSD: ioasic.c,v 1.21 1999/03/15 01:25:27 jonathan Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  * NASA Ames Research Center.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  * 3. All advertising materials mentioning features or use of this software
     20  *    must display the following acknowledgement:
     21  *	This product includes software developed by the NetBSD
     22  *	Foundation, Inc. and its contributors.
     23  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  *    contributors may be used to endorse or promote products derived
     25  *    from this software without specific prior written permission.
     26  *
     27  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  * POSSIBILITY OF SUCH DAMAGE.
     38  */
     39 
     40 /*
     41  * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
     42  * All rights reserved.
     43  *
     44  * Author: Keith Bostic, Chris G. Demetriou
     45  *
     46  * Permission to use, copy, modify and distribute this software and
     47  * its documentation is hereby granted, provided that both the copyright
     48  * notice and this permission notice appear in all copies of the
     49  * software, derivative works or modified versions, and any portions
     50  * thereof, and that both notices appear in supporting documentation.
     51  *
     52  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     53  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     54  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     55  *
     56  * Carnegie Mellon requests users of this software to return to
     57  *
     58  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     59  *  School of Computer Science
     60  *  Carnegie Mellon University
     61  *  Pittsburgh PA 15213-3890
     62  *
     63  * any improvements or extensions that they make and grant Carnegie the
     64  * rights to redistribute these changes.
     65  */
     66 
     67 #include "opt_dec_3000_300.h"
     68 
     69 #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     70 
     71 __KERNEL_RCSID(0, "$NetBSD: ioasic.c,v 1.21 1999/03/15 01:25:27 jonathan Exp $");
     72 
     73 #include <sys/param.h>
     74 #include <sys/kernel.h>
     75 #include <sys/systm.h>
     76 #include <sys/device.h>
     77 
     78 #include <machine/autoconf.h>
     79 #include <machine/bus.h>
     80 #include <machine/pte.h>
     81 #include <machine/rpb.h>
     82 #ifndef EVCNT_COUNTERS
     83 #include <machine/intrcnt.h>
     84 #endif
     85 
     86 #include <dev/tc/tcvar.h>
     87 #include <alpha/tc/ioasicreg.h>
     88 #include <dev/tc/ioasicvar.h>
     89 
     90 /* Definition of the driver for autoconfig. */
     91 int	ioasicmatch __P((struct device *, struct cfdata *, void *));
     92 void	ioasicattach __P((struct device *, struct device *, void *));
     93 int     ioasicprint(void *, const char *);
     94 
     95 struct cfattach ioasic_ca = {
     96 	sizeof(struct ioasic_softc), ioasicmatch, ioasicattach,
     97 };
     98 
     99 int	ioasic_intr __P((void *));
    100 int	ioasic_intrnull __P((void *));
    101 
    102 #define	C(x)	((void *)(x))
    103 
    104 #define	IOASIC_DEV_LANCE	0
    105 #define	IOASIC_DEV_SCC0		1
    106 #define	IOASIC_DEV_SCC1		2
    107 #define	IOASIC_DEV_ISDN		3
    108 
    109 #define	IOASIC_DEV_BOGUS	-1
    110 
    111 #define	IOASIC_NCOOKIES		4
    112 
    113 struct ioasic_dev ioasic_devs[] = {
    114 	/* XXX lance name */
    115 	{ "lance",    IOASIC_SLOT_3_START, C(IOASIC_DEV_LANCE),
    116 	  IOASIC_INTR_LANCE, },
    117 	{ "z8530   ", IOASIC_SLOT_4_START, C(IOASIC_DEV_SCC0),
    118 	  IOASIC_INTR_SCC_0, },
    119 	{ "z8530   ", IOASIC_SLOT_6_START, C(IOASIC_DEV_SCC1),
    120 	  IOASIC_INTR_SCC_1, },
    121 	{ "TOY_RTC ", IOASIC_SLOT_8_START, C(IOASIC_DEV_BOGUS),
    122 	  0, },
    123 	{ "AMD79c30", IOASIC_SLOT_9_START, C(IOASIC_DEV_ISDN),
    124 	  IOASIC_INTR_ISDN,  },
    125 };
    126 int ioasic_ndevs = sizeof(ioasic_devs) / sizeof(ioasic_devs[0]);
    127 
    128 struct ioasicintr {
    129 	int	(*iai_func) __P((void *));
    130 	void	*iai_arg;
    131 } ioasicintrs[IOASIC_NCOOKIES];
    132 
    133 tc_addr_t ioasic_base;		/* XXX XXX XXX */
    134 
    135 /* There can be only one. */
    136 int ioasicfound;
    137 
    138 extern int cputype;
    139 
    140 /*
    141  * DMA area for IOASIC LANCE.
    142  * XXX Should be done differently, but this is better than it used to be.
    143  */
    144 #define	LE_IOASIC_MEMSIZE	(128*1024)
    145 #define	LE_IOASIC_MEMALIGN	(128*1024)
    146 caddr_t	le_iomem;
    147 
    148 void	ioasic_lance_dma_setup __P((struct ioasic_softc *));
    149 
    150 int
    151 ioasicmatch(parent, cfdata, aux)
    152 	struct device *parent;
    153 	struct cfdata *cfdata;
    154 	void *aux;
    155 {
    156 	struct tc_attach_args *ta = aux;
    157 
    158 	/* Make sure that we're looking for this type of device. */
    159 	if (strncmp("FLAMG-IO", ta->ta_modname, TC_ROM_LLEN))
    160 		return (0);
    161 
    162 	/* Check that it can actually exist. */
    163 	if ((cputype != ST_DEC_3000_500) && (cputype != ST_DEC_3000_300))
    164 		panic("ioasicmatch: how did we get here?");
    165 
    166 	if (ioasicfound)
    167 		return (0);
    168 
    169 	return (1);
    170 }
    171 
    172 void
    173 ioasicattach(parent, self, aux)
    174 	struct device *parent, *self;
    175 	void *aux;
    176 {
    177 	struct ioasic_softc *sc = (struct ioasic_softc *)self;
    178 	struct tc_attach_args *ta = aux;
    179 	struct ioasicdev_attach_args ioasicdev;
    180 	u_long i;
    181 
    182 	ioasicfound = 1;
    183 
    184 	sc->sc_base = ta->ta_addr;
    185 	ioasic_base = sc->sc_base;			/* XXX XXX XXX */
    186 	sc->sc_cookie = ta->ta_cookie;
    187 	sc->sc_dmat = ta->ta_dmat;
    188 
    189 #ifdef DEC_3000_300
    190 	if (cputype == ST_DEC_3000_300) {
    191 		*(volatile u_int *)IOASIC_REG_CSR(sc->sc_base) |=
    192 		    IOASIC_CSR_FASTMODE;
    193 		tc_mb();
    194 		printf(": slow mode\n");
    195 	} else
    196 #endif
    197 		printf(": fast mode\n");
    198 
    199 	/*
    200 	 * Turn off all device interrupt bits.
    201 	 * (This does _not_ include 3000/300 TC option slot bits.
    202 	 */
    203 	for (i = 0; i < ioasic_ndevs; i++)
    204 		*(volatile u_int32_t *)IOASIC_REG_IMSK(ioasic_base) &=
    205 			~ioasic_devs[i].iad_intrbits;
    206 	tc_mb();
    207 
    208 	/*
    209 	 * Set up interrupt handlers.
    210 	 */
    211 	for (i = 0; i < IOASIC_NCOOKIES; i++) {
    212 		ioasicintrs[i].iai_func = ioasic_intrnull;
    213 		ioasicintrs[i].iai_arg = (void *)i;
    214 	}
    215 	tc_intr_establish(parent, sc->sc_cookie, TC_IPL_NONE, ioasic_intr, sc);
    216 
    217 	/*
    218 	 * Set up the LANCE DMA area.
    219 	 */
    220 	ioasic_lance_dma_setup(sc);
    221 
    222         /*
    223 	 * Try to configure each device.
    224 	 */
    225         for (i = 0; i < ioasic_ndevs; i++) {
    226 		strncpy(ioasicdev.iada_modname, ioasic_devs[i].iad_modname,
    227 			TC_ROM_LLEN);
    228 		ioasicdev.iada_modname[TC_ROM_LLEN] = '\0';
    229 		ioasicdev.iada_offset = ioasic_devs[i].iad_offset;
    230 		ioasicdev.iada_addr = sc->sc_base + ioasic_devs[i].iad_offset;
    231 		ioasicdev.iada_cookie = ioasic_devs[i].iad_cookie;
    232 
    233                 /* Tell the autoconfig machinery we've found the hardware. */
    234                 config_found(self, &ioasicdev, ioasicprint);
    235         }
    236 }
    237 
    238 int
    239 ioasicprint(aux, pnp)
    240 	void *aux;
    241 	const char *pnp;
    242 {
    243 	struct ioasicdev_attach_args *d = aux;
    244 
    245         if (pnp)
    246                 printf("%s at %s", d->iada_modname, pnp);
    247         printf(" offset 0x%lx", (long)d->iada_offset);
    248         return (UNCONF);
    249 }
    250 
    251 int
    252 ioasic_submatch(match, d)
    253 	struct cfdata *match;
    254 	struct ioasicdev_attach_args *d;
    255 {
    256 
    257 	return ((match->ioasiccf_offset == d->iada_offset) ||
    258 		(match->ioasiccf_offset == IOASIC_OFFSET_UNKNOWN));
    259 }
    260 
    261 void
    262 ioasic_intr_establish(ioa, cookie, level, func, arg)
    263 	struct device *ioa;
    264 	void *cookie, *arg;
    265 	tc_intrlevel_t level;
    266 	int (*func) __P((void *));
    267 {
    268 	u_long dev, i;
    269 
    270 	dev = (u_long)cookie;
    271 #ifdef DIAGNOSTIC
    272 	/* XXX check cookie. */
    273 #endif
    274 
    275 	if (ioasicintrs[dev].iai_func != ioasic_intrnull)
    276 		panic("ioasic_intr_establish: cookie %lu twice", dev);
    277 
    278 	ioasicintrs[dev].iai_func = func;
    279 	ioasicintrs[dev].iai_arg = arg;
    280 
    281 	/* Enable interrupts for the device. */
    282 	for (i = 0; i < ioasic_ndevs; i++)
    283 		if (ioasic_devs[i].iad_cookie == cookie)
    284 			break;
    285 	if (i == ioasic_ndevs)
    286 		panic("ioasic_intr_establish: invalid cookie.");
    287 	*(volatile u_int32_t *)IOASIC_REG_IMSK(ioasic_base) |=
    288 		ioasic_devs[i].iad_intrbits;
    289 	tc_mb();
    290 }
    291 
    292 void
    293 ioasic_intr_disestablish(ioa, cookie)
    294 	struct device *ioa;
    295 	void *cookie;
    296 {
    297 	u_long dev, i;
    298 
    299 	dev = (u_long)cookie;
    300 #ifdef DIAGNOSTIC
    301 	/* XXX check cookie. */
    302 #endif
    303 
    304 	if (ioasicintrs[dev].iai_func == ioasic_intrnull)
    305 		panic("ioasic_intr_disestablish: cookie %lu missing intr", dev);
    306 
    307 	/* Enable interrupts for the device. */
    308 	for (i = 0; i < ioasic_ndevs; i++)
    309 		if (ioasic_devs[i].iad_cookie == cookie)
    310 			break;
    311 	if (i == ioasic_ndevs)
    312 		panic("ioasic_intr_disestablish: invalid cookie.");
    313 	*(volatile u_int32_t *)IOASIC_REG_IMSK(ioasic_base) &=
    314 		~ioasic_devs[i].iad_intrbits;
    315 	tc_mb();
    316 
    317 	ioasicintrs[dev].iai_func = ioasic_intrnull;
    318 	ioasicintrs[dev].iai_arg = (void *)dev;
    319 }
    320 
    321 int
    322 ioasic_intrnull(val)
    323 	void *val;
    324 {
    325 
    326 	panic("ioasic_intrnull: uncaught IOASIC intr for cookie %ld\n",
    327 	    (u_long)val);
    328 }
    329 
    330 /*
    331  * asic_intr --
    332  *	ASIC interrupt handler.
    333  */
    334 int
    335 ioasic_intr(val)
    336 	void *val;
    337 {
    338 	register struct ioasic_softc *sc = val;
    339 	register int ifound;
    340 	int gifound;
    341 	u_int32_t sir;
    342 	volatile u_int32_t *sirp;
    343 
    344 	sirp = (volatile u_int32_t *)IOASIC_REG_INTR(sc->sc_base);
    345 
    346 	gifound = 0;
    347 	do {
    348 		ifound = 0;
    349 		tc_syncbus();
    350 
    351 		sir = *sirp;
    352 
    353 #ifdef EVCNT_COUNTERS
    354 	/* No interrupt counting via evcnt counters */
    355 	XXX BREAK HERE XXX
    356 #else /* !EVCNT_COUNTERS */
    357 #define	INCRINTRCNT(slot)	intrcnt[INTRCNT_IOASIC + slot]++
    358 #endif /* EVCNT_COUNTERS */
    359 
    360 		/* XXX DUPLICATION OF INTERRUPT BIT INFORMATION... */
    361 #define	CHECKINTR(slot, bits)						\
    362 		if (sir & bits) {					\
    363 			ifound = 1;					\
    364 			INCRINTRCNT(slot);				\
    365 			(*ioasicintrs[slot].iai_func)			\
    366 			    (ioasicintrs[slot].iai_arg);		\
    367 		}
    368 		CHECKINTR(IOASIC_DEV_SCC0, IOASIC_INTR_SCC_0);
    369 		CHECKINTR(IOASIC_DEV_SCC1, IOASIC_INTR_SCC_1);
    370 		CHECKINTR(IOASIC_DEV_LANCE, IOASIC_INTR_LANCE);
    371 		CHECKINTR(IOASIC_DEV_ISDN, IOASIC_INTR_ISDN);
    372 
    373 		gifound |= ifound;
    374 	} while (ifound);
    375 
    376 	return (gifound);
    377 }
    378 
    379 /* XXX */
    380 char *
    381 ioasic_lance_ether_address()
    382 {
    383 
    384 	return (u_char *)IOASIC_SYS_ETHER_ADDRESS(ioasic_base);
    385 }
    386 
    387 void
    388 ioasic_lance_dma_setup(sc)
    389 	struct ioasic_softc *sc;
    390 {
    391 	bus_dma_tag_t dmat = sc->sc_dmat;
    392 	bus_dma_segment_t seg;
    393 	volatile u_int32_t *ldp;
    394 	tc_addr_t tca;
    395 	int rseg;
    396 
    397 	/*
    398 	 * Allocate a DMA area for the chip.
    399 	 */
    400 	if (bus_dmamem_alloc(dmat, LE_IOASIC_MEMSIZE, LE_IOASIC_MEMALIGN,
    401 	    0, &seg, 1, &rseg, BUS_DMA_NOWAIT)) {
    402 		printf("%s: can't allocate DMA area for LANCE\n",
    403 		    sc->sc_dv.dv_xname);
    404 		return;
    405 	}
    406 	if (bus_dmamem_map(dmat, &seg, rseg, LE_IOASIC_MEMSIZE,
    407 	    &le_iomem, BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
    408 		printf("%s: can't map DMA area for LANCE\n",
    409 		    sc->sc_dv.dv_xname);
    410 		bus_dmamem_free(dmat, &seg, rseg);
    411 		return;
    412 	}
    413 
    414 	/*
    415 	 * Create and load the DMA map for the DMA area.
    416 	 */
    417 	if (bus_dmamap_create(dmat, LE_IOASIC_MEMSIZE, 1,
    418 	    LE_IOASIC_MEMSIZE, 0, BUS_DMA_NOWAIT, &sc->sc_lance_dmam)) {
    419 		printf("%s: can't create DMA map\n", sc->sc_dv.dv_xname);
    420 		goto bad;
    421 	}
    422 	if (bus_dmamap_load(dmat, sc->sc_lance_dmam,
    423 	    le_iomem, LE_IOASIC_MEMSIZE, NULL, BUS_DMA_NOWAIT)) {
    424 		printf("%s: can't load DMA map\n", sc->sc_dv.dv_xname);
    425 		goto bad;
    426 	}
    427 
    428 	tca = (tc_addr_t)sc->sc_lance_dmam->dm_segs[0].ds_addr;
    429 	if (tca != sc->sc_lance_dmam->dm_segs[0].ds_addr) {
    430 		printf("%s: bad LANCE DMA address\n", sc->sc_dv.dv_xname);
    431 		bus_dmamap_unload(dmat, sc->sc_lance_dmam);
    432 		goto bad;
    433 	}
    434 
    435 	ldp = (volatile u_int *)IOASIC_REG_LANCE_DMAPTR(ioasic_base);
    436 	*ldp = ((tca << 3) & ~(tc_addr_t)0x1f) | ((tca >> 29) & 0x1f);
    437 	tc_wmb();
    438 
    439 	*(volatile u_int32_t *)IOASIC_REG_CSR(ioasic_base) |=
    440 	    IOASIC_CSR_DMAEN_LANCE;
    441 	tc_mb();
    442 	return;
    443 
    444  bad:
    445 	bus_dmamem_unmap(dmat, le_iomem, LE_IOASIC_MEMSIZE);
    446 	bus_dmamem_free(dmat, &seg, rseg);
    447 	le_iomem = 0;
    448 }
    449