* [PATCH] devicetree/binding/powerpc/fsl: Add binding for CPLD
@ 2014-07-03 10:09 Priyanka Jain
[not found] ` <1404382185-2967-1-git-send-email-Priyanka.Jain-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Priyanka Jain @ 2014-07-03 10:09 UTC (permalink / raw)
To: devicetree-u79uwXL29TY76Z2rM5mHXA,
linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ,
scottwood-KZfg59tc24xl57MIdRCFDg
Cc: Priyanka Jain
Some Freescale boards like T1040RDB have on board CPLD connected on
the IFC bus. Add binding for this in board.txt file
Signed-off-by: Priyanka Jain <Priyanka.Jain-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
---
.../devicetree/bindings/powerpc/fsl/board.txt | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/Documentation/devicetree/bindings/powerpc/fsl/board.txt b/Documentation/devicetree/bindings/powerpc/fsl/board.txt
index 700dec4..f35f295 100644
--- a/Documentation/devicetree/bindings/powerpc/fsl/board.txt
+++ b/Documentation/devicetree/bindings/powerpc/fsl/board.txt
@@ -84,3 +84,22 @@ Example:
compatible = "fsl,bsc9132qds-fpga", "fsl,fpga-qixis-i2c";
reg = <0x66>;
};
+
+* Freescale on-board CPLD
+
+Some Freescale boards like T1040RDB have on board CPLD connected on
+the IFC bus.
+
+Required properties:
+- compatible: Should be a board-specific string like "fsl,<board>-cpld"
+ Example:
+ "fsl,T1040RDB-cpld", "fsl,T1042RDB-cpld", "fsl,T1042RDB_PI-cpld"
+- reg: Should contain the chip select, address offset and length of the CPLD
+
+Example:
+ cpld@3,0 {
+ #address-cells = <1>;
+ #size-cells = <1>;
+ compatible = "fsl,T1040RDB-cpld";
+ reg = <3 0 0x300>;
+ };
--
1.7.4.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 related [flat|nested] 3+ messages in thread[parent not found: <1404382185-2967-1-git-send-email-Priyanka.Jain-KZfg59tc24xl57MIdRCFDg@public.gmane.org>]
* Re: [PATCH] devicetree/binding/powerpc/fsl: Add binding for CPLD [not found] ` <1404382185-2967-1-git-send-email-Priyanka.Jain-KZfg59tc24xl57MIdRCFDg@public.gmane.org> @ 2014-07-03 18:07 ` Scott Wood 2014-07-04 4:14 ` Priyanka Jain 0 siblings, 1 reply; 3+ messages in thread From: Scott Wood @ 2014-07-03 18:07 UTC (permalink / raw) To: Priyanka Jain Cc: devicetree-u79uwXL29TY76Z2rM5mHXA, linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ On Thu, 2014-07-03 at 15:39 +0530, Priyanka Jain wrote: > Some Freescale boards like T1040RDB have on board CPLD connected on > the IFC bus. Add binding for this in board.txt file > > Signed-off-by: Priyanka Jain <Priyanka.Jain-KZfg59tc24xl57MIdRCFDg@public.gmane.org> > --- > .../devicetree/bindings/powerpc/fsl/board.txt | 19 +++++++++++++++++++ > 1 files changed, 19 insertions(+), 0 deletions(-) > > diff --git a/Documentation/devicetree/bindings/powerpc/fsl/board.txt b/Documentation/devicetree/bindings/powerpc/fsl/board.txt > index 700dec4..f35f295 100644 > --- a/Documentation/devicetree/bindings/powerpc/fsl/board.txt > +++ b/Documentation/devicetree/bindings/powerpc/fsl/board.txt > @@ -84,3 +84,22 @@ Example: > compatible = "fsl,bsc9132qds-fpga", "fsl,fpga-qixis-i2c"; > reg = <0x66>; > }; > + > +* Freescale on-board CPLD > + > +Some Freescale boards like T1040RDB have on board CPLD connected on > +the IFC bus. > + > +Required properties: > +- compatible: Should be a board-specific string like "fsl,<board>-cpld" > + Example: > + "fsl,T1040RDB-cpld", "fsl,T1042RDB-cpld", "fsl,T1042RDB_PI-cpld" > +- reg: Should contain the chip select, address offset and length of the CPLD > + > +Example: > + cpld@3,0 { > + #address-cells = <1>; > + #size-cells = <1>; > + compatible = "fsl,T1040RDB-cpld"; > + reg = <3 0 0x300>; > + }; Please keep the board name in lowercase like the rest. -Scott -- 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] 3+ messages in thread
* RE: [PATCH] devicetree/binding/powerpc/fsl: Add binding for CPLD 2014-07-03 18:07 ` Scott Wood @ 2014-07-04 4:14 ` Priyanka Jain 0 siblings, 0 replies; 3+ messages in thread From: Priyanka Jain @ 2014-07-04 4:14 UTC (permalink / raw) To: Scott Wood; +Cc: devicetree@vger.kernel.org, linuxppc-dev@lists.ozlabs.org > -----Original Message----- > From: Wood Scott-B07421 > Sent: Thursday, July 03, 2014 11:38 PM > To: Jain Priyanka-B32167 > Cc: devicetree@vger.kernel.org; linuxppc-dev@lists.ozlabs.org > Subject: Re: [PATCH] devicetree/binding/powerpc/fsl: Add binding for CPLD > > On Thu, 2014-07-03 at 15:39 +0530, Priyanka Jain wrote: > > Some Freescale boards like T1040RDB have on board CPLD connected on > > the IFC bus. Add binding for this in board.txt file > > > > Signed-off-by: Priyanka Jain <Priyanka.Jain@freescale.com> > > --- > > .../devicetree/bindings/powerpc/fsl/board.txt | 19 > +++++++++++++++++++ > > 1 files changed, 19 insertions(+), 0 deletions(-) > > > > diff --git a/Documentation/devicetree/bindings/powerpc/fsl/board.txt > > b/Documentation/devicetree/bindings/powerpc/fsl/board.txt > > index 700dec4..f35f295 100644 > > --- a/Documentation/devicetree/bindings/powerpc/fsl/board.txt > > +++ b/Documentation/devicetree/bindings/powerpc/fsl/board.txt > > @@ -84,3 +84,22 @@ Example: > > compatible = "fsl,bsc9132qds-fpga", "fsl,fpga-qixis-i2c"; > > reg = <0x66>; > > }; > > + > > +* Freescale on-board CPLD > > + > > +Some Freescale boards like T1040RDB have on board CPLD connected on > > +the IFC bus. > > + > > +Required properties: > > +- compatible: Should be a board-specific string like "fsl,<board>- > cpld" > > + Example: > > + "fsl,T1040RDB-cpld", "fsl,T1042RDB-cpld", "fsl,T1042RDB_PI-cpld" > > +- reg: Should contain the chip select, address offset and length of > > +the CPLD > > + > > +Example: > > + cpld@3,0 { > > + #address-cells = <1>; > > + #size-cells = <1>; > > + compatible = "fsl,T1040RDB-cpld"; > > + reg = <3 0 0x300>; > > + }; > > Please keep the board name in lowercase like the rest. > > -Scott > [Jain Priyanka-B32167]Thanks for the inputs. I will correct this _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-07-04 4:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-03 10:09 [PATCH] devicetree/binding/powerpc/fsl: Add binding for CPLD Priyanka Jain
[not found] ` <1404382185-2967-1-git-send-email-Priyanka.Jain-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2014-07-03 18:07 ` Scott Wood
2014-07-04 4:14 ` Priyanka Jain
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).