qcom,msm-uart.txt 717 B

12345678910111213141516171819202122232425
  1. * MSM Serial UART
  2. The MSM serial UART hardware is designed for low-speed use cases where a
  3. dma-engine isn't needed. From a software perspective it's mostly compatible
  4. with the MSM serial UARTDM except that it only supports reading and writing one
  5. character at a time.
  6. Required properties:
  7. - compatible: Should contain "qcom,msm-uart"
  8. - reg: Should contain UART register location and length.
  9. - interrupts: Should contain UART interrupt.
  10. - clocks: Should contain the core clock.
  11. - clock-names: Should be "core".
  12. Example:
  13. A uart device at 0xa9c00000 with interrupt 11.
  14. serial@a9c00000 {
  15. compatible = "qcom,msm-uart";
  16. reg = <0xa9c00000 0x1000>;
  17. interrupts = <11>;
  18. clocks = <&uart_cxc>;
  19. clock-names = "core";
  20. };