All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: rockchip: give some life to the rk3328-roc-cc leds
@ 2019-03-01 22:58 Leonidas P. Papadakos
       [not found] ` <20190301225813.19834-1-papadakospan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Leonidas P. Papadakos @ 2019-03-01 22:58 UTC (permalink / raw)
  To: Rob Herring
  Cc: linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Heiko Stuebner,
	Leonidas P. Papadakos

Assign the LED's to heartbeat and sdcard io, as in other RK boards.

https://github.com/armbian/build/commit/f1affad5c7be62d6e93832af3556c7609edd0858

Signed-off-by: Leonidas P. Papadakos <papadakospan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 .../arm64/boot/dts/rockchip/rk3328-roc-cc.dts | 27 +++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts b/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
index 33c44e857..a881d4c8d 100644
--- a/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
+++ b/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
@@ -81,6 +81,33 @@
 		regulator-always-on;
 		regulator-boot-on;
 	};
+
+	leds {
+		compatible = "gpio-leds";
+		power {
+			label = "firefly:blue:power";
+			linux,default-trigger = "heartbeat";
+			gpios = <&rk805 1 GPIO_ACTIVE_LOW>;
+			default-state = "on";
+			mode = <0x23>;
+		};
+
+		user {
+			label = "firefly:yellow:user";
+			linux,default-trigger = "mmc1";
+			gpios = <&rk805 0 GPIO_ACTIVE_LOW>;
+			default-state = "off";
+			mode = <0x05>;
+		};
+
+		ir {
+			status = "disabled";
+			/* gpios = <&gpio2 GPIO_C2 GPIO_ACTIVE_HIGH>; */
+			linux,default-trigger = "ir";
+			default-state = "off";
+			mode = <0x00>;
+		};
+	};
 };
 
 &cpu0 {
-- 
2.21.0

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

* Re: [PATCH] arm64: dts: rockchip: give some life to the rk3328-roc-cc leds
       [not found] ` <20190301225813.19834-1-papadakospan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2019-03-02  0:31   ` Heiko Stuebner
  2019-03-02  2:51     ` Leonidas P. Papadakos
  0 siblings, 1 reply; 4+ messages in thread
From: Heiko Stuebner @ 2019-03-02  0:31 UTC (permalink / raw)
  To: Leonidas P. Papadakos
  Cc: linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Rob Herring

