Re: [PATCH] video: check hardware version of DSI

2020-06-26 Thread Philippe CORNU
Hi Yannick, Many thanks for your patch, Reviewed-by: Philippe Cornu Philippe :-) On 6/24/20 10:43 AM, Yannick Fertre wrote: > Check the hardware version of DSI. Versions 1.30 & 1.31 are only > supported. > > Signed-off-by: Yannick Fertre > --- > drivers/video/

Re: [PATCH 30/33] video: stm32_dsi: migrate trace to dev and log macro

2020-10-15 Thread Philippe CORNU
> return; > @@ -325,8 +327,8 @@ static int dsi_get_lane_mbps(void *priv_data, struct > display_timing *timings, > > *lane_mbps = pll_out_khz / 1000; > > - debug("pll_in %ukHz pll_out %ukHz lane_mbps %uMHz\n", > - pll_in_khz, pll_out_khz, *lane_mbps); > + dev_dbg(dev, "pll_in %ukHz pll_out %ukHz lane_mbps %uMHz\n", > + pll_in_khz, pll_out_khz, *lane_mbps); > > return 0; > } > Hi Patrick, and many thanks for your patch. Reviewed-by: Philippe Cornu Philippe :-)

[U-Boot] [PATCH v1 1/3] dm: backlight: Add CONFIG_BACKLIGHT_PWM

2017-08-03 Thread Philippe CORNU
From: Patrick Delaunay Add a config to select individually the driver for PWM backlights. Manage "depends on" to be backyard compatible. Signed-off-by: Patrick Delaunay --- drivers/video/Kconfig | 11 +++ drivers/video/Makefile | 4 +--- 2 files changed, 12 insertions(+), 3 deletions

[U-Boot] [PATCH v1 0/3] video: add STM32 LTDC display controller

2017-08-03 Thread Philippe CORNU
CONFIG_BACKLIGHT_PWM dm: backlight: Add a driver for GPIO backlight Philippe CORNU (1): video: add STM32 LTDC display controller drivers/video/Kconfig| 23 +++ drivers/video/Makefile | 6 +- drivers/video/backlight_gpio.c | 74 +++ drivers/video/stm32/Kconfig | 44

[U-Boot] [PATCH v1 3/3] video: add STM32 LTDC display controller

2017-08-03 Thread Philippe CORNU
tible with all stm32 platforms with the LTDC IP and has been tested on stm32 f746-disco board. Signed-off-by: Philippe CORNU --- drivers/video/Kconfig| 2 + drivers/video/Makefile | 1 + drivers/video/stm32/Kconfig | 44 + drivers/video/stm32/Makefile | 10 +

[U-Boot] [PATCH v1 2/3] dm: backlight: Add a driver for GPIO backlight

2017-08-03 Thread Philippe CORNU
From: Patrick Delaunay Add a driver for GPIO backlights. It understands the standard device tree binding. It can be used with simple-panel when PWM is not necessary. Signed-off-by: Patrick Delaunay --- drivers/video/Kconfig | 10 ++ drivers/video/Makefile | 1 + drivers/v