msm_serial.txt 845 B

123456789101112131415161718192021222324252627
  1. * Qualcomm MSM UART
  2. Required properties:
  3. - compatible :
  4. - "qcom,msm-uart", and one of "qcom,msm-hsuart" or
  5. "qcom,msm-lsuart".
  6. - reg : offset and length of the register set for the device
  7. for the hsuart operating in compatible mode, there should be a
  8. second pair describing the gsbi registers.
  9. - interrupts : should contain the uart interrupt.
  10. There are two different UART blocks used in MSM devices,
  11. "qcom,msm-hsuart" and "qcom,msm-lsuart". The msm-serial driver is
  12. able to handle both of these, and matches against the "qcom,msm-uart"
  13. as the compatibility.
  14. The registers for the "qcom,msm-hsuart" device need to specify both
  15. register blocks, even for the common driver.
  16. Example:
  17. uart@19c400000 {
  18. compatible = "qcom,msm-hsuart", "qcom,msm-uart";
  19. reg = <0x19c40000 0x1000>,
  20. <0x19c00000 0x1000>;
  21. interrupts = <195>;
  22. };