-
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.
yaml --- r: 359994 b: refs/heads/master c: 1e50059 h: refs/heads/master v: v3
- Loading branch information
Linus Torvalds
committed
Mar 1, 2013
1 parent
60a2618
commit ecc5dc9
Showing
334 changed files
with
18,649 additions
and
7,670 deletions.
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: 3d2a80a230250c2534ce5b17503670adaf1d7fff | ||
refs/heads/master: 1e5005979e45337dab9e2c2e4a75ebd71168c004 |
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
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
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,6 @@ | ||
Armadeus i.MX Platforms Device Tree Bindings | ||
----------------------------------------------- | ||
|
||
APF51: i.MX51 based module. | ||
Required root node properties: | ||
- compatible = "armadeus,imx51-apf51", "fsl,imx51"; |
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
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
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
18 changes: 18 additions & 0 deletions
18
trunk/Documentation/devicetree/bindings/thermal/dove-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,18 @@ | ||
* Dove Thermal | ||
|
||
This driver is for Dove SoCs which contain a thermal sensor. | ||
|
||
Required properties: | ||
- compatible : "marvell,dove-thermal" | ||
- reg : Address range of the thermal registers | ||
|
||
The reg properties should contain two ranges. The first is for the | ||
three Thermal Manager registers, while the second range contains the | ||
Thermal Diode Control Registers. | ||
|
||
Example: | ||
|
||
thermal@10078 { | ||
compatible = "marvell,dove-thermal"; | ||
reg = <0xd001c 0x0c>, <0xd005c 0x08>; | ||
}; |
15 changes: 15 additions & 0 deletions
15
trunk/Documentation/devicetree/bindings/thermal/kirkwood-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,15 @@ | ||
* Kirkwood Thermal | ||
|
||
This version is for Kirkwood 88F8262 & 88F6283 SoCs. Other kirkwoods | ||
don't contain a thermal sensor. | ||
|
||
Required properties: | ||
- compatible : "marvell,kirkwood-thermal" | ||
- reg : Address range of the thermal registers | ||
|
||
Example: | ||
|
||
thermal@10078 { | ||
compatible = "marvell,kirkwood-thermal"; | ||
reg = <0x10078 0x4>; | ||
}; |
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>; | ||
}; |
11 changes: 7 additions & 4 deletions
11
...tree/bindings/arm/armada-370-xp-timer.txt → ...ngs/timer/marvell,armada-370-xp-timer.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
19 changes: 19 additions & 0 deletions
19
trunk/Documentation/devicetree/bindings/w1/fsl-imx-owire.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,19 @@ | ||
* Freescale i.MX One wire bus master controller | ||
|
||
Required properties: | ||
- compatible : should be "fsl,imx21-owire" | ||
- reg : Address and length of the register set for the device | ||
|
||
Optional properties: | ||
- clocks : phandle of clock that supplies the module (required if platform | ||
clock bindings use device tree) | ||
|
||
Example: | ||
|
||
- From imx53.dtsi: | ||
owire: owire@63fa4000 { | ||
compatible = "fsl,imx53-owire", "fsl,imx21-owire"; | ||
reg = <0x63fa4000 0x4000>; | ||
clocks = <&clks 159>; | ||
status = "disabled"; | ||
}; |
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
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,53 @@ | ||
EXYNOS EMULATION MODE | ||
======================== | ||
|
||
Copyright (C) 2012 Samsung Electronics | ||
|
||
Written by Jonghwa Lee <jonghwa3.lee@samsung.com> | ||
|
||
Description | ||
----------- | ||
|
||
Exynos 4x12 (4212, 4412) and 5 series provide emulation mode for thermal management unit. | ||
Thermal emulation mode supports software debug for TMU's operation. User can set temperature | ||
manually with software code and TMU will read current temperature from user value not from | ||
sensor's value. | ||
|
||
Enabling CONFIG_EXYNOS_THERMAL_EMUL option will make this support in available. | ||
When it's enabled, sysfs node will be created under | ||
/sys/bus/platform/devices/'exynos device name'/ with name of 'emulation'. | ||
|
||
The sysfs node, 'emulation', will contain value 0 for the initial state. When you input any | ||
temperature you want to update to sysfs node, it automatically enable emulation mode and | ||
current temperature will be changed into it. | ||
(Exynos also supports user changable delay time which would be used to delay of | ||
changing temperature. However, this node only uses same delay of real sensing time, 938us.) | ||
|
||
Exynos emulation mode requires synchronous of value changing and enabling. It means when you | ||
want to update the any value of delay or next temperature, then you have to enable emulation | ||
mode at the same time. (Or you have to keep the mode enabling.) If you don't, it fails to | ||
change the value to updated one and just use last succeessful value repeatedly. That's why | ||
this node gives users the right to change termerpature only. Just one interface makes it more | ||
simply to use. | ||
|
||
Disabling emulation mode only requires writing value 0 to sysfs node. | ||
|
||
|
||
TEMP 120 | | ||
| | ||
100 | | ||
| | ||
80 | | ||
| +----------- | ||
60 | | | | ||
| +-------------| | | ||
40 | | | | | ||
| | | | | ||
20 | | | +---------- | ||
| | | | | | ||
0 |______________|_____________|__________|__________|_________ | ||
A A A A TIME | ||
|<----->| |<----->| |<----->| | | ||
| 938us | | | | | | | ||
emulation : 0 50 | 70 | 20 | 0 | ||
current temp : sensor 50 70 20 sensor |
Oops, something went wrong.