Home | History | Annotate | Line # | Download | only in pnpbios
pciide_pnpbios.c revision 1.22.20.1
      1 /*	$NetBSD: pciide_pnpbios.c,v 1.22.20.1 2006/10/22 06:04:48 yamt Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1999 Soren S. Jorvang.  All rights reserved.
      5  *
      6  * Redistribution and use in source and binary forms, with or without
      7  * modification, are permitted provided that the following conditions
      8  * are met:
      9  * 1. Redistributions of source code must retain the above copyright
     10  *    notice, this list of conditions, and the following disclaimer.
     11  * 2. Redistributions in binary form must reproduce the above copyright
     12  *    notice, this list of conditions and the following disclaimer in the
     13  *    documentation and/or other materials provided with the distribution.
     14  *
     15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     25  * SUCH DAMAGE.
     26  */
     27 
     28 /*
     29  * Handle the weird "almost PCI" IDE on Toshiba Porteges.
     30  */
     31 
     32 #include <sys/cdefs.h>
     33 __KERNEL_RCSID(0, "$NetBSD: pciide_pnpbios.c,v 1.22.20.1 2006/10/22 06:04:48 yamt Exp $");
     34 
     35 #include <sys/param.h>
     36 #include <sys/systm.h>
     37 #include <sys/device.h>
     38 #include <sys/malloc.h>
     39 
     40 #include <machine/bus.h>
     41 
     42 #include <dev/ic/wdcreg.h>
     43 #include <dev/isa/isavar.h>
     44 #include <dev/isa/isadmavar.h>
     45 
     46 #include <i386/pnpbios/pnpbiosvar.h>
     47 
     48 #include <dev/pci/pcireg.h>
     49 #include <dev/pci/pcivar.h>
     50 #include <dev/pci/pcidevs.h>
     51 
     52 #include <dev/pci/pciidereg.h>
     53 #include <dev/pci/pciidevar.h>
     54 
     55 static int	pciide_pnpbios_match(struct device *, struct cfdata *, void *);
     56 static void	pciide_pnpbios_attach(struct device *, struct device *, void *);
     57 
     58 extern void	pciide_channel_dma_setup(struct pciide_channel *);
     59 extern int	pciide_dma_init(void *, int, int, void *, size_t, int);
     60 extern void	pciide_dma_start(void *, int, int);
     61 extern int	pciide_dma_finish(void *, int, int, int);
     62 extern int	pciide_compat_intr (void *);
     63 
     64 CFATTACH_DECL(pciide_pnpbios, sizeof(struct pciide_softc),
     65     pciide_pnpbios_match, pciide_pnpbios_attach, NULL, NULL);
     66 
     67 int
     68 pciide_pnpbios_match(struct device *parent __unused,
     69     struct cfdata *match __unused, void *aux)
     70 {
     71 	struct pnpbiosdev_attach_args *aa = aux;
     72 
     73 	if (strcmp(aa->idstr, "TOS7300") == 0)
     74 		return 1;
     75 
     76 	return 0;
     77 }
     78 
     79 void
     80 pciide_pnpbios_attach(struct device *parent __unused, struct device *self,
     81     void *aux)
     82 {
     83 	struct pciide_softc *sc = (void *)self;
     84 	struct pnpbiosdev_attach_args *aa = aux;
     85 	struct pciide_channel *cp;
     86 	struct ata_channel *wdc_cp;
     87 	struct wdc_regs *wdr;
     88 	bus_space_tag_t compat_iot;
     89 	bus_space_handle_t cmd_baseioh, ctl_ioh;
     90 	int i, drive, size;
     91 	u_int8_t idedma_ctl;
     92 
     93 	aprint_naive(": disk controller\n");
     94 	aprint_normal("\n");
     95 	pnpbios_print_devres(self, aa);
     96 
     97 	aprint_normal("%s: Toshiba Extended IDE Controller\n", self->dv_xname);
     98 
     99 	if (pnpbios_io_map(aa->pbt, aa->resc, 2, &sc->sc_dma_iot,
    100 	    &sc->sc_dma_ioh) != 0) {
    101 		aprint_error("%s: unable to map DMA registers\n",
    102 		    self->dv_xname);
    103 		return;
    104 	}
    105 	if (pnpbios_io_map(aa->pbt, aa->resc, 0, &compat_iot,
    106 	    &cmd_baseioh) != 0) {
    107 		aprint_error("%s: unable to map command registers\n",
    108 		    self->dv_xname);
    109 		return;
    110 	}
    111 	if (pnpbios_io_map(aa->pbt, aa->resc, 1, &compat_iot,
    112 	    &ctl_ioh) != 0) {
    113 		aprint_error("%s: unable to map control register\n",
    114 		    self->dv_xname);
    115 		return;
    116 	}
    117 
    118 	sc->sc_dmat = &pci_bus_dma_tag;
    119 
    120 	cp = &sc->pciide_channels[0];
    121 	sc->wdc_chanarray[0] = &cp->ata_channel;
    122 	cp->ata_channel.ch_channel = 0;
    123 	cp->ata_channel.ch_atac = &sc->sc_wdcdev.sc_atac;
    124 	cp->ata_channel.ch_queue = malloc(sizeof(struct ata_queue),
    125 					  M_DEVBUF, M_NOWAIT);
    126 	cp->ata_channel.ch_ndrive = 2;
    127 	if (cp->ata_channel.ch_queue == NULL) {
    128 		aprint_error("%s: unable to allocate memory for command "
    129 		    "queue\n", self->dv_xname);
    130 		return;
    131 	}
    132 
    133 	sc->sc_dma_ok = 1;
    134 	for (i = 0; i < IDEDMA_NREGS; i++) {
    135 		size = 4;
    136 		if (size > (IDEDMA_SCH_OFFSET - i))
    137 			size = IDEDMA_SCH_OFFSET - i;
    138 		if (bus_space_subregion(sc->sc_dma_iot, sc->sc_dma_ioh,
    139 		    i, size, &cp->dma_iohs[i]) != 0) {
    140 			aprint_error("%s: can't subregion offset %d "
    141 			    "size %lu", self->dv_xname, i, (u_long)size);
    142 			return;
    143 		}
    144 	}
    145 	sc->sc_dma_maxsegsz = IDEDMA_BYTE_COUNT_MAX;
    146 	sc->sc_dma_boundary = IDEDMA_BYTE_COUNT_ALIGN;
    147 	sc->sc_wdcdev.dma_arg = sc;
    148 	sc->sc_wdcdev.dma_init = pciide_dma_init;
    149 	sc->sc_wdcdev.dma_start = pciide_dma_start;
    150 	sc->sc_wdcdev.dma_finish = pciide_dma_finish;
    151 	sc->sc_wdcdev.irqack = pciide_irqack;
    152 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA;
    153 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
    154 	sc->sc_wdcdev.sc_atac.atac_nchannels = 1;
    155 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
    156 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 0;
    157 	sc->sc_wdcdev.sc_atac.atac_dma_cap = 0;		/* XXX */
    158 	sc->sc_wdcdev.sc_atac.atac_udma_cap = 0;	/* XXX */
    159 
    160 	wdc_allocate_regs(&sc->sc_wdcdev);
    161 
    162 	wdc_cp = &cp->ata_channel;
    163 	wdr = CHAN_TO_WDC_REGS(wdc_cp);
    164 	wdr->cmd_iot = compat_iot;
    165 	wdr->cmd_baseioh = cmd_baseioh;
    166 
    167 	for (i = 0; i < WDC_NREG; i++) {
    168 		if (bus_space_subregion(wdr->cmd_iot, wdr->cmd_baseioh, i,
    169 		    i == 0 ? 4 : 1, &wdr->cmd_iohs[i]) != 0) {
    170 			    aprint_error("%s: unable to subregion control "
    171 				"register\n", self->dv_xname);
    172 			    return;
    173 		}
    174 	}
    175 	wdc_init_shadow_regs(wdc_cp);
    176 
    177 	wdr->ctl_iot = wdr->data32iot = compat_iot;
    178 	wdr->ctl_ioh = wdr->data32ioh = ctl_ioh;
    179 
    180 	cp->compat = 1;
    181 
    182 	cp->ih = pnpbios_intr_establish(aa->pbt, aa->resc, 0, IPL_BIO,
    183 					pciide_compat_intr, cp);
    184 
    185 	wdcattach(wdc_cp);
    186 
    187 	idedma_ctl = 0;
    188 	for (drive = 0; drive < cp->ata_channel.ch_ndrive; drive++) {
    189 		/*
    190 		 * we have not probed the drives yet,
    191 		 * allocate ressources for all of them.
    192 		 */
    193 		if (pciide_dma_table_setup(sc, 0, drive) != 0) {
    194 			/* Abort DMA setup */
    195 			aprint_error(
    196 			    "%s:%d:%d: can't allocate DMA maps, "
    197 			    "using PIO transfers\n",
    198 			    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname,
    199 			    0, drive);
    200 			sc->sc_dma_ok = 0;
    201 			sc->sc_wdcdev.sc_atac.atac_cap &= ~ATAC_CAP_DMA;
    202 			sc->sc_wdcdev.irqack = NULL;
    203 			idedma_ctl = 0;
    204 			break;
    205 		}
    206 		idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    207 	}
    208 	if (idedma_ctl != 0) {
    209 		/* Add software bits in status register */
    210 		bus_space_write_1(sc->sc_dma_iot,
    211 		    cp->dma_iohs[IDEDMA_CTL], 0, idedma_ctl);
    212 	}
    213 }
    214