1Binding for Xilinx Uartlite Controller
2
3Required properties:
4- compatible : should be "xlnx,xps-uartlite-1.00.a", or "xlnx,opb-uartlite-1.00.b"
5- reg: Should contain UART controller registers location and length.
6- interrupts: Should contain UART controller interrupts.
7
8Example:
9	serial@40600000 {
10		compatible = "xlnx,xps-uartlite-1.00.a";
11		interrupts = <1 0>;
12		reg = <0x40600000 0x10000>;
13	};
14