All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH  0/2] Add BQ32000 RTC support for iWave RZ/G1M board
@ 2017-08-08 13:04 ` Biju Das
  0 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-08 13:04 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Simon Horman, Magnus Damm, Russell King, Chris Paterson,
	devicetree, linux-renesas-soc, linux-arm-kernel, Biju Das

This series aims to add BQ32000 RTC support for iWave RZ/G1M board.

This series has been tested against Linux-next tag 20170727 and renesas-dev branch.
This patch series depends on https://www.spinics.net/lists/arm-kernel/msg599220.html

Biju Das (2):
  ARM: dts: iwg20d-q7: Add RTC support
  ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig

 arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 18 ++++++++++++++++++
 arch/arm/configs/shmobile_defconfig     |  1 +
 2 files changed, 19 insertions(+)

-- 
1.9.1

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

* [PATCH  0/2] Add BQ32000 RTC support for iWave RZ/G1M board
@ 2017-08-08 13:04 ` Biju Das
  0 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-08 13:04 UTC (permalink / raw)
  To: linux-arm-kernel

This series aims to add BQ32000 RTC support for iWave RZ/G1M board.

This series has been tested against Linux-next tag 20170727 and renesas-dev branch.
This patch series depends on https://www.spinics.net/lists/arm-kernel/msg599220.html

Biju Das (2):
  ARM: dts: iwg20d-q7: Add RTC support
  ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig

 arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 18 ++++++++++++++++++
 arch/arm/configs/shmobile_defconfig     |  1 +
 2 files changed, 19 insertions(+)

-- 
1.9.1

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

* [PATCH  1/2] ARM: dts: iwg20d-q7: Add RTC support
  2017-08-08 13:04 ` Biju Das
@ 2017-08-08 13:04   ` Biju Das
  -1 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-08 13:04 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Simon Horman, Magnus Damm, Russell King, Chris Paterson,
	devicetree, linux-renesas-soc, linux-arm-kernel, Biju Das

Define the iWave RainboW-G20D-Qseven board dependent part of the
RTC device node.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
index 081af01..b3a1efa 100644
--- a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
+++ b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
@@ -31,6 +31,11 @@
 		groups = "avb_mdio", "avb_gmii";
 		function = "avb";
 	};
+
+	i2c2_pins: i2c2 {
+		groups = "i2c2";
+		function = "i2c2";
+	};
 };
 
 &scif0 {
@@ -54,3 +59,16 @@
 		micrel,led-mode = <1>;
 	};
 };
+
+&i2c2 {
+	pinctrl-0 = <&i2c2_pins>;
+	pinctrl-names = "default";
+
+	status = "okay";
+	clock-frequency = <400000>;
+
+	rtc@68 {
+		compatible = "bq32000";
+		reg = <0x68>;
+	};
+};
-- 
1.9.1

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

* [PATCH  1/2] ARM: dts: iwg20d-q7: Add RTC support
@ 2017-08-08 13:04   ` Biju Das
  0 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-08 13:04 UTC (permalink / raw)
  To: linux-arm-kernel

Define the iWave RainboW-G20D-Qseven board dependent part of the
RTC device node.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
index 081af01..b3a1efa 100644
--- a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
+++ b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
@@ -31,6 +31,11 @@
 		groups = "avb_mdio", "avb_gmii";
 		function = "avb";
 	};
+
+	i2c2_pins: i2c2 {
+		groups = "i2c2";
+		function = "i2c2";
+	};
 };
 
 &scif0 {
@@ -54,3 +59,16 @@
 		micrel,led-mode = <1>;
 	};
 };
+
+&i2c2 {
+	pinctrl-0 = <&i2c2_pins>;
+	pinctrl-names = "default";
+
+	status = "okay";
+	clock-frequency = <400000>;
+
+	rtc at 68 {
+		compatible = "bq32000";
+		reg = <0x68>;
+	};
+};
-- 
1.9.1

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

* [PATCH  2/2] ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig
  2017-08-08 13:04 ` Biju Das
