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