From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lee Jones Subject: Re: [PATCH V3 1/3] mfd: da9062: Support for the DA9063 RTC in the DA9062 core Date: Thu, 23 Jul 2015 16:27:01 +0100 Message-ID: <20150723152701.GN3436@x1> References: <7abaa10f4089b1adec4970d9c581a9f35992ee02.1437474547.git.stwiss.opensource@diasemi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Received: from mail-wi0-f176.google.com ([209.85.212.176]:32898 "EHLO mail-wi0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753256AbbGWP1G (ORCPT ); Thu, 23 Jul 2015 11:27:06 -0400 Received: by wicmv11 with SMTP id mv11so29040421wic.0 for ; Thu, 23 Jul 2015 08:27:05 -0700 (PDT) Content-Disposition: inline In-Reply-To: <7abaa10f4089b1adec4970d9c581a9f35992ee02.1437474547.git.stwiss.opensource@diasemi.com> Sender: linux-input-owner@vger.kernel.org List-Id: linux-input@vger.kernel.org To: S Twiss Cc: DEVICETREE , LINUXINPUT , LINUXKERNEL , RTCLINUX , Samuel Ortiz , Alessandro Zummo , Alexandre Belloni , David Dajun Chen , Ian Campbell , Kumar Gala , Mark Rutland , Pawel Moll , Rob Herring , Support Opensource On Tue, 21 Jul 2015, S Twiss wrote: > From: S Twiss >=20 > Add MFD core driver support for a RTC component >=20 > - MFD core adds the RTC resources da9062_rtc_resources[] for the RTC > alarm and tick timer IRQ > - An appropriate mfd_cell has been added into da9062_devs[] to suppor= t > a component .name =3D "da9062-rtc" and .of_compatible =3D "dlg,da9= 062-rtc" >=20 > Signed-off-by: Steve Twiss >=20 > --- > Checks performed with linux-next/next-20150708/scripts/checkpatch.pl > da9062-core.c total: 0 errors, 0 warnings, 523 lines che= cked > This patch applies against linux-next and next-20150708=20 >=20 >=20 > drivers/mfd/da9062-core.c | 11 +++++++++++ > 1 file changed, 11 insertions(+) Applied, thanks. > diff --git a/drivers/mfd/da9062-core.c b/drivers/mfd/da9062-core.c > index 4cf0643..b43cd24 100644 > --- a/drivers/mfd/da9062-core.c > +++ b/drivers/mfd/da9062-core.c > @@ -118,6 +118,11 @@ static struct resource da9062_wdt_resources[] =3D= { > DEFINE_RES_NAMED(DA9062_IRQ_WDG_WARN, 1, "WD_WARN", IORESOURCE_IRQ)= , > }; > =20 > +static struct resource da9062_rtc_resources[] =3D { > + DEFINE_RES_NAMED(DA9062_IRQ_ALARM, 1, "ALARM", IORESOURCE_IRQ), > + DEFINE_RES_NAMED(DA9062_IRQ_TICK, 1, "TICK", IORESOURCE_IRQ), > +}; > + > static const struct mfd_cell da9062_devs[] =3D { > { > .name =3D "da9062-core", > @@ -141,6 +146,12 @@ static const struct mfd_cell da9062_devs[] =3D { > .resources =3D da9062_thermal_resources, > .of_compatible =3D "dlg,da9062-thermal", > }, > + { > + .name =3D "da9062-rtc", > + .num_resources =3D ARRAY_SIZE(da9062_rtc_resources), > + .resources =3D da9062_rtc_resources, > + .of_compatible =3D "dlg,da9062-rtc", > + }, > }; > =20 > static int da9062_clear_fault_log(struct da9062 *chip) --=20 Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org =E2=94=82 Open source software for ARM SoCs =46ollow Linaro: Facebook | Twitter | Blog -- To unsubscribe from this list: send the line "unsubscribe linux-input" = in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com. [209.85.212.172]) by gmr-mx.google.com with ESMTPS id q10si289681wiz.0.2015.07.23.08.27.04 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 23 Jul 2015 08:27:04 -0700 (PDT) Received: by mail-wi0-f172.google.com with SMTP id gb10so148218288wic.1 for ; Thu, 23 Jul 2015 08:27:04 -0700 (PDT) Date: Thu, 23 Jul 2015 16:27:01 +0100 From: Lee Jones To: S Twiss Cc: DEVICETREE , LINUXINPUT , LINUXKERNEL , RTCLINUX , Samuel Ortiz , Alessandro Zummo , Alexandre Belloni , David Dajun Chen , Ian Campbell , Kumar Gala , Mark Rutland , Pawel Moll , Rob Herring , Support Opensource Subject: [rtc-linux] Re: [PATCH V3 1/3] mfd: da9062: Support for the DA9063 RTC in the DA9062 core Message-ID: <20150723152701.GN3436@x1> References: <7abaa10f4089b1adec4970d9c581a9f35992ee02.1437474547.git.stwiss.opensource@diasemi.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 In-Reply-To: <7abaa10f4089b1adec4970d9c581a9f35992ee02.1437474547.git.stwiss.opensource@diasemi.com> Reply-To: rtc-linux@googlegroups.com List-ID: List-Post: , List-Help: , List-Archive: , List-Unsubscribe: , On Tue, 21 Jul 2015, S Twiss wrote: > From: S Twiss >=20 > Add MFD core driver support for a RTC component >=20 > - MFD core adds the RTC resources da9062_rtc_resources[] for the RTC > alarm and tick timer IRQ > - An appropriate mfd_cell has been added into da9062_devs[] to support > a component .name =3D "da9062-rtc" and .of_compatible =3D "dlg,da9062-= rtc" >=20 > Signed-off-by: Steve Twiss >=20 > --- > Checks performed with linux-next/next-20150708/scripts/checkpatch.pl > da9062-core.c total: 0 errors, 0 warnings, 523 lines checked > This patch applies against linux-next and next-20150708=20 >=20 >=20 > drivers/mfd/da9062-core.c | 11 +++++++++++ > 1 file changed, 11 insertions(+) Applied, thanks. > diff --git a/drivers/mfd/da9062-core.c b/drivers/mfd/da9062-core.c > index 4cf0643..b43cd24 100644 > --- a/drivers/mfd/da9062-core.c > +++ b/drivers/mfd/da9062-core.c > @@ -118,6 +118,11 @@ static struct resource da9062_wdt_resources[] =3D { > DEFINE_RES_NAMED(DA9062_IRQ_WDG_WARN, 1, "WD_WARN", IORESOURCE_IRQ), > }; > =20 > +static struct resource da9062_rtc_resources[] =3D { > + DEFINE_RES_NAMED(DA9062_IRQ_ALARM, 1, "ALARM", IORESOURCE_IRQ), > + DEFINE_RES_NAMED(DA9062_IRQ_TICK, 1, "TICK", IORESOURCE_IRQ), > +}; > + > static const struct mfd_cell da9062_devs[] =3D { > { > .name =3D "da9062-core", > @@ -141,6 +146,12 @@ static const struct mfd_cell da9062_devs[] =3D { > .resources =3D da9062_thermal_resources, > .of_compatible =3D "dlg,da9062-thermal", > }, > + { > + .name =3D "da9062-rtc", > + .num_resources =3D ARRAY_SIZE(da9062_rtc_resources), > + .resources =3D da9062_rtc_resources, > + .of_compatible =3D "dlg,da9062-rtc", > + }, > }; > =20 > static int da9062_clear_fault_log(struct da9062 *chip) --=20 Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org =E2=94=82 Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog --=20 --=20 You received this message because you are subscribed to "rtc-linux". Membership options at http://groups.google.com/group/rtc-linux . Please read http://groups.google.com/group/rtc-linux/web/checklist before submitting a driver. ---=20 You received this message because you are subscribed to the Google Groups "= rtc-linux" group. To unsubscribe from this group and stop receiving emails from it, send an e= mail to rtc-linux+unsubscribe@googlegroups.com. For more options, visit https://groups.google.com/d/optout. From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753563AbbGWP1P (ORCPT ); Thu, 23 Jul 2015 11:27:15 -0400 Received: from mail-wi0-f176.google.com ([209.85.212.176]:38911 "EHLO mail-wi0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752574AbbGWP1F (ORCPT ); Thu, 23 Jul 2015 11:27:05 -0400 Date: Thu, 23 Jul 2015 16:27:01 +0100 From: Lee Jones To: S Twiss Cc: DEVICETREE , LINUXINPUT , LINUXKERNEL , RTCLINUX , Samuel Ortiz , Alessandro Zummo , Alexandre Belloni , David Dajun Chen , Ian Campbell , Kumar Gala , Mark Rutland , Pawel Moll , Rob Herring , Support Opensource Subject: Re: [PATCH V3 1/3] mfd: da9062: Support for the DA9063 RTC in the DA9062 core Message-ID: <20150723152701.GN3436@x1> References: <7abaa10f4089b1adec4970d9c581a9f35992ee02.1437474547.git.stwiss.opensource@diasemi.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <7abaa10f4089b1adec4970d9c581a9f35992ee02.1437474547.git.stwiss.opensource@diasemi.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 21 Jul 2015, S Twiss wrote: > From: S Twiss > > Add MFD core driver support for a RTC component > > - MFD core adds the RTC resources da9062_rtc_resources[] for the RTC > alarm and tick timer IRQ > - An appropriate mfd_cell has been added into da9062_devs[] to support > a component .name = "da9062-rtc" and .of_compatible = "dlg,da9062-rtc" > > Signed-off-by: Steve Twiss > > --- > Checks performed with linux-next/next-20150708/scripts/checkpatch.pl > da9062-core.c total: 0 errors, 0 warnings, 523 lines checked > This patch applies against linux-next and next-20150708 > > > drivers/mfd/da9062-core.c | 11 +++++++++++ > 1 file changed, 11 insertions(+) Applied, thanks. > diff --git a/drivers/mfd/da9062-core.c b/drivers/mfd/da9062-core.c > index 4cf0643..b43cd24 100644 > --- a/drivers/mfd/da9062-core.c > +++ b/drivers/mfd/da9062-core.c > @@ -118,6 +118,11 @@ static struct resource da9062_wdt_resources[] = { > DEFINE_RES_NAMED(DA9062_IRQ_WDG_WARN, 1, "WD_WARN", IORESOURCE_IRQ), > }; > > +static struct resource da9062_rtc_resources[] = { > + DEFINE_RES_NAMED(DA9062_IRQ_ALARM, 1, "ALARM", IORESOURCE_IRQ), > + DEFINE_RES_NAMED(DA9062_IRQ_TICK, 1, "TICK", IORESOURCE_IRQ), > +}; > + > static const struct mfd_cell da9062_devs[] = { > { > .name = "da9062-core", > @@ -141,6 +146,12 @@ static const struct mfd_cell da9062_devs[] = { > .resources = da9062_thermal_resources, > .of_compatible = "dlg,da9062-thermal", > }, > + { > + .name = "da9062-rtc", > + .num_resources = ARRAY_SIZE(da9062_rtc_resources), > + .resources = da9062_rtc_resources, > + .of_compatible = "dlg,da9062-rtc", > + }, > }; > > static int da9062_clear_fault_log(struct da9062 *chip) -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog