adv_cardbus.c revision 1.9
11.9Smycroft/*	$NetBSD: adv_cardbus.c,v 1.9 2004/08/02 19:14:28 mycroft Exp $	*/
21.1Sthorpej
31.1Sthorpej/*-
41.1Sthorpej * Copyright (c) 2000 The NetBSD Foundation, Inc.
51.1Sthorpej * All rights reserved.
61.1Sthorpej *
71.1Sthorpej * This code is derived from software contributed to The NetBSD Foundation
81.1Sthorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
91.1Sthorpej * NASA Ames Research Center.
101.1Sthorpej *
111.1Sthorpej * Redistribution and use in source and binary forms, with or without
121.1Sthorpej * modification, are permitted provided that the following conditions
131.1Sthorpej * are met:
141.1Sthorpej * 1. Redistributions of source code must retain the above copyright
151.1Sthorpej *    notice, this list of conditions and the following disclaimer.
161.1Sthorpej * 2. Redistributions in binary form must reproduce the above copyright
171.1Sthorpej *    notice, this list of conditions and the following disclaimer in the
181.1Sthorpej *    documentation and/or other materials provided with the distribution.
191.1Sthorpej * 3. All advertising materials mentioning features or use of this software
201.1Sthorpej *    must display the following acknowledgement:
211.1Sthorpej *	This product includes software developed by the NetBSD
221.1Sthorpej *	Foundation, Inc. and its contributors.
231.1Sthorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
241.1Sthorpej *    contributors may be used to endorse or promote products derived
251.1Sthorpej *    from this software without specific prior written permission.
261.1Sthorpej *
271.1Sthorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
281.1Sthorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
291.1Sthorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
301.1Sthorpej * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
311.1Sthorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
321.1Sthorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
331.1Sthorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
341.1Sthorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
351.1Sthorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
361.1Sthorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
371.1Sthorpej * POSSIBILITY OF SUCH DAMAGE.
381.1Sthorpej */
391.1Sthorpej
401.1Sthorpej/*
411.1Sthorpej * this file was brought from ahc_cardbus.c and adv_pci.c
421.1Sthorpej * and modified by YAMAMOTO Takashi.
431.1Sthorpej */
441.5Slukem
451.5Slukem#include <sys/cdefs.h>
461.9Smycroft__KERNEL_RCSID(0, "$NetBSD: adv_cardbus.c,v 1.9 2004/08/02 19:14:28 mycroft Exp $");
471.1Sthorpej
481.1Sthorpej#include <sys/param.h>
491.1Sthorpej#include <sys/systm.h>
501.1Sthorpej#include <sys/malloc.h>
511.1Sthorpej#include <sys/kernel.h>
521.1Sthorpej#include <sys/queue.h>
531.1Sthorpej#include <sys/device.h>
541.1Sthorpej
551.1Sthorpej#include <machine/bus.h>
561.1Sthorpej#include <machine/intr.h>
571.1Sthorpej
581.1Sthorpej#include <dev/scsipi/scsi_all.h>
591.1Sthorpej#include <dev/scsipi/scsipi_all.h>
601.1Sthorpej#include <dev/scsipi/scsiconf.h>
611.1Sthorpej
621.1Sthorpej#include <dev/pci/pcireg.h>
631.1Sthorpej#include <dev/pci/pcidevs.h>
641.1Sthorpej
651.1Sthorpej#include <dev/cardbus/cardbusvar.h>
661.9Smycroft#include <dev/pci/pcidevs.h>
671.1Sthorpej
681.1Sthorpej#include <dev/ic/advlib.h>
691.1Sthorpej#include <dev/ic/adv.h>
701.1Sthorpej
711.1Sthorpej#define ADV_CARDBUS_IOBA CARDBUS_BASE0_REG
721.1Sthorpej#define ADV_CARDBUS_MMBA CARDBUS_BASE1_REG
731.1Sthorpej
741.3Syamt#define ADV_CARDBUS_DEBUG
751.3Syamt#define ADV_CARDBUS_ALLOW_MEMIO
761.3Syamt
771.1Sthorpej#define DEVNAME(sc) sc->sc_dev.dv_xname
781.1Sthorpej
791.1Sthorpejstruct adv_cardbus_softc {
801.1Sthorpej	struct asc_softc sc_adv;	/* real ADV */
811.1Sthorpej
821.1Sthorpej	/* CardBus-specific goo. */
831.1Sthorpej	cardbus_devfunc_t sc_ct;	/* our CardBus devfuncs */
841.1Sthorpej	int	sc_intrline;		/* our interrupt line */
851.1Sthorpej	cardbustag_t sc_tag;
861.1Sthorpej
871.1Sthorpej	int	sc_cbenable;		/* what CardBus access type to enable */
881.1Sthorpej	int	sc_csr;			/* CSR bits */
891.1Sthorpej	bus_size_t sc_size;
901.1Sthorpej};
911.1Sthorpej
921.1Sthorpejint	adv_cardbus_match __P((struct device *, struct cfdata *, void *));
931.1Sthorpejvoid	adv_cardbus_attach __P((struct device *, struct device *, void *));
941.1Sthorpejint	adv_cardbus_detach __P((struct device *, int));
951.1Sthorpej
961.7SthorpejCFATTACH_DECL(adv_cardbus, sizeof(struct adv_cardbus_softc),
971.8Sthorpej    adv_cardbus_match, adv_cardbus_attach, adv_cardbus_detach, NULL);
981.1Sthorpej
991.1Sthorpejint
1001.1Sthorpejadv_cardbus_match(parent, match, aux)
1011.1Sthorpej	struct device *parent;
1021.1Sthorpej	struct cfdata *match;
1031.1Sthorpej	void *aux;
1041.1Sthorpej{
1051.1Sthorpej	struct cardbus_attach_args *ca = aux;
1061.1Sthorpej
1071.9Smycroft	if (CARDBUS_VENDOR(ca->ca_id) == PCI_VENDOR_ADVSYS &&
1081.9Smycroft	    CARDBUS_PRODUCT(ca->ca_id) == PCI_PRODUCT_ADVSYS_ULTRA)
1091.1Sthorpej		return (1);
1101.1Sthorpej
1111.1Sthorpej	return (0);
1121.1Sthorpej}
1131.1Sthorpej
1141.1Sthorpejvoid
1151.1Sthorpejadv_cardbus_attach(parent, self, aux)
1161.1Sthorpej	struct device *parent, *self;
1171.1Sthorpej	void *aux;
1181.1Sthorpej{
1191.1Sthorpej	struct cardbus_attach_args *ca = aux;
1201.1Sthorpej	struct adv_cardbus_softc *csc = (void *) self;
1211.1Sthorpej	struct asc_softc *sc = &csc->sc_adv;
1221.1Sthorpej	cardbus_devfunc_t ct = ca->ca_ct;
1231.1Sthorpej	cardbus_chipset_tag_t cc = ct->ct_cc;
1241.1Sthorpej	cardbus_function_tag_t cf = ct->ct_cf;
1251.1Sthorpej	bus_space_tag_t iot;
1261.1Sthorpej	bus_space_handle_t ioh;
1271.1Sthorpej	pcireg_t reg;
1281.1Sthorpej	u_int8_t latency = 0x20;
1291.1Sthorpej
1301.1Sthorpej	sc->sc_flags = 0;
1311.1Sthorpej
1321.1Sthorpej	if (PCI_VENDOR(ca->ca_id) == PCI_VENDOR_ADVSYS) {
1331.1Sthorpej		switch (PCI_PRODUCT(ca->ca_id)) {
1341.1Sthorpej		case PCI_PRODUCT_ADVSYS_1200A:
1351.1Sthorpej			printf(": AdvanSys ASC1200A SCSI adapter\n");
1361.1Sthorpej			latency = 0;
1371.1Sthorpej			break;
1381.1Sthorpej
1391.1Sthorpej		case PCI_PRODUCT_ADVSYS_1200B:
1401.1Sthorpej			printf(": AdvanSys ASC1200B SCSI adapter\n");
1411.1Sthorpej			latency = 0;
1421.1Sthorpej			break;
1431.1Sthorpej
1441.1Sthorpej		case PCI_PRODUCT_ADVSYS_ULTRA:
1451.1Sthorpej			switch (PCI_REVISION(ca->ca_class)) {
1461.1Sthorpej			case ASC_PCI_REVISION_3050:
1471.1Sthorpej				printf(": AdvanSys ABP-9xxUA SCSI adapter\n");
1481.1Sthorpej				break;
1491.1Sthorpej
1501.1Sthorpej			case ASC_PCI_REVISION_3150:
1511.1Sthorpej				printf(": AdvanSys ABP-9xxU SCSI adapter\n");
1521.1Sthorpej				break;
1531.1Sthorpej			}
1541.1Sthorpej			break;
1551.1Sthorpej
1561.1Sthorpej		default:
1571.1Sthorpej			printf(": unknown model!\n");
1581.1Sthorpej			return;
1591.1Sthorpej		}
1601.1Sthorpej	}
1611.1Sthorpej
1621.1Sthorpej	csc->sc_ct = ct;
1631.1Sthorpej	csc->sc_tag = ca->ca_tag;
1641.1Sthorpej	csc->sc_intrline = ca->ca_intrline;
1651.1Sthorpej	csc->sc_cbenable = 0;
1661.1Sthorpej
1671.1Sthorpej	/*
1681.1Sthorpej	 * Map the device.
1691.1Sthorpej	 */
1701.1Sthorpej	csc->sc_csr = PCI_COMMAND_MASTER_ENABLE;
1711.1Sthorpej
1721.3Syamt#ifdef ADV_CARDBUS_ALLOW_MEMIO
1731.1Sthorpej	if (Cardbus_mapreg_map(csc->sc_ct, ADV_CARDBUS_MMBA,
1741.1Sthorpej	    PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_32BIT, 0,
1751.1Sthorpej	    &iot, &ioh, NULL, &csc->sc_size) == 0) {
1761.3Syamt#ifdef ADV_CARDBUS_DEBUG
1771.3Syamt		printf("%s: memio enabled\n", DEVNAME(sc));
1781.3Syamt#endif
1791.1Sthorpej		csc->sc_cbenable = CARDBUS_MEM_ENABLE;
1801.1Sthorpej		csc->sc_csr |= PCI_COMMAND_MEM_ENABLE;
1811.1Sthorpej	} else
1821.1Sthorpej#endif
1831.1Sthorpej	if (Cardbus_mapreg_map(csc->sc_ct, ADV_CARDBUS_IOBA,
1841.1Sthorpej	    PCI_MAPREG_TYPE_IO, 0, &iot, &ioh, NULL, &csc->sc_size) == 0) {
1851.3Syamt#ifdef ADV_CARDBUS_DEBUG
1861.1Sthorpej		printf("%s: io enabled\n", DEVNAME(sc));
1871.3Syamt#endif
1881.1Sthorpej		csc->sc_cbenable = CARDBUS_IO_ENABLE;
1891.1Sthorpej		csc->sc_csr |= PCI_COMMAND_IO_ENABLE;
1901.1Sthorpej	} else {
1911.1Sthorpej		printf("%s: unable to map device registers\n",
1921.1Sthorpej		    DEVNAME(sc));
1931.1Sthorpej		return;
1941.1Sthorpej	}
1951.3Syamt
1961.1Sthorpej	/* Make sure the right access type is on the CardBus bridge. */
1971.1Sthorpej	(*ct->ct_cf->cardbus_ctrl)(cc, csc->sc_cbenable);
1981.1Sthorpej	(*ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_BM_ENABLE);
1991.1Sthorpej
2001.1Sthorpej	/* Enable the appropriate bits in the PCI CSR. */
2011.1Sthorpej	reg = cardbus_conf_read(cc, cf, ca->ca_tag, PCI_COMMAND_STATUS_REG);
2021.1Sthorpej	reg &= ~(PCI_COMMAND_IO_ENABLE|PCI_COMMAND_MEM_ENABLE);
2031.1Sthorpej	reg |= csc->sc_csr;
2041.1Sthorpej	cardbus_conf_write(cc, cf, ca->ca_tag, PCI_COMMAND_STATUS_REG, reg);
2051.1Sthorpej
2061.1Sthorpej	/*
2071.1Sthorpej	 * Make sure the latency timer is set to some reasonable
2081.1Sthorpej	 * value.
2091.1Sthorpej	 */
2101.1Sthorpej	reg = cardbus_conf_read(cc, cf, ca->ca_tag, PCI_BHLC_REG);
2111.1Sthorpej	if (PCI_LATTIMER(reg) < latency) {
2121.1Sthorpej		reg &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
2131.1Sthorpej		reg |= (latency << PCI_LATTIMER_SHIFT);
2141.1Sthorpej		cardbus_conf_write(cc, cf, ca->ca_tag, PCI_BHLC_REG, reg);
2151.1Sthorpej	}
2161.1Sthorpej
2171.1Sthorpej	ASC_SET_CHIP_CONTROL(iot, ioh, ASC_CC_HALT);
2181.1Sthorpej	ASC_SET_CHIP_STATUS(iot, ioh, 0);
2191.1Sthorpej
2201.1Sthorpej	sc->sc_iot = iot;
2211.1Sthorpej	sc->sc_ioh = ioh;
2221.1Sthorpej	sc->sc_dmat = ca->ca_dmat;
2231.1Sthorpej	sc->pci_device_id = ca->ca_id;
2241.1Sthorpej	sc->bus_type = ASC_IS_PCI;
2251.1Sthorpej	sc->chip_version = ASC_GET_CHIP_VER_NO(iot, ioh);
2261.3Syamt
2271.1Sthorpej	/*
2281.2Swiz	 * Initialize the board
2291.1Sthorpej	 */
2301.1Sthorpej	if (adv_init(sc)) {
2311.1Sthorpej		printf("adv_init failed\n");
2321.1Sthorpej		return;
2331.1Sthorpej	}
2341.1Sthorpej
2351.1Sthorpej	/*
2361.1Sthorpej	 * Establish the interrupt.
2371.1Sthorpej	 */
2381.1Sthorpej	sc->sc_ih = cardbus_intr_establish(cc, cf, ca->ca_intrline, IPL_BIO,
2391.1Sthorpej	    adv_intr, sc);
2401.1Sthorpej	if (sc->sc_ih == NULL) {
2411.1Sthorpej		printf("%s: unable to establish interrupt at %d\n",
2421.1Sthorpej		    DEVNAME(sc), ca->ca_intrline);
2431.1Sthorpej		return;
2441.1Sthorpej	}
2451.1Sthorpej	printf("%s: interrupting at %d\n", DEVNAME(sc), ca->ca_intrline);
2461.1Sthorpej
2471.1Sthorpej	/*
2481.1Sthorpej	 * Attach.
2491.1Sthorpej	 */
2501.1Sthorpej	adv_attach(sc);
2511.1Sthorpej}
2521.1Sthorpej
2531.1Sthorpejint
2541.1Sthorpejadv_cardbus_detach(self, flags)
2551.1Sthorpej	struct device *self;
2561.1Sthorpej	int flags;
2571.1Sthorpej{
2581.1Sthorpej	struct adv_cardbus_softc *csc = (void*)self;
2591.1Sthorpej	struct asc_softc *sc = &csc->sc_adv;
2601.1Sthorpej
2611.1Sthorpej	int rv;
2621.1Sthorpej
2631.1Sthorpej	rv = adv_detach(sc, flags);
2641.1Sthorpej	if (rv)
2651.1Sthorpej		return rv;
2661.1Sthorpej
2671.1Sthorpej	if (sc->sc_ih) {
2681.1Sthorpej		cardbus_intr_disestablish(csc->sc_ct->ct_cc,
2691.1Sthorpej		    csc->sc_ct->ct_cf, sc->sc_ih);
2701.1Sthorpej		sc->sc_ih = 0;
2711.1Sthorpej	}
2721.1Sthorpej
2731.1Sthorpej	if (csc->sc_cbenable) {
2741.3Syamt#ifdef ADV_CARDBUS_ALLOW_MEMIO
2751.1Sthorpej		if (csc->sc_cbenable == CARDBUS_MEM_ENABLE) {
2761.1Sthorpej			Cardbus_mapreg_unmap(csc->sc_ct, ADV_CARDBUS_MMBA,
2771.1Sthorpej			    sc->sc_iot, sc->sc_ioh, csc->sc_size);
2781.1Sthorpej		} else {
2791.1Sthorpej#endif
2801.1Sthorpej			Cardbus_mapreg_unmap(csc->sc_ct, ADV_CARDBUS_IOBA,
2811.1Sthorpej			    sc->sc_iot, sc->sc_ioh, csc->sc_size);
2821.3Syamt#ifdef ADV_CARDBUS_ALLOW_MEMIO
2831.1Sthorpej		}
2841.1Sthorpej#endif
2851.1Sthorpej		csc->sc_cbenable = 0;
2861.1Sthorpej	}
2871.1Sthorpej
2881.1Sthorpej	return 0;
2891.1Sthorpej}
290