@ 2017-08-08 13:04   ` Biju Das
  -1 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-08 13:04 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Simon Horman, Magnus Damm, Russell King, Chris Paterson,
	devicetree, linux-renesas-soc, linux-arm-kernel, Biju Das

The iWave RZ/G1M Q7 SOM supports RTC (TI BQ32000).
To increase hardware support enable the driver in the
shmobile_defconfig multiplatform configuration.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 arch/arm/configs/shmobile_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index 18886c5..7b4fc01 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -193,6 +193,7 @@ CONFIG_LEDS_CLASS=y
 CONFIG_LEDS_GPIO=y
 CONFIG_RTC_CLASS=y
 CONFIG_RTC_DRV_RS5C372=y
+CONFIG_RTC_DRV_BQ32K=y
 CONFIG_RTC_DRV_S35390A=y
 CONFIG_RTC_DRV_RX8581=y
 CONFIG_RTC_DRV_DA9063=y
-- 
1.9.1

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

* [PATCH  2/2] ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig
@ 2017-08-08 13:04   ` Biju Das
  0 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-08 13:04 UTC (permalink / raw)
  To: linux-arm-kernel

The iWave RZ/G1M Q7 SOM supports RTC (TI BQ32000).
To increase hardware support enable the driver in the
shmobile_defconfig multiplatform configuration.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 arch/arm/configs/shmobile_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index 18886c5..7b4fc01 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -193,6 +193,7 @@ CONFIG_LEDS_CLASS=y
 CONFIG_LEDS_GPIO=y
 CONFIG_RTC_CLASS=y
 CONFIG_RTC_DRV_RS5C372=y
+CONFIG_RTC_DRV_BQ32K=y
 CONFIG_RTC_DRV_S35390A=y
 CONFIG_RTC_DRV_RX8581=y
 CONFIG_RTC_DRV_DA9063=y
-- 
1.9.1

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

* Re: [PATCH  1/2] ARM: dts: iwg20d-q7: Add RTC support
  2017-08-08 13:04   ` Biju Das
@ 2017-08-09  9:02     ` Simon Horman
  -1 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-09  9:02 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Magnus Damm, Russell King,
	Chris Paterson, devicetree, linux-renesas-soc, linux-arm-kernel

On Tue, Aug 08, 2017 at 02:04:24PM +0100, Biju Das wrote:
> Define the iWave RainboW-G20D-Qseven board dependent part of the
> RTC device node.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> ---
>  arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)

This has a compile-time dependency on
"[PATCH  2/2] ARM: dts: r8a7743: Add I2C DT support"
for the i2c2 node, right?

> 
> diff --git a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
> index 081af01..b3a1efa 100644
> --- a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
> +++ b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
> @@ -31,6 +31,11 @@
>  		groups = "avb_mdio", "avb_gmii";
>  		function = "avb";
>  	};
> +
> +	i2c2_pins: i2c2 {
> +		groups = "i2c2";
> +		function = "i2c2";
> +	};
>  };
>  
>  &scif0 {
> @@ -54,3 +59,16 @@
>  		micrel,led-mode = <1>;
>  	};
>  };
> +
> +&i2c2 {
> +	pinctrl-0 = <&i2c2_pins>;
> +	pinctrl-names = "default";
> +
> +	status = "okay";
> +	clock-frequency = <400000>;
> +
> +	rtc@68 {
> +		compatible = "bq32000";
> +		reg = <0x68>;
> +	};
> +};
> -- 
> 1.9.1
> 

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

* [PATCH  1/2] ARM: dts: iwg20d-q7: Add RTC support
@ 2017-08-09  9:02     ` Simon Horman
  0 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-09  9:02 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Aug 08, 2017 at 02:04:24PM +0100, Biju Das wrote:
> Define the iWave RainboW-G20D-Qseven board dependent part of the
> RTC device node.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> ---
>  arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)

This has a compile-time dependency on
"[PATCH  2/2] ARM: dts: r8a7743: Add I2C DT support"
for the i2c2 node, right?

> 
> diff --git a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
> index 081af01..b3a1efa 100644
> --- a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
> +++ b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
> @@ -31,6 +31,11 @@
>  		groups = "avb_mdio", "avb_gmii";
>  		function = "avb";
>  	};
> +
> +	i2c2_pins: i2c2 {
> +		groups = "i2c2";
> +		function = "i2c2";
> +	};
>  };
>  
>  &scif0 {
> @@ -54,3 +59,16 @@
>  		micrel,led-mode = <1>;
>  	};
>  };
> +
> +&i2c2 {
> +	pinctrl-0 = <&i2c2_pins>;
> +	pinctrl-names = "default";
> +
> +	status = "okay";
> +	clock-frequency = <400000>;
> +
> +	rtc at 68 {
> +		compatible = "bq32000";
> +		reg = <0x68>;
> +	};
> +};
> -- 
> 1.9.1
> 

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

* Re: [PATCH  2/2] ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig
  2017-08-08 13:04   ` Biju Das
  (?)
