mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 18:47:56 +07:00
aa1facbd28
Describe the binding for the Marvell MVEBU SATA phy. This driver can be used at least with Kirkwood, Dove and maybe others. Additionally, update the SATA binding with the properties to link to the phy nodes. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Acked-by: Jason Cooper <jason@lakedaemon.net> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
23 lines
567 B
Plaintext
23 lines
567 B
Plaintext
* Marvell Orion SATA
|
|
|
|
Required Properties:
|
|
- compatibility : "marvell,orion-sata" or "marvell,armada-370-sata"
|
|
- reg : Address range of controller
|
|
- interrupts : Interrupt controller is using
|
|
- nr-ports : Number of SATA ports in use.
|
|
|
|
Optional Properties:
|
|
- phys : List of phandles to sata phys
|
|
- phy-names : Should be "0", "1", etc, one number per phandle
|
|
|
|
Example:
|
|
|
|
sata@80000 {
|
|
compatible = "marvell,orion-sata";
|
|
reg = <0x80000 0x5000>;
|
|
interrupts = <21>;
|
|
phys = <&sata_phy0>, <&sata_phy1>;
|
|
phy-names = "0", "1";
|
|
nr-ports = <2>;
|
|
}
|