Re: [PATCH] drm/i915/guc: Remove usage of the deprecated ida_simple_xx() API

2024-04-14 Thread Christophe JAILLET
Le 25/01/2024 à 01:04, Matthew Brost a écrit : On Sun, Jan 14, 2024 at 04:15:34PM +0100, Christophe JAILLET wrote: ida_alloc() and ida_free() should be preferred to the deprecated ida_simple_get() and ida_simple_remove(). Note that the upper limit of ida_simple_get() is exclusive, but the one o

Re: [PATCH 5/7] ARM: configs: sunxi: Enable DRM_DW_HDMI

2024-04-14 Thread Jernej Škrabec
Dne sreda, 3. april 2024 ob 12:56:23 CEST je Maxime Ripard napisal(a): > Commit 4fc8cb47fcfd ("drm/display: Move HDMI helpers into display-helper > module") turned the DRM_DW_HDMI dependency of DRM_SUN8I_DW_HDMI into a > depends on which ended up disabling the driver in the defconfig. Make > sure i

[PATCH] drm/rockchip: lvds: Remove include of drm_dp_helper.h

2024-04-14 Thread Andy Yan
From: Andy Yan drm_dp_helper.h is not used by lvds driver Signed-off-by: Andy Yan --- drivers/gpu/drm/rockchip/rockchip_lvds.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/rockchip/rockchip_lvds.c b/drivers/gpu/drm/rockchip/rockchip_lvds.c index 77b76cff1adb..9a01aa4507

[PATCH] doc: dma-buf: fix grammar typo

2024-04-14 Thread Baruch Siach
Signed-off-by: Baruch Siach --- Documentation/driver-api/dma-buf.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/driver-api/dma-buf.rst b/Documentation/driver-api/dma-buf.rst index 0c153d79ccc4..29abf1eebf9f 100644 --- a/Documentation/driver-api/dma-buf.rst

[PATCH v2 3/3] dt-bindings: display: rockchip, dw-hdmi: Fix sound-dai-cells warning

2024-04-14 Thread Jonas Karlman
The rockchip,dw-hdmi node can be used as a sound dai codec, however, dtbs_check may report the following issue: hdmi@fe0a: Unevaluated properties are not allowed ('#sound-dai-cells' was unexpected) from schema $id: http://devicetree.org/schemas/display/rockchip/rockchip,dw-hdmi.yaml# Ad

Re: [PATCH 1/2] dt-bindings: display: panel: Add Raydium RM69380

2024-04-14 Thread Krzysztof Kozlowski
On 14/04/2024 17:22, David Wronek wrote: > Raydium RM69380 is a display driver IC used to drive OLED DSI panels. > Add a dt-binding for it. > > Signed-off-by: David Wronek > --- > .../bindings/display/panel/raydium,rm69380.yaml| 94 > ++ > 1 file changed, 94 insertions(+

Re: [PATCH 1/2] dt-bindings: display: panel: Add Raydium RM69380

2024-04-14 Thread Rob Herring
[0]], 'port@0': {'reg': [[0]], 'endpoint': {'remote-endpoint': [[4294967295]]}}, 'port@1': {'reg': [[1]], 'endpoint': {'remote-endpoint': [[4294967295]]}}}, '$nodename': ['panel@0']} from

[PATCH 00/18] backlight: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
: 9ed46da14b9b9b2ad4edb3b0c545b6dbe5c00d39 change-id: 20240414-video-backlight-lcd-ops-276d8439ffb8 Best regards, -- Krzysztof Kozlowski

[PATCH 01/18] backlight: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' passed in lcd_device_register() is not modified by core backlight code, so it can be made const for code safety. This allows drivers to also define the structure as const. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/lcd.c | 4 ++-- include/linux/lcd.h

[PATCH 02/18] backlight: ams369fg06: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/ams369fg06.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/ams369fg06.c b/driv

[PATCH 03/18] backlight: corgi_lcd: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/corgi_lcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/corgi_lcd.c b/driver

[PATCH 04/18] backlight: hx8357: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/hx8357.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/hx8357.c b/drivers/video

[PATCH 05/18] backlight: ili922x: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/ili922x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/ili922x.c b/drivers/vi

[PATCH 07/18] backlight: jornada720_lcd: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/jornada720_lcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/jornada720_lcd.c

