-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kuninori Morimoto
authored and
Zhang Rui
committed
Feb 8, 2013
1 parent
ff9ab47
commit bf8cf8e
Showing
3 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: e6e053f4e47634c07993cb31893556d24e18b65e | ||
refs/heads/master: 76cc1887496fe80138c6b07c37d7f81e4cf27cde |
29 changes: 29 additions & 0 deletions
29
trunk/Documentation/devicetree/bindings/thermal/rcar-thermal.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
* 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>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters