diff options
author | Tony Prisk <linux@prisktech.co.nz> | 2014-01-23 01:30:28 -0500 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2014-01-23 10:15:01 -0500 |
commit | a7e0edde16a306350be6dac0232f4b0ede81dd5e (patch) | |
tree | 5c3b625561b6786f36f0cf1e02520133d1fe7133 | |
parent | 619d144013cb30a19d1dfa8294fbe29fcc2c2363 (diff) |
serial: vt8500: Add missing binding document for arch-vt8500 serial driver.
The binding document for the vt8500/wm8xxx SoC UART driver is missing.
This patch adds the binding document.
Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
Signed-off-by: Rob Herring <robh@kernel.org>
-rw-r--r-- | Documentation/devicetree/bindings/serial/vt8500-uart.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/serial/vt8500-uart.txt b/Documentation/devicetree/bindings/serial/vt8500-uart.txt new file mode 100644 index 000000000000..795c393d09c4 --- /dev/null +++ b/Documentation/devicetree/bindings/serial/vt8500-uart.txt | |||
@@ -0,0 +1,26 @@ | |||
1 | * VIA VT8500 and WonderMedia WM8xxx UART Controller | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: should be "via,vt8500-uart" | ||
5 | |||
6 | - reg: base physical address of the controller and length of memory mapped | ||
7 | region. | ||
8 | |||
9 | - interrupts: hardware interrupt number | ||
10 | |||
11 | - clocks: shall be the input parent clock phandle for the clock. This should | ||
12 | be the 24Mhz reference clock. | ||
13 | |||
14 | Aliases may be defined to ensure the correct ordering of the uarts. | ||
15 | |||
16 | Example: | ||
17 | aliases { | ||
18 | serial0 = &uart0; | ||
19 | }; | ||
20 | |||
21 | uart0: serial@d8200000 { | ||
22 | compatible = "via,vt8500-uart"; | ||
23 | reg = <0xd8200000 0x1040>; | ||
24 | interrupts = <32>; | ||
25 | clocks = <&clkuart0>; | ||
26 | }; | ||