* [PATCH] Device Tree bindings for DSP clusters and DSP CPUs
@ 2013-08-21 9:20 Poonam Aggrwal
[not found] ` <1377076830-24223-1-git-send-email-poonam.aggrwal-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Poonam Aggrwal @ 2013-08-21 9:20 UTC (permalink / raw)
To: devicetree; +Cc: Poonam Aggrwal
Binding for DSP CPU clusters and DSP CPUs for Freescale SOCs which
have DSP CPUs in addition to PowerPC CPUs. For example B4860.
Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
---
.../devicetree/bindings/powerpc/fsl/dsp-cpus.txt | 78 ++++++++++++++++++++
1 files changed, 78 insertions(+), 0 deletions(-)
create mode 100644 Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
diff --git a/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt b/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
new file mode 100644
index 0000000..da7f5d4
--- /dev/null
+++ b/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
@@ -0,0 +1,78 @@
+===================================================================
+Binding for DSP CPU clusters and DSP CPUs for Freescale SOCs which
+have DSP CPUs in addition to PowerPC cpus.
+Copyright 2013 Freescale Semiconductor Inc.
+
+Power Architecture CPUs in Freescale SOCs are represented in device trees as
+per the definition in ePAPR.
+
+Required properties for DSP CPU cluster:
+- compatible : should be "fsl,dsp-cluster" or "fsl,sc3900-cluster".
+- reg : should contain the cluster index
+
+Required properties for DSP CPU:
+- compatible : should be "fsl,dsp" or "fsl,sc3900".
+- reg : should contain index of DSP CPU within the DSP clsuter.
+- next-level-cache : should point to the phandle of the next-level L2 cache.
+
+Example for B4860:
+B4860 SOC of Freescale has 3 DSP clusters. Each DSP cluster has 2 DSP CPUs each.
+The DSP CPUs are SC3900. There is a shared L2 cache per DSP cluster.
+ dsp-clusters {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ dsp-cluster0 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ compatible = "fsl,sc3900-cluster";
+ reg = <0>;
+
+ dsp0: dsp@0 {
+ compatible = "fsl,sc3900";
+ reg = <0>;
+ next-level-cache = <&L2_2>;
+ };
+ dsp1: dsp@1 {
+ compatible = "fsl,sc3900";
+ reg = <1>;
+ next-level-cache = <&L2_2>;
+ };
+ };
+
+ dsp-cluster1 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ compatible = "fsl,sc3900-cluster";
+ reg = <1>;
+
+ dsp2: dsp@2 {
+ compatible = "fsl,sc3900";
+ reg = <2>;
+ next-level-cache = <&L2_3>;
+ };
+ dsp3: dsp@3 {
+ compatible = "fsl,sc3900";
+ reg = <3>;
+ next-level-cache = <&L2_3>;
+ };
+ };
+
+ dsp-cluster2 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ compatible = "fsl,sc3900-cluster";
+ reg = <2>;
+
+ dsp4: dsp@4 {
+ compatible = "fsl,sc3900";
+ reg = <4>;
+ next-level-cache = <&L2_4>;
+ };
+ dsp5: dsp@5 {
+ compatible = "fsl,sc3900";
+ reg = <5>;
+ next-level-cache = <&L2_4>;
+ };
+ };
+ };
--
1.7.4.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Device Tree bindings for DSP clusters and DSP CPUs
[not found] <1377077149-24347-1-git-send-email-poonam.aggrwal@freescale.com>
@ 2013-08-22 21:44 ` Scott Wood
0 siblings, 0 replies; 4+ messages in thread
From: Scott Wood @ 2013-08-22 21:44 UTC (permalink / raw)
To: Poonam Aggrwal; +Cc: devicetree, linuxppc-dev
On Wed, 2013-08-21 at 14:55 +0530, Poonam Aggrwal wrote:
> Binding for DSP CPU clusters and DSP CPUs for Freescale SOCs which
> have DSP CPUs in addition to PowerPC CPUs. For example B4860.
>
> Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
> ---
> .../devicetree/bindings/powerpc/fsl/dsp-cpus.txt | 78 ++++++++++++++++++++
> 1 files changed, 78 insertions(+), 0 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
>
> diff --git a/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt b/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
> new file mode 100644
> index 0000000..da7f5d4
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
> @@ -0,0 +1,78 @@
> +===================================================================
> +Binding for DSP CPU clusters and DSP CPUs for Freescale SOCs which
> +have DSP CPUs in addition to PowerPC cpus.
> +Copyright 2013 Freescale Semiconductor Inc.
> +
> +Power Architecture CPUs in Freescale SOCs are represented in device trees as
> +per the definition in ePAPR.
> +
> +Required properties for DSP CPU cluster:
> +- compatible : should be "fsl,dsp-cluster" or "fsl,sc3900-cluster".
> +- reg : should contain the cluster index
> +
> +Required properties for DSP CPU:
> +- compatible : should be "fsl,dsp" or "fsl,sc3900".
> +- reg : should contain index of DSP CPU within the DSP clsuter.
s/clsuter/cluster/
Could you elaborate on "index of DSP CPU within the DSP cluster"? From
the examples it looks like the reg values are unique even across
clusters.
I wonder whether we should be describing this at all in the device tree
given that the topology is discoverable in registers... though that
applies to the PowerPC CPUs as well. :-)
-Scott
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH] Device Tree bindings for DSP clusters and DSP CPUs
[not found] ` <1377076830-24223-1-git-send-email-poonam.aggrwal-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
@ 2013-09-30 13:36 ` Aggrwal Poonam-B10812
[not found] ` <ACB6D0C0104CFF42A45A5D82A0DD4F3D1522E0F0-RL0Hj/+nBVDYdknt8GnhQq4g8xLGJsHaLnY5E4hWTkheoWH0uzbU5w@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Aggrwal Poonam-B10812 @ 2013-09-30 13:36 UTC (permalink / raw)
To: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Please provide your feedback on this.
Regards
Poonam
> -----Original Message-----
> From: Aggrwal Poonam-B10812
> Sent: Wednesday, August 21, 2013 2:51 PM
> To: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Cc: Aggrwal Poonam-B10812
> Subject: [PATCH] Device Tree bindings for DSP clusters and DSP CPUs
>
> Binding for DSP CPU clusters and DSP CPUs for Freescale SOCs which have
> DSP CPUs in addition to PowerPC CPUs. For example B4860.
>
> Signed-off-by: Poonam Aggrwal <poonam.aggrwal-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
> ---
> .../devicetree/bindings/powerpc/fsl/dsp-cpus.txt | 78
> ++++++++++++++++++++
> 1 files changed, 78 insertions(+), 0 deletions(-) create mode 100644
> Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
>
> diff --git a/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
> b/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
> new file mode 100644
> index 0000000..da7f5d4
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
> @@ -0,0 +1,78 @@
> +===================================================================
> +Binding for DSP CPU clusters and DSP CPUs for Freescale SOCs which have
> +DSP CPUs in addition to PowerPC cpus.
> +Copyright 2013 Freescale Semiconductor Inc.
> +
> +Power Architecture CPUs in Freescale SOCs are represented in device
> +trees as per the definition in ePAPR.
> +
> +Required properties for DSP CPU cluster:
> +- compatible : should be "fsl,dsp-cluster" or "fsl,sc3900-cluster".
> +- reg : should contain the cluster index
> +
> +Required properties for DSP CPU:
> +- compatible : should be "fsl,dsp" or "fsl,sc3900".
> +- reg : should contain index of DSP CPU within the DSP clsuter.
> +- next-level-cache : should point to the phandle of the next-level L2
> cache.
> +
> +Example for B4860:
> +B4860 SOC of Freescale has 3 DSP clusters. Each DSP cluster has 2 DSP
> CPUs each.
> +The DSP CPUs are SC3900. There is a shared L2 cache per DSP cluster.
> + dsp-clusters {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + dsp-cluster0 {
> + #address-cells = <1>;
> + #size-cells = <0>;
> + compatible = "fsl,sc3900-cluster";
> + reg = <0>;
> +
> + dsp0: dsp@0 {
> + compatible = "fsl,sc3900";
> + reg = <0>;
> + next-level-cache = <&L2_2>;
> + };
> + dsp1: dsp@1 {
> + compatible = "fsl,sc3900";
> + reg = <1>;
> + next-level-cache = <&L2_2>;
> + };
> + };
> +
> + dsp-cluster1 {
> + #address-cells = <1>;
> + #size-cells = <0>;
> + compatible = "fsl,sc3900-cluster";
> + reg = <1>;
> +
> + dsp2: dsp@2 {
> + compatible = "fsl,sc3900";
> + reg = <2>;
> + next-level-cache = <&L2_3>;
> + };
> + dsp3: dsp@3 {
> + compatible = "fsl,sc3900";
> + reg = <3>;
> + next-level-cache = <&L2_3>;
> + };
> + };
> +
> + dsp-cluster2 {
> + #address-cells = <1>;
> + #size-cells = <0>;
> + compatible = "fsl,sc3900-cluster";
> + reg = <2>;
> +
> + dsp4: dsp@4 {
> + compatible = "fsl,sc3900";
> + reg = <4>;
> + next-level-cache = <&L2_4>;
> + };
> + dsp5: dsp@5 {
> + compatible = "fsl,sc3900";
> + reg = <5>;
> + next-level-cache = <&L2_4>;
> + };
> + };
> + };
> --
> 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 [flat|nested] 4+ messages in thread
* Re: [PATCH] Device Tree bindings for DSP clusters and DSP CPUs
[not found] ` <ACB6D0C0104CFF42A45A5D82A0DD4F3D1522E0F0-RL0Hj/+nBVDYdknt8GnhQq4g8xLGJsHaLnY5E4hWTkheoWH0uzbU5w@public.gmane.org>
@ 2013-09-30 17:07 ` Mark Rutland
0 siblings, 0 replies; 4+ messages in thread
From: Mark Rutland @ 2013-09-30 17:07 UTC (permalink / raw)
To: Aggrwal Poonam-B10812; +Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On Mon, Sep 30, 2013 at 02:36:41PM +0100, Aggrwal Poonam-B10812 wrote:
> Please provide your feedback on this.
>
> Regards
> Poonam
>
> > -----Original Message-----
> > From: Aggrwal Poonam-B10812
> > Sent: Wednesday, August 21, 2013 2:51 PM
> > To: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > Cc: Aggrwal Poonam-B10812
> > Subject: [PATCH] Device Tree bindings for DSP clusters and DSP CPUs
> >
> > Binding for DSP CPU clusters and DSP CPUs for Freescale SOCs which have
> > DSP CPUs in addition to PowerPC CPUs. For example B4860.
> >
> > Signed-off-by: Poonam Aggrwal <poonam.aggrwal-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
> > ---
> > .../devicetree/bindings/powerpc/fsl/dsp-cpus.txt | 78
> > ++++++++++++++++++++
> > 1 files changed, 78 insertions(+), 0 deletions(-) create mode 100644
> > Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
> >
> > diff --git a/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
> > b/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
> > new file mode 100644
> > index 0000000..da7f5d4
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/powerpc/fsl/dsp-cpus.txt
> > @@ -0,0 +1,78 @@
> > +===================================================================
> > +Binding for DSP CPU clusters and DSP CPUs for Freescale SOCs which have
> > +DSP CPUs in addition to PowerPC cpus.
> > +Copyright 2013 Freescale Semiconductor Inc.
> > +
> > +Power Architecture CPUs in Freescale SOCs are represented in device
> > +trees as per the definition in ePAPR.
> > +
> > +Required properties for DSP CPU cluster:
Where do DSP CPU cluster nodes go? THat should be desscribed before the
example.
> > +- compatible : should be "fsl,dsp-cluster" or "fsl,sc3900-cluster".
s/should be/should contain/ -- you might have a backwards compatible
version in future. Similarly elsewhere.
When should "fsl,dsp-cluster" be used, and when should
"fsl,sc3900-cluster" be used? That should be described.
> > +- reg : should contain the cluster index
> > +
> > +Required properties for DSP CPU:
Where do the CPU nodes go? That should be described before the example.
> > +- compatible : should be "fsl,dsp" or "fsl,sc3900".
When should each of these compatible strings be used?
> > +- reg : should contain index of DSP CPU within the DSP clsuter.
> > +- next-level-cache : should point to the phandle of the next-level L2
> > cache.
Does nothing else need to be described (e.g. mailbox or communication
mechanism, interrupts, regulators, clocks) to use these DSPs?
> > +
> > +Example for B4860:
> > +B4860 SOC of Freescale has 3 DSP clusters. Each DSP cluster has 2 DSP
> > CPUs each.
> > +The DSP CPUs are SC3900. There is a shared L2 cache per DSP cluster.
> > + dsp-clusters {
I assume the name of the dsp-clusters node is important (and that it
needs to be under / rathert than a subnode)? That should be documented.
> > + #address-cells = <1>;
> > + #size-cells = <0>;
> > +
> > + dsp-cluster0 {
This has a reg. Shouldn't it be called dsp-cluster@0 ?
> > + #address-cells = <1>;
> > + #size-cells = <0>;
> > + compatible = "fsl,sc3900-cluster";
> > + reg = <0>;
> > +
> > + dsp0: dsp@0 {
> > + compatible = "fsl,sc3900";
> > + reg = <0>;
> > + next-level-cache = <&L2_2>;
> > + };
> > + dsp1: dsp@1 {
> > + compatible = "fsl,sc3900";
> > + reg = <1>;
> > + next-level-cache = <&L2_2>;
> > + };
> > + };
> > +
> > + dsp-cluster1 {
Similarly, dsp-cluster@1 ?
> > + #address-cells = <1>;
> > + #size-cells = <0>;
> > + compatible = "fsl,sc3900-cluster";
> > + reg = <1>;
> > +
> > + dsp2: dsp@2 {
> > + compatible = "fsl,sc3900";
> > + reg = <2>;
> > + next-level-cache = <&L2_3>;
> > + };
> > + dsp3: dsp@3 {
> > + compatible = "fsl,sc3900";
> > + reg = <3>;
> > + next-level-cache = <&L2_3>;
> > + };
> > + };
> > +
> > + dsp-cluster2 {
> > + #address-cells = <1>;
> > + #size-cells = <0>;
> > + compatible = "fsl,sc3900-cluster";
> > + reg = <2>;
> > +
> > + dsp4: dsp@4 {
> > + compatible = "fsl,sc3900";
> > + reg = <4>;
> > + next-level-cache = <&L2_4>;
> > + };
> > + dsp5: dsp@5 {
> > + compatible = "fsl,sc3900";
> > + reg = <5>;
> > + next-level-cache = <&L2_4>;
> > + };
> > + };
> > + };
> > --
> > 1.7.4.1
Cheers,
Mark.
--
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] 4+ messages in thread
end of thread, other threads:[~2013-09-30 17:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1377077149-24347-1-git-send-email-poonam.aggrwal@freescale.com>
2013-08-22 21:44 ` [PATCH] Device Tree bindings for DSP clusters and DSP CPUs Scott Wood
2013-08-21 9:20 Poonam Aggrwal
[not found] ` <1377076830-24223-1-git-send-email-poonam.aggrwal-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2013-09-30 13:36 ` Aggrwal Poonam-B10812
[not found] ` <ACB6D0C0104CFF42A45A5D82A0DD4F3D1522E0F0-RL0Hj/+nBVDYdknt8GnhQq4g8xLGJsHaLnY5E4hWTkheoWH0uzbU5w@public.gmane.org>
2013-09-30 17:07 ` Mark Rutland
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).