mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-15 12:26:46 +07:00
4da722ca19
Pretty much any node can have a status property, so it doesn't need to be in examples. Converted with the following command and removed examples with SoC and board specific splits: git grep -l -E 'status.*=.*' Documentation/devicetree/ | xargs sed -i -E '/\sstatus.*=.*"(disabled|ok|okay)/d' Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Rob Herring <robh@kernel.org>
24 lines
635 B
Plaintext
24 lines
635 B
Plaintext
* Marvell Armada 370/375/380/XP thermal management
|
|
|
|
Required properties:
|
|
|
|
- compatible: Should be set to one of the following:
|
|
marvell,armada370-thermal
|
|
marvell,armada375-thermal
|
|
marvell,armada380-thermal
|
|
marvell,armadaxp-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).
|
|
|
|
Example:
|
|
|
|
thermal@d0018300 {
|
|
compatible = "marvell,armada370-thermal";
|
|
reg = <0xd0018300 0x4
|
|
0xd0018304 0x4>;
|
|
};
|