Re: 2.4.23-rc1: SiS pirq: IDE/ACPI/DAQ mapping not implemented: (97)

From: Davide Libenzi
Date: Fri Nov 14 2003 - 11:56:53 EST


On Fri, 14 Nov 2003, Roland Lezuo wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> > Roland, could you send the output from "lspci -vxxx -d:8" please for
> > verification?
> 00:02.0 ISA bridge: Silicon Integrated Systems [SiS] 85C503/5513
> Flags: bus master, medium devsel, latency 0
> 00: 39 10 08 00 0f 00 00 02 00 00 01 06 00 00 80 00
> 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> 40: 9a 0b 0c 05 0b 22 31 09 10 00 00 00 11 20 04 01
> 50: 11 28 02 01 62 00 63 00 9c 2e 12 00 36 06 00 00
> 60: 80 80 80 09 40 c1 0c 10 80 80 00 02 d0 00 00 00
> 70: 00 00 00 00 00 50 00 fc 00 00 00 00 06 00 01 00
> 80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> 90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> f0: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
>
> I am willed to test any patch or even write one (with some help and tips ;)

Use the patch below and send the dmesg ...


- Davide




--- a/arch/i386/kernel/pci-i386.h 2003-08-31 05:21:57.000000000 -0700
+++ b/arch/i386/kernel/pci-i386.mod.h 2003-11-14 08:50:35.000000000 -0800
@@ -6,7 +6,7 @@

#undef DEBUG

-#ifdef DEBUG
+#ifndef DEBUG
#define DBG(x...) printk(x)
#else
#define DBG(x...)
--- a/arch/i386/kernel/pci-irq.c 2003-08-31 06:51:32.000000000 -0700
+++ b/arch/i386/kernel/pci-irq.mod.c 2003-11-14 08:52:12.000000000 -0800
@@ -679,14 +679,14 @@
r->name = "SIS96x";
r->get = pirq_sis96x_get;
r->set = pirq_sis96x_set;
- DBG("PCI: Detecting SiS router at %02x:%02x : SiS096x detected\n",
- rt->rtr_bus, rt->rtr_devfn);
+ DBG("PCI: Detecting SiS router at %02x:%02x (devid=%x): SiS096x detected\n",
+ rt->rtr_bus, rt->rtr_devfn, devid);
} else {
r->name = "SIS5595";
r->get = pirq_sis5595_get;
r->set = pirq_sis5595_set;
- DBG("PCI: Detecting SiS router at %02x:%02x : SiS5595 detected\n",
- rt->rtr_bus, rt->rtr_devfn);
+ DBG("PCI: Detecting SiS router at %02x:%02x (devid=%x): SiS5595 detected\n",
+ rt->rtr_bus, rt->rtr_devfn, devid);
}
return 1;
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/