dt-bindings: thermal: Describe Armada AP806 and CP110
authorBaruch Siach <baruch@tkos.co.il>
Fri, 22 Dec 2017 16:14:03 +0000 (17:14 +0100)
committerEduardo Valentin <edubezval@gmail.com>
Mon, 1 Jan 2018 20:28:20 +0000 (12:28 -0800)
Add compatible strings for AP806 and CP110 that are part of the Armada
8k/7k line of SoCs.

Add a note on the differences in the size of the control area in
different bindings. This is an existing difference between the Armada
375 binding and the other boards already supported. The new AP806 and
CP110 bindings are similar to the existing Armada 375 in this regard.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
[<miquel.raynal@free-electrons.com>: reword, additional details]
Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Documentation/devicetree/bindings/thermal/armada-thermal.txt

index 24aacf8948c51626a22d844ddd95f752da4206f3..e0d013a2e66da64999935d94f832f4d49e88ba90 100644 (file)
@@ -2,22 +2,35 @@
 
 Required properties:
 
-- compatible:  Should be set to one of the following:
-               marvell,armada370-thermal
-               marvell,armada375-thermal
-               marvell,armada380-thermal
-               marvell,armadaxp-thermal
+- compatible: Should be set to one of the following:
+    * marvell,armada370-thermal
+    * marvell,armada375-thermal
+    * marvell,armada380-thermal
+    * marvell,armadaxp-thermal
+    * marvell,armada-ap806-thermal
+    * marvell,armada-cp110-thermal
 
-- reg:         Device's register space.
-               Two entries are expected, see the examples below.
-               The first one is required for the sensor register;
-               the second one is required for the control register
-               to be used for sensor initialization (a.k.a. calibration).
+- reg: Device's register space.
+  Two entries are expected, see the examples below. The first one points
+  to the status register (4B). The second one points to the control
+  registers (8B).
+  Note: The compatibles marvell,armada370-thermal,
+  marvell,armada380-thermal, and marvell,armadaxp-thermal must point to
+  "control MSB/control 1", with size of 4 (deprecated binding), or point
+  to "control LSB/control 0" with size of 8 (current binding). All other
+  compatibles must point to "control LSB/control 0" with size of 8.
 
-Example:
+Examples:
 
+       /* Legacy bindings */
        thermal@d0018300 {
                compatible = "marvell,armada370-thermal";
-                reg = <0xd0018300 0x4
+               reg = <0xd0018300 0x4
                       0xd0018304 0x4>;
        };
+
+       ap_thermal: thermal@6f8084 {
+               compatible = "marvell,armada-ap806-thermal";
+               reg = <0x6f808C 0x4>,
+                     <0x6f8084 0x8>;
+       };