@ 2017-08-09  9:04       ` Simon Horman
  -1 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-09  9:04 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Magnus Damm, Russell King,
	Chris Paterson, devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Tue, Aug 08, 2017 at 02:04:25PM +0100, Biju Das wrote:
> The iWave RZ/G1M Q7 SOM supports RTC (TI BQ32000).
> To increase hardware support enable the driver in the
> shmobile_defconfig multiplatform configuration.
> 
> Signed-off-by: Biju Das <biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>

Thanks, applied for v4.14.

> ---
>  arch/arm/configs/shmobile_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
> index 18886c5..7b4fc01 100644
> --- a/arch/arm/configs/shmobile_defconfig
> +++ b/arch/arm/configs/shmobile_defconfig
> @@ -193,6 +193,7 @@ CONFIG_LEDS_CLASS=y
>  CONFIG_LEDS_GPIO=y
>  CONFIG_RTC_CLASS=y
>  CONFIG_RTC_DRV_RS5C372=y
> +CONFIG_RTC_DRV_BQ32K=y
>  CONFIG_RTC_DRV_S35390A=y
>  CONFIG_RTC_DRV_RX8581=y
>  CONFIG_RTC_DRV_DA9063=y
> -- 
> 1.9.1
> 
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH  2/2] ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig
@ 2017-08-09  9:04       ` Simon Horman
  0 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-09  9:04 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Magnus Damm, Russell King,
	Chris Paterson, devicetree, linux-renesas-soc, linux-arm-kernel

On Tue, Aug 08, 2017 at 02:04:25PM +0100, Biju Das wrote:
> The iWave RZ/G1M Q7 SOM supports RTC (TI BQ32000).
> To increase hardware support enable the driver in the
> shmobile_defconfig multiplatform configuration.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>

Thanks, applied for v4.14.

> ---
>  arch/arm/configs/shmobile_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
> index 18886c5..7b4fc01 100644
> --- a/arch/arm/configs/shmobile_defconfig
> +++ b/arch/arm/configs/shmobile_defconfig
> @@ -193,6 +193,7 @@ CONFIG_LEDS_CLASS=y
>  CONFIG_LEDS_GPIO=y
>  CONFIG_RTC_CLASS=y
>  CONFIG_RTC_DRV_RS5C372=y
> +CONFIG_RTC_DRV_BQ32K=y
>  CONFIG_RTC_DRV_S35390A=y
>  CONFIG_RTC_DRV_RX8581=y
>  CONFIG_RTC_DRV_DA9063=y
> -- 
> 1.9.1
> 

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

* [PATCH  2/2] ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig
@ 2017-08-09  9:04       ` Simon Horman
  0 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-09  9:04 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Aug 08, 2017 at 02:04:25PM +0100, Biju Das wrote:
> The iWave RZ/G1M Q7 SOM supports RTC (TI BQ32000).
> To increase hardware support enable the driver in the
> shmobile_defconfig multiplatform configuration.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>

Thanks, applied for v4.14.

> ---
>  arch/arm/configs/shmobile_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
> index 18886c5..7b4fc01 100644
> --- a/arch/arm/configs/shmobile_defconfig
> +++ b/arch/arm/configs/shmobile_defconfig
> @@ -193,6 +193,7 @@ CONFIG_LEDS_CLASS=y
>  CONFIG_LEDS_GPIO=y
>  CONFIG_RTC_CLASS=y
>  CONFIG_RTC_DRV_RS5C372=y
> +CONFIG_RTC_DRV_BQ32K=y
>  CONFIG_RTC_DRV_S35390A=y
>  CONFIG_RTC_DRV_RX8581=y
>  CONFIG_RTC_DRV_DA9063=y
> -- 
> 1.9.1
> 

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

* Re: [PATCH  1/2] ARM: dts: iwg20d-q7: Add RTC support
  2017-08-09  9:02     ` Simon Horman
@ 2017-08-14  5:38       ` Simon Horman
  -1 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-14  5:38 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Magnus Damm, Russell King,
	Chris Paterson, devicetree, linux-renesas-soc, linux-arm-kernel

On Wed, Aug 09, 2017 at 11:02:30AM +0200, Simon Horman wrote:
> On Tue, Aug 08, 2017 at 02:04:24PM +0100, Biju Das wrote:
> > Define the iWave RainboW-G20D-Qseven board dependent part of the
> > RTC device node.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > ---
> >  arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 18 ++++++++++++++++++
> >  1 file changed, 18 insertions(+)
> 
> This has a compile-time dependency on
> "[PATCH  2/2] ARM: dts: r8a7743: Add I2C DT support"
> for the i2c2 node, right?

As I have now applied the above dependency I have
also applied this patch for v4.14.

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

* [PATCH  1/2] ARM: dts: iwg20d-q7: Add RTC support
@ 2017-08-14  5:38       ` Simon Horman
  0 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-14  5:38 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Aug 09, 2017 at 11:02:30AM +0200, Simon Horman wrote:
