Skip to content

Commit

Permalink
Documentation: bindings: Add the regulator property to the sub-nodes …
Browse files Browse the repository at this point in the history
…AHCI bindings

It is now possible to use a regulator property for each port of the
AHCI controller.

Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
  • Loading branch information
Gregory CLEMENT authored and Tejun Heo committed Jan 19, 2015
1 parent 6033798 commit 6bd1599
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Documentation/devicetree/bindings/ata/ahci-platform.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ Required properties when using sub-nodes:


Sub-nodes required properties:
- reg : the port number
- phys : reference to the SATA PHY node

- reg : the port number
And at least one of the following properties:
- phys : reference to the SATA PHY node
- target-supply : regulator for SATA target power

Examples:
sata@ffe08000 {
Expand Down Expand Up @@ -68,10 +69,12 @@ With sub-nodes:
sata0: sata-port@0 {
reg = <0>;
phys = <&sata_phy 0>;
target-supply = <&reg_sata0>;
};

sata1: sata-port@1 {
reg = <1>;
phys = <&sata_phy 1>;
target-supply = <&reg_sata1>;;
};
};

0 comments on commit 6bd1599

Please sign in to comment.