arc-uart.txt 632 B

1234567891011121314151617181920212223242526
  1. * Synopsys ARC UART : Non standard UART used in some of the ARC FPGA boards
  2. Required properties:
  3. - compatible : "snps,arc-uart"
  4. - reg : offset and length of the register set for the device.
  5. - interrupts : device interrupt
  6. - clock-frequency : the input clock frequency for the UART
  7. - current-speed : baud rate for UART
  8. e.g.
  9. arcuart0: serial@c0fc1000 {
  10. compatible = "snps,arc-uart";
  11. reg = <0xc0fc1000 0x100>;
  12. interrupts = <5>;
  13. clock-frequency = <80000000>;
  14. current-speed = <115200>;
  15. status = "okay";
  16. };
  17. Note: Each port should have an alias correctly numbered in "aliases" node.
  18. e.g.
  19. aliases {
  20. serial0 = &arcuart0;
  21. };