Home | History | Annotate | Line # | Download | only in jazz
osiop_jazzio.c revision 1.9
      1  1.9  tsutsui /* $NetBSD: osiop_jazzio.c,v 1.9 2008/05/14 13:29:27 tsutsui Exp $ */
      2  1.1  tsutsui 
      3  1.9  tsutsui /*-
      4  1.1  tsutsui  * Copyright (c) 2001 Izumi Tsutsui.  All rights reserved.
      5  1.1  tsutsui  *
      6  1.1  tsutsui  * Redistribution and use in source and binary forms, with or without
      7  1.1  tsutsui  * modification, are permitted provided that the following conditions
      8  1.1  tsutsui  * are met:
      9  1.1  tsutsui  * 1. Redistributions of source code must retain the above copyright
     10  1.1  tsutsui  *    notice, this list of conditions and the following disclaimer.
     11  1.1  tsutsui  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1  tsutsui  *    notice, this list of conditions and the following disclaimer in the
     13  1.1  tsutsui  *    documentation and/or other materials provided with the distribution.
     14  1.1  tsutsui  *
     15  1.1  tsutsui  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     16  1.1  tsutsui  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     17  1.1  tsutsui  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     18  1.1  tsutsui  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     19  1.1  tsutsui  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     20  1.1  tsutsui  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     21  1.1  tsutsui  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     22  1.1  tsutsui  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     23  1.1  tsutsui  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     24  1.1  tsutsui  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     25  1.1  tsutsui  */
     26  1.5    lukem 
     27  1.5    lukem #include <sys/cdefs.h>
     28  1.9  tsutsui __KERNEL_RCSID(0, "$NetBSD: osiop_jazzio.c,v 1.9 2008/05/14 13:29:27 tsutsui Exp $");
     29  1.1  tsutsui 
     30  1.1  tsutsui #include <sys/param.h>
     31  1.1  tsutsui #include <sys/systm.h>
     32  1.1  tsutsui #include <sys/device.h>
     33  1.1  tsutsui #include <sys/buf.h>
     34  1.1  tsutsui #include <sys/malloc.h>
     35  1.1  tsutsui 
     36  1.1  tsutsui #include <dev/scsipi/scsi_all.h>
     37  1.1  tsutsui #include <dev/scsipi/scsipi_all.h>
     38  1.1  tsutsui #include <dev/scsipi/scsiconf.h>
     39  1.1  tsutsui 
     40  1.1  tsutsui #include <machine/cpu.h>
     41  1.1  tsutsui #include <machine/autoconf.h>
     42  1.1  tsutsui #include <machine/bus.h>
     43  1.1  tsutsui 
     44  1.1  tsutsui #include <dev/ic/osiopreg.h>
     45  1.1  tsutsui #include <dev/ic/osiopvar.h>
     46  1.1  tsutsui 
     47  1.1  tsutsui #include <arc/jazz/jazziovar.h>
     48  1.1  tsutsui 
     49  1.8  tsutsui int osiop_jazzio_match(device_t, cfdata_t, void *);
     50  1.8  tsutsui void osiop_jazzio_attach(device_t, device_t, void *);
     51  1.1  tsutsui int osiop_jazzio_intr(void *);
     52  1.1  tsutsui 
     53  1.8  tsutsui CFATTACH_DECL_NEW(osiop_jazzio, sizeof(struct osiop_softc),
     54  1.3  thorpej     osiop_jazzio_match, osiop_jazzio_attach, NULL, NULL);
     55  1.1  tsutsui 
     56  1.1  tsutsui int
     57  1.8  tsutsui osiop_jazzio_match(device_t parent, cfdata_t cf, void *aux)
     58  1.1  tsutsui {
     59  1.1  tsutsui 	struct jazzio_attach_args *ja = aux;
     60  1.1  tsutsui 
     61  1.4  tsutsui 	if (strcmp(ja->ja_name, "NCRC710") != 0)
     62  1.6  tsutsui 		return 0;
     63  1.1  tsutsui 
     64  1.6  tsutsui 	return 1;
     65  1.1  tsutsui }
     66  1.1  tsutsui 
     67  1.1  tsutsui void
     68  1.8  tsutsui osiop_jazzio_attach(device_t parent, device_t self, void *aux)
     69  1.1  tsutsui {
     70  1.8  tsutsui 	struct osiop_softc *sc = device_private(self);
     71  1.1  tsutsui 	struct jazzio_attach_args *ja = aux;
     72  1.1  tsutsui 	int err, scid;
     73  1.1  tsutsui 
     74  1.8  tsutsui 	sc->sc_dev = self;
     75  1.1  tsutsui 	sc->sc_bst = ja->ja_bust;
     76  1.1  tsutsui 	sc->sc_dmat = ja->ja_dmat;
     77  1.1  tsutsui 
     78  1.1  tsutsui 	/*
     79  1.1  tsutsui 	 * Map registers
     80  1.1  tsutsui 	 */
     81  1.1  tsutsui 	err = bus_space_map(sc->sc_bst, ja->ja_addr,
     82  1.1  tsutsui 	    OSIOP_NREGS, 0, &sc->sc_reg);
     83  1.1  tsutsui 	if (err) {
     84  1.8  tsutsui 		aprint_error(": failed to map registers, err=%d\n", err);
     85  1.1  tsutsui 		return;
     86  1.1  tsutsui 	}
     87  1.1  tsutsui 
     88  1.1  tsutsui 	sc->sc_clock_freq = 50;	/* MHz */
     89  1.1  tsutsui 	sc->sc_ctest7 = 0; /* | OSIOP_CTEST7_TT1 */
     90  1.1  tsutsui 	sc->sc_dcntl = OSIOP_DCNTL_EA;
     91  1.1  tsutsui 
     92  1.1  tsutsui 	/* XXX should check ID in BIOS variables? */
     93  1.1  tsutsui 	scid = ffs(osiop_read_1(sc, OSIOP_SCID));
     94  1.1  tsutsui 
     95  1.1  tsutsui 	if (scid == 0)
     96  1.1  tsutsui 		scid = 7;
     97  1.1  tsutsui 	else
     98  1.1  tsutsui 		scid--;
     99  1.1  tsutsui 
    100  1.1  tsutsui 	sc->sc_id = scid;
    101  1.1  tsutsui 
    102  1.1  tsutsui 	/*
    103  1.1  tsutsui 	 * Call common attachment
    104  1.1  tsutsui 	 */
    105  1.1  tsutsui 	osiop_attach(sc);
    106  1.1  tsutsui 
    107  1.1  tsutsui 	/*
    108  1.1  tsutsui 	 * Set up interrupt handler.
    109  1.1  tsutsui          */
    110  1.1  tsutsui 	jazzio_intr_establish(ja->ja_intr,
    111  1.1  tsutsui 	    (intr_handler_t)osiop_jazzio_intr, sc);
    112  1.1  tsutsui }
    113  1.1  tsutsui 
    114  1.1  tsutsui /*
    115  1.1  tsutsui  * interrupt handler
    116  1.1  tsutsui  */
    117  1.1  tsutsui int
    118  1.6  tsutsui osiop_jazzio_intr(void *arg)
    119  1.1  tsutsui {
    120  1.1  tsutsui 	struct osiop_softc *sc = arg;
    121  1.6  tsutsui 	uint8_t istat;
    122  1.1  tsutsui 
    123  1.1  tsutsui 	/* This is potentially nasty, since the IRQ is level triggered... */
    124  1.1  tsutsui 	if (sc->sc_flags & OSIOP_INTSOFF)
    125  1.6  tsutsui 		return 0;
    126  1.1  tsutsui 
    127  1.1  tsutsui 	istat = osiop_read_1(sc, OSIOP_ISTAT);
    128  1.1  tsutsui 
    129  1.1  tsutsui 	if ((istat & (OSIOP_ISTAT_SIP | OSIOP_ISTAT_DIP)) == 0)
    130  1.6  tsutsui 		return 0;
    131  1.1  tsutsui 
    132  1.1  tsutsui 	/* Save interrupt details for the back-end interrupt handler */
    133  1.1  tsutsui 	sc->sc_sstat0 = osiop_read_1(sc, OSIOP_SSTAT0);
    134  1.1  tsutsui 	sc->sc_istat = istat;
    135  1.1  tsutsui 	sc->sc_dstat = osiop_read_1(sc, OSIOP_DSTAT);
    136  1.1  tsutsui 
    137  1.1  tsutsui 	/* Deal with the interrupt */
    138  1.1  tsutsui 	osiop_intr(sc);
    139  1.1  tsutsui 
    140  1.6  tsutsui 	return 1;
    141  1.1  tsutsui }
    142