qca,ar9330-uart.txt 777 B

12345678910111213141516171819202122232425262728293031323334
  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. - interrupt-parent: The phandle for the interrupt controller that
  7. services interrupts for this device.
  8. - interrupts: Specifies the interrupt source of the parent interrupt
  9. controller. The format of the interrupt specifier depends on the
  10. parent interrupt controller.
  11. Additional requirements:
  12. Each UART port must have an alias correctly numbered in "aliases"
  13. node.
  14. Example:
  15. aliases {
  16. serial0 = &uart0;
  17. };
  18. uart0: uart@18020000 {
  19. compatible = "qca,ar9330-uart";
  20. reg = <0x18020000 0x14>;
  21. interrupt-parent = <&intc>;
  22. interrupts = <3>;
  23. };