adv_cardbus.c revision 1.17
11.17Scegger/* $NetBSD: adv_cardbus.c,v 1.17 2008/04/06 07:54:17 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 * 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.17Scegger__KERNEL_RCSID(0, "$NetBSD: adv_cardbus.c,v 1.17 2008/04/06 07:54:17 cegger 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.16Sad#include <sys/bus.h> 561.16Sad#include <sys/intr.h> 571.1Sthorpej 581.11Sperry#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.17Scegger#define DEVNAME(sc) device_xname(&(sc)->sc_dev) 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.10Sperryint adv_cardbus_match(struct device *, struct cfdata *, void *); 931.10Sperryvoid adv_cardbus_attach(struct device *, struct device *, void *); 941.10Sperryint adv_cardbus_detach(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.15Schristosadv_cardbus_match(struct device *parent, struct cfdata *match, 1011.14Schristos void *aux) 1021.1Sthorpej{ 1031.1Sthorpej struct cardbus_attach_args *ca = aux; 1041.1Sthorpej 1051.9Smycroft if (CARDBUS_VENDOR(ca->ca_id) == PCI_VENDOR_ADVSYS && 1061.9Smycroft CARDBUS_PRODUCT(ca->ca_id) == PCI_PRODUCT_ADVSYS_ULTRA) 1071.1Sthorpej return (1); 1081.1Sthorpej 1091.1Sthorpej return (0); 1101.1Sthorpej} 1111.1Sthorpej 1121.1Sthorpejvoid 1131.15Schristosadv_cardbus_attach(struct device *parent, struct device *self, 1141.14Schristos void *aux) 1151.1Sthorpej{ 1161.1Sthorpej struct cardbus_attach_args *ca = aux; 1171.13Sthorpej struct adv_cardbus_softc *csc = device_private(self); 1181.1Sthorpej struct asc_softc *sc = &csc->sc_adv; 1191.1Sthorpej cardbus_devfunc_t ct = ca->ca_ct; 1201.1Sthorpej cardbus_chipset_tag_t cc = ct->ct_cc; 1211.1Sthorpej cardbus_function_tag_t cf = ct->ct_cf; 1221.1Sthorpej bus_space_tag_t iot; 1231.1Sthorpej bus_space_handle_t ioh; 1241.1Sthorpej pcireg_t reg; 1251.1Sthorpej u_int8_t latency = 0x20; 1261.1Sthorpej 1271.1Sthorpej sc->sc_flags = 0; 1281.1Sthorpej 1291.1Sthorpej if (PCI_VENDOR(ca->ca_id) == PCI_VENDOR_ADVSYS) { 1301.1Sthorpej switch (PCI_PRODUCT(ca->ca_id)) { 1311.1Sthorpej case PCI_PRODUCT_ADVSYS_1200A: 1321.1Sthorpej printf(": AdvanSys ASC1200A SCSI adapter\n"); 1331.1Sthorpej latency = 0; 1341.1Sthorpej break; 1351.1Sthorpej 1361.1Sthorpej case PCI_PRODUCT_ADVSYS_1200B: 1371.1Sthorpej printf(": AdvanSys ASC1200B SCSI adapter\n"); 1381.1Sthorpej latency = 0; 1391.1Sthorpej break; 1401.1Sthorpej 1411.1Sthorpej case PCI_PRODUCT_ADVSYS_ULTRA: 1421.1Sthorpej switch (PCI_REVISION(ca->ca_class)) { 1431.1Sthorpej case ASC_PCI_REVISION_3050: 1441.1Sthorpej printf(": AdvanSys ABP-9xxUA SCSI adapter\n"); 1451.1Sthorpej break; 1461.1Sthorpej 1471.1Sthorpej case ASC_PCI_REVISION_3150: 1481.1Sthorpej printf(": AdvanSys ABP-9xxU SCSI adapter\n"); 1491.1Sthorpej break; 1501.1Sthorpej } 1511.1Sthorpej break; 1521.1Sthorpej 1531.1Sthorpej default: 1541.1Sthorpej printf(": unknown model!\n"); 1551.1Sthorpej return; 1561.1Sthorpej } 1571.1Sthorpej } 1581.1Sthorpej 1591.1Sthorpej csc->sc_ct = ct; 1601.1Sthorpej csc->sc_tag = ca->ca_tag; 1611.1Sthorpej csc->sc_intrline = ca->ca_intrline; 1621.1Sthorpej csc->sc_cbenable = 0; 1631.1Sthorpej 1641.1Sthorpej /* 1651.1Sthorpej * Map the device. 1661.1Sthorpej */ 1671.1Sthorpej csc->sc_csr = PCI_COMMAND_MASTER_ENABLE; 1681.11Sperry 1691.3Syamt#ifdef ADV_CARDBUS_ALLOW_MEMIO 1701.1Sthorpej if (Cardbus_mapreg_map(csc->sc_ct, ADV_CARDBUS_MMBA, 1711.1Sthorpej PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_32BIT, 0, 1721.1Sthorpej &iot, &ioh, NULL, &csc->sc_size) == 0) { 1731.3Syamt#ifdef ADV_CARDBUS_DEBUG 1741.3Syamt printf("%s: memio enabled\n", DEVNAME(sc)); 1751.3Syamt#endif 1761.1Sthorpej csc->sc_cbenable = CARDBUS_MEM_ENABLE; 1771.1Sthorpej csc->sc_csr |= PCI_COMMAND_MEM_ENABLE; 1781.1Sthorpej } else 1791.1Sthorpej#endif 1801.1Sthorpej if (Cardbus_mapreg_map(csc->sc_ct, ADV_CARDBUS_IOBA, 1811.1Sthorpej PCI_MAPREG_TYPE_IO, 0, &iot, &ioh, NULL, &csc->sc_size) == 0) { 1821.3Syamt#ifdef ADV_CARDBUS_DEBUG 1831.1Sthorpej printf("%s: io enabled\n", DEVNAME(sc)); 1841.3Syamt#endif 1851.1Sthorpej csc->sc_cbenable = CARDBUS_IO_ENABLE; 1861.1Sthorpej csc->sc_csr |= PCI_COMMAND_IO_ENABLE; 1871.1Sthorpej } else { 1881.17Scegger aprint_error_dev(&sc->sc_dev, "unable to map device registers\n"); 1891.1Sthorpej return; 1901.1Sthorpej } 1911.3Syamt 1921.1Sthorpej /* Make sure the right access type is on the CardBus bridge. */ 1931.1Sthorpej (*ct->ct_cf->cardbus_ctrl)(cc, csc->sc_cbenable); 1941.1Sthorpej (*ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_BM_ENABLE); 1951.1Sthorpej 1961.1Sthorpej /* Enable the appropriate bits in the PCI CSR. */ 1971.1Sthorpej reg = cardbus_conf_read(cc, cf, ca->ca_tag, PCI_COMMAND_STATUS_REG); 1981.1Sthorpej reg &= ~(PCI_COMMAND_IO_ENABLE|PCI_COMMAND_MEM_ENABLE); 1991.1Sthorpej reg |= csc->sc_csr; 2001.1Sthorpej cardbus_conf_write(cc, cf, ca->ca_tag, PCI_COMMAND_STATUS_REG, reg); 2011.1Sthorpej 2021.1Sthorpej /* 2031.1Sthorpej * Make sure the latency timer is set to some reasonable 2041.1Sthorpej * value. 2051.1Sthorpej */ 2061.1Sthorpej reg = cardbus_conf_read(cc, cf, ca->ca_tag, PCI_BHLC_REG); 2071.1Sthorpej if (PCI_LATTIMER(reg) < latency) { 2081.1Sthorpej reg &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT); 2091.1Sthorpej reg |= (latency << PCI_LATTIMER_SHIFT); 2101.1Sthorpej cardbus_conf_write(cc, cf, ca->ca_tag, PCI_BHLC_REG, reg); 2111.1Sthorpej } 2121.1Sthorpej 2131.1Sthorpej ASC_SET_CHIP_CONTROL(iot, ioh, ASC_CC_HALT); 2141.1Sthorpej ASC_SET_CHIP_STATUS(iot, ioh, 0); 2151.1Sthorpej 2161.1Sthorpej sc->sc_iot = iot; 2171.1Sthorpej sc->sc_ioh = ioh; 2181.1Sthorpej sc->sc_dmat = ca->ca_dmat; 2191.1Sthorpej sc->pci_device_id = ca->ca_id; 2201.1Sthorpej sc->bus_type = ASC_IS_PCI; 2211.1Sthorpej sc->chip_version = ASC_GET_CHIP_VER_NO(iot, ioh); 2221.3Syamt 2231.1Sthorpej /* 2241.2Swiz * Initialize the board 2251.1Sthorpej */ 2261.1Sthorpej if (adv_init(sc)) { 2271.1Sthorpej printf("adv_init failed\n"); 2281.1Sthorpej return; 2291.1Sthorpej } 2301.1Sthorpej 2311.1Sthorpej /* 2321.1Sthorpej * Establish the interrupt. 2331.1Sthorpej */ 2341.1Sthorpej sc->sc_ih = cardbus_intr_establish(cc, cf, ca->ca_intrline, IPL_BIO, 2351.1Sthorpej adv_intr, sc); 2361.1Sthorpej if (sc->sc_ih == NULL) { 2371.17Scegger aprint_error_dev(&sc->sc_dev, "unable to establish interrupt at %d\n", 2381.17Scegger ca->ca_intrline); 2391.1Sthorpej return; 2401.1Sthorpej } 2411.1Sthorpej printf("%s: interrupting at %d\n", DEVNAME(sc), ca->ca_intrline); 2421.1Sthorpej 2431.1Sthorpej /* 2441.1Sthorpej * Attach. 2451.1Sthorpej */ 2461.1Sthorpej adv_attach(sc); 2471.1Sthorpej} 2481.1Sthorpej 2491.1Sthorpejint 2501.1Sthorpejadv_cardbus_detach(self, flags) 2511.1Sthorpej struct device *self; 2521.1Sthorpej int flags; 2531.1Sthorpej{ 2541.13Sthorpej struct adv_cardbus_softc *csc = device_private(self); 2551.1Sthorpej struct asc_softc *sc = &csc->sc_adv; 2561.1Sthorpej 2571.1Sthorpej int rv; 2581.1Sthorpej 2591.1Sthorpej rv = adv_detach(sc, flags); 2601.1Sthorpej if (rv) 2611.1Sthorpej return rv; 2621.1Sthorpej 2631.1Sthorpej if (sc->sc_ih) { 2641.1Sthorpej cardbus_intr_disestablish(csc->sc_ct->ct_cc, 2651.1Sthorpej csc->sc_ct->ct_cf, sc->sc_ih); 2661.1Sthorpej sc->sc_ih = 0; 2671.1Sthorpej } 2681.1Sthorpej 2691.1Sthorpej if (csc->sc_cbenable) { 2701.3Syamt#ifdef ADV_CARDBUS_ALLOW_MEMIO 2711.1Sthorpej if (csc->sc_cbenable == CARDBUS_MEM_ENABLE) { 2721.1Sthorpej Cardbus_mapreg_unmap(csc->sc_ct, ADV_CARDBUS_MMBA, 2731.1Sthorpej sc->sc_iot, sc->sc_ioh, csc->sc_size); 2741.1Sthorpej } else { 2751.1Sthorpej#endif 2761.1Sthorpej Cardbus_mapreg_unmap(csc->sc_ct, ADV_CARDBUS_IOBA, 2771.1Sthorpej sc->sc_iot, sc->sc_ioh, csc->sc_size); 2781.3Syamt#ifdef ADV_CARDBUS_ALLOW_MEMIO 2791.1Sthorpej } 2801.1Sthorpej#endif 2811.1Sthorpej csc->sc_cbenable = 0; 2821.1Sthorpej } 2831.1Sthorpej 2841.1Sthorpej return 0; 2851.1Sthorpej} 286