Solved! Go to Solution.
I just copy the content from IP spec, you just set the same as our bsp does
D version is the latest version, could you send the source path you mention 'hdmi_fdcc_ref' in Linux
I clone the code from link:https://source.codeaurora.org/external/imx/linux-imx
and checkout to the branch: imx_5.4.70_2.3.0
the code is in `imx_hdmimix_clk_probe` function of the file `drivers/clk/imx/clk-hdmimix.c`.
clks[IMX8MP_CLK_HDMIMIX_FDCC_REF_CLK] = imx_dev_clk_gate(dev, "hdmi_fdcc_ref", "hdmi_fdcc_tst", base + 0x50, 2);
clks[IMX8MP_CLK_HDMIMIX_HRV_MWR_APB_CLK] = imx_dev_clk_gate(dev, "hrv_mwr_apb", "hdmi_glb_apb", base + 0x50, 3);
thanks for your information, I checked the hdmi IP,
FDCC_REF_CLK_EN: FDCC_REF_CLK_EN control
clock enable for the ref_clk input of FDCC
you can refer to this
'''
FDCC_REF_CLK_EN: FDCC_REF_CLK_EN control
clock enable for the ref_clk input of FDCC
'''
You mean this is the description of bit2 of HDMI_RTX_CLK_CTL1(0x50), not the reserved value?
I just copy the content from IP spec, you just set the same as our bsp does