Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Raspberry Pi 5 HDMI interlaced does not work properly #6281

Closed
zoli0726 opened this issue Jul 24, 2024 · 6 comments
Closed

Raspberry Pi 5 HDMI interlaced does not work properly #6281

zoli0726 opened this issue Jul 24, 2024 · 6 comments

Comments

@zoli0726
Copy link

zoli0726 commented Jul 24, 2024

Describe the bug

Since Pi 5 DSI does not support interlaced anymore I went towards the route of using an HDMI->VGA dongle to produce 15khz signal for my CRT tv.

240p works very well, however 480i and 576i looks to be missing one of the fields, means the signal looks like progressive 240p with slight flickering and scanlines.
I checked whether the dongle might be an issue, but on my PC with the same modeline it produces proper 480i or 576i.

I messed around in

static void vc5_hdmi_set_timings(struct vc4_hdmi *vc4_hdmi, struct drm_connector_state *state, const struct drm_display_mode *mode)

especiall with

` HDMI_WRITE(HDMI_VERTA0, verta);
HDMI_WRITE(HDMI_VERTA1, verta);

HDMI_WRITE(HDMI_VERTB0, vertb_even);
HDMI_WRITE(HDMI_VERTB1, vertb); `

and looks like some of these registers do not have any effect, writing them to 0 changes absolutely nothing about the image. (if I remember correctly, HDMI_VERTB1) , I'm wondering whether it might be, that these are not backwards compatible with Pi4, because the code itself looks like was inherited from Pi4.

Steps to reproduce the behaviour

Connected to HDMI-A-2
I loaded a custom edid using cmdline.txt.
Set the resolution to the interlace mode the edid supports. Tested it with Raspberry OS and Batocera 40 beta build.

extended cmdline.txt:

drm.edid_firmware=HDMI-A-2:edid-hdmi-2.bin

extended config.txt:

hdmi_edid_file=1
hdmi_edid_filename:0=edid-hdmi-1.bin
hdmi_edid_filename:1=edid-hdmi-2.bin

Device (s)

Raspberry Pi 5

System

Raspberry Pi OS with desktop
Release date: July 4th 2024
System: 64-bit
Kernel version: 6.6
Debian version: 12 (bookworm)

Logs

No response

Additional context

I can upload my edid file somewhere if needed.

@popcornmix
Copy link
Collaborator

hdmi_edid_file=1
hdmi_edid_filename:0=edid-hdmi-1.bin
hdmi_edid_filename:1=edid-hdmi-2.bin

remove these - config.txt settings apply to the deprecated firmware driver.

Can you confirm if you are booting to console or desktop? Note that wayland doesn't support interlaced modes.
Through what means are you choosing the interlaced hdmi mode?

Can you post output of raspinfo | pastebinit so we can see what is going on.

@6by9
Copy link
Contributor

6by9 commented Jul 24, 2024

Link to https://forums.raspberrypi.com/viewtopic.php?p=2239265 as your original post.

DSI has never supported interlaced output. I don't think the MIPI specification even allows it.
Perhaps you meant DPI, which also hasn't officially supported interlaced output, but some have hacked it to do so.

Interlacing is configured in both the Pixel Valve (vc4_crtc.c) and HDMI (vc4_hdmi.c). The HDMI block does have an autodetection mode to nominally pick up the PV timings, but that has never been used (it is also present on Pi0-3).

I'll fire up our HDMI analyser to see if it will capture the two fields separately and confirm what it puts in each.

@6by9
Copy link
Contributor

6by9 commented Jul 24, 2024

OK, this does warrant more investigation.

On Pi4, selecting 1080i60 (kmstest -r 74250000,1920/88/44/148/+,1080/4/10/31/+,i) is interpreted by the analyser as interlaced 1080i60.
Pi5 with the same command is detected as progressive, 1920x540@60p.

@6by9
Copy link
Contributor

6by9 commented Jul 25, 2024

By generating a test pattern of alternating black and white lines, the analyser has confirmed that we are getting the odd lines in one field and the even lines in the other. So it is only the interlaced signalling that it is getting wrong.

Reverting "drm/vc4: crtc: Support odd horizontal timings on BCM2712" seems to make the analyser happy that it's interlaced.
That's largely a PV related change (only controls filtering in HDMI), so presumably it's related to how the signalling from PV to HDMI works in the hardware.
We can probably derive a hybrid where interlacing disables the odd horizontal timings bit, but that does mean the standard PAL 720x576i and NTSC 720x480i timings will be rejected (720/12/63/69 and 720/19/62/57).

