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