renesas,sci-serial.txt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. * Renesas SH-Mobile Serial Communication Interface
  2. Required properties:
  3. - compatible: Must contain one of the following:
  4. - "renesas,scif-r7s72100" for R7S72100 (RZ/A1H) SCIF compatible UART.
  5. - "renesas,scifa-r8a73a4" for R8A73A4 (R-Mobile APE6) SCIFA compatible UART.
  6. - "renesas,scifb-r8a73a4" for R8A73A4 (R-Mobile APE6) SCIFB compatible UART.
  7. - "renesas,scifa-r8a7740" for R8A7740 (R-Mobile A1) SCIFA compatible UART.
  8. - "renesas,scifb-r8a7740" for R8A7740 (R-Mobile A1) SCIFB compatible UART.
  9. - "renesas,scif-r8a7778" for R8A7778 (R-Car M1) SCIF compatible UART.
  10. - "renesas,scif-r8a7779" for R8A7779 (R-Car H1) SCIF compatible UART.
  11. - "renesas,scif-r8a7790" for R8A7790 (R-Car H2) SCIF compatible UART.
  12. - "renesas,scifa-r8a7790" for R8A7790 (R-Car H2) SCIFA compatible UART.
  13. - "renesas,scifb-r8a7790" for R8A7790 (R-Car H2) SCIFB compatible UART.
  14. - "renesas,hscif-r8a7790" for R8A7790 (R-Car H2) HSCIF compatible UART.
  15. - "renesas,scif-r8a7791" for R8A7791 (R-Car M2) SCIF compatible UART.
  16. - "renesas,scifa-r8a7791" for R8A7791 (R-Car M2) SCIFA compatible UART.
  17. - "renesas,scifb-r8a7791" for R8A7791 (R-Car M2) SCIFB compatible UART.
  18. - "renesas,hscif-r8a7791" for R8A7791 (R-Car M2) HSCIF compatible UART.
  19. - "renesas,scif-r8a7794" for R8A7794 (R-Car E2) SCIF compatible UART.
  20. - "renesas,scifa-r8a7794" for R8A7794 (R-Car E2) SCIFA compatible UART.
  21. - "renesas,scifb-r8a7794" for R8A7794 (R-Car E2) SCIFB compatible UART.
  22. - "renesas,hscif-r8a7794" for R8A7794 (R-Car E2) HSCIF compatible UART.
  23. - "renesas,scif-r8a7795" for R8A7795 (R-Car H3) SCIF compatible UART.
  24. - "renesas,hscif-r8a7795" for R8A7795 (R-Car H3) HSCIF compatible UART.
  25. - "renesas,scifa-sh73a0" for SH73A0 (SH-Mobile AG5) SCIFA compatible UART.
  26. - "renesas,scifb-sh73a0" for SH73A0 (SH-Mobile AG5) SCIFB compatible UART.
  27. - "renesas,scif" for generic SCIF compatible UART.
  28. - "renesas,scifa" for generic SCIFA compatible UART.
  29. - "renesas,scifb" for generic SCIFB compatible UART.
  30. - "renesas,hscif" for generic HSCIF compatible UART.
  31. - "renesas,sci" for generic SCI compatible UART.
  32. When compatible with the generic version, nodes must list the
  33. SoC-specific version corresponding to the platform first followed by the
  34. generic version.
  35. - reg: Base address and length of the I/O registers used by the UART.
  36. - interrupts: Must contain an interrupt-specifier for the SCIx interrupt.
  37. - clocks: Must contain a phandle and clock-specifier pair for each entry
  38. in clock-names.
  39. - clock-names: Must contain "sci_ick" for the SCIx UART interface clock.
  40. Note: Each enabled SCIx UART should have an alias correctly numbered in the
  41. "aliases" node.
  42. Optional properties:
  43. - dmas: Must contain a list of two references to DMA specifiers, one for
  44. transmission, and one for reception.
  45. - dma-names: Must contain a list of two DMA names, "tx" and "rx".
  46. Example:
  47. aliases {
  48. serial0 = &scifa0;
  49. };
  50. scifa0: serial@e6c40000 {
  51. compatible = "renesas,scifa-r8a7790", "renesas,scifa";
  52. reg = <0 0xe6c40000 0 64>;
  53. interrupt-parent = <&gic>;
  54. interrupts = <0 144 IRQ_TYPE_LEVEL_HIGH>;
  55. clocks = <&mstp2_clks R8A7790_CLK_SCIFA0>;
  56. clock-names = "sci_ick";
  57. dmas = <&dmac0 0x21>, <&dmac0 0x22>;
  58. dma-names = "tx", "rx";
  59. };