Home | History | Annotate | Line # | Download | only in bi
kdb.c revision 1.41
      1  1.41        ad /*	$NetBSD: kdb.c,v 1.41 2007/10/19 11:59:37 ad Exp $ */
      2   1.1     ragge /*
      3   1.1     ragge  * Copyright (c) 1996 Ludd, University of Lule}, Sweden.
      4   1.1     ragge  * All rights reserved.
      5   1.1     ragge  *
      6   1.1     ragge  * Redistribution and use in source and binary forms, with or without
      7   1.1     ragge  * modification, are permitted provided that the following conditions
      8   1.1     ragge  * are met:
      9   1.1     ragge  * 1. Redistributions of source code must retain the above copyright
     10   1.1     ragge  *    notice, this list of conditions and the following disclaimer.
     11   1.1     ragge  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.1     ragge  *    notice, this list of conditions and the following disclaimer in the
     13   1.1     ragge  *    documentation and/or other materials provided with the distribution.
     14   1.1     ragge  * 3. All advertising materials mentioning features or use of this software
     15   1.1     ragge  *    must display the following acknowledgement:
     16  1.37     perry  *	This product includes software developed at Ludd, University of
     17  1.12     ragge  *	Lule}, Sweden and its contributors.
     18   1.1     ragge  * 4. The name of the author may not be used to endorse or promote products
     19   1.1     ragge  *    derived from this software without specific prior written permission
     20   1.1     ragge  *
     21   1.1     ragge  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.1     ragge  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.1     ragge  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.1     ragge  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.1     ragge  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.1     ragge  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.1     ragge  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.1     ragge  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.1     ragge  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.1     ragge  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.1     ragge  */
     32   1.1     ragge 
     33   1.1     ragge /*
     34   1.1     ragge  * KDB50 disk device driver
     35   1.1     ragge  */
     36   1.1     ragge /*
     37   1.1     ragge  * TODO
     38   1.1     ragge  *   Implement node reset routine.
     39   1.1     ragge  *   Nices hardware error handling.
     40   1.1     ragge  */
     41  1.26     lukem 
     42  1.26     lukem #include <sys/cdefs.h>
     43  1.41        ad __KERNEL_RCSID(0, "$NetBSD: kdb.c,v 1.41 2007/10/19 11:59:37 ad Exp $");
     44   1.1     ragge 
     45   1.1     ragge #include <sys/param.h>
     46   1.1     ragge #include <sys/kernel.h>
     47   1.1     ragge #include <sys/buf.h>
     48  1.35        he #include <sys/bufq.h>
     49   1.1     ragge #include <sys/device.h>
     50   1.1     ragge #include <sys/proc.h>
     51  1.10     ragge #include <sys/user.h>
     52   1.1     ragge #include <sys/malloc.h>
     53  1.12     ragge #include <sys/systm.h>
     54  1.24     ragge #include <sys/sched.h>
     55   1.1     ragge 
     56  1.23       mrg #include <uvm/uvm_extern.h>
     57   1.1     ragge 
     58  1.17     ragge #ifdef __vax__
     59   1.1     ragge #include <machine/pte.h>
     60   1.1     ragge #include <machine/pcb.h>
     61  1.17     ragge #endif
     62  1.41        ad #include <sys/bus.h>
     63   1.1     ragge 
     64  1.17     ragge #include <dev/bi/bireg.h>
     65  1.17     ragge #include <dev/bi/bivar.h>
     66  1.17     ragge #include <dev/bi/kdbreg.h>
     67  1.17     ragge 
     68  1.17     ragge #include <dev/mscp/mscp.h>
     69  1.17     ragge #include <dev/mscp/mscpreg.h>
     70  1.17     ragge #include <dev/mscp/mscpvar.h>
     71   1.1     ragge 
     72   1.7       jtk #include "locators.h"
     73   1.7       jtk 
     74  1.17     ragge #define KDB_WL(adr, val) bus_space_write_4(sc->sc_iot, sc->sc_ioh, adr, val)
     75  1.17     ragge #define KDB_RL(adr) bus_space_read_4(sc->sc_iot, sc->sc_ioh, adr)
     76  1.17     ragge #define KDB_RS(adr) bus_space_read_2(sc->sc_iot, sc->sc_ioh, adr)
     77  1.17     ragge 
     78  1.12     ragge #define	    b_forw  b_hash.le_next
     79   1.1     ragge /*
     80   1.1     ragge  * Software status, per controller.
     81   1.1     ragge  */
     82   1.1     ragge struct	kdb_softc {
     83   1.1     ragge 	struct	device sc_dev;		/* Autoconfig info */
     84  1.20      matt 	struct	evcnt sc_intrcnt;	/* Interrupt counting */
     85  1.40  christos 	void *	sc_kdb;			/* Struct for kdb communication */
     86   1.1     ragge 	struct	mscp_softc *sc_softc;	/* MSCP info (per mscpvar.h) */
     87  1.17     ragge 	bus_dma_tag_t sc_dmat;
     88  1.17     ragge 	bus_dmamap_t sc_cmap;		/* Control structures */
     89  1.17     ragge 	bus_space_tag_t sc_iot;
     90  1.17     ragge 	bus_space_handle_t sc_ioh;
     91   1.1     ragge };
     92   1.1     ragge 
     93  1.36     perry int	kdbmatch(struct device *, struct cfdata *, void *);
     94  1.36     perry void	kdbattach(struct device *, struct device *, void *);
     95  1.36     perry void	kdbreset(int);
     96  1.36     perry void	kdbintr(void *);
     97  1.36     perry void	kdbctlrdone(struct device *);
     98  1.36     perry int	kdbprint(void *, const char *);
     99  1.36     perry void	kdbsaerror(struct device *, int);
    100  1.36     perry void	kdbgo(struct device *, struct mscp_xi *);
    101   1.1     ragge 
    102  1.28   thorpej CFATTACH_DECL(kdb, sizeof(struct kdb_softc),
    103  1.29   thorpej     kdbmatch, kdbattach, NULL, NULL);
    104   1.9   thorpej 
    105   1.1     ragge /*
    106   1.1     ragge  * More driver definitions, for generic MSCP code.
    107   1.1     ragge  */
    108   1.1     ragge struct	mscp_ctlr kdb_mscp_ctlr = {
    109   1.1     ragge 	kdbctlrdone,
    110   1.1     ragge 	kdbgo,
    111   1.1     ragge 	kdbsaerror,
    112   1.1     ragge };
    113   1.1     ragge 
    114   1.1     ragge int
    115   1.1     ragge kdbprint(aux, name)
    116   1.1     ragge 	void	*aux;
    117   1.2       cgd 	const char	*name;
    118   1.1     ragge {
    119   1.1     ragge 	if (name)
    120  1.30   thorpej 		aprint_normal("%s: mscpbus", name);
    121   1.1     ragge 	return UNCONF;
    122   1.1     ragge }
    123   1.1     ragge 
    124   1.1     ragge /*
    125   1.1     ragge  * Poke at a supposed KDB to see if it is there.
    126   1.1     ragge  */
    127   1.1     ragge int
    128  1.11     ragge kdbmatch(parent, cf, aux)
    129   1.1     ragge 	struct	device *parent;
    130  1.12     ragge 	struct	cfdata *cf;
    131  1.11     ragge 	void	*aux;
    132   1.1     ragge {
    133   1.1     ragge 	struct bi_attach_args *ba = aux;
    134   1.1     ragge 
    135  1.17     ragge 	if (bus_space_read_2(ba->ba_iot, ba->ba_ioh, BIREG_DTYPE) != BIDT_KDB50)
    136  1.12     ragge 		return 0;
    137   1.1     ragge 
    138  1.12     ragge 	if (cf->cf_loc[BICF_NODE] != BICF_NODE_DEFAULT &&
    139   1.7       jtk 	    cf->cf_loc[BICF_NODE] != ba->ba_nodenr)
    140  1.12     ragge 		return 0;
    141   1.1     ragge 
    142  1.12     ragge 	return 1;
    143   1.1     ragge }
    144   1.1     ragge 
    145   1.1     ragge void
    146   1.1     ragge kdbattach(parent, self, aux)
    147   1.1     ragge 	struct device *parent, *self;
    148   1.1     ragge 	void *aux;
    149   1.1     ragge {
    150   1.1     ragge 	struct	kdb_softc *sc = (void *)self;
    151   1.1     ragge 	struct	bi_attach_args *ba = aux;
    152   1.1     ragge 	struct	mscp_attach_args ma;
    153   1.1     ragge 	volatile int i = 10000;
    154  1.17     ragge 	int error, rseg;
    155  1.17     ragge 	bus_dma_segment_t seg;
    156   1.1     ragge 
    157   1.4  christos 	printf("\n");
    158  1.20      matt 	bi_intr_establish(ba->ba_icookie, ba->ba_ivec,
    159  1.20      matt 		kdbintr, sc, &sc->sc_intrcnt);
    160  1.21      matt 	evcnt_attach_dynamic(&sc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
    161  1.21      matt 		sc->sc_dev.dv_xname, "intr");
    162   1.1     ragge 
    163  1.17     ragge 	sc->sc_iot = ba->ba_iot;
    164  1.17     ragge 	sc->sc_ioh = ba->ba_ioh;
    165  1.17     ragge 	sc->sc_dmat = ba->ba_dmat;
    166  1.17     ragge 
    167  1.17     ragge 	/*
    168  1.17     ragge 	 * Map the communication area and command and
    169  1.17     ragge 	 * response packets into Unibus space.
    170  1.17     ragge 	 */
    171  1.17     ragge 	if ((error = bus_dmamem_alloc(sc->sc_dmat, sizeof(struct mscp_pack),
    172  1.32   thorpej 	    PAGE_SIZE, 0, &seg, 1, &rseg, BUS_DMA_NOWAIT)) != 0) {
    173  1.17     ragge 		printf("Alloc ctrl area %d\n", error);
    174  1.17     ragge 		return;
    175  1.17     ragge 	}
    176  1.17     ragge 	if ((error = bus_dmamem_map(sc->sc_dmat, &seg, rseg,
    177  1.17     ragge 	    sizeof(struct mscp_pack), &sc->sc_kdb,
    178  1.17     ragge 	    BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) != 0) {
    179  1.17     ragge 		printf("Map ctrl area %d\n", error);
    180  1.17     ragge err:		bus_dmamem_free(sc->sc_dmat, &seg, rseg);
    181  1.17     ragge 		return;
    182  1.17     ragge 	}
    183  1.17     ragge 	if ((error = bus_dmamap_create(sc->sc_dmat, sizeof(struct mscp_pack),
    184  1.17     ragge 	    1, sizeof(struct mscp_pack), 0, BUS_DMA_NOWAIT, &sc->sc_cmap))) {
    185  1.17     ragge 		printf("Create DMA map %d\n", error);
    186  1.17     ragge err2:		bus_dmamem_unmap(sc->sc_dmat, sc->sc_kdb,
    187  1.17     ragge 		    sizeof(struct mscp_pack));
    188  1.17     ragge 		goto err;
    189  1.17     ragge 	}
    190  1.37     perry 	if ((error = bus_dmamap_load(sc->sc_dmat, sc->sc_cmap,
    191  1.17     ragge 	    sc->sc_kdb, sizeof(struct mscp_pack), 0, BUS_DMA_NOWAIT))) {
    192  1.17     ragge 		printf("Load ctrl map %d\n", error);
    193  1.17     ragge 		bus_dmamap_destroy(sc->sc_dmat, sc->sc_cmap);
    194  1.17     ragge 		goto err2;
    195  1.17     ragge 	}
    196  1.25   thorpej 	memset(sc->sc_kdb, 0, sizeof(struct mscp_pack));
    197   1.1     ragge 
    198   1.1     ragge 	ma.ma_mc = &kdb_mscp_ctlr;
    199   1.1     ragge 	ma.ma_type = MSCPBUS_DISK|MSCPBUS_KDB;
    200  1.17     ragge 	ma.ma_uda = (struct mscp_pack *)sc->sc_kdb;
    201   1.1     ragge 	ma.ma_softc = &sc->sc_softc;
    202  1.17     ragge 	ma.ma_iot = sc->sc_iot;
    203  1.17     ragge 	ma.ma_iph = sc->sc_ioh + KDB_IP;
    204  1.17     ragge 	ma.ma_sah = sc->sc_ioh + KDB_SA;
    205  1.17     ragge 	ma.ma_swh = sc->sc_ioh + KDB_SW;
    206  1.17     ragge 	ma.ma_dmat = sc->sc_dmat;
    207  1.17     ragge 	ma.ma_dmam = sc->sc_cmap;
    208  1.17     ragge 	ma.ma_ivec = ba->ba_ivec;
    209   1.1     ragge 	ma.ma_ctlrnr = ba->ba_nodenr;
    210  1.17     ragge 	ma.ma_adapnr = ba->ba_busnr;
    211  1.17     ragge 
    212  1.17     ragge 	KDB_WL(BIREG_VAXBICSR, KDB_RL(BIREG_VAXBICSR) | BICSR_NRST);
    213   1.1     ragge 	while (i--) /* Need delay??? */
    214   1.1     ragge 		;
    215  1.17     ragge 	KDB_WL(BIREG_INTRDES, ba->ba_intcpu); /* Interrupt on CPU # */
    216  1.17     ragge 	KDB_WL(BIREG_BCICSR, KDB_RL(BIREG_BCICSR) |
    217  1.17     ragge 	    BCI_STOPEN | BCI_IDENTEN | BCI_UINTEN | BCI_INTEN);
    218  1.17     ragge 	KDB_WL(BIREG_UINTRCSR, ba->ba_ivec);
    219   1.1     ragge 	config_found(&sc->sc_dev, &ma, kdbprint);
    220   1.1     ragge }
    221   1.1     ragge 
    222  1.17     ragge void
    223  1.17     ragge kdbgo(usc, mxi)
    224   1.1     ragge 	struct device *usc;
    225  1.17     ragge 	struct mscp_xi *mxi;
    226   1.1     ragge {
    227   1.1     ragge 	struct kdb_softc *sc = (void *)usc;
    228  1.17     ragge 	struct buf *bp = mxi->mxi_bp;
    229  1.17     ragge 	struct mscp *mp = mxi->mxi_mp;
    230  1.18   thorpej 	u_int32_t addr = (u_int32_t)bp->b_data;
    231  1.17     ragge 	u_int32_t mapaddr;
    232  1.17     ragge 	int err;
    233   1.1     ragge 
    234  1.12     ragge 	/*
    235  1.17     ragge 	 * The KDB50 wants to read VAX Page tables directly, therefore
    236  1.17     ragge 	 * the result from bus_dmamap_load() is uninteresting. (But it
    237  1.17     ragge 	 * should never fail!).
    238  1.17     ragge 	 *
    239  1.17     ragge 	 * On VAX, point to the corresponding page tables. (user/sys)
    240  1.37     perry 	 * On other systems, do something else...
    241  1.17     ragge 	 */
    242  1.18   thorpej 	err = bus_dmamap_load(sc->sc_dmat, mxi->mxi_dmam, bp->b_data,
    243  1.24     ragge 	    bp->b_bcount, (bp->b_flags & B_PHYS ? bp->b_proc : 0),
    244  1.24     ragge 	    BUS_DMA_NOWAIT);
    245  1.17     ragge 
    246  1.17     ragge 	if (err) /* Shouldn't happen */
    247  1.17     ragge 		panic("kdbgo: bus_dmamap_load: error %d", err);
    248  1.17     ragge 
    249  1.17     ragge #ifdef __vax__
    250  1.17     ragge 	/*
    251  1.12     ragge 	 * Get a pointer to the pte pointing out the first virtual address.
    252  1.12     ragge 	 * Use different ways in kernel and user space.
    253  1.12     ragge 	 */
    254  1.12     ragge 	if ((bp->b_flags & B_PHYS) == 0) {
    255  1.17     ragge 		mapaddr = ((u_int32_t)kvtopte(addr)) & ~KERNBASE;
    256  1.12     ragge 	} else {
    257  1.17     ragge 
    258  1.33  christos /* XXX: This code does not belong here! */
    259  1.33  christos #define	UVTOPTE(addr, pmap) (((addr) < 0x40000000) ? \
    260  1.34        he     &(*pmap)->pm_p0br[PG_PFNUM(addr)] : &(*pmap)->pm_p1br[PG_PFNUM(addr)])
    261  1.33  christos 
    262  1.33  christos 		pmap_t *pmap = &bp->b_proc->p_vmspace->vm_map.pmap;
    263  1.34        he 		u_int32_t eaddr = addr + (bp->b_bcount - 1);
    264  1.33  christos 		u_int32_t emapaddr = (u_int32_t)UVTOPTE(eaddr, pmap);
    265  1.31   thorpej 
    266  1.33  christos 		mapaddr = (u_int32_t)UVTOPTE(addr, pmap);
    267  1.33  christos 		if (trunc_page(mapaddr) != trunc_page(emapaddr)) {
    268  1.17     ragge 			mp->mscp_seq.seq_bytecount =
    269  1.17     ragge 			    (((round_page(mapaddr) - mapaddr)/4) * 512);
    270  1.17     ragge 		}
    271  1.17     ragge 		mapaddr = kvtophys(mapaddr);
    272  1.12     ragge 	}
    273  1.17     ragge #else
    274  1.17     ragge #error Must write code to handle KDB50 on non-vax.
    275  1.17     ragge #endif
    276  1.12     ragge 
    277  1.17     ragge 	mp->mscp_seq.seq_mapbase = mapaddr;
    278  1.17     ragge 	mxi->mxi_dmam->dm_segs[0].ds_addr = (addr & 511) | KDB_MAP;
    279  1.17     ragge 	mscp_dgo(sc->sc_softc, mxi);
    280   1.1     ragge }
    281   1.1     ragge 
    282   1.1     ragge void
    283   1.1     ragge kdbsaerror(usc, doreset)
    284   1.1     ragge 	struct device *usc;
    285   1.1     ragge 	int doreset;
    286   1.1     ragge {
    287   1.1     ragge 	struct	kdb_softc *sc = (void *)usc;
    288   1.1     ragge 
    289  1.17     ragge 	if ((KDB_RS(KDB_SA) & MP_ERR) == 0)
    290   1.1     ragge 		return;
    291  1.17     ragge 	printf("%s: controller error, sa=0x%x\n", sc->sc_dev.dv_xname,
    292  1.17     ragge 	    KDB_RS(KDB_SA));
    293   1.1     ragge 	/* What to do now??? */
    294   1.1     ragge }
    295   1.1     ragge 
    296   1.1     ragge /*
    297   1.1     ragge  * Interrupt routine.  Depending on the state of the controller,
    298   1.1     ragge  * continue initialisation, or acknowledge command and response
    299   1.1     ragge  * interrupts, and process responses.
    300   1.1     ragge  */
    301   1.1     ragge void
    302  1.17     ragge kdbintr(void *arg)
    303   1.1     ragge {
    304  1.17     ragge 	struct kdb_softc *sc = arg;
    305   1.1     ragge 
    306  1.17     ragge 	if (KDB_RS(KDB_SA) & MP_ERR) {	/* ctlr fatal error */
    307   1.1     ragge 		kdbsaerror(&sc->sc_dev, 1);
    308   1.1     ragge 		return;
    309   1.1     ragge 	}
    310  1.39        ad 	KERNEL_LOCK(1, NULL);
    311   1.1     ragge 	mscp_intr(sc->sc_softc);
    312  1.39        ad 	KERNEL_UNLOCK_ONE(NULL);
    313   1.1     ragge }
    314   1.1     ragge 
    315   1.1     ragge #ifdef notyet
    316   1.1     ragge /*
    317   1.1     ragge  * The KDB50 has been reset.  Reinitialise the controller
    318   1.1     ragge  * and requeue outstanding I/O.
    319   1.1     ragge  */
    320   1.1     ragge void
    321   1.1     ragge kdbreset(ctlr)
    322   1.1     ragge 	int ctlr;
    323   1.1     ragge {
    324  1.17     ragge 	struct kdb_softc *sc;
    325   1.1     ragge 
    326   1.1     ragge 	sc = kdb_cd.cd_devs[ctlr];
    327   1.4  christos 	printf(" kdb%d", ctlr);
    328   1.1     ragge 
    329   1.1     ragge 
    330   1.1     ragge 	/* reset queues and requeue pending transfers */
    331   1.1     ragge 	mscp_requeue(sc->sc_softc);
    332   1.1     ragge 
    333   1.1     ragge 	/*
    334   1.1     ragge 	 * If it fails to initialise we will notice later and
    335   1.1     ragge 	 * try again (and again...).  Do not call kdbstart()
    336   1.1     ragge 	 * here; it will be done after the controller finishes
    337   1.1     ragge 	 * initialisation.
    338   1.1     ragge 	 */
    339   1.1     ragge 	if (kdbinit(sc))
    340   1.4  christos 		printf(" (hung)");
    341   1.1     ragge }
    342   1.1     ragge #endif
    343   1.1     ragge 
    344   1.1     ragge void
    345  1.17     ragge kdbctlrdone(usc)
    346   1.1     ragge 	struct device *usc;
    347   1.1     ragge {
    348   1.1     ragge }
    349