-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: EXYNOS: DT Support for SATA and SATA PHY
This patch adds Device Nodes for SATA and SATA PHY device. Signed-off-by: Vasanth Ananthan <vasanth.a@samsung.com> [kgene.kim@samsung.com: removed address definitions as per comments] Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
- Loading branch information
Vasanth Ananthan
authored and
Kukjin Kim
committed
Nov 20, 2012
1 parent
d36bb0f
commit c47d244
Showing
5 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
* Samsung SATA PHY Controller | ||
|
||
SATA PHY nodes are defined to describe on-chip SATA Physical layer controllers. | ||
Each SATA PHY controller should have its own node. | ||
|
||
Required properties: | ||
- compatible : compatible list, contains "samsung,exynos5-sata-phy" | ||
- reg : <registers mapping> | ||
|
||
Example: | ||
sata@ffe07000 { | ||
compatible = "samsung,exynos5-sata-phy"; | ||
reg = <0xffe07000 0x1000>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
* Samsung AHCI SATA Controller | ||
|
||
SATA nodes are defined to describe on-chip Serial ATA controllers. | ||
Each SATA controller should have its own node. | ||
|
||
Required properties: | ||
- compatible : compatible list, contains "samsung,exynos5-sata" | ||
- interrupts : <interrupt mapping for SATA IRQ> | ||
- reg : <registers mapping> | ||
- samsung,sata-freq : <frequency in MHz> | ||
|
||
Example: | ||
sata@ffe08000 { | ||
compatible = "samsung,exynos5-sata"; | ||
reg = <0xffe08000 0x1000>; | ||
interrupts = <115>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters