serial: sh-sci: Add device tree support for r8a7794
[deliverable/linux.git] / Documentation / devicetree / bindings / serial / renesas,sci-serial.txt
CommitLineData
334bc118
LP
1* Renesas SH-Mobile Serial Communication Interface
2
3Required properties:
4
5 - compatible: Must contain one of the following:
6
34c4eda8
SH
7 - "renesas,scifa-sh73a0" for SH73A0 (SH-Mobile AG5) SCIFA compatible UART.
8 - "renesas,scifb-sh73a0" for SH73A0 (SH-Mobile AG5) SCIFB compatible UART.
9 - "renesas,scifa-r8a73a4" for R8A73A4 (R-Mobile APE6) SCIFA compatible UART.
10 - "renesas,scifb-r8a73a4" for R8A73A4 (R-Mobile APE6) SCIFB compatible UART.
11 - "renesas,scifa-r8a7740" for R8A7740 (R-Mobile A1) SCIFA compatible UART.
12 - "renesas,scifb-r8a7740" for R8A7740 (R-Mobile A1) SCIFB compatible UART.
13 - "renesas,scif-r8a7778" for R8A7778 (R-Car M1) SCIF compatible UART.
81bd1eb7 14 - "renesas,scif-r8a7779" for R8A7779 (R-Car H1) SCIF compatible UART.
334bc118
LP
15 - "renesas,scif-r8a7790" for R8A7790 (R-Car H2) SCIF compatible UART.
16 - "renesas,scifa-r8a7790" for R8A7790 (R-Car H2) SCIFA compatible UART.
17 - "renesas,scifb-r8a7790" for R8A7790 (R-Car H2) SCIFB compatible UART.
18 - "renesas,hscif-r8a7790" for R8A7790 (R-Car H2) HSCIF compatible UART.
19 - "renesas,scif-r8a7791" for R8A7791 (R-Car M2) SCIF compatible UART.
20 - "renesas,scifa-r8a7791" for R8A7791 (R-Car M2) SCIFA compatible UART.
21 - "renesas,scifb-r8a7791" for R8A7791 (R-Car M2) SCIFB compatible UART.
22 - "renesas,hscif-r8a7791" for R8A7791 (R-Car M2) HSCIF compatible UART.
c556522e
UH
23 - "renesas,scif-r8a7794" for R8A7794 (R-Car E2) SCIF compatible UART.
24 - "renesas,scifa-r8a7794" for R8A7794 (R-Car E2) SCIFA compatible UART.
25 - "renesas,scifb-r8a7794" for R8A7794 (R-Car E2) SCIFB compatible UART.
26 - "renesas,hscif-r8a7794" for R8A7794 (R-Car E2) HSCIF compatible UART.
334bc118
LP
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
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
36 - reg: Base address and length of the I/O registers used by the UART.
37 - interrupts: Must contain an interrupt-specifier for the SCIx interrupt.
38
39 - clocks: Must contain a phandle and clock-specifier pair for each entry
40 in clock-names.
41 - clock-names: Must contain "sci_ick" for the SCIx UART interface clock.
42
43Note: Each enabled SCIx UART should have an alias correctly numbered in the
44"aliases" node.
45
46Example:
47 aliases {
48 serial0 = &scifa0;
49 };
50
51 scifa0: serial@e6c40000 {
25eb50b9 52 compatible = "renesas,scifa-r8a7790", "renesas,scifa";
334bc118
LP
53 reg = <0 0xe6c40000 0 64>;
54 interrupt-parent = <&gic>;
55 interrupts = <0 144 IRQ_TYPE_LEVEL_HIGH>;
56 clocks = <&mstp2_clks R8A7790_CLK_SCIFA0>;
57 clock-names = "sci_ick";
58 };
This page took 0.065051 seconds and 5 git commands to generate.