sh-sci: Add h8300 SCI
[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
681b05f5 7 - "renesas,scif-r7s72100" for R7S72100 (RZ/A1H) SCIF compatible UART.
34c4eda8
SH
8 - "renesas,scifa-r8a73a4" for R8A73A4 (R-Mobile APE6) SCIFA compatible UART.
9 - "renesas,scifb-r8a73a4" for R8A73A4 (R-Mobile APE6) SCIFB compatible UART.
10 - "renesas,scifa-r8a7740" for R8A7740 (R-Mobile A1) SCIFA compatible UART.
11 - "renesas,scifb-r8a7740" for R8A7740 (R-Mobile A1) SCIFB compatible UART.
12 - "renesas,scif-r8a7778" for R8A7778 (R-Car M1) SCIF compatible UART.
81bd1eb7 13 - "renesas,scif-r8a7779" for R8A7779 (R-Car H1) SCIF compatible UART.
334bc118
LP
14 - "renesas,scif-r8a7790" for R8A7790 (R-Car H2) SCIF compatible UART.
15 - "renesas,scifa-r8a7790" for R8A7790 (R-Car H2) SCIFA compatible UART.
16 - "renesas,scifb-r8a7790" for R8A7790 (R-Car H2) SCIFB compatible UART.
17 - "renesas,hscif-r8a7790" for R8A7790 (R-Car H2) HSCIF compatible UART.
18 - "renesas,scif-r8a7791" for R8A7791 (R-Car M2) SCIF compatible UART.
19 - "renesas,scifa-r8a7791" for R8A7791 (R-Car M2) SCIFA compatible UART.
20 - "renesas,scifb-r8a7791" for R8A7791 (R-Car M2) SCIFB compatible UART.
21 - "renesas,hscif-r8a7791" for R8A7791 (R-Car M2) HSCIF compatible UART.
c556522e
UH
22 - "renesas,scif-r8a7794" for R8A7794 (R-Car E2) SCIF compatible UART.
23 - "renesas,scifa-r8a7794" for R8A7794 (R-Car E2) SCIFA compatible UART.
24 - "renesas,scifb-r8a7794" for R8A7794 (R-Car E2) SCIFB compatible UART.
25 - "renesas,hscif-r8a7794" for R8A7794 (R-Car E2) HSCIF compatible UART.
681b05f5
GU
26 - "renesas,scifa-sh73a0" for SH73A0 (SH-Mobile AG5) SCIFA compatible UART.
27 - "renesas,scifb-sh73a0" for SH73A0 (SH-Mobile AG5) SCIFB compatible UART.
334bc118
LP
28 - "renesas,scif" for generic SCIF compatible UART.
29 - "renesas,scifa" for generic SCIFA compatible UART.
30 - "renesas,scifb" for generic SCIFB compatible UART.
31 - "renesas,hscif" for generic HSCIF compatible UART.
e1d0be61 32 - "renesas,sci" for generic SCI compatible UART.
334bc118
LP
33
34 When compatible with the generic version, nodes must list the
35 SoC-specific version corresponding to the platform first followed by the
36 generic version.
37
38 - reg: Base address and length of the I/O registers used by the UART.
39 - interrupts: Must contain an interrupt-specifier for the SCIx interrupt.
40
41 - clocks: Must contain a phandle and clock-specifier pair for each entry
42 in clock-names.
43 - clock-names: Must contain "sci_ick" for the SCIx UART interface clock.
44
45Note: Each enabled SCIx UART should have an alias correctly numbered in the
46"aliases" node.
47
48Example:
49 aliases {
50 serial0 = &scifa0;
51 };
52
53 scifa0: serial@e6c40000 {
25eb50b9 54 compatible = "renesas,scifa-r8a7790", "renesas,scifa";
334bc118
LP
55 reg = <0 0xe6c40000 0 64>;
56 interrupt-parent = <&gic>;
57 interrupts = <0 144 IRQ_TYPE_LEVEL_HIGH>;
58 clocks = <&mstp2_clks R8A7790_CLK_SCIFA0>;
59 clock-names = "sci_ick";
60 };
This page took 0.088356 seconds and 5 git commands to generate.