Home | History | Annotate | Line # | Download | only in pci
viaide.c revision 1.76.6.1
      1  1.76.6.1       mrg /*	$NetBSD: viaide.c,v 1.76.6.1 2012/02/18 07:34:53 mrg Exp $	*/
      2       1.1    bouyer 
      3       1.1    bouyer /*
      4       1.1    bouyer  * Copyright (c) 1999, 2000, 2001 Manuel Bouyer.
      5       1.1    bouyer  *
      6       1.1    bouyer  * Redistribution and use in source and binary forms, with or without
      7       1.1    bouyer  * modification, are permitted provided that the following conditions
      8       1.1    bouyer  * are met:
      9       1.1    bouyer  * 1. Redistributions of source code must retain the above copyright
     10       1.1    bouyer  *    notice, this list of conditions and the following disclaimer.
     11       1.1    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1    bouyer  *    notice, this list of conditions and the following disclaimer in the
     13       1.1    bouyer  *    documentation and/or other materials provided with the distribution.
     14       1.1    bouyer  *
     15       1.1    bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     16       1.1    bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     17       1.1    bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     18      1.24     perry  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     19       1.1    bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     20       1.1    bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     21       1.1    bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     22       1.1    bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     23       1.1    bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     24       1.1    bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     25       1.1    bouyer  *
     26       1.1    bouyer  */
     27       1.1    bouyer 
     28      1.25     lukem #include <sys/cdefs.h>
     29  1.76.6.1       mrg __KERNEL_RCSID(0, "$NetBSD: viaide.c,v 1.76.6.1 2012/02/18 07:34:53 mrg Exp $");
     30      1.25     lukem 
     31       1.1    bouyer #include <sys/param.h>
     32       1.1    bouyer #include <sys/systm.h>
     33      1.76  jakllsch #include <sys/malloc.h>
     34       1.1    bouyer 
     35       1.1    bouyer #include <dev/pci/pcivar.h>
     36       1.1    bouyer #include <dev/pci/pcidevs.h>
     37       1.1    bouyer #include <dev/pci/pciidereg.h>
     38       1.1    bouyer #include <dev/pci/pciidevar.h>
     39       1.1    bouyer #include <dev/pci/pciide_apollo_reg.h>
     40       1.1    bouyer 
     41      1.72    dyoung static int	via_pcib_match(const struct pci_attach_args *);
     42      1.72    dyoung static void	via_chip_map(struct pciide_softc *,
     43      1.72    dyoung 		    const struct pci_attach_args *);
     44      1.72    dyoung static void	via_mapchan(const struct pci_attach_args *,
     45      1.72    dyoung 		    struct pciide_channel *,
     46      1.70  jakllsch 		    pcireg_t, int (*)(void *));
     47      1.72    dyoung static void	via_mapregs_compat_native(const struct pci_attach_args *,
     48      1.70  jakllsch 		    struct pciide_channel *);
     49      1.35    bouyer static int	via_sata_chip_map_common(struct pciide_softc *,
     50      1.76  jakllsch 		    const struct pci_attach_args *);
     51       1.4     enami static void	via_sata_chip_map(struct pciide_softc *,
     52      1.72    dyoung 		    const struct pci_attach_args *, int);
     53      1.35    bouyer static void	via_sata_chip_map_6(struct pciide_softc *,
     54      1.72    dyoung 		    const struct pci_attach_args *);
     55      1.35    bouyer static void	via_sata_chip_map_7(struct pciide_softc *,
     56      1.72    dyoung 		    const struct pci_attach_args *);
     57      1.35    bouyer static void	via_sata_chip_map_new(struct pciide_softc *,
     58      1.72    dyoung 		    const struct pci_attach_args *);
     59      1.15   thorpej static void	via_setup_channel(struct ata_channel *);
     60       1.4     enami 
     61      1.53      cube static int	viaide_match(device_t, cfdata_t, void *);
     62      1.53      cube static void	viaide_attach(device_t, device_t, void *);
     63       1.4     enami static const struct pciide_product_desc *
     64       1.4     enami 		viaide_lookup(pcireg_t);
     65      1.68    dyoung static bool	viaide_suspend(device_t, const pmf_qual_t *);
     66      1.68    dyoung static bool	viaide_resume(device_t, const pmf_qual_t *);
     67       1.1    bouyer 
     68      1.53      cube CFATTACH_DECL_NEW(viaide, sizeof(struct pciide_softc),
     69      1.71  jakllsch     viaide_match, viaide_attach, pciide_detach, NULL);
     70       1.1    bouyer 
     71       1.2   thorpej static const struct pciide_product_desc pciide_amd_products[] =  {
     72       1.1    bouyer 	{ PCI_PRODUCT_AMD_PBC756_IDE,
     73       1.1    bouyer 	  0,
     74      1.59  jmcneill 	  "AMD AMD756 IDE Controller",
     75       1.1    bouyer 	  via_chip_map
     76       1.1    bouyer 	},
     77       1.1    bouyer 	{ PCI_PRODUCT_AMD_PBC766_IDE,
     78       1.1    bouyer 	  0,
     79      1.59  jmcneill 	  "AMD AMD766 IDE Controller",
     80       1.1    bouyer 	  via_chip_map
     81       1.1    bouyer 	},
     82       1.1    bouyer 	{ PCI_PRODUCT_AMD_PBC768_IDE,
     83       1.1    bouyer 	  0,
     84      1.59  jmcneill 	  "AMD AMD768 IDE Controller",
     85       1.1    bouyer 	  via_chip_map
     86       1.1    bouyer 	},
     87       1.1    bouyer 	{ PCI_PRODUCT_AMD_PBC8111_IDE,
     88       1.1    bouyer 	  0,
     89      1.59  jmcneill 	  "AMD AMD8111 IDE Controller",
     90       1.1    bouyer 	  via_chip_map
     91       1.1    bouyer 	},
     92      1.38     isaki 	{ PCI_PRODUCT_AMD_CS5536_IDE,
     93      1.38     isaki 	  0,
     94      1.59  jmcneill 	  "AMD CS5536 IDE Controller",
     95      1.38     isaki 	  via_chip_map
     96      1.38     isaki 	},
     97       1.1    bouyer 	{ 0,
     98       1.1    bouyer 	  0,
     99       1.1    bouyer 	  NULL,
    100       1.1    bouyer 	  NULL
    101       1.1    bouyer 	}
    102       1.1    bouyer };
    103       1.1    bouyer 
    104       1.2   thorpej static const struct pciide_product_desc pciide_nvidia_products[] = {
    105       1.1    bouyer 	{ PCI_PRODUCT_NVIDIA_NFORCE_ATA100,
    106       1.1    bouyer 	  0,
    107       1.1    bouyer 	  "NVIDIA nForce IDE Controller",
    108       1.1    bouyer 	  via_chip_map
    109       1.1    bouyer 	},
    110       1.1    bouyer 	{ PCI_PRODUCT_NVIDIA_NFORCE2_ATA133,
    111       1.1    bouyer 	  0,
    112       1.1    bouyer 	  "NVIDIA nForce2 IDE Controller",
    113       1.1    bouyer 	  via_chip_map
    114       1.1    bouyer 	},
    115      1.20  jdolecek 	{ PCI_PRODUCT_NVIDIA_NFORCE2_400_ATA133,
    116      1.20  jdolecek 	  0,
    117      1.20  jdolecek 	  "NVIDIA nForce2 Ultra 400 IDE Controller",
    118      1.20  jdolecek 	  via_chip_map
    119      1.20  jdolecek 	},
    120      1.20  jdolecek 	{ PCI_PRODUCT_NVIDIA_NFORCE2_400_SATA,
    121      1.20  jdolecek 	  0,
    122      1.20  jdolecek 	  "NVIDIA nForce2 Ultra 400 Serial ATA Controller",
    123      1.35    bouyer 	  via_sata_chip_map_6
    124      1.20  jdolecek 	},
    125      1.10      fvdl 	{ PCI_PRODUCT_NVIDIA_NFORCE3_ATA133,
    126      1.10      fvdl 	  0,
    127      1.10      fvdl 	  "NVIDIA nForce3 IDE Controller",
    128      1.10      fvdl 	  via_chip_map
    129      1.10      fvdl 	},
    130      1.19   xtraeme 	{ PCI_PRODUCT_NVIDIA_NFORCE3_250_ATA133,
    131      1.19   xtraeme 	  0,
    132      1.19   xtraeme 	  "NVIDIA nForce3 250 IDE Controller",
    133      1.19   xtraeme 	  via_chip_map
    134      1.19   xtraeme 	},
    135      1.19   xtraeme 	{ PCI_PRODUCT_NVIDIA_NFORCE3_250_SATA,
    136      1.19   xtraeme 	  0,
    137      1.19   xtraeme 	  "NVIDIA nForce3 250 Serial ATA Controller",
    138      1.35    bouyer 	  via_sata_chip_map_6
    139      1.19   xtraeme 	},
    140      1.32   xtraeme 	{ PCI_PRODUCT_NVIDIA_NFORCE3_250_SATA2,
    141      1.32   xtraeme 	  0,
    142      1.32   xtraeme 	  "NVIDIA nForce3 250 Serial ATA Controller",
    143      1.35    bouyer 	  via_sata_chip_map_6
    144      1.32   xtraeme 	},
    145      1.21      kent 	{ PCI_PRODUCT_NVIDIA_NFORCE4_ATA133,
    146      1.21      kent 	  0,
    147      1.21      kent 	  "NVIDIA nForce4 IDE Controller",
    148      1.21      kent 	  via_chip_map
    149      1.21      kent 	},
    150      1.21      kent 	{ PCI_PRODUCT_NVIDIA_NFORCE4_SATA1,
    151      1.21      kent 	  0,
    152      1.21      kent 	  "NVIDIA nForce4 Serial ATA Controller",
    153      1.35    bouyer 	  via_sata_chip_map_6
    154      1.21      kent 	},
    155      1.21      kent 	{ PCI_PRODUCT_NVIDIA_NFORCE4_SATA2,
    156      1.21      kent 	  0,
    157      1.21      kent 	  "NVIDIA nForce4 Serial ATA Controller",
    158      1.35    bouyer 	  via_sata_chip_map_6
    159      1.21      kent 	},
    160      1.27      manu 	{ PCI_PRODUCT_NVIDIA_NFORCE430_ATA133,
    161      1.27      manu 	  0,
    162      1.27      manu 	  "NVIDIA nForce430 IDE Controller",
    163      1.27      manu 	  via_chip_map
    164      1.27      manu 	},
    165      1.27      manu 	{ PCI_PRODUCT_NVIDIA_NFORCE430_SATA1,
    166      1.27      manu 	  0,
    167      1.27      manu 	  "NVIDIA nForce430 Serial ATA Controller",
    168      1.35    bouyer 	  via_sata_chip_map_6
    169      1.27      manu 	},
    170      1.27      manu 	{ PCI_PRODUCT_NVIDIA_NFORCE430_SATA2,
    171      1.27      manu 	  0,
    172      1.27      manu 	  "NVIDIA nForce430 Serial ATA Controller",
    173      1.35    bouyer 	  via_sata_chip_map_6
    174      1.27      manu 	},
    175      1.30   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP04_IDE,
    176      1.30   xtraeme 	  0,
    177      1.30   xtraeme 	  "NVIDIA MCP04 IDE Controller",
    178      1.30   xtraeme 	  via_chip_map
    179      1.30   xtraeme 	},
    180      1.30   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP04_SATA,
    181      1.30   xtraeme 	  0,
    182      1.31   xtraeme 	  "NVIDIA MCP04 Serial ATA Controller",
    183      1.35    bouyer 	  via_sata_chip_map_6
    184      1.30   xtraeme 	},
    185      1.30   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP04_SATA2,
    186      1.30   xtraeme 	  0,
    187      1.31   xtraeme 	  "NVIDIA MCP04 Serial ATA Controller",
    188      1.35    bouyer 	  via_sata_chip_map_6
    189      1.30   xtraeme 	},
    190      1.30   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP55_IDE,
    191      1.30   xtraeme 	  0,
    192      1.30   xtraeme 	  "NVIDIA MCP55 IDE Controller",
    193      1.30   xtraeme 	  via_chip_map
    194      1.30   xtraeme 	},
    195      1.30   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP55_SATA,
    196      1.30   xtraeme 	  0,
    197      1.31   xtraeme 	  "NVIDIA MCP55 Serial ATA Controller",
    198      1.35    bouyer 	  via_sata_chip_map_6
    199      1.30   xtraeme 	},
    200      1.30   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP55_SATA2,
    201      1.30   xtraeme 	  0,
    202      1.31   xtraeme 	  "NVIDIA MCP55 Serial ATA Controller",
    203      1.35    bouyer 	  via_sata_chip_map_6
    204      1.30   xtraeme 	},
    205      1.33   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP61_IDE,
    206      1.33   xtraeme 	  0,
    207      1.33   xtraeme 	  "NVIDIA MCP61 IDE Controller",
    208      1.33   xtraeme 	  via_chip_map
    209      1.33   xtraeme 	},
    210      1.33   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP65_IDE,
    211      1.33   xtraeme 	  0,
    212      1.33   xtraeme 	  "NVIDIA MCP65 IDE Controller",
    213      1.33   xtraeme 	  via_chip_map
    214      1.33   xtraeme 	},
    215      1.46   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP73_IDE,
    216      1.46   xtraeme 	  0,
    217      1.46   xtraeme 	  "NVIDIA MCP73 IDE Controller",
    218      1.46   xtraeme 	  via_chip_map
    219      1.46   xtraeme 	},
    220      1.46   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP77_IDE,
    221      1.46   xtraeme 	  0,
    222      1.46   xtraeme 	  "NVIDIA MCP77 IDE Controller",
    223      1.46   xtraeme 	  via_chip_map
    224      1.46   xtraeme 	},
    225      1.33   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP61_SATA,
    226      1.33   xtraeme 	  0,
    227      1.33   xtraeme 	  "NVIDIA MCP61 Serial ATA Controller",
    228      1.35    bouyer 	  via_sata_chip_map_6
    229      1.33   xtraeme 	},
    230      1.33   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP61_SATA2,
    231      1.33   xtraeme 	  0,
    232      1.33   xtraeme 	  "NVIDIA MCP61 Serial ATA Controller",
    233      1.35    bouyer 	  via_sata_chip_map_6
    234      1.33   xtraeme 	},
    235      1.33   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP61_SATA3,
    236      1.33   xtraeme 	  0,
    237      1.33   xtraeme 	  "NVIDIA MCP61 Serial ATA Controller",
    238      1.35    bouyer 	  via_sata_chip_map_6
    239      1.33   xtraeme 	},
    240      1.33   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP65_SATA,
    241      1.33   xtraeme 	  0,
    242      1.33   xtraeme 	  "NVIDIA MCP65 Serial ATA Controller",
    243      1.35    bouyer 	  via_sata_chip_map_6
    244      1.33   xtraeme 	},
    245      1.33   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP65_SATA2,
    246      1.33   xtraeme 	  0,
    247      1.33   xtraeme 	  "NVIDIA MCP65 Serial ATA Controller",
    248      1.35    bouyer 	  via_sata_chip_map_6
    249      1.33   xtraeme 	},
    250      1.33   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP65_SATA3,
    251      1.33   xtraeme 	  0,
    252      1.33   xtraeme 	  "NVIDIA MCP65 Serial ATA Controller",
    253      1.35    bouyer 	  via_sata_chip_map_6
    254      1.33   xtraeme 	},
    255      1.33   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP65_SATA4,
    256      1.33   xtraeme 	  0,
    257      1.33   xtraeme 	  "NVIDIA MCP65 Serial ATA Controller",
    258      1.35    bouyer 	  via_sata_chip_map_6
    259      1.33   xtraeme 	},
    260      1.43   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP67_IDE,
    261      1.43   xtraeme 	  0,
    262      1.43   xtraeme 	  "NVIDIA MCP67 IDE Controller",
    263      1.43   xtraeme 	  via_chip_map,
    264      1.43   xtraeme 	},
    265      1.43   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP67_SATA,
    266      1.43   xtraeme 	  0,
    267      1.43   xtraeme 	  "NVIDIA MCP67 Serial ATA Controller",
    268      1.43   xtraeme 	  via_sata_chip_map_6,
    269      1.43   xtraeme 	},
    270      1.43   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP67_SATA2,
    271      1.43   xtraeme 	  0,
    272      1.43   xtraeme 	  "NVIDIA MCP67 Serial ATA Controller",
    273      1.43   xtraeme 	  via_sata_chip_map_6,
    274      1.43   xtraeme 	},
    275      1.43   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP67_SATA3,
    276      1.43   xtraeme 	  0,
    277      1.43   xtraeme 	  "NVIDIA MCP67 Serial ATA Controller",
    278      1.43   xtraeme 	  via_sata_chip_map_6,
    279      1.43   xtraeme 	},
    280      1.43   xtraeme 	{ PCI_PRODUCT_NVIDIA_MCP67_SATA4,
    281      1.43   xtraeme 	  0,
    282      1.43   xtraeme 	  "NVIDIA MCP67 Serial ATA Controller",
    283      1.43   xtraeme 	  via_sata_chip_map_6,
    284      1.43   xtraeme 	},
    285       1.1    bouyer 	{ 0,
    286       1.1    bouyer 	  0,
    287       1.1    bouyer 	  NULL,
    288       1.1    bouyer 	  NULL
    289       1.1    bouyer 	}
    290       1.1    bouyer };
    291       1.1    bouyer 
    292       1.2   thorpej static const struct pciide_product_desc pciide_via_products[] =  {
    293       1.1    bouyer 	{ PCI_PRODUCT_VIATECH_VT82C586_IDE,
    294       1.1    bouyer 	  0,
    295       1.1    bouyer 	  NULL,
    296       1.1    bouyer 	  via_chip_map,
    297       1.1    bouyer 	 },
    298       1.1    bouyer 	{ PCI_PRODUCT_VIATECH_VT82C586A_IDE,
    299       1.1    bouyer 	  0,
    300       1.1    bouyer 	  NULL,
    301       1.1    bouyer 	  via_chip_map,
    302       1.1    bouyer 	},
    303      1.42   xtraeme 	{ PCI_PRODUCT_VIATECH_CX700_IDE,
    304      1.42   xtraeme 	  0,
    305      1.44   xtraeme 	  NULL,
    306      1.42   xtraeme 	  via_chip_map,
    307      1.42   xtraeme 	},
    308      1.57     rmind 	{ PCI_PRODUCT_VIATECH_CX700M2_IDE,
    309      1.57     rmind 	  0,
    310      1.57     rmind 	  NULL,
    311      1.57     rmind 	  via_chip_map,
    312      1.57     rmind 	},
    313  1.76.6.1       mrg 	{ PCI_PRODUCT_VIATECH_VT6410_RAID,
    314  1.76.6.1       mrg 	  0,
    315  1.76.6.1       mrg 	  NULL,
    316  1.76.6.1       mrg 	  via_chip_map,
    317  1.76.6.1       mrg 	},
    318      1.23       abs 	{ PCI_PRODUCT_VIATECH_VT6421_RAID,
    319      1.22       abs 	  0,
    320      1.76  jakllsch 	  "VIA Technologies VT6421 Serial ATA RAID Controller",
    321      1.35    bouyer 	  via_sata_chip_map_new,
    322      1.22       abs 	},
    323       1.1    bouyer 	{ PCI_PRODUCT_VIATECH_VT8237_SATA,
    324       1.6   mycroft 	  0,
    325       1.1    bouyer 	  "VIA Technologies VT8237 SATA Controller",
    326      1.35    bouyer 	  via_sata_chip_map_7,
    327      1.35    bouyer 	},
    328      1.35    bouyer 	{ PCI_PRODUCT_VIATECH_VT8237A_SATA,
    329      1.35    bouyer 	  0,
    330      1.35    bouyer 	  "VIA Technologies VT8237A SATA Controller",
    331      1.41   garbled 	  via_sata_chip_map_7,
    332       1.1    bouyer 	},
    333      1.60  jmcneill 	{ PCI_PRODUCT_VIATECH_VT8237A_SATA_2,
    334      1.60  jmcneill 	  0,
    335      1.60  jmcneill 	  "VIA Technologies VT8237A (5337) SATA Controller",
    336      1.60  jmcneill 	  via_sata_chip_map_7,
    337      1.60  jmcneill 	},
    338      1.29   xtraeme 	{ PCI_PRODUCT_VIATECH_VT8237R_SATA,
    339      1.29   xtraeme 	  0,
    340      1.29   xtraeme 	  "VIA Technologies VT8237R SATA Controller",
    341      1.63  jakllsch 	  via_sata_chip_map_7,
    342      1.29   xtraeme 	},
    343      1.58    nonaka 	{ PCI_PRODUCT_VIATECH_VT8237S_SATA,
    344      1.58    nonaka 	  0,
    345      1.58    nonaka 	  "VIA Technologies VT8237S SATA Controller",
    346      1.58    nonaka 	  via_sata_chip_map_7,
    347      1.58    nonaka 	},
    348       1.1    bouyer 	{ 0,
    349       1.1    bouyer 	  0,
    350       1.1    bouyer 	  NULL,
    351       1.1    bouyer 	  NULL
    352       1.1    bouyer 	}
    353       1.1    bouyer };
    354       1.1    bouyer 
    355       1.4     enami static const struct pciide_product_desc *
    356       1.4     enami viaide_lookup(pcireg_t id)
    357       1.4     enami {
    358       1.4     enami 
    359       1.4     enami 	switch (PCI_VENDOR(id)) {
    360       1.4     enami 	case PCI_VENDOR_VIATECH:
    361       1.4     enami 		return (pciide_lookup_product(id, pciide_via_products));
    362       1.4     enami 
    363       1.4     enami 	case PCI_VENDOR_AMD:
    364       1.4     enami 		return (pciide_lookup_product(id, pciide_amd_products));
    365       1.4     enami 
    366       1.4     enami 	case PCI_VENDOR_NVIDIA:
    367       1.4     enami 		return (pciide_lookup_product(id, pciide_nvidia_products));
    368       1.4     enami 	}
    369       1.4     enami 	return (NULL);
    370       1.4     enami }
    371       1.4     enami 
    372       1.2   thorpej static int
    373      1.53      cube viaide_match(device_t parent, cfdata_t match, void *aux)
    374       1.1    bouyer {
    375      1.76  jakllsch 	const struct pci_attach_args *pa = aux;
    376       1.1    bouyer 
    377       1.4     enami 	if (viaide_lookup(pa->pa_id) != NULL)
    378       1.4     enami 		return (2);
    379       1.1    bouyer 	return (0);
    380       1.1    bouyer }
    381       1.1    bouyer 
    382       1.2   thorpej static void
    383      1.53      cube viaide_attach(device_t parent, device_t self, void *aux)
    384       1.1    bouyer {
    385      1.76  jakllsch 	const struct pci_attach_args *pa = aux;
    386      1.53      cube 	struct pciide_softc *sc = device_private(self);
    387       1.4     enami 	const struct pciide_product_desc *pp;
    388       1.1    bouyer 
    389      1.53      cube 	sc->sc_wdcdev.sc_atac.atac_dev = self;
    390      1.53      cube 
    391       1.4     enami 	pp = viaide_lookup(pa->pa_id);
    392       1.1    bouyer 	if (pp == NULL)
    393       1.1    bouyer 		panic("viaide_attach");
    394       1.1    bouyer 	pciide_common_attach(sc, pa, pp);
    395      1.51     joerg 
    396      1.51     joerg 	if (!pmf_device_register(self, viaide_suspend, viaide_resume))
    397      1.51     joerg 		aprint_error_dev(self, "couldn't establish power handler\n");
    398       1.1    bouyer }
    399       1.1    bouyer 
    400       1.5      fvdl static int
    401      1.72    dyoung via_pcib_match(const struct pci_attach_args *pa)
    402       1.5      fvdl {
    403       1.5      fvdl 	if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE &&
    404       1.5      fvdl 	    PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_ISA &&
    405       1.5      fvdl 	    PCI_VENDOR(pa->pa_id) == PCI_VENDOR_VIATECH)
    406       1.5      fvdl 		return (1);
    407       1.5      fvdl 	return 0;
    408       1.5      fvdl }
    409       1.5      fvdl 
    410      1.51     joerg static bool
    411      1.68    dyoung viaide_suspend(device_t dv, const pmf_qual_t *qual)
    412      1.51     joerg {
    413      1.51     joerg 	struct pciide_softc *sc = device_private(dv);
    414      1.51     joerg 
    415      1.51     joerg 	sc->sc_pm_reg[0] = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_IDECONF(sc));
    416      1.51     joerg 	/* APO_DATATIM(sc) includes APO_UDMA(sc) */
    417      1.51     joerg 	sc->sc_pm_reg[1] = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_DATATIM(sc));
    418      1.51     joerg 	/* This two are VIA-only, but should be ignored by other devices. */
    419      1.51     joerg 	sc->sc_pm_reg[2] = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_CTLMISC(sc));
    420      1.51     joerg 	sc->sc_pm_reg[3] = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_MISCTIM(sc));
    421      1.51     joerg 
    422      1.51     joerg 	return true;
    423      1.51     joerg }
    424      1.51     joerg 
    425      1.51     joerg static bool
    426      1.68    dyoung viaide_resume(device_t dv, const pmf_qual_t *qual)
    427      1.51     joerg {
    428      1.51     joerg 	struct pciide_softc *sc = device_private(dv);
    429      1.51     joerg 
    430      1.51     joerg 	pci_conf_write(sc->sc_pc, sc->sc_tag, APO_IDECONF(sc),
    431      1.51     joerg 	    sc->sc_pm_reg[0]);
    432      1.51     joerg 	pci_conf_write(sc->sc_pc, sc->sc_tag, APO_DATATIM(sc),
    433      1.51     joerg 	    sc->sc_pm_reg[1]);
    434      1.51     joerg 	/* This two are VIA-only, but should be ignored by other devices. */
    435      1.51     joerg 	pci_conf_write(sc->sc_pc, sc->sc_tag, APO_CTLMISC(sc),
    436      1.51     joerg 	    sc->sc_pm_reg[2]);
    437      1.51     joerg 	pci_conf_write(sc->sc_pc, sc->sc_tag, APO_MISCTIM(sc),
    438      1.51     joerg 	    sc->sc_pm_reg[3]);
    439      1.51     joerg 
    440      1.51     joerg 	return true;
    441      1.51     joerg }
    442      1.51     joerg 
    443       1.2   thorpej static void
    444      1.72    dyoung via_chip_map(struct pciide_softc *sc, const struct pci_attach_args *pa)
    445       1.1    bouyer {
    446       1.1    bouyer 	struct pciide_channel *cp;
    447       1.1    bouyer 	pcireg_t interface = PCI_INTERFACE(pa->pa_class);
    448       1.1    bouyer 	pcireg_t vendor = PCI_VENDOR(pa->pa_id);
    449       1.1    bouyer 	int channel;
    450       1.1    bouyer 	u_int32_t ideconf;
    451       1.1    bouyer 	pcireg_t pcib_id, pcib_class;
    452       1.5      fvdl 	struct pci_attach_args pcib_pa;
    453       1.1    bouyer 
    454       1.1    bouyer 	if (pciide_chipen(sc, pa) == 0)
    455       1.1    bouyer 		return;
    456       1.1    bouyer 
    457       1.3     enami 	switch (vendor) {
    458       1.1    bouyer 	case PCI_VENDOR_VIATECH:
    459  1.76.6.1       mrg 		switch (PCI_PRODUCT(pa->pa_id)) {
    460  1.76.6.1       mrg 		case PCI_PRODUCT_VIATECH_VT6410_RAID:
    461  1.76.6.1       mrg 			aprint_normal_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    462  1.76.6.1       mrg 			    "VIA Technologies VT6410 IDE controller\n");
    463  1.76.6.1       mrg 			sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    464  1.76.6.1       mrg 			interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
    465  1.76.6.1       mrg 			    PCIIDE_INTERFACE_PCI(0) | PCIIDE_INTERFACE_PCI(1);
    466       1.1    bouyer 			break;
    467  1.76.6.1       mrg 		default:
    468  1.76.6.1       mrg 			/*
    469  1.76.6.1       mrg 			 * get a PCI tag for the ISA bridge.
    470  1.76.6.1       mrg 			 */
    471  1.76.6.1       mrg 			if (pci_find_device(&pcib_pa, via_pcib_match) == 0)
    472  1.76.6.1       mrg 				goto unknown;
    473  1.76.6.1       mrg 			pcib_id = pcib_pa.pa_id;
    474  1.76.6.1       mrg 			pcib_class = pcib_pa.pa_class;
    475  1.76.6.1       mrg 			aprint_normal_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    476  1.76.6.1       mrg 			    "VIA Technologies ");
    477  1.76.6.1       mrg 			switch (PCI_PRODUCT(pcib_id)) {
    478  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_VT82C586_ISA:
    479  1.76.6.1       mrg 				aprint_normal("VT82C586 (Apollo VP) ");
    480  1.76.6.1       mrg 				if(PCI_REVISION(pcib_class) >= 0x02) {
    481  1.76.6.1       mrg 					aprint_normal("ATA33 controller\n");
    482  1.76.6.1       mrg 					sc->sc_wdcdev.sc_atac.atac_udma_cap = 2;
    483  1.76.6.1       mrg 				} else {
    484  1.76.6.1       mrg 					aprint_normal("controller\n");
    485  1.76.6.1       mrg 					sc->sc_wdcdev.sc_atac.atac_udma_cap = 0;
    486  1.76.6.1       mrg 				}
    487  1.76.6.1       mrg 				break;
    488  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_VT82C596A:
    489  1.76.6.1       mrg 				aprint_normal("VT82C596A (Apollo Pro) ");
    490  1.76.6.1       mrg 				if (PCI_REVISION(pcib_class) >= 0x12) {
    491  1.76.6.1       mrg 					aprint_normal("ATA66 controller\n");
    492  1.76.6.1       mrg 					sc->sc_wdcdev.sc_atac.atac_udma_cap = 4;
    493  1.76.6.1       mrg 				} else {
    494  1.76.6.1       mrg 					aprint_normal("ATA33 controller\n");
    495  1.76.6.1       mrg 					sc->sc_wdcdev.sc_atac.atac_udma_cap = 2;
    496  1.76.6.1       mrg 				}
    497  1.76.6.1       mrg 				break;
    498  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_VT82C686A_ISA:
    499  1.76.6.1       mrg 				aprint_normal("VT82C686A (Apollo KX133) ");
    500  1.76.6.1       mrg 				if (PCI_REVISION(pcib_class) >= 0x40) {
    501  1.76.6.1       mrg 					aprint_normal("ATA100 controller\n");
    502  1.76.6.1       mrg 					sc->sc_wdcdev.sc_atac.atac_udma_cap = 5;
    503  1.76.6.1       mrg 				} else {
    504  1.76.6.1       mrg 					aprint_normal("ATA66 controller\n");
    505  1.76.6.1       mrg 					sc->sc_wdcdev.sc_atac.atac_udma_cap = 4;
    506  1.76.6.1       mrg 				}
    507  1.76.6.1       mrg 				break;
    508  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_VT8231:
    509  1.76.6.1       mrg 				aprint_normal("VT8231 ATA100 controller\n");
    510  1.76.6.1       mrg 				sc->sc_wdcdev.sc_atac.atac_udma_cap = 5;
    511  1.76.6.1       mrg 				break;
    512  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_VT8233:
    513  1.76.6.1       mrg 				aprint_normal("VT8233 ATA100 controller\n");
    514      1.17   thorpej 				sc->sc_wdcdev.sc_atac.atac_udma_cap = 5;
    515  1.76.6.1       mrg 				break;
    516  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_VT8233A:
    517  1.76.6.1       mrg 				aprint_normal("VT8233A ATA133 controller\n");
    518  1.76.6.1       mrg 				sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    519  1.76.6.1       mrg 				break;
    520  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_VT8235:
    521  1.76.6.1       mrg 				aprint_normal("VT8235 ATA133 controller\n");
    522  1.76.6.1       mrg 				sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    523  1.76.6.1       mrg 				break;
    524  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_VT8237:
    525  1.76.6.1       mrg 				aprint_normal("VT8237 ATA133 controller\n");
    526  1.76.6.1       mrg 				sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    527  1.76.6.1       mrg 				break;
    528  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_VT8237A_ISA:
    529  1.76.6.1       mrg 				aprint_normal("VT8237A ATA133 controller\n");
    530  1.76.6.1       mrg 				sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    531  1.76.6.1       mrg 				break;
    532  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_CX700:
    533  1.76.6.1       mrg 				aprint_normal("CX700 ATA133 controller\n");
    534  1.76.6.1       mrg 				sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    535  1.76.6.1       mrg 				break;
    536  1.76.6.1       mrg 			case PCI_PRODUCT_VIATECH_VT8251:
    537  1.76.6.1       mrg 				aprint_normal("VT8251 ATA133 controller\n");
    538  1.76.6.1       mrg 				sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    539  1.76.6.1       mrg 				break;
    540  1.76.6.1       mrg 			default:
    541  1.76.6.1       mrg 		unknown:
    542  1.76.6.1       mrg 				aprint_normal("unknown VIA ATA controller\n");
    543  1.76.6.1       mrg 				sc->sc_wdcdev.sc_atac.atac_udma_cap = 0;
    544       1.1    bouyer 			}
    545       1.1    bouyer 			break;
    546       1.1    bouyer 		}
    547       1.1    bouyer 		sc->sc_apo_regbase = APO_VIA_REGBASE;
    548       1.1    bouyer 		break;
    549       1.1    bouyer 	case PCI_VENDOR_AMD:
    550       1.1    bouyer 		switch (sc->sc_pp->ide_product) {
    551      1.11    bouyer 		case PCI_PRODUCT_AMD_PBC8111_IDE:
    552      1.17   thorpej 			sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    553      1.11    bouyer 			break;
    554      1.45   xtraeme 		case PCI_PRODUCT_AMD_CS5536_IDE:
    555       1.1    bouyer 		case PCI_PRODUCT_AMD_PBC766_IDE:
    556       1.1    bouyer 		case PCI_PRODUCT_AMD_PBC768_IDE:
    557      1.17   thorpej 			sc->sc_wdcdev.sc_atac.atac_udma_cap = 5;
    558       1.1    bouyer 			break;
    559       1.1    bouyer 		default:
    560      1.17   thorpej 			sc->sc_wdcdev.sc_atac.atac_udma_cap = 4;
    561       1.1    bouyer 		}
    562       1.1    bouyer 		sc->sc_apo_regbase = APO_AMD_REGBASE;
    563       1.1    bouyer 		break;
    564       1.1    bouyer 	case PCI_VENDOR_NVIDIA:
    565       1.1    bouyer 		switch (sc->sc_pp->ide_product) {
    566       1.1    bouyer 		case PCI_PRODUCT_NVIDIA_NFORCE_ATA100:
    567      1.17   thorpej 			sc->sc_wdcdev.sc_atac.atac_udma_cap = 5;
    568       1.1    bouyer 			break;
    569       1.1    bouyer 		case PCI_PRODUCT_NVIDIA_NFORCE2_ATA133:
    570      1.20  jdolecek 		case PCI_PRODUCT_NVIDIA_NFORCE2_400_ATA133:
    571       1.5      fvdl 		case PCI_PRODUCT_NVIDIA_NFORCE3_ATA133:
    572      1.19   xtraeme 		case PCI_PRODUCT_NVIDIA_NFORCE3_250_ATA133:
    573      1.21      kent 		case PCI_PRODUCT_NVIDIA_NFORCE4_ATA133:
    574      1.28   xtraeme 		case PCI_PRODUCT_NVIDIA_NFORCE430_ATA133:
    575      1.30   xtraeme 		case PCI_PRODUCT_NVIDIA_MCP04_IDE:
    576      1.30   xtraeme 		case PCI_PRODUCT_NVIDIA_MCP55_IDE:
    577      1.33   xtraeme 		case PCI_PRODUCT_NVIDIA_MCP61_IDE:
    578      1.33   xtraeme 		case PCI_PRODUCT_NVIDIA_MCP65_IDE:
    579      1.43   xtraeme 		case PCI_PRODUCT_NVIDIA_MCP67_IDE:
    580      1.47   xtraeme 		case PCI_PRODUCT_NVIDIA_MCP73_IDE:
    581      1.47   xtraeme 		case PCI_PRODUCT_NVIDIA_MCP77_IDE:
    582      1.17   thorpej 			sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    583       1.1    bouyer 			break;
    584       1.1    bouyer 		}
    585       1.1    bouyer 		sc->sc_apo_regbase = APO_NVIDIA_REGBASE;
    586       1.1    bouyer 		break;
    587       1.1    bouyer 	default:
    588       1.1    bouyer 		panic("via_chip_map: unknown vendor");
    589       1.1    bouyer 	}
    590       1.3     enami 
    591      1.53      cube 	aprint_verbose_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    592      1.53      cube 	    "bus-master DMA support present");
    593       1.1    bouyer 	pciide_mapreg_dma(sc, pa);
    594      1.39        ad 	aprint_verbose("\n");
    595      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_cap = ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
    596       1.1    bouyer 	if (sc->sc_dma_ok) {
    597      1.17   thorpej 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA;
    598       1.1    bouyer 		sc->sc_wdcdev.irqack = pciide_irqack;
    599      1.17   thorpej 		if (sc->sc_wdcdev.sc_atac.atac_udma_cap > 0)
    600      1.17   thorpej 			sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_UDMA;
    601       1.1    bouyer 	}
    602      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    603      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    604      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_set_modes = via_setup_channel;
    605      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
    606      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_nchannels = PCIIDE_NUM_CHANNELS;
    607       1.1    bouyer 
    608      1.41   garbled 	if (PCI_CLASS(pa->pa_class) == PCI_CLASS_MASS_STORAGE &&
    609      1.41   garbled 	    PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_RAID)
    610      1.41   garbled 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_RAID;
    611      1.41   garbled 
    612      1.15   thorpej 	wdc_allocate_regs(&sc->sc_wdcdev);
    613      1.15   thorpej 
    614      1.14   thorpej 	ATADEBUG_PRINT(("via_chip_map: old APO_IDECONF=0x%x, "
    615       1.1    bouyer 	    "APO_CTLMISC=0x%x, APO_DATATIM=0x%x, APO_UDMA=0x%x\n",
    616       1.1    bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, APO_IDECONF(sc)),
    617       1.1    bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, APO_CTLMISC(sc)),
    618       1.1    bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, APO_DATATIM(sc)),
    619       1.1    bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, APO_UDMA(sc))),
    620       1.1    bouyer 	    DEBUG_PROBE);
    621       1.1    bouyer 
    622       1.1    bouyer 	ideconf = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_IDECONF(sc));
    623      1.17   thorpej 	for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels;
    624      1.17   thorpej 	     channel++) {
    625       1.1    bouyer 		cp = &sc->pciide_channels[channel];
    626       1.1    bouyer 		if (pciide_chansetup(sc, channel, interface) == 0)
    627       1.1    bouyer 			continue;
    628       1.1    bouyer 
    629       1.1    bouyer 		if ((ideconf & APO_IDECONF_EN(channel)) == 0) {
    630      1.53      cube 			aprint_normal_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    631      1.53      cube 			    "%s channel ignored (disabled)\n", cp->name);
    632      1.15   thorpej 			cp->ata_channel.ch_flags |= ATACH_DISABLED;
    633       1.1    bouyer 			continue;
    634       1.1    bouyer 		}
    635      1.70  jakllsch 		via_mapchan(pa, cp, interface, pciide_pci_intr);
    636       1.1    bouyer 	}
    637       1.1    bouyer }
    638       1.1    bouyer 
    639       1.2   thorpej static void
    640      1.72    dyoung via_mapchan(const struct pci_attach_args *pa,	struct pciide_channel *cp,
    641      1.70  jakllsch     pcireg_t interface, int (*pci_intr)(void *))
    642      1.50       phx {
    643      1.50       phx 	struct ata_channel *wdc_cp;
    644      1.50       phx 	struct pciide_softc *sc;
    645      1.50       phx 	prop_bool_t compat_nat_enable;
    646      1.50       phx 
    647      1.50       phx 	wdc_cp = &cp->ata_channel;
    648      1.50       phx 	sc = CHAN_TO_PCIIDE(&cp->ata_channel);
    649      1.50       phx 	compat_nat_enable = prop_dictionary_get(
    650      1.53      cube 	    device_properties(sc->sc_wdcdev.sc_atac.atac_dev),
    651      1.53      cube 	      "use-compat-native-irq");
    652      1.50       phx 
    653      1.50       phx 	if (interface & PCIIDE_INTERFACE_PCI(wdc_cp->ch_channel)) {
    654      1.50       phx 		/* native mode with irq 14/15 requested? */
    655      1.50       phx 		if (compat_nat_enable != NULL &&
    656      1.50       phx 		    prop_bool_true(compat_nat_enable))
    657      1.70  jakllsch 			via_mapregs_compat_native(pa, cp);
    658      1.50       phx 		else
    659      1.70  jakllsch 			pciide_mapregs_native(pa, cp, pci_intr);
    660      1.50       phx 	} else {
    661      1.70  jakllsch 		pciide_mapregs_compat(pa, cp, wdc_cp->ch_channel);
    662      1.50       phx 		if ((cp->ata_channel.ch_flags & ATACH_DISABLED) == 0)
    663      1.50       phx 			pciide_map_compat_intr(pa, cp, wdc_cp->ch_channel);
    664      1.50       phx 	}
    665      1.50       phx 	wdcattach(wdc_cp);
    666      1.50       phx }
    667      1.50       phx 
    668      1.50       phx /*
    669      1.50       phx  * At least under certain (mis)configurations (e.g. on the "Pegasos" board)
    670      1.50       phx  * the VT8231-IDE's native mode only works with irq 14/15, and cannot be
    671      1.50       phx  * programmed to use a single native PCI irq alone. So we install an interrupt
    672      1.50       phx  * handler for each channel, as in compatibility mode.
    673      1.50       phx  */
    674      1.50       phx static void
    675      1.72    dyoung via_mapregs_compat_native(const struct pci_attach_args *pa,
    676      1.70  jakllsch     struct pciide_channel *cp)
    677      1.50       phx {
    678      1.50       phx 	struct ata_channel *wdc_cp;
    679      1.50       phx 	struct pciide_softc *sc;
    680      1.50       phx 
    681      1.50       phx 	wdc_cp = &cp->ata_channel;
    682      1.50       phx 	sc = CHAN_TO_PCIIDE(&cp->ata_channel);
    683      1.50       phx 
    684      1.50       phx 	/* XXX prevent pciide_mapregs_native from installing a handler */
    685      1.50       phx 	if (sc->sc_pci_ih == NULL)
    686      1.50       phx 		sc->sc_pci_ih = (void *)~0;
    687      1.70  jakllsch 	pciide_mapregs_native(pa, cp, NULL);
    688      1.50       phx 
    689      1.50       phx 	/* interrupts are fixed to 14/15, as in compatibility mode */
    690      1.55       phx 	cp->compat = 1;
    691      1.50       phx 	if ((wdc_cp->ch_flags & ATACH_DISABLED) == 0) {
    692      1.50       phx #ifdef __HAVE_PCIIDE_MACHDEP_COMPAT_INTR_ESTABLISH
    693      1.50       phx 		cp->ih = pciide_machdep_compat_intr_establish(
    694      1.53      cube 		    sc->sc_wdcdev.sc_atac.atac_dev, pa, wdc_cp->ch_channel,
    695      1.55       phx 		    pciide_compat_intr, cp);
    696      1.50       phx 		if (cp->ih == NULL) {
    697      1.50       phx #endif
    698      1.53      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    699      1.53      cube 			    "no compatibility interrupt for "
    700      1.53      cube 			    "use by %s channel\n", cp->name);
    701      1.50       phx 			wdc_cp->ch_flags |= ATACH_DISABLED;
    702      1.50       phx #ifdef __HAVE_PCIIDE_MACHDEP_COMPAT_INTR_ESTABLISH
    703      1.50       phx 		}
    704      1.50       phx 		sc->sc_pci_ih = cp->ih;  /* XXX */
    705      1.50       phx #endif
    706      1.50       phx 	}
    707      1.50       phx }
    708      1.50       phx 
    709      1.50       phx static void
    710      1.15   thorpej via_setup_channel(struct ata_channel *chp)
    711       1.1    bouyer {
    712       1.1    bouyer 	u_int32_t udmatim_reg, datatim_reg;
    713       1.1    bouyer 	u_int8_t idedma_ctl;
    714      1.18   thorpej 	int mode, drive, s;
    715       1.1    bouyer 	struct ata_drive_datas *drvp;
    716      1.17   thorpej 	struct atac_softc *atac = chp->ch_atac;
    717      1.16   thorpej 	struct pciide_channel *cp = CHAN_TO_PCHAN(chp);
    718      1.16   thorpej 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
    719       1.1    bouyer #ifndef PCIIDE_AMD756_ENABLEDMA
    720       1.1    bouyer 	int rev = PCI_REVISION(
    721       1.1    bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG));
    722       1.1    bouyer #endif
    723       1.1    bouyer 
    724       1.1    bouyer 	idedma_ctl = 0;
    725       1.1    bouyer 	datatim_reg = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_DATATIM(sc));
    726       1.1    bouyer 	udmatim_reg = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_UDMA(sc));
    727       1.9   thorpej 	datatim_reg &= ~APO_DATATIM_MASK(chp->ch_channel);
    728       1.9   thorpej 	udmatim_reg &= ~APO_UDMA_MASK(chp->ch_channel);
    729       1.1    bouyer 
    730       1.1    bouyer 	/* setup DMA if needed */
    731       1.1    bouyer 	pciide_channel_dma_setup(cp);
    732       1.1    bouyer 
    733       1.1    bouyer 	for (drive = 0; drive < 2; drive++) {
    734       1.1    bouyer 		drvp = &chp->ch_drive[drive];
    735       1.1    bouyer 		/* If no drive, skip */
    736       1.1    bouyer 		if ((drvp->drive_flags & DRIVE) == 0)
    737       1.1    bouyer 			continue;
    738       1.1    bouyer 		/* add timing values, setup DMA if needed */
    739       1.1    bouyer 		if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
    740       1.1    bouyer 		    (drvp->drive_flags & DRIVE_UDMA) == 0)) {
    741       1.1    bouyer 			mode = drvp->PIO_mode;
    742       1.1    bouyer 			goto pio;
    743       1.1    bouyer 		}
    744      1.17   thorpej 		if ((atac->atac_cap & ATAC_CAP_UDMA) &&
    745       1.1    bouyer 		    (drvp->drive_flags & DRIVE_UDMA)) {
    746       1.1    bouyer 			/* use Ultra/DMA */
    747      1.18   thorpej 			s = splbio();
    748       1.1    bouyer 			drvp->drive_flags &= ~DRIVE_DMA;
    749      1.18   thorpej 			splx(s);
    750       1.9   thorpej 			udmatim_reg |= APO_UDMA_EN(chp->ch_channel, drive) |
    751       1.9   thorpej 			    APO_UDMA_EN_MTH(chp->ch_channel, drive);
    752       1.3     enami 			switch (PCI_VENDOR(sc->sc_pci_id)) {
    753       1.1    bouyer 			case PCI_VENDOR_VIATECH:
    754      1.17   thorpej 				if (sc->sc_wdcdev.sc_atac.atac_udma_cap == 6) {
    755       1.1    bouyer 					/* 8233a */
    756       1.1    bouyer 					udmatim_reg |= APO_UDMA_TIME(
    757       1.9   thorpej 					    chp->ch_channel,
    758       1.1    bouyer 					    drive,
    759       1.1    bouyer 					    via_udma133_tim[drvp->UDMA_mode]);
    760      1.17   thorpej 				} else if (sc->sc_wdcdev.sc_atac.atac_udma_cap == 5) {
    761       1.1    bouyer 					/* 686b */
    762       1.1    bouyer 					udmatim_reg |= APO_UDMA_TIME(
    763       1.9   thorpej 					    chp->ch_channel,
    764       1.1    bouyer 					    drive,
    765       1.1    bouyer 					    via_udma100_tim[drvp->UDMA_mode]);
    766      1.17   thorpej 				} else if (sc->sc_wdcdev.sc_atac.atac_udma_cap == 4) {
    767       1.1    bouyer 					/* 596b or 686a */
    768       1.1    bouyer 					udmatim_reg |= APO_UDMA_CLK66(
    769       1.9   thorpej 					    chp->ch_channel);
    770       1.1    bouyer 					udmatim_reg |= APO_UDMA_TIME(
    771       1.9   thorpej 					    chp->ch_channel,
    772       1.1    bouyer 					    drive,
    773       1.1    bouyer 					    via_udma66_tim[drvp->UDMA_mode]);
    774       1.1    bouyer 				} else {
    775       1.1    bouyer 					/* 596a or 586b */
    776       1.1    bouyer 					udmatim_reg |= APO_UDMA_TIME(
    777       1.9   thorpej 					    chp->ch_channel,
    778       1.1    bouyer 					    drive,
    779       1.1    bouyer 					    via_udma33_tim[drvp->UDMA_mode]);
    780       1.1    bouyer 				}
    781       1.1    bouyer 				break;
    782       1.1    bouyer 			case PCI_VENDOR_AMD:
    783       1.1    bouyer 			case PCI_VENDOR_NVIDIA:
    784       1.9   thorpej 				udmatim_reg |= APO_UDMA_TIME(chp->ch_channel,
    785       1.1    bouyer 				    drive, amd7x6_udma_tim[drvp->UDMA_mode]);
    786       1.1    bouyer 				 break;
    787       1.1    bouyer 			}
    788       1.1    bouyer 			/* can use PIO timings, MW DMA unused */
    789       1.1    bouyer 			mode = drvp->PIO_mode;
    790       1.1    bouyer 		} else {
    791       1.1    bouyer 			/* use Multiword DMA, but only if revision is OK */
    792      1.18   thorpej 			s = splbio();
    793       1.1    bouyer 			drvp->drive_flags &= ~DRIVE_UDMA;
    794      1.18   thorpej 			splx(s);
    795       1.1    bouyer #ifndef PCIIDE_AMD756_ENABLEDMA
    796       1.1    bouyer 			/*
    797       1.1    bouyer 			 * The workaround doesn't seem to be necessary
    798       1.1    bouyer 			 * with all drives, so it can be disabled by
    799       1.1    bouyer 			 * PCIIDE_AMD756_ENABLEDMA. It causes a hard hang if
    800       1.1    bouyer 			 * triggered.
    801       1.1    bouyer 			 */
    802       1.1    bouyer 			if (PCI_VENDOR(sc->sc_pci_id) == PCI_VENDOR_AMD &&
    803       1.1    bouyer 			    sc->sc_pp->ide_product ==
    804       1.3     enami 			    PCI_PRODUCT_AMD_PBC756_IDE &&
    805       1.1    bouyer 			    AMD756_CHIPREV_DISABLEDMA(rev)) {
    806       1.1    bouyer 				aprint_normal(
    807       1.1    bouyer 				    "%s:%d:%d: multi-word DMA disabled due "
    808       1.1    bouyer 				    "to chip revision\n",
    809      1.53      cube 				    device_xname(
    810      1.53      cube 				      sc->sc_wdcdev.sc_atac.atac_dev),
    811       1.9   thorpej 				    chp->ch_channel, drive);
    812       1.1    bouyer 				mode = drvp->PIO_mode;
    813      1.18   thorpej 				s = splbio();
    814       1.1    bouyer 				drvp->drive_flags &= ~DRIVE_DMA;
    815      1.18   thorpej 				splx(s);
    816       1.1    bouyer 				goto pio;
    817       1.1    bouyer 			}
    818       1.1    bouyer #endif
    819       1.1    bouyer 			/* mode = min(pio, dma+2) */
    820       1.3     enami 			if (drvp->PIO_mode <= (drvp->DMA_mode + 2))
    821       1.1    bouyer 				mode = drvp->PIO_mode;
    822       1.1    bouyer 			else
    823       1.1    bouyer 				mode = drvp->DMA_mode + 2;
    824       1.1    bouyer 		}
    825       1.1    bouyer 		idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    826       1.1    bouyer 
    827       1.1    bouyer pio:		/* setup PIO mode */
    828       1.1    bouyer 		if (mode <= 2) {
    829       1.1    bouyer 			drvp->DMA_mode = 0;
    830       1.1    bouyer 			drvp->PIO_mode = 0;
    831       1.1    bouyer 			mode = 0;
    832       1.1    bouyer 		} else {
    833       1.1    bouyer 			drvp->PIO_mode = mode;
    834       1.1    bouyer 			drvp->DMA_mode = mode - 2;
    835       1.1    bouyer 		}
    836       1.1    bouyer 		datatim_reg |=
    837       1.9   thorpej 		    APO_DATATIM_PULSE(chp->ch_channel, drive,
    838       1.1    bouyer 			apollo_pio_set[mode]) |
    839       1.9   thorpej 		    APO_DATATIM_RECOV(chp->ch_channel, drive,
    840       1.1    bouyer 			apollo_pio_rec[mode]);
    841       1.1    bouyer 	}
    842       1.1    bouyer 	if (idedma_ctl != 0) {
    843       1.1    bouyer 		/* Add software bits in status register */
    844       1.7      fvdl 		bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
    845       1.1    bouyer 		    idedma_ctl);
    846       1.1    bouyer 	}
    847       1.1    bouyer 	pci_conf_write(sc->sc_pc, sc->sc_tag, APO_DATATIM(sc), datatim_reg);
    848       1.1    bouyer 	pci_conf_write(sc->sc_pc, sc->sc_tag, APO_UDMA(sc), udmatim_reg);
    849      1.14   thorpej 	ATADEBUG_PRINT(("via_chip_map: APO_DATATIM=0x%x, APO_UDMA=0x%x\n",
    850       1.1    bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, APO_DATATIM(sc)),
    851       1.1    bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, APO_UDMA(sc))), DEBUG_PROBE);
    852       1.1    bouyer }
    853       1.1    bouyer 
    854      1.35    bouyer static int
    855      1.76  jakllsch via_sata_chip_map_common(struct pciide_softc *sc,
    856      1.76  jakllsch     const struct pci_attach_args *cpa)
    857       1.1    bouyer {
    858      1.74    dyoung 	pcireg_t csr;
    859      1.36    bouyer 	int maptype, ret;
    860      1.76  jakllsch 	struct pci_attach_args pac, *pa = &pac;
    861      1.76  jakllsch 
    862      1.76  jakllsch 	pac = *cpa;
    863       1.1    bouyer 
    864       1.1    bouyer 	if (pciide_chipen(sc, pa) == 0)
    865      1.35    bouyer 		return 0;
    866       1.1    bouyer 
    867      1.53      cube 	aprint_verbose_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    868      1.53      cube 	    "bus-master DMA support present");
    869       1.1    bouyer 	pciide_mapreg_dma(sc, pa);
    870      1.39        ad 	aprint_verbose("\n");
    871       1.1    bouyer 
    872       1.1    bouyer 	if (sc->sc_dma_ok) {
    873      1.17   thorpej 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_UDMA | ATAC_CAP_DMA;
    874       1.1    bouyer 		sc->sc_wdcdev.irqack = pciide_irqack;
    875       1.1    bouyer 	}
    876      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    877      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    878      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    879      1.17   thorpej 
    880      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
    881      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_nchannels = PCIIDE_NUM_CHANNELS;
    882      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
    883      1.17   thorpej 	sc->sc_wdcdev.sc_atac.atac_set_modes = sata_setup_channel;
    884       1.1    bouyer 
    885      1.41   garbled 	if (PCI_CLASS(pa->pa_class) == PCI_CLASS_MASS_STORAGE &&
    886      1.41   garbled 	    PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_RAID)
    887      1.41   garbled 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_RAID;
    888      1.41   garbled 
    889      1.15   thorpej 	wdc_allocate_regs(&sc->sc_wdcdev);
    890      1.36    bouyer 	maptype = pci_mapreg_type(pa->pa_pc, pa->pa_tag,
    891      1.36    bouyer 	    PCI_MAPREG_START + 0x14);
    892      1.36    bouyer 	switch(maptype) {
    893      1.36    bouyer 	case PCI_MAPREG_TYPE_IO:
    894      1.36    bouyer 		ret = pci_mapreg_map(pa, PCI_MAPREG_START + 0x14,
    895      1.36    bouyer 		    PCI_MAPREG_TYPE_IO, 0, &sc->sc_ba5_st, &sc->sc_ba5_sh,
    896      1.70  jakllsch 		    NULL, &sc->sc_ba5_ss);
    897      1.36    bouyer 		break;
    898      1.36    bouyer 	case PCI_MAPREG_MEM_TYPE_32BIT:
    899      1.69    dyoung 		/*
    900      1.69    dyoung 		 * Enable memory-space access if it isn't already there.
    901      1.69    dyoung 		 */
    902      1.74    dyoung 		csr = pci_conf_read(pa->pa_pc, pa->pa_tag,
    903      1.74    dyoung 		    PCI_COMMAND_STATUS_REG);
    904      1.74    dyoung 		if ((csr & PCI_COMMAND_MEM_ENABLE) == 0 &&
    905      1.75    dyoung 		    (pa->pa_flags & PCI_FLAGS_MEM_OKAY) != 0) {
    906      1.69    dyoung 
    907      1.69    dyoung 			pci_conf_write(pa->pa_pc, pa->pa_tag,
    908      1.69    dyoung 			    PCI_COMMAND_STATUS_REG,
    909      1.69    dyoung 			    csr | PCI_COMMAND_MEM_ENABLE);
    910      1.69    dyoung 		}
    911      1.69    dyoung 
    912      1.36    bouyer 		ret = pci_mapreg_map(pa, PCI_MAPREG_START + 0x14,
    913      1.35    bouyer 		    PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT,
    914      1.35    bouyer 		    0, &sc->sc_ba5_st, &sc->sc_ba5_sh,
    915      1.70  jakllsch 		    NULL, &sc->sc_ba5_ss);
    916      1.36    bouyer 		break;
    917      1.36    bouyer 	default:
    918      1.53      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    919      1.54  dholland 		    "couldn't map sata regs, unsupported maptype (0x%x)\n",
    920      1.36    bouyer 		    maptype);
    921      1.36    bouyer 		return 0;
    922      1.36    bouyer 	}
    923      1.36    bouyer 	if (ret != 0) {
    924      1.53      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    925      1.53      cube 		    "couldn't map sata regs\n");
    926      1.36    bouyer 		return 0;
    927      1.35    bouyer 	}
    928      1.35    bouyer 	return 1;
    929      1.35    bouyer }
    930      1.35    bouyer 
    931      1.35    bouyer static void
    932      1.76  jakllsch via_sata_chip_map(struct pciide_softc *sc, const struct pci_attach_args *pa,
    933      1.35    bouyer     int satareg_shift)
    934      1.35    bouyer {
    935      1.35    bouyer 	struct pciide_channel *cp;
    936      1.35    bouyer 	struct ata_channel *wdc_cp;
    937      1.35    bouyer 	struct wdc_regs *wdr;
    938      1.73  jakllsch 	pcireg_t interface;
    939      1.35    bouyer 	int channel;
    940      1.35    bouyer 
    941      1.73  jakllsch 	interface = PCI_INTERFACE(pa->pa_class);
    942      1.73  jakllsch 
    943      1.35    bouyer 	if (via_sata_chip_map_common(sc, pa) == 0)
    944      1.35    bouyer 		return;
    945      1.35    bouyer 
    946      1.35    bouyer 	if (interface == 0) {
    947      1.35    bouyer 		ATADEBUG_PRINT(("via_sata_chip_map interface == 0\n"),
    948      1.35    bouyer 		    DEBUG_PROBE);
    949      1.35    bouyer 		interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
    950      1.35    bouyer 		    PCIIDE_INTERFACE_PCI(0) | PCIIDE_INTERFACE_PCI(1);
    951      1.35    bouyer 	}
    952      1.15   thorpej 
    953      1.17   thorpej 	for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels;
    954      1.17   thorpej 	     channel++) {
    955       1.1    bouyer 		cp = &sc->pciide_channels[channel];
    956       1.1    bouyer 		if (pciide_chansetup(sc, channel, interface) == 0)
    957       1.1    bouyer 			continue;
    958      1.35    bouyer 		wdc_cp = &cp->ata_channel;
    959      1.35    bouyer 		wdr = CHAN_TO_WDC_REGS(wdc_cp);
    960      1.35    bouyer 		wdr->sata_iot = sc->sc_ba5_st;
    961      1.35    bouyer 		wdr->sata_baseioh = sc->sc_ba5_sh;
    962      1.35    bouyer 		if (bus_space_subregion(wdr->sata_iot, wdr->sata_baseioh,
    963      1.64  jakllsch 		    (wdc_cp->ch_channel << satareg_shift) + 0x0, 4,
    964      1.35    bouyer 		    &wdr->sata_status) != 0) {
    965      1.53      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    966      1.53      cube 			    "couldn't map channel %d sata_status regs\n",
    967      1.35    bouyer 			    wdc_cp->ch_channel);
    968      1.35    bouyer 			continue;
    969      1.35    bouyer 		}
    970      1.35    bouyer 		if (bus_space_subregion(wdr->sata_iot, wdr->sata_baseioh,
    971      1.64  jakllsch 		    (wdc_cp->ch_channel << satareg_shift) + 0x4, 4,
    972      1.35    bouyer 		    &wdr->sata_error) != 0) {
    973      1.53      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    974      1.53      cube 			    "couldn't map channel %d sata_error regs\n",
    975      1.35    bouyer 			    wdc_cp->ch_channel);
    976      1.35    bouyer 			continue;
    977      1.35    bouyer 		}
    978      1.35    bouyer 		if (bus_space_subregion(wdr->sata_iot, wdr->sata_baseioh,
    979      1.64  jakllsch 		    (wdc_cp->ch_channel << satareg_shift) + 0x8, 4,
    980      1.35    bouyer 		    &wdr->sata_control) != 0) {
    981      1.53      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    982      1.53      cube 			    "couldn't map channel %d sata_control regs\n",
    983      1.35    bouyer 			    wdc_cp->ch_channel);
    984      1.35    bouyer 			continue;
    985      1.35    bouyer 		}
    986      1.35    bouyer 		sc->sc_wdcdev.sc_atac.atac_probe = wdc_sataprobe;
    987      1.70  jakllsch 		pciide_mapchan(pa, cp, interface, pciide_pci_intr);
    988       1.1    bouyer 	}
    989       1.1    bouyer }
    990      1.35    bouyer 
    991      1.35    bouyer static void
    992      1.72    dyoung via_sata_chip_map_6(struct pciide_softc *sc, const struct pci_attach_args *pa)
    993      1.35    bouyer {
    994      1.35    bouyer 	via_sata_chip_map(sc, pa, 6);
    995      1.35    bouyer }
    996      1.35    bouyer 
    997      1.35    bouyer static void
    998      1.72    dyoung via_sata_chip_map_7(struct pciide_softc *sc, const struct pci_attach_args *pa)
    999      1.35    bouyer {
   1000      1.35    bouyer 	via_sata_chip_map(sc, pa, 7);
   1001      1.35    bouyer }
   1002      1.35    bouyer 
   1003      1.35    bouyer static void
   1004      1.76  jakllsch via_vt6421_mapreg_dma(struct pciide_softc *sc, const struct pci_attach_args *pa)
   1005      1.76  jakllsch {
   1006      1.76  jakllsch 	struct pciide_channel *pc;
   1007      1.76  jakllsch 	int chan, reg;
   1008      1.76  jakllsch 	bus_size_t size;
   1009      1.76  jakllsch 
   1010      1.76  jakllsch 	sc->sc_dma_ok = (pci_mapreg_map(pa, PCIIDE_REG_BUS_MASTER_DMA,
   1011      1.76  jakllsch 	    PCI_MAPREG_TYPE_IO, 0, &sc->sc_dma_iot, &sc->sc_dma_ioh,
   1012      1.76  jakllsch 	    NULL, &sc->sc_dma_ios) == 0);
   1013      1.76  jakllsch 	sc->sc_dmat = pa->pa_dmat;
   1014      1.76  jakllsch 	if (sc->sc_dma_ok == 0) {
   1015      1.76  jakllsch 		aprint_verbose(", but unused (couldn't map registers)");
   1016      1.76  jakllsch 	} else {
   1017      1.76  jakllsch 		sc->sc_wdcdev.dma_arg = sc;
   1018      1.76  jakllsch 		sc->sc_wdcdev.dma_init = pciide_dma_init;
   1019      1.76  jakllsch 		sc->sc_wdcdev.dma_start = pciide_dma_start;
   1020      1.76  jakllsch 		sc->sc_wdcdev.dma_finish = pciide_dma_finish;
   1021      1.76  jakllsch 	}
   1022      1.76  jakllsch 
   1023      1.76  jakllsch 	if (device_cfdata(sc->sc_wdcdev.sc_atac.atac_dev)->cf_flags &
   1024      1.76  jakllsch 	    PCIIDE_OPTIONS_NODMA) {
   1025      1.76  jakllsch 		aprint_verbose(
   1026      1.76  jakllsch 		    ", but unused (forced off by config file)");
   1027      1.76  jakllsch 		sc->sc_dma_ok = 0;
   1028      1.76  jakllsch 	}
   1029      1.76  jakllsch 
   1030      1.76  jakllsch 	if (sc->sc_dma_ok == 0)
   1031      1.76  jakllsch 		return;
   1032      1.76  jakllsch 
   1033      1.76  jakllsch 	for (chan = 0; chan < 4; chan++) {
   1034      1.76  jakllsch 		pc = &sc->pciide_channels[chan];
   1035      1.76  jakllsch 		for (reg = 0; reg < IDEDMA_NREGS; reg++) {
   1036      1.76  jakllsch 			size = 4;
   1037      1.76  jakllsch 			if (size > (IDEDMA_SCH_OFFSET - reg))
   1038      1.76  jakllsch 				size = IDEDMA_SCH_OFFSET - reg;
   1039      1.76  jakllsch 			if (bus_space_subregion(sc->sc_dma_iot, sc->sc_dma_ioh,
   1040      1.76  jakllsch 			    IDEDMA_SCH_OFFSET * chan + reg, size,
   1041      1.76  jakllsch 			    &pc->dma_iohs[reg]) != 0) {
   1042      1.76  jakllsch 				sc->sc_dma_ok = 0;
   1043      1.76  jakllsch 				aprint_verbose(", but can't subregion offset "
   1044      1.76  jakllsch 				               "%d size %lu",
   1045      1.76  jakllsch 					       reg, (u_long)size);
   1046      1.76  jakllsch 				return;
   1047      1.76  jakllsch 			}
   1048      1.76  jakllsch 		}
   1049      1.76  jakllsch 	}
   1050      1.76  jakllsch }
   1051      1.76  jakllsch 
   1052      1.76  jakllsch static int
   1053      1.76  jakllsch via_vt6421_chansetup(struct pciide_softc *sc, int channel)
   1054      1.76  jakllsch {
   1055      1.76  jakllsch 	struct pciide_channel *cp = &sc->pciide_channels[channel];
   1056      1.76  jakllsch 
   1057      1.76  jakllsch 	sc->wdc_chanarray[channel] = &cp->ata_channel;
   1058      1.76  jakllsch 
   1059      1.76  jakllsch 	cp->ata_channel.ch_channel = channel;
   1060      1.76  jakllsch 	cp->ata_channel.ch_atac = &sc->sc_wdcdev.sc_atac;
   1061      1.76  jakllsch 	cp->ata_channel.ch_queue =
   1062      1.76  jakllsch 	    malloc(sizeof(struct ata_queue), M_DEVBUF, M_NOWAIT);
   1063      1.76  jakllsch 	cp->ata_channel.ch_ndrive = 2;
   1064      1.76  jakllsch 	if (cp->ata_channel.ch_queue == NULL) {
   1065      1.76  jakllsch 		aprint_error("%s channel %d: "
   1066      1.76  jakllsch 		    "can't allocate memory for command queue",
   1067      1.76  jakllsch 		    device_xname(sc->sc_wdcdev.sc_atac.atac_dev), channel);
   1068      1.76  jakllsch 		return 0;
   1069      1.76  jakllsch 	}
   1070      1.76  jakllsch 	return 1;
   1071      1.76  jakllsch }
   1072      1.76  jakllsch 
   1073      1.76  jakllsch static void
   1074      1.72    dyoung via_sata_chip_map_new(struct pciide_softc *sc,
   1075      1.76  jakllsch     const struct pci_attach_args *pa)
   1076      1.35    bouyer {
   1077      1.35    bouyer 	struct pciide_channel *cp;
   1078      1.35    bouyer 	struct ata_channel *wdc_cp;
   1079      1.35    bouyer 	struct wdc_regs *wdr;
   1080      1.35    bouyer 	int channel;
   1081      1.35    bouyer 	pci_intr_handle_t intrhandle;
   1082      1.35    bouyer 	const char *intrstr;
   1083      1.35    bouyer 	int i;
   1084      1.35    bouyer 
   1085      1.76  jakllsch 	if (pciide_chipen(sc, pa) == 0)
   1086      1.76  jakllsch 		return;
   1087      1.76  jakllsch 
   1088      1.76  jakllsch 	sc->sc_apo_regbase = APO_VIA_VT6421_REGBASE;
   1089      1.76  jakllsch 
   1090      1.76  jakllsch 	if (pci_mapreg_map(pa, PCI_BAR(5), PCI_MAPREG_TYPE_IO, 0,
   1091      1.76  jakllsch 	    &sc->sc_ba5_st, &sc->sc_ba5_sh, NULL, &sc->sc_ba5_ss) != 0) {
   1092      1.76  jakllsch 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
   1093      1.76  jakllsch 		    "couldn't map SATA regs\n");
   1094      1.76  jakllsch 	}
   1095      1.73  jakllsch 
   1096      1.76  jakllsch 	aprint_verbose_dev(sc->sc_wdcdev.sc_atac.atac_dev,
   1097      1.76  jakllsch 	    "bus-master DMA support present");
   1098      1.76  jakllsch 	via_vt6421_mapreg_dma(sc, pa);
   1099      1.76  jakllsch 	aprint_verbose("\n");
   1100      1.35    bouyer 
   1101      1.76  jakllsch 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
   1102      1.76  jakllsch 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
   1103      1.76  jakllsch 	if (sc->sc_dma_ok) {
   1104      1.76  jakllsch 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA | ATAC_CAP_UDMA;
   1105      1.76  jakllsch 		sc->sc_wdcdev.irqack = pciide_irqack;
   1106      1.76  jakllsch 		sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
   1107      1.76  jakllsch 		sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
   1108      1.35    bouyer 	}
   1109      1.76  jakllsch 	sc->sc_wdcdev.sc_atac.atac_set_modes = sata_setup_channel;
   1110      1.76  jakllsch 
   1111      1.76  jakllsch 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
   1112      1.76  jakllsch 	sc->sc_wdcdev.sc_atac.atac_nchannels = 3;
   1113      1.76  jakllsch 
   1114      1.76  jakllsch 	wdc_allocate_regs(&sc->sc_wdcdev);
   1115      1.35    bouyer 
   1116      1.35    bouyer 	if (pci_intr_map(pa, &intrhandle) != 0) {
   1117      1.53      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
   1118      1.53      cube 		    "couldn't map native-PCI interrupt\n");
   1119      1.35    bouyer 		return;
   1120      1.35    bouyer 	}
   1121      1.35    bouyer 	intrstr = pci_intr_string(pa->pa_pc, intrhandle);
   1122      1.35    bouyer 	sc->sc_pci_ih = pci_intr_establish(pa->pa_pc,
   1123      1.35    bouyer 	    intrhandle, IPL_BIO, pciide_pci_intr, sc);
   1124      1.35    bouyer 	if (sc->sc_pci_ih == NULL) {
   1125      1.53      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
   1126      1.53      cube 		    "couldn't establish native-PCI interrupt");
   1127      1.35    bouyer 		if (intrstr != NULL)
   1128      1.35    bouyer 		    aprint_error(" at %s", intrstr);
   1129      1.35    bouyer 		aprint_error("\n");
   1130      1.35    bouyer 		return;
   1131      1.35    bouyer 	}
   1132      1.53      cube 	aprint_normal_dev(sc->sc_wdcdev.sc_atac.atac_dev,
   1133      1.53      cube 	    "using %s for native-PCI interrupt\n",
   1134      1.35    bouyer 	    intrstr ? intrstr : "unknown interrupt");
   1135      1.35    bouyer 
   1136      1.35    bouyer 	for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels;
   1137      1.35    bouyer 	     channel++) {
   1138      1.35    bouyer 		cp = &sc->pciide_channels[channel];
   1139      1.76  jakllsch 		if (via_vt6421_chansetup(sc, channel) == 0)
   1140      1.35    bouyer 			continue;
   1141      1.76  jakllsch 		cp->ata_channel.ch_ndrive = 2;
   1142      1.35    bouyer 		wdc_cp = &cp->ata_channel;
   1143      1.35    bouyer 		wdr = CHAN_TO_WDC_REGS(wdc_cp);
   1144      1.35    bouyer 
   1145      1.35    bouyer 		wdr->sata_iot = sc->sc_ba5_st;
   1146      1.35    bouyer 		wdr->sata_baseioh = sc->sc_ba5_sh;
   1147      1.35    bouyer 		if (bus_space_subregion(wdr->sata_iot, wdr->sata_baseioh,
   1148      1.64  jakllsch 		    (wdc_cp->ch_channel << 6) + 0x0, 4,
   1149      1.35    bouyer 		    &wdr->sata_status) != 0) {
   1150      1.53      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
   1151      1.53      cube 			    "couldn't map channel %d sata_status regs\n",
   1152      1.35    bouyer 			    wdc_cp->ch_channel);
   1153      1.35    bouyer 			continue;
   1154      1.35    bouyer 		}
   1155      1.35    bouyer 		if (bus_space_subregion(wdr->sata_iot, wdr->sata_baseioh,
   1156      1.64  jakllsch 		    (wdc_cp->ch_channel << 6) + 0x4, 4,
   1157      1.35    bouyer 		    &wdr->sata_error) != 0) {
   1158      1.53      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
   1159      1.53      cube 			    "couldn't map channel %d sata_error regs\n",
   1160      1.35    bouyer 			    wdc_cp->ch_channel);
   1161      1.35    bouyer 			continue;
   1162      1.35    bouyer 		}
   1163      1.35    bouyer 		if (bus_space_subregion(wdr->sata_iot, wdr->sata_baseioh,
   1164      1.64  jakllsch 		    (wdc_cp->ch_channel << 6) + 0x8, 4,
   1165      1.35    bouyer 		    &wdr->sata_control) != 0) {
   1166      1.53      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
   1167      1.53      cube 			    "couldn't map channel %d sata_control regs\n",
   1168      1.35    bouyer 			    wdc_cp->ch_channel);
   1169      1.35    bouyer 			continue;
   1170      1.35    bouyer 		}
   1171      1.35    bouyer 
   1172      1.76  jakllsch 		if (pci_mapreg_map(pa, PCI_BAR(wdc_cp->ch_channel),
   1173      1.35    bouyer 		    PCI_MAPREG_TYPE_IO, 0, &wdr->cmd_iot, &wdr->cmd_baseioh,
   1174      1.70  jakllsch 		    NULL, &wdr->cmd_ios) != 0) {
   1175      1.53      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
   1176      1.53      cube 			    "couldn't map %s channel regs\n", cp->name);
   1177      1.35    bouyer 		}
   1178      1.35    bouyer 		wdr->ctl_iot = wdr->cmd_iot;
   1179      1.35    bouyer 		for (i = 0; i < WDC_NREG; i++) {
   1180      1.35    bouyer 			if (bus_space_subregion(wdr->cmd_iot,
   1181      1.35    bouyer 			    wdr->cmd_baseioh, i, i == 0 ? 4 : 1,
   1182      1.35    bouyer 			    &wdr->cmd_iohs[i]) != 0) {
   1183      1.53      cube 				aprint_error_dev(
   1184      1.53      cube 				    sc->sc_wdcdev.sc_atac.atac_dev,
   1185      1.53      cube 				    "couldn't subregion %s "
   1186      1.53      cube 				    "channel cmd regs\n", cp->name);
   1187      1.35    bouyer 				return;
   1188      1.35    bouyer 			}
   1189      1.35    bouyer 		}
   1190      1.35    bouyer 		if (bus_space_subregion(wdr->cmd_iot, wdr->cmd_baseioh,
   1191      1.35    bouyer 		    WDC_NREG + 2, 1,  &wdr->ctl_ioh) != 0) {
   1192      1.53      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
   1193      1.53      cube 			    "couldn't map channel %d ctl regs\n", channel);
   1194      1.35    bouyer 			return;
   1195      1.35    bouyer 		}
   1196      1.35    bouyer 		wdc_init_shadow_regs(wdc_cp);
   1197      1.65   tsutsui 		wdr->data32iot = wdr->cmd_iot;
   1198      1.65   tsutsui 		wdr->data32ioh = wdr->cmd_iohs[wd_data];
   1199      1.35    bouyer 		wdcattach(wdc_cp);
   1200      1.35    bouyer 	}
   1201      1.35    bouyer }
   1202