* [PATCH V2] MXS: Add DT binding support into stmp3xxx-rtc @ 2012-06-08 18:56 Marek Vasut [not found] ` <1339181804-22822-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org> 0 siblings, 1 reply; 7+ messages in thread From: Marek Vasut @ 2012-06-08 18:56 UTC (permalink / raw) To: linux-arm-kernel Cc: Marek Vasut, Alessandro Zummo, rtc-linux, devicetree-discuss, Rob Herring, Grant Likely, Shawn Guo Add simple binding for the stmp3xxx-rtc. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Alessandro Zummo <a.zummo@towertech.it> Cc: devicetree-discuss@lists.ozlabs.org Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Rob Herring <rob.herring@calxeda.com> Cc: rtc-linux@googlegroups.com Cc: Shawn Guo <shawn.guo@linaro.org> --- .../devicetree/bindings/rtc/stmp3xxx-rtc.txt | 19 +++++++++++++++++++ arch/arm/boot/dts/imx28.dtsi | 1 + drivers/rtc/rtc-stmp3xxx.c | 7 +++++++ 3 files changed, 27 insertions(+) create mode 100644 Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt V2: Fix typos, remove fsl,imx28-rtc diff --git a/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt b/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt new file mode 100644 index 0000000..a7a7de5 --- /dev/null +++ b/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt @@ -0,0 +1,19 @@ +* STMP3xxx/i.MX28 Time Clock controller + +Required properties: +- compatible: should be one of the following. + * "fsl,stmp3xxx-rtc" +- reg: physical base address of the controller and length of memory mapped + region. +- interrupts: Two interrupt numbers to the cpu should be specified. First + interrupt number is the rtc tick interrupt and second interrupt number + is the rtc alarm interrupt. The number of cells representing a interrupt + depends on the parent interrupt controller. + +Example: + + rtc@80056000 { + compatible = "fsl,stmp3xxx-rtc"; + reg = <0x80056000 2000>; + interrupts = <28 29>; + }; diff --git a/arch/arm/boot/dts/imx28.dtsi b/arch/arm/boot/dts/imx28.dtsi index cabcce8..5053019 100644 --- a/arch/arm/boot/dts/imx28.dtsi +++ b/arch/arm/boot/dts/imx28.dtsi @@ -387,6 +387,7 @@ }; rtc@80056000 { + compatible = "fsl,imx28-rtc", "fsl,stmp3xxx-rtc"; reg = <0x80056000 2000>; interrupts = <28 29>; status = "disabled"; diff --git a/drivers/rtc/rtc-stmp3xxx.c b/drivers/rtc/rtc-stmp3xxx.c index 1028786..3aadb58 100644 --- a/drivers/rtc/rtc-stmp3xxx.c +++ b/drivers/rtc/rtc-stmp3xxx.c @@ -25,6 +25,7 @@ #include <linux/interrupt.h> #include <linux/rtc.h> #include <linux/slab.h> +#include <linux/of_device.h> #include <mach/common.h> @@ -265,6 +266,11 @@ static int stmp3xxx_rtc_resume(struct platform_device *dev) #define stmp3xxx_rtc_resume NULL #endif +static const struct of_device_id rtc_dt_ids[] = { + { .compatible = "fsl,stmp3xxx-rtc", }, + { /* sentinel */ } +}; + static struct platform_driver stmp3xxx_rtcdrv = { .probe = stmp3xxx_rtc_probe, .remove = stmp3xxx_rtc_remove, @@ -273,6 +279,7 @@ static struct platform_driver stmp3xxx_rtcdrv = { .driver = { .name = "stmp3xxx-rtc", .owner = THIS_MODULE, + .of_match_table = rtc_dt_ids, }, }; -- 1.7.10 ^ permalink raw reply related [flat|nested] 7+ messages in thread
[parent not found: <1339181804-22822-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org>]
* Re: [PATCH V2] MXS: Add DT binding support into stmp3xxx-rtc [not found] ` <1339181804-22822-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org> @ 2012-06-08 18:58 ` Rob Herring 2012-06-11 3:53 ` Shawn Guo 2012-06-25 4:37 ` Shawn Guo 2 siblings, 0 replies; 7+ messages in thread From: Rob Herring @ 2012-06-08 18:58 UTC (permalink / raw) To: Marek Vasut Cc: Alessandro Zummo, rtc-linux-/JYPxA39Uh5TLH3MbocFFw, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On 06/08/2012 01:56 PM, Marek Vasut wrote: > Add simple binding for the stmp3xxx-rtc. > > Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org> > Cc: Alessandro Zummo <a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org> > Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org > Cc: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org> > Cc: Rob Herring <rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org> > Cc: rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > Cc: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> > --- Acked-by: Rob Herring <rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org> > .../devicetree/bindings/rtc/stmp3xxx-rtc.txt | 19 +++++++++++++++++++ > arch/arm/boot/dts/imx28.dtsi | 1 + > drivers/rtc/rtc-stmp3xxx.c | 7 +++++++ > 3 files changed, 27 insertions(+) > create mode 100644 Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt > > V2: Fix typos, remove fsl,imx28-rtc > > diff --git a/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt b/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt > new file mode 100644 > index 0000000..a7a7de5 > --- /dev/null > +++ b/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt > @@ -0,0 +1,19 @@ > +* STMP3xxx/i.MX28 Time Clock controller > + > +Required properties: > +- compatible: should be one of the following. > + * "fsl,stmp3xxx-rtc" > +- reg: physical base address of the controller and length of memory mapped > + region. > +- interrupts: Two interrupt numbers to the cpu should be specified. First > + interrupt number is the rtc tick interrupt and second interrupt number > + is the rtc alarm interrupt. The number of cells representing a interrupt > + depends on the parent interrupt controller. > + > +Example: > + > + rtc@80056000 { > + compatible = "fsl,stmp3xxx-rtc"; > + reg = <0x80056000 2000>; > + interrupts = <28 29>; > + }; > diff --git a/arch/arm/boot/dts/imx28.dtsi b/arch/arm/boot/dts/imx28.dtsi > index cabcce8..5053019 100644 > --- a/arch/arm/boot/dts/imx28.dtsi > +++ b/arch/arm/boot/dts/imx28.dtsi > @@ -387,6 +387,7 @@ > }; > > rtc@80056000 { > + compatible = "fsl,imx28-rtc", "fsl,stmp3xxx-rtc"; > reg = <0x80056000 2000>; > interrupts = <28 29>; > status = "disabled"; > diff --git a/drivers/rtc/rtc-stmp3xxx.c b/drivers/rtc/rtc-stmp3xxx.c > index 1028786..3aadb58 100644 > --- a/drivers/rtc/rtc-stmp3xxx.c > +++ b/drivers/rtc/rtc-stmp3xxx.c > @@ -25,6 +25,7 @@ > #include <linux/interrupt.h> > #include <linux/rtc.h> > #include <linux/slab.h> > +#include <linux/of_device.h> > > #include <mach/common.h> > > @@ -265,6 +266,11 @@ static int stmp3xxx_rtc_resume(struct platform_device *dev) > #define stmp3xxx_rtc_resume NULL > #endif > > +static const struct of_device_id rtc_dt_ids[] = { > + { .compatible = "fsl,stmp3xxx-rtc", }, > + { /* sentinel */ } > +}; > + > static struct platform_driver stmp3xxx_rtcdrv = { > .probe = stmp3xxx_rtc_probe, > .remove = stmp3xxx_rtc_remove, > @@ -273,6 +279,7 @@ static struct platform_driver stmp3xxx_rtcdrv = { > .driver = { > .name = "stmp3xxx-rtc", > .owner = THIS_MODULE, > + .of_match_table = rtc_dt_ids, > }, > }; > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH V2] MXS: Add DT binding support into stmp3xxx-rtc [not found] ` <1339181804-22822-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org> 2012-06-08 18:58 ` Rob Herring @ 2012-06-11 3:53 ` Shawn Guo 2012-06-25 4:37 ` Shawn Guo 2 siblings, 0 replies; 7+ messages in thread From: Shawn Guo @ 2012-06-11 3:53 UTC (permalink / raw) To: Marek Vasut Cc: Alessandro Zummo, rtc-linux-/JYPxA39Uh5TLH3MbocFFw, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, Rob Herring, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Fri, Jun 08, 2012 at 08:56:44PM +0200, Marek Vasut wrote: > Add simple binding for the stmp3xxx-rtc. > > Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org> > Cc: Alessandro Zummo <a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org> > Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org > Cc: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org> > Cc: Rob Herring <rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org> > Cc: rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > Cc: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> Acked-by: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH V2] MXS: Add DT binding support into stmp3xxx-rtc [not found] ` <1339181804-22822-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org> 2012-06-08 18:58 ` Rob Herring 2012-06-11 3:53 ` Shawn Guo @ 2012-06-25 4:37 ` Shawn Guo [not found] ` <20120625043711.GA18156-rvtDTF3kK1ictlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org> 2 siblings, 1 reply; 7+ messages in thread From: Shawn Guo @ 2012-06-25 4:37 UTC (permalink / raw) To: Marek Vasut Cc: Alessandro Zummo, rtc-linux-/JYPxA39Uh5TLH3MbocFFw, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, Rob Herring, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Fri, Jun 08, 2012 at 08:56:44PM +0200, Marek Vasut wrote: > Add simple binding for the stmp3xxx-rtc. > > Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org> > Cc: Alessandro Zummo <a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org> Hi Alessandro, The patch has some changes on arch/arm/boot/dts/imx28.dtsi, and also we need the patch to convert some board files over to device tree. May I have your ack to queue the patch on my tree? Regards, Shawn > Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org > Cc: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org> > Cc: Rob Herring <rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org> > Cc: rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > Cc: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> > --- > .../devicetree/bindings/rtc/stmp3xxx-rtc.txt | 19 +++++++++++++++++++ > arch/arm/boot/dts/imx28.dtsi | 1 + > drivers/rtc/rtc-stmp3xxx.c | 7 +++++++ > 3 files changed, 27 insertions(+) > create mode 100644 Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt > > V2: Fix typos, remove fsl,imx28-rtc > > diff --git a/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt b/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt > new file mode 100644 > index 0000000..a7a7de5 > --- /dev/null > +++ b/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt > @@ -0,0 +1,19 @@ > +* STMP3xxx/i.MX28 Time Clock controller > + > +Required properties: > +- compatible: should be one of the following. > + * "fsl,stmp3xxx-rtc" > +- reg: physical base address of the controller and length of memory mapped > + region. > +- interrupts: Two interrupt numbers to the cpu should be specified. First > + interrupt number is the rtc tick interrupt and second interrupt number > + is the rtc alarm interrupt. The number of cells representing a interrupt > + depends on the parent interrupt controller. > + > +Example: > + > + rtc@80056000 { > + compatible = "fsl,stmp3xxx-rtc"; > + reg = <0x80056000 2000>; > + interrupts = <28 29>; > + }; > diff --git a/arch/arm/boot/dts/imx28.dtsi b/arch/arm/boot/dts/imx28.dtsi > index cabcce8..5053019 100644 > --- a/arch/arm/boot/dts/imx28.dtsi > +++ b/arch/arm/boot/dts/imx28.dtsi > @@ -387,6 +387,7 @@ > }; > > rtc@80056000 { > + compatible = "fsl,imx28-rtc", "fsl,stmp3xxx-rtc"; > reg = <0x80056000 2000>; > interrupts = <28 29>; > status = "disabled"; > diff --git a/drivers/rtc/rtc-stmp3xxx.c b/drivers/rtc/rtc-stmp3xxx.c > index 1028786..3aadb58 100644 > --- a/drivers/rtc/rtc-stmp3xxx.c > +++ b/drivers/rtc/rtc-stmp3xxx.c > @@ -25,6 +25,7 @@ > #include <linux/interrupt.h> > #include <linux/rtc.h> > #include <linux/slab.h> > +#include <linux/of_device.h> > > #include <mach/common.h> > > @@ -265,6 +266,11 @@ static int stmp3xxx_rtc_resume(struct platform_device *dev) > #define stmp3xxx_rtc_resume NULL > #endif > > +static const struct of_device_id rtc_dt_ids[] = { > + { .compatible = "fsl,stmp3xxx-rtc", }, > + { /* sentinel */ } > +}; > + > static struct platform_driver stmp3xxx_rtcdrv = { > .probe = stmp3xxx_rtc_probe, > .remove = stmp3xxx_rtc_remove, > @@ -273,6 +279,7 @@ static struct platform_driver stmp3xxx_rtcdrv = { > .driver = { > .name = "stmp3xxx-rtc", > .owner = THIS_MODULE, > + .of_match_table = rtc_dt_ids, > }, > }; > > -- > 1.7.10 > ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <20120625043711.GA18156-rvtDTF3kK1ictlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org>]
* Re: [PATCH V2] MXS: Add DT binding support into stmp3xxx-rtc [not found] ` <20120625043711.GA18156-rvtDTF3kK1ictlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org> @ 2012-06-29 11:08 ` Marc Kleine-Budde [not found] ` <4FED8CA1.5000800-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 0 siblings, 1 reply; 7+ messages in thread From: Marc Kleine-Budde @ 2012-06-29 11:08 UTC (permalink / raw) To: Shawn Guo Cc: Marek Vasut, Alessandro Zummo, rtc-linux-/JYPxA39Uh5TLH3MbocFFw, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, Rob Herring, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r [-- Attachment #1.1: Type: text/plain, Size: 4451 bytes --] On 06/25/2012 06:37 AM, Shawn Guo wrote: > On Fri, Jun 08, 2012 at 08:56:44PM +0200, Marek Vasut wrote: >> Add simple binding for the stmp3xxx-rtc. >> >> Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org> >> Cc: Alessandro Zummo <a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org> > > Hi Alessandro, > > The patch has some changes on arch/arm/boot/dts/imx28.dtsi, and also we > need the patch to convert some board files over to device tree. May I > have your ack to queue the patch on my tree? The interrupt numbers are not as the driver expects them.. > > Regards, > Shawn > >> Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org >> Cc: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org> >> Cc: Rob Herring <rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org> >> Cc: rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org >> Cc: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> >> --- >> .../devicetree/bindings/rtc/stmp3xxx-rtc.txt | 19 +++++++++++++++++++ >> arch/arm/boot/dts/imx28.dtsi | 1 + >> drivers/rtc/rtc-stmp3xxx.c | 7 +++++++ >> 3 files changed, 27 insertions(+) >> create mode 100644 Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt >> >> V2: Fix typos, remove fsl,imx28-rtc >> >> diff --git a/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt b/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt >> new file mode 100644 >> index 0000000..a7a7de5 >> --- /dev/null >> +++ b/Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt >> @@ -0,0 +1,19 @@ >> +* STMP3xxx/i.MX28 Time Clock controller >> + >> +Required properties: >> +- compatible: should be one of the following. >> + * "fsl,stmp3xxx-rtc" >> +- reg: physical base address of the controller and length of memory mapped >> + region. >> +- interrupts: Two interrupt numbers to the cpu should be specified. First >> + interrupt number is the rtc tick interrupt and second interrupt number >> + is the rtc alarm interrupt. The number of cells representing a interrupt >> + depends on the parent interrupt controller. The driver expects the first interrupt to the the alarm interrupt, the event interrupt is not use, yet. >> + >> +Example: >> + >> + rtc@80056000 { >> + compatible = "fsl,stmp3xxx-rtc"; >> + reg = <0x80056000 2000>; >> + interrupts = <28 29>; >> + }; >> diff --git a/arch/arm/boot/dts/imx28.dtsi b/arch/arm/boot/dts/imx28.dtsi >> index cabcce8..5053019 100644 >> --- a/arch/arm/boot/dts/imx28.dtsi >> +++ b/arch/arm/boot/dts/imx28.dtsi >> @@ -387,6 +387,7 @@ >> }; >> >> rtc@80056000 { >> + compatible = "fsl,imx28-rtc", "fsl,stmp3xxx-rtc"; >> reg = <0x80056000 2000>; >> interrupts = <28 29>; should be: <29 28> >> status = "disabled"; >> diff --git a/drivers/rtc/rtc-stmp3xxx.c b/drivers/rtc/rtc-stmp3xxx.c >> index 1028786..3aadb58 100644 >> --- a/drivers/rtc/rtc-stmp3xxx.c >> +++ b/drivers/rtc/rtc-stmp3xxx.c >> @@ -25,6 +25,7 @@ >> #include <linux/interrupt.h> >> #include <linux/rtc.h> >> #include <linux/slab.h> >> +#include <linux/of_device.h> >> >> #include <mach/common.h> >> >> @@ -265,6 +266,11 @@ static int stmp3xxx_rtc_resume(struct platform_device *dev) >> #define stmp3xxx_rtc_resume NULL >> #endif >> >> +static const struct of_device_id rtc_dt_ids[] = { >> + { .compatible = "fsl,stmp3xxx-rtc", }, >> + { /* sentinel */ } >> +}; >> + >> static struct platform_driver stmp3xxx_rtcdrv = { >> .probe = stmp3xxx_rtc_probe, >> .remove = stmp3xxx_rtc_remove, >> @@ -273,6 +279,7 @@ static struct platform_driver stmp3xxx_rtcdrv = { >> .driver = { >> .name = "stmp3xxx-rtc", >> .owner = THIS_MODULE, >> + .of_match_table = rtc_dt_ids, >> }, >> }; >> >> -- >> 1.7.10 >> > > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel Marc -- Pengutronix e.K. | Marc Kleine-Budde | Industrial Linux Solutions | Phone: +49-231-2826-924 | Vertretung West/Dortmund | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de | [-- Attachment #1.2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 262 bytes --] [-- Attachment #2: Type: text/plain, Size: 192 bytes --] _______________________________________________ devicetree-discuss mailing list devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org https://lists.ozlabs.org/listinfo/devicetree-discuss ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <4FED8CA1.5000800-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* Re: [PATCH V2] MXS: Add DT binding support into stmp3xxx-rtc [not found] ` <4FED8CA1.5000800-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2012-06-29 11:30 ` Shawn Guo [not found] ` <20120629113047.GD29197-rvtDTF3kK1ictlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org> 0 siblings, 1 reply; 7+ messages in thread From: Shawn Guo @ 2012-06-29 11:30 UTC (permalink / raw) To: Marc Kleine-Budde Cc: Marek Vasut, Alessandro Zummo, rtc-linux-/JYPxA39Uh5TLH3MbocFFw, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, Rob Herring, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Fri, Jun 29, 2012 at 01:08:17PM +0200, Marc Kleine-Budde wrote: > On 06/25/2012 06:37 AM, Shawn Guo wrote: > > On Fri, Jun 08, 2012 at 08:56:44PM +0200, Marek Vasut wrote: > >> Add simple binding for the stmp3xxx-rtc. > >> > >> Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org> > >> Cc: Alessandro Zummo <a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org> > > > > Hi Alessandro, > > > > The patch has some changes on arch/arm/boot/dts/imx28.dtsi, and also we > > need the patch to convert some board files over to device tree. May I > > have your ack to queue the patch on my tree? > > The interrupt numbers are not as the driver expects them.. > Right. I sent a v3 fixing it. http://article.gmane.org/gmane.linux.drivers.devicetree/17133 -- Regards, Shawn ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <20120629113047.GD29197-rvtDTF3kK1ictlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org>]
* Re: [PATCH V2] MXS: Add DT binding support into stmp3xxx-rtc [not found] ` <20120629113047.GD29197-rvtDTF3kK1ictlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org> @ 2012-06-29 11:32 ` Marc Kleine-Budde 0 siblings, 0 replies; 7+ messages in thread From: Marc Kleine-Budde @ 2012-06-29 11:32 UTC (permalink / raw) To: Shawn Guo Cc: Marek Vasut, Alessandro Zummo, rtc-linux-/JYPxA39Uh5TLH3MbocFFw, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, Rob Herring, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r [-- Attachment #1.1: Type: text/plain, Size: 1157 bytes --] On 06/29/2012 01:30 PM, Shawn Guo wrote: > On Fri, Jun 29, 2012 at 01:08:17PM +0200, Marc Kleine-Budde wrote: >> On 06/25/2012 06:37 AM, Shawn Guo wrote: >>> On Fri, Jun 08, 2012 at 08:56:44PM +0200, Marek Vasut wrote: >>>> Add simple binding for the stmp3xxx-rtc. >>>> >>>> Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org> >>>> Cc: Alessandro Zummo <a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org> >>> >>> Hi Alessandro, >>> >>> The patch has some changes on arch/arm/boot/dts/imx28.dtsi, and also we >>> need the patch to convert some board files over to device tree. May I >>> have your ack to queue the patch on my tree? >> >> The interrupt numbers are not as the driver expects them.. >> > Right. I sent a v3 fixing it. Oh, I missed that. > http://article.gmane.org/gmane.linux.drivers.devicetree/17133 Sorry for the noise, Marc -- Pengutronix e.K. | Marc Kleine-Budde | Industrial Linux Solutions | Phone: +49-231-2826-924 | Vertretung West/Dortmund | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de | [-- Attachment #1.2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 262 bytes --] [-- Attachment #2: Type: text/plain, Size: 192 bytes --] _______________________________________________ devicetree-discuss mailing list devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org https://lists.ozlabs.org/listinfo/devicetree-discuss ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2012-06-29 11:32 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-06-08 18:56 [PATCH V2] MXS: Add DT binding support into stmp3xxx-rtc Marek Vasut [not found] ` <1339181804-22822-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org> 2012-06-08 18:58 ` Rob Herring 2012-06-11 3:53 ` Shawn Guo 2012-06-25 4:37 ` Shawn Guo [not found] ` <20120625043711.GA18156-rvtDTF3kK1ictlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org> 2012-06-29 11:08 ` Marc Kleine-Budde [not found] ` <4FED8CA1.5000800-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2012-06-29 11:30 ` Shawn Guo [not found] ` <20120629113047.GD29197-rvtDTF3kK1ictlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org> 2012-06-29 11:32 ` Marc Kleine-Budde
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).