cdns,uart.txt 664 B

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