On 03.12.2024 03:22, Liu Ying wrote:
On 12/02/2024, Nikolaus Voss wrote:
[You don't often get email from nv@xxxxxxx. Learn why this is
important at https://aka.ms/LearnAboutSenderIdentification ]
Hi Liu,
Hi,
On 02.12.2024 07:32, Liu Ying wrote:
On 11/27/2024, Nikolaus Voss wrote:
LDB clock has to be a fixed multiple of the pixel clock.
As LDB and pixel clock are derived from different clock sources
(at least on imx8mp), this constraint cannot be satisfied for
any pixel clock, which leads to flickering and incomplete
lines on the attached display.
To overcome this, check this condition in mode_fixup() and
adapt the pixel clock accordingly.
Cc: <stable@xxxxxxxxxxxxxxx>
It looks like stable is not effectively Cc'ed.
Need a Fixes tag?
I will include
Fixes: 463db5c2ed4a ("drm: bridge: ldb: Implement simple Freescale
i.MX8MP LDB bridge")
in v2.
Signed-off-by: Nikolaus Voss <nv@xxxxxxx>
---
drivers/gpu/drm/bridge/fsl-ldb.c | 40
++++++++++++++++++++++++++++----
1 file changed, 36 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/bridge/fsl-ldb.c
b/drivers/gpu/drm/bridge/fsl-ldb.c
index 0e4bac7dd04ff..e341341b8c600 100644
--- a/drivers/gpu/drm/bridge/fsl-ldb.c
+++ b/drivers/gpu/drm/bridge/fsl-ldb.c
@@ -104,12 +104,14 @@ static inline struct fsl_ldb
*to_fsl_ldb(struct
drm_bridge *bridge)
return container_of(bridge, struct fsl_ldb, bridge);
}
+static unsigned int fsl_ldb_link_freq_factor(const struct fsl_ldb
*fsl_ldb)
+{
+ return fsl_ldb_is_dual(fsl_ldb) ? 3500 : 7000;
+}
+
static unsigned long fsl_ldb_link_frequency(struct fsl_ldb
*fsl_ldb,
int clock)
{
- if (fsl_ldb_is_dual(fsl_ldb))
- return clock * 3500;
- else
- return clock * 7000;
+ return clock * fsl_ldb_link_freq_factor(fsl_ldb);
}
static int fsl_ldb_attach(struct drm_bridge *bridge,
@@ -121,6 +123,35 @@ static int fsl_ldb_attach(struct drm_bridge
*bridge,
bridge, flags);
}
+static bool fsl_ldb_mode_fixup(struct drm_bridge *bridge,
+ const struct drm_display_mode *mode,
+ struct drm_display_mode *adjusted_mode)
+{
+ const struct fsl_ldb *fsl_ldb = to_fsl_ldb(bridge);
Why const?
If no const, then ...
+ unsigned long requested_link_freq =
+ mode->clock * fsl_ldb_link_freq_factor(fsl_ldb);
... this could be
unsigned long requested_link_freq =
fsl_ldb_link_frequency(fsl_ldb,
mode->clock);
I used fsl_ldb_link_freq_factor(fsl_ldb) to point out the symmetry to
recalculate
pclk = freq / fsl_ldb_link_freq_factor(fsl_ldb) below:
I would prefer to avoid this open coding of using
fsl_ldb_link_freq_factor() than achieve some sort of symmetry.
+ unsigned long freq = clk_round_rate(fsl_ldb->clk,
requested_link_freq);
+
+ if (freq != requested_link_freq) {
+ /*
+ * this will lead to flicker and incomplete lines on
+ * the attached display, adjust the CRTC clock
+ * accordingly.
+ */
+ int pclk = freq / fsl_ldb_link_freq_factor(fsl_ldb);
I doubt that pixel clock tree cannot find appropriate division ratios
for some pixel clock rates, especially for dual-link LVDS on i.MX8MP
and i.MX93 platforms, because PLL clock rate should be 7x faster than
pixel clock rate and 2x faster than "ldb" clock rate so that the 3.5
folder between "ldb" clock and pixel clock can be met. That means the
PLL clock rate needs to be explicitly set first for this case.
Can you assign the PLL clock rate in DT to satisfy the "ldb" and
pixel
clock rates like the below commit does, if you use a LVDS panel?
4fbb73416b10 ("arm64: dts: imx8mp-phyboard-pollux: Set Video PLL1
frequency to 506.8 MHz")
I probably could. The point of my patch is you don't have to know in
advance which LVDS panel is connected, and you don't have to calculate
the base PLL clock by hand and store it in the device tree.
In my test system, I have three different LVDS panels with EDID
EEPROM,
none of which worked with the stock driver, but all work with this
patch.
With slightly adapted pixel clocks though.
If each of the three LVDS panels has only one display mode, you may
assign the PLL clock rates in DT overlays for the panels.
Yes, but I would have to calculate the PLL clock by hand with knowledge
of the internal signal flow (at least the clock ratio ;-)).
The driver already warns if LDB and PCLK don't match, because this is
a
hardware constraint and violating this will lead to no image or image
distortion. With the patch the driver tries to fix that.
I don't know if it works for all or at least most panels, but for my
This patch is supposed to work for all panels and LVDS display bridges,
but I don't think it does due to the problematic pixel clock rates I
mentioned before.
To my understanding, the current driver works for nearly no panel,
unless
you explicitly code the correct PLL freq into the device tree. The basic
problem is, that the driver does not _enforce_ the correct clock ratio
although the hardware strictly _requires_ it.
There are two options in enforcing the correct ratio: forcing the ldb
clock
to the right rate, down to the clock source; this is Miquel's approach.
Or getting the nearest possible ldb clock with the current PLL freq and
modify the pixel clock accordingly, that's my approach.
Of course, never modifying the required pixel clock and still setting
the
correct clock ratio is the golden solution. But in most cases, this is
not
necessary as panels usually accept deviations from the ideal pixel clock
without any problems. What doesn't work is pixel and ldb clock not
having
the correct ratio. And this is what the patch is about.
panels
it does. And if the clocks match, by chance or by refconfiguring the
PLL
base
clock, the patch does nothing.
+
+ if (adjusted_mode->clock != pclk) {
+ dev_warn(fsl_ldb->dev, "Adjusted pixel clk to
match LDB clk (%d
kHz -> %d kHz)!\n",
+ adjusted_mode->clock, pclk);
+
+ adjusted_mode->clock = pclk;
+ adjusted_mode->crtc_clock = pclk;
+ }
+ }
+
+ return true;
+}
+
static void fsl_ldb_atomic_enable(struct drm_bridge *bridge,
struct drm_bridge_state
*old_bridge_state)
{
@@ -280,6 +311,7 @@ fsl_ldb_mode_valid(struct drm_bridge *bridge,
static const struct drm_bridge_funcs funcs = {
.attach = fsl_ldb_attach,
+ .mode_fixup = fsl_ldb_mode_fixup,
.atomic_enable = fsl_ldb_atomic_enable,
.atomic_disable = fsl_ldb_atomic_disable,
.atomic_duplicate_state =
drm_atomic_helper_bridge_duplicate_state,
--
Nikolaus Voss