diff options
author | Anson Huang <anson.huang@nxp.com> | 2019-04-22 08:32:45 +0000 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-04-29 16:01:50 -0700 |
commit | b4a4cb5a0454cf48559d92cd1e8fb04d57194514 (patch) | |
tree | 0b38b077eceea84a4f98b8810e9b6ec2a7a2bdf6 /drivers/clk/imx/clk.h | |
parent | 6ff46d77ca75a52ec876e085f60e944e5722ebb1 (diff) | |
download | lwn-b4a4cb5a0454cf48559d92cd1e8fb04d57194514.tar.gz lwn-b4a4cb5a0454cf48559d92cd1e8fb04d57194514.zip |
clk: imx: correct i.MX7D AV PLL num/denom offset
According reference manual, i.MX7D's audio/video PLL's
num/denom register offset are 0x20/0x30, they are different
from i.MX6's audio/video PLL, correct it by introducing new
offset variables for audio/video PLL and using runtime
assignment based on PLL type.
Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/imx/clk.h')
-rw-r--r-- | drivers/clk/imx/clk.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h index edc12d68a5e5..8639a8f2153e 100644 --- a/drivers/clk/imx/clk.h +++ b/drivers/clk/imx/clk.h @@ -77,6 +77,7 @@ enum imx_pllv3_type { IMX_PLLV3_ENET_IMX7, IMX_PLLV3_SYS_VF610, IMX_PLLV3_DDR_IMX7, + IMX_PLLV3_AV_IMX7, }; struct clk *imx_clk_pllv3(enum imx_pllv3_type type, const char *name, |