Home | History | Annotate | Line # | Download | only in isa
isa_machdep.c revision 1.18
      1 /*	$NetBSD: isa_machdep.c,v 1.18 2000/06/26 14:20:40 mrg Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1997 Leo Weppelman.  All rights reserved.
      5  * Copyright (c) 1996 Christopher G. Demetriou.  All rights reserved.
      6  * Copyright (c) 1994 Charles M. Hannum.  All rights reserved.
      7  *
      8  * Redistribution and use in source and binary forms, with or without
      9  * modification, are permitted provided that the following conditions
     10  * are met:
     11  * 1. Redistributions of source code must retain the above copyright
     12  *    notice, this list of conditions and the following disclaimer.
     13  * 2. Redistributions in binary form must reproduce the above copyright
     14  *    notice, this list of conditions and the following disclaimer in the
     15  *    documentation and/or other materials provided with the distribution.
     16  * 3. All advertising materials mentioning features or use of this software
     17  *    must display the following acknowledgement:
     18  *	This product includes software developed by Charles M. Hannum.
     19  * 4. The name of the author may not be used to endorse or promote products
     20  *    derived from this software without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  */
     33 
     34 #include <sys/types.h>
     35 #include <sys/param.h>
     36 #include <sys/time.h>
     37 #include <sys/systm.h>
     38 #include <sys/errno.h>
     39 #include <sys/device.h>
     40 
     41 #include <vm/vm.h>
     42 
     43 #include <dev/isa/isavar.h>
     44 #include <dev/isa/isareg.h>
     45 
     46 #include <m68k/asm_single.h>
     47 
     48 #include <machine/bus.h>
     49 #include <machine/cpu.h>
     50 #include <machine/iomap.h>
     51 #include <machine/mfp.h>
     52 #include <atari/atari/device.h>
     53 
     54 static int	isabusprint __P((void *auxp, const char *));
     55 static int	isabusmatch __P((struct device *, struct cfdata *, void *));
     56 static void	isabusattach __P((struct device *, struct device *, void *));
     57 
     58 struct isabus_softc {
     59 	struct device sc_dev;
     60 	struct atari_isa_chipset sc_chipset;
     61 };
     62 
     63 struct cfattach isabus_ca = {
     64 	sizeof(struct isabus_softc), isabusmatch, isabusattach
     65 };
     66 
     67 int
     68 isabusmatch(pdp, cfp, auxp)
     69 struct device	*pdp;
     70 struct cfdata	*cfp;
     71 void		*auxp;
     72 {
     73 	if(atari_realconfig == 0)
     74 		return (0);
     75 	if (strcmp((char *)auxp, "isabus") || cfp->cf_unit != 0)
     76 		return(0);
     77 	return(machineid & ATARI_HADES ? 1 : 0);
     78 }
     79 
     80 void
     81 isabusattach(pdp, dp, auxp)
     82 struct device	*pdp, *dp;
     83 void		*auxp;
     84 {
     85 	struct isabus_softc *sc = (struct isabus_softc *)dp;
     86 	struct isabus_attach_args	iba;
     87 
     88 	iba.iba_busname = "isa";
     89 	iba.iba_dmat	= BUS_ISA_DMA_TAG;
     90 	iba.iba_iot     = leb_alloc_bus_space_tag(NULL);
     91 	iba.iba_memt    = leb_alloc_bus_space_tag(NULL);
     92 	iba.iba_ic	= &sc->sc_chipset;
     93 	if ((iba.iba_iot == NULL) || (iba.iba_memt == NULL)) {
     94 		printf("leb_alloc_bus_space_tag failed!\n");
     95 		return;
     96 	}
     97 	iba.iba_iot->base  = ISA_IOSTART;
     98 	iba.iba_memt->base = ISA_MEMSTART;
     99 
    100 	MFP->mf_aer |= (IO_ISA1|IO_ISA2); /* ISA interrupts: LOW->HIGH */
    101 
    102 	printf("\n");
    103 	config_found(dp, &iba, isabusprint);
    104 }
    105 
    106 int
    107 isabusprint(auxp, name)
    108 void		*auxp;
    109 const char	*name;
    110 {
    111 	if(name == NULL)
    112 		return(UNCONF);
    113 	return(QUIET);
    114 }
    115 
    116 void
    117 isa_attach_hook(parent, self, iba)
    118 	struct device		  *parent, *self;
    119 	struct isabus_attach_args *iba;
    120 {
    121 }
    122 
    123 /*
    124  * The interrupt stuff is rather ugly. On the Hades, all interrupt lines
    125  * for a slot are wired together and connected to either IO3 (slot1) or
    126  * IO7 (slot2). Since no info can be obtained about the slot position
    127  * at isa_intr_establish() time, the following assumption is made:
    128  *   - irq <= 6 -> slot 1
    129  *   - irq >  6 -> slot 2
    130  */
    131 
    132 #define	SLOTNR(irq)	((irq <= 6) ? 0 : 1)
    133 
    134 static isa_intr_info_t iinfo[2] = { { -1 }, { -1 } };
    135 
    136 static int	iifun __P((int, int));
    137 
    138 static int
    139 iifun(slot, sr)
    140 int	slot;
    141 int	sr;
    142 {
    143 	isa_intr_info_t *iinfo_p;
    144 	int		s;
    145 
    146 	iinfo_p = &iinfo[slot];
    147 
    148 	/*
    149 	 * Disable the interrupts
    150 	 */
    151 	if (slot == 0) {
    152 		single_inst_bclr_b(MFP->mf_imrb, IB_ISA1);
    153 	}
    154 	else {
    155 		single_inst_bclr_b(MFP->mf_imra, IA_ISA2);
    156 	}
    157 
    158 	if ((sr & PSL_IPL) >= (iinfo_p->ipl & PSL_IPL)) {
    159 		/*
    160 		 * We're running at a too high priority now.
    161 		 */
    162 		add_sicallback((si_farg)iifun, (void*)slot, 0);
    163 	}
    164 	else {
    165 		s = splx(iinfo_p->ipl);
    166 		if (slot == 0) {
    167 			do {
    168 				MFP->mf_iprb = (u_int8_t)~IB_ISA1;
    169 				(void) (iinfo_p->ifunc)(iinfo_p->iarg);
    170 			} while (MFP->mf_iprb & IB_ISA1);
    171 			single_inst_bset_b(MFP->mf_imrb, IB_ISA1);
    172 		}
    173 		else {
    174 			do {
    175 				MFP->mf_ipra = (u_int8_t)~IA_ISA2;
    176 				(void) (iinfo_p->ifunc)(iinfo_p->iarg);
    177 			} while (MFP->mf_ipra & IA_ISA2);
    178 			single_inst_bset_b(MFP->mf_imra, IA_ISA2);
    179 		}
    180 		splx(s);
    181 	}
    182 	return 1;
    183 }
    184 
    185 
    186 /*
    187  * XXXX
    188  * XXXX Note that this function is not really working yet! The big problem is
    189  * XXXX to only generate interrupts for the slot the card is in...
    190  */
    191 int
    192 isa_intr_alloc(ic, mask, type, irq)
    193 	isa_chipset_tag_t ic;
    194 	int mask;
    195 	int type;
    196 	int *irq;
    197 {
    198 	isa_intr_info_t *iinfo_p;
    199 	int		slot, i;
    200 
    201 
    202 	/*
    203 	 * The Hades only supports edge triggered interrupts!
    204 	 */
    205 	if (type != IST_EDGE)
    206 		return 1;
    207 
    208 #define	MAXIRQ		10	/* XXX: Pure fiction	*/
    209 	for (i = 0; i < MAXIRQ; i++) {
    210 		if (mask & (1<<i)) {
    211 		    slot    = SLOTNR(i);
    212 		    iinfo_p = &iinfo[slot];
    213 
    214 		    if (iinfo_p->slot < 0) {
    215 			*irq = i;
    216 			printf("WARNING: isa_intr_alloc is not yet ready!\n"
    217 			       "         make sure the card is in slot %d!\n",
    218 				slot);
    219 			return 0;
    220 		    }
    221 		}
    222 	}
    223 	return (1);
    224 }
    225 
    226 const struct evcnt *
    227 isa_intr_evcnt(isa_chipset_tag_t ic, int irq)
    228 {
    229 
    230 	/* XXX for now, no evcnt parent reported */
    231 	return NULL;
    232 }
    233 
    234 void *
    235 isa_intr_establish(ic, irq, type, level, ih_fun, ih_arg)
    236 	isa_chipset_tag_t ic;
    237 	int		  irq, type, level;
    238 	int		  (*ih_fun) __P((void *));
    239 	void		  *ih_arg;
    240 {
    241 	isa_intr_info_t *iinfo_p;
    242 	struct intrhand	*ihand;
    243 	int		slot;
    244 
    245 	/*
    246 	 * The Hades only supports edge triggered interrupts!
    247 	 */
    248 	if (type != IST_EDGE)
    249 		return NULL;
    250 
    251 	slot    = SLOTNR(irq);
    252 	iinfo_p = &iinfo[slot];
    253 
    254 	if (iinfo_p->slot >= 0)
    255 	    panic("isa_intr_establish: interrupt was already established\n");
    256 
    257 	ihand = intr_establish((slot == 0) ? 3 : 15, USER_VEC, 0,
    258 				(hw_ifun_t)iifun, (void *)slot);
    259 	if (ihand != NULL) {
    260 		iinfo_p->slot  = slot;
    261 		iinfo_p->ipl   = level;
    262 		iinfo_p->ifunc = ih_fun;
    263 		iinfo_p->iarg  = ih_arg;
    264 		iinfo_p->ihand = ihand;
    265 
    266 		/*
    267 		 * Enable (unmask) the interrupt
    268 		 */
    269 		if (slot == 0) {
    270 			single_inst_bset_b(MFP->mf_imrb, IB_ISA1);
    271 			single_inst_bset_b(MFP->mf_ierb, IB_ISA1);
    272 		}
    273 		else {
    274 			single_inst_bset_b(MFP->mf_imra, IA_ISA2);
    275 			single_inst_bset_b(MFP->mf_iera, IA_ISA2);
    276 		}
    277 		return(iinfo_p);
    278 	}
    279 	return NULL;
    280 }
    281 
    282 void
    283 isa_intr_disestablish(ic, handler)
    284 	isa_chipset_tag_t	ic;
    285 	void			*handler;
    286 {
    287 	isa_intr_info_t *iinfo_p = (isa_intr_info_t *)handler;
    288 
    289 	if (iinfo_p->slot < 0)
    290 	    panic("isa_intr_disestablish: interrupt was not established\n");
    291 
    292 	(void) intr_disestablish(iinfo_p->ihand);
    293 	iinfo_p->slot = -1;
    294 }
    295