adv_cardbus.c revision 1.22
11.22Scegger/*	$NetBSD: adv_cardbus.c,v 1.22 2009/05/12 14:17:31 cegger 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 *
201.1Sthorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
211.1Sthorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
221.1Sthorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
231.1Sthorpej * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
241.1Sthorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
251.1Sthorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
261.1Sthorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
271.1Sthorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
281.1Sthorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
291.1Sthorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
301.1Sthorpej * POSSIBILITY OF SUCH DAMAGE.
311.1Sthorpej */
321.1Sthorpej
331.1Sthorpej/*
341.1Sthorpej * this file was brought from ahc_cardbus.c and adv_pci.c
351.1Sthorpej * and modified by YAMAMOTO Takashi.
361.1Sthorpej */
371.5Slukem
381.5Slukem#include <sys/cdefs.h>
391.22Scegger__KERNEL_RCSID(0, "$NetBSD: adv_cardbus.c,v 1.22 2009/05/12 14:17:31 cegger Exp $");
401.1Sthorpej
411.1Sthorpej#include <sys/param.h>
421.1Sthorpej#include <sys/systm.h>
431.1Sthorpej#include <sys/malloc.h>
441.1Sthorpej#include <sys/kernel.h>
451.1Sthorpej#include <sys/queue.h>
461.1Sthorpej#include <sys/device.h>
471.1Sthorpej
481.16Sad#include <sys/bus.h>
491.16Sad#include <sys/intr.h>
501.1Sthorpej
511.11Sperry#include <dev/scsipi/scsi_all.h>
521.1Sthorpej#include <dev/scsipi/scsipi_all.h>
531.1Sthorpej#include <dev/scsipi/scsiconf.h>
541.1Sthorpej
551.1Sthorpej#include <dev/pci/pcireg.h>
561.1Sthorpej#include <dev/pci/pcidevs.h>
571.1Sthorpej
581.1Sthorpej#include <dev/cardbus/cardbusvar.h>
591.9Smycroft#include <dev/pci/pcidevs.h>
601.1Sthorpej
611.1Sthorpej#include <dev/ic/advlib.h>
621.1Sthorpej#include <dev/ic/adv.h>
631.1Sthorpej
641.1Sthorpej#define ADV_CARDBUS_IOBA CARDBUS_BASE0_REG
651.1Sthorpej#define ADV_CARDBUS_MMBA CARDBUS_BASE1_REG
661.1Sthorpej
671.3Syamt#define ADV_CARDBUS_DEBUG
681.3Syamt#define ADV_CARDBUS_ALLOW_MEMIO
691.3Syamt
701.17Scegger#define DEVNAME(sc) device_xname(&(sc)->sc_dev)
711.1Sthorpej
721.1Sthorpejstruct adv_cardbus_softc {
731.1Sthorpej	struct asc_softc sc_adv;	/* real ADV */
741.1Sthorpej
751.1Sthorpej	/* CardBus-specific goo. */
761.1Sthorpej	cardbus_devfunc_t sc_ct;	/* our CardBus devfuncs */
771.19Sdrochner	cardbus_intr_line_t sc_intrline; /* our interrupt line */
781.1Sthorpej	cardbustag_t sc_tag;
791.1Sthorpej
801.1Sthorpej	int	sc_cbenable;		/* what CardBus access type to enable */
811.1Sthorpej	int	sc_csr;			/* CSR bits */
821.1Sthorpej	bus_size_t sc_size;
831.1Sthorpej};
841.1Sthorpej
851.22Sceggerint	adv_cardbus_match(device_t, cfdata_t, void *);
861.22Sceggervoid	adv_cardbus_attach(device_t, device_t, void *);
871.22Sceggerint	adv_cardbus_detach(device_t, int);
881.1Sthorpej
891.7SthorpejCFATTACH_DECL(adv_cardbus, sizeof(struct adv_cardbus_softc),
901.8Sthorpej    adv_cardbus_match, adv_cardbus_attach, adv_cardbus_detach, NULL);
911.1Sthorpej
921.1Sthorpejint
931.22Sceggeradv_cardbus_match(device_t parent, cfdata_t match,
941.14Schristos    void *aux)
951.1Sthorpej{
961.1Sthorpej	struct cardbus_attach_args *ca = aux;
971.1Sthorpej
981.9Smycroft	if (CARDBUS_VENDOR(ca->ca_id) == PCI_VENDOR_ADVSYS &&
991.9Smycroft	    CARDBUS_PRODUCT(ca->ca_id) == PCI_PRODUCT_ADVSYS_ULTRA)
1001.1Sthorpej		return (1);
1011.1Sthorpej
1021.1Sthorpej	return (0);
1031.1Sthorpej}
1041.1Sthorpej
1051.1Sthorpejvoid
1061.22Sceggeradv_cardbus_attach(device_t parent, device_t self,
1071.14Schristos    void *aux)
1081.1Sthorpej{
1091.1Sthorpej	struct cardbus_attach_args *ca = aux;
1101.13Sthorpej	struct adv_cardbus_softc *csc = device_private(self);
1111.1Sthorpej	struct asc_softc *sc = &csc->sc_adv;
1121.1Sthorpej	cardbus_devfunc_t ct = ca->ca_ct;
1131.1Sthorpej	cardbus_chipset_tag_t cc = ct->ct_cc;
1141.1Sthorpej	cardbus_function_tag_t cf = ct->ct_cf;
1151.1Sthorpej	bus_space_tag_t iot;
1161.1Sthorpej	bus_space_handle_t ioh;
1171.1Sthorpej	pcireg_t reg;
1181.1Sthorpej	u_int8_t latency = 0x20;
1191.1Sthorpej
1201.1Sthorpej	sc->sc_flags = 0;
1211.1Sthorpej
1221.1Sthorpej	if (PCI_VENDOR(ca->ca_id) == PCI_VENDOR_ADVSYS) {
1231.1Sthorpej		switch (PCI_PRODUCT(ca->ca_id)) {
1241.1Sthorpej		case PCI_PRODUCT_ADVSYS_1200A:
1251.1Sthorpej			printf(": AdvanSys ASC1200A SCSI adapter\n");
1261.1Sthorpej			latency = 0;
1271.1Sthorpej			break;
1281.1Sthorpej
1291.1Sthorpej		case PCI_PRODUCT_ADVSYS_1200B:
1301.1Sthorpej			printf(": AdvanSys ASC1200B SCSI adapter\n");
1311.1Sthorpej			latency = 0;
1321.1Sthorpej			break;
1331.1Sthorpej
1341.1Sthorpej		case PCI_PRODUCT_ADVSYS_ULTRA:
1351.1Sthorpej			switch (PCI_REVISION(ca->ca_class)) {
1361.1Sthorpej			case ASC_PCI_REVISION_3050:
1371.1Sthorpej				printf(": AdvanSys ABP-9xxUA SCSI adapter\n");
1381.1Sthorpej				break;
1391.1Sthorpej
1401.1Sthorpej			case ASC_PCI_REVISION_3150:
1411.1Sthorpej				printf(": AdvanSys ABP-9xxU SCSI adapter\n");
1421.1Sthorpej				break;
1431.1Sthorpej			}
1441.1Sthorpej			break;
1451.1Sthorpej
1461.1Sthorpej		default:
1471.1Sthorpej			printf(": unknown model!\n");
1481.1Sthorpej			return;
1491.1Sthorpej		}
1501.1Sthorpej	}
1511.1Sthorpej
1521.1Sthorpej	csc->sc_ct = ct;
1531.1Sthorpej	csc->sc_tag = ca->ca_tag;
1541.1Sthorpej	csc->sc_intrline = ca->ca_intrline;
1551.1Sthorpej	csc->sc_cbenable = 0;
1561.1Sthorpej
1571.1Sthorpej	/*
1581.1Sthorpej	 * Map the device.
1591.1Sthorpej	 */
1601.1Sthorpej	csc->sc_csr = PCI_COMMAND_MASTER_ENABLE;
1611.11Sperry
1621.3Syamt#ifdef ADV_CARDBUS_ALLOW_MEMIO
1631.1Sthorpej	if (Cardbus_mapreg_map(csc->sc_ct, ADV_CARDBUS_MMBA,
1641.1Sthorpej	    PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_32BIT, 0,
1651.1Sthorpej	    &iot, &ioh, NULL, &csc->sc_size) == 0) {
1661.3Syamt#ifdef ADV_CARDBUS_DEBUG
1671.3Syamt		printf("%s: memio enabled\n", DEVNAME(sc));
1681.3Syamt#endif
1691.1Sthorpej		csc->sc_cbenable = CARDBUS_MEM_ENABLE;
1701.1Sthorpej		csc->sc_csr |= PCI_COMMAND_MEM_ENABLE;
1711.1Sthorpej	} else
1721.1Sthorpej#endif
1731.1Sthorpej	if (Cardbus_mapreg_map(csc->sc_ct, ADV_CARDBUS_IOBA,
1741.1Sthorpej	    PCI_MAPREG_TYPE_IO, 0, &iot, &ioh, NULL, &csc->sc_size) == 0) {
1751.3Syamt#ifdef ADV_CARDBUS_DEBUG
1761.1Sthorpej		printf("%s: io enabled\n", DEVNAME(sc));
1771.3Syamt#endif
1781.1Sthorpej		csc->sc_cbenable = CARDBUS_IO_ENABLE;
1791.1Sthorpej		csc->sc_csr |= PCI_COMMAND_IO_ENABLE;
1801.1Sthorpej	} else {
1811.17Scegger		aprint_error_dev(&sc->sc_dev, "unable to map device registers\n");
1821.1Sthorpej		return;
1831.1Sthorpej	}
1841.3Syamt
1851.1Sthorpej	/* Make sure the right access type is on the CardBus bridge. */
1861.1Sthorpej	(*ct->ct_cf->cardbus_ctrl)(cc, csc->sc_cbenable);
1871.1Sthorpej	(*ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_BM_ENABLE);
1881.1Sthorpej
1891.1Sthorpej	/* Enable the appropriate bits in the PCI CSR. */
1901.1Sthorpej	reg = cardbus_conf_read(cc, cf, ca->ca_tag, PCI_COMMAND_STATUS_REG);
1911.1Sthorpej	reg &= ~(PCI_COMMAND_IO_ENABLE|PCI_COMMAND_MEM_ENABLE);
1921.1Sthorpej	reg |= csc->sc_csr;
1931.1Sthorpej	cardbus_conf_write(cc, cf, ca->ca_tag, PCI_COMMAND_STATUS_REG, reg);
1941.1Sthorpej
1951.1Sthorpej	/*
1961.1Sthorpej	 * Make sure the latency timer is set to some reasonable
1971.1Sthorpej	 * value.
1981.1Sthorpej	 */
1991.1Sthorpej	reg = cardbus_conf_read(cc, cf, ca->ca_tag, PCI_BHLC_REG);
2001.1Sthorpej	if (PCI_LATTIMER(reg) < latency) {
2011.1Sthorpej		reg &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
2021.1Sthorpej		reg |= (latency << PCI_LATTIMER_SHIFT);
2031.1Sthorpej		cardbus_conf_write(cc, cf, ca->ca_tag, PCI_BHLC_REG, reg);
2041.1Sthorpej	}
2051.1Sthorpej
2061.1Sthorpej	ASC_SET_CHIP_CONTROL(iot, ioh, ASC_CC_HALT);
2071.1Sthorpej	ASC_SET_CHIP_STATUS(iot, ioh, 0);
2081.1Sthorpej
2091.1Sthorpej	sc->sc_iot = iot;
2101.1Sthorpej	sc->sc_ioh = ioh;
2111.1Sthorpej	sc->sc_dmat = ca->ca_dmat;
2121.1Sthorpej	sc->pci_device_id = ca->ca_id;
2131.1Sthorpej	sc->bus_type = ASC_IS_PCI;
2141.1Sthorpej	sc->chip_version = ASC_GET_CHIP_VER_NO(iot, ioh);
2151.3Syamt
2161.1Sthorpej	/*
2171.2Swiz	 * Initialize the board
2181.1Sthorpej	 */
2191.1Sthorpej	if (adv_init(sc)) {
2201.1Sthorpej		printf("adv_init failed\n");
2211.1Sthorpej		return;
2221.1Sthorpej	}
2231.1Sthorpej
2241.1Sthorpej	/*
2251.1Sthorpej	 * Establish the interrupt.
2261.1Sthorpej	 */
2271.1Sthorpej	sc->sc_ih = cardbus_intr_establish(cc, cf, ca->ca_intrline, IPL_BIO,
2281.1Sthorpej	    adv_intr, sc);
2291.1Sthorpej	if (sc->sc_ih == NULL) {
2301.19Sdrochner		aprint_error_dev(&sc->sc_dev,
2311.19Sdrochner				 "unable to establish interrupt\n");
2321.1Sthorpej		return;
2331.1Sthorpej	}
2341.1Sthorpej
2351.1Sthorpej	/*
2361.1Sthorpej	 * Attach.
2371.1Sthorpej	 */
2381.1Sthorpej	adv_attach(sc);
2391.1Sthorpej}
2401.1Sthorpej
2411.1Sthorpejint
2421.22Sceggeradv_cardbus_detach(device_t self, int flags)
2431.1Sthorpej{
2441.13Sthorpej	struct adv_cardbus_softc *csc = device_private(self);
2451.1Sthorpej	struct asc_softc *sc = &csc->sc_adv;
2461.1Sthorpej
2471.1Sthorpej	int rv;
2481.1Sthorpej
2491.1Sthorpej	rv = adv_detach(sc, flags);
2501.1Sthorpej	if (rv)
2511.1Sthorpej		return rv;
2521.1Sthorpej
2531.1Sthorpej	if (sc->sc_ih) {
2541.1Sthorpej		cardbus_intr_disestablish(csc->sc_ct->ct_cc,
2551.1Sthorpej		    csc->sc_ct->ct_cf, sc->sc_ih);
2561.1Sthorpej		sc->sc_ih = 0;
2571.1Sthorpej	}
2581.1Sthorpej
2591.1Sthorpej	if (csc->sc_cbenable) {
2601.3Syamt#ifdef ADV_CARDBUS_ALLOW_MEMIO
2611.1Sthorpej		if (csc->sc_cbenable == CARDBUS_MEM_ENABLE) {
2621.1Sthorpej			Cardbus_mapreg_unmap(csc->sc_ct, ADV_CARDBUS_MMBA,
2631.1Sthorpej			    sc->sc_iot, sc->sc_ioh, csc->sc_size);
2641.1Sthorpej		} else {
2651.1Sthorpej#endif
2661.1Sthorpej			Cardbus_mapreg_unmap(csc->sc_ct, ADV_CARDBUS_IOBA,
2671.1Sthorpej			    sc->sc_iot, sc->sc_ioh, csc->sc_size);
2681.3Syamt#ifdef ADV_CARDBUS_ALLOW_MEMIO
2691.1Sthorpej		}
2701.1Sthorpej#endif
2711.1Sthorpej		csc->sc_cbenable = 0;
2721.1Sthorpej	}
2731.1Sthorpej
2741.1Sthorpej	return 0;
2751.1Sthorpej}
276