aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2016-11-14 13:37:07 -0500
committerSimon Horman <horms+renesas@verge.net.au>2016-11-23 08:31:16 -0500
commit5384f45cd9714287f198771bfb057eda799af9a8 (patch)
tree724bb5aed2382008f7d3f36ddbb02623285cec4e
parentda65a1589dacc7ec44ea0557a14d70a39d991f32 (diff)
ARM: shmobile: Document DT bindings for Product Register
Add device tree binding documentation for the Product Register (PRR), which provides product and revision information on most Renesas ARM SoCs. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r--Documentation/devicetree/bindings/arm/shmobile.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/shmobile.txt b/Documentation/devicetree/bindings/arm/shmobile.txt
index 2f0b7169f132..23c77315fdac 100644
--- a/Documentation/devicetree/bindings/arm/shmobile.txt
+++ b/Documentation/devicetree/bindings/arm/shmobile.txt
@@ -75,3 +75,21 @@ Boards:
75 compatible = "renesas,silk", "renesas,r8a7794" 75 compatible = "renesas,silk", "renesas,r8a7794"
76 - Wheat 76 - Wheat
77 compatible = "renesas,wheat", "renesas,r8a7792" 77 compatible = "renesas,wheat", "renesas,r8a7792"
78
79
80Most Renesas ARM SoCs have a Product Register that allows to retrieve SoC
81product and revision information. If present, a device node for this register
82should be added.
83
84Required properties:
85 - compatible: Must be "renesas,prr".
86 - reg: Base address and length of the register block.
87
88
89Examples
90--------
91
92 prr: chipid@ff000044 {
93 compatible = "renesas,prr";
94 reg = <0 0xff000044 0 4>;
95 };