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

dt-bindings: document the MPS2 UART bindings

This adds documentation of device tree bindings for the
UART found on ARM MPS2 platform

Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Vladimir Murzin and committed by
Greg Kroah-Hartman
8a872e77 7f60830a

+19
+19
Documentation/devicetree/bindings/serial/arm,mps2-uart.txt
··· 1 + ARM MPS2 UART 2 + 3 + Required properties: 4 + - compatible : Should be "arm,mps2-uart" 5 + - reg : Address and length of the register set 6 + - interrupts : Reference to the UART RX, TX and overrun interrupts 7 + 8 + Required clocking property: 9 + - clocks : The input clock of the UART 10 + 11 + 12 + Examples: 13 + 14 + uart0: serial@40004000 { 15 + compatible = "arm,mps2-uart"; 16 + reg = <0x40004000 0x1000>; 17 + interrupts = <0 1 12>; 18 + clocks = <&sysclk>; 19 + };