linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items
@ 2019-09-11 14:52 Adam Ford
  2019-09-11 14:52 ` [PATCH 2/2] ARM: omap2plus_defconfig: Update for moved item Adam Ford
  2019-09-11 16:50 ` [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items Sebastian Reichel
  0 siblings, 2 replies; 5+ messages in thread
From: Adam Ford @ 2019-09-11 14:52 UTC (permalink / raw)
  To: linux-omap
  Cc: Tony Lindgren, adam.ford, Russell King, linux-kernel, Adam Ford,
	linux-arm-kernel

The omap panel-dpi driver was removed in
Commit 8bf4b1621178 ("drm/omap: Remove panel-dpi driver")

The tFP410 and DVI connector was remove in
Commit be3143d8b27f ("drm/omap: Remove TFP410 and DVI connector drivers")

This patch removes these items from the omap2plus_defconfig.

Signed-off-by: Adam Ford <aford173@gmail.com>

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index c7bf9c493646..166b36be2ca6 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -349,12 +349,9 @@ CONFIG_OMAP5_DSS_HDMI=y
 CONFIG_OMAP2_DSS_SDI=y
 CONFIG_OMAP2_DSS_DSI=y
 CONFIG_DRM_OMAP_ENCODER_OPA362=m
-CONFIG_DRM_OMAP_ENCODER_TFP410=m
 CONFIG_DRM_OMAP_ENCODER_TPD12S015=m
-CONFIG_DRM_OMAP_CONNECTOR_DVI=m
 CONFIG_DRM_OMAP_CONNECTOR_HDMI=m
 CONFIG_DRM_OMAP_CONNECTOR_ANALOG_TV=m
-CONFIG_DRM_OMAP_PANEL_DPI=m
 CONFIG_DRM_OMAP_PANEL_DSI_CM=m
 CONFIG_DRM_OMAP_PANEL_SONY_ACX565AKM=m
 CONFIG_DRM_OMAP_PANEL_LGPHILIPS_LB035Q02=m
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] ARM: omap2plus_defconfig: Update for moved item
  2019-09-11 14:52 [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items Adam Ford
@ 2019-09-11 14:52 ` Adam Ford
  2019-09-11 16:50 ` [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items Sebastian Reichel
  1 sibling, 0 replies; 5+ messages in thread
From: Adam Ford @ 2019-09-11 14:52 UTC (permalink / raw)
  To: linux-omap
  Cc: Tony Lindgren, adam.ford, Russell King, linux-kernel, Adam Ford,
	linux-arm-kernel

When running make savedefconfig ARCH=arm, CONFIG_DMA_CMA
changed location.  To help facilitate future changes to
omap2plus_defconfig, this patch re-syncs the omap2plus file
with the updated location generated by make savedefconfig.

No items were removed or added during this patch.

Signed-off-by: Adam Ford <aford173@gmail.com>

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index 166b36be2ca6..a0449d3b48a5 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -128,7 +128,6 @@ CONFIG_PCI_ENDPOINT_CONFIGFS=y
 CONFIG_PCI_EPF_TEST=m
 CONFIG_DEVTMPFS=y
 CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_DMA_CMA=y
 CONFIG_OMAP_OCP2SCP=y
 CONFIG_CONNECTOR=m
 CONFIG_MTD=y
@@ -537,6 +536,7 @@ CONFIG_CRC_T10DIF=y
 CONFIG_CRC_ITU_T=y
 CONFIG_CRC7=y
 CONFIG_LIBCRC32C=y
+CONFIG_DMA_CMA=y
 CONFIG_FONTS=y
 CONFIG_FONT_8x8=y
 CONFIG_FONT_8x16=y
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items
  2019-09-11 14:52 [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items Adam Ford
  2019-09-11 14:52 ` [PATCH 2/2] ARM: omap2plus_defconfig: Update for moved item Adam Ford
@ 2019-09-11 16:50 ` Sebastian Reichel
  2019-09-11 17:13   ` Adam Ford
  1 sibling, 1 reply; 5+ messages in thread
From: Sebastian Reichel @ 2019-09-11 16:50 UTC (permalink / raw)
  To: Adam Ford
  Cc: Tony Lindgren, Russell King, linux-kernel, linux-omap, adam.ford,
	linux-arm-kernel


[-- Attachment #1.1: Type: text/plain, Size: 1423 bytes --]

Hi,

On Wed, Sep 11, 2019 at 09:52:25AM -0500, Adam Ford wrote:
> The omap panel-dpi driver was removed in
> Commit 8bf4b1621178 ("drm/omap: Remove panel-dpi driver")
> 
> The tFP410 and DVI connector was remove in
> Commit be3143d8b27f ("drm/omap: Remove TFP410 and DVI connector drivers")
> 
> This patch removes these items from the omap2plus_defconfig.

The omapdrm specific drivers have generic replacements, that
should be added to the defconfig instead:

DRM_OMAP_PANEL_DPI -> DRM_PANEL_SIMPLE
DRM_OMAP_ENCODER_TFP410 -> DRM_TI_TFP410

Nothing should be required for DRM_OMAP_CONNECTOR_DVI.

-- Sebastian

> Signed-off-by: Adam Ford <aford173@gmail.com>
> 
> diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
> index c7bf9c493646..166b36be2ca6 100644
> --- a/arch/arm/configs/omap2plus_defconfig
> +++ b/arch/arm/configs/omap2plus_defconfig
> @@ -349,12 +349,9 @@ CONFIG_OMAP5_DSS_HDMI=y
>  CONFIG_OMAP2_DSS_SDI=y
>  CONFIG_OMAP2_DSS_DSI=y
>  CONFIG_DRM_OMAP_ENCODER_OPA362=m
> -CONFIG_DRM_OMAP_ENCODER_TFP410=m
>  CONFIG_DRM_OMAP_ENCODER_TPD12S015=m
> -CONFIG_DRM_OMAP_CONNECTOR_DVI=m
>  CONFIG_DRM_OMAP_CONNECTOR_HDMI=m
>  CONFIG_DRM_OMAP_CONNECTOR_ANALOG_TV=m
> -CONFIG_DRM_OMAP_PANEL_DPI=m
>  CONFIG_DRM_OMAP_PANEL_DSI_CM=m
>  CONFIG_DRM_OMAP_PANEL_SONY_ACX565AKM=m
>  CONFIG_DRM_OMAP_PANEL_LGPHILIPS_LB035Q02=m
> -- 
> 2.17.1
> 

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items
  2019-09-11 16:50 ` [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items Sebastian Reichel
@ 2019-09-11 17:13   ` Adam Ford
  2019-09-23 18:30     ` Tony Lindgren
  0 siblings, 1 reply; 5+ messages in thread
From: Adam Ford @ 2019-09-11 17:13 UTC (permalink / raw)
  To: Sebastian Reichel
  Cc: Tony Lindgren, Russell King, Linux Kernel Mailing List,
	Linux-OMAP, Adam Ford, arm-soc

On Wed, Sep 11, 2019 at 11:50 AM Sebastian Reichel <sre@kernel.org> wrote:
>
> Hi,
>
> On Wed, Sep 11, 2019 at 09:52:25AM -0500, Adam Ford wrote:
> > The omap panel-dpi driver was removed in
> > Commit 8bf4b1621178 ("drm/omap: Remove panel-dpi driver")
> >
> > The tFP410 and DVI connector was remove in
> > Commit be3143d8b27f ("drm/omap: Remove TFP410 and DVI connector drivers")
> >
> > This patch removes these items from the omap2plus_defconfig.
>
> The omapdrm specific drivers have generic replacements, that
> should be added to the defconfig instead:
>
> DRM_OMAP_PANEL_DPI -> DRM_PANEL_SIMPLE
> DRM_OMAP_ENCODER_TFP410 -> DRM_TI_TFP410
>
> Nothing should be required for DRM_OMAP_CONNECTOR_DVI.

The DPI panel was already done.

https://patchwork.kernel.org/patch/11119569/

I'll submit a patch for the TFP410

adam
>
> -- Sebastian
>
> > Signed-off-by: Adam Ford <aford173@gmail.com>
> >
> > diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
> > index c7bf9c493646..166b36be2ca6 100644
> > --- a/arch/arm/configs/omap2plus_defconfig
> > +++ b/arch/arm/configs/omap2plus_defconfig
> > @@ -349,12 +349,9 @@ CONFIG_OMAP5_DSS_HDMI=y
> >  CONFIG_OMAP2_DSS_SDI=y
> >  CONFIG_OMAP2_DSS_DSI=y
> >  CONFIG_DRM_OMAP_ENCODER_OPA362=m
> > -CONFIG_DRM_OMAP_ENCODER_TFP410=m
> >  CONFIG_DRM_OMAP_ENCODER_TPD12S015=m
> > -CONFIG_DRM_OMAP_CONNECTOR_DVI=m
> >  CONFIG_DRM_OMAP_CONNECTOR_HDMI=m
> >  CONFIG_DRM_OMAP_CONNECTOR_ANALOG_TV=m
> > -CONFIG_DRM_OMAP_PANEL_DPI=m
> >  CONFIG_DRM_OMAP_PANEL_DSI_CM=m
> >  CONFIG_DRM_OMAP_PANEL_SONY_ACX565AKM=m
> >  CONFIG_DRM_OMAP_PANEL_LGPHILIPS_LB035Q02=m
> > --
> > 2.17.1
> >

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items
  2019-09-11 17:13   ` Adam Ford
@ 2019-09-23 18:30     ` Tony Lindgren
  0 siblings, 0 replies; 5+ messages in thread
From: Tony Lindgren @ 2019-09-23 18:30 UTC (permalink / raw)
  To: Adam Ford
  Cc: Linux Kernel Mailing List, Sebastian Reichel, Russell King,
	Linux-OMAP, Adam Ford, arm-soc

* Adam Ford <aford173@gmail.com> [190911 17:14]:
> On Wed, Sep 11, 2019 at 11:50 AM Sebastian Reichel <sre@kernel.org> wrote:
> >
> > Hi,
> >
> > On Wed, Sep 11, 2019 at 09:52:25AM -0500, Adam Ford wrote:
> > > The omap panel-dpi driver was removed in
> > > Commit 8bf4b1621178 ("drm/omap: Remove panel-dpi driver")
> > >
> > > The tFP410 and DVI connector was remove in
> > > Commit be3143d8b27f ("drm/omap: Remove TFP410 and DVI connector drivers")
> > >
> > > This patch removes these items from the omap2plus_defconfig.
> >
> > The omapdrm specific drivers have generic replacements, that
> > should be added to the defconfig instead:
> >
> > DRM_OMAP_PANEL_DPI -> DRM_PANEL_SIMPLE
> > DRM_OMAP_ENCODER_TFP410 -> DRM_TI_TFP410
> >
> > Nothing should be required for DRM_OMAP_CONNECTOR_DVI.
> 
> The DPI panel was already done.
> 
> https://patchwork.kernel.org/patch/11119569/
> 
> I'll submit a patch for the TFP410

I picked that one into fixes, will apply the rest
of defconfig changes into omap-for-v5.5/defconfig.
Not planning on pushing it out until after -rc1
though.

Regards,

Tony

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-09-23 18:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-11 14:52 [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items Adam Ford
2019-09-11 14:52 ` [PATCH 2/2] ARM: omap2plus_defconfig: Update for moved item Adam Ford
2019-09-11 16:50 ` [PATCH 1/2] ARM: omap2plus_defconfig: Update for removed items Sebastian Reichel
2019-09-11 17:13   ` Adam Ford
2019-09-23 18:30     ` Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).