axis,etraxfs-uart.txt 577 B

1234567891011121314151617181920212223
  1. ETRAX FS UART
  2. Required properties:
  3. - compatible : "axis,etraxfs-uart"
  4. - reg: offset and length of the register set for the device.
  5. - interrupts: device interrupt
  6. Optional properties:
  7. - {dtr,dsr,rng,dcd}-gpios: specify a GPIO for DTR/DSR/RI/DCD
  8. line respectively.
  9. Example:
  10. serial@b00260000 {
  11. compatible = "axis,etraxfs-uart";
  12. reg = <0xb0026000 0x1000>;
  13. interrupts = <68>;
  14. status = "disabled";
  15. dtr-gpios = <&sysgpio 0 GPIO_ACTIVE_LOW>;
  16. dsr-gpios = <&sysgpio 1 GPIO_ACTIVE_LOW>;
  17. rng-gpios = <&sysgpio 2 GPIO_ACTIVE_LOW>;
  18. dcd-gpios = <&sysgpio 3 GPIO_ACTIVE_LOW>;
  19. };