> On Tue, Aug 08, 2017 at 02:04:24PM +0100, Biju Das wrote:
> > Define the iWave RainboW-G20D-Qseven board dependent part of the
> > RTC device node.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > ---
> >  arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 18 ++++++++++++++++++
> >  1 file changed, 18 insertions(+)
> 
> This has a compile-time dependency on
> "[PATCH  2/2] ARM: dts: r8a7743: Add I2C DT support"
> for the i2c2 node, right?

As I have now applied the above dependency I have
also applied this patch for v4.14.

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

* Re: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
  2017-08-08 13:04   ` Biju Das
@ 2017-08-14 14:11     ` Geert Uytterhoeven
  -1 siblings, 0 replies; 25+ messages in thread
From: Geert Uytterhoeven @ 2017-08-14 14:11 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Simon Horman, Magnus Damm,
	Russell King, Chris Paterson, devicetree, Linux-Renesas,
	linux-arm-kernel

On Tue, Aug 8, 2017 at 3:04 PM, Biju Das <biju.das@bp.renesas.com> wrote:
> Define the iWave RainboW-G20D-Qseven board dependent part of the
> RTC device node.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>

> @@ -54,3 +59,16 @@
>                 micrel,led-mode = <1>;
>         };
>  };
> +
> +&i2c2 {
> +       pinctrl-0 = <&i2c2_pins>;
> +       pinctrl-names = "default";
> +
> +       status = "okay";
> +       clock-frequency = <400000>;
> +
> +       rtc@68 {
> +               compatible = "bq32000";

"ti,bq32000"

> +               reg = <0x68>;
> +       };
> +};

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
@ 2017-08-14 14:11     ` Geert Uytterhoeven
  0 siblings, 0 replies; 25+ messages in thread
From: Geert Uytterhoeven @ 2017-08-14 14:11 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Aug 8, 2017 at 3:04 PM, Biju Das <biju.das@bp.renesas.com> wrote:
> Define the iWave RainboW-G20D-Qseven board dependent part of the
> RTC device node.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>

> @@ -54,3 +59,16 @@
>                 micrel,led-mode = <1>;
>         };
>  };
> +
> +&i2c2 {
> +       pinctrl-0 = <&i2c2_pins>;
> +       pinctrl-names = "default";
> +
> +       status = "okay";
> +       clock-frequency = <400000>;
> +
> +       rtc at 68 {
> +               compatible = "bq32000";

"ti,bq32000"

> +               reg = <0x68>;
> +       };
> +};

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert at linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* RE: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
  2017-08-14 14:11     ` Geert Uytterhoeven
  (?)
@ 2017-08-14 14:26         ` Biju Das
  -1 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-14 14:26 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Rob Herring, Mark Rutland, Simon Horman, Magnus Damm,
	Russell King, Chris Paterson, devicetree-u79uwXL29TY76Z2rM5mHXA,
	Linux-Renesas, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r



> -----Original Message-----
> From: geert.uytterhoeven@gmail.com [mailto:geert.uytterhoeven@gmail.com]
> On Behalf Of Geert Uytterhoeven
> Sent: 14 August 2017 15:12
> To: Biju Das <biju.das@bp.renesas.com>
> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland
> <mark.rutland@arm.com>; Simon Horman <horms@verge.net.au>; Magnus
> Damm <magnus.damm@gmail.com>; Russell King <linux@armlinux.org.uk>;
> Chris Paterson <Chris.Paterson2@renesas.com>; devicetree@vger.kernel.org;
> Linux-Renesas <linux-renesas-soc@vger.kernel.org>; linux-arm-
> kernel@lists.infradead.org
> Subject: Re: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
>
> On Tue, Aug 8, 2017 at 3:04 PM, Biju Das <biju.das@bp.renesas.com> wrote:
> > Define the iWave RainboW-G20D-Qseven board dependent part of the RTC
> > device node.
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
>
> > @@ -54,3 +59,16 @@
> >                 micrel,led-mode = <1>;
> >         };
> >  };
> > +
> > +&i2c2 {
> > +       pinctrl-0 = <&i2c2_pins>;
> > +       pinctrl-names = "default";
> > +
> > +       status = "okay";
> > +       clock-frequency = <400000>;
> > +
> > +       rtc@68 {
> > +               compatible = "bq32000";
>
> "ti,bq32000"

Thanks. I will change this.

> > +               reg = <0x68>;
> > +       };
> > +};
>
> Gr{oetje,eeting}s,
>
>                         Geert
>
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-
> m68k.org
>
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
@ 2017-08-14 14:26         ` Biju Das
  0 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-14 14:26 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Rob Herring, Mark Rutland, Simon Horman, Magnus Damm,
	Russell King, Chris Paterson, devicetree, Linux-Renesas,
	linux-arm-kernel



