Hi Marcelo, This patch against 2.4.18-rc1 adds additional support for the 82801 I/O Controller Hub family that is being used by the intel 8xx series of chipsets. The patch mainly adds extra support for the 82801CA and 82801CAM chips. Greetings, Wim. diff -u --recursive --new-file linux-2.4.18-rc1/arch/i386/kernel/pci-irq.c linux-2.4.18-rc1-patched/arch/i386/kernel/pci-irq.c --- linux-2.4.18-rc1/arch/i386/kernel/pci-irq.c Sat Feb 16 14:49:47 2002 +++ linux-2.4.18-rc1-patched/arch/i386/kernel/pci-irq.c Sat Feb 16 15:26:14 2002 @@ -443,7 +443,12 @@ { "PIIX", PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_0, pirq_piix_get, pirq_piix_set }, { "PIIX", PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371MX, pirq_piix_get, pirq_piix_set }, { "PIIX", PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443MX_0, pirq_piix_get, pirq_piix_set }, + { "PIIX", PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_0, pirq_piix_get, pirq_piix_set }, + { "PIIX", PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_0, pirq_piix_get, pirq_piix_set }, { "PIIX", PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_0, pirq_piix_get, pirq_piix_set }, + { "PIIX", PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_10, pirq_piix_get, pirq_piix_set }, + { "PIIX", PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_0, pirq_piix_get, pirq_piix_set }, + { "PIIX", PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_12, pirq_piix_get, pirq_piix_set }, { "ALI", PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M1533, pirq_ali_get, pirq_ali_set }, diff -u --recursive --new-file linux-2.4.18-rc1/drivers/acpi/ospm/processor/pr_osl.c linux-2.4.18-rc1-patched/drivers/acpi/ospm/processor/pr_osl.c --- linux-2.4.18-rc1/drivers/acpi/ospm/processor/pr_osl.c Fri Dec 21 18:41:53 2001 +++ linux-2.4.18-rc1-patched/drivers/acpi/ospm/processor/pr_osl.c Sat Feb 16 15:26:14 2002 @@ -259,6 +259,8 @@ while ((dev = pci_find_subsys(PCI_VENDOR_ID_INTEL, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, dev))) { switch (dev->device) { + case PCI_DEVICE_ID_INTEL_82801CA_11: /* PIIX4U6 */ + case PCI_DEVICE_ID_INTEL_82801CA_10: /* PIIX4U5 */ case PCI_DEVICE_ID_INTEL_82801BA_8: /* PIIX4U4 */ case PCI_DEVICE_ID_INTEL_82801BA_9: /* PIIX4U3 */ case PCI_DEVICE_ID_INTEL_82451NX: /* PIIX4NX */ diff -u --recursive --new-file linux-2.4.18-rc1/drivers/char/i810-tco.c linux-2.4.18-rc1-patched/drivers/char/i810-tco.c --- linux-2.4.18-rc1/drivers/char/i810-tco.c Sat Feb 16 14:49:48 2002 +++ linux-2.4.18-rc1-patched/drivers/char/i810-tco.c Sat Feb 16 15:26:15 2002 @@ -46,11 +46,6 @@ #include "i810-tco.h" -/* Just in case that the PCI vendor and device IDs are not yet defined */ -#ifndef PCI_DEVICE_ID_INTEL_82801AA_0 -#define PCI_DEVICE_ID_INTEL_82801AA_0 0x2410 -#endif - /* Default expire timeout */ #define TIMER_MARGIN 50 /* steps of 0.6sec, 2device == PCI_DEVICE_ID_INTEL_82801BA_8) || (dev->device == PCI_DEVICE_ID_INTEL_82801BA_9) || - (dev->device == PCI_DEVICE_ID_INTEL_82801CA_10)) ? 1 : 0; + (dev->device == PCI_DEVICE_ID_INTEL_82801CA_10) || + (dev->device == PCI_DEVICE_ID_INTEL_82801CA_11)) ? 1 : 0; int ultra66 = ((ultra100) || (dev->device == PCI_DEVICE_ID_INTEL_82801AA_1) || (dev->device == PCI_DEVICE_ID_INTEL_82372FB_1)) ? 1 : 0; To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/