Home | History | Annotate | Line # | Download | only in pci
pdcsata.c revision 1.6.6.2
      1  1.6.6.2      yamt /*	$NetBSD: pdcsata.c,v 1.6.6.2 2006/08/11 15:44:26 yamt Exp $	*/
      2      1.1    bouyer 
      3      1.1    bouyer /*
      4      1.1    bouyer  * Copyright (c) 2004, Manuel Bouyer.
      5      1.1    bouyer  *
      6      1.1    bouyer  * Redistribution and use in source and binary forms, with or without
      7      1.1    bouyer  * modification, are permitted provided that the following conditions
      8      1.1    bouyer  * are met:
      9      1.1    bouyer  * 1. Redistributions of source code must retain the above copyright
     10      1.1    bouyer  *    notice, this list of conditions and the following disclaimer.
     11      1.1    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1    bouyer  *    notice, this list of conditions and the following disclaimer in the
     13      1.1    bouyer  *    documentation and/or other materials provided with the distribution.
     14      1.1    bouyer  * 3. All advertising materials mentioning features or use of this software
     15      1.1    bouyer  *    must display the following acknowledgement:
     16      1.1    bouyer  *	This product includes software developed by Manuel Bouyer.
     17      1.1    bouyer  * 4. The name of the author may not be used to endorse or promote products
     18      1.1    bouyer  *    derived from this software without specific prior written permission.
     19      1.1    bouyer  *
     20      1.1    bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21      1.1    bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22      1.1    bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23      1.3     perry  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24      1.1    bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25      1.1    bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26      1.1    bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27      1.1    bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28      1.1    bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29      1.1    bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30      1.1    bouyer  */
     31      1.1    bouyer 
     32  1.6.6.2      yamt #include <sys/cdefs.h>
     33  1.6.6.2      yamt __KERNEL_RCSID(0, "$NetBSD: pdcsata.c,v 1.6.6.2 2006/08/11 15:44:26 yamt Exp $");
     34  1.6.6.2      yamt 
     35      1.1    bouyer #include <sys/types.h>
     36      1.1    bouyer #include <sys/malloc.h>
     37      1.1    bouyer #include <sys/param.h>
     38      1.1    bouyer #include <sys/systm.h>
     39      1.1    bouyer 
     40      1.1    bouyer #include <dev/pci/pcivar.h>
     41      1.1    bouyer #include <dev/pci/pcidevs.h>
     42      1.1    bouyer #include <dev/pci/pciidereg.h>
     43      1.1    bouyer #include <dev/pci/pciidevar.h>
     44      1.4  christos #include <dev/ata/atareg.h>
     45      1.4  christos #include <dev/ata/satavar.h>
     46      1.4  christos #include <dev/ata/satareg.h>
     47      1.1    bouyer 
     48      1.1    bouyer #define PDC203xx_NCHANNELS 4
     49      1.4  christos #define PDC40718_NCHANNELS 4
     50      1.6    bouyer #define PDC20575_NCHANNELS 3
     51      1.1    bouyer 
     52      1.1    bouyer #define PDC203xx_BAR_IDEREGS 0x1c /* BAR where the IDE registers are mapped */
     53      1.1    bouyer 
     54  1.6.6.1      yamt #define PDC_CHANNELBASE(ch) 0x200 + ((ch) * 0x80)
     55  1.6.6.1      yamt #define PDC_ERRMASK 0x00780700
     56  1.6.6.1      yamt 
     57      1.1    bouyer static void pdcsata_chip_map(struct pciide_softc *, struct pci_attach_args *);
     58      1.1    bouyer static void pdc203xx_setup_channel(struct ata_channel *);
     59      1.1    bouyer static void pdc203xx_irqack(struct ata_channel *);
     60      1.1    bouyer static int  pdc203xx_dma_init(void *, int, int, void *, size_t, int);
     61      1.1    bouyer static void pdc203xx_dma_start(void *,int ,int);
     62      1.1    bouyer static int  pdc203xx_dma_finish(void *, int, int, int);
     63  1.6.6.1      yamt static int  pdcsata_pci_intr(void *);
     64  1.6.6.1      yamt static void pdcsata_do_reset(struct ata_channel *, int);
     65      1.1    bouyer 
     66      1.4  christos /* PDC205xx, PDC405xx and PDC407xx. but tested only pdc40718 */
     67      1.4  christos static void pdc205xx_drv_probe(struct ata_channel *);
     68      1.4  christos 
     69      1.1    bouyer static int  pdcsata_match(struct device *, struct cfdata *, void *);
     70      1.1    bouyer static void pdcsata_attach(struct device *, struct device *, void *);
     71      1.1    bouyer 
     72      1.1    bouyer CFATTACH_DECL(pdcsata, sizeof(struct pciide_softc),
     73      1.1    bouyer     pdcsata_match, pdcsata_attach, NULL, NULL);
     74      1.1    bouyer 
     75      1.1    bouyer static const struct pciide_product_desc pciide_pdcsata_products[] =  {
     76      1.1    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20318,
     77      1.1    bouyer 	  0,
     78      1.1    bouyer 	  "Promise PDC20318 SATA150 controller",
     79      1.1    bouyer 	  pdcsata_chip_map,
     80      1.1    bouyer 	},
     81      1.1    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20319,
     82      1.1    bouyer 	  0,
     83      1.1    bouyer 	  "Promise PDC20319 SATA150 controller",
     84      1.1    bouyer 	  pdcsata_chip_map,
     85      1.1    bouyer 	},
     86      1.1    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20371,
     87      1.1    bouyer 	  0,
     88      1.1    bouyer 	  "Promise PDC20371 SATA150 controller",
     89      1.1    bouyer 	  pdcsata_chip_map,
     90      1.1    bouyer 	},
     91      1.1    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20375,
     92      1.1    bouyer 	  0,
     93      1.1    bouyer 	  "Promise PDC20375 SATA150 controller",
     94      1.1    bouyer 	  pdcsata_chip_map,
     95      1.1    bouyer 	},
     96      1.1    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20376,
     97      1.1    bouyer 	  0,
     98      1.1    bouyer 	  "Promise PDC20376 SATA150 controller",
     99      1.1    bouyer 	  pdcsata_chip_map,
    100      1.1    bouyer 	},
    101      1.1    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20377,
    102      1.1    bouyer 	  0,
    103      1.1    bouyer 	  "Promise PDC20377 SATA150 controller",
    104      1.1    bouyer 	  pdcsata_chip_map,
    105      1.1    bouyer 	},
    106      1.1    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20378,
    107      1.1    bouyer 	  0,
    108      1.1    bouyer 	  "Promise PDC20378 SATA150 controller",
    109      1.1    bouyer 	  pdcsata_chip_map,
    110      1.1    bouyer 	},
    111      1.1    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20379,
    112      1.1    bouyer 	  0,
    113      1.1    bouyer 	  "Promise PDC20379 SATA150 controller",
    114      1.1    bouyer 	  pdcsata_chip_map,
    115      1.1    bouyer 	},
    116  1.6.6.2      yamt 	{ PCI_PRODUCT_PROMISE_PDC40518,
    117  1.6.6.2      yamt 	  0,
    118  1.6.6.2      yamt 	  "Promise PDC40518 SATA 150 controller",
    119  1.6.6.2      yamt 	  pdcsata_chip_map,
    120  1.6.6.2      yamt 	},
    121      1.4  christos 	{ PCI_PRODUCT_PROMISE_PDC40718,
    122      1.4  christos 	  0,
    123      1.4  christos 	  "Promise PDC40718 SATA300 controller",
    124      1.4  christos 	  pdcsata_chip_map,
    125      1.4  christos 	},
    126      1.4  christos 	{ PCI_PRODUCT_PROMISE_PDC40719,
    127      1.4  christos 	  0,
    128      1.4  christos 	  "Promise PDC40719 SATA300 controller",
    129      1.4  christos 	  pdcsata_chip_map,
    130      1.4  christos 	},
    131      1.6    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20571,
    132      1.6    bouyer 	  0,
    133      1.6    bouyer 	  "Promise PDC20571 SATA150 controller",
    134      1.6    bouyer 	  pdcsata_chip_map,
    135      1.6    bouyer 	},
    136      1.6    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20575,
    137      1.6    bouyer 	  0,
    138      1.6    bouyer 	  "Promise PDC20575 SATA150 controller",
    139      1.6    bouyer 	  pdcsata_chip_map,
    140      1.6    bouyer 	},
    141      1.6    bouyer 	{ PCI_PRODUCT_PROMISE_PDC20579,
    142      1.6    bouyer 	  0,
    143      1.6    bouyer 	  "Promise PDC20579 SATA150 controller",
    144      1.6    bouyer 	  pdcsata_chip_map,
    145      1.6    bouyer 	},
    146  1.6.6.2      yamt 	{ PCI_PRODUCT_PROMISE_PDC20775,
    147  1.6.6.2      yamt 	  0,
    148  1.6.6.2      yamt 	  "Promise PDC20775 SATA300 controller",
    149  1.6.6.2      yamt 	  pdcsata_chip_map,
    150  1.6.6.2      yamt 	},
    151      1.1    bouyer 	{ 0,
    152      1.1    bouyer 	  0,
    153      1.1    bouyer 	  NULL,
    154      1.1    bouyer 	  NULL
    155      1.1    bouyer 	}
    156      1.1    bouyer };
    157      1.1    bouyer 
    158      1.1    bouyer static int
    159      1.1    bouyer pdcsata_match(struct device *parent, struct cfdata *match, void *aux)
    160      1.1    bouyer {
    161      1.1    bouyer 	struct pci_attach_args *pa = aux;
    162      1.1    bouyer 
    163      1.1    bouyer 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_PROMISE) {
    164      1.1    bouyer 		if (pciide_lookup_product(pa->pa_id, pciide_pdcsata_products))
    165      1.1    bouyer 			return (2);
    166      1.1    bouyer 	}
    167      1.1    bouyer 	return (0);
    168      1.1    bouyer }
    169      1.1    bouyer 
    170      1.1    bouyer static void
    171      1.1    bouyer pdcsata_attach(struct device *parent, struct device *self, void *aux)
    172      1.1    bouyer {
    173      1.1    bouyer 	struct pci_attach_args *pa = aux;
    174      1.1    bouyer 	struct pciide_softc *sc = (struct pciide_softc *)self;
    175      1.1    bouyer 
    176      1.1    bouyer 	pciide_common_attach(sc, pa,
    177      1.1    bouyer 	    pciide_lookup_product(pa->pa_id, pciide_pdcsata_products));
    178      1.1    bouyer }
    179      1.1    bouyer 
    180      1.1    bouyer static void
    181      1.1    bouyer pdcsata_chip_map(struct pciide_softc *sc, struct pci_attach_args *pa)
    182      1.1    bouyer {
    183      1.1    bouyer 	struct pciide_channel *cp;
    184      1.1    bouyer 	struct ata_channel *wdc_cp;
    185      1.1    bouyer 	struct wdc_regs *wdr;
    186      1.1    bouyer 	int channel, i;
    187      1.1    bouyer 	bus_size_t dmasize;
    188      1.1    bouyer 	pci_intr_handle_t intrhandle;
    189      1.1    bouyer 	const char *intrstr;
    190      1.1    bouyer 
    191      1.1    bouyer 	/*
    192      1.1    bouyer 	 * Promise SATA controllers have 3 or 4 channels,
    193      1.1    bouyer 	 * the usual IDE registers are mapped in I/O space, with offsets.
    194      1.1    bouyer 	 */
    195      1.1    bouyer 	if (pci_intr_map(pa, &intrhandle) != 0) {
    196      1.1    bouyer 		aprint_error("%s: couldn't map interrupt\n",
    197      1.1    bouyer 		    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    198      1.1    bouyer 		return;
    199      1.1    bouyer 	}
    200      1.1    bouyer 	intrstr = pci_intr_string(pa->pa_pc, intrhandle);
    201  1.6.6.1      yamt 	sc->sc_pci_ih = pci_intr_establish(pa->pa_pc,
    202  1.6.6.1      yamt 	    intrhandle, IPL_BIO, pdcsata_pci_intr, sc);
    203      1.4  christos 
    204      1.1    bouyer 	if (sc->sc_pci_ih == NULL) {
    205      1.1    bouyer 		aprint_error("%s: couldn't establish native-PCI interrupt",
    206      1.1    bouyer 		    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    207      1.1    bouyer 		if (intrstr != NULL)
    208      1.1    bouyer 		    aprint_normal(" at %s", intrstr);
    209      1.1    bouyer 		aprint_normal("\n");
    210      1.1    bouyer 		return;
    211      1.1    bouyer 	}
    212      1.1    bouyer 	aprint_normal("%s: interrupting at %s\n",
    213      1.1    bouyer 		sc->sc_wdcdev.sc_atac.atac_dev.dv_xname,
    214      1.1    bouyer 		intrstr ? intrstr : "unknown interrupt");
    215      1.3     perry 
    216      1.1    bouyer 	sc->sc_dma_ok = (pci_mapreg_map(pa, PCIIDE_REG_BUS_MASTER_DMA,
    217      1.1    bouyer 	    PCI_MAPREG_MEM_TYPE_32BIT, 0, &sc->sc_dma_iot,
    218      1.1    bouyer 	    &sc->sc_dma_ioh, NULL, &dmasize) == 0);
    219      1.1    bouyer 	if (!sc->sc_dma_ok) {
    220      1.1    bouyer 		aprint_error("%s: couldn't map bus-master DMA registers\n",
    221      1.1    bouyer 		    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    222      1.1    bouyer 		pci_intr_disestablish(pa->pa_pc, sc->sc_pci_ih);
    223      1.1    bouyer 		return;
    224      1.1    bouyer 	}
    225      1.1    bouyer 
    226      1.1    bouyer 	sc->sc_dmat = pa->pa_dmat;
    227      1.1    bouyer 
    228      1.1    bouyer 	if (pci_mapreg_map(pa, PDC203xx_BAR_IDEREGS,
    229      1.1    bouyer 	    PCI_MAPREG_MEM_TYPE_32BIT, 0, &sc->sc_ba5_st,
    230      1.1    bouyer 	    &sc->sc_ba5_sh, NULL, NULL) != 0) {
    231      1.1    bouyer 		aprint_error("%s: couldn't map IDE registers\n",
    232      1.1    bouyer 		    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    233      1.1    bouyer 		bus_space_unmap(sc->sc_dma_iot, sc->sc_dma_ioh, dmasize);
    234      1.1    bouyer 		pci_intr_disestablish(pa->pa_pc, sc->sc_pci_ih);
    235      1.1    bouyer 		return;
    236      1.1    bouyer 	}
    237      1.1    bouyer 
    238      1.1    bouyer 	aprint_normal("%s: bus-master DMA support present\n",
    239      1.1    bouyer 	    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    240      1.1    bouyer 	sc->sc_wdcdev.sc_atac.atac_cap = ATAC_CAP_DATA16;
    241      1.1    bouyer 	if (sc->sc_dma_ok) {
    242      1.1    bouyer 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA | ATAC_CAP_UDMA;
    243      1.1    bouyer 	}
    244      1.2    bouyer 	if (PCI_CLASS(pa->pa_class) == PCI_CLASS_MASS_STORAGE &&
    245      1.2    bouyer 	    PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_RAID)
    246      1.2    bouyer 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_RAID;
    247      1.1    bouyer 	sc->sc_wdcdev.irqack = pdc203xx_irqack;
    248      1.1    bouyer 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    249      1.1    bouyer 	sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    250      1.1    bouyer 	sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    251      1.1    bouyer 	sc->sc_wdcdev.sc_atac.atac_set_modes = pdc203xx_setup_channel;
    252      1.1    bouyer 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
    253      1.4  christos 
    254  1.6.6.1      yamt 	sc->sc_wdcdev.reset = pdcsata_do_reset;
    255  1.6.6.1      yamt 
    256      1.4  christos 	switch (sc->sc_pp->ide_product) {
    257      1.4  christos 	case PCI_PRODUCT_PROMISE_PDC20318:
    258      1.4  christos 	case PCI_PRODUCT_PROMISE_PDC20319:
    259      1.4  christos 	case PCI_PRODUCT_PROMISE_PDC20371:
    260      1.4  christos 	case PCI_PRODUCT_PROMISE_PDC20375:
    261      1.4  christos 	case PCI_PRODUCT_PROMISE_PDC20376:
    262      1.4  christos 	case PCI_PRODUCT_PROMISE_PDC20377:
    263      1.4  christos 	case PCI_PRODUCT_PROMISE_PDC20378:
    264      1.4  christos 	case PCI_PRODUCT_PROMISE_PDC20379:
    265      1.4  christos 	default:
    266      1.4  christos 		bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh, 0x6c, 0x00ff0033);
    267      1.4  christos 		sc->sc_wdcdev.sc_atac.atac_nchannels =
    268      1.4  christos 		    (bus_space_read_4(sc->sc_ba5_st, sc->sc_ba5_sh, 0x48) & 0x02) ?
    269      1.4  christos 		    PDC203xx_NCHANNELS : 3;
    270      1.4  christos 
    271      1.4  christos 		break;
    272      1.4  christos 
    273  1.6.6.2      yamt 	case PCI_PRODUCT_PROMISE_PDC40518:
    274      1.4  christos 	case PCI_PRODUCT_PROMISE_PDC40718:
    275      1.4  christos 	case PCI_PRODUCT_PROMISE_PDC40719:
    276      1.6    bouyer 	case PCI_PRODUCT_PROMISE_PDC20571:
    277      1.4  christos 		bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh, 0x60, 0x00ff00ff);
    278      1.4  christos 		sc->sc_wdcdev.sc_atac.atac_nchannels = PDC40718_NCHANNELS;
    279      1.4  christos 
    280      1.4  christos 		sc->sc_wdcdev.sc_atac.atac_probe = pdc205xx_drv_probe;
    281      1.4  christos 
    282      1.4  christos 		break;
    283      1.6    bouyer 	case PCI_PRODUCT_PROMISE_PDC20575:
    284      1.6    bouyer 	case PCI_PRODUCT_PROMISE_PDC20579:
    285  1.6.6.2      yamt 	case PCI_PRODUCT_PROMISE_PDC20775:
    286      1.6    bouyer 		bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh, 0x60, 0x00ff00ff);
    287      1.6    bouyer 		sc->sc_wdcdev.sc_atac.atac_nchannels = PDC20575_NCHANNELS;
    288      1.6    bouyer 
    289      1.6    bouyer 		sc->sc_wdcdev.sc_atac.atac_probe = pdc205xx_drv_probe;
    290      1.6    bouyer 
    291      1.6    bouyer 		break;
    292      1.4  christos 	}
    293      1.4  christos 
    294      1.1    bouyer 	wdc_allocate_regs(&sc->sc_wdcdev);
    295      1.1    bouyer 
    296      1.1    bouyer 	sc->sc_wdcdev.dma_arg = sc;
    297      1.1    bouyer 	sc->sc_wdcdev.dma_init = pdc203xx_dma_init;
    298      1.1    bouyer 	sc->sc_wdcdev.dma_start = pdc203xx_dma_start;
    299      1.1    bouyer 	sc->sc_wdcdev.dma_finish = pdc203xx_dma_finish;
    300      1.1    bouyer 
    301      1.1    bouyer 	for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels;
    302      1.1    bouyer 	     channel++) {
    303      1.1    bouyer 		cp = &sc->pciide_channels[channel];
    304      1.1    bouyer 		sc->wdc_chanarray[channel] = &cp->ata_channel;
    305      1.1    bouyer 
    306      1.1    bouyer 		cp->ih = sc->sc_pci_ih;
    307      1.1    bouyer 		cp->name = NULL;
    308      1.1    bouyer 		cp->ata_channel.ch_channel = channel;
    309      1.1    bouyer 		cp->ata_channel.ch_atac = &sc->sc_wdcdev.sc_atac;
    310      1.1    bouyer 		cp->ata_channel.ch_queue =
    311      1.1    bouyer 		    malloc(sizeof(struct ata_queue), M_DEVBUF, M_NOWAIT);
    312      1.5    bouyer 		cp->ata_channel.ch_ndrive = 2;
    313      1.1    bouyer 		if (cp->ata_channel.ch_queue == NULL) {
    314      1.1    bouyer 			aprint_error("%s channel %d: "
    315      1.1    bouyer 			    "can't allocate memory for command queue\n",
    316      1.1    bouyer 			sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, channel);
    317      1.1    bouyer 			goto next_channel;
    318      1.1    bouyer 		}
    319      1.1    bouyer 		wdc_cp = &cp->ata_channel;
    320      1.1    bouyer 		wdr = CHAN_TO_WDC_REGS(wdc_cp);
    321      1.1    bouyer 
    322      1.1    bouyer 		wdr->ctl_iot = sc->sc_ba5_st;
    323      1.1    bouyer 		wdr->cmd_iot = sc->sc_ba5_st;
    324      1.1    bouyer 
    325      1.1    bouyer 		if (bus_space_subregion(sc->sc_ba5_st, sc->sc_ba5_sh,
    326      1.1    bouyer 		    0x0238 + (channel << 7), 1, &wdr->ctl_ioh) != 0) {
    327      1.1    bouyer 			aprint_error("%s: couldn't map channel %d ctl regs\n",
    328      1.1    bouyer 			    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname,
    329      1.1    bouyer 			    channel);
    330      1.1    bouyer 			goto next_channel;
    331      1.1    bouyer 		}
    332      1.1    bouyer 		for (i = 0; i < WDC_NREG; i++) {
    333      1.1    bouyer 			if (bus_space_subregion(sc->sc_ba5_st, sc->sc_ba5_sh,
    334      1.1    bouyer 			    0x0200 + (i << 2) + (channel << 7), i == 0 ? 4 : 1,
    335      1.1    bouyer 			    &wdr->cmd_iohs[i]) != 0) {
    336      1.1    bouyer 				aprint_error("%s: couldn't map channel %d cmd "
    337      1.1    bouyer 				    "regs\n",
    338      1.1    bouyer 				    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname,
    339      1.1    bouyer 				    channel);
    340      1.1    bouyer 				goto next_channel;
    341      1.1    bouyer 			}
    342      1.1    bouyer 		}
    343      1.1    bouyer 		wdc_init_shadow_regs(wdc_cp);
    344      1.1    bouyer 
    345      1.1    bouyer 		/*
    346      1.1    bouyer 		 * subregion de busmaster registers. They're spread all over
    347      1.1    bouyer 		 * the controller's register space :(. They are also 4 bytes
    348      1.1    bouyer 		 * sized, with some specific extentions in the extra bits.
    349      1.1    bouyer 		 * It also seems that the IDEDMA_CTL register isn't available.
    350      1.1    bouyer 		 */
    351      1.1    bouyer 		if (bus_space_subregion(sc->sc_ba5_st, sc->sc_ba5_sh,
    352      1.1    bouyer 		    0x260 + (channel << 7), 1,
    353      1.1    bouyer 		    &cp->dma_iohs[IDEDMA_CMD]) != 0) {
    354      1.1    bouyer 			aprint_normal("%s channel %d: can't subregion DMA "
    355      1.1    bouyer 			    "registers\n",
    356      1.1    bouyer 			    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, channel);
    357      1.1    bouyer 			goto next_channel;
    358      1.1    bouyer 		}
    359      1.1    bouyer 		if (bus_space_subregion(sc->sc_ba5_st, sc->sc_ba5_sh,
    360      1.1    bouyer 		    0x244 + (channel << 7), 4,
    361      1.1    bouyer 		    &cp->dma_iohs[IDEDMA_TBL]) != 0) {
    362      1.1    bouyer 			aprint_normal("%s channel %d: can't subregion DMA "
    363      1.1    bouyer 			    "registers\n",
    364      1.1    bouyer 			    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, channel);
    365      1.1    bouyer 			goto next_channel;
    366      1.1    bouyer 		}
    367      1.1    bouyer 
    368      1.1    bouyer 		wdcattach(wdc_cp);
    369      1.1    bouyer 		bus_space_write_4(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD], 0,
    370      1.1    bouyer 		    (bus_space_read_4(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD],
    371      1.1    bouyer 			0) & ~0x00003f9f) | (channel + 1));
    372      1.1    bouyer 		bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh,
    373      1.1    bouyer 		    (channel + 1) << 2, 0x00000001);
    374      1.1    bouyer next_channel:
    375      1.1    bouyer 	continue;
    376      1.1    bouyer 	}
    377      1.1    bouyer 	return;
    378      1.1    bouyer }
    379      1.1    bouyer 
    380      1.1    bouyer static void
    381      1.1    bouyer pdc203xx_setup_channel(struct ata_channel *chp)
    382      1.1    bouyer {
    383      1.1    bouyer 	struct ata_drive_datas *drvp;
    384      1.1    bouyer 	int drive, s;
    385      1.1    bouyer 	struct pciide_channel *cp = CHAN_TO_PCHAN(chp);
    386      1.1    bouyer 
    387      1.1    bouyer 	pciide_channel_dma_setup(cp);
    388      1.1    bouyer 
    389      1.1    bouyer 	for (drive = 0; drive < 2; drive++) {
    390      1.1    bouyer 		drvp = &chp->ch_drive[drive];
    391      1.1    bouyer 		if ((drvp->drive_flags & DRIVE) == 0)
    392      1.1    bouyer 			continue;
    393      1.1    bouyer 		if (drvp->drive_flags & DRIVE_UDMA) {
    394      1.1    bouyer 			s = splbio();
    395      1.1    bouyer 			drvp->drive_flags &= ~DRIVE_DMA;
    396      1.1    bouyer 			splx(s);
    397      1.1    bouyer 		}
    398      1.1    bouyer 	}
    399      1.1    bouyer }
    400      1.1    bouyer 
    401      1.1    bouyer static int
    402  1.6.6.1      yamt pdcsata_pci_intr(void *arg)
    403      1.1    bouyer {
    404      1.1    bouyer 	struct pciide_softc *sc = arg;
    405      1.1    bouyer 	struct pciide_channel *cp;
    406      1.1    bouyer 	struct ata_channel *wdc_cp;
    407      1.3     perry 	int i, rv, crv;
    408  1.6.6.1      yamt 	u_int32_t scr, status, chanbase;
    409      1.4  christos 
    410      1.4  christos 	rv = 0;
    411      1.4  christos 	scr = bus_space_read_4(sc->sc_ba5_st, sc->sc_ba5_sh, 0x40);
    412  1.6.6.1      yamt 	if (scr == 0xffffffff) return(rv);
    413      1.4  christos 	bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh, 0x40, scr & 0x0000ffff);
    414  1.6.6.1      yamt 	scr = scr & 0x0000ffff;
    415  1.6.6.1      yamt 	if (!scr) return(rv);
    416      1.4  christos 
    417      1.4  christos 	for (i = 0; i < sc->sc_wdcdev.sc_atac.atac_nchannels; i++) {
    418      1.4  christos 		cp = &sc->pciide_channels[i];
    419      1.4  christos 		wdc_cp = &cp->ata_channel;
    420      1.4  christos 		if (scr & (1 << (i + 1))) {
    421  1.6.6.1      yamt 			chanbase = PDC_CHANNELBASE(i) + 0x48;
    422  1.6.6.1      yamt 			status = bus_space_read_4(sc->sc_ba5_st, sc->sc_ba5_sh, chanbase);
    423  1.6.6.1      yamt 			if (status & PDC_ERRMASK) {
    424  1.6.6.1      yamt 				chanbase = PDC_CHANNELBASE(i) + 0x60;
    425  1.6.6.1      yamt 				status = bus_space_read_4(sc->sc_ba5_st, sc->sc_ba5_sh, chanbase);
    426  1.6.6.1      yamt 				status |= 0x800;
    427  1.6.6.1      yamt 				bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh, chanbase, status);
    428  1.6.6.1      yamt 				status &= ~0x800;
    429  1.6.6.1      yamt 				bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh, chanbase, status);
    430  1.6.6.1      yamt 				status = bus_space_read_4(sc->sc_ba5_st, sc->sc_ba5_sh, chanbase);
    431  1.6.6.1      yamt 				continue;
    432  1.6.6.1      yamt 			}
    433      1.4  christos 			crv = wdcintr(wdc_cp);
    434      1.4  christos 			if (crv == 0) {
    435      1.4  christos 				printf("%s:%d: bogus intr (reg 0x%x)\n",
    436      1.4  christos 				    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname,
    437      1.4  christos 				    i, scr);
    438      1.4  christos 			} else
    439      1.4  christos 				rv = 1;
    440      1.4  christos 		}
    441      1.4  christos 	}
    442      1.4  christos 	return rv;
    443      1.4  christos }
    444      1.4  christos 
    445      1.1    bouyer static void
    446      1.1    bouyer pdc203xx_irqack(struct ata_channel *chp)
    447      1.1    bouyer {
    448      1.1    bouyer 	struct pciide_channel *cp = CHAN_TO_PCHAN(chp);
    449      1.1    bouyer 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
    450      1.1    bouyer 
    451      1.1    bouyer 	bus_space_write_4(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD], 0,
    452      1.1    bouyer 	    (bus_space_read_4(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD],
    453      1.1    bouyer 		0) & ~0x00003f9f) | (cp->ata_channel.ch_channel + 1));
    454      1.1    bouyer 	bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh,
    455      1.1    bouyer 	    (cp->ata_channel.ch_channel + 1) << 2, 0x00000001);
    456      1.1    bouyer }
    457      1.1    bouyer 
    458      1.1    bouyer static int
    459      1.1    bouyer pdc203xx_dma_init(void *v, int channel, int drive, void *databuf,
    460      1.1    bouyer     size_t datalen, int flags)
    461      1.1    bouyer {
    462      1.1    bouyer 	struct pciide_softc *sc = v;
    463      1.1    bouyer 
    464      1.1    bouyer 	return pciide_dma_dmamap_setup(sc, channel, drive,
    465      1.1    bouyer 	    databuf, datalen, flags);
    466      1.1    bouyer }
    467      1.1    bouyer 
    468      1.1    bouyer static void
    469      1.1    bouyer pdc203xx_dma_start(void *v, int channel, int drive)
    470      1.1    bouyer {
    471      1.1    bouyer 	struct pciide_softc *sc = v;
    472      1.1    bouyer 	struct pciide_channel *cp = &sc->pciide_channels[channel];
    473      1.1    bouyer 	struct pciide_dma_maps *dma_maps = &cp->dma_maps[drive];
    474      1.1    bouyer 
    475      1.1    bouyer 	/* Write table addr */
    476      1.1    bouyer 	bus_space_write_4(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_TBL], 0,
    477      1.1    bouyer 	    dma_maps->dmamap_table->dm_segs[0].ds_addr);
    478      1.1    bouyer 	/* start DMA engine */
    479      1.1    bouyer 	bus_space_write_4(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD], 0,
    480      1.1    bouyer 	    (bus_space_read_4(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD],
    481      1.1    bouyer 	    0) & ~0xc0) | ((dma_maps->dma_flags & WDC_DMA_READ) ? 0x80 : 0xc0));
    482      1.1    bouyer }
    483      1.1    bouyer 
    484      1.1    bouyer static int
    485      1.1    bouyer pdc203xx_dma_finish(void *v, int channel, int drive, int force)
    486      1.1    bouyer {
    487      1.1    bouyer 	struct pciide_softc *sc = v;
    488      1.1    bouyer 	struct pciide_channel *cp = &sc->pciide_channels[channel];
    489      1.1    bouyer 	struct pciide_dma_maps *dma_maps = &cp->dma_maps[drive];
    490      1.1    bouyer 
    491      1.1    bouyer 	/* stop DMA channel */
    492      1.1    bouyer 	bus_space_write_4(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD], 0,
    493      1.1    bouyer 	    (bus_space_read_4(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD],
    494      1.1    bouyer 	    0) & ~0x80));
    495      1.1    bouyer 
    496      1.1    bouyer 	/* Unload the map of the data buffer */
    497      1.1    bouyer 	bus_dmamap_sync(sc->sc_dmat, dma_maps->dmamap_xfer, 0,
    498      1.1    bouyer 	    dma_maps->dmamap_xfer->dm_mapsize,
    499      1.1    bouyer 	    (dma_maps->dma_flags & WDC_DMA_READ) ?
    500      1.1    bouyer 	    BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
    501      1.1    bouyer 	bus_dmamap_unload(sc->sc_dmat, dma_maps->dmamap_xfer);
    502      1.1    bouyer 
    503      1.1    bouyer 	return 0;
    504      1.1    bouyer }
    505      1.4  christos 
    506      1.4  christos #define	PDC205_REGADDR(base,ch)	((base)+((ch)<<8))
    507      1.4  christos #define	PDC205_SSTATUS(ch)	PDC205_REGADDR(0x400,ch)
    508      1.4  christos #define	PDC205_SERROR(ch)	PDC205_REGADDR(0x404,ch)
    509      1.4  christos #define	PDC205_SCONTROL(ch)	PDC205_REGADDR(0x408,ch)
    510      1.4  christos #define	PDC205_MULTIPLIER(ch)	PDC205_REGADDR(0x4e8,ch)
    511      1.4  christos 
    512      1.4  christos 
    513      1.4  christos #define	SCONTROL_WRITE(sc,channel,scontrol)	\
    514      1.4  christos 	bus_space_write_4((sc)->sc_ba5_st, (sc)->sc_ba5_sh,	\
    515      1.4  christos 	PDC205_SCONTROL(channel), scontrol)
    516      1.4  christos 
    517      1.4  christos #define	SSTATUS_READ(sc,channel)	\
    518      1.4  christos 	bus_space_read_4((sc)->sc_ba5_st, (sc)->sc_ba5_sh,	\
    519      1.4  christos 	PDC205_SSTATUS(channel))
    520      1.4  christos 
    521      1.4  christos 
    522      1.4  christos 
    523      1.4  christos static void
    524  1.6.6.1      yamt pdcsata_do_reset(struct ata_channel *chp, int poll)
    525      1.4  christos {
    526      1.4  christos 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
    527  1.6.6.1      yamt 	int reset, status, i, chanbase;
    528      1.4  christos 
    529      1.4  christos 	/* reset SATA */
    530  1.6.6.1      yamt 	reset = (1 << 11);
    531  1.6.6.1      yamt 	chanbase = PDC_CHANNELBASE(chp->ch_channel) + 0x60;
    532  1.6.6.1      yamt 	for (i = 0; i < 11;i ++) {
    533  1.6.6.1      yamt 		status = bus_space_read_4(sc->sc_ba5_st, sc->sc_ba5_sh, chanbase);
    534  1.6.6.1      yamt 		if (status & reset) break;
    535  1.6.6.1      yamt 		delay(100);
    536  1.6.6.1      yamt 		status |= reset;
    537  1.6.6.1      yamt 		bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh, chanbase, status);
    538  1.6.6.1      yamt 	}
    539  1.6.6.1      yamt 	status = bus_space_read_4(sc->sc_ba5_st, sc->sc_ba5_sh, chanbase);
    540  1.6.6.1      yamt 	status &= ~reset;
    541  1.6.6.1      yamt 	bus_space_write_4(sc->sc_ba5_st, sc->sc_ba5_sh, chanbase, status);
    542  1.6.6.1      yamt 	status = bus_space_read_4(sc->sc_ba5_st, sc->sc_ba5_sh, chanbase);
    543      1.4  christos 
    544  1.6.6.1      yamt 	wdc_do_reset(chp, poll);
    545      1.4  christos 
    546  1.6.6.1      yamt }
    547      1.4  christos 
    548      1.4  christos static void
    549      1.4  christos pdc205xx_drv_probe(struct ata_channel *chp)
    550      1.4  christos {
    551      1.4  christos 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
    552      1.4  christos 	struct wdc_regs *wdr = CHAN_TO_WDC_REGS(chp);
    553      1.4  christos 	u_int32_t scontrol, sstatus;
    554      1.4  christos 	u_int16_t scnt, sn, cl, ch;
    555      1.4  christos 	int i, s;
    556      1.4  christos 
    557      1.4  christos 	/* XXX This should be done by other code. */
    558      1.4  christos 	for (i = 0; i < 2; i++) {
    559      1.4  christos 		chp->ch_drive[i].chnl_softc = chp;
    560      1.4  christos 		chp->ch_drive[i].drive = i;
    561      1.4  christos 	}
    562      1.4  christos 
    563      1.4  christos 	SCONTROL_WRITE(sc, chp->ch_channel, 0);
    564      1.4  christos 	delay(50*1000);
    565      1.4  christos 
    566      1.4  christos 	scontrol = SControl_DET_INIT | SControl_SPD_ANY | SControl_IPM_NONE;
    567      1.4  christos 	SCONTROL_WRITE(sc,chp->ch_channel,scontrol);
    568      1.4  christos 	delay(50*1000);
    569      1.4  christos 
    570      1.4  christos 	scontrol &= ~SControl_DET_INIT;
    571      1.4  christos 	SCONTROL_WRITE(sc,chp->ch_channel,scontrol);
    572      1.4  christos 	delay(50*1000);
    573      1.4  christos 
    574      1.4  christos 	sstatus = SSTATUS_READ(sc,chp->ch_channel);
    575      1.4  christos 
    576      1.4  christos 	switch (sstatus & SStatus_DET_mask) {
    577      1.4  christos 	case SStatus_DET_NODEV:
    578      1.4  christos 		/* No Device; be silent.  */
    579      1.4  christos 		break;
    580      1.4  christos 
    581      1.4  christos 	case SStatus_DET_DEV_NE:
    582      1.4  christos 		aprint_error("%s: port %d: device connected, but "
    583      1.4  christos 		    "communication not established\n",
    584      1.4  christos 		    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, chp->ch_channel);
    585      1.4  christos 		break;
    586      1.4  christos 
    587      1.4  christos 	case SStatus_DET_OFFLINE:
    588      1.4  christos 		aprint_error("%s: port %d: PHY offline\n",
    589      1.4  christos 		    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, chp->ch_channel);
    590      1.4  christos 		break;
    591      1.4  christos 
    592      1.4  christos 	case SStatus_DET_DEV:
    593      1.4  christos 		bus_space_write_1(wdr->cmd_iot, wdr->cmd_iohs[wd_sdh], 0,
    594      1.4  christos 		    WDSD_IBM);
    595      1.4  christos 		delay(10);	/* 400ns delay */
    596      1.4  christos 		scnt = bus_space_read_2(wdr->cmd_iot,
    597      1.4  christos 		    wdr->cmd_iohs[wd_seccnt], 0);
    598      1.4  christos 		sn = bus_space_read_2(wdr->cmd_iot,
    599      1.4  christos 		    wdr->cmd_iohs[wd_sector], 0);
    600      1.4  christos 		cl = bus_space_read_2(wdr->cmd_iot,
    601      1.4  christos 		    wdr->cmd_iohs[wd_cyl_lo], 0);
    602      1.4  christos 		ch = bus_space_read_2(wdr->cmd_iot,
    603      1.4  christos 		    wdr->cmd_iohs[wd_cyl_hi], 0);
    604      1.4  christos #if 0
    605      1.4  christos 		printf("%s: port %d: scnt=0x%x sn=0x%x cl=0x%x ch=0x%x\n",
    606      1.4  christos 		    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, chp->ch_channel,
    607      1.4  christos 		    scnt, sn, cl, ch);
    608      1.4  christos #endif
    609      1.4  christos 		/*
    610      1.4  christos 		 * scnt and sn are supposed to be 0x1 for ATAPI, but in some
    611      1.4  christos 		 * cases we get wrong values here, so ignore it.
    612      1.4  christos 		 */
    613      1.4  christos 		s = splbio();
    614      1.4  christos 		if (cl == 0x14 && ch == 0xeb)
    615      1.4  christos 			chp->ch_drive[0].drive_flags |= DRIVE_ATAPI;
    616      1.4  christos 		else
    617      1.4  christos 			chp->ch_drive[0].drive_flags |= DRIVE_ATA;
    618      1.4  christos 		splx(s);
    619      1.4  christos #if 0
    620      1.4  christos 		aprint_normal("%s: port %d: device present, speed: %s\n",
    621      1.4  christos 		    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, chp->ch_channel,
    622      1.4  christos 		    sata_speed(sstatus));
    623      1.4  christos #endif
    624      1.4  christos 		break;
    625      1.4  christos 
    626      1.4  christos 	default:
    627      1.4  christos 		aprint_error("%s: port %d: unknown SStatus: 0x%08x\n",
    628      1.4  christos 		    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, chp->ch_channel,
    629      1.4  christos 		    sstatus);
    630      1.4  christos 	}
    631      1.4  christos }
    632