-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DRM fixes for cropping P030/SAND128 on Pi5 #6741
Conversation
Diagonal corruption is something else, and not apparently related to background fill (tested by permanently enabling it). Suspect it is system load, but it is weird that it is only when updating the GUI layer that it causes problems. |
In the initial version of this PR the Interstellar trailer worked fine on all zoom levels, on a 1920x1080p60 display, with the recent however the "blank screen" issue at zoom level 1.11 is back (as before the change). Here's kmsprint output with zoom level 1.11 and display blanking out:
|
Which version of the Interstellar trailer is it? 4k 10bit HEVC being downscaled to 1080p60? |
The trailer is 4k HEVC 8bit. I'm using a 1920x1200 monitor here on my test setup, kodi GUI resolution set to 1920x1080p60 which is also used while playing this sample (the monitor doesn't support 24p)
|
Thanks. I hadn't seen a failure at all with 8bit content, but that does seem to provoke one. Increasing fetch_count by one for 8bit |
I've found the actual cause. https://github.com/raspberrypi/linux/blob/rpi-6.12.y/drivers/gpu/drm/vc4/vc4_plane.c#L2016-L2032 increases the source size if fractionally cropping a pixel at the edge. There are conditions for SAND where that will require an extra word to be fetched, however |
BCM2712/vc6 uses 256bit words when reading in P030/SAND128, increased from 128bit on BCM2711/vc5. Update the code for cropping the read area to handle the correct word length. Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
Nice this feels more satisfactory that previous version. |
The number of words to fetch for SAND formats on vc6 needs to account for all pixels requested by width. If cropping fractional pixels, then the width was being increased, but fetch_count had already been computed. That led to insufficient words being fetched, and the HVS locked up solid. Apply the fixup for fractional pixel source cropping before computing fetch_count. Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
Thanks a lot, testing with your latest update looks good here 👍 |
…se HATs See: raspberrypi/linux#6758 kernel: ads7846 touch overlay fixups See: raspberrypi/linux#6760 kernel: staging: bcm2835-camera: Initialise dev in v4l2_dev See: raspberrypi/linux#6754 kernel: media: i2c: imx415: Correct hmax_min values for 891Mbps/lane See: raspberrypi/linux#6750 kernel: PCI: pcie-brcmstb: fake MSIx support on internal MSI target See: raspberrypi/linux#6761 kernel: DRM fixes for cropping P030/SAND128 on Pi5 See: raspberrypi/linux#6741 kernel: Show process name in set_mempolicy() ignored message See: raspberrypi/linux#6762
…se HATs See: raspberrypi/linux#6758 kernel: ads7846 touch overlay fixups See: raspberrypi/linux#6760 kernel: staging: bcm2835-camera: Initialise dev in v4l2_dev See: raspberrypi/linux#6754 kernel: media: i2c: imx415: Correct hmax_min values for 891Mbps/lane See: raspberrypi/linux#6750 kernel: PCI: pcie-brcmstb: fake MSIx support on internal MSI target See: raspberrypi/linux#6761 kernel: DRM fixes for cropping P030/SAND128 on Pi5 See: raspberrypi/linux#6741 kernel: Show process name in set_mempolicy() ignored message See: raspberrypi/linux#6762
Addresses 2 of the glitches seen with zooming 10bit HEVC under Kodi.
Diagonal corruption when overlaying GUI with 10bit HEVC, or flickering for 8bit HEVC is still being investigated.