-
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.
This patch adds device tree support to ohci-nxp.c Signed-off-by: Roland Stigge <stigge@antcom.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
Roland Stigge
authored and
Greg Kroah-Hartman
committed
May 1, 2012
1 parent
a6a99cf
commit 2265efe
Showing
2 changed files
with
26 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,16 @@ | ||
* OHCI controller, NXP ohci-nxp variant | ||
|
||
Required properties: | ||
- compatible: must be "nxp,ohci-nxp" | ||
- reg: physical base address of the controller and length of memory mapped | ||
region. | ||
- interrupts: The OHCI interrupt | ||
|
||
Example (LPC32xx): | ||
|
||
ohci@31020000 { | ||
compatible = "nxp,ohci-nxp"; | ||
reg = <0x31020000 0x300>; | ||
interrupt-parent = <&mic>; | ||
interrupts = <0x3b 0>; | ||
}; |
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