Re: [PATCH] drm: of: fix documentation reference

2025-07-13 Thread Raphaël Gallais-Pou
Le 09/06/2025 à 15:35, Raphael Gallais-Pou a écrit : Documentation/devicetree/bindings/graph.txt content has move directly to the dt-schema repo. Point to the YAML of the official repo instead of the old file. Signed-off-by: Raphael Gallais-Pou Hi, Gentle ping ! Best regards, Raphaël --

Re: [PATCH] drm/sti: fix inconsistent indenting warning

2025-03-07 Thread Raphaël Gallais-Pou
Le 05/03/2025 à 11:16, Charles Han a écrit : Fix below inconsistent indenting smatch warning. smatch warnings: drivers/gpu/drm/sti/sti_hda.c:696 sti_hda_bind() warn: inconsistent indenting Signed-off-by: Charles Han Hi, Acked-by: Raphaël Gallais-Pou Thanks, Raphaël --- drivers/gpu

Re: [PATCH 07/12] drm/sti: move to devm_platform_ioremap_resource() usage

2025-02-11 Thread Raphaël Gallais-Pou
Le 05/02/2025 à 21:08, Anusha Srivatsa a écrit : Replace platform_get_resource/_byname + devm_ioremap with just devm_platform_ioremap_resource() Used Coccinelle to do this change. SmPl patch: @rule@ identifier res; expression ioremap; identifier pdev; constant mem; expression name; @@ -struc

Re: [PATCH 09/10] drm/sti: hdmi: use eld_mutex to protect access to connector->eld

2024-12-02 Thread Raphaël Gallais-Pou
Le 01/12/2024 à 00:55, Dmitry Baryshkov a écrit : Reading access to connector->eld can happen at the same time the drm_edid_to_eld() updates the data. Take the newly added eld_mutex in order to protect connector->eld from concurrent access. Signed-off-by: Dmitry Baryshkov Hi Dmitry, Acked

Re: [PATCH] drm/sti: Add __iomem for mixer_dbg_mxn's parameter

2024-11-21 Thread Raphaël Gallais-Pou
Sparse complains about incorrect type in argument 1. expected void const volatile __iomem *ptr but got void *. so modify mixer_dbg_mxn's addr parameter. Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202411191809.6v3c826r-...@intel.com/ Fixes: a5f81078a56c ("d

Re: [PATCH 5/5] drm/connector: make mode_valid accept const struct drm_display_mode

2024-11-18 Thread Raphaël Gallais-Pou
Le 15/11/2024 à 22:09, Dmitry Baryshkov a écrit : The mode_valid() callbacks of drm_encoder, drm_crtc and drm_bridge accept const struct drm_display_mode argument. Change the mode_valid callback of drm_connector to also accept const argument. Signed-off-by: Dmitry Baryshkov --- Hi Dmitry,

Re: [PATCH 3/5] drm/sti: hda: pass const struct drm_display_mode* to hda_get_mode_idx()

2024-11-18 Thread Raphaël Gallais-Pou
Make hda_get_mode_idx() accept const struct drm_display_mode pointer instead of just raw struct drm_display_mode. This is a preparation to converting the mode_valid() callback of drm_connector to accept const struct drm_display_mode argument. Signed-off-by: Dmitry Baryshkov --- Hi Dmitry,

Re: [PATCH RESEND] drm/sti: avoid potential dereference of error pointers

2024-08-29 Thread Raphaël Gallais-Pou
s atomic_check") Signed-off-by: Ma Ke Hi, Tested-by: Raphaël Gallais-Pou Regards, Raphaël

Re: [Linux-stm32] [PATCH RESEND v3 0/3] Update STM DSI PHY driver

2024-08-01 Thread Raphaël Gallais-Pou
Le 29/07/2024 à 15:28, Yanjun Yang a écrit : On Fri, Jul 26, 2024 at 09:55:35AM +0200, Philippe CORNU wrote: On 7/22/24 10:38, Yanjun Yang wrote: This patch (commit id:185f99b614427360) seems to break the dsi of stm32f469 chip. I'm not familiar with the drm and the clock framework, maybe

Re: [PATCH RESEND v2] staging: fbtft: ili9341: use macro FBTFT_REGISTER_SPI_DRIVER

2023-07-18 Thread Raphaël Gallais-Pou
Hi, Le 18/07/2023 à 15:33, Greg Kroah-Hartman a écrit : On Tue, Jul 18, 2023 at 10:17:59AM +0200, Raphael Gallais-Pou wrote: Using FBTFT_REGISTER_DRIVER resolves to a NULL struct spi_device_id. This ultimately causes a warning when the module probes. Fixes it. Changes in v2: - dropped

Re: [PATCH] staging: fbtft: ili9341: use macro FBTFT_REGISTER_SPI_DRIVER

2023-07-02 Thread Raphaël Gallais-Pou
Hi, Le 02/07/2023 à 14:02, Greg Kroah-Hartman a écrit : On Sun, Jul 02, 2023 at 10:03:24AM +0200, Raphael Gallais-Pou wrote: Using FBTFT_REGISTER_DRIVER resolves to a NULL struct spi_device_id. This ultimately causes the module to an early exit at probe time. So this doesn't work at all today

[PATCH] drm/stm: ltdc: add support for CRC hashing feature

2022-02-11 Thread Raphaël Gallais-Pou
From: Raphael Gallais-Pou This patch adds the CRC hashing feature supported by some recent hardware versions of the LTDC. This is useful for test suite such as IGT-GPU-tools [1] where a CRTC output frame can be compared to a test reference frame thanks to their respective CRC hash. [1] https://c