Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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

+16
+16
Documentation/devicetree/bindings/serial/lantiq_asc.txt
··· 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 + };