cdns,uart.txt 746 B

1234567891011121314151617181920212223
  1. Binding for Cadence UART Controller
  2. Required properties:
  3. - compatible :
  4. Use "xlnx,xuartps","cdns,uart-r1p8" for Zynq-7xxx SoC.
  5. Use "xlnx,zynqmp-uart","cdns,uart-r1p12" for Zynq Ultrascale+ MPSoC.
  6. - reg: Should contain UART controller registers location and length.
  7. - interrupts: Should contain UART controller interrupts.
  8. - clocks: Must contain phandles to the UART clocks
  9. See ../clocks/clock-bindings.txt for details.
  10. - clock-names: Tuple to identify input clocks, must contain "uart_clk" and "pclk"
  11. See ../clocks/clock-bindings.txt for details.
  12. Example:
  13. uart@e0000000 {
  14. compatible = "cdns,uart-r1p8";
  15. clocks = <&clkc 23>, <&clkc 40>;
  16. clock-names = "uart_clk", "pclk";
  17. reg = <0xE0000000 0x1000>;
  18. interrupts = <0 27 4>;
  19. };