Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1574287 > unrolled thread

Re: [v5,3/7] rtc: ac100: Add RTC driver for X-Powers AC100

Started byRask Ingemann Lambertsen <rask@formelder.dk>
First post2017-02-05 22:50 +0100
Last post2017-02-06 19:20 +0100
Articles 3 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [v5,3/7] rtc: ac100: Add RTC driver for X-Powers AC100 Rask Ingemann Lambertsen <rask@formelder.dk> - 2017-02-05 22:50 +0100
    Re: [v5,3/7] rtc: ac100: Add RTC driver for X-Powers AC100 Chen-Yu Tsai <wens@csie.org> - 2017-02-06 04:30 +0100
      Re: [v5,3/7] rtc: ac100: Add RTC driver for X-Powers AC100 Rask Ingemann Lambertsen <rask@formelder.dk> - 2017-02-06 19:20 +0100

#1574287 — Re: [v5,3/7] rtc: ac100: Add RTC driver for X-Powers AC100

FromRask Ingemann Lambertsen <rask@formelder.dk>
Date2017-02-05 22:50 +0100
SubjectRe: [v5,3/7] rtc: ac100: Add RTC driver for X-Powers AC100
Message-ID<t7CR3-4mZ-17@gated-at.bofh.it>
On Fri, Jul 08, 2016 at 10:33:38PM +0800, Chen-Yu Tsai wrote:
> X-Powers AC100 is a codec / RTC combo chip. This driver supports
> the RTC sub-device.

Don't we also want to build this driver by default, at least for
sunxi_defconfig, but possibly for multi_v7_defconfig as well?

-------------------- >8 --------------------
Subject: [PATCH] ARM: sunxi_defconfig: Enable AC100 RTC driver

Enable the AC100 RTC driver so boards with it can keep track of time.

Signed-off-by: Rask Ingemann Lambertsen <rask@formelder.dk>
---
 arch/arm/configs/sunxi_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig
index da92c25..5cd5dd70 100644
--- a/arch/arm/configs/sunxi_defconfig
+++ b/arch/arm/configs/sunxi_defconfig
@@ -87,6 +87,7 @@ CONFIG_THERMAL_OF=y
 CONFIG_CPU_THERMAL=y
 CONFIG_WATCHDOG=y
 CONFIG_SUNXI_WATCHDOG=y
+CONFIG_MFD_AC100=y
 CONFIG_MFD_AXP20X=y
 CONFIG_MFD_AXP20X_I2C=y
 CONFIG_MFD_AXP20X_RSB=y
@@ -129,6 +130,7 @@ CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
 CONFIG_RTC_CLASS=y
 # CONFIG_RTC_INTF_SYSFS is not set
 # CONFIG_RTC_INTF_PROC is not set
+CONFIG_RTC_DRV_AC100=y
 CONFIG_RTC_DRV_SUN6I=y
 CONFIG_RTC_DRV_SUNXI=y
 CONFIG_DMADEVICES=y
-- 
2.10.2

-- 
Rask Ingemann Lambertsen

[toc] | [next] | [standalone]


#1574341

FromChen-Yu Tsai <wens@csie.org>
Date2017-02-06 04:30 +0100
Message-ID<t7Ia5-7Oq-3@gated-at.bofh.it>
In reply to#1574287
On Mon, Feb 6, 2017 at 5:33 AM, Rask Ingemann Lambertsen
<rask@formelder.dk> wrote:
> On Fri, Jul 08, 2016 at 10:33:38PM +0800, Chen-Yu Tsai wrote:
>> X-Powers AC100 is a codec / RTC combo chip. This driver supports
>> the RTC sub-device.
>
> Don't we also want to build this driver by default, at least for
> sunxi_defconfig, but possibly for multi_v7_defconfig as well?

True.

> -------------------- >8 --------------------
> Subject: [PATCH] ARM: sunxi_defconfig: Enable AC100 RTC driver
>
> Enable the AC100 RTC driver so boards with it can keep track of time.
>
> Signed-off-by: Rask Ingemann Lambertsen <rask@formelder.dk>

Acked-by: Chen-Yu Tsai <wens@csie.org>

I suggest you send this in a new thread. Patches in replies tend
to get missed.

> ---
>  arch/arm/configs/sunxi_defconfig | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig
> index da92c25..5cd5dd70 100644
> --- a/arch/arm/configs/sunxi_defconfig
> +++ b/arch/arm/configs/sunxi_defconfig
> @@ -87,6 +87,7 @@ CONFIG_THERMAL_OF=y
>  CONFIG_CPU_THERMAL=y
>  CONFIG_WATCHDOG=y
>  CONFIG_SUNXI_WATCHDOG=y
> +CONFIG_MFD_AC100=y
>  CONFIG_MFD_AXP20X=y
>  CONFIG_MFD_AXP20X_I2C=y
>  CONFIG_MFD_AXP20X_RSB=y
> @@ -129,6 +130,7 @@ CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
>  CONFIG_RTC_CLASS=y
>  # CONFIG_RTC_INTF_SYSFS is not set
>  # CONFIG_RTC_INTF_PROC is not set
> +CONFIG_RTC_DRV_AC100=y
>  CONFIG_RTC_DRV_SUN6I=y
>  CONFIG_RTC_DRV_SUNXI=y
>  CONFIG_DMADEVICES=y
> --
> 2.10.2
>
> --
> Rask Ingemann Lambertsen

[toc] | [prev] | [next] | [standalone]


#1575041

FromRask Ingemann Lambertsen <rask@formelder.dk>
Date2017-02-06 19:20 +0100
Message-ID<t7W3o-6m-9@gated-at.bofh.it>
In reply to#1574341
On Mon, Feb 06, 2017 at 11:29:07AM +0800, Chen-Yu Tsai wrote:
> On Mon, Feb 6, 2017 at 5:33 AM, Rask Ingemann Lambertsen
> <rask@formelder.dk> wrote:
> > -------------------- >8 --------------------
> > Subject: [PATCH] ARM: sunxi_defconfig: Enable AC100 RTC driver
> >
> > Enable the AC100 RTC driver so boards with it can keep track of time.
> >
> > Signed-off-by: Rask Ingemann Lambertsen <rask@formelder.dk>
> 
> Acked-by: Chen-Yu Tsai <wens@csie.org>
> 
> I suggest you send this in a new thread. Patches in replies tend
> to get missed.

I will. Should I Cc: stable on this?

-- 
Rask Ingemann Lambertsen

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web