digicolor-usart.txt 806 B

123456789101112131415161718192021222324252627
  1. Binding for Conexant Digicolor USART
  2. Note: this binding is only applicable for using the USART peripheral as
  3. UART. USART also support synchronous serial protocols like SPI and I2S. Use
  4. the binding that matches the wiring of your system.
  5. Required properties:
  6. - compatible : should be "cnxt,cx92755-usart".
  7. - reg: Should contain USART controller registers location and length.
  8. - interrupts: Should contain a single USART controller interrupt.
  9. - clocks: Must contain phandles to the USART clock
  10. See ../clocks/clock-bindings.txt for details.
  11. Note: Each UART port should have an alias correctly numbered
  12. in "aliases" node.
  13. Example:
  14. aliases {
  15. serial0 = &uart0;
  16. };
  17. uart0: uart@f0000740 {
  18. compatible = "cnxt,cx92755-usart";
  19. reg = <0xf0000740 0x20>;
  20. clocks = <&main_clk>;
  21. interrupts = <44>;
  22. };