diff options
author | John Crispin <blogic@openwrt.org> | 2012-07-20 12:58:34 -0400 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2013-02-16 19:25:28 -0500 |
commit | 247796175ea5dc7c838e8e76a14795fb09360649 (patch) | |
tree | fd354393e40da35f650de32989c40360bfb4c93c /Documentation | |
parent | 9c099c4e79b67d5578ce8142e6214950be4fcf43 (diff) |
Document: devicetree: add OF documents for lantiq serial port
Signed-off-by: John Crispin <blogic@openwrt.org>
Cc: Rob Herring <rob.herring@calxeda.com>
Cc: devicetree-discuss@lists.ozlabs.org
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/serial/lantiq_asc.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/serial/lantiq_asc.txt b/Documentation/devicetree/bindings/serial/lantiq_asc.txt new file mode 100644 index 000000000000..5b78591aaa46 --- /dev/null +++ b/Documentation/devicetree/bindings/serial/lantiq_asc.txt | |||
@@ -0,0 +1,16 @@ | |||
1 | Lantiq SoC ASC serial controller | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : Should be "lantiq,asc" | ||
5 | - reg : Address and length of the register set for the device | ||
6 | - interrupts: the 3 (tx rx err) interrupt numbers. The interrupt specifier | ||
7 | depends on the interrupt-parent interrupt controller. | ||
8 | |||
9 | Example: | ||
10 | |||
11 | asc1: serial@E100C00 { | ||
12 | compatible = "lantiq,asc"; | ||
13 | reg = <0xE100C00 0x400>; | ||
14 | interrupt-parent = <&icu0>; | ||
15 | interrupts = <112 113 114>; | ||
16 | }; | ||