Subject: Re: Portege 3000 series IDE support messed up?
To: James Haggerty <j.h@student.usyd.edu.au>
From: Manuel Bouyer <bouyer@antioche.eu.org>
List: port-i386
Date: 01/05/2006 22:58:11
--GvXjxJ+pjyke8COw
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
On Thu, Jan 05, 2006 at 10:46:55PM +0100, Manuel Bouyer wrote:
> On Thu, Jan 05, 2006 at 02:11:19PM +1100, James Haggerty wrote:
> > Quoting Manuel Bouyer <bouyer@antioche.eu.org>:
> >
> > > Ha yes, lots of things have changed since then. Can you try the attached
> > > patch ? It should definitively fix the issue, but I've no way to test
> > > it.
> >
> > Thanks; unfortunately:
>
> Can you try the attached patch instead ?
With the patch this time
--
Manuel Bouyer <bouyer@antioche.eu.org>
NetBSD: 26 ans d'experience feront toujours la difference
--
--GvXjxJ+pjyke8COw
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=diff
Index: pciide_pnpbios.c
===================================================================
RCS file: /cvsroot/src/sys/arch/i386/pnpbios/pciide_pnpbios.c,v
retrieving revision 1.20
diff -u -r1.20 pciide_pnpbios.c
--- pciide_pnpbios.c 11 Dec 2005 12:17:47 -0000 1.20
+++ pciide_pnpbios.c 5 Jan 2006 21:45:03 -0000
@@ -54,7 +54,6 @@
static int pciide_pnpbios_match(struct device *, struct cfdata *, void *);
static void pciide_pnpbios_attach(struct device *, struct device *, void *);
-void pciide_pnpbios_setup_channel(struct ata_channel *);
extern void pciide_channel_dma_setup(struct pciide_channel *);
extern int pciide_dma_init(void *, int, int, void *, size_t, int);
@@ -91,46 +90,62 @@
struct wdc_regs *wdr;
bus_space_tag_t compat_iot;
bus_space_handle_t cmd_baseioh, ctl_ioh;
- int i;
+ int i, drive, size;
+ u_int8_t idedma_ctl;
- printf("\n");
+ aprint_naive(": disk controller\n");
+ aprint_normal("\n");
pnpbios_print_devres(self, aa);
- printf("%s: Toshiba Extended IDE Controller\n", self->dv_xname);
+ aprint_normal("%s: Toshiba Extended IDE Controller\n", self->dv_xname);
if (pnpbios_io_map(aa->pbt, aa->resc, 2, &sc->sc_dma_iot,
&sc->sc_dma_ioh) != 0) {
- printf("%s: unable to map DMA registers\n", self->dv_xname);
+ aprint_error("%s: unable to map DMA registers\n",
+ self->dv_xname);
return;
}
if (pnpbios_io_map(aa->pbt, aa->resc, 0, &compat_iot,
&cmd_baseioh) != 0) {
- printf("%s: unable to map command registers\n", self->dv_xname);
+ aprint_error("%s: unable to map command registers\n",
+ self->dv_xname);
return;
}
if (pnpbios_io_map(aa->pbt, aa->resc, 1, &compat_iot,
&ctl_ioh) != 0) {
- printf("%s: unable to map control register\n", self->dv_xname);
+ aprint_error("%s: unable to map control register\n",
+ self->dv_xname);
return;
}
sc->sc_dmat = &pci_bus_dma_tag;
sc->sc_dma_ok = 1;
+ for (i = 0; i < IDEDMA_NREGS; i++) {
+ size = 4;
+ if (size > (IDEDMA_SCH_OFFSET - i))
+ size = IDEDMA_SCH_OFFSET - i;
+ if (bus_space_subregion(sc->sc_dma_iot, sc->sc_dma_ioh,
+ IDEDMA_SCH_OFFSET * chan + i, size,
+ &cp->dma_iohs[i]) != 0) {
+ aprint_error("%s: can't subregion offset %d "
+ "size %lu", i, (u_long)size);
+ return;
+ }
+ }
+ sc->sc_dma_maxsegsz = IDEDMA_BYTE_COUNT_MAX;
+ sc->sc_dma_boundary = IDEDMA_BYTE_COUNT_ALIGN;
sc->sc_wdcdev.dma_arg = sc;
sc->sc_wdcdev.dma_init = pciide_dma_init;
sc->sc_wdcdev.dma_start = pciide_dma_start;
sc->sc_wdcdev.dma_finish = pciide_dma_finish;
+ sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA;
sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
sc->sc_wdcdev.sc_atac.atac_nchannels = 1;
sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
- sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA | ATAC_CAP_UDMA;
- sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
- sc->sc_wdcdev.sc_atac.atac_dma_cap = 2; /* XXX */
- sc->sc_wdcdev.sc_atac.atac_udma_cap = 2; /* XXX */
-#if 0 /* XXX */
- sc->sc_wdcdev.set_modes = pciide_pnpbios_setup_channel;
-#endif
+ sc->sc_wdcdev.sc_atac.atac_pio_cap = 0;
+ sc->sc_wdcdev.sc_atac.atac_dma_cap = 0; /* XXX */
+ sc->sc_wdcdev.sc_atac.atac_udma_cap = 0; /* XXX */
wdc_allocate_regs(&sc->sc_wdcdev);
@@ -141,8 +156,8 @@
cp->ata_channel.ch_queue = malloc(sizeof(struct ata_queue),
M_DEVBUF, M_NOWAIT);
if (cp->ata_channel.ch_queue == NULL) {
- printf("%s: unable to allocate memory for command queue\n",
- self->dv_xname);
+ aprint_error("%s: unable to allocate memory for command "
+ "queue\n", self->dv_xname);
return;
}
@@ -154,8 +169,8 @@
for (i = 0; i < WDC_NREG; i++) {
if (bus_space_subregion(wdr->cmd_iot, wdr->cmd_baseioh, i,
i == 0 ? 4 : 1, &wdr->cmd_iohs[i]) != 0) {
- printf("%s: unable to subregion control register\n",
- self->dv_xname);
+ aprint_error("%s: unable to subregion control "
+ "register\n", self->dv_xname);
return;
}
}
@@ -170,13 +185,31 @@
pciide_compat_intr, cp);
wdcattach(wdc_cp);
-}
-void
-pciide_pnpbios_setup_channel(chp)
- struct ata_channel *chp;
-{
- struct pciide_channel *cp = CHAN_TO_PCHAN(chp);
-
- pciide_channel_dma_setup(cp);
+ idedma_ctl = 0;
+ for (drive = 0; drive < cp->ata_channel.ch_ndrive; drive++) {
+ /*
+ * we have not probed the drives yet,
+ * allocate ressources for all of them.
+ */
+ if (pciide_dma_table_setup(sc, 0, drive) != 0) {
+ /* Abort DMA setup */
+ aprint_error(
+ "%s:%d:%d: can't allocate DMA maps, "
+ "using PIO transfers\n",
+ sc->sc_wdcdev.sc_atac.atac_dev.dv_xname,
+ 0, drive);
+ sc->sc_dma_ok = 0;
+ sc->sc_wdcdev.sc_atac.atac_cap &= ~ATAC_CAP_DMA;
+ sc->sc_wdcdev.irqack = NULL;
+ idedma_ctl = 0;
+ break;
+ }
+ idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
+ }
+ if (idedma_ctl != 0) {
+ /* Add software bits in status register */
+ bus_space_write_1(sc->sc_dma_iot,
+ cp->dma_iohs[IDEDMA_CTL], 0, idedma_ctl);
+ }
}
--GvXjxJ+pjyke8COw--