diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2005-09-27 22:50:06 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-09-27 22:50:06 -0700 |
commit | d2212bc7db13268bef0799d9ff4b2e511c284885 (patch) | |
tree | 8f1ff9d5b790272de29381f3d707251f0dc43c5d /arch/sparc64/kernel/us3_cpufreq.c | |
parent | f16af555cc46a724507da371fbac94b430c93315 (diff) | |
download | op-kernel-dev-d2212bc7db13268bef0799d9ff4b2e511c284885.zip op-kernel-dev-d2212bc7db13268bef0799d9ff4b2e511c284885.tar.gz |
[SPARC64]: Add missing IDs for newer cpus.
Also, the us3_cpufreq driver can work on Ultra-IV and IV+.
They use the SAFARI bus register to control the clock divider
just like Ultra-III and III+ do.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/kernel/us3_cpufreq.c')
-rw-r--r-- | arch/sparc64/kernel/us3_cpufreq.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/sparc64/kernel/us3_cpufreq.c b/arch/sparc64/kernel/us3_cpufreq.c index 9080e7c..0340041 100644 --- a/arch/sparc64/kernel/us3_cpufreq.c +++ b/arch/sparc64/kernel/us3_cpufreq.c @@ -208,7 +208,10 @@ static int __init us3_freq_init(void) impl = ((ver >> 32) & 0xffff); if (manuf == CHEETAH_MANUF && - (impl == CHEETAH_IMPL || impl == CHEETAH_PLUS_IMPL)) { + (impl == CHEETAH_IMPL || + impl == CHEETAH_PLUS_IMPL || + impl == JAGUAR_IMPL || + impl == PANTHER_IMPL)) { struct cpufreq_driver *driver; ret = -ENOMEM; |