> -----Original Message-----
> From: geert.uytterhoeven@gmail.com [mailto:geert.uytterhoeven@gmail.com]
> On Behalf Of Geert Uytterhoeven
> Sent: 14 August 2017 15:12
> To: Biju Das <biju.das@bp.renesas.com>
> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland
> <mark.rutland@arm.com>; Simon Horman <horms@verge.net.au>; Magnus
> Damm <magnus.damm@gmail.com>; Russell King <linux@armlinux.org.uk>;
> Chris Paterson <Chris.Paterson2@renesas.com>; devicetree@vger.kernel.org;
> Linux-Renesas <linux-renesas-soc@vger.kernel.org>; linux-arm-
> kernel@lists.infradead.org
> Subject: Re: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
>
> On Tue, Aug 8, 2017 at 3:04 PM, Biju Das <biju.das@bp.renesas.com> wrote:
> > Define the iWave RainboW-G20D-Qseven board dependent part of the RTC
> > device node.
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
>
> > @@ -54,3 +59,16 @@
> >                 micrel,led-mode = <1>;
> >         };
> >  };
> > +
> > +&i2c2 {
> > +       pinctrl-0 = <&i2c2_pins>;
> > +       pinctrl-names = "default";
> > +
> > +       status = "okay";
> > +       clock-frequency = <400000>;
> > +
> > +       rtc@68 {
> > +               compatible = "bq32000";
>
> "ti,bq32000"

Thanks. I will change this.

> > +               reg = <0x68>;
> > +       };
> > +};
>
> Gr{oetje,eeting}s,
>
>                         Geert
>
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-
> m68k.org
>
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
@ 2017-08-14 14:26         ` Biju Das
  0 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-14 14:26 UTC (permalink / raw)
  To: linux-arm-kernel



> -----Original Message-----
> From: geert.uytterhoeven at gmail.com [mailto:geert.uytterhoeven at gmail.com]
> On Behalf Of Geert Uytterhoeven
> Sent: 14 August 2017 15:12
> To: Biju Das <biju.das@bp.renesas.com>
> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland
> <mark.rutland@arm.com>; Simon Horman <horms@verge.net.au>; Magnus
> Damm <magnus.damm@gmail.com>; Russell King <linux@armlinux.org.uk>;
> Chris Paterson <Chris.Paterson2@renesas.com>; devicetree at vger.kernel.org;
> Linux-Renesas <linux-renesas-soc@vger.kernel.org>; linux-arm-
> kernel at lists.infradead.org
> Subject: Re: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
>
> On Tue, Aug 8, 2017 at 3:04 PM, Biju Das <biju.das@bp.renesas.com> wrote:
> > Define the iWave RainboW-G20D-Qseven board dependent part of the RTC
> > device node.
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
>
> > @@ -54,3 +59,16 @@
> >                 micrel,led-mode = <1>;
> >         };
> >  };
> > +
> > +&i2c2 {
> > +       pinctrl-0 = <&i2c2_pins>;
> > +       pinctrl-names = "default";
> > +
> > +       status = "okay";
> > +       clock-frequency = <400000>;
> > +
> > +       rtc at 68 {
> > +               compatible = "bq32000";
>
> "ti,bq32000"

Thanks. I will change this.

> > +               reg = <0x68>;
> > +       };
> > +};
>
> Gr{oetje,eeting}s,
>
>                         Geert
>
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert at linux-
> m68k.org
>
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* Re: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
  2017-08-14 14:26         ` Biju Das
  (?)
