-
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 support to ASC (asynchronous serial controller) driver, which is basically a standard serial driver. This IP is common across all the ST parts for settop box platforms. ASC is embedded in ST COMMS IP block. It supports Rx & Tx functionality. It support all industry standard baud rates. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com> CC: Stephen Gallimore <stephen.gallimore@st.com> CC: Stuart Menefy <stuart.menefy@st.com> CC: Arnd Bergmann <arnd@arndb.de> CC: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
Srinivas Kandagatla
authored and
Greg Kroah-Hartman
committed
Jul 26, 2013
1 parent
75e66aa
commit c4b0585
Showing
5 changed files
with
975 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,18 @@ | ||
*st-asc(Serial Port) | ||
|
||
Required properties: | ||
- compatible : Should be "st,asc". | ||
- reg, reg-names, interrupts, interrupt-names : Standard way to define device | ||
resources with names. look in | ||
Documentation/devicetree/bindings/resource-names.txt | ||
|
||
Optional properties: | ||
- st,hw-flow-ctrl bool flag to enable hardware flow control. | ||
- st,force-m1 bool flat to force asc to be in Mode-1 recommeded | ||
for high bit rates (above 19.2K) | ||
Example: | ||
serial@fe440000{ | ||
compatible = "st,asc"; | ||
reg = <0xfe440000 0x2c>; | ||
interrupts = <0 209 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
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
Oops, something went wrong.