mtk-uart.txt 640 B

12345678910111213141516171819202122
  1. * Mediatek Universal Asynchronous Receiver/Transmitter (UART)
  2. Required properties:
  3. - compatible should contain:
  4. * "mediatek,mt6589-uart" for MT6589 compatible UARTS
  5. * "mediatek,mt6582-uart" for MT6582 compatible UARTS
  6. * "mediatek,mt6577-uart" for all compatible UARTS (MT6589, MT6582, MT6577)
  7. - reg: The base address of the UART register bank.
  8. - interrupts: A single interrupt specifier.
  9. - clocks: Clock driving the hardware.
  10. Example:
  11. uart0: serial@11006000 {
  12. compatible = "mediatek,mt6589-uart", "mediatek,mt6577-uart";
  13. reg = <0x11006000 0x400>;
  14. interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_LOW>;
  15. clocks = <&uart_clk>;
  16. };