diff options
author | Anson Huang <b20788@freescale.com> | 2018-03-28 09:46:38 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-04-06 10:14:03 -0700 |
commit | a12ec8b6536b9eb484627f252d2a460f6b74c585 (patch) | |
tree | 2ba68fd9b4e4f25e398754aa4e8d36da7680efb8 /drivers/clk | |
parent | afe7c08a03a47732fa32ef12b26fb8fe4f9a00b9 (diff) | |
download | linux-a12ec8b6536b9eb484627f252d2a460f6b74c585.tar.gz linux-a12ec8b6536b9eb484627f252d2a460f6b74c585.tar.bz2 linux-a12ec8b6536b9eb484627f252d2a460f6b74c585.zip |
clk: imx7d: Correct ahb clk parent select
Design team change the ahb's clk parent options but
did NOT update the DOC accordingly in time, so the
AHB/IPG's clk rate in clk tree is incorrect, AHB is
67.5MHz and IPG is 33.75MHz, but using scope to
monitor them, they are actually 135MHz and 67.5MHz,
update the clk parent option to make clk tree info
correct.
Signed-off-by: Anson Huang <b20788@freescale.com>
Signed-off-by: Irina Tirdea <irina.tirdea@nxp.com>
Signed-off-by: Abel Vesa <abel.vesa@nxp.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/imx/clk-imx7d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/imx/clk-imx7d.c b/drivers/clk/imx/clk-imx7d.c index 1cc485f6c621..50da4cb00912 100644 --- a/drivers/clk/imx/clk-imx7d.c +++ b/drivers/clk/imx/clk-imx7d.c @@ -74,7 +74,7 @@ static const char *nand_usdhc_bus_sel[] = { "osc", "pll_sys_pfd2_270m_clk", static const char *ahb_channel_sel[] = { "osc", "pll_sys_pfd2_270m_clk", "pll_dram_533m_clk", "pll_sys_pfd0_392m_clk", - "pll_enet_125m_clk", "pll_usb_main_clk", "pll_audio_post_div", + "pll_enet_250m_clk", "pll_usb_main_clk", "pll_audio_post_div", "pll_video_post_div", }; static const char *dram_phym_sel[] = { "pll_dram_main_clk", |