Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1457972 > unrolled thread
| Started by | Reza Arbab <arbab@linux.vnet.ibm.com> |
|---|---|
| First post | 2016-08-08 20:30 +0200 |
| Last post | 2016-08-11 20:00 +0200 |
| Articles | 5 — 4 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.
[PATCH 1/4] dt-bindings: add doc for ibm,hotplug-aperture Reza Arbab <arbab@linux.vnet.ibm.com> - 2016-08-08 20:30 +0200
Re: [PATCH 1/4] dt-bindings: add doc for ibm,hotplug-aperture Rob Herring <robh@kernel.org> - 2016-08-10 22:30 +0200
Re: [PATCH 1/4] dt-bindings: add doc for ibm,hotplug-aperture Balbir Singh <bsingharora@gmail.com> - 2016-08-11 06:20 +0200
Re: [PATCH 1/4] dt-bindings: add doc for ibm,hotplug-aperture Stewart Smith <stewart@linux.vnet.ibm.com> - 2016-08-11 06:40 +0200
Re: [PATCH 1/4] dt-bindings: add doc for ibm,hotplug-aperture Reza Arbab <arbab@linux.vnet.ibm.com> - 2016-08-11 20:00 +0200
| From | Reza Arbab <arbab@linux.vnet.ibm.com> |
|---|---|
| Date | 2016-08-08 20:30 +0200 |
| Subject | [PATCH 1/4] dt-bindings: add doc for ibm,hotplug-aperture |
| Message-ID | <s3Xtf-4VJ-5@gated-at.bofh.it> |
Signed-off-by: Reza Arbab <arbab@linux.vnet.ibm.com>
---
.../bindings/powerpc/opal/hotplug-aperture.txt | 26 ++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 Documentation/devicetree/bindings/powerpc/opal/hotplug-aperture.txt
diff --git a/Documentation/devicetree/bindings/powerpc/opal/hotplug-aperture.txt b/Documentation/devicetree/bindings/powerpc/opal/hotplug-aperture.txt
new file mode 100644
index 0000000..b8dffaa
--- /dev/null
+++ b/Documentation/devicetree/bindings/powerpc/opal/hotplug-aperture.txt
@@ -0,0 +1,26 @@
+Designated hotplug memory
+-------------------------
+
+This binding describes a region of hotplug memory which is not present at boot,
+allowing its eventual NUMA associativity to be prespecified.
+
+Required properties:
+
+- compatible
+ "ibm,hotplug-aperture"
+
+- reg
+ base address and size of the region (standard definition)
+
+- ibm,associativity
+ NUMA associativity (standard definition)
+
+Example:
+
+A 2 GiB aperture at 0x100000000, to be part of nid 3 when hotplugged:
+
+ hotplug-memory@100000000 {
+ compatible = "ibm,hotplug-aperture";
+ reg = <0x0 0x100000000 0x0 0x80000000>;
+ ibm,associativity = <0x4 0x0 0x0 0x0 0x3>;
+ };
--
1.8.3.1
[toc] | [next] | [standalone]
| From | Rob Herring <robh@kernel.org> |
|---|---|
| Date | 2016-08-10 22:30 +0200 |
| Message-ID | <s4Iit-1wh-1@gated-at.bofh.it> |
| In reply to | #1457972 |
On Mon, Aug 08, 2016 at 01:27:20PM -0500, Reza Arbab wrote: > Signed-off-by: Reza Arbab <arbab@linux.vnet.ibm.com> > --- > .../bindings/powerpc/opal/hotplug-aperture.txt | 26 ++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > create mode 100644 Documentation/devicetree/bindings/powerpc/opal/hotplug-aperture.txt Acked-by: Rob Herring <robh@kernel.org>
[toc] | [prev] | [next] | [standalone]
| From | Balbir Singh <bsingharora@gmail.com> |
|---|---|
| Date | 2016-08-11 06:20 +0200 |
| Message-ID | <s4PDk-6lk-9@gated-at.bofh.it> |
| In reply to | #1457972 |
On 09/08/16 04:27, Reza Arbab wrote:
> Signed-off-by: Reza Arbab <arbab@linux.vnet.ibm.com>
> ---
> .../bindings/powerpc/opal/hotplug-aperture.txt | 26 ++++++++++++++++++++++
> 1 file changed, 26 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/powerpc/opal/hotplug-aperture.txt
>
> diff --git a/Documentation/devicetree/bindings/powerpc/opal/hotplug-aperture.txt b/Documentation/devicetree/bindings/powerpc/opal/hotplug-aperture.txt
> new file mode 100644
> index 0000000..b8dffaa
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/powerpc/opal/hotplug-aperture.txt
> @@ -0,0 +1,26 @@
> +Designated hotplug memory
> +-------------------------
> +
> +This binding describes a region of hotplug memory which is not present at boot,
> +allowing its eventual NUMA associativity to be prespecified.
> +
> +Required properties:
> +
> +- compatible
> + "ibm,hotplug-aperture"
> +
> +- reg
> + base address and size of the region (standard definition)
> +
> +- ibm,associativity
> + NUMA associativity (standard definition)
> +
> +Example:
> +
> +A 2 GiB aperture at 0x100000000, to be part of nid 3 when hotplugged:
> +
> + hotplug-memory@100000000 {
> + compatible = "ibm,hotplug-aperture";
> + reg = <0x0 0x100000000 0x0 0x80000000>;
> + ibm,associativity = <0x4 0x0 0x0 0x0 0x3>;
> + };
>
+Stewart and Alistair
Looks good to me!
Acked-by: Balbir Singh <bsingharora@gmail.com>
[toc] | [prev] | [next] | [standalone]
| From | Stewart Smith <stewart@linux.vnet.ibm.com> |
|---|---|
| Date | 2016-08-11 06:40 +0200 |
| Message-ID | <s4PWF-6vl-7@gated-at.bofh.it> |
| In reply to | #1460160 |
Balbir Singh <bsingharora@gmail.com> writes: > On 09/08/16 04:27, Reza Arbab wrote: >> Signed-off-by: Reza Arbab <arbab@linux.vnet.ibm.com> >> --- >> .../bindings/powerpc/opal/hotplug-aperture.txt | 26 ++++++++++++++++++++++ >> 1 file changed, 26 insertions(+) >> create mode 100644 >> Documentation/devicetree/bindings/powerpc/opal/hotplug-aperture.txt Forgive me for being absent on the whole discussion here, but is this an OPAL specific binding? If so, shouldn't the docs also appear in the skiboot tree? -- Stewart Smith OPAL Architect, IBM.
[toc] | [prev] | [next] | [standalone]
| From | Reza Arbab <arbab@linux.vnet.ibm.com> |
|---|---|
| Date | 2016-08-11 20:00 +0200 |
| Message-ID | <s52qR-70j-11@gated-at.bofh.it> |
| In reply to | #1460166 |
On Thu, Aug 11, 2016 at 02:39:23PM +1000, Stewart Smith wrote: >Forgive me for being absent on the whole discussion here, but is this >an OPAL specific binding? If so, shouldn't the docs also appear in the >skiboot tree? Good question. I guess it's not necessarily OPAL-specific, even though OPAL may initially be the only implementor of the binding. Would it be more appropriate to move the file up a directory, directly under Documentation/devicetree/bindings/powerpc? I hesitated at that because the binding is tied to "ibm,associativity". -- Reza Arbab
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web