@ 2017-08-15 15:45             ` Simon Horman
  -1 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-15 15:45 UTC (permalink / raw)
  To: Biju Das
  Cc: Geert Uytterhoeven, Rob Herring, Mark Rutland, Magnus Damm,
	Russell King, Chris Paterson, devicetree-u79uwXL29TY76Z2rM5mHXA,
	Linux-Renesas, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Mon, Aug 14, 2017 at 02:26:08PM +0000, Biju Das wrote:
> 
> 
> > -----Original Message-----
> > From: geert.uytterhoeven-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org [mailto:geert.uytterhoeven-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org]
> > On Behalf Of Geert Uytterhoeven
> > Sent: 14 August 2017 15:12
> > To: Biju Das <biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
> > Cc: Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>; Mark Rutland
> > <mark.rutland-5wv7dgnIgG8@public.gmane.org>; Simon Horman <horms-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org>; Magnus
> > Damm <magnus.damm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>; Russell King <linux-I+IVW8TIWO2tmTQ+vhA3Yw@public.gmane.org>;
> > Chris Paterson <Chris.Paterson2-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>; devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org;
> > Linux-Renesas <linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>; linux-arm-
> > kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
> > Subject: Re: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
> >
> > On Tue, Aug 8, 2017 at 3:04 PM, Biju Das <biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org> wrote:
> > > Define the iWave RainboW-G20D-Qseven board dependent part of the RTC
> > > device node.
> > >
> > > Signed-off-by: Biju Das <biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
> >
> > > @@ -54,3 +59,16 @@
> > >                 micrel,led-mode = <1>;
> > >         };
> > >  };
> > > +
> > > +&i2c2 {
> > > +       pinctrl-0 = <&i2c2_pins>;
> > > +       pinctrl-names = "default";
> > > +
> > > +       status = "okay";
> > > +       clock-frequency = <400000>;
> > > +
> > > +       rtc@68 {
> > > +               compatible = "bq32000";
> >
> > "ti,bq32000"
> 
> Thanks. I will change this.

Thanks, I have dropped this patch for now.
Please submit a v2.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
@ 2017-08-15 15:45             ` Simon Horman
  0 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-15 15:45 UTC (permalink / raw)
  To: Biju Das
  Cc: Geert Uytterhoeven, Rob Herring, Mark Rutland, Magnus Damm,
	Russell King, Chris Paterson, devicetree, Linux-Renesas,
	linux-arm-kernel