[PATCH 06/18] backlight: ili9320: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/ili9320.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/ili9320.c b/drivers/vi

[PATCH 08/18] backlight: l4f00242t03: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/l4f00242t03.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/l4f00242t03.c b/dr

[PATCH 10/18] backlight: lms501kf03: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/lms501kf03.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/lms501kf03.c b/driv

[PATCH 09/18] backlight: lms283gf05: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/lms283gf05.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/lms283gf05.c b/driv

[PATCH 11/18] backlight: ltv350qv: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/ltv350qv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/ltv350qv.c b/drivers/

[PATCH 12/18] backlight: otm3225a: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/otm3225a.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/otm3225a.c b/drivers/

[PATCH 13/18] backlight: platform_lcd: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/platform_lcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/platform_lcd.c b/

[PATCH 14/18] backlight: tdo24m: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- drivers/video/backlight/tdo24m.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/tdo24m.c b/drivers/video

[PATCH 15/18] HID: picoLCD: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- Depends on the first patch in the series. --- drivers/hid/hid-picolcd_lcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dri

[PATCH 16/18] fbdev: clps711x: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- Depends on the first patch in the series. --- drivers/video/fbdev/clps711x-fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[PATCH 17/18] fbdev: imx: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- Depends on the first patch in the series. --- drivers/video/fbdev/imxfb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drive

[PATCH 18/18] fbdev: omap: lcd_ams_delta: Constify lcd_ops

2024-04-14 Thread Krzysztof Kozlowski
'struct lcd_ops' is not modified by core backlight code, so it can be made const for increased code safety. Signed-off-by: Krzysztof Kozlowski --- Depends on the first patch in the series. --- drivers/video/fbdev/omap/lcd_ams_delta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH] drm: vop2: Do not divide height twice for YUV

2024-04-14 Thread Detlev Casanova
For the cbcr format, gt2 and gt4 are computed again after src_h has been divided by vsub. As src_h as already been divided by 2 before, introduce cbcr_src_h and cbcr_src_w to keep a copy of those values to be used for cbcr gt2 and gt4 computation. This fixes yuv planes being unaligned vertically

Re: [PATCH] ARM: dts: bcm2835: Enable 3D rendering through V3D

2024-04-14 Thread Phil Elwell
Hello all, On Fri, 12 Apr 2024 at 18:17, Stefan Wahren wrote: > > Hi Maíra, > > [add Phil & Dave] > > Am 12.04.24 um 15:25 schrieb Maíra Canal: > > RPi 0-3 is packed with a GPU that provides 3D rendering capabilities to > > the RPi. Currently, the downstream kernel uses an overlay to enable the >

Re: [PATCH v2 3/3] dt-bindings: display: rockchip,dw-hdmi: Fix sound-dai-cells warning

2024-04-14 Thread Johan Jonker
On 4/14/24 17:11, Jonas Karlman wrote: > The rockchip,dw-hdmi node can be used as a sound dai codec, however, > dtbs_check may report the following issue: > > hdmi@fe0a: Unevaluated properties are not allowed ('#sound-dai-cells' > was unexpected) > from schema $id: > http://devicetree

Re: [PATCH] ARM: dts: bcm2835: Enable 3D rendering through V3D

2024-04-14 Thread Stefan Wahren
Hi Phil, Am 14.04.24 um 20:43 schrieb Phil Elwell: Hello all, On Fri, 12 Apr 2024 at 18:17, Stefan Wahren wrote: Hi Maíra, [add Phil & Dave] Am 12.04.24 um 15:25 schrieb Maíra Canal: RPi 0-3 is packed with a GPU that provides 3D rendering capabilities to the RPi. Currently, the downstream

Re: [PATCH] ARM: dts: bcm2835: Enable 3D rendering through V3D

2024-04-14 Thread Maíra Canal
Hi Phil, On 4/14/24 15:43, Phil Elwell wrote: Hello all, On Fri, 12 Apr 2024 at 18:17, Stefan Wahren wrote: Hi Maíra, [add Phil & Dave] Am 12.04.24 um 15:25 schrieb Maíra Canal: RPi 0-3 is packed with a GPU that provides 3D rendering capabilities to the RPi. Currently, the downstream kern

Re: [PATCH v2 3/3] dt-bindings: display: rockchip,dw-hdmi: Fix sound-dai-cells warning

