mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 07:04:00 +08:00
76cc188749
Support for loading the Renesas R-Car thermal module via devicetree. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
30 lines
586 B
Plaintext
30 lines
586 B
Plaintext
* Renesas R-Car Thermal
|
|
|
|
Required properties:
|
|
- compatible : "renesas,rcar-thermal"
|
|
- reg : Address range of the thermal registers.
|
|
The 1st reg will be recognized as common register
|
|
if it has "interrupts".
|
|
|
|
Option properties:
|
|
|
|
- interrupts : use interrupt
|
|
|
|
Example (non interrupt support):
|
|
|
|
thermal@e61f0100 {
|
|
compatible = "renesas,rcar-thermal";
|
|
reg = <0xe61f0100 0x38>;
|
|
};
|
|
|
|
Example (interrupt support):
|
|
|
|
thermal@e61f0000 {
|
|
compatible = "renesas,rcar-thermal";
|
|
reg = <0xe61f0000 0x14
|
|
0xe61f0100 0x38
|
|
0xe61f0200 0x38
|
|
0xe61f0300 0x38>;
|
|
interrupts = <0 69 4>;
|
|
};
|