mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 17:41:29 +00:00
23 lines
603 B
Plaintext
23 lines
603 B
Plaintext
|
* Marvell MVEBU SATA PHY
|
||
|
|
||
|
Power control for the SATA phy found on Marvell MVEBU SoCs.
|
||
|
|
||
|
This document extends the binding described in phy-bindings.txt
|
||
|
|
||
|
Required properties :
|
||
|
|
||
|
- reg : Offset and length of the register set for the SATA device
|
||
|
- compatible : Should be "marvell,mvebu-sata-phy"
|
||
|
- clocks : phandle of clock and specifier that supplies the device
|
||
|
- clock-names : Should be "sata"
|
||
|
|
||
|
Example:
|
||
|
sata-phy@84000 {
|
||
|
compatible = "marvell,mvebu-sata-phy";
|
||
|
reg = <0x84000 0x0334>;
|
||
|
clocks = <&gate_clk 15>;
|
||
|
clock-names = "sata";
|
||
|
#phy-cells = <0>;
|
||
|
status = "ok";
|
||
|
};
|