| 1 | From ed881db69430dd62765d02e2f4f1321ddc2f5fb5 Mon Sep 17 00:00:00 2001 |
| 2 | From: John Crispin <blogic@openwrt.org> |
| 3 | Date: Fri, 20 Jul 2012 18:58:34 +0200 |
| 4 | Subject: [PATCH 110/123] Document: devicetree: add OF documents for lantiq |
| 5 | serial port |
| 6 | |
| 7 | Signed-off-by: John Crispin <blogic@openwrt.org> |
| 8 | Cc: Rob Herring <rob.herring@calxeda.com> |
| 9 | Cc: devicetree-discuss@lists.ozlabs.org |
| 10 | --- |
| 11 | .../devicetree/bindings/serial/lantiq_asc.txt | 16 ++++++++++++++++ |
| 12 | 1 file changed, 16 insertions(+) |
| 13 | create mode 100644 Documentation/devicetree/bindings/serial/lantiq_asc.txt |
| 14 | |
| 15 | diff --git a/Documentation/devicetree/bindings/serial/lantiq_asc.txt b/Documentation/devicetree/bindings/serial/lantiq_asc.txt |
| 16 | new file mode 100644 |
| 17 | index 0000000..5b78591 |
| 18 | --- /dev/null |
| 19 | +++ b/Documentation/devicetree/bindings/serial/lantiq_asc.txt |
| 20 | @@ -0,0 +1,16 @@ |
| 21 | +Lantiq SoC ASC serial controller |
| 22 | + |
| 23 | +Required properties: |
| 24 | +- compatible : Should be "lantiq,asc" |
| 25 | +- reg : Address and length of the register set for the device |
| 26 | +- interrupts: the 3 (tx rx err) interrupt numbers. The interrupt specifier |
| 27 | + depends on the interrupt-parent interrupt controller. |
| 28 | + |
| 29 | +Example: |
| 30 | + |
| 31 | +asc1: serial@E100C00 { |
| 32 | + compatible = "lantiq,asc"; |
| 33 | + reg = <0xE100C00 0x400>; |
| 34 | + interrupt-parent = <&icu0>; |
| 35 | + interrupts = <112 113 114>; |
| 36 | +}; |
| 37 | -- |
| 38 | 1.7.10.4 |
| 39 | |
| 40 | |