Message ID | 1573157463-14070-8-git-send-email-fabrizio.castro@bp.renesas.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | Add LCD panel support to iwg20d | expand |
Hi Fabrizio, Thank you for the patch. On Thu, Nov 07, 2019 at 08:11:03PM +0000, Fabrizio Castro wrote: > The iwg20d comes with an LCD panel from Emerging Display > Technologies Corporation (EDT), therefore enable what's > required to support it. > > Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com> > > --- > v2->v3: > * No change > v1->v2: > * No change > --- > arch/arm/configs/shmobile_defconfig | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig > index c6c7035..ab416a5 100644 > --- a/arch/arm/configs/shmobile_defconfig > +++ b/arch/arm/configs/shmobile_defconfig > @@ -66,6 +66,7 @@ CONFIG_INPUT_EVDEV=y > CONFIG_KEYBOARD_GPIO=y > # CONFIG_INPUT_MOUSE is not set > CONFIG_INPUT_TOUCHSCREEN=y > +CONFIG_TOUCHSCREEN_EDT_FT5X06=y Do these options need to be built-in, or could modules work too ? > CONFIG_TOUCHSCREEN_ST1232=y > CONFIG_INPUT_MISC=y > CONFIG_INPUT_ADXL34X=y > @@ -125,7 +126,9 @@ CONFIG_VIDEO_ADV7604=y > CONFIG_VIDEO_ML86V7667=y > CONFIG_DRM=y > CONFIG_DRM_RCAR_DU=y > +CONFIG_DRM_PANEL_SIMPLE=y > CONFIG_DRM_DUMB_VGA_DAC=y > +CONFIG_DRM_LVDS_CODEC=y > CONFIG_DRM_SII902X=y > CONFIG_DRM_I2C_ADV7511=y > CONFIG_DRM_I2C_ADV7511_AUDIO=y
Hi Laurent, On Thu, Nov 7, 2019 at 9:56 PM Laurent Pinchart <laurent.pinchart@ideasonboard.com> wrote: > On Thu, Nov 07, 2019 at 08:11:03PM +0000, Fabrizio Castro wrote: > > The iwg20d comes with an LCD panel from Emerging Display > > Technologies Corporation (EDT), therefore enable what's > > required to support it. > > > > Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com> > > > > --- > > v2->v3: > > * No change > > v1->v2: > > * No change > > --- > > arch/arm/configs/shmobile_defconfig | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig > > index c6c7035..ab416a5 100644 > > --- a/arch/arm/configs/shmobile_defconfig > > +++ b/arch/arm/configs/shmobile_defconfig > > @@ -66,6 +66,7 @@ CONFIG_INPUT_EVDEV=y > > CONFIG_KEYBOARD_GPIO=y > > # CONFIG_INPUT_MOUSE is not set > > CONFIG_INPUT_TOUCHSCREEN=y > > +CONFIG_TOUCHSCREEN_EDT_FT5X06=y > > Do these options need to be built-in, or could modules work too ? All Renesas-specific config options in shmobile_defconfig are builtin, unlike in multi_v7_defconfig and arm64_defconfig. Gr{oetje,eeting}s, Geert
diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig index c6c7035..ab416a5 100644 --- a/arch/arm/configs/shmobile_defconfig +++ b/arch/arm/configs/shmobile_defconfig @@ -66,6 +66,7 @@ CONFIG_INPUT_EVDEV=y CONFIG_KEYBOARD_GPIO=y # CONFIG_INPUT_MOUSE is not set CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_EDT_FT5X06=y CONFIG_TOUCHSCREEN_ST1232=y CONFIG_INPUT_MISC=y CONFIG_INPUT_ADXL34X=y @@ -125,7 +126,9 @@ CONFIG_VIDEO_ADV7604=y CONFIG_VIDEO_ML86V7667=y CONFIG_DRM=y CONFIG_DRM_RCAR_DU=y +CONFIG_DRM_PANEL_SIMPLE=y CONFIG_DRM_DUMB_VGA_DAC=y +CONFIG_DRM_LVDS_CODEC=y CONFIG_DRM_SII902X=y CONFIG_DRM_I2C_ADV7511=y CONFIG_DRM_I2C_ADV7511_AUDIO=y
The iwg20d comes with an LCD panel from Emerging Display Technologies Corporation (EDT), therefore enable what's required to support it. Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com> --- v2->v3: * No change v1->v2: * No change --- arch/arm/configs/shmobile_defconfig | 3 +++ 1 file changed, 3 insertions(+)