* [PATCH] Longhaul - Add support for CN400
@ 2006-11-30 2:47 Rafał Bilski
0 siblings, 0 replies; only message in thread
From: Rafał Bilski @ 2006-11-30 2:47 UTC (permalink / raw)
To: Dave Jones; +Cc: cpufreq
Support for CN400 northbridge when ACPI C3 isn't available.
Tested on Epia SP13000. Thanks to Robert for testing it.
Signed-off-by: Rafa³ Bilski <rafalbilski@interia.pl>
---
diff --git a/arch/i386/kernel/cpu/cpufreq/longhaul.c b/arch/i386/kernel/cpu/cpufreq/longhaul.c
--- a/arch/i386/kernel/cpu/cpufreq/longhaul.c
+++ b/arch/i386/kernel/cpu/cpufreq/longhaul.c
@@ -583,6 +583,11 @@ static int enable_arbiter_disable(void)
if (dev == NULL) {
reg = 0x76;
dev = pci_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_862X_0, NULL);
+ /* Find CN400 V-Link host bridge */
+ if (dev == NULL) {
+ dev = pci_find_device(PCI_VENDOR_ID_VIA, 0x7259, NULL);
+ }
+
}
if (dev != NULL) {
/* Enable access to port 0x22 */
@@ -734,7 +739,7 @@ print_support_type:
return 0;
err_acpi:
- printk(KERN_ERR PFX "No ACPI support. No VT8601 or VT8623 northbridge. Aborting.\n");
+ printk(KERN_ERR PFX "No ACPI support. Unsupported northbridge. Aborting.\n");
return -ENODEV;
}
----------------------------------------------------------------------
PS. >>> http://link.interia.pl/f19a6
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-11-30 2:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-30 2:47 [PATCH] Longhaul - Add support for CN400 Rafał Bilski
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.