usb: phy: rcar-gen2-usb: always use 'dev' variable in probe() method
[platform/adaptation/renesas_rcar/renesas_kernel.git] / Documentation / devicetree / bindings / thermal / rcar-thermal.txt
1 * Renesas R-Car Thermal
2
3 Required properties:
4 - compatible            : "renesas,thermal-<soctype>", "renesas,rcar-thermal"
5                           as fallback.
6                           Examples with soctypes are:
7                             - "renesas,thermal-r8a73a4" (R-Mobile AP6)
8                             - "renesas,thermal-r8a7779" (R-Car H1)
9                             - "renesas,thermal-r8a7790" (R-Car H2)
10                             - "renesas,thermal-r8a7791" (R-Car M2)
11 - reg                   : Address range of the thermal registers.
12                           The 1st reg will be recognized as common register
13                           if it has "interrupts".
14
15 Option properties:
16
17 - interrupts            : use interrupt
18
19 Example (non interrupt support):
20
21 thermal@ffc48000 {
22         compatible = "renesas,thermal-r8a7779", "renesas,rcar-thermal";
23         reg = <0xffc48000 0x38>;
24 };
25
26 Example (interrupt support):
27
28 thermal@e61f0000 {
29         compatible = "renesas,thermal-r8a73a4", "renesas,rcar-thermal";
30         reg = <0xe61f0000 0x14
31                 0xe61f0100 0x38
32                 0xe61f0200 0x38
33                 0xe61f0300 0x38>;
34         interrupts = <0 69 IRQ_TYPE_LEVEL_HIGH>;
35 };