Home | History | Annotate | Line # | Download | only in pci
ahcisata_pci.c revision 1.12.4.3.2.1
      1 /*	$NetBSD: ahcisata_pci.c,v 1.12.4.3.2.1 2011/10/14 16:54:32 matt Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2006 Manuel Bouyer.
      5  *
      6  * Redistribution and use in source and binary forms, with or without
      7  * modification, are permitted provided that the following conditions
      8  * are met:
      9  * 1. Redistributions of source code must retain the above copyright
     10  *    notice, this list of conditions and the following disclaimer.
     11  * 2. Redistributions in binary form must reproduce the above copyright
     12  *    notice, this list of conditions and the following disclaimer in the
     13  *    documentation and/or other materials provided with the distribution.
     14  * 3. All advertising materials mentioning features or use of this software
     15  *    must display the following acknowledgement:
     16  *	This product includes software developed by Manuel Bouyer.
     17  * 4. The name of the author may not be used to endorse or promote products
     18  *    derived from this software without specific prior written permission.
     19  *
     20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30  *
     31  */
     32 
     33 #include <sys/cdefs.h>
     34 __KERNEL_RCSID(0, "$NetBSD: ahcisata_pci.c,v 1.12.4.3.2.1 2011/10/14 16:54:32 matt Exp $");
     35 
     36 #include <sys/types.h>
     37 #include <sys/malloc.h>
     38 #include <sys/param.h>
     39 #include <sys/kernel.h>
     40 #include <sys/systm.h>
     41 #include <sys/disklabel.h>
     42 #include <sys/pmf.h>
     43 
     44 #include <uvm/uvm_extern.h>
     45 
     46 #include <dev/pci/pcivar.h>
     47 #include <dev/pci/pcidevs.h>
     48 #include <dev/pci/pciidereg.h>
     49 #include <dev/pci/pciidevar.h>
     50 #include <dev/ic/ahcisatavar.h>
     51 
     52 #define AHCI_PCI_QUIRK_FORCE	1	/* force attach */
     53 
     54 static const struct pci_quirkdata ahci_pci_quirks[] = {
     55 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SATA,
     56 	    AHCI_PCI_QUIRK_FORCE },
     57 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SATA2,
     58 	    AHCI_PCI_QUIRK_FORCE },
     59 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SATA3,
     60 	    AHCI_PCI_QUIRK_FORCE },
     61 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SATA4,
     62 	    AHCI_PCI_QUIRK_FORCE },
     63 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SATA,
     64 	    AHCI_PCI_QUIRK_FORCE },
     65 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_1,
     66 	    AHCI_PCI_QUIRK_FORCE },
     67 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_1,
     68 	    AHCI_PCI_QUIRK_FORCE },
     69 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_2,
     70 	    AHCI_PCI_QUIRK_FORCE },
     71 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_3,
     72 	    AHCI_PCI_QUIRK_FORCE },
     73 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_4,
     74 	    AHCI_PCI_QUIRK_FORCE },
     75 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_5,
     76 	    AHCI_PCI_QUIRK_FORCE },
     77 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_6,
     78 	    AHCI_PCI_QUIRK_FORCE },
     79 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_7,
     80 	    AHCI_PCI_QUIRK_FORCE },
     81 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_8,
     82 	    AHCI_PCI_QUIRK_FORCE },
     83 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_9,
     84 	    AHCI_PCI_QUIRK_FORCE },
     85 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_10,
     86 	    AHCI_PCI_QUIRK_FORCE },
     87 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_11,
     88 	    AHCI_PCI_QUIRK_FORCE },
     89 	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_12,
     90 	    AHCI_PCI_QUIRK_FORCE },
     91 	{ PCI_VENDOR_ALI, PCI_PRODUCT_ALI_M5288,
     92 	    AHCI_PCI_QUIRK_FORCE },
     93 };
     94 
     95 struct ahci_pci_softc {
     96 	struct ahci_softc ah_sc;
     97 	pci_chipset_tag_t sc_pc;
     98 	pcitag_t sc_pcitag;
     99 };
    100 
    101 
    102 static int  ahci_pci_match(device_t, cfdata_t, void *);
    103 static void ahci_pci_attach(device_t, device_t, void *);
    104 const struct pci_quirkdata *ahci_pci_lookup_quirkdata(pci_vendor_id_t,
    105 						      pci_product_id_t);
    106 static bool ahci_pci_resume(device_t PMF_FN_PROTO);
    107 
    108 
    109 CFATTACH_DECL_NEW(ahcisata_pci, sizeof(struct ahci_pci_softc),
    110     ahci_pci_match, ahci_pci_attach, NULL, NULL);
    111 
    112 static int
    113 ahci_pci_match(device_t parent, cfdata_t match, void *aux)
    114 {
    115 	struct pci_attach_args *pa = aux;
    116 	bus_space_tag_t regt;
    117 	bus_space_handle_t regh;
    118 	bus_size_t size;
    119 	int ret = 0;
    120 	const struct pci_quirkdata *quirks;
    121 
    122 	quirks = ahci_pci_lookup_quirkdata(PCI_VENDOR(pa->pa_id),
    123 					   PCI_PRODUCT(pa->pa_id));
    124 
    125 	/* if wrong class and not forced by quirks, don't match */
    126 	if ((PCI_CLASS(pa->pa_class) != PCI_CLASS_MASS_STORAGE ||
    127 	    ((PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_MASS_STORAGE_SATA ||
    128 	     PCI_INTERFACE(pa->pa_class) != PCI_INTERFACE_SATA_AHCI) &&
    129 	     PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_MASS_STORAGE_RAID)) &&
    130 	    (quirks == NULL || (quirks->quirks & AHCI_PCI_QUIRK_FORCE) == 0))
    131 		return 0;
    132 
    133 	if (pci_mapreg_map(pa, AHCI_PCI_ABAR,
    134 	    PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT, 0,
    135 	    &regt, &regh, NULL, &size) != 0)
    136 		return 0;
    137 
    138 	if ((PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_SATA &&
    139 	     PCI_INTERFACE(pa->pa_class) == PCI_INTERFACE_SATA_AHCI) ||
    140 	    (quirks && quirks->quirks & AHCI_PCI_QUIRK_FORCE) ||
    141 	    (bus_space_read_4(regt, regh, AHCI_GHC) & AHCI_GHC_AE))
    142 		ret = 3;
    143 
    144 	bus_space_unmap(regt, regh, size);
    145 	return ret;
    146 }
    147 
    148 static void
    149 ahci_pci_attach(device_t parent, device_t self, void *aux)
    150 {
    151 	struct pci_attach_args *pa = aux;
    152 	struct ahci_pci_softc *psc = device_private(self);
    153 	struct ahci_softc *sc = &psc->ah_sc;
    154 	bus_size_t size;
    155 	char devinfo[256];
    156 	const char *intrstr;
    157 	pci_intr_handle_t intrhandle;
    158 	void *ih;
    159 
    160 	sc->sc_atac.atac_dev = self;
    161 
    162 	if (pci_mapreg_map(pa, AHCI_PCI_ABAR,
    163 	    PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT, 0,
    164 	    &sc->sc_ahcit, &sc->sc_ahcih, NULL, &size) != 0) {
    165 		aprint_error_dev(self, "can't map ahci registers\n");
    166 		return;
    167 	}
    168 	psc->sc_pc = pa->pa_pc;
    169 	psc->sc_pcitag = pa->pa_tag;
    170 
    171 	pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
    172 	aprint_naive(": AHCI disk controller\n");
    173 	aprint_normal(": %s\n", devinfo);
    174 
    175 	if (pci_intr_map(pa, &intrhandle) != 0) {
    176 		aprint_error("%s: couldn't map interrupt\n", AHCINAME(sc));
    177 		return;
    178 	}
    179 	intrstr = pci_intr_string(pa->pa_pc, intrhandle);
    180 	ih = pci_intr_establish(pa->pa_pc, intrhandle, IPL_BIO, ahci_intr, sc);
    181 	if (ih == NULL) {
    182 		aprint_error("%s: couldn't establish interrupt", AHCINAME(sc));
    183 		return;
    184 	}
    185 	aprint_normal("%s: interrupting at %s\n", AHCINAME(sc),
    186 	    intrstr ? intrstr : "unknown interrupt");
    187 	sc->sc_dmat = pa->pa_dmat;
    188 
    189 	if (PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_RAID) {
    190 		AHCIDEBUG_PRINT(("%s: RAID mode\n", AHCINAME(sc)), DEBUG_PROBE);
    191 		sc->sc_atac_capflags = ATAC_CAP_RAID;
    192 	} else {
    193 		AHCIDEBUG_PRINT(("%s: SATA mode\n", AHCINAME(sc)), DEBUG_PROBE);
    194 	}
    195 
    196 	ahci_attach(sc);
    197 
    198 	if (!pmf_device_register(self, NULL, ahci_pci_resume))
    199 		aprint_error_dev(self, "couldn't establish power handler\n");
    200 }
    201 
    202 static bool
    203 ahci_pci_resume(device_t dv PMF_FN_ARGS)
    204 {
    205 	struct ahci_pci_softc *psc = device_private(dv);
    206 	struct ahci_softc *sc = &psc->ah_sc;
    207 	int s;
    208 
    209 	s = splbio();
    210 	ahci_reset(sc);
    211 	ahci_setup_ports(sc);
    212 	ahci_reprobe_drives(sc);
    213 	ahci_enable_intrs(sc);
    214 	splx(s);
    215 
    216 	return true;
    217 }
    218 
    219 const struct pci_quirkdata *
    220 ahci_pci_lookup_quirkdata(pci_vendor_id_t vendor, pci_product_id_t product)
    221 {
    222 	int i;
    223 
    224 	for (i = 0; i < (sizeof ahci_pci_quirks / sizeof ahci_pci_quirks[0]);
    225 	     i++)
    226 		if (vendor == ahci_pci_quirks[i].vendor &&
    227 		    product == ahci_pci_quirks[i].product)
    228 			return (&ahci_pci_quirks[i]);
    229 	return (NULL);
    230 }
    231