qca,ar9330-uart.txt 671 B

12345678910111213141516171819202122232425262728293031
  1. * Qualcomm Atheros AR9330 High-Speed UART
  2. Required properties:
  3. - compatible: Must be "qca,ar9330-uart"
  4. - reg: Specifies the physical base address of the controller and
  5. the length of the memory mapped region.
  6. - interrupts: Specifies the interrupt source of the parent interrupt
  7. controller. The format of the interrupt specifier depends on the
  8. parent interrupt controller.
  9. Additional requirements:
  10. Each UART port must have an alias correctly numbered in "aliases"
  11. node.
  12. Example:
  13. aliases {
  14. serial0 = &uart0;
  15. };
  16. uart0: uart@18020000 {
  17. compatible = "qca,ar9330-uart";
  18. reg = <0x18020000 0x14>;
  19. interrupt-parent = <&intc>;
  20. interrupts = <3>;
  21. };