-
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.
serial: mxs-auart: Allow device tree probing
Allow device tree probing. Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Rob Herring <rob.herring@calxeda.com> Cc: Alan Cox <alan@linux.intel.com> Cc: <linux-serial@vger.kernel.org> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Subodh Nijsure <snijsure@grid-net.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
- Loading branch information
Fabio Estevam
authored and
Shawn Guo
committed
Jul 3, 2012
1 parent
a217c46
commit 1ea6607
Showing
2 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
Documentation/devicetree/bindings/tty/serial/fsl-mxs-auart.txt
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,27 @@ | ||
* Freescale MXS Application UART (AUART) | ||
|
||
Required properties: | ||
- compatible : Should be "fsl,<soc>-auart". The supported SoCs include | ||
imx23 and imx28. | ||
- reg : Address and length of the register set for the device | ||
- interrupts : Should contain the auart interrupt numbers | ||
|
||
Example: | ||
auart0: serial@8006a000 { | ||
compatible = "fsl,imx28-auart", "fsl,imx23-auart"; | ||
reg = <0x8006a000 0x2000>; | ||
interrupts = <112 70 71>; | ||
}; | ||
|
||
Note: Each auart port should have an alias correctly numbered in "aliases" | ||
node. | ||
|
||
Example: | ||
|
||
aliases { | ||
serial0 = &auart0; | ||
serial1 = &auart1; | ||
serial2 = &auart2; | ||
serial3 = &auart3; | ||
serial4 = &auart4; | ||
}; |
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