arm: socfpga: set the mpuclk divider in the Altera group register
authorDinh Nguyen <dinguyen@kernel.org>
Tue, 31 Jan 2017 18:33:08 +0000 (12:33 -0600)
committerMarek Vasut <marex@denx.de>
Wed, 8 Feb 2017 01:19:11 +0000 (02:19 +0100)
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>
arch/arm/mach-socfpga/clock_manager.c
arch/arm/mach-socfpga/include/mach/clock_manager.h
arch/arm/mach-socfpga/wrap_pll_config.c

index aa716366ea327d1609380ad23205785181208e23..29e18f89968c69cf768dafac9c696dea6c37835a 100644 (file)
@@ -167,6 +167,9 @@ void cm_basic_init(const struct cm_config * const cfg)
        /* main mpu */
        writel(cfg->mpuclk, &clock_manager_base->main_pll.mpuclk);
 
+       /* altera group mpuclk */
+       writel(cfg->altera_grp_mpuclk, &clock_manager_base->altera.mpuclk);
+
        /* main main clock */
        writel(cfg->mainclk, &clock_manager_base->main_pll.mainclk);
 
index 2675951a3e2526ff6811cb7be009464521d7d436..803c9262201b3d35de4e0130f7517e433644e8bc 100644 (file)
@@ -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);
index 8a0a0e6889b8efd79c3df35ebcd769eaf5de9627..72b5f92aaf0b462bb887a5687243fe1f87ad3851 100644 (file)
@@ -116,6 +116,9 @@ static const struct cm_config cm_default_cfg = {
                CLKMGR_SDRPLLGRP_S2FUSER2CLK_PHASE_OFFSET) |
        (CONFIG_HPS_SDRPLLGRP_S2FUSER2CLK_CNT <<
                CLKMGR_SDRPLLGRP_S2FUSER2CLK_CNT_OFFSET),
+
+       /* altera group */
+       CONFIG_HPS_ALTERAGRP_MPUCLK,
 };
 
 const struct cm_config * const cm_get_default_config(void)