Message ID | 20250324180047.1571378-7-dario.binacchi@amarulasolutions.com |
---|---|
State | New |
Headers | show |
Series |
|
Related | show |
On 3/24/25 19:00, Dario Binacchi wrote: > Support FRIDA FRD400B25025-A-CTK display on stm32f769-disco board. > > As reported in the section 8.3 (i. e. Board revision history) of document > UM2033 (i. e. Discovery kit with STM32F769NI MCU) these are the changes > related to the board revision addressed by the patch: > - Board MB1166 revision A-09: > - LCD FRIDA FRD397B25009-D-CTK replaced by FRIDA FRD400B25025-A-CTK > > This means that the MB1166-A09 is using an NT35510 panel controller, > unlike the previous versions which use an OTM8009A controller. > Therefore, let's add support for NT35510 panel handling to the > stm32f769-disco board configurations. > > Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> > > --- > > configs/stm32f769-disco_defconfig | 2 ++ > configs/stm32f769-disco_spl_defconfig | 2 ++ > 2 files changed, 4 insertions(+) Hi Dario As this patch is only updating defconfig file, update the commit title with: "configs: stm32f769-disco:...." With this update you can add my reviewed-by. Thanks Patrice > > diff --git a/configs/stm32f769-disco_defconfig b/configs/stm32f769-disco_defconfig > index 5be221afd2fa..e50d62e93bd6 100644 > --- a/configs/stm32f769-disco_defconfig > +++ b/configs/stm32f769-disco_defconfig > @@ -52,12 +52,14 @@ CONFIG_DW_ALTDESCRIPTOR=y > CONFIG_MII=y > # CONFIG_PINCTRL_FULL is not set > CONFIG_DM_REGULATOR=y > +CONFIG_DM_REGULATOR_FIXED=y > CONFIG_SPI=y > CONFIG_DM_SPI=y > CONFIG_STM32_QSPI=y > CONFIG_VIDEO=y > CONFIG_VIDEO_LOGO=y > CONFIG_BACKLIGHT_GPIO=y > +CONFIG_VIDEO_LCD_NOVATEK_NT35510=y > CONFIG_VIDEO_LCD_ORISETECH_OTM8009A=y > CONFIG_VIDEO_STM32=y > CONFIG_VIDEO_STM32_DSI=y > diff --git a/configs/stm32f769-disco_spl_defconfig b/configs/stm32f769-disco_spl_defconfig > index 7d4bda440685..6229ee5089f5 100644 > --- a/configs/stm32f769-disco_spl_defconfig > +++ b/configs/stm32f769-disco_spl_defconfig > @@ -75,6 +75,7 @@ CONFIG_MII=y > # CONFIG_PINCTRL_FULL is not set > CONFIG_SPL_PINCTRL=y > CONFIG_DM_REGULATOR=y > +CONFIG_DM_REGULATOR_FIXED=y > CONFIG_SPL_RAM=y > CONFIG_SPECIFY_CONSOLE_INDEX=y > CONFIG_SPI=y > @@ -84,6 +85,7 @@ CONFIG_SPL_TIMER=y > CONFIG_VIDEO=y > CONFIG_VIDEO_LOGO=y > CONFIG_BACKLIGHT_GPIO=y > +CONFIG_VIDEO_LCD_NOVATEK_NT35510=y > CONFIG_VIDEO_LCD_ORISETECH_OTM8009A=y > CONFIG_VIDEO_STM32=y > CONFIG_VIDEO_STM32_DSI=y To unsubscribe from this group and stop receiving emails from it, send an email to linux-amarula+unsubscribe@amarulasolutions.com.
diff --git a/configs/stm32f769-disco_defconfig b/configs/stm32f769-disco_defconfig index 5be221afd2fa..e50d62e93bd6 100644 --- a/configs/stm32f769-disco_defconfig +++ b/configs/stm32f769-disco_defconfig @@ -52,12 +52,14 @@ CONFIG_DW_ALTDESCRIPTOR=y CONFIG_MII=y # CONFIG_PINCTRL_FULL is not set CONFIG_DM_REGULATOR=y +CONFIG_DM_REGULATOR_FIXED=y CONFIG_SPI=y CONFIG_DM_SPI=y CONFIG_STM32_QSPI=y CONFIG_VIDEO=y CONFIG_VIDEO_LOGO=y CONFIG_BACKLIGHT_GPIO=y +CONFIG_VIDEO_LCD_NOVATEK_NT35510=y CONFIG_VIDEO_LCD_ORISETECH_OTM8009A=y CONFIG_VIDEO_STM32=y CONFIG_VIDEO_STM32_DSI=y diff --git a/configs/stm32f769-disco_spl_defconfig b/configs/stm32f769-disco_spl_defconfig index 7d4bda440685..6229ee5089f5 100644 --- a/configs/stm32f769-disco_spl_defconfig +++ b/configs/stm32f769-disco_spl_defconfig @@ -75,6 +75,7 @@ CONFIG_MII=y # CONFIG_PINCTRL_FULL is not set CONFIG_SPL_PINCTRL=y CONFIG_DM_REGULATOR=y +CONFIG_DM_REGULATOR_FIXED=y CONFIG_SPL_RAM=y CONFIG_SPECIFY_CONSOLE_INDEX=y CONFIG_SPI=y @@ -84,6 +85,7 @@ CONFIG_SPL_TIMER=y CONFIG_VIDEO=y CONFIG_VIDEO_LOGO=y CONFIG_BACKLIGHT_GPIO=y +CONFIG_VIDEO_LCD_NOVATEK_NT35510=y CONFIG_VIDEO_LCD_ORISETECH_OTM8009A=y CONFIG_VIDEO_STM32=y CONFIG_VIDEO_STM32_DSI=y
Support FRIDA FRD400B25025-A-CTK display on stm32f769-disco board. As reported in the section 8.3 (i. e. Board revision history) of document UM2033 (i. e. Discovery kit with STM32F769NI MCU) these are the changes related to the board revision addressed by the patch: - Board MB1166 revision A-09: - LCD FRIDA FRD397B25009-D-CTK replaced by FRIDA FRD400B25025-A-CTK This means that the MB1166-A09 is using an NT35510 panel controller, unlike the previous versions which use an OTM8009A controller. Therefore, let's add support for NT35510 panel handling to the stm32f769-disco board configurations. Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> --- configs/stm32f769-disco_defconfig | 2 ++ configs/stm32f769-disco_spl_defconfig | 2 ++ 2 files changed, 4 insertions(+)