mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 02:51:44 +00:00
b4bca24957
Since the Armada 38x PMSU registers are slightly different than the Armada 370/XP PMSU ones, we introduce a new compatible string "armada-380-pmsu" in the PMSU driver. These differences are not visible for the current usage of the PMSU, but they might become visible in the future. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Link: https://lkml.kernel.org/r/1397483648-26611-8-git-send-email-thomas.petazzoni@free-electrons.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
22 lines
567 B
Plaintext
22 lines
567 B
Plaintext
Power Management Service Unit(PMSU)
|
|
-----------------------------------
|
|
Available on Marvell SOCs: Armada 370, Armada 38x and Armada XP
|
|
|
|
Required properties:
|
|
|
|
- compatible: should be one of:
|
|
- "marvell,armada-370-pmsu" for Armada 370 or Armada XP
|
|
- "marvell,armada-380-pmsu" for Armada 38x
|
|
- "marvell,armada-370-xp-pmsu" was used for Armada 370/XP but is now
|
|
deprecated and will be removed
|
|
|
|
- reg: Should contain PMSU registers location and length.
|
|
|
|
Example:
|
|
|
|
armada-370-xp-pmsu@22000 {
|
|
compatible = "marvell,armada-370-pmsu";
|
|
reg = <0x22000 0x1000>;
|
|
};
|
|
|