nvidia,tegra20-hsuart.txt 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. NVIDIA Tegra20/Tegra30 high speed (DMA based) UART controller driver.
  2. Required properties:
  3. - compatible : should be "nvidia,tegra30-hsuart", "nvidia,tegra20-hsuart".
  4. - reg: Should contain UART controller registers location and length.
  5. - interrupts: Should contain UART controller interrupts.
  6. - clocks: Must contain one entry, for the module clock.
  7. See ../clocks/clock-bindings.txt for details.
  8. - resets : Must contain an entry for each entry in reset-names.
  9. See ../reset/reset.txt for details.
  10. - reset-names : Must include the following entries:
  11. - serial
  12. - dmas : Must contain an entry for each entry in clock-names.
  13. See ../dma/dma.txt for details.
  14. - dma-names : Must include the following entries:
  15. - rx
  16. - tx
  17. Optional properties:
  18. - nvidia,enable-modem-interrupt: Enable modem interrupts. Should be enable
  19. only if all 8 lines of UART controller are pinmuxed.
  20. Example:
  21. serial@70006000 {
  22. compatible = "nvidia,tegra30-hsuart", "nvidia,tegra20-hsuart";
  23. reg = <0x70006000 0x40>;
  24. reg-shift = <2>;
  25. interrupts = <0 36 0x04>;
  26. nvidia,enable-modem-interrupt;
  27. clocks = <&tegra_car 6>;
  28. resets = <&tegra_car 6>;
  29. reset-names = "serial";
  30. dmas = <&apbdma 8>, <&apbdma 8>;
  31. dma-names = "rx", "tx";
  32. status = "disabled";
  33. };