Patch "drm/i915: Fix HPD polling, reenabling the output poll work as needed" has been added to the 6.4-stable tree

2023-08-26 Thread gregkh
This is a note to let you know that I've just added the patch titled drm/i915: Fix HPD polling, reenabling the output poll work as needed to the 6.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the p

Patch "drm: Add an HPD poll helper to reschedule the poll work" has been added to the 6.4-stable tree

2023-08-26 Thread gregkh
This is a note to let you know that I've just added the patch titled drm: Add an HPD poll helper to reschedule the poll work to the 6.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

[Bug 217664] Laptop doesnt wake up from suspend mode.

2023-08-26 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=217664 --- Comment #38 from popus_czy_to_ty (pentelja...@o2.pl) --- Created attachment 304948 --> https://bugzilla.kernel.org/attachment.cgi?id=304948&action=edit test nr 2 -- You may reply to this email to add a comment. You are receiving this mail

[Bug 217664] Laptop doesnt wake up from suspend mode.

2023-08-26 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=217664 --- Comment #37 from Mario Limonciello (AMD) (mario.limoncie...@amd.com) --- Can you please use the s2idle script without the modules loaded? It will capture other debugging information I'd like to see to come up with a next step. -- You may re

[PATCH 2/2] ARM: dts: imx: add support for the ATM0700D4 panel attached to sk-imx53

2023-08-26 Thread Dmitry Baryshkov
The SK-ATM0700D4-Plug is an extension board (provided by the same manufacturer, [1]) which can be connected to the SK-IMX53 panel kit. The panel can be connected either using the RGB parallel bus or using the LVDS connector (recommended). Add DT files describing this "shield", both RGB and LVDS con

[PATCH 1/2] dt-bindings: display/lvds-codec: add ti,sn65lvds94

2023-08-26 Thread Dmitry Baryshkov
Add compatible strings for TI sn65lvds94, LVDS serdes receiver. Signed-off-by: Dmitry Baryshkov --- Documentation/devicetree/bindings/display/bridge/lvds-codec.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/display/bridge/lvds-codec.yaml b/Documentati

Re: [PATCH] drm/panel/panel-sitronix-st7701: Move init sequence from prepare() to enable()

2023-08-26 Thread Marek Vasut
On 8/26/23 20:33, Mimoja wrote: Hi, +CC Dave , he might be able to help with the last part. I appreciate you taking the time to respond! On 26.08.23 17:18, Marek Vasut wrote: On 8/26/23 11:55, Mimoja wrote: "The .prepare() function is typically called before the display controller starts t

[Bug 217664] Laptop doesnt wake up from suspend mode.

2023-08-26 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=217664 --- Comment #36 from popus_czy_to_ty (pentelja...@o2.pl) --- Created attachment 304944 --> https://bugzilla.kernel.org/attachment.cgi?id=304944&action=edit journalctl from 26/08/23 doesnt work now, when im trying to it doesnt want go suspend fo

Re: [PATCH] drm/panel/panel-sitronix-st7701: Move init sequence from prepare() to enable()

2023-08-26 Thread Marek Vasut
On 8/26/23 11:55, Mimoja wrote: The struct drm_panel_funcs are offering a prepare() and an enable() entrypoint for panels. According to drm/panel.h: "The .prepare() function is typically called before the display controller starts to transmit video data." and "After the display controller has st

Re: [PATCH v3 0/6] Increase code coverage on drm_format_helper.c

2023-08-26 Thread Maíra Canal
Hi Arthur, On 8/14/23 19:11, Arthur Grillo wrote: The following series include improvements and new KUnit tests to some functions on drm_format_helper.c. The first patch improves existing conversion tests to assure that the default pitch is used when NULL is used on the `dst_pitch` argument. P

Re: [PATCH 07/10] drm/tests: Add test for drm_framebuffer_init()

2023-08-26 Thread Maíra Canal
Hi Carlos, On 8/25/23 13:11, Carlos Eduardo Gallo Filho wrote: Add a single KUnit test case for the drm_framebuffer_init function. Signed-off-by: Carlos Eduardo Gallo Filho --- drivers/gpu/drm/tests/drm_framebuffer_test.c | 52 1 file changed, 52 insertions(+) diff --g

Re: [PATCH 06/10] drm/tests: Add test for drm_framebuffer_lookup()

2023-08-26 Thread Maíra Canal
Hi Carlos, On 8/25/23 13:07, Carlos Eduardo Gallo Filho wrote: Add a single KUnit test case for the drm_framebuffer_lookup function. Signed-off-by: Carlos Eduardo Gallo Filho --- drivers/gpu/drm/tests/drm_framebuffer_test.c | 28 1 file changed, 28 insertions(+) diff -

Re: [PATCH 05/10] drm/tests: Add test for drm_framebuffer_cleanup()

