Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dff244af014144e4ac87dfc5b6e450dc8832710e
Commit:     dff244af014144e4ac87dfc5b6e450dc8832710e
Parent:     23916d49155552767726f116daf32dfb2aa3af23
Author:     Alistair John Strachan <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 30 13:33:39 2008 +0100
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Wed Jan 30 13:33:39 2008 +0100

    x86: force enable HPET on (some?) ICH9 boards
    
    Some consumer ICH9 boards (such as the Abit IP35 Pro) do not provide a BIOS
    option for enabling the HPET. The same ICH workaround used for 6,7,8 can be
    applied to 9. Here I enable the only PCI id that was visible on my system.
    
    I have confirmed the HPETs work both from userspace and as a clocksource for
    the running kernel (2.6.24 here) after applying this patch.
    
     Force enabled HPET at base address 0xfed00000
     hpet clockevent registered
     hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
     hpet0: 4 64-bit timers, 14318180 Hz
    
    Signed-off-by: Alistair John Strachan <[EMAIL PROTECTED]>
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 arch/x86/kernel/quirks.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/arch/x86/kernel/quirks.c b/arch/x86/kernel/quirks.c
index fab30e1..150ba29 100644
--- a/arch/x86/kernel/quirks.c
+++ b/arch/x86/kernel/quirks.c
@@ -162,6 +162,8 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 
PCI_DEVICE_ID_INTEL_ICH7_31,
                         ich_force_enable_hpet);
 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_1,
                         ich_force_enable_hpet);
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_7,
+                        ich_force_enable_hpet);
 
 
 static struct pci_dev *cached_dev;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to