diff options
author | Dinh Nguyen <dinguyen@kernel.org> | 2017-01-31 12:33:08 -0600 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2017-02-08 02:19:11 +0100 |
commit | a45526aaa0ae241f3e1df996fed988a014eeffe8 (patch) | |
tree | 7963f647342de91f3fd97aaf6c5cd16ab2916e2e /arch/arm/mach-socfpga/include/mach/clock_manager.h | |
parent | c83a824e62277162ad35f52879b2316902c0eff5 (diff) |
arm: socfpga: set the mpuclk divider in the Altera group register
The mpuclk register in the Altera group of the clock manager
divides the mpu_clk that is generated from the C0 output of the main
pll.
Without this patch, the default value of the register is 1, so the mpuclk
will always get divided by 2 if the correct value is not set. For example,
on the Arria5 socdk board, the MPU clock is only 525 MHz, and it should be
1.05 GHz.
Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
Diffstat (limited to 'arch/arm/mach-socfpga/include/mach/clock_manager.h')
-rw-r--r-- | arch/arm/mach-socfpga/include/mach/clock_manager.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-socfpga/include/mach/clock_manager.h b/arch/arm/mach-socfpga/include/mach/clock_manager.h index 2675951a3e2..803c9262201 100644 --- a/arch/arm/mach-socfpga/include/mach/clock_manager.h +++ b/arch/arm/mach-socfpga/include/mach/clock_manager.h @@ -55,6 +55,9 @@ struct cm_config { uint32_t ddr2xdqsclk; uint32_t ddrdqclk; uint32_t s2fuser2clk; + + /* altera group */ + uint32_t altera_grp_mpuclk; }; void cm_basic_init(const struct cm_config * const cfg); |