diff options
author | Suraj Jitindar Singh <sjitindarsingh@gmail.com> | 2016-06-29 13:38:37 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-06-29 17:33:17 +1000 |
commit | 1ae88fd54c3ac31f68f91e37f719be7e2dbcc810 (patch) | |
tree | 8d26182fad283eaec03711e23626f9a048986b89 | |
parent | ad42de859ff14c079e966e61cbcba85265b982e1 (diff) | |
download | blackbird-obmc-linux-1ae88fd54c3ac31f68f91e37f719be7e2dbcc810.tar.gz blackbird-obmc-linux-1ae88fd54c3ac31f68f91e37f719be7e2dbcc810.zip |
devicetree/bindings: Add binding for operator panel on FSP machines
Add a binding to Documentation/devicetree/bindings/powerpc/opal
(oppanel-opal.txt) for the operator panel which is present on IBM
Power Systems machines with FSPs.
Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
Acked-by: Rob Herring <robh@kernel.org>
Acked-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-rw-r--r-- | Documentation/devicetree/bindings/powerpc/opal/oppanel-opal.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/powerpc/opal/oppanel-opal.txt b/Documentation/devicetree/bindings/powerpc/opal/oppanel-opal.txt new file mode 100644 index 000000000000..dffb79108b61 --- /dev/null +++ b/Documentation/devicetree/bindings/powerpc/opal/oppanel-opal.txt @@ -0,0 +1,14 @@ +IBM OPAL Operator Panel Binding +------------------------------- + +Required properties: +- compatible : Should be "ibm,opal-oppanel". +- #lines : Number of lines on the operator panel e.g. <0x2>. +- #length : Number of characters per line of the operator panel e.g. <0x10>. + +Example: + oppanel { + compatible = "ibm,opal-oppanel"; + #lines = <0x2>; + #length = <0x10>; + }; |