All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: bcm283x: Disable dsi0 node
@ 2020-04-15 14:42 Nicolas Saenz Julienne
  2020-04-15 19:17 ` Eric Anholt
  2020-04-16 20:58 ` Florian Fainelli
  0 siblings, 2 replies; 4+ messages in thread
From: Nicolas Saenz Julienne @ 2020-04-15 14:42 UTC (permalink / raw)
  To: Rob Herring, Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list, Eric Anholt
  Cc: linux-rpi-kernel, Nicolas Saenz Julienne, devicetree, linux-kernel

Since its inception the module was meant to be disabled by default, but
the original commit failed to add the relevant property.

Fixes: 4aba4cf82054 ("ARM: dts: bcm2835: Add the DSI module nodes and clocks")
Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
---
 arch/arm/boot/dts/bcm283x.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/bcm283x.dtsi b/arch/arm/boot/dts/bcm283x.dtsi
index e1abe8c730cef..b83a864e2e8ba 100644
--- a/arch/arm/boot/dts/bcm283x.dtsi
+++ b/arch/arm/boot/dts/bcm283x.dtsi
@@ -372,6 +372,7 @@ dsi0: dsi@7e209000 {
 					     "dsi0_ddr2",
 					     "dsi0_ddr";
 
+			status = "disabled";
 		};
 
 		aux: aux@7e215000 {
-- 
2.26.0


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

* Re: [PATCH] ARM: dts: bcm283x: Disable dsi0 node
  2020-04-15 14:42 [PATCH] ARM: dts: bcm283x: Disable dsi0 node Nicolas Saenz Julienne
@ 2020-04-15 19:17 ` Eric Anholt
  2020-04-16  9:36   ` Nicolas Saenz Julienne
  2020-04-16 20:58 ` Florian Fainelli
  1 sibling, 1 reply; 4+ messages in thread
From: Eric Anholt @ 2020-04-15 19:17 UTC (permalink / raw)
  To: Nicolas Saenz Julienne
  Cc: Rob Herring, Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list, linux-rpi-kernel, devicetree,
	linux-kernel

On Wed, Apr 15, 2020 at 7:42 AM Nicolas Saenz Julienne
<nsaenzjulienne@suse.de> wrote:
>
> Since its inception the module was meant to be disabled by default, but
> the original commit failed to add the relevant property.
>
> Fixes: 4aba4cf82054 ("ARM: dts: bcm2835: Add the DSI module nodes and clocks")
> Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
> ---
>  arch/arm/boot/dts/bcm283x.dtsi | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/boot/dts/bcm283x.dtsi b/arch/arm/boot/dts/bcm283x.dtsi
> index e1abe8c730cef..b83a864e2e8ba 100644
> --- a/arch/arm/boot/dts/bcm283x.dtsi
> +++ b/arch/arm/boot/dts/bcm283x.dtsi
> @@ -372,6 +372,7 @@ dsi0: dsi@7e209000 {
>                                              "dsi0_ddr2",
>                                              "dsi0_ddr";
>
> +                       status = "disabled";
>                 };

If you've confirmed that vc4 still probes,

Reviewed-by: Eric Anholt <eric@anholt.net>

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

* Re: [PATCH] ARM: dts: bcm283x: Disable dsi0 node
  2020-04-15 19:17 ` Eric Anholt
@ 2020-04-16  9:36   ` Nicolas Saenz Julienne
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Saenz Julienne @ 2020-04-16  9:36 UTC (permalink / raw)
  To: Eric Anholt
  Cc: Rob Herring, Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list, linux-rpi-kernel, devicetree,
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1143 bytes --]

On Wed, 2020-04-15 at 12:17 -0700, Eric Anholt wrote:
> On Wed, Apr 15, 2020 at 7:42 AM Nicolas Saenz Julienne
> <nsaenzjulienne@suse.de> wrote:
> > Since its inception the module was meant to be disabled by default, but
> > the original commit failed to add the relevant property.
> > 
> > Fixes: 4aba4cf82054 ("ARM: dts: bcm2835: Add the DSI module nodes and
> > clocks")
> > Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
> > ---
> >  arch/arm/boot/dts/bcm283x.dtsi | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm/boot/dts/bcm283x.dtsi b/arch/arm/boot/dts/bcm283x.dtsi
> > index e1abe8c730cef..b83a864e2e8ba 100644
> > --- a/arch/arm/boot/dts/bcm283x.dtsi
> > +++ b/arch/arm/boot/dts/bcm283x.dtsi
> > @@ -372,6 +372,7 @@ dsi0: dsi@7e209000 {
> >                                              "dsi0_ddr2",
> >                                              "dsi0_ddr";
> > 
> > +                       status = "disabled";
> >                 };
> 
> If you've confirmed that vc4 still probes,

Confirmed.

> Reviewed-by: Eric Anholt <eric@anholt.net>

Thanks,
Nicolas


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH] ARM: dts: bcm283x: Disable dsi0 node
  2020-04-15 14:42 [PATCH] ARM: dts: bcm283x: Disable dsi0 node Nicolas Saenz Julienne
  2020-04-15 19:17 ` Eric Anholt
@ 2020-04-16 20:58 ` Florian Fainelli
  1 sibling, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2020-04-16 20:58 UTC (permalink / raw)
  To: bcm-kernel-feedback-list, Nicolas Saenz Julienne, Rob Herring,
	Ray Jui, Scott Branden, Eric Anholt
  Cc: linux-rpi-kernel, devicetree, linux-kernel

On Wed, 15 Apr 2020 16:42:33 +0200, Nicolas Saenz Julienne <nsaenzjulienne@suse.de> wrote:
> Since its inception the module was meant to be disabled by default, but
> the original commit failed to add the relevant property.
> 
> Fixes: 4aba4cf82054 ("ARM: dts: bcm2835: Add the DSI module nodes and clocks")
> Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
> ---

Applied to devicetree/fixes, thanks!
--
Florian

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

end of thread, other threads:[~2020-04-16 20:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-15 14:42 [PATCH] ARM: dts: bcm283x: Disable dsi0 node Nicolas Saenz Julienne
2020-04-15 19:17 ` Eric Anholt
2020-04-16  9:36   ` Nicolas Saenz Julienne
2020-04-16 20:58 ` Florian Fainelli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.