Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 6bf4ca7fbc85d80446ac01c0d1d77db4d91a6d84 authored by Greg Kroah-Hartman on 23 September 2018, 17:15:18 UTC
Linux 4.19-rc5
Tip revision: 6bf4ca7
marvell.txt
* 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>;
	}
back to top