0001 * MSM Serial UART
0002
0003 The MSM serial UART hardware is designed for low-speed use cases where a
0004 dma-engine isn't needed. From a software perspective it's mostly compatible
0005 with the MSM serial UARTDM except that it only supports reading and writing one
0006 character at a time.
0007
0008 Required properties:
0009 - compatible: Should contain "qcom,msm-uart"
0010 - reg: Should contain UART register location and length.
0011 - interrupts: Should contain UART interrupt.
0012 - clocks: Should contain the core clock.
0013 - clock-names: Should be "core".
0014
0015 Example:
0016
0017 A uart device at 0xa9c00000 with interrupt 11.
0018
0019 serial@a9c00000 {
0020 compatible = "qcom,msm-uart";
0021 reg = <0xa9c00000 0x1000>;
0022 interrupts = <11>;
0023 clocks = <&uart_cxc>;
0024 clock-names = "core";
0025 };