
Ilitek ILI9881C MIPI LCD Panel not work on i.MX93 - NXP Community
2024年1月9日 · You need modify drivers/clk/imx/clk-fracn-gppll.c to support new pixel clock Please refer 74.2.3 Clock configuration in RM. If we add a frequency of 537.6MHz(Pixel clock …
i.MX93 lcdif clock rate calculation app note - NXP Community
2024年9月23日 · One of the existing values in the imx_fracn_gppll_rate_table is 10x. I tried to use that, by setting my clock rates in the device tree to the following: assigned-clock-rates = …
Ilitek ILI9881C MIPI LCD Panel issue on i.MX93 - NXP Community
I'm trying to use the ilitek ili9881c driver with specific configurations to get the panel to display correctly, but I have been unsuccessful so far. I do some displays with Weston and modetest. …
LKML: Alexander Stein: [RFC PATCH 3/3] clk: imx: clk-fracn-gppll ...
2025年2月10日 · ana_mfn = readl_relaxed(pll->base + PLL_STATUS); ana_mfn = FIELD_GET(PLL_MFN_MASK, ana_mfn); return 0;
imx-sm/devices/MIMX9/drivers/fsl_fract_pll.c at master - GitHub
System Manager firmware for i.MX processors. Contribute to nxp-imx/imx-sm development by creating an account on GitHub.
[RFC PATCH 3/3] clk: imx: clk-fracn-gppll: Support dynamic rates ...
The strategy to get to the PLL setting for a rate is: - The rate table is searched for suitable rates, so for standard rates the same settings are used as without this patch - Then try to only adjust …
[PATCH v3 0/2] clk: imx: fix AV PLL rate setting
- Cast result of 'parent_rate * mfn / mfd' to unsigned long instead of u32. - Clarify how this issue was discovered in the commit message. - Rebased on Linux 4.8. Changes since v1: - Use …
[v3,RESEND] ARM: imx: pllv1: Fix PLL calculation for i.MX27
MFN bit 9 on i.MX27 has a different meaning than in other SOCs. This is a just sign bit. This patch makes different calculation for i.MX27. Signed-off-by: Alexander Shiyan <[email protected]>- …
[v2] ARM: imx: pllv1: Fix PLL calculation for i.MX27 - Patchwork
Hi, Alexander Shiyan writes: > MFN bit 9 on i.MX27 has a different meaning than in other SOCs. This > is a just sign bit.
[PATCH 02/11] clk: imx: correct AV PLL rate formula
u32 mfn = readl_relaxed(pll->base + PLL_NUM_OFFSET); u32 mfd = readl_relaxed(pll->base + PLL_DENOM_OFFSET); u32 div = readl_relaxed(pll->base) & pll->div_mask; + u64 temp64 = …