On Mon, Aug 14, 2017 at 02:26:08PM +0000, Biju Das wrote:
> 
> 
> > -----Original Message-----
> > From: geert.uytterhoeven@gmail.com [mailto:geert.uytterhoeven@gmail.com]
> > On Behalf Of Geert Uytterhoeven
> > Sent: 14 August 2017 15:12
> > To: Biju Das <biju.das@bp.renesas.com>
> > Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland
> > <mark.rutland@arm.com>; Simon Horman <horms@verge.net.au>; Magnus
> > Damm <magnus.damm@gmail.com>; Russell King <linux@armlinux.org.uk>;
> > Chris Paterson <Chris.Paterson2@renesas.com>; devicetree@vger.kernel.org;
> > Linux-Renesas <linux-renesas-soc@vger.kernel.org>; linux-arm-
> > kernel@lists.infradead.org
> > Subject: Re: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
> >
> > On Tue, Aug 8, 2017 at 3:04 PM, Biju Das <biju.das@bp.renesas.com> wrote:
> > > Define the iWave RainboW-G20D-Qseven board dependent part of the RTC
> > > device node.
> > >
> > > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> >
> > > @@ -54,3 +59,16 @@
> > >                 micrel,led-mode = <1>;
> > >         };
> > >  };
> > > +
> > > +&i2c2 {
> > > +       pinctrl-0 = <&i2c2_pins>;
> > > +       pinctrl-names = "default";
> > > +
> > > +       status = "okay";
> > > +       clock-frequency = <400000>;
> > > +
> > > +       rtc@68 {
> > > +               compatible = "bq32000";
> >
> > "ti,bq32000"
> 
> Thanks. I will change this.

Thanks, I have dropped this patch for now.
Please submit a v2.

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

* [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
@ 2017-08-15 15:45             ` Simon Horman
  0 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-15 15:45 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Aug 14, 2017 at 02:26:08PM +0000, Biju Das wrote:
> 
> 
> > -----Original Message-----
> > From: geert.uytterhoeven at gmail.com [mailto:geert.uytterhoeven at gmail.com]
> > On Behalf Of Geert Uytterhoeven
> > Sent: 14 August 2017 15:12
> > To: Biju Das <biju.das@bp.renesas.com>
> > Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland
> > <mark.rutland@arm.com>; Simon Horman <horms@verge.net.au>; Magnus
> > Damm <magnus.damm@gmail.com>; Russell King <linux@armlinux.org.uk>;
> > Chris Paterson <Chris.Paterson2@renesas.com>; devicetree at vger.kernel.org;
> > Linux-Renesas <linux-renesas-soc@vger.kernel.org>; linux-arm-
> > kernel at lists.infradead.org
> > Subject: Re: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support
> >
> > On Tue, Aug 8, 2017 at 3:04 PM, Biju Das <biju.das@bp.renesas.com> wrote:
> > > Define the iWave RainboW-G20D-Qseven board dependent part of the RTC
> > > device node.
> > >
> > > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> >
> > > @@ -54,3 +59,16 @@
> > >                 micrel,led-mode = <1>;
> > >         };
> > >  };
> > > +
> > > +&i2c2 {
> > > +       pinctrl-0 = <&i2c2_pins>;
> > > +       pinctrl-names = "default";
> > > +
> > > +       status = "okay";
> > > +       clock-frequency = <400000>;
> > > +
> > > +       rtc at 68 {
> > > +               compatible = "bq32000";
> >
> > "ti,bq32000"
> 
> Thanks. I will change this.

Thanks, I have dropped this patch for now.
Please submit a v2.

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

* Re: [PATCH  2/2] ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig
  2017-08-09  9:04       ` Simon Horman
@ 2017-08-17  9:01         ` Simon Horman
  -1 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-17  9:01 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Magnus Damm, Russell King,
	Chris Paterson, devicetree, linux-renesas-soc, linux-arm-kernel

On Wed, Aug 09, 2017 at 11:04:21AM +0200, Simon Horman wrote:
> On Tue, Aug 08, 2017 at 02:04:25PM +0100, Biju Das wrote:
> > The iWave RZ/G1M Q7 SOM supports RTC (TI BQ32000).
> > To increase hardware support enable the driver in the
> > shmobile_defconfig multiplatform configuration.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> 
> Thanks, applied for v4.14.

Please consider posting a similar patch for multi_v7_defconfig.

> > ---
> >  arch/arm/configs/shmobile_defconfig | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
> > index 18886c5..7b4fc01 100644
> > --- a/arch/arm/configs/shmobile_defconfig
> > +++ b/arch/arm/configs/shmobile_defconfig
> > @@ -193,6 +193,7 @@ CONFIG_LEDS_CLASS=y
> >  CONFIG_LEDS_GPIO=y
> >  CONFIG_RTC_CLASS=y
> >  CONFIG_RTC_DRV_RS5C372=y
> > +CONFIG_RTC_DRV_BQ32K=y
> >  CONFIG_RTC_DRV_S35390A=y
> >  CONFIG_RTC_DRV_RX8581=y
> >  CONFIG_RTC_DRV_DA9063=y
> > -- 
> > 1.9.1
> > 
> 

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

* [PATCH  2/2] ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig
@ 2017-08-17  9:01         ` Simon Horman
  0 siblings, 0 replies; 25+ messages in thread
From: Simon Horman @ 2017-08-17  9:01 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Aug 09, 2017 at 11:04:21AM +0200, Simon Horman wrote:
> On Tue, Aug 08, 2017 at 02:04:25PM +0100, Biju Das wrote:
> > The iWave RZ/G1M Q7 SOM supports RTC (TI BQ32000).
> > To increase hardware support enable the driver in the
> > shmobile_defconfig multiplatform configuration.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> 
> Thanks, applied for v4.14.

Please consider posting a similar patch for multi_v7_defconfig.

> > ---
> >  arch/arm/configs/shmobile_defconfig | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
> > index 18886c5..7b4fc01 100644
> > --- a/arch/arm/configs/shmobile_defconfig
> > +++ b/arch/arm/configs/shmobile_defconfig
> > @@ -193,6 +193,7 @@ CONFIG_LEDS_CLASS=y
> >  CONFIG_LEDS_GPIO=y
> >  CONFIG_RTC_CLASS=y
> >  CONFIG_RTC_DRV_RS5C372=y
> > +CONFIG_RTC_DRV_BQ32K=y
> >  CONFIG_RTC_DRV_S35390A=y
> >  CONFIG_RTC_DRV_RX8581=y
> >  CONFIG_RTC_DRV_DA9063=y
> > -- 
> > 1.9.1
> > 
> 

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

* RE: [PATCH  2/2] ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig
  2017-08-17  9:01         ` Simon Horman
@ 2017-08-17  9:04           ` Biju Das
  -1 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-17  9:04 UTC (permalink / raw)
  To: Simon Horman
  Cc: Rob Herring, Mark Rutland, Magnus Damm, Russell King,
	Chris Paterson, devicetree, linux-renesas-soc, linux-arm-kernel


> -----Original Message-----
> From: Simon Horman [mailto:horms@verge.net.au]
> Sent: 17 August 2017 10:01
> To: Biju Das <biju.das@bp.renesas.com>
> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland
> <mark.rutland@arm.com>; Magnus Damm <magnus.damm@gmail.com>;
> Russell King <linux@armlinux.org.uk>; Chris Paterson
> <Chris.Paterson2@renesas.com>; devicetree@vger.kernel.org; linux-renesas-
> soc@vger.kernel.org; linux-arm-kernel@lists.infradead.org
> Subject: Re: [PATCH 2/2] ARM: shmobile: Enable BQ32000 rtc in
> shmobile_defconfig
>
> On Wed, Aug 09, 2017 at 11:04:21AM +0200, Simon Horman wrote:
> > On Tue, Aug 08, 2017 at 02:04:25PM +0100, Biju Das wrote:
> > > The iWave RZ/G1M Q7 SOM supports RTC (TI BQ32000).
> > > To increase hardware support enable the driver in the
> > > shmobile_defconfig multiplatform configuration.
> > >
> > > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> >
> > Thanks, applied for v4.14.
>
> Please consider posting a similar patch for multi_v7_defconfig.

Thanks , I will do this.


Regards,
Biju



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* [PATCH  2/2] ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig
@ 2017-08-17  9:04           ` Biju Das
  0 siblings, 0 replies; 25+ messages in thread
From: Biju Das @ 2017-08-17  9:04 UTC (permalink / raw)
  To: linux-arm-kernel


> -----Original Message-----
> From: Simon Horman [mailto:horms at verge.net.au]
> Sent: 17 August 2017 10:01
> To: Biju Das <biju.das@bp.renesas.com>
> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland
> <mark.rutland@arm.com>; Magnus Damm <magnus.damm@gmail.com>;
> Russell King <linux@armlinux.org.uk>; Chris Paterson
> <Chris.Paterson2@renesas.com>; devicetree at vger.kernel.org; linux-renesas-
> soc at vger.kernel.org; linux-arm-kernel at lists.infradead.org
> Subject: Re: [PATCH 2/2] ARM: shmobile: Enable BQ32000 rtc in
> shmobile_defconfig
>
> On Wed, Aug 09, 2017 at 11:04:21AM +0200, Simon Horman wrote:
> > On Tue, Aug 08, 2017 at 02:04:25PM +0100, Biju Das wrote:
> > > The iWave RZ/G1M Q7 SOM supports RTC (TI BQ32000).
> > > To increase hardware support enable the driver in the
> > > shmobile_defconfig multiplatform configuration.
> > >
> > > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> >
> > Thanks, applied for v4.14.
>
> Please consider posting a similar patch for multi_v7_defconfig.

Thanks , I will do this.


Regards,
Biju



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

end of thread, other threads:[~2017-08-17  9:04 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-08 13:04 [PATCH 0/2] Add BQ32000 RTC support for iWave RZ/G1M board Biju Das
2017-08-08 13:04 ` Biju Das
2017-08-08 13:04 ` [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support Biju Das
2017-08-08 13:04   ` Biju Das
2017-08-09  9:02   ` Simon Horman
2017-08-09  9:02     ` Simon Horman
2017-08-14  5:38     ` Simon Horman
2017-08-14  5:38       ` Simon Horman
2017-08-14 14:11   ` Geert Uytterhoeven
2017-08-14 14:11     ` Geert Uytterhoeven
     [not found]     ` <CAMuHMdUU5fb6G7Wc9ZzfFhLxcUuZFakPdVGh3q_cfUzxZ1AarA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-08-14 14:26       ` Biju Das
2017-08-14 14:26         ` Biju Das
2017-08-14 14:26         ` Biju Das
     [not found]         ` <KL1PR06MB1702571F2F9B75205A11280AB88C0-k6wCOA2IOKSx7cDWSRonpW0DtJ1/0DrXvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2017-08-15 15:45           ` Simon Horman
2017-08-15 15:45             ` Simon Horman
2017-08-15 15:45             ` Simon Horman
2017-08-08 13:04 ` [PATCH 2/2] ARM: shmobile: Enable BQ32000 rtc in shmobile_defconfig Biju Das
2017-08-08 13:04   ` Biju Das
     [not found]   ` <1502197465-61546-3-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
2017-08-09  9:04     ` Simon Horman
2017-08-09  9:04       ` Simon Horman
2017-08-09  9:04       ` Simon Horman
2017-08-17  9:01       ` Simon Horman
2017-08-17  9:01         ` Simon Horman
2017-08-17  9:04         ` Biju Das
2017-08-17  9:04           ` Biju Das

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.