Merge branch 'drm-nouveau-next' of git://anongit.freedesktop.org/git/nouveau/linux...
[cascardo/linux.git] / Documentation / devicetree / bindings / serial / renesas,sci-serial.txt
1 * Renesas SH-Mobile Serial Communication Interface
2
3 Required properties:
4
5   - compatible: Must contain one of the following:
6
7     - "renesas,scif-r8a7779" for R8A7779 (R-Car H1) SCIF compatible UART.
8     - "renesas,scif-r8a7790" for R8A7790 (R-Car H2) SCIF compatible UART.
9     - "renesas,scifa-r8a7790" for R8A7790 (R-Car H2) SCIFA compatible UART.
10     - "renesas,scifb-r8a7790" for R8A7790 (R-Car H2) SCIFB compatible UART.
11     - "renesas,hscif-r8a7790" for R8A7790 (R-Car H2) HSCIF compatible UART.
12     - "renesas,scif-r8a7791" for R8A7791 (R-Car M2) SCIF compatible UART.
13     - "renesas,scifa-r8a7791" for R8A7791 (R-Car M2) SCIFA compatible UART.
14     - "renesas,scifb-r8a7791" for R8A7791 (R-Car M2) SCIFB compatible UART.
15     - "renesas,hscif-r8a7791" for R8A7791 (R-Car M2) HSCIF compatible UART.
16     - "renesas,scif" for generic SCIF compatible UART.
17     - "renesas,scifa" for generic SCIFA compatible UART.
18     - "renesas,scifb" for generic SCIFB compatible UART.
19     - "renesas,hscif" for generic HSCIF compatible UART.
20
21     When compatible with the generic version, nodes must list the
22     SoC-specific version corresponding to the platform first followed by the
23     generic version.
24
25   - reg: Base address and length of the I/O registers used by the UART.
26   - interrupts: Must contain an interrupt-specifier for the SCIx interrupt.
27
28   - clocks: Must contain a phandle and clock-specifier pair for each entry
29     in clock-names.
30   - clock-names: Must contain "sci_ick" for the SCIx UART interface clock.
31
32 Note: Each enabled SCIx UART should have an alias correctly numbered in the
33 "aliases" node.
34
35 Example:
36         aliases {
37                 serial0 = &scifa0;
38         };
39
40         scifa0: serial@e6c40000 {
41                 compatible = "renesas,scifa-r8a7790", "renesas,scifa";
42                 reg = <0 0xe6c40000 0 64>;
43                 interrupt-parent = <&gic>;
44                 interrupts = <0 144 IRQ_TYPE_LEVEL_HIGH>;
45                 clocks = <&mstp2_clks R8A7790_CLK_SCIFA0>;
46                 clock-names = "sci_ick";
47         };