diff options
author | Sergei Shtylyov <sshtylyov@ru.mvista.com> | 2008-03-27 16:09:31 +0300 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-04-01 15:46:34 +0100 |
commit | 758e285faca4db948ecddefb523007255b29cdb7 (patch) | |
tree | 530fb34442234b04afe0972d6765bbc7f17ba0f6 /include | |
parent | b1ec4c8e483d0d00d3114eafdb2c85c1cf3ed4ae (diff) | |
download | linux-3.10-758e285faca4db948ecddefb523007255b29cdb7.tar.gz linux-3.10-758e285faca4db948ecddefb523007255b29cdb7.tar.bz2 linux-3.10-758e285faca4db948ecddefb523007255b29cdb7.zip |
[MIPS] Alchemy: work around clock misdetection on early Au1000
Work around the CPU clock miscalculation on Au1000DA/HA/HB due the
sys_cpupll register being write-only, i.e. actually do what the comment
before cal_r4off() function advertised for years but the code failed at.
This is achieved by just giving user a chance to define the clock
explicitly in the board config. via CONFIG_SOC_AU1000_FREQUENCY option,
defaulting to 396 MHz if the option is not given...
The patch is based on the AMD's big unpublished patch, the issue seems to
be an undocumented errata (or feature :-)...
Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-mips/mach-au1x00/au1000.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-mips/mach-au1x00/au1000.h b/include/asm-mips/mach-au1x00/au1000.h index cb18af98964..5bb57bf2b9d 100644 --- a/include/asm-mips/mach-au1x00/au1000.h +++ b/include/asm-mips/mach-au1x00/au1000.h @@ -1786,6 +1786,7 @@ struct cpu_spec { char *cpu_name; unsigned char cpu_od; /* Set Config[OD] */ unsigned char cpu_bclk; /* Enable BCLK switching */ + unsigned char cpu_pll_wo; /* sys_cpupll reg. write-only */ }; extern struct cpu_spec cpu_specs[]; |