Am Freitag, 1. März 2019, 23:58:13 CET schrieb Leonidas P. Papadakos:
> Assign the LED's to heartbeat and sdcard io, as in other RK boards.
> 
> https://github.com/armbian/build/commit/f1affad5c7be62d6e93832af3556c7609edd0858
> 
> Signed-off-by: Leonidas P. Papadakos <papadakospan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
>  .../arm64/boot/dts/rockchip/rk3328-roc-cc.dts | 27 +++++++++++++++++++
>  1 file changed, 27 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts b/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
> index 33c44e857..a881d4c8d 100644
> --- a/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
> +++ b/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
> @@ -81,6 +81,33 @@
>  		regulator-always-on;
>  		regulator-boot-on;
>  	};
> +
> +	leds {
> +		compatible = "gpio-leds";
> +		power {
> +			label = "firefly:blue:power";
> +			linux,default-trigger = "heartbeat";
> +			gpios = <&rk805 1 GPIO_ACTIVE_LOW>;
> +			default-state = "on";
> +			mode = <0x23>;
> +		};
> +
> +		user {
> +			label = "firefly:yellow:user";
> +			linux,default-trigger = "mmc1";
> +			gpios = <&rk805 0 GPIO_ACTIVE_LOW>;
> +			default-state = "off";
> +			mode = <0x05>;
> +		};
> +
> +		ir {
> +			status = "disabled";

please explain that. Is this an IR transmitting LED? And why are you
adding a disabled property?

Similar to how the kernel should not contain commented out code
having a disabled node in the actual board file is strange.


Heiko

> +			/* gpios = <&gpio2 GPIO_C2 GPIO_ACTIVE_HIGH>; */
> +			linux,default-trigger = "ir";
> +			default-state = "off";
> +			mode = <0x00>;
> +		};
> +	};
>  };
>  
>  &cpu0 {
> 

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

* Re: [PATCH] arm64: dts: rockchip: give some life to the rk3328-roc-cc leds
  2019-03-02  0:31   ` Heiko Stuebner
@ 2019-03-02  2:51     ` Leonidas P. Papadakos
  2019-03-02 10:54       ` Heiko Stuebner
  0 siblings, 1 reply; 4+ messages in thread
From: Leonidas P. Papadakos @ 2019-03-02  2:51 UTC (permalink / raw)
  To: Heiko Stuebner
  Cc: linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Rob Herring

On Sat, Mar 02, 2019 at 01:31:11AM +0100, Heiko Stuebner wrote:
> Am Freitag, 1. März 2019, 23:58:13 CET schrieb Leonidas P. Papadakos:
> > Assign the LED's to heartbeat and sdcard io, as in other RK boards.
> > 
> > https://github.com/armbian/build/commit/f1affad5c7be62d6e93832af3556c7609edd0858
> > 
> > Signed-off-by: Leonidas P. Papadakos <papadakospan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> > ---
> >  .../arm64/boot/dts/rockchip/rk3328-roc-cc.dts | 27 +++++++++++++++++++
> >  1 file changed, 27 insertions(+)
> > 
> > diff --git a/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts b/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
> > index 33c44e857..a881d4c8d 100644
> > --- a/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
> > +++ b/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
> > @@ -81,6 +81,33 @@
> >  		regulator-always-on;
> >  		regulator-boot-on;
> >  	};
> > +
> > +	leds {
> > +		compatible = "gpio-leds";
> > +		power {
> > +			label = "firefly:blue:power";
> > +			linux,default-trigger = "heartbeat";
> > +			gpios = <&rk805 1 GPIO_ACTIVE_LOW>;
> > +			default-state = "on";
> > +			mode = <0x23>;
> > +		};
> > +
> > +		user {
> > +			label = "firefly:yellow:user";
> > +			linux,default-trigger = "mmc1";
> > +			gpios = <&rk805 0 GPIO_ACTIVE_LOW>;
> > +			default-state = "off";
> > +			mode = <0x05>;
> > +		};
> > +
> > +		ir {
> > +			status = "disabled";
> 
> please explain that. Is this an IR transmitting LED? And why are you
> adding a disabled property?
> 
> Similar to how the kernel should not contain commented out code
> having a disabled node in the actual board file is strange.
> 
> 
> Heiko
> 

It probably is. See the image of the board on this site:
https://shop.t-firefly.com/goods.php?id=65

Should I make a PATCH v2 without it?

> > +			/* gpios = <&gpio2 GPIO_C2 GPIO_ACTIVE_HIGH>; */
> > +			linux,default-trigger = "ir";
> > +			default-state = "off";
> > +			mode = <0x00>;
> > +		};
> > +	};
> >  };
> >  
> >  &cpu0 {
> > 
> 
> 
> 
> 

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

* Re: [PATCH] arm64: dts: rockchip: give some life to the rk3328-roc-cc leds
  2019-03-02  2:51     ` Leonidas P. Papadakos
@ 2019-03-02 10:54       ` Heiko Stuebner
  0 siblings, 0 replies; 4+ messages in thread
From: Heiko Stuebner @ 2019-03-02 10:54 UTC (permalink / raw)
  To: Leonidas P. Papadakos
  Cc: linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Rob Herring

Am Samstag, 2. März 2019, 03:51:07 CET schrieb Leonidas P. Papadakos:
> On Sat, Mar 02, 2019 at 01:31:11AM +0100, Heiko Stuebner wrote:
> > Am Freitag, 1. März 2019, 23:58:13 CET schrieb Leonidas P. Papadakos:
> > > Assign the LED's to heartbeat and sdcard io, as in other RK boards.
> > > 
> > > https://github.com/armbian/build/commit/f1affad5c7be62d6e93832af3556c7609edd0858
> > > 
> > > Signed-off-by: Leonidas P. Papadakos <papadakospan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> > > ---
> > >  .../arm64/boot/dts/rockchip/rk3328-roc-cc.dts | 27 +++++++++++++++++++
> > >  1 file changed, 27 insertions(+)
> > > 
> > > diff --git a/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts b/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
> > > index 33c44e857..a881d4c8d 100644
> > > --- a/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
> > > +++ b/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
> > > @@ -81,6 +81,33 @@
> > >  		regulator-always-on;
> > >  		regulator-boot-on;
> > >  	};
> > > +
> > > +	leds {
> > > +		compatible = "gpio-leds";
> > > +		power {
> > > +			label = "firefly:blue:power";
> > > +			linux,default-trigger = "heartbeat";
> > > +			gpios = <&rk805 1 GPIO_ACTIVE_LOW>;
> > > +			default-state = "on";
> > > +			mode = <0x23>;
> > > +		};
> > > +
> > > +		user {
> > > +			label = "firefly:yellow:user";
> > > +			linux,default-trigger = "mmc1";
> > > +			gpios = <&rk805 0 GPIO_ACTIVE_LOW>;
> > > +			default-state = "off";
> > > +			mode = <0x05>;
> > > +		};
> > > +
> > > +		ir {
> > > +			status = "disabled";
> > 
> > please explain that. Is this an IR transmitting LED? And why are you
> > adding a disabled property?
> > 
> > Similar to how the kernel should not contain commented out code
> > having a disabled node in the actual board file is strange.
> > 
> > 
> > Heiko
> > 
> 
> It probably is. See the image of the board on this site:
> https://shop.t-firefly.com/goods.php?id=65
> 
> Should I make a PATCH v2 without it?

yes, that would be nice, as we don't want to add dead nodes
to actual board devicetrees.

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

end of thread, other threads:[~2019-03-02 10:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-01 22:58 [PATCH] arm64: dts: rockchip: give some life to the rk3328-roc-cc leds Leonidas P. Papadakos
     [not found] ` <20190301225813.19834-1-papadakospan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2019-03-02  0:31   ` Heiko Stuebner
2019-03-02  2:51     ` Leonidas P. Papadakos
2019-03-02 10:54       ` Heiko Stuebner

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.