Home | History | Annotate | Line # | Download | only in eisa
cac_eisa.c revision 1.24
      1 /*	$NetBSD: cac_eisa.c,v 1.24 2016/07/14 10:19:06 msaitoh Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Andrew Doran.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  * POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 /*
     33  * Copyright (c) 2000 Jonathan Lemon
     34  * Copyright (c) 1999 by Matthew N. Dodd <winter (at) jurai.net>
     35  * All Rights Reserved.
     36  *
     37  * Redistribution and use in source and binary forms, with or without
     38  * modification, are permitted provided that the following conditions
     39  * are met:
     40  * 1. Redistributions of source code must retain the above copyright
     41  *    notice, this list of conditions, and the following disclaimer,
     42  *    without modification, immediately at the beginning of the file.
     43  * 2. The name of the author may not be used to endorse or promote products
     44  *    derived from this software without specific prior written permission.
     45  *
     46  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     47  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     48  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     49  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
     50  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     51  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     52  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     53  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     54  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     55  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     56  * SUCH DAMAGE.
     57  */
     58 
     59 /*
     60  * EISA front-end for cac(4) driver.
     61  */
     62 
     63 #include <sys/cdefs.h>
     64 __KERNEL_RCSID(0, "$NetBSD: cac_eisa.c,v 1.24 2016/07/14 10:19:06 msaitoh Exp $");
     65 
     66 #include <sys/param.h>
     67 #include <sys/systm.h>
     68 #include <sys/device.h>
     69 
     70 #include <sys/bus.h>
     71 #include <sys/intr.h>
     72 
     73 #include <dev/eisa/eisavar.h>
     74 #include <dev/eisa/eisadevs.h>
     75 
     76 #include <dev/ic/cacreg.h>
     77 #include <dev/ic/cacvar.h>
     78 
     79 #define CAC_EISA_SLOT_OFFSET		0x0c88
     80 #define CAC_EISA_IOSIZE			0x0017
     81 #define CAC_EISA_IOCONF			0x38
     82 
     83 static void	cac_eisa_attach(device_t, device_t, void *);
     84 static int	cac_eisa_match(device_t, cfdata_t, void *);
     85 
     86 static struct	cac_ccb *cac_eisa_l0_completed(struct cac_softc *);
     87 static int	cac_eisa_l0_fifo_full(struct cac_softc *);
     88 static void	cac_eisa_l0_intr_enable(struct cac_softc *, int);
     89 static int	cac_eisa_l0_intr_pending(struct cac_softc *);
     90 static void	cac_eisa_l0_submit(struct cac_softc *, struct cac_ccb *);
     91 
     92 CFATTACH_DECL_NEW(cac_eisa, sizeof(struct cac_softc),
     93     cac_eisa_match, cac_eisa_attach, NULL, NULL);
     94 
     95 static const struct cac_linkage cac_eisa_l0 = {
     96 	cac_eisa_l0_completed,
     97 	cac_eisa_l0_fifo_full,
     98 	cac_eisa_l0_intr_enable,
     99 	cac_eisa_l0_intr_pending,
    100 	cac_eisa_l0_submit
    101 };
    102 
    103 static struct cac_eisa_type {
    104 	const char	*ct_prodstr;
    105 	const char	*ct_typestr;
    106 	const struct	cac_linkage *ct_linkage;
    107 } cac_eisa_type[] = {
    108 	{ "CPQ4001",	"IDA",		&cac_eisa_l0 },
    109 	{ "CPQ4002",	"IDA-2",	&cac_eisa_l0 },
    110 	{ "CPQ4010",	"IEAS",		&cac_eisa_l0 },
    111 	{ "CPQ4020",	"SMART",	&cac_eisa_l0 },
    112 	{ "CPQ4030",	"SMART-2/E",	&cac_l0 },
    113 };
    114 
    115 static int
    116 cac_eisa_match(device_t parent, cfdata_t match, void *aux)
    117 {
    118 	struct eisa_attach_args *ea;
    119 	int i;
    120 
    121 	ea = aux;
    122 
    123 	for (i = 0; i < sizeof(cac_eisa_type) / sizeof(cac_eisa_type[0]); i++)
    124 		if (strcmp(ea->ea_idstring, cac_eisa_type[i].ct_prodstr) == 0)
    125 			return (1);
    126 
    127 	return (0);
    128 }
    129 
    130 static void
    131 cac_eisa_attach(device_t parent, device_t self, void *aux)
    132 {
    133 	struct eisa_attach_args *ea;
    134 	bus_space_handle_t ioh;
    135 	eisa_chipset_tag_t ec;
    136 	eisa_intr_handle_t ih;
    137 	struct cac_softc *sc;
    138 	bus_space_tag_t iot;
    139 	const char *intrstr;
    140 	int irq, i;
    141 	char intrbuf[EISA_INTRSTR_LEN];
    142 
    143 	ea = aux;
    144 	sc = device_private(self);
    145 	iot = ea->ea_iot;
    146 	ec = ea->ea_ec;
    147 
    148 	if (bus_space_map(iot, EISA_SLOT_ADDR(ea->ea_slot) +
    149 	    CAC_EISA_SLOT_OFFSET, CAC_EISA_IOSIZE, 0, &ioh)) {
    150 		aprint_error(": can't map i/o space\n");
    151 		return;
    152 	}
    153 
    154 	sc->sc_dev = self;
    155 	sc->sc_iot = iot;
    156 	sc->sc_ioh = ioh;
    157 	sc->sc_dmat = ea->ea_dmat;
    158 
    159 	/*
    160 	 * Map and establish the interrupt.
    161 	 */
    162 	switch (bus_space_read_1(iot, ioh, CAC_EISA_IOCONF) & 0xf0) {
    163 	case 0x20:
    164 		irq = 10;
    165 		break;
    166 	case 0x10:
    167 		irq = 11;
    168 		break;
    169 	case 0x40:
    170 		irq = 14;
    171 		break;
    172 	case 0x80:
    173 		irq = 15;
    174 		break;
    175 	default:
    176 		aprint_error(": controller on invalid IRQ\n");
    177 		return;
    178 	}
    179 
    180 	if (eisa_intr_map(ec, irq, &ih)) {
    181 		aprint_error(": can't map interrupt (%d)\n", irq);
    182 		return;
    183 	}
    184 
    185 	intrstr = eisa_intr_string(ec, ih, intrbuf, sizeof(intrbuf));
    186 	if ((sc->sc_ih = eisa_intr_establish(ec, ih, IST_LEVEL, IPL_BIO,
    187 	    cac_intr, sc)) == NULL) {
    188 		aprint_error(": can't establish interrupt");
    189 		if (intrstr != NULL)
    190 			aprint_normal(" at %s", intrstr);
    191 		aprint_normal("\n");
    192 		return;
    193 	}
    194 
    195 	/*
    196 	 * Print board type and attach to the bus-independent code.
    197 	 */
    198 	for (i = 0; i < sizeof(cac_eisa_type) / sizeof(cac_eisa_type[0]); i++)
    199 		if (strcmp(ea->ea_idstring, cac_eisa_type[i].ct_prodstr) == 0)
    200 			break;
    201 
    202 	aprint_normal(": Compaq %s\n", cac_eisa_type[i].ct_typestr);
    203 	memcpy(&sc->sc_cl, cac_eisa_type[i].ct_linkage, sizeof(sc->sc_cl));
    204 	cac_init(sc, intrstr, 0);
    205 }
    206 
    207 /*
    208  * Linkage specific to EISA boards.
    209  */
    210 
    211 static int
    212 cac_eisa_l0_fifo_full(struct cac_softc *sc)
    213 {
    214 
    215 	return ((cac_inb(sc, CAC_EISAREG_SYSTEM_DOORBELL) &
    216 	    CAC_EISA_CHANNEL_CLEAR) == 0);
    217 }
    218 
    219 static void
    220 cac_eisa_l0_submit(struct cac_softc *sc, struct cac_ccb *ccb)
    221 {
    222 	u_int16_t size;
    223 
    224 	/*
    225 	 * On these boards, `ccb_hdr.size' is actually for control flags.
    226 	 * Set it to zero and pass the value by means of an I/O port.
    227 	 */
    228 	size = le16toh(ccb->ccb_hdr.size) << 2;
    229 	ccb->ccb_hdr.size = 0;
    230 
    231 	bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
    232 	    (char *)ccb - (char *)sc->sc_ccbs,
    233 	    sizeof(struct cac_ccb), BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
    234 
    235 	cac_outb(sc, CAC_EISAREG_SYSTEM_DOORBELL, CAC_EISA_CHANNEL_CLEAR);
    236 	cac_outl(sc, CAC_EISAREG_LIST_ADDR, ccb->ccb_paddr);
    237 	cac_outw(sc, CAC_EISAREG_LIST_LEN, size);
    238 	cac_outb(sc, CAC_EISAREG_LOCAL_DOORBELL, CAC_EISA_CHANNEL_BUSY);
    239 }
    240 
    241 static struct cac_ccb *
    242 cac_eisa_l0_completed(struct cac_softc *sc)
    243 {
    244 	struct cac_ccb *ccb;
    245 	u_int32_t off;
    246 	u_int8_t status;
    247 
    248 	if ((cac_inb(sc, CAC_EISAREG_SYSTEM_DOORBELL) &
    249 	    CAC_EISA_CHANNEL_BUSY) == 0)
    250 		return (NULL);
    251 
    252 	cac_outb(sc, CAC_EISAREG_SYSTEM_DOORBELL, CAC_EISA_CHANNEL_BUSY);
    253 	off = cac_inl(sc, CAC_EISAREG_COMPLETE_ADDR);
    254 	status = cac_inb(sc, CAC_EISAREG_LIST_STATUS);
    255 	cac_outb(sc, CAC_EISAREG_LOCAL_DOORBELL, CAC_EISA_CHANNEL_CLEAR);
    256 
    257 	if (off == 0)
    258 		return (NULL);
    259 
    260 	off = (off & ~3) - sc->sc_ccbs_paddr;
    261 	ccb = (struct cac_ccb *)((char *)sc->sc_ccbs + off);
    262 
    263 	bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap, off, sizeof(struct cac_ccb),
    264 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
    265 
    266 	ccb->ccb_req.error = status;
    267 
    268 	if ((off & 3) != 0 && ccb->ccb_req.error == 0)
    269 		ccb->ccb_req.error = CAC_RET_CMD_REJECTED;
    270 
    271 	return (ccb);
    272 }
    273 
    274 static int
    275 cac_eisa_l0_intr_pending(struct cac_softc *sc)
    276 {
    277 
    278 	return (cac_inb(sc, CAC_EISAREG_SYSTEM_DOORBELL) &
    279 	    CAC_EISA_CHANNEL_BUSY);
    280 }
    281 
    282 static void
    283 cac_eisa_l0_intr_enable(struct cac_softc *sc, int state)
    284 {
    285 
    286 	if (state) {
    287 		cac_outb(sc, CAC_EISAREG_SYSTEM_DOORBELL,
    288 		    ~CAC_EISA_CHANNEL_CLEAR);
    289 		cac_outb(sc, CAC_EISAREG_LOCAL_DOORBELL,
    290 		    CAC_EISA_CHANNEL_BUSY);
    291 		cac_outb(sc, CAC_EISAREG_INTR_MASK, CAC_INTR_ENABLE);
    292 		cac_outb(sc, CAC_EISAREG_SYSTEM_MASK, CAC_INTR_ENABLE);
    293 	} else
    294 		cac_outb(sc, CAC_EISAREG_SYSTEM_MASK, CAC_INTR_DISABLE);
    295 }
    296