(It's also confirmed that one of my monitors here doesn't handle interlaced properly as it is flicking between a black and white image in a way that is likely to produce an epileptic fit! It's a reasonably reliable make and claims 1080i60 in the EDID! My other monitor is quite happy and trying to show the alternating lines but gives some aliasing)

6by9 added a commit to 6by9/linux that referenced this issue Jul 25, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

raspberrypi#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
@6by9
Copy link
Contributor

6by9 commented Jul 25, 2024

PR #6282 seems to resolve the issue, at the expense of breaking odd horizontal timings for interlaced modes.

Having looked in more detail there is already special handling for 720x576i and 720x480i modes as they are double clocked modes, so they do work.

pelwell pushed a commit that referenced this issue Jul 25, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
@zoli0726
Copy link
Author

Thank you for your help!
I can confirm, that it does work on my end as well!

pelwell pushed a commit that referenced this issue Jul 26, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
pelwell pushed a commit that referenced this issue Jul 26, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix pushed a commit that referenced this issue Jul 29, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix pushed a commit that referenced this issue Jul 29, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Aug 5, 2024
BCM2711 runs pixelvalve at two pixels per clock cycle which results
in an unfortunate limitation that odd horizontal timings are not
possible. This is apparent on the standard DMT mode of 1366x768@60
which cannot be driven with correct timing.

BCM2712 defaults to the same behaviour, but has a mode to support
odd timings. While internally it still runs at two pixels per clock,
setting the PV_VCONTROL_ODD_TIMING bit makes it appear externally
to behave as it is one pixel per clock.

Switching to this mode fixes 1366x768@60 mode, and other custom
resultions with odd horizontal timings.

Signed-off-by: Dom Cobley <popcornmix@gmail.com>

drm/vc4: Disable the 2pixel/clock odd timings workaround for interlaced

Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix pushed a commit that referenced this issue Aug 5, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Aug 12, 2024
BCM2711 runs pixelvalve at two pixels per clock cycle which results
in an unfortunate limitation that odd horizontal timings are not
possible. This is apparent on the standard DMT mode of 1366x768@60
which cannot be driven with correct timing.

BCM2712 defaults to the same behaviour, but has a mode to support
odd timings. While internally it still runs at two pixels per clock,
setting the PV_VCONTROL_ODD_TIMING bit makes it appear externally
to behave as it is one pixel per clock.

Switching to this mode fixes 1366x768@60 mode, and other custom
resultions with odd horizontal timings.

Signed-off-by: Dom Cobley <popcornmix@gmail.com>

drm/vc4: Disable the 2pixel/clock odd timings workaround for interlaced

Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix pushed a commit that referenced this issue Aug 13, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
@6by9 6by9 closed this as completed Aug 20, 2024
popcornmix added a commit that referenced this issue Aug 22, 2024
BCM2711 runs pixelvalve at two pixels per clock cycle which results
in an unfortunate limitation that odd horizontal timings are not
possible. This is apparent on the standard DMT mode of 1366x768@60
which cannot be driven with correct timing.

BCM2712 defaults to the same behaviour, but has a mode to support
odd timings. While internally it still runs at two pixels per clock,
setting the PV_VCONTROL_ODD_TIMING bit makes it appear externally
to behave as it is one pixel per clock.

Switching to this mode fixes 1366x768@60 mode, and other custom
resultions with odd horizontal timings.

Signed-off-by: Dom Cobley <popcornmix@gmail.com>

drm/vc4: Disable the 2pixel/clock odd timings workaround for interlaced

Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix pushed a commit that referenced this issue Aug 22, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Aug 27, 2024
BCM2711 runs pixelvalve at two pixels per clock cycle which results
in an unfortunate limitation that odd horizontal timings are not
possible. This is apparent on the standard DMT mode of 1366x768@60
which cannot be driven with correct timing.

BCM2712 defaults to the same behaviour, but has a mode to support
odd timings. While internally it still runs at two pixels per clock,
setting the PV_VCONTROL_ODD_TIMING bit makes it appear externally
to behave as it is one pixel per clock.

Switching to this mode fixes 1366x768@60 mode, and other custom
resultions with odd horizontal timings.

Signed-off-by: Dom Cobley <popcornmix@gmail.com>

drm/vc4: Disable the 2pixel/clock odd timings workaround for interlaced

Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix pushed a commit that referenced this issue Aug 30, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Aug 30, 2024
BCM2711 runs pixelvalve at two pixels per clock cycle which results
in an unfortunate limitation that odd horizontal timings are not
possible. This is apparent on the standard DMT mode of 1366x768@60
which cannot be driven with correct timing.

BCM2712 defaults to the same behaviour, but has a mode to support
odd timings. While internally it still runs at two pixels per clock,
setting the PV_VCONTROL_ODD_TIMING bit makes it appear externally
to behave as it is one pixel per clock.

Switching to this mode fixes 1366x768@60 mode, and other custom
resultions with odd horizontal timings.

Signed-off-by: Dom Cobley <popcornmix@gmail.com>

drm/vc4: Disable the 2pixel/clock odd timings workaround for interlaced

Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Sep 2, 2024
BCM2711 runs pixelvalve at two pixels per clock cycle which results
in an unfortunate limitation that odd horizontal timings are not
possible. This is apparent on the standard DMT mode of 1366x768@60
which cannot be driven with correct timing.

BCM2712 defaults to the same behaviour, but has a mode to support
odd timings. While internally it still runs at two pixels per clock,
setting the PV_VCONTROL_ODD_TIMING bit makes it appear externally
to behave as it is one pixel per clock.

Switching to this mode fixes 1366x768@60 mode, and other custom
resultions with odd horizontal timings.

Signed-off-by: Dom Cobley <popcornmix@gmail.com>

drm/vc4: Disable the 2pixel/clock odd timings workaround for interlaced

Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix pushed a commit that referenced this issue Sep 6, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Sep 10, 2024
BCM2711 runs pixelvalve at two pixels per clock cycle which results
in an unfortunate limitation that odd horizontal timings are not
possible. This is apparent on the standard DMT mode of 1366x768@60
which cannot be driven with correct timing.

BCM2712 defaults to the same behaviour, but has a mode to support
odd timings. While internally it still runs at two pixels per clock,
setting the PV_VCONTROL_ODD_TIMING bit makes it appear externally
to behave as it is one pixel per clock.

Switching to this mode fixes 1366x768@60 mode, and other custom
resultions with odd horizontal timings.

Signed-off-by: Dom Cobley <popcornmix@gmail.com>

drm/vc4: Disable the 2pixel/clock odd timings workaround for interlaced

Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix pushed a commit that referenced this issue Sep 10, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix pushed a commit that referenced this issue Sep 12, 2024
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Sep 16, 2024
BCM2711 runs pixelvalve at two pixels per clock cycle which results
in an unfortunate limitation that odd horizontal timings are not
possible. This is apparent on the standard DMT mode of 1366x768@60
which cannot be driven with correct timing.

BCM2712 defaults to the same behaviour, but has a mode to support
odd timings. While internally it still runs at two pixels per clock,
setting the PV_VCONTROL_ODD_TIMING bit makes it appear externally
to behave as it is one pixel per clock.

Switching to this mode fixes 1366x768@60 mode, and other custom
resultions with odd horizontal timings.

Signed-off-by: Dom Cobley <popcornmix@gmail.com>

drm/vc4: Disable the 2pixel/clock odd timings workaround for interlaced

Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Sep 16, 2024
BCM2711 runs pixelvalve at two pixels per clock cycle which results
in an unfortunate limitation that odd horizontal timings are not
possible. This is apparent on the standard DMT mode of 1366x768@60
which cannot be driven with correct timing.

BCM2712 defaults to the same behaviour, but has a mode to support
odd timings. While internally it still runs at two pixels per clock,
setting the PV_VCONTROL_ODD_TIMING bit makes it appear externally
to behave as it is one pixel per clock.

Switching to this mode fixes 1366x768@60 mode, and other custom
resultions with odd horizontal timings.

Signed-off-by: Dom Cobley <popcornmix@gmail.com>

drm/vc4: Disable the 2pixel/clock odd timings workaround for interlaced

Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Jan 17, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Jan 20, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Jan 24, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 3, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 3, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
6by9 pushed a commit to 6by9/linux that referenced this issue Feb 6, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

raspberrypi#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 10, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 10, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 10, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
GamingMaster2000 pushed a commit to GamingMaster2000/android_kernel_brcm_rpi that referenced this issue Feb 11, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

raspberrypi/linux#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 17, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 17, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 17, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 19, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 24, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 24, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 24, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Feb 28, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 3, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 10, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 10, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 10, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 10, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 13, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 13, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 17, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 24, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 25, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 25, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
popcornmix added a commit that referenced this issue Mar 31, 2025
Whilst BCM2712 does fix using odd horizontal timings, it doesn't
work with interlaced modes.

Drop the workaround for interlaced modes and revert to the same
behaviour as BCM2711.

#6281

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants