Home | History | Annotate | Line # | Download | only in pci
satalink.c revision 1.55
      1  1.55  jdolecek /*	$NetBSD: satalink.c,v 1.55 2017/10/20 07:06:08 jdolecek Exp $	*/
      2   1.2   thorpej 
      3   1.2   thorpej /*-
      4   1.2   thorpej  * Copyright (c) 2003 The NetBSD Foundation, Inc.
      5   1.2   thorpej  * All rights reserved.
      6   1.2   thorpej  *
      7   1.2   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.2   thorpej  * by Jason R. Thorpe of Wasabi Systems, Inc.
      9   1.2   thorpej  *
     10   1.2   thorpej  * Redistribution and use in source and binary forms, with or without
     11   1.2   thorpej  * modification, are permitted provided that the following conditions
     12   1.2   thorpej  * are met:
     13   1.2   thorpej  * 1. Redistributions of source code must retain the above copyright
     14   1.2   thorpej  *    notice, this list of conditions and the following disclaimer.
     15   1.2   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.2   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17   1.2   thorpej  *    documentation and/or other materials provided with the distribution.
     18   1.2   thorpej  *
     19   1.2   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.2   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.2   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.2   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.2   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.2   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.2   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.2   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.2   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.2   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.2   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1   thorpej  */
     31   1.1   thorpej 
     32  1.30   xtraeme #include <sys/cdefs.h>
     33  1.55  jdolecek __KERNEL_RCSID(0, "$NetBSD: satalink.c,v 1.55 2017/10/20 07:06:08 jdolecek Exp $");
     34  1.30   xtraeme 
     35   1.1   thorpej #include <sys/param.h>
     36   1.1   thorpej #include <sys/systm.h>
     37   1.1   thorpej #include <sys/malloc.h>
     38   1.1   thorpej 
     39   1.1   thorpej #include <dev/pci/pcivar.h>
     40   1.1   thorpej #include <dev/pci/pcidevs.h>
     41   1.1   thorpej #include <dev/pci/pciidereg.h>
     42   1.1   thorpej #include <dev/pci/pciidevar.h>
     43   1.1   thorpej #include <dev/pci/pciide_sii3112_reg.h>
     44   1.1   thorpej 
     45   1.2   thorpej #include <dev/ata/satareg.h>
     46  1.15   thorpej #include <dev/ata/satavar.h>
     47   1.8    martin #include <dev/ata/atareg.h>
     48   1.1   thorpej 
     49   1.4   thorpej /*
     50   1.4   thorpej  * Register map for BA5 register space, indexed by channel.
     51   1.4   thorpej  */
     52   1.4   thorpej static const struct {
     53   1.4   thorpej 	bus_addr_t	ba5_IDEDMA_CMD;
     54   1.4   thorpej 	bus_addr_t	ba5_IDEDMA_CTL;
     55   1.4   thorpej 	bus_addr_t	ba5_IDEDMA_TBL;
     56   1.4   thorpej 	bus_addr_t	ba5_IDEDMA_CMD2;
     57   1.4   thorpej 	bus_addr_t	ba5_IDEDMA_CTL2;
     58   1.4   thorpej 	bus_addr_t	ba5_IDE_TF0;
     59   1.4   thorpej 	bus_addr_t	ba5_IDE_TF1;
     60   1.4   thorpej 	bus_addr_t	ba5_IDE_TF2;
     61   1.4   thorpej 	bus_addr_t	ba5_IDE_TF3;
     62   1.4   thorpej 	bus_addr_t	ba5_IDE_TF4;
     63   1.4   thorpej 	bus_addr_t	ba5_IDE_TF5;
     64   1.4   thorpej 	bus_addr_t	ba5_IDE_TF6;
     65   1.4   thorpej 	bus_addr_t	ba5_IDE_TF7;
     66   1.4   thorpej 	bus_addr_t	ba5_IDE_TF8;
     67   1.4   thorpej 	bus_addr_t	ba5_IDE_RAD;
     68   1.4   thorpej 	bus_addr_t	ba5_IDE_TF9;
     69   1.4   thorpej 	bus_addr_t	ba5_IDE_TF10;
     70   1.4   thorpej 	bus_addr_t	ba5_IDE_TF11;
     71   1.4   thorpej 	bus_addr_t	ba5_IDE_TF12;
     72   1.4   thorpej 	bus_addr_t	ba5_IDE_TF13;
     73   1.4   thorpej 	bus_addr_t	ba5_IDE_TF14;
     74   1.4   thorpej 	bus_addr_t	ba5_IDE_TF15;
     75   1.4   thorpej 	bus_addr_t	ba5_IDE_TF16;
     76   1.4   thorpej 	bus_addr_t	ba5_IDE_TF17;
     77   1.4   thorpej 	bus_addr_t	ba5_IDE_TF18;
     78   1.4   thorpej 	bus_addr_t	ba5_IDE_TF19;
     79   1.4   thorpej 	bus_addr_t	ba5_IDE_RABC;
     80   1.4   thorpej 	bus_addr_t	ba5_IDE_CMD_STS;
     81   1.4   thorpej 	bus_addr_t	ba5_IDE_CFG_STS;
     82   1.4   thorpej 	bus_addr_t	ba5_IDE_DTM;
     83   1.4   thorpej 	bus_addr_t	ba5_SControl;
     84   1.4   thorpej 	bus_addr_t	ba5_SStatus;
     85   1.4   thorpej 	bus_addr_t	ba5_SError;
     86   1.5   thorpej 	bus_addr_t	ba5_SActive;		/* 3114 */
     87   1.5   thorpej 	bus_addr_t	ba5_SMisc;
     88   1.5   thorpej 	bus_addr_t	ba5_PHY_CONFIG;
     89   1.5   thorpej 	bus_addr_t	ba5_SIEN;
     90   1.5   thorpej 	bus_addr_t	ba5_SFISCfg;
     91   1.4   thorpej } satalink_ba5_regmap[] = {
     92   1.5   thorpej 	{	/* Channel 0 */
     93   1.4   thorpej 		.ba5_IDEDMA_CMD		=	0x000,
     94   1.4   thorpej 		.ba5_IDEDMA_CTL		=	0x002,
     95   1.4   thorpej 		.ba5_IDEDMA_TBL		=	0x004,
     96   1.4   thorpej 		.ba5_IDEDMA_CMD2	=	0x010,
     97   1.4   thorpej 		.ba5_IDEDMA_CTL2	=	0x012,
     98   1.4   thorpej 		.ba5_IDE_TF0		=	0x080,	/* wd_data */
     99   1.4   thorpej 		.ba5_IDE_TF1		=	0x081,	/* wd_error */
    100   1.4   thorpej 		.ba5_IDE_TF2		=	0x082,	/* wd_seccnt */
    101   1.4   thorpej 		.ba5_IDE_TF3		=	0x083,	/* wd_sector */
    102   1.4   thorpej 		.ba5_IDE_TF4		=	0x084,	/* wd_cyl_lo */
    103   1.4   thorpej 		.ba5_IDE_TF5		=	0x085,	/* wd_cyl_hi */
    104   1.4   thorpej 		.ba5_IDE_TF6		=	0x086,	/* wd_sdh */
    105   1.4   thorpej 		.ba5_IDE_TF7		=	0x087,	/* wd_command */
    106   1.4   thorpej 		.ba5_IDE_TF8		=	0x08a,	/* wd_altsts */
    107   1.4   thorpej 		.ba5_IDE_RAD		=	0x08c,
    108   1.4   thorpej 		.ba5_IDE_TF9		=	0x091,	/* Features 2 */
    109   1.4   thorpej 		.ba5_IDE_TF10		=	0x092,	/* Sector Count 2 */
    110   1.4   thorpej 		.ba5_IDE_TF11		=	0x093,	/* Start Sector 2 */
    111   1.4   thorpej 		.ba5_IDE_TF12		=	0x094,	/* Cylinder Low 2 */
    112   1.4   thorpej 		.ba5_IDE_TF13		=	0x095,	/* Cylinder High 2 */
    113   1.4   thorpej 		.ba5_IDE_TF14		=	0x096,	/* Device/Head 2 */
    114   1.4   thorpej 		.ba5_IDE_TF15		=	0x097,	/* Cmd Sts 2 */
    115   1.4   thorpej 		.ba5_IDE_TF16		=	0x098,	/* Sector Count 2 ext */
    116   1.4   thorpej 		.ba5_IDE_TF17		=	0x099,	/* Start Sector 2 ext */
    117   1.4   thorpej 		.ba5_IDE_TF18		=	0x09a,	/* Cyl Low 2 ext */
    118   1.4   thorpej 		.ba5_IDE_TF19		=	0x09b,	/* Cyl High 2 ext */
    119   1.4   thorpej 		.ba5_IDE_RABC		=	0x09c,
    120   1.4   thorpej 		.ba5_IDE_CMD_STS	=	0x0a0,
    121   1.4   thorpej 		.ba5_IDE_CFG_STS	=	0x0a1,
    122   1.4   thorpej 		.ba5_IDE_DTM		=	0x0b4,
    123   1.4   thorpej 		.ba5_SControl		=	0x100,
    124   1.4   thorpej 		.ba5_SStatus		=	0x104,
    125   1.4   thorpej 		.ba5_SError		=	0x108,
    126   1.5   thorpej 		.ba5_SActive		=	0x10c,
    127   1.5   thorpej 		.ba5_SMisc		=	0x140,
    128   1.5   thorpej 		.ba5_PHY_CONFIG		=	0x144,
    129   1.5   thorpej 		.ba5_SIEN		=	0x148,
    130   1.5   thorpej 		.ba5_SFISCfg		=	0x14c,
    131   1.4   thorpej 	},
    132   1.5   thorpej 	{	/* Channel 1 */
    133   1.4   thorpej 		.ba5_IDEDMA_CMD		=	0x008,
    134   1.4   thorpej 		.ba5_IDEDMA_CTL		=	0x00a,
    135   1.4   thorpej 		.ba5_IDEDMA_TBL		=	0x00c,
    136   1.4   thorpej 		.ba5_IDEDMA_CMD2	=	0x018,
    137   1.4   thorpej 		.ba5_IDEDMA_CTL2	=	0x01a,
    138   1.4   thorpej 		.ba5_IDE_TF0		=	0x0c0,	/* wd_data */
    139   1.4   thorpej 		.ba5_IDE_TF1		=	0x0c1,	/* wd_error */
    140   1.4   thorpej 		.ba5_IDE_TF2		=	0x0c2,	/* wd_seccnt */
    141   1.4   thorpej 		.ba5_IDE_TF3		=	0x0c3,	/* wd_sector */
    142   1.4   thorpej 		.ba5_IDE_TF4		=	0x0c4,	/* wd_cyl_lo */
    143   1.4   thorpej 		.ba5_IDE_TF5		=	0x0c5,	/* wd_cyl_hi */
    144   1.4   thorpej 		.ba5_IDE_TF6		=	0x0c6,	/* wd_sdh */
    145   1.4   thorpej 		.ba5_IDE_TF7		=	0x0c7,	/* wd_command */
    146   1.4   thorpej 		.ba5_IDE_TF8		=	0x0ca,	/* wd_altsts */
    147   1.4   thorpej 		.ba5_IDE_RAD		=	0x0cc,
    148   1.4   thorpej 		.ba5_IDE_TF9		=	0x0d1,	/* Features 2 */
    149   1.4   thorpej 		.ba5_IDE_TF10		=	0x0d2,	/* Sector Count 2 */
    150   1.4   thorpej 		.ba5_IDE_TF11		=	0x0d3,	/* Start Sector 2 */
    151   1.4   thorpej 		.ba5_IDE_TF12		=	0x0d4,	/* Cylinder Low 2 */
    152   1.4   thorpej 		.ba5_IDE_TF13		=	0x0d5,	/* Cylinder High 2 */
    153   1.4   thorpej 		.ba5_IDE_TF14		=	0x0d6,	/* Device/Head 2 */
    154   1.4   thorpej 		.ba5_IDE_TF15		=	0x0d7,	/* Cmd Sts 2 */
    155   1.4   thorpej 		.ba5_IDE_TF16		=	0x0d8,	/* Sector Count 2 ext */
    156   1.4   thorpej 		.ba5_IDE_TF17		=	0x0d9,	/* Start Sector 2 ext */
    157   1.4   thorpej 		.ba5_IDE_TF18		=	0x0da,	/* Cyl Low 2 ext */
    158   1.4   thorpej 		.ba5_IDE_TF19		=	0x0db,	/* Cyl High 2 ext */
    159   1.4   thorpej 		.ba5_IDE_RABC		=	0x0dc,
    160   1.4   thorpej 		.ba5_IDE_CMD_STS	=	0x0e0,
    161   1.4   thorpej 		.ba5_IDE_CFG_STS	=	0x0e1,
    162   1.4   thorpej 		.ba5_IDE_DTM		=	0x0f4,
    163   1.4   thorpej 		.ba5_SControl		=	0x180,
    164   1.4   thorpej 		.ba5_SStatus		=	0x184,
    165   1.4   thorpej 		.ba5_SError		=	0x188,
    166   1.5   thorpej 		.ba5_SActive		=	0x18c,
    167   1.5   thorpej 		.ba5_SMisc		=	0x1c0,
    168   1.5   thorpej 		.ba5_PHY_CONFIG		=	0x1c4,
    169   1.5   thorpej 		.ba5_SIEN		=	0x1c8,
    170   1.5   thorpej 		.ba5_SFISCfg		=	0x1cc,
    171   1.5   thorpej 	},
    172   1.5   thorpej 	{	/* Channel 2 (3114) */
    173   1.5   thorpej 		.ba5_IDEDMA_CMD		=	0x200,
    174   1.5   thorpej 		.ba5_IDEDMA_CTL		=	0x202,
    175   1.5   thorpej 		.ba5_IDEDMA_TBL		=	0x204,
    176   1.5   thorpej 		.ba5_IDEDMA_CMD2	=	0x210,
    177   1.5   thorpej 		.ba5_IDEDMA_CTL2	=	0x212,
    178   1.5   thorpej 		.ba5_IDE_TF0		=	0x280,	/* wd_data */
    179   1.5   thorpej 		.ba5_IDE_TF1		=	0x281,	/* wd_error */
    180   1.5   thorpej 		.ba5_IDE_TF2		=	0x282,	/* wd_seccnt */
    181   1.5   thorpej 		.ba5_IDE_TF3		=	0x283,	/* wd_sector */
    182   1.5   thorpej 		.ba5_IDE_TF4		=	0x284,	/* wd_cyl_lo */
    183   1.5   thorpej 		.ba5_IDE_TF5		=	0x285,	/* wd_cyl_hi */
    184   1.5   thorpej 		.ba5_IDE_TF6		=	0x286,	/* wd_sdh */
    185   1.5   thorpej 		.ba5_IDE_TF7		=	0x287,	/* wd_command */
    186   1.5   thorpej 		.ba5_IDE_TF8		=	0x28a,	/* wd_altsts */
    187   1.5   thorpej 		.ba5_IDE_RAD		=	0x28c,
    188   1.5   thorpej 		.ba5_IDE_TF9		=	0x291,	/* Features 2 */
    189   1.5   thorpej 		.ba5_IDE_TF10		=	0x292,	/* Sector Count 2 */
    190   1.5   thorpej 		.ba5_IDE_TF11		=	0x293,	/* Start Sector 2 */
    191   1.5   thorpej 		.ba5_IDE_TF12		=	0x294,	/* Cylinder Low 2 */
    192   1.5   thorpej 		.ba5_IDE_TF13		=	0x295,	/* Cylinder High 2 */
    193   1.5   thorpej 		.ba5_IDE_TF14		=	0x296,	/* Device/Head 2 */
    194   1.5   thorpej 		.ba5_IDE_TF15		=	0x297,	/* Cmd Sts 2 */
    195   1.5   thorpej 		.ba5_IDE_TF16		=	0x298,	/* Sector Count 2 ext */
    196   1.5   thorpej 		.ba5_IDE_TF17		=	0x299,	/* Start Sector 2 ext */
    197   1.5   thorpej 		.ba5_IDE_TF18		=	0x29a,	/* Cyl Low 2 ext */
    198   1.5   thorpej 		.ba5_IDE_TF19		=	0x29b,	/* Cyl High 2 ext */
    199   1.5   thorpej 		.ba5_IDE_RABC		=	0x29c,
    200   1.5   thorpej 		.ba5_IDE_CMD_STS	=	0x2a0,
    201   1.5   thorpej 		.ba5_IDE_CFG_STS	=	0x2a1,
    202   1.5   thorpej 		.ba5_IDE_DTM		=	0x2b4,
    203   1.5   thorpej 		.ba5_SControl		=	0x300,
    204   1.5   thorpej 		.ba5_SStatus		=	0x304,
    205   1.5   thorpej 		.ba5_SError		=	0x308,
    206   1.5   thorpej 		.ba5_SActive		=	0x30c,
    207   1.5   thorpej 		.ba5_SMisc		=	0x340,
    208   1.5   thorpej 		.ba5_PHY_CONFIG		=	0x344,
    209   1.5   thorpej 		.ba5_SIEN		=	0x348,
    210   1.5   thorpej 		.ba5_SFISCfg		=	0x34c,
    211   1.5   thorpej 	},
    212   1.5   thorpej 	{	/* Channel 3 (3114) */
    213   1.5   thorpej 		.ba5_IDEDMA_CMD		=	0x208,
    214   1.5   thorpej 		.ba5_IDEDMA_CTL		=	0x20a,
    215   1.5   thorpej 		.ba5_IDEDMA_TBL		=	0x20c,
    216   1.5   thorpej 		.ba5_IDEDMA_CMD2	=	0x218,
    217   1.5   thorpej 		.ba5_IDEDMA_CTL2	=	0x21a,
    218   1.5   thorpej 		.ba5_IDE_TF0		=	0x2c0,	/* wd_data */
    219   1.5   thorpej 		.ba5_IDE_TF1		=	0x2c1,	/* wd_error */
    220   1.5   thorpej 		.ba5_IDE_TF2		=	0x2c2,	/* wd_seccnt */
    221   1.5   thorpej 		.ba5_IDE_TF3		=	0x2c3,	/* wd_sector */
    222   1.5   thorpej 		.ba5_IDE_TF4		=	0x2c4,	/* wd_cyl_lo */
    223   1.5   thorpej 		.ba5_IDE_TF5		=	0x2c5,	/* wd_cyl_hi */
    224   1.5   thorpej 		.ba5_IDE_TF6		=	0x2c6,	/* wd_sdh */
    225   1.5   thorpej 		.ba5_IDE_TF7		=	0x2c7,	/* wd_command */
    226   1.5   thorpej 		.ba5_IDE_TF8		=	0x2ca,	/* wd_altsts */
    227   1.5   thorpej 		.ba5_IDE_RAD		=	0x2cc,
    228   1.5   thorpej 		.ba5_IDE_TF9		=	0x2d1,	/* Features 2 */
    229   1.5   thorpej 		.ba5_IDE_TF10		=	0x2d2,	/* Sector Count 2 */
    230   1.5   thorpej 		.ba5_IDE_TF11		=	0x2d3,	/* Start Sector 2 */
    231   1.5   thorpej 		.ba5_IDE_TF12		=	0x2d4,	/* Cylinder Low 2 */
    232   1.5   thorpej 		.ba5_IDE_TF13		=	0x2d5,	/* Cylinder High 2 */
    233   1.5   thorpej 		.ba5_IDE_TF14		=	0x2d6,	/* Device/Head 2 */
    234   1.5   thorpej 		.ba5_IDE_TF15		=	0x2d7,	/* Cmd Sts 2 */
    235   1.5   thorpej 		.ba5_IDE_TF16		=	0x2d8,	/* Sector Count 2 ext */
    236   1.5   thorpej 		.ba5_IDE_TF17		=	0x2d9,	/* Start Sector 2 ext */
    237   1.5   thorpej 		.ba5_IDE_TF18		=	0x2da,	/* Cyl Low 2 ext */
    238   1.5   thorpej 		.ba5_IDE_TF19		=	0x2db,	/* Cyl High 2 ext */
    239   1.5   thorpej 		.ba5_IDE_RABC		=	0x2dc,
    240   1.5   thorpej 		.ba5_IDE_CMD_STS	=	0x2e0,
    241   1.5   thorpej 		.ba5_IDE_CFG_STS	=	0x2e1,
    242   1.5   thorpej 		.ba5_IDE_DTM		=	0x2f4,
    243   1.5   thorpej 		.ba5_SControl		=	0x380,
    244   1.5   thorpej 		.ba5_SStatus		=	0x384,
    245   1.5   thorpej 		.ba5_SError		=	0x388,
    246   1.5   thorpej 		.ba5_SActive		=	0x38c,
    247   1.5   thorpej 		.ba5_SMisc		=	0x3c0,
    248   1.5   thorpej 		.ba5_PHY_CONFIG		=	0x3c4,
    249   1.5   thorpej 		.ba5_SIEN		=	0x3c8,
    250   1.5   thorpej 		.ba5_SFISCfg		=	0x3cc,
    251   1.5   thorpej 	},
    252   1.4   thorpej };
    253   1.4   thorpej 
    254   1.5   thorpej #define	ba5_SIS		0x214		/* summary interrupt status */
    255   1.5   thorpej 
    256   1.5   thorpej /* Interrupt steering bit in BA5[0x200]. */
    257   1.5   thorpej #define	IDEDMA_CMD_INT_STEER	(1U << 1)
    258   1.5   thorpej 
    259  1.36      cube static int  satalink_match(device_t, cfdata_t, void *);
    260  1.36      cube static void satalink_attach(device_t, device_t, void *);
    261   1.1   thorpej 
    262  1.36      cube CFATTACH_DECL_NEW(satalink, sizeof(struct pciide_softc),
    263  1.51  jakllsch     satalink_match, satalink_attach, pciide_detach, NULL);
    264   1.1   thorpej 
    265  1.43    dyoung static void sii3112_chip_map(struct pciide_softc*,
    266  1.43    dyoung     const struct pci_attach_args*);
    267  1.43    dyoung static void sii3114_chip_map(struct pciide_softc*,
    268  1.43    dyoung     const struct pci_attach_args*);
    269  1.19   thorpej static void sii3112_drv_probe(struct ata_channel*);
    270  1.19   thorpej static void sii3112_setup_channel(struct ata_channel*);
    271   1.1   thorpej 
    272   1.1   thorpej static const struct pciide_product_desc pciide_satalink_products[] =  {
    273   1.1   thorpej 	{ PCI_PRODUCT_CMDTECH_3112,
    274   1.1   thorpej 	  0,
    275   1.1   thorpej 	  "Silicon Image SATALink 3112",
    276   1.1   thorpej 	  sii3112_chip_map,
    277   1.1   thorpej 	},
    278  1.13    sekiya 	{ PCI_PRODUCT_CMDTECH_3512,
    279  1.13    sekiya 	  0,
    280  1.13    sekiya 	  "Silicon Image SATALink 3512",
    281  1.13    sekiya 	  sii3112_chip_map,
    282  1.13    sekiya 	},
    283  1.17   msaitoh 	{ PCI_PRODUCT_CMDTECH_AAR_1210SA,
    284  1.17   msaitoh 	  0,
    285  1.17   msaitoh 	  "Adaptec AAR-1210SA serial ATA RAID controller",
    286  1.17   msaitoh 	  sii3112_chip_map,
    287  1.17   msaitoh 	},
    288   1.5   thorpej 	{ PCI_PRODUCT_CMDTECH_3114,
    289   1.5   thorpej 	  0,
    290   1.5   thorpej 	  "Silicon Image SATALink 3114",
    291   1.5   thorpej 	  sii3114_chip_map,
    292   1.5   thorpej 	},
    293  1.41       mrg 	{ PCI_PRODUCT_ATI_IXP_SATA_300,
    294  1.41       mrg 	  0,
    295  1.41       mrg 	  "ATI IXP 300 SATA",
    296  1.41       mrg 	  sii3112_chip_map,
    297  1.41       mrg 	},
    298   1.1   thorpej 	{ 0,
    299   1.1   thorpej 	  0,
    300   1.1   thorpej 	  NULL,
    301   1.1   thorpej 	  NULL
    302   1.1   thorpej 	}
    303   1.1   thorpej };
    304   1.1   thorpej 
    305   1.1   thorpej static int
    306  1.36      cube satalink_match(device_t parent, cfdata_t match, void *aux)
    307   1.1   thorpej {
    308   1.1   thorpej 	struct pci_attach_args *pa = aux;
    309   1.1   thorpej 
    310   1.1   thorpej 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_CMDTECH) {
    311   1.1   thorpej 		if (pciide_lookup_product(pa->pa_id, pciide_satalink_products))
    312   1.1   thorpej 			return (2);
    313   1.1   thorpej 	}
    314   1.1   thorpej 	return (0);
    315   1.1   thorpej }
    316   1.1   thorpej 
    317   1.1   thorpej static void
    318  1.36      cube satalink_attach(device_t parent, device_t self, void *aux)
    319   1.1   thorpej {
    320   1.1   thorpej 	struct pci_attach_args *pa = aux;
    321  1.36      cube 	struct pciide_softc *sc = device_private(self);
    322  1.36      cube 
    323  1.36      cube 	sc->sc_wdcdev.sc_atac.atac_dev = self;
    324   1.1   thorpej 
    325   1.1   thorpej 	pciide_common_attach(sc, pa,
    326   1.1   thorpej 	    pciide_lookup_product(pa->pa_id, pciide_satalink_products));
    327   1.1   thorpej 
    328   1.1   thorpej }
    329   1.1   thorpej 
    330  1.27     perry static inline uint32_t
    331   1.5   thorpej ba5_read_4_ind(struct pciide_softc *sc, bus_addr_t reg)
    332   1.5   thorpej {
    333   1.5   thorpej 	uint32_t rv;
    334   1.5   thorpej 	int s;
    335   1.5   thorpej 
    336   1.5   thorpej 	s = splbio();
    337   1.5   thorpej 	pci_conf_write(sc->sc_pc, sc->sc_tag, SII3112_BA5_IND_ADDR, reg);
    338   1.5   thorpej 	rv = pci_conf_read(sc->sc_pc, sc->sc_tag, SII3112_BA5_IND_DATA);
    339   1.5   thorpej 	splx(s);
    340   1.5   thorpej 
    341   1.5   thorpej 	return (rv);
    342   1.5   thorpej }
    343   1.5   thorpej 
    344  1.27     perry static inline uint32_t
    345   1.2   thorpej ba5_read_4(struct pciide_softc *sc, bus_addr_t reg)
    346   1.2   thorpej {
    347   1.2   thorpej 
    348   1.2   thorpej 	if (__predict_true(sc->sc_ba5_en != 0))
    349   1.2   thorpej 		return (bus_space_read_4(sc->sc_ba5_st, sc->sc_ba5_sh, reg));
    350   1.2   thorpej 
    351   1.5   thorpej 	return (ba5_read_4_ind(sc, reg));
    352   1.2   thorpej }
    353   1.2   thorpej 
    354   1.4   thorpej #define	BA5_READ_4(sc, chan, reg)					\
    355   1.4   thorpej 	ba5_read_4((sc), satalink_ba5_regmap[(chan)].reg)
    356   1.4   thorpej 
    357  1.27     perry static inline void
    358   1.5   thorpej ba5_write_4_ind(struct pciide_softc *sc, bus_addr_t reg, uint32_t val)
    359   1.5   thorpej {
    360   1.5   thorpej 	int s;
    361   1.5   thorpej 
    362   1.5   thorpej 	s = splbio();
    363   1.5   thorpej 	pci_conf_write(sc->sc_pc, sc->sc_tag, SII3112_BA5_IND_ADDR, reg);
    364   1.5   thorpej 	pci_conf_write(sc->sc_pc, sc->sc_tag, SII3112_BA5_IND_DATA, val);
    365   1.5   thorpej 	splx(s);
    366   1.5   thorpej }
    367   1.5   thorpej 
    368  1.27     perry static inline void
    369   1.2   thorpej ba5_write_4(struct pciide_softc *sc, bus_addr_t reg, uint32_t val)
    370   1.2   thorpej {
    371   1.2   thorpej 
    372   1.2   thorpej 	if (__predict_true(sc->sc_ba5_en != 0))
    373   1.2   thorpej 		bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh, reg, val);
    374   1.5   thorpej 	else
    375   1.5   thorpej 		ba5_write_4_ind(sc, reg, val);
    376   1.2   thorpej }
    377   1.2   thorpej 
    378   1.4   thorpej #define	BA5_WRITE_4(sc, chan, reg, val)					\
    379   1.4   thorpej 	ba5_write_4((sc), satalink_ba5_regmap[(chan)].reg, (val))
    380   1.4   thorpej 
    381  1.25     ragge /*
    382  1.25     ragge  * When the Silicon Image 3112 retries a PCI memory read command,
    383  1.25     ragge  * it may retry it as a memory read multiple command under some
    384  1.25     ragge  * circumstances.  This can totally confuse some PCI controllers,
    385  1.25     ragge  * so ensure that it will never do this by making sure that the
    386  1.25     ragge  * Read Threshold (FIFO Read Request Control) field of the FIFO
    387  1.25     ragge  * Valid Byte Count and Control registers for both channels (BA5
    388  1.25     ragge  * offset 0x40 and 0x44) are set to be at least as large as the
    389  1.25     ragge  * cacheline size register.
    390  1.25     ragge  * This may also happen on the 3114 (ragge 050527)
    391  1.25     ragge  */
    392  1.25     ragge static void
    393  1.43    dyoung sii_fixup_cacheline(struct pciide_softc *sc, const struct pci_attach_args *pa,
    394  1.43    dyoung     int n)
    395  1.25     ragge {
    396  1.35        ws 	pcireg_t cls, reg;
    397  1.35        ws 	int i;
    398  1.35        ws 	static bus_addr_t addr[] = { 0x40, 0x44, 0x240, 0x244 };
    399  1.25     ragge 
    400  1.25     ragge 	cls = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_BHLC_REG);
    401  1.25     ragge 	cls = (cls >> PCI_CACHELINE_SHIFT) & PCI_CACHELINE_MASK;
    402  1.25     ragge 	cls *= 4;
    403  1.25     ragge 	if (cls > 224) {
    404  1.25     ragge 		cls = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_BHLC_REG);
    405  1.25     ragge 		cls &= ~(PCI_CACHELINE_MASK << PCI_CACHELINE_SHIFT);
    406  1.25     ragge 		cls |= ((224/4) << PCI_CACHELINE_SHIFT);
    407  1.25     ragge 		pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_BHLC_REG, cls);
    408  1.25     ragge 		cls = 224;
    409  1.25     ragge 	}
    410  1.25     ragge 	if (cls < 32)
    411  1.25     ragge 		cls = 32;
    412  1.25     ragge 	cls = (cls + 31) / 32;
    413  1.35        ws 	for (i = 0; i < n; i++) {
    414  1.35        ws 		reg = ba5_read_4(sc, addr[i]);
    415  1.35        ws 		if ((reg & 0x7) < cls)
    416  1.35        ws 			ba5_write_4(sc, addr[i], (reg & 0x07) | cls);
    417  1.35        ws 	}
    418  1.25     ragge }
    419  1.25     ragge 
    420   1.1   thorpej static void
    421  1.43    dyoung sii3112_chip_map(struct pciide_softc *sc, const struct pci_attach_args *pa)
    422   1.1   thorpej {
    423   1.1   thorpej 	struct pciide_channel *cp;
    424   1.2   thorpej 	pcireg_t interface, scs_cmd, cfgctl;
    425   1.1   thorpej 	int channel;
    426   1.1   thorpej 
    427   1.1   thorpej 	if (pciide_chipen(sc, pa) == 0)
    428   1.1   thorpej 		return;
    429   1.1   thorpej 
    430   1.5   thorpej #define	SII3112_RESET_BITS						\
    431   1.5   thorpej 	(SCS_CMD_PBM_RESET | SCS_CMD_ARB_RESET |			\
    432   1.5   thorpej 	 SCS_CMD_FF1_RESET | SCS_CMD_FF0_RESET |			\
    433   1.5   thorpej 	 SCS_CMD_IDE1_RESET | SCS_CMD_IDE0_RESET)
    434   1.5   thorpej 
    435   1.5   thorpej 	/*
    436   1.5   thorpej 	 * Reset everything and then unblock all of the interrupts.
    437   1.5   thorpej 	 */
    438   1.2   thorpej 	scs_cmd = pci_conf_read(pa->pa_pc, pa->pa_tag, SII3112_SCS_CMD);
    439   1.2   thorpej 	pci_conf_write(pa->pa_pc, pa->pa_tag, SII3112_SCS_CMD,
    440   1.5   thorpej 		       scs_cmd | SII3112_RESET_BITS);
    441   1.5   thorpej 	delay(50 * 1000);
    442   1.5   thorpej 	pci_conf_write(pa->pa_pc, pa->pa_tag, SII3112_SCS_CMD,
    443   1.2   thorpej 		       scs_cmd & SCS_CMD_BA5_EN);
    444   1.5   thorpej 	delay(50 * 1000);
    445   1.2   thorpej 
    446   1.2   thorpej 	if (scs_cmd & SCS_CMD_BA5_EN) {
    447  1.36      cube 		aprint_verbose_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    448  1.36      cube 		    "SATALink BA5 register space enabled\n");
    449   1.2   thorpej 		if (pci_mapreg_map(pa, PCI_MAPREG_START + 0x14,
    450   1.2   thorpej 				   PCI_MAPREG_TYPE_MEM|
    451   1.2   thorpej 				   PCI_MAPREG_MEM_TYPE_32BIT, 0,
    452   1.2   thorpej 				   &sc->sc_ba5_st, &sc->sc_ba5_sh,
    453  1.42  jakllsch 				   NULL, &sc->sc_ba5_ss) != 0)
    454  1.36      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    455  1.36      cube 			    "unable to map SATALink BA5 register space\n");
    456   1.2   thorpej 		else
    457   1.2   thorpej 			sc->sc_ba5_en = 1;
    458   1.2   thorpej 	} else {
    459  1.36      cube 		aprint_verbose_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    460  1.36      cube 		    "SATALink BA5 register space disabled\n");
    461   1.2   thorpej 
    462   1.2   thorpej 		cfgctl = pci_conf_read(pa->pa_pc, pa->pa_tag,
    463   1.2   thorpej 				       SII3112_PCI_CFGCTL);
    464   1.2   thorpej 		pci_conf_write(pa->pa_pc, pa->pa_tag, SII3112_PCI_CFGCTL,
    465   1.2   thorpej 			       cfgctl | CFGCTL_BA5INDEN);
    466   1.2   thorpej 	}
    467   1.2   thorpej 
    468  1.36      cube 	aprint_verbose_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    469  1.36      cube 	    "bus-master DMA support present");
    470   1.1   thorpej 	pciide_mapreg_dma(sc, pa);
    471  1.34        ad 	aprint_verbose("\n");
    472   1.1   thorpej 
    473   1.1   thorpej 	/*
    474   1.1   thorpej 	 * Rev. <= 0x01 of the 3112 have a bug that can cause data
    475   1.1   thorpej 	 * corruption if DMA transfers cross an 8K boundary.  This is
    476   1.1   thorpej 	 * apparently hard to tickle, but we'll go ahead and play it
    477   1.1   thorpej 	 * safe.
    478   1.1   thorpej 	 */
    479  1.40       mrg 	if ((PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_CMDTECH_3112 ||
    480  1.40       mrg 	     PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_CMDTECH_AAR_1210SA) &&
    481  1.40       mrg 	    PCI_REVISION(pa->pa_class) <= 0x01) {
    482   1.1   thorpej 		sc->sc_dma_maxsegsz = 8192;
    483   1.1   thorpej 		sc->sc_dma_boundary = 8192;
    484   1.1   thorpej 	}
    485   1.1   thorpej 
    486  1.35        ws 	sii_fixup_cacheline(sc, pa, 2);
    487  1.16    briggs 
    488  1.23       skd 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
    489  1.21   thorpej 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    490   1.1   thorpej 	if (sc->sc_dma_ok) {
    491  1.23       skd 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA | ATAC_CAP_UDMA;
    492   1.1   thorpej 		sc->sc_wdcdev.irqack = pciide_irqack;
    493  1.21   thorpej 		sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    494  1.21   thorpej 		sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    495   1.1   thorpej 	}
    496  1.21   thorpej 	sc->sc_wdcdev.sc_atac.atac_set_modes = sii3112_setup_channel;
    497   1.1   thorpej 
    498   1.2   thorpej 	/* We can use SControl and SStatus to probe for drives. */
    499  1.21   thorpej 	sc->sc_wdcdev.sc_atac.atac_probe = sii3112_drv_probe;
    500   1.2   thorpej 
    501  1.21   thorpej 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
    502  1.21   thorpej 	sc->sc_wdcdev.sc_atac.atac_nchannels = PCIIDE_NUM_CHANNELS;
    503  1.48    bouyer 	sc->sc_wdcdev.wdc_maxdrives = 1;
    504   1.1   thorpej 
    505  1.19   thorpej 	wdc_allocate_regs(&sc->sc_wdcdev);
    506  1.19   thorpej 
    507  1.24     perry 	/*
    508   1.2   thorpej 	 * The 3112 either identifies itself as a RAID storage device
    509   1.2   thorpej 	 * or a Misc storage device.  Fake up the interface bits for
    510   1.2   thorpej 	 * what our driver expects.
    511   1.1   thorpej 	 */
    512   1.1   thorpej 	if (PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_IDE) {
    513   1.1   thorpej 		interface = PCI_INTERFACE(pa->pa_class);
    514   1.1   thorpej 	} else {
    515   1.1   thorpej 		interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
    516   1.1   thorpej 		    PCIIDE_INTERFACE_PCI(0) | PCIIDE_INTERFACE_PCI(1);
    517   1.1   thorpej 	}
    518   1.1   thorpej 
    519  1.21   thorpej 	for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels;
    520  1.21   thorpej 	     channel++) {
    521   1.1   thorpej 		cp = &sc->pciide_channels[channel];
    522   1.1   thorpej 		if (pciide_chansetup(sc, channel, interface) == 0)
    523   1.1   thorpej 			continue;
    524  1.42  jakllsch 		pciide_mapchan(pa, cp, interface, pciide_pci_intr);
    525   1.1   thorpej 	}
    526   1.2   thorpej }
    527   1.2   thorpej 
    528   1.5   thorpej static void
    529  1.43    dyoung sii3114_mapreg_dma(struct pciide_softc *sc, const struct pci_attach_args *pa)
    530   1.5   thorpej {
    531   1.5   thorpej 	struct pciide_channel *pc;
    532   1.5   thorpej 	int chan, reg;
    533   1.5   thorpej 	bus_size_t size;
    534   1.5   thorpej 
    535   1.5   thorpej 	sc->sc_wdcdev.dma_arg = sc;
    536   1.5   thorpej 	sc->sc_wdcdev.dma_init = pciide_dma_init;
    537   1.5   thorpej 	sc->sc_wdcdev.dma_start = pciide_dma_start;
    538   1.5   thorpej 	sc->sc_wdcdev.dma_finish = pciide_dma_finish;
    539   1.5   thorpej 
    540  1.36      cube 	if (device_cfdata(sc->sc_wdcdev.sc_atac.atac_dev)->cf_flags &
    541   1.5   thorpej 	    PCIIDE_OPTIONS_NODMA) {
    542  1.34        ad 		aprint_verbose(
    543   1.5   thorpej 		    ", but unused (forced off by config file)");
    544   1.5   thorpej 		sc->sc_dma_ok = 0;
    545   1.5   thorpej 		return;
    546   1.5   thorpej 	}
    547   1.5   thorpej 
    548   1.5   thorpej 	/*
    549   1.5   thorpej 	 * Slice off a subregion of BA5 for each of the channel's DMA
    550   1.5   thorpej 	 * registers.
    551   1.5   thorpej 	 */
    552   1.5   thorpej 
    553   1.5   thorpej 	sc->sc_dma_iot = sc->sc_ba5_st;
    554   1.5   thorpej 	for (chan = 0; chan < 4; chan++) {
    555   1.5   thorpej 		pc = &sc->pciide_channels[chan];
    556   1.5   thorpej 		for (reg = 0; reg < IDEDMA_NREGS; reg++) {
    557   1.5   thorpej 			size = 4;
    558   1.5   thorpej 			if (size > (IDEDMA_SCH_OFFSET - reg))
    559   1.5   thorpej 				size = IDEDMA_SCH_OFFSET - reg;
    560   1.5   thorpej 			if (bus_space_subregion(sc->sc_ba5_st,
    561   1.5   thorpej 			    sc->sc_ba5_sh,
    562   1.5   thorpej 			    satalink_ba5_regmap[chan].ba5_IDEDMA_CMD + reg,
    563   1.5   thorpej 			    size, &pc->dma_iohs[reg]) != 0) {
    564   1.5   thorpej 				sc->sc_dma_ok = 0;
    565  1.34        ad 				aprint_verbose(", but can't subregion offset "
    566   1.5   thorpej 				    "%lu size %lu",
    567   1.5   thorpej 				    (u_long) satalink_ba5_regmap[
    568   1.5   thorpej 						chan].ba5_IDEDMA_CMD + reg,
    569   1.5   thorpej 				    (u_long) size);
    570   1.5   thorpej 				return;
    571   1.5   thorpej 			}
    572   1.5   thorpej 		}
    573   1.5   thorpej 	}
    574   1.5   thorpej 
    575   1.5   thorpej 	/* DMA registers all set up! */
    576   1.5   thorpej 	sc->sc_dmat = pa->pa_dmat;
    577   1.5   thorpej 	sc->sc_dma_ok = 1;
    578   1.5   thorpej }
    579   1.5   thorpej 
    580   1.5   thorpej static int
    581   1.5   thorpej sii3114_chansetup(struct pciide_softc *sc, int channel)
    582   1.5   thorpej {
    583   1.5   thorpej 	static const char *channel_names[] = {
    584   1.5   thorpej 		"port 0",
    585   1.5   thorpej 		"port 1",
    586   1.5   thorpej 		"port 2",
    587   1.5   thorpej 		"port 3",
    588   1.5   thorpej 	};
    589   1.5   thorpej 	struct pciide_channel *cp = &sc->pciide_channels[channel];
    590   1.5   thorpej 
    591  1.19   thorpej 	sc->wdc_chanarray[channel] = &cp->ata_channel;
    592   1.5   thorpej 
    593   1.5   thorpej 	/*
    594   1.5   thorpej 	 * We must always keep the Interrupt Steering bit set in channel 2's
    595   1.5   thorpej 	 * IDEDMA_CMD register.
    596   1.5   thorpej 	 */
    597   1.5   thorpej 	if (channel == 2)
    598   1.5   thorpej 		cp->idedma_cmd = IDEDMA_CMD_INT_STEER;
    599   1.5   thorpej 
    600   1.5   thorpej 	cp->name = channel_names[channel];
    601  1.19   thorpej 	cp->ata_channel.ch_channel = channel;
    602  1.21   thorpej 	cp->ata_channel.ch_atac = &sc->sc_wdcdev.sc_atac;
    603  1.55  jdolecek 
    604   1.5   thorpej 	return (1);
    605   1.5   thorpej }
    606   1.5   thorpej 
    607   1.5   thorpej static void
    608   1.5   thorpej sii3114_mapchan(struct pciide_channel *cp)
    609   1.5   thorpej {
    610  1.19   thorpej 	struct ata_channel *wdc_cp = &cp->ata_channel;
    611  1.20   thorpej 	struct pciide_softc *sc = CHAN_TO_PCIIDE(wdc_cp);
    612  1.20   thorpej 	struct wdc_regs *wdr = CHAN_TO_WDC_REGS(wdc_cp);
    613   1.5   thorpej 	int i;
    614   1.5   thorpej 
    615   1.5   thorpej 	cp->compat = 0;
    616   1.5   thorpej 	cp->ih = sc->sc_pci_ih;
    617   1.5   thorpej 
    618  1.19   thorpej 	wdr->cmd_iot = sc->sc_ba5_st;
    619   1.5   thorpej 	if (bus_space_subregion(sc->sc_ba5_st, sc->sc_ba5_sh,
    620  1.11   thorpej 			satalink_ba5_regmap[wdc_cp->ch_channel].ba5_IDE_TF0,
    621  1.19   thorpej 			9, &wdr->cmd_baseioh) != 0) {
    622  1.36      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    623  1.36      cube 		    "couldn't subregion %s cmd base\n", cp->name);
    624   1.5   thorpej 		goto bad;
    625   1.5   thorpej 	}
    626   1.5   thorpej 
    627  1.19   thorpej 	wdr->ctl_iot = sc->sc_ba5_st;
    628   1.5   thorpej 	if (bus_space_subregion(sc->sc_ba5_st, sc->sc_ba5_sh,
    629  1.11   thorpej 			satalink_ba5_regmap[wdc_cp->ch_channel].ba5_IDE_TF8,
    630   1.5   thorpej 			1, &cp->ctl_baseioh) != 0) {
    631  1.36      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    632  1.36      cube 		    "couldn't subregion %s ctl base\n", cp->name);
    633   1.5   thorpej 		goto bad;
    634   1.5   thorpej 	}
    635  1.19   thorpej 	wdr->ctl_ioh = cp->ctl_baseioh;
    636   1.5   thorpej 
    637   1.5   thorpej 	for (i = 0; i < WDC_NREG; i++) {
    638  1.19   thorpej 		if (bus_space_subregion(wdr->cmd_iot, wdr->cmd_baseioh,
    639   1.5   thorpej 					i, i == 0 ? 4 : 1,
    640  1.19   thorpej 					&wdr->cmd_iohs[i]) != 0) {
    641  1.36      cube 			aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    642  1.36      cube 			    "couldn't subregion %s channel cmd regs\n",
    643  1.36      cube 			    cp->name);
    644   1.5   thorpej 			goto bad;
    645   1.5   thorpej 		}
    646   1.5   thorpej 	}
    647  1.54  jdolecek 	wdc_init_shadow_regs(wdr);
    648  1.19   thorpej 	wdr->data32iot = wdr->cmd_iot;
    649  1.19   thorpej 	wdr->data32ioh = wdr->cmd_iohs[0];
    650   1.5   thorpej 	wdcattach(wdc_cp);
    651   1.5   thorpej 	return;
    652   1.5   thorpej 
    653   1.5   thorpej  bad:
    654  1.19   thorpej 	cp->ata_channel.ch_flags |= ATACH_DISABLED;
    655   1.5   thorpej }
    656   1.5   thorpej 
    657   1.5   thorpej static void
    658  1.43    dyoung sii3114_chip_map(struct pciide_softc *sc, const struct pci_attach_args *pa)
    659   1.5   thorpej {
    660   1.5   thorpej 	struct pciide_channel *cp;
    661   1.5   thorpej 	pcireg_t scs_cmd;
    662   1.5   thorpej 	pci_intr_handle_t intrhandle;
    663   1.5   thorpej 	const char *intrstr;
    664   1.5   thorpej 	int channel;
    665  1.52  christos 	char intrbuf[PCI_INTRSTR_LEN];
    666   1.5   thorpej 
    667   1.5   thorpej 	if (pciide_chipen(sc, pa) == 0)
    668   1.5   thorpej 		return;
    669   1.5   thorpej 
    670   1.5   thorpej #define	SII3114_RESET_BITS						\
    671   1.5   thorpej 	(SCS_CMD_PBM_RESET | SCS_CMD_ARB_RESET |			\
    672   1.5   thorpej 	 SCS_CMD_FF1_RESET | SCS_CMD_FF0_RESET |			\
    673   1.5   thorpej 	 SCS_CMD_FF3_RESET | SCS_CMD_FF2_RESET |			\
    674   1.5   thorpej 	 SCS_CMD_IDE1_RESET | SCS_CMD_IDE0_RESET |			\
    675   1.5   thorpej 	 SCS_CMD_IDE3_RESET | SCS_CMD_IDE2_RESET)
    676   1.5   thorpej 
    677   1.5   thorpej 	/*
    678   1.5   thorpej 	 * Reset everything and then unblock all of the interrupts.
    679   1.5   thorpej 	 */
    680   1.5   thorpej 	scs_cmd = pci_conf_read(pa->pa_pc, pa->pa_tag, SII3112_SCS_CMD);
    681   1.5   thorpej 	pci_conf_write(pa->pa_pc, pa->pa_tag, SII3112_SCS_CMD,
    682   1.5   thorpej 		       scs_cmd | SII3114_RESET_BITS);
    683   1.5   thorpej 	delay(50 * 1000);
    684   1.5   thorpej 	pci_conf_write(pa->pa_pc, pa->pa_tag, SII3112_SCS_CMD,
    685   1.5   thorpej 		       scs_cmd & SCS_CMD_M66EN);
    686   1.5   thorpej 	delay(50 * 1000);
    687   1.5   thorpej 
    688   1.5   thorpej 	/*
    689   1.5   thorpej 	 * On the 3114, the BA5 register space is always enabled.  In
    690   1.5   thorpej 	 * order to use the 3114 in any sane way, we must use this BA5
    691   1.5   thorpej 	 * register space, and so we consider it an error if we cannot
    692   1.5   thorpej 	 * map it.
    693   1.5   thorpej 	 *
    694   1.5   thorpej 	 * As a consequence of using BA5, our register mapping is different
    695   1.5   thorpej 	 * from a normal PCI IDE controller's, and so we are unable to use
    696   1.5   thorpej 	 * most of the common PCI IDE register mapping functions.
    697   1.5   thorpej 	 */
    698   1.5   thorpej 	if (pci_mapreg_map(pa, PCI_MAPREG_START + 0x14,
    699   1.5   thorpej 			   PCI_MAPREG_TYPE_MEM|
    700   1.5   thorpej 			   PCI_MAPREG_MEM_TYPE_32BIT, 0,
    701   1.5   thorpej 			   &sc->sc_ba5_st, &sc->sc_ba5_sh,
    702  1.42  jakllsch 			   NULL, &sc->sc_ba5_ss) != 0) {
    703  1.36      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    704  1.36      cube 		    "unable to map SATALink BA5 register space\n");
    705   1.5   thorpej 		return;
    706   1.5   thorpej 	}
    707   1.5   thorpej 	sc->sc_ba5_en = 1;
    708   1.5   thorpej 
    709  1.36      cube 	aprint_verbose_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    710  1.36      cube 	    "%dMHz PCI bus\n", (scs_cmd & SCS_CMD_M66EN) ? 66 : 33);
    711   1.5   thorpej 
    712   1.5   thorpej 	/*
    713   1.5   thorpej 	 * Set the Interrupt Steering bit in the IDEDMA_CMD register of
    714   1.5   thorpej 	 * channel 2.  This is required at all times for proper operation
    715   1.5   thorpej 	 * when using the BA5 register space (otherwise interrupts from
    716   1.5   thorpej 	 * all 4 channels won't work).
    717   1.5   thorpej 	 */
    718   1.5   thorpej 	BA5_WRITE_4(sc, 2, ba5_IDEDMA_CMD, IDEDMA_CMD_INT_STEER);
    719   1.5   thorpej 
    720  1.36      cube 	aprint_verbose_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    721  1.36      cube 	    "bus-master DMA support present");
    722   1.5   thorpej 	sii3114_mapreg_dma(sc, pa);
    723  1.34        ad 	aprint_verbose("\n");
    724   1.5   thorpej 
    725  1.35        ws 	sii_fixup_cacheline(sc, pa, 4);
    726  1.25     ragge 
    727  1.23       skd 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
    728  1.21   thorpej 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    729   1.5   thorpej 	if (sc->sc_dma_ok) {
    730  1.23       skd 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA | ATAC_CAP_UDMA;
    731   1.5   thorpej 		sc->sc_wdcdev.irqack = pciide_irqack;
    732  1.21   thorpej 		sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    733  1.21   thorpej 		sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    734   1.5   thorpej 	}
    735  1.21   thorpej 	sc->sc_wdcdev.sc_atac.atac_set_modes = sii3112_setup_channel;
    736   1.5   thorpej 
    737   1.5   thorpej 	/* We can use SControl and SStatus to probe for drives. */
    738  1.21   thorpej 	sc->sc_wdcdev.sc_atac.atac_probe = sii3112_drv_probe;
    739   1.5   thorpej 
    740  1.21   thorpej 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
    741  1.21   thorpej 	sc->sc_wdcdev.sc_atac.atac_nchannels = 4;
    742  1.48    bouyer 	sc->sc_wdcdev.wdc_maxdrives = 1;
    743   1.5   thorpej 
    744  1.19   thorpej 	wdc_allocate_regs(&sc->sc_wdcdev);
    745  1.19   thorpej 
    746   1.5   thorpej 	/* Map and establish the interrupt handler. */
    747   1.5   thorpej 	if (pci_intr_map(pa, &intrhandle) != 0) {
    748  1.36      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    749  1.36      cube 		    "couldn't map native-PCI interrupt\n");
    750   1.5   thorpej 		return;
    751   1.5   thorpej 	}
    752  1.52  christos 	intrstr = pci_intr_string(pa->pa_pc, intrhandle, intrbuf, sizeof(intrbuf));
    753   1.5   thorpej 	sc->sc_pci_ih = pci_intr_establish(pa->pa_pc, intrhandle, IPL_BIO,
    754   1.5   thorpej 					   /* XXX */
    755   1.5   thorpej 					   pciide_pci_intr, sc);
    756   1.5   thorpej 	if (sc->sc_pci_ih != NULL) {
    757  1.36      cube 		aprint_normal_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    758  1.36      cube 		    "using %s for native-PCI interrupt\n",
    759  1.36      cube 		    intrstr ? intrstr : "unknown interrupt");
    760   1.5   thorpej 	} else {
    761  1.36      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    762  1.36      cube 		    "couldn't establish native-PCI interrupt");
    763   1.5   thorpej 		if (intrstr != NULL)
    764  1.39     njoly 			aprint_error(" at %s", intrstr);
    765  1.39     njoly 		aprint_error("\n");
    766   1.5   thorpej 		return;
    767   1.5   thorpej 	}
    768   1.5   thorpej 
    769  1.21   thorpej 	for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels;
    770  1.21   thorpej 	     channel++) {
    771   1.5   thorpej 		cp = &sc->pciide_channels[channel];
    772   1.5   thorpej 		if (sii3114_chansetup(sc, channel) == 0)
    773   1.5   thorpej 			continue;
    774   1.5   thorpej 		sii3114_mapchan(cp);
    775   1.5   thorpej 	}
    776   1.5   thorpej }
    777   1.5   thorpej 
    778  1.32    bouyer /* Probe the drives using SATA registers.
    779  1.32    bouyer  * Note we can't use wdc_sataprobe as we may not be able to map ba5
    780  1.32    bouyer  */
    781   1.7   thorpej static void
    782  1.19   thorpej sii3112_drv_probe(struct ata_channel *chp)
    783   1.2   thorpej {
    784  1.20   thorpej 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
    785  1.20   thorpej 	struct wdc_regs *wdr = CHAN_TO_WDC_REGS(chp);
    786   1.2   thorpej 	uint32_t scontrol, sstatus;
    787  1.50    martin 	uint8_t /* scnt, sn, */ cl, ch;
    788  1.48    bouyer 	int s;
    789   1.2   thorpej 
    790   1.2   thorpej 	/*
    791   1.2   thorpej 	 * The 3112 is a 2-port part, and only has one drive per channel
    792   1.2   thorpej 	 * (each port emulates a master drive).
    793   1.5   thorpej 	 *
    794   1.5   thorpej 	 * The 3114 is similar, but has 4 channels.
    795   1.2   thorpej 	 */
    796   1.2   thorpej 
    797   1.2   thorpej 	/*
    798   1.2   thorpej 	 * Request communication initialization sequence, any speed.
    799   1.2   thorpej 	 * Performing this is the equivalent of an ATA Reset.
    800   1.2   thorpej 	 */
    801   1.2   thorpej 	scontrol = SControl_DET_INIT | SControl_SPD_ANY;
    802   1.2   thorpej 
    803   1.2   thorpej 	/*
    804   1.2   thorpej 	 * XXX We don't yet support SATA power management; disable all
    805   1.2   thorpej 	 * power management state transitions.
    806   1.2   thorpej 	 */
    807   1.2   thorpej 	scontrol |= SControl_IPM_NONE;
    808   1.2   thorpej 
    809  1.11   thorpej 	BA5_WRITE_4(sc, chp->ch_channel, ba5_SControl, scontrol);
    810   1.5   thorpej 	delay(50 * 1000);
    811   1.2   thorpej 	scontrol &= ~SControl_DET_INIT;
    812  1.11   thorpej 	BA5_WRITE_4(sc, chp->ch_channel, ba5_SControl, scontrol);
    813   1.5   thorpej 	delay(50 * 1000);
    814   1.2   thorpej 
    815  1.11   thorpej 	sstatus = BA5_READ_4(sc, chp->ch_channel, ba5_SStatus);
    816   1.5   thorpej #if 0
    817  1.49       chs 	aprint_normal_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    818  1.37    cegger 	    "port %d: SStatus=0x%08x, SControl=0x%08x\n",
    819  1.37    cegger 	    chp->ch_channel, sstatus,
    820  1.11   thorpej 	    BA5_READ_4(sc, chp->ch_channel, ba5_SControl));
    821   1.5   thorpej #endif
    822   1.2   thorpej 	switch (sstatus & SStatus_DET_mask) {
    823   1.2   thorpej 	case SStatus_DET_NODEV:
    824   1.2   thorpej 		/* No device; be silent. */
    825   1.2   thorpej 		break;
    826   1.2   thorpej 
    827   1.2   thorpej 	case SStatus_DET_DEV_NE:
    828  1.36      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    829  1.36      cube 		    "port %d: device connected, but "
    830  1.36      cube 		    "communication not established\n", chp->ch_channel);
    831   1.2   thorpej 		break;
    832   1.2   thorpej 
    833   1.2   thorpej 	case SStatus_DET_OFFLINE:
    834  1.36      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    835  1.36      cube 		    "port %d: PHY offline\n", chp->ch_channel);
    836   1.2   thorpej 		break;
    837   1.2   thorpej 
    838   1.2   thorpej 	case SStatus_DET_DEV:
    839   1.2   thorpej 		/*
    840   1.2   thorpej 		 * XXX ATAPI detection doesn't currently work.  Don't
    841   1.2   thorpej 		 * XXX know why.  But, it's not like the standard method
    842   1.2   thorpej 		 * XXX can detect an ATAPI device connected via a SATA/PATA
    843   1.2   thorpej 		 * XXX bridge, so at least this is no worse.  --thorpej
    844   1.2   thorpej 		 */
    845  1.19   thorpej 		bus_space_write_1(wdr->cmd_iot, wdr->cmd_iohs[wd_sdh], 0,
    846   1.2   thorpej 		    WDSD_IBM | (0 << 4));
    847   1.2   thorpej 		delay(10);	/* 400ns delay */
    848   1.2   thorpej 		/* Save register contents. */
    849  1.50    martin #if 0
    850  1.19   thorpej 		scnt = bus_space_read_1(wdr->cmd_iot,
    851  1.19   thorpej 				        wdr->cmd_iohs[wd_seccnt], 0);
    852  1.19   thorpej 		sn = bus_space_read_1(wdr->cmd_iot,
    853  1.19   thorpej 				      wdr->cmd_iohs[wd_sector], 0);
    854  1.50    martin #endif
    855  1.19   thorpej 		cl = bus_space_read_1(wdr->cmd_iot,
    856  1.19   thorpej 				      wdr->cmd_iohs[wd_cyl_lo], 0);
    857  1.19   thorpej 		ch = bus_space_read_1(wdr->cmd_iot,
    858  1.19   thorpej 				      wdr->cmd_iohs[wd_cyl_hi], 0);
    859   1.2   thorpej #if 0
    860   1.2   thorpej 		printf("%s: port %d: scnt=0x%x sn=0x%x cl=0x%x ch=0x%x\n",
    861  1.49       chs 		    device_xname(sc->sc_wdcdev.sc_atac.atac_dev), chp->ch_channel,
    862   1.2   thorpej 		    scnt, sn, cl, ch);
    863   1.2   thorpej #endif
    864  1.48    bouyer 		if (atabus_alloc_drives(chp, 1) != 0)
    865  1.48    bouyer 			return;
    866   1.2   thorpej 		/*
    867   1.2   thorpej 		 * scnt and sn are supposed to be 0x1 for ATAPI, but in some
    868   1.2   thorpej 		 * cases we get wrong values here, so ignore it.
    869   1.2   thorpej 		 */
    870  1.22   thorpej 		s = splbio();
    871   1.2   thorpej 		if (cl == 0x14 && ch == 0xeb)
    872  1.48    bouyer 			chp->ch_drive[0].drive_type = ATA_DRIVET_ATAPI;
    873   1.2   thorpej 		else
    874  1.48    bouyer 			chp->ch_drive[0].drive_type = ATA_DRIVET_ATA;
    875  1.22   thorpej 		splx(s);
    876   1.2   thorpej 
    877  1.36      cube 		aprint_normal_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    878  1.36      cube 		    "port %d: device present, speed: %s\n",
    879  1.36      cube 		    chp->ch_channel,
    880  1.15   thorpej 		    sata_speed(sstatus));
    881   1.2   thorpej 		break;
    882   1.2   thorpej 
    883   1.2   thorpej 	default:
    884  1.36      cube 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    885  1.36      cube 		    "port %d: unknown SStatus: 0x%08x\n",
    886  1.36      cube 		    chp->ch_channel, sstatus);
    887   1.2   thorpej 	}
    888   1.1   thorpej }
    889   1.1   thorpej 
    890   1.1   thorpej static void
    891  1.19   thorpej sii3112_setup_channel(struct ata_channel *chp)
    892   1.1   thorpej {
    893   1.1   thorpej 	struct ata_drive_datas *drvp;
    894  1.22   thorpej 	int drive, s;
    895   1.1   thorpej 	u_int32_t idedma_ctl, dtm;
    896  1.20   thorpej 	struct pciide_channel *cp = CHAN_TO_PCHAN(chp);
    897  1.20   thorpej 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
    898   1.1   thorpej 
    899   1.1   thorpej 	/* setup DMA if needed */
    900   1.1   thorpej 	pciide_channel_dma_setup(cp);
    901   1.1   thorpej 
    902   1.1   thorpej 	idedma_ctl = 0;
    903   1.1   thorpej 	dtm = 0;
    904   1.1   thorpej 
    905   1.1   thorpej 	for (drive = 0; drive < 2; drive++) {
    906   1.1   thorpej 		drvp = &chp->ch_drive[drive];
    907   1.1   thorpej 		/* If no drive, skip */
    908  1.48    bouyer 		if (drvp->drive_type == ATA_DRIVET_NONE)
    909   1.1   thorpej 			continue;
    910  1.48    bouyer 		if (drvp->drive_flags & ATA_DRIVE_UDMA) {
    911   1.1   thorpej 			/* use Ultra/DMA */
    912  1.22   thorpej 			s = splbio();
    913  1.48    bouyer 			drvp->drive_flags &= ~ATA_DRIVE_DMA;
    914  1.22   thorpej 			splx(s);
    915   1.1   thorpej 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    916   1.1   thorpej 			dtm |= DTM_IDEx_DMA;
    917  1.48    bouyer 		} else if (drvp->drive_flags & ATA_DRIVE_DMA) {
    918   1.1   thorpej 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    919   1.1   thorpej 			dtm |= DTM_IDEx_DMA;
    920   1.1   thorpej 		} else {
    921   1.1   thorpej 			dtm |= DTM_IDEx_PIO;
    922   1.1   thorpej 		}
    923   1.1   thorpej 	}
    924   1.1   thorpej 
    925   1.1   thorpej 	/*
    926   1.1   thorpej 	 * Nothing to do to setup modes; it is meaningless in S-ATA
    927   1.1   thorpej 	 * (but many S-ATA drives still want to get the SET_FEATURE
    928   1.1   thorpej 	 * command).
    929   1.1   thorpej 	 */
    930   1.1   thorpej 	if (idedma_ctl != 0) {
    931   1.1   thorpej 		/* Add software bits in status register */
    932   1.1   thorpej 		bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
    933   1.1   thorpej 		    idedma_ctl);
    934   1.1   thorpej 	}
    935  1.11   thorpej 	BA5_WRITE_4(sc, chp->ch_channel, ba5_IDE_DTM, dtm);
    936   1.1   thorpej }
    937