2024-04-14 Thread Jonas Karlman
On 2024-04-14 20:41, Johan Jonker wrote: > On 4/14/24 17:11, Jonas Karlman wrote: >> The rockchip,dw-hdmi node can be used as a sound dai codec, however, >> dtbs_check may report the following issue: >> >> hdmi@fe0a: Unevaluated properties are not allowed ('#sound-dai-cells' >> was unexpecte

Re: [PATCH 2/2] drm/panel: Add driver for EDO RM69380 OLED panel

2024-04-14 Thread Dmitry Baryshkov
On Sun, Apr 14, 2024 at 05:22:31PM +0200, David Wronek wrote: > Add support for the 2560x1600@90Hz OLED panel by EDO bundled with a > Raydium RM69380 controller, as found on the Lenovo Xiaoxin Pad Pro 2021. > > Signed-off-by: David Wronek > --- > drivers/gpu/drm/panel/Kconfig |

Re: [PATCH 2/2] drm/panel: Add driver for EDO RM69380 OLED panel

2024-04-14 Thread Christophe JAILLET
Le 14/04/2024 à 17:22, David Wronek a écrit : Add support for the 2560x1600@90Hz OLED panel by EDO bundled with a Raydium RM69380 controller, as found on the Lenovo Xiaoxin Pad Pro 2021. Signed-off-by: David Wronek --- drivers/gpu/drm/panel/Kconfig | 14 + drivers/gpu/drm/pa

Re: [PATCH v10 1/3] drm/buddy: Implement tracking clear page feature

2024-04-14 Thread Paneer Selvam, Arunpravin
Hi Matthew, On 4/10/2024 6:22 PM, Matthew Auld wrote: On 08/04/2024 16:16, Arunpravin Paneer Selvam wrote: - Add tracking clear page feature. - Driver should enable the DRM_BUDDY_CLEARED flag if it    successfully clears the blocks in the free path. On the otherhand,    DRM buddy marks each bl

[PATCH 0/2] Add driver for Raydium RM69380-based DSI panels

2024-04-14 Thread David Wronek
nfig | 14 + drivers/gpu/drm/panel/Makefile | 1 + drivers/gpu/drm/panel/panel-raydium-rm69380.c | 378 + 4 files changed, 487 insertions(+) --- base-commit: 9ed46da14b9b9b2ad4edb3b0c545b6dbe5c00d39 change-id: 20240414-raydium-rm69380-dr

[PATCH 1/2] dt-bindings: display: panel: Add Raydium RM69380

2024-04-14 Thread David Wronek
Raydium RM69380 is a display driver IC used to drive OLED DSI panels. Add a dt-binding for it. Signed-off-by: David Wronek --- .../bindings/display/panel/raydium,rm69380.yaml| 94 ++ 1 file changed, 94 insertions(+) diff --git a/Documentation/devicetree/bindings/display

[PATCH 2/2] drm/panel: Add driver for EDO RM69380 OLED panel

2024-04-14 Thread David Wronek
Add support for the 2560x1600@90Hz OLED panel by EDO bundled with a Raydium RM69380 controller, as found on the Lenovo Xiaoxin Pad Pro 2021. Signed-off-by: David Wronek --- drivers/gpu/drm/panel/Kconfig | 14 + drivers/gpu/drm/panel/Makefile| 1 + drivers/gpu/d

[PATCH v11 2/3] drm/amdgpu: Enable clear page functionality

2024-04-14 Thread Arunpravin Paneer Selvam
Add clear page support in vram memory region. v1(Christian): - Dont handle clear page as TTM flag since when moving the BO back in from GTT again we don't need that. - Make a specialized version of amdgpu_fill_buffer() which only clears the VRAM areas which are not already cleared -

[PATCH v11 1/3] drm/buddy: Implement tracking clear page feature

2024-04-14 Thread Arunpravin Paneer Selvam
- Add tracking clear page feature. - Driver should enable the DRM_BUDDY_CLEARED flag if it successfully clears the blocks in the free path. On the otherhand, DRM buddy marks each block as cleared. - Track the available cleared pages size - If driver requests cleared memory we prefer cleared

[PATCH v11 3/3] drm/tests: Add a test case for drm buddy clear allocation

2024-04-14 Thread Arunpravin Paneer Selvam
Add a new test case for the drm buddy clear and dirty allocation. v2:(Matthew) - make size as u32 - rename PAGE_SIZE with SZ_4K - dont fragment the address space for all the order allocation iterations. we can do it once and just increment and allocate the size. - create new mm wit

[PATCH] drm/amdgpu: Add missing space to DRM_WARN() message

2024-04-14 Thread Thorsten Blum
s/,please/, please/ Signed-off-by: Thorsten Blum --- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c index 7753a2e64d41..3cba0e196ca8 100644 ---

Re: [PATCH] drm/i915/guc: Remove usage of the deprecated ida_simple_xx() API

2024-04-14 Thread Matthew Brost
On Sun, Apr 14, 2024 at 10:26:35AM +0200, Christophe JAILLET wrote: > Le 25/01/2024 à 01:04, Matthew Brost a écrit : > > On Sun, Jan 14, 2024 at 04:15:34PM +0100, Christophe JAILLET wrote: > > > ida_alloc() and ida_free() should be preferred to the deprecated > > > ida_simple_get() and ida_simple_r

Re: [PATCH 0/2] drm/lima: two driver cleanups

2024-04-14 Thread Qiang Yu
applied to drm-misc-next On Thu, Apr 4, 2024 at 8:51 PM Qiang Yu wrote: > > Serial is Reviewed-by: Qiang Yu > > On Tue, Apr 2, 2024 at 6:43 AM Erico Nunes wrote: > > > > Patch 1 is a fix for a crash which triggers on removing the module on > > kernels with CONFIG_DEBUG_SHIRQ enabled, such as th

Re: [PATCH v2 0/3] drm/lima: fix devfreq refcount imbalance for job timeouts

2024-04-14 Thread Qiang Yu
applied to drm-misc-next On Sat, Apr 6, 2024 at 3:32 PM Qiang Yu wrote: > > Serial is Reviewed-by: Qiang Yu > > On Fri, Apr 5, 2024 at 11:31 PM Erico Nunes wrote: > > > > v1 reference: > > https://patchwork.freedesktop.org/series/131902/ > > > > Changes v1 -> v2: > > - Split synchronize_irq of

[PATCH] drm/xe: select X86_PLATFORM_DEVICES when ACPI_WMI is selected

2024-04-14 Thread Lu Yao
ACPI_WMI is a subitem of X86_PLATFORM_DEVICES. And X86_PLATFORM_DEVICES is not selected in the current Kconfig, and may cause Kconfig warnings: WARNING: unmet direct dependencies detected for ACPI_WMI Depends on [n]: X86_PLATFORM_DEVICES [=n] && ACPI [=y] Selected by [m]: - DRM_XE [=m] && HA

Re: [PATCH] drm/mst: Fix NULL pointer dereference in drm_dp_add_payload_part2 (again)

2024-04-14 Thread Lin, Wayne
[Public] Hi Jeff, I have a patch sent for this before but not yet get reviewed. Will ping again. https://patchwork.freedesktop.org/series/130852/ Thanks! Regards, Wayne From: Jeff Mahoney Sent: Saturday, April 13, 2024 08:57 To: Lin, Wayne; dri-devel@l

Re: [PATCH] drm/mst: Fix NULL pointer dereference at drm_dp_add_payload_part2

2024-04-14 Thread Lin, Wayne
[Public] Ping for code review. Thanks! Regards, Wayne From: Wayne Lin Sent: Thursday, March 7, 2024 14:29 To: dri-devel@lists.freedesktop.org; amd-...@lists.freedesktop.org; intel-...@lists.freedesktop.org Cc: ly...@redhat.com; Wentland, Harry; imre.d..

[PATCH] drm/xe/irq: remove unneeded semicolon

2024-04-14 Thread Jiapeng Chong
No functional modification involved. ./drivers/gpu/drm/xe/xe_irq.c:279:3-4: Unneeded semicolon. Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=8757 Signed-off-by: Jiapeng Chong --- drivers/gpu/drm/xe/xe_irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-

Re: [PATCH] drm/xe/irq: remove unneeded semicolon

2024-04-14 Thread Chauhan, Shekhar
On 4/15/2024 08:57, Jiapeng Chong wrote: No functional modification involved. ./drivers/gpu/drm/xe/xe_irq.c:279:3-4: Unneeded semicolon. Specifying a specific line number in a commit message might not be the most resilient approach as it could become outdated. Maybe rewrite it as: "Remove

Re: [PATCH v2 1/4] drm: add devm release action

2024-04-14 Thread Aravind Iddamsetty
Hi Thomas, Could you share your thoughts on this please. Thanks, Aravind. On 02/04/24 14:28, Aravind Iddamsetty wrote: > In scenarios where drm_dev_put is directly called by driver we want to > release devm_drm_dev_init_release action associated with struct > drm_device. > > v2: Directly expose

Re: [PATCH 2/2] drm/panel: Add driver for EDO RM69380 OLED panel

2024-04-14 Thread david
W dniu 2024-04-14 22:22, Christophe JAILLET napisał(a): Le 14/04/2024 à 17:22, David Wronek a écrit : Add support for the 2560x1600@90Hz OLED panel by EDO bundled with a Raydium RM69380 controller, as found on the Lenovo Xiaoxin Pad Pro 2021. Signed-off-by: David Wronek --- drivers/gpu/d

Re: [PATCH 2/2] drm/panel: Add driver for EDO RM69380 OLED panel

2024-04-14 Thread Christophe JAILLET
Le 15/04/2024 à 07:37, david-vu3dztd92roxwddmvfq...@public.gmane.org a écrit : W dniu 2024-04-14 22:22, Christophe JAILLET napisał(a): Le 14/04/2024 à 17:22, David Wronek a écrit : Add support for the 2560x1600@90Hz OLED panel by EDO bundled with a Raydium RM69380 controller, as found on the Le

Re: [PATCH 2/2] drm/panel: Add driver for EDO RM69380 OLED panel

2024-04-14 Thread David Wronek
W dniu 2024-04-15 07:39, Christophe JAILLET napisał(a): Le 15/04/2024 à 07:37, david-vu3dztd92roxwddmvfq...@public.gmane.org a écrit : W dniu 2024-04-14 22:22, Christophe JAILLET napisał(a): Le 14/04/2024 à 17:22, David Wronek a écrit : Add support for the 2560x1600@90Hz OLED panel by EDO bund

Re: [PATCH 2/2] drm/panel: Add driver for EDO RM69380 OLED panel

2024-04-14 Thread David Wronek
W dniu 2024-04-14 22:00, Dmitry Baryshkov napisał(a): On Sun, Apr 14, 2024 at 05:22:31PM +0200, David Wronek wrote: Add support for the 2560x1600@90Hz OLED panel by EDO bundled with a Raydium RM69380 controller, as found on the Lenovo Xiaoxin Pad Pro 2021. Signed-off-by: David Wronek --- dr

Re: [PATCH v5, 19/23] media: mediatek: vcodec: disable wait interrupt for svp mode

2024-04-14 Thread 胡俊光

Re: [PATCH v2 01/43] drm/fbdev-generic: Do not set physical framebuffer address

2024-04-14 Thread Maxime Ripard
On Wed, 10 Apr 2024 15:01:57 +0200, Thomas Zimmermann wrote: > Framebuffer memory is allocated via vzalloc() from non-contiguous > physical pages. The physical framebuffer start address is therefore > meaningless. Do not set it. > > The value is not used within the kernel and only exported to user

Re: [PATCH 00/18] backlight: Constify lcd_ops

2024-04-14 Thread Thomas Zimmermann
/fbdev/omap/lcd_ams_delta.c | 2 +- include/linux/lcd.h | 6 +++--- 19 files changed, 22 insertions(+), 22 deletions(-) --- base-commit: 9ed46da14b9b9b2ad4edb3b0c545b6dbe5c00d39 change-id: 20240414-video-backlight-lcd-ops-276d8439ffb8 Best regards, -- -- Thomas Zimmermann

Re: [PATCH v2 28/43] drm/renesas/rcar-du: Use fbdev-dma

2024-04-14 Thread Thomas Zimmermann
Hi Am 12.04.24 um 20:57 schrieb Laurent Pinchart: Hi Thomas, Thank you for the patch. On Wed, Apr 10, 2024 at 03:02:24PM +0200, Thomas Zimmermann wrote: Implement fbdev emulation with fbdev-dma. Fbdev-dma now supports damage handling, which is required by rcar-du. Avoids the overhead of fbdev