-
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: Kirkwood: ehci-orion: Add device tree binding
Based on previous work by Michael Walle and Jason Cooper. Made their work actually work, which required added interrupt from DT and auxdata, along with setting the dma_mask, which DT does not currently do. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Tested-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
- Loading branch information
Andrew Lunn
authored and
Jason Cooper
committed
Nov 24, 2012
1 parent
ec65aed
commit 77dae54
Showing
2 changed files
with
50 additions
and
3 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,15 @@ | ||
* EHCI controller, Orion Marvell variants | ||
|
||
Required properties: | ||
- compatible: must be "marvell,orion-ehci" | ||
- reg: physical base address of the controller and length of memory mapped | ||
region. | ||
- interrupts: The EHCI interrupt | ||
|
||
Example: | ||
|
||
ehci@50000 { | ||
compatible = "marvell,orion-ehci"; | ||
reg = <0x50000 0x1000>; | ||
interrupts = <19>; | ||
}; |
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