diff options
Diffstat (limited to 'Documentation/devicetree/bindings/serial/cirrus,clps711x-uart.txt')
-rw-r--r-- | Documentation/devicetree/bindings/serial/cirrus,clps711x-uart.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/serial/cirrus,clps711x-uart.txt b/Documentation/devicetree/bindings/serial/cirrus,clps711x-uart.txt index 12f3cf834deb..caaeb2583579 100644 --- a/Documentation/devicetree/bindings/serial/cirrus,clps711x-uart.txt +++ b/Documentation/devicetree/bindings/serial/cirrus,clps711x-uart.txt | |||
@@ -8,7 +8,8 @@ Required properties: | |||
8 | - syscon: Phandle to SYSCON node, which contain UART control bits. | 8 | - syscon: Phandle to SYSCON node, which contain UART control bits. |
9 | 9 | ||
10 | Optional properties: | 10 | Optional properties: |
11 | - uart-use-ms: Indicate the UART has modem signal (DCD, DSR, CTS). | 11 | - {rts,cts,dtr,dsr,rng,dcd}-gpios: specify a GPIO for RTS/CTS/DTR/DSR/RI/DCD |
12 | line respectively. | ||
12 | 13 | ||
13 | Note: Each UART port should have an alias correctly numbered | 14 | Note: Each UART port should have an alias correctly numbered |
14 | in "aliases" node. | 15 | in "aliases" node. |
@@ -24,5 +25,7 @@ Example: | |||
24 | interrupts = <12 13>; | 25 | interrupts = <12 13>; |
25 | clocks = <&clks 11>; | 26 | clocks = <&clks 11>; |
26 | syscon = <&syscon1>; | 27 | syscon = <&syscon1>; |
27 | uart-use-ms; | 28 | cts-gpios = <&sysgpio 0 GPIO_ACTIVE_LOW>; |
29 | dsr-gpios = <&sysgpio 1 GPIO_ACTIVE_LOW>; | ||
30 | dcd-gpios = <&sysgpio 2 GPIO_ACTIVE_LOW>; | ||
28 | }; | 31 | }; |