Home | History | Annotate | Line # | Download | only in mace
mace.c revision 1.1
      1  1.1  sekiya /*	$NetBSD: mace.c,v 1.1 2004/01/18 04:06:43 sekiya Exp $	*/
      2  1.1  sekiya 
      3  1.1  sekiya /*
      4  1.1  sekiya  * Copyright (c) 2003 Christopher Sekiya
      5  1.1  sekiya  * Copyright (c) 2002,2003 Rafal K. Boni
      6  1.1  sekiya  * Copyright (c) 2000 Soren S. Jorvang
      7  1.1  sekiya  * All rights reserved.
      8  1.1  sekiya  *
      9  1.1  sekiya  * Redistribution and use in source and binary forms, with or without
     10  1.1  sekiya  * modification, are permitted provided that the following conditions
     11  1.1  sekiya  * are met:
     12  1.1  sekiya  * 1. Redistributions of source code must retain the above copyright
     13  1.1  sekiya  *    notice, this list of conditions and the following disclaimer.
     14  1.1  sekiya  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1  sekiya  *    notice, this list of conditions and the following disclaimer in the
     16  1.1  sekiya  *    documentation and/or other materials provided with the distribution.
     17  1.1  sekiya  * 3. All advertising materials mentioning features or use of this software
     18  1.1  sekiya  *    must display the following acknowledgement:
     19  1.1  sekiya  *          This product includes software developed for the
     20  1.1  sekiya  *          NetBSD Project.  See http://www.NetBSD.org/ for
     21  1.1  sekiya  *          information about NetBSD.
     22  1.1  sekiya  * 4. The name of the author may not be used to endorse or promote products
     23  1.1  sekiya  *    derived from this software without specific prior written permission.
     24  1.1  sekiya  *
     25  1.1  sekiya  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     26  1.1  sekiya  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     27  1.1  sekiya  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     28  1.1  sekiya  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     29  1.1  sekiya  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     30  1.1  sekiya  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     31  1.1  sekiya  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     32  1.1  sekiya  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     33  1.1  sekiya  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     34  1.1  sekiya  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     35  1.1  sekiya  */
     36  1.1  sekiya 
     37  1.1  sekiya /*
     38  1.1  sekiya  * O2 MACE
     39  1.1  sekiya  *
     40  1.1  sekiya  * The MACE is weird -- although it is a 32-bit device, writes only seem to
     41  1.1  sekiya  * work properly if they are 64-bit-at-once writes (at least, out in ISA
     42  1.1  sekiya  * space and probably MEC space -- the PCI stuff seems to be okay with _4).
     43  1.1  sekiya  * Therefore, the _8* routines are used even though the top 32 bits are
     44  1.1  sekiya  * thrown away.
     45  1.1  sekiya  */
     46  1.1  sekiya 
     47  1.1  sekiya #include <sys/cdefs.h>
     48  1.1  sekiya __KERNEL_RCSID(0, "$NetBSD: mace.c,v 1.1 2004/01/18 04:06:43 sekiya Exp $");
     49  1.1  sekiya 
     50  1.1  sekiya #include <sys/param.h>
     51  1.1  sekiya #include <sys/systm.h>
     52  1.1  sekiya #include <sys/device.h>
     53  1.1  sekiya #include <sys/callout.h>
     54  1.1  sekiya #include <sys/mbuf.h>
     55  1.1  sekiya #include <sys/malloc.h>
     56  1.1  sekiya #include <sys/kernel.h>
     57  1.1  sekiya #include <sys/socket.h>
     58  1.1  sekiya #include <sys/ioctl.h>
     59  1.1  sekiya #include <sys/errno.h>
     60  1.1  sekiya #include <sys/syslog.h>
     61  1.1  sekiya 
     62  1.1  sekiya #include <uvm/uvm_extern.h>
     63  1.1  sekiya 
     64  1.1  sekiya #define	_SGIMIPS_BUS_DMA_PRIVATE
     65  1.1  sekiya #include <machine/bus.h>
     66  1.1  sekiya #include <machine/cpu.h>
     67  1.1  sekiya #include <machine/locore.h>
     68  1.1  sekiya #include <machine/autoconf.h>
     69  1.1  sekiya #include <machine/machtype.h>
     70  1.1  sekiya 
     71  1.1  sekiya #include <sgimips/mace/macevar.h>
     72  1.1  sekiya #include <sgimips/mace/macereg.h>
     73  1.1  sekiya #include <sgimips/dev/crimevar.h>
     74  1.1  sekiya #include <sgimips/dev/crimereg.h>
     75  1.1  sekiya 
     76  1.1  sekiya #include "locators.h"
     77  1.1  sekiya 
     78  1.1  sekiya #define MACE_NINTR 32 /* actually only 8, but interrupts are shared */
     79  1.1  sekiya 
     80  1.1  sekiya struct {
     81  1.1  sekiya 	unsigned int	irq;
     82  1.1  sekiya 	unsigned int	intrmask;
     83  1.1  sekiya 	int	(*func)(void *);
     84  1.1  sekiya 	void	*arg;
     85  1.1  sekiya } maceintrtab[MACE_NINTR];
     86  1.1  sekiya 
     87  1.1  sekiya struct mace_softc {
     88  1.1  sekiya 	struct device sc_dev;
     89  1.1  sekiya 
     90  1.1  sekiya 	bus_space_tag_t iot;
     91  1.1  sekiya 	bus_space_handle_t ioh;
     92  1.1  sekiya 	bus_dma_tag_t dmat; /* 32KB ring buffers, 4KB segments, for ISA  */
     93  1.1  sekiya 	int nsegs;
     94  1.1  sekiya 	bus_dma_segment_t seg;
     95  1.1  sekiya 	bus_dmamap_t map;
     96  1.1  sekiya 
     97  1.1  sekiya 	void *isa_ringbuffer;
     98  1.1  sekiya };
     99  1.1  sekiya 
    100  1.1  sekiya static int	mace_match(struct device *, struct cfdata *, void *);
    101  1.1  sekiya static void	mace_attach(struct device *, struct device *, void *);
    102  1.1  sekiya static int	mace_print(void *, const char *);
    103  1.1  sekiya static int	mace_search(struct device *, struct cfdata *, void *);
    104  1.1  sekiya 
    105  1.1  sekiya CFATTACH_DECL(mace, sizeof(struct mace_softc),
    106  1.1  sekiya     mace_match, mace_attach, NULL, NULL);
    107  1.1  sekiya 
    108  1.1  sekiya #if defined(BLINK)
    109  1.1  sekiya static struct callout mace_blink_ch = CALLOUT_INITIALIZER;
    110  1.1  sekiya static void	mace_blink(void *);
    111  1.1  sekiya #endif
    112  1.1  sekiya 
    113  1.1  sekiya static int
    114  1.1  sekiya mace_match(struct device *parent, struct cfdata *match, void *aux)
    115  1.1  sekiya {
    116  1.1  sekiya 
    117  1.1  sekiya 	/*
    118  1.1  sekiya 	 * The MACE is in the O2.
    119  1.1  sekiya 	 */
    120  1.1  sekiya 	if (mach_type == MACH_SGI_IP32)
    121  1.1  sekiya 		return (1);
    122  1.1  sekiya 
    123  1.1  sekiya 	return (0);
    124  1.1  sekiya }
    125  1.1  sekiya 
    126  1.1  sekiya static void
    127  1.1  sekiya mace_attach(struct device *parent, struct device *self, void *aux)
    128  1.1  sekiya {
    129  1.1  sekiya 	struct mace_softc *sc = (struct mace_softc *)self;
    130  1.1  sekiya 	struct mainbus_attach_args *ma = aux;
    131  1.1  sekiya 	u_int32_t scratch;
    132  1.1  sekiya 
    133  1.1  sekiya 	sc->iot = SGIMIPS_BUS_SPACE_MACE;
    134  1.1  sekiya 	sc->dmat = &sgimips_default_bus_dma_tag;
    135  1.1  sekiya 
    136  1.1  sekiya 	if (bus_space_map(sc->iot, ma->ma_addr, 0,
    137  1.1  sekiya 	    BUS_SPACE_MAP_LINEAR, &sc->ioh))
    138  1.1  sekiya 		panic("mace_attach: could not allocate memory\n");
    139  1.1  sekiya 
    140  1.1  sekiya #if 0
    141  1.1  sekiya 	/*
    142  1.1  sekiya 	 * There's something deeply wrong with the alloc() routine -- it
    143  1.1  sekiya 	 * returns a pointer to memory that is used by the kernel i/o
    144  1.1  sekiya 	 * buffers.  Disable for now.
    145  1.1  sekiya 	 */
    146  1.1  sekiya 
    147  1.1  sekiya 	if ((bus_dmamem_alloc(sc->dmat, 32768, PAGE_SIZE, 32768,
    148  1.1  sekiya 	    &sc->seg, 1, &sc->nsegs, BUS_DMA_NOWAIT)) != 0) {
    149  1.1  sekiya 		printf(": unable to allocate DMA memory\n");
    150  1.1  sekiya 		return;
    151  1.1  sekiya 	}
    152  1.1  sekiya 
    153  1.1  sekiya 	if ((bus_dmamem_map(sc->dmat, &sc->seg, sc->nsegs, 32768,
    154  1.1  sekiya 	    (caddr_t *)&sc->isa_ringbuffer, BUS_DMA_NOWAIT | BUS_DMA_COHERENT))
    155  1.1  sekiya 	    != 0) {
    156  1.1  sekiya 		printf(": unable to map control data\n");
    157  1.1  sekiya 		return;
    158  1.1  sekiya 	}
    159  1.1  sekiya 
    160  1.1  sekiya 	if ((bus_dmamap_create(sc->dmat, 32768, 1, 32768, 0,
    161  1.1  sekiya 	    BUS_DMA_NOWAIT, &sc->map)) != 0) {
    162  1.1  sekiya 		printf(": unable to create DMA map for control data\n");
    163  1.1  sekiya 		return;
    164  1.1  sekiya 	}
    165  1.1  sekiya 
    166  1.1  sekiya 	if ((scratch = bus_dmamap_load(sc->dmat, sc->map, sc->isa_ringbuffer,
    167  1.1  sekiya 	    32768, NULL, BUS_DMA_NOWAIT)) != 0) {
    168  1.1  sekiya 		printf(": unable to load DMA map for control data %i\n",
    169  1.1  sekiya 		    scratch);
    170  1.1  sekiya 	}
    171  1.1  sekiya 
    172  1.1  sekiya 	memset(sc->isa_ringbuffer, 0, 32768);
    173  1.1  sekiya 
    174  1.1  sekiya 	bus_space_write_8(sc->iot, sc->ioh, MACE_ISA_RINGBASE,
    175  1.1  sekiya 	    MIPS_KSEG1_TO_PHYS(sc->isa_ringbuffer) & 0xffff8000);
    176  1.1  sekiya 
    177  1.1  sekiya 	aprint_normal(" isa ringbuffer 0x%x size 32k",
    178  1.1  sekiya 	    MIPS_KSEG1_TO_PHYS((unsigned long)sc->isa_ringbuffer));
    179  1.1  sekiya #endif
    180  1.1  sekiya 
    181  1.1  sekiya 	aprint_normal("\n");
    182  1.1  sekiya 
    183  1.1  sekiya 	aprint_debug("%s: isa sts %llx\n", self->dv_xname,
    184  1.1  sekiya 	    bus_space_read_8(sc->iot, sc->ioh, MACE_ISA_INT_STATUS));
    185  1.1  sekiya 	aprint_debug("%s: isa msk %llx\n", self->dv_xname,
    186  1.1  sekiya 	    bus_space_read_8(sc->iot, sc->ioh, MACE_ISA_INT_MASK));
    187  1.1  sekiya 
    188  1.1  sekiya 	/*
    189  1.1  sekiya 	 * Turn on all ISA interrupts.  These are actually masked and
    190  1.1  sekiya 	 * registered via the CRIME, as the MACE ISA interrupt mask is
    191  1.1  sekiya 	 * really whacky and nigh on impossible to map to a sane autoconfig
    192  1.1  sekiya 	 * scheme.
    193  1.1  sekiya 	 */
    194  1.1  sekiya 
    195  1.1  sekiya 	bus_space_write_8(sc->iot, sc->ioh, MACE_ISA_INT_MASK, 0xffffffff);
    196  1.1  sekiya 	bus_space_write_8(sc->iot, sc->ioh, MACE_ISA_INT_STATUS, 0);
    197  1.1  sekiya 
    198  1.1  sekiya 	/* set up LED for solid green or blink, if that's your fancy */
    199  1.1  sekiya 	scratch = bus_space_read_8(sc->iot, sc->ioh, MACE_ISA_FLASH_NIC_REG);
    200  1.1  sekiya 	scratch |= MACE_ISA_LED_RED;
    201  1.1  sekiya 	scratch &= ~(MACE_ISA_LED_GREEN);
    202  1.1  sekiya 	bus_space_write_8(sc->iot, sc->ioh, MACE_ISA_FLASH_NIC_REG, scratch);
    203  1.1  sekiya 
    204  1.1  sekiya #if defined(BLINK)
    205  1.1  sekiya 	mace_blink(sc);
    206  1.1  sekiya #endif
    207  1.1  sekiya 
    208  1.1  sekiya 	/* Initialize the maceintr elements to sane values */
    209  1.1  sekiya 	for (scratch = 0; scratch < MACE_NINTR; scratch++) {
    210  1.1  sekiya 		maceintrtab[scratch].func = NULL;
    211  1.1  sekiya 		maceintrtab[scratch].irq = 0;
    212  1.1  sekiya 	}
    213  1.1  sekiya 
    214  1.1  sekiya 	config_search(mace_search, self, NULL);
    215  1.1  sekiya }
    216  1.1  sekiya 
    217  1.1  sekiya 
    218  1.1  sekiya static int
    219  1.1  sekiya mace_print(void *aux, const char *pnp)
    220  1.1  sekiya {
    221  1.1  sekiya 	struct mace_attach_args *maa = aux;
    222  1.1  sekiya 
    223  1.1  sekiya 	if (pnp != 0)
    224  1.1  sekiya 		return QUIET;
    225  1.1  sekiya 
    226  1.1  sekiya 	if (maa->maa_offset != MACECF_OFFSET_DEFAULT)
    227  1.1  sekiya 		aprint_normal(" offset 0x%lx", maa->maa_offset);
    228  1.1  sekiya 	if (maa->maa_intr != MACECF_INTR_DEFAULT)
    229  1.1  sekiya 		aprint_normal(" intr %d", maa->maa_intr);
    230  1.1  sekiya 	if (maa->maa_offset != MACECF_INTRMASK_DEFAULT)
    231  1.1  sekiya 		aprint_normal(" intrmask 0x%x", maa->maa_intrmask);
    232  1.1  sekiya 
    233  1.1  sekiya 	return UNCONF;
    234  1.1  sekiya }
    235  1.1  sekiya 
    236  1.1  sekiya static int
    237  1.1  sekiya mace_search(struct device *parent, struct cfdata *cf, void *aux)
    238  1.1  sekiya {
    239  1.1  sekiya 	struct mace_softc *sc = (struct mace_softc *)parent;
    240  1.1  sekiya 	struct mace_attach_args maa;
    241  1.1  sekiya 	int tryagain;
    242  1.1  sekiya 
    243  1.1  sekiya 	do {
    244  1.1  sekiya 		maa.maa_offset = cf->cf_loc[MACECF_OFFSET];
    245  1.1  sekiya 		maa.maa_intr = cf->cf_loc[MACECF_INTR];
    246  1.1  sekiya 		maa.maa_intrmask = cf->cf_loc[MACECF_INTRMASK];
    247  1.1  sekiya 		maa.maa_st = SGIMIPS_BUS_SPACE_MACE;
    248  1.1  sekiya 		maa.maa_sh = sc->ioh;	/* XXX */
    249  1.1  sekiya 		maa.maa_dmat = &sgimips_default_bus_dma_tag;
    250  1.1  sekiya 		maa.isa_ringbuffer = sc->isa_ringbuffer;
    251  1.1  sekiya 
    252  1.1  sekiya 		tryagain = 0;
    253  1.1  sekiya 		if (config_match(parent, cf, &maa) > 0) {
    254  1.1  sekiya 			config_attach(parent, cf, &maa, mace_print);
    255  1.1  sekiya 			tryagain = (cf->cf_fstate == FSTATE_STAR);
    256  1.1  sekiya 		}
    257  1.1  sekiya 
    258  1.1  sekiya 	} while (tryagain);
    259  1.1  sekiya 
    260  1.1  sekiya 	return 0;
    261  1.1  sekiya }
    262  1.1  sekiya 
    263  1.1  sekiya void *
    264  1.1  sekiya mace_intr_establish(int intr, int level, int (*func)(void *), void *arg)
    265  1.1  sekiya {
    266  1.1  sekiya 	int i;
    267  1.1  sekiya 
    268  1.1  sekiya 	if (intr < 0 || intr >= 8)
    269  1.1  sekiya 		panic("invalid interrupt number");
    270  1.1  sekiya 
    271  1.1  sekiya 	for (i = 0; i < MACE_NINTR; i++)
    272  1.1  sekiya 		if (maceintrtab[intr].func == NULL) {
    273  1.1  sekiya 		        maceintrtab[intr].func = func;
    274  1.1  sekiya 		        maceintrtab[intr].arg = arg;
    275  1.1  sekiya 			maceintrtab[intr].irq = (1 << intr);
    276  1.1  sekiya 			maceintrtab[intr].intrmask = level;
    277  1.1  sekiya 			break;
    278  1.1  sekiya 		}
    279  1.1  sekiya 
    280  1.1  sekiya 	crime_intr_mask(intr);
    281  1.1  sekiya 	aprint_normal("mace: established interrupt %d (level %x)\n",
    282  1.1  sekiya 	    intr, level);
    283  1.1  sekiya 	return (void *)&maceintrtab[intr];
    284  1.1  sekiya }
    285  1.1  sekiya 
    286  1.1  sekiya void
    287  1.1  sekiya mace_intr(int irqs)
    288  1.1  sekiya {
    289  1.1  sekiya 	u_int64_t isa_irq, isa_mask;
    290  1.1  sekiya 	int i;
    291  1.1  sekiya 
    292  1.1  sekiya 	/* irq 4 is the ISA cascade interrupt.  Must handle with care. */
    293  1.1  sekiya 	if (irqs & (1 << 4)) {
    294  1.1  sekiya 		isa_mask = mips3_ld((u_int64_t *)MIPS_PHYS_TO_KSEG1(MACE_BASE
    295  1.1  sekiya 		    + MACE_ISA_INT_MASK));
    296  1.1  sekiya 		isa_irq = mips3_ld((u_int64_t *)MIPS_PHYS_TO_KSEG1(MACE_BASE
    297  1.1  sekiya 		    + MACE_ISA_INT_STATUS));
    298  1.1  sekiya 		for (i = 0; i < MACE_NINTR; i++) {
    299  1.1  sekiya 			if ((maceintrtab[i].irq == (1 << 4)) &&
    300  1.1  sekiya 			    (isa_irq & maceintrtab[i].intrmask)) {
    301  1.1  sekiya 				if (isa_irq & 0xfc000000)
    302  1.1  sekiya 					printf("dispatching\n");
    303  1.1  sekiya 
    304  1.1  sekiya 		  		(maceintrtab[i].func)(maceintrtab[i].arg);
    305  1.1  sekiya 	        	}
    306  1.1  sekiya 		}
    307  1.1  sekiya #if 0
    308  1.1  sekiya 		mips3_sd((u_int64_t *)MIPS_PHYS_TO_KSEG1(MACE_BASE
    309  1.1  sekiya 		    + MACE_ISA_INT_STATUS), isa_mask);
    310  1.1  sekiya #endif
    311  1.1  sekiya 		irqs &= ~(1 << 4);
    312  1.1  sekiya 	}
    313  1.1  sekiya 
    314  1.1  sekiya 	for (i = 0; i < MACE_NINTR; i++)
    315  1.1  sekiya 		if ((irqs & maceintrtab[i].irq))
    316  1.1  sekiya 		  	(maceintrtab[i].func)(maceintrtab[i].arg);
    317  1.1  sekiya }
    318  1.1  sekiya 
    319  1.1  sekiya #if defined(BLINK)
    320  1.1  sekiya static void
    321  1.1  sekiya mace_blink(void *self)
    322  1.1  sekiya {
    323  1.1  sekiya 	struct mace_softc *sc = (struct mace_softc *) self;
    324  1.1  sekiya 	register int s;
    325  1.1  sekiya 	int value;
    326  1.1  sekiya 
    327  1.1  sekiya 	s = splhigh();
    328  1.1  sekiya 	value = bus_space_read_8(sc->iot, sc->ioh, MACE_ISA_FLASH_NIC_REG);
    329  1.1  sekiya 	value ^= MACE_ISA_LED_GREEN;
    330  1.1  sekiya 	bus_space_write_8(sc->iot, sc->ioh, MACE_ISA_FLASH_NIC_REG, value);
    331  1.1  sekiya 	splx(s);
    332  1.1  sekiya 	/*
    333  1.1  sekiya 	 * Blink rate is:
    334  1.1  sekiya 	 *      full cycle every second if completely idle (loadav = 0)
    335  1.1  sekiya 	 *      full cycle every 2 seconds if loadav = 1
    336  1.1  sekiya 	 *      full cycle every 3 seconds if loadav = 2
    337  1.1  sekiya 	 * etc.
    338  1.1  sekiya 	 */
    339  1.1  sekiya 	s = (((averunnable.ldavg[0] + FSCALE) * hz) >> (FSHIFT + 1));
    340  1.1  sekiya 	callout_reset(&mace_blink_ch, s, mace_blink, sc);
    341  1.1  sekiya 
    342  1.1  sekiya }
    343  1.1  sekiya #endif
    344