2023-08-26 Thread Maíra Canal
Hi Carlos, On 8/25/23 13:07, Carlos Eduardo Gallo Filho wrote: Add a single KUnit test case for the drm_framebuffer_cleanup function. Signed-off-by: Carlos Eduardo Gallo Filho --- drivers/gpu/drm/tests/drm_framebuffer_test.c | 49 1 file changed, 49 insertions(+) diff

Re: [PATCH 04/10] drm/tests: Add test for drm_framebuffer_check_src_coords()

2023-08-26 Thread Maíra Canal
Hi Carlos, On 8/25/23 13:07, Carlos Eduardo Gallo Filho wrote: Add a parametrized test for the drm_framebuffer_check_src_coords function. Signed-off-by: Carlos Eduardo Gallo Filho --- drivers/gpu/drm/drm_framebuffer.c| 1 + drivers/gpu/drm/tests/drm_framebuffer_test.c | 61

Re: [PATCH 03/10] drm/tests: Add test case for drm_internal_framebuffer_create()

2023-08-26 Thread Maíra Canal
Hi Carlos, On 8/25/23 13:07, Carlos Eduardo Gallo Filho wrote: Introduce a test to cover the creation of framebuffer with modifier on a device that doesn't support it. Signed-off-by: Carlos Eduardo Gallo Filho --- drivers/gpu/drm/tests/drm_framebuffer_test.c | 28 1 fil

Re: [PATCH 02/10] drm/tests: Add parameters to the drm_test_framebuffer_create test

2023-08-26 Thread Maíra Canal
Hi Carlos, On 8/25/23 13:07, Carlos Eduardo Gallo Filho wrote: Extend the existing test case to cover: 1. Invalid flag atribute in the struct drm_mode_fb_cmd2. 2. Pixel format which requires non-linear modifier with DRM_FORMAT_MOD_LINEAR set. 3. Non-zero buffer offset for an unused plane Also r

Re: [PATCH 01/10] drm/tests: Stop using deprecated dev_private member on drm_framebuffer tests

2023-08-26 Thread Maíra Canal
Hi Carlos, On 8/25/23 13:07, Carlos Eduardo Gallo Filho wrote: The dev_private member of drm_device is deprecated and its use should be avoided. Stop using it by embedding the drm_device onto a mock struct with a void pointer like dev_private, using it instead. Signed-off-by: Carlos Eduardo Gal

Re: [PATCH v2 3/4] arm64: dts: qcom: qrb5165-rb5: enable displayport controller

2023-08-26 Thread Konrad Dybcio
On 17.08.2023 16:59, Dmitry Baryshkov wrote: > Enable the onboard displayport controller, connect it to QMP PHY. > > Signed-off-by: Dmitry Baryshkov > --- Reviewed-by: Konrad Dybcio Konrad

Re: [PATCH 0/3] Make Allwinner A64's pll-mipi keep its rate when parent rate changes

2023-08-26 Thread Frank Oltmanns
On 2023-08-25 at 17:07:58 +0200, Frank Oltmanns wrote: > Thank you for your feedback, Maxime! > > On 2023-08-25 at 10:13:53 +0200, Maxime Ripard wrote: >> [[PGP Signed Part:Undecided]] >> Hi, >> >> On Fri, Aug 25, 2023 at 07:36:36AM +0200, Frank Oltmanns wrote: >>> I would like to make the Allw

Re: [PATCH] drm/msm/adreno: Fix SM6375 GPU ID

2023-08-26 Thread Konrad Dybcio
On 26.08.2023 03:29, Rob Clark wrote: > On Fri, Aug 25, 2023 at 2:11 PM Konrad Dybcio > wrote: >> >> SM6375 comes with a patchlevel=1. Fix the chipid up to reflect that. >> >> Fixes: 90b593ce1c9e ("drm/msm/adreno: Switch to chip-id for identifying GPU") >> Signed-off-by: Konrad Dybcio >> --- >>

[PATCH v4 2/2] drm/bridge: Drop conditionals around of_node pointers

2023-08-26 Thread Biju Das
Having conditional around the of_node pointers turns out to make driver code use ugly #ifdef and #if blocks. So drop the conditionals. Suggested-by: Douglas Anderson Signed-off-by: Biju Das --- v4: * New patch --- drivers/gpu/drm/bridge/analogix/analogix-anx78xx.c | 2 -- include/drm/drm_bridg

[PATCH v4 1/2] drm/bridge/analogix/anx78xx: Drop ID table

2023-08-26 Thread Biju Das
The driver has an ID table, but it uses the wrong API for retrieving match data and that will lead to a crash, if it is instantiated by user space or using ID. From this, there is no user for the ID table and let's drop it from the driver as it saves some memory. Signed-off-by: Biju Das Reviewed-

[PATCH v4 0/2] Drop ID table and conditionals around of_node pointers for anx78xx driver

2023-08-26 Thread Biju Das
This patch series aims to drop ID table and conditionals around of_node pointers for anx78xx driver. While at it, drop conditionals from drm_bridge.h. v3->v4: * Created patch#2 for dropping conditionals around of_node pointers. * Added Rb tag from Laurent and Douglas Anderson for patch#1. v2->v