-
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: 344199 b: refs/heads/master c: c91321e h: refs/heads/master i: 344197: bbb9a98 344195: 62d3c41 344191: f2aeb19 v: v3
- Loading branch information
Olof Johansson
committed
Dec 14, 2012
1 parent
bcc2578
commit a41cf86
Showing
924 changed files
with
13,763 additions
and
15,155 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: 9560f840f301868b4b4b175e81afa96dc57611ac | ||
refs/heads/master: c91321e8ff338a88a9272dcd938f085955cd5846 |
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
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,8 +1,15 @@ | ||
Calxeda Highbank Platforms Device Tree Bindings | ||
Calxeda Platforms Device Tree Bindings | ||
----------------------------------------------- | ||
|
||
Boards with Calxeda Cortex-A9 based Highbank SOC shall have the following | ||
properties. | ||
Boards with Calxeda Cortex-A9 based ECX-1000 (Highbank) SOC shall have the | ||
following properties. | ||
|
||
Required root node properties: | ||
- compatible = "calxeda,highbank"; | ||
|
||
|
||
Boards with Calxeda Cortex-A15 based ECX-2000 SOC shall have the following | ||
properties. | ||
|
||
Required root node properties: | ||
- compatible = "calxeda,ecx-2000"; |
50 changes: 50 additions & 0 deletions
50
trunk/Documentation/devicetree/bindings/arm/vexpress-sysreg.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,50 @@ | ||
ARM Versatile Express system registers | ||
-------------------------------------- | ||
|
||
This is a system control registers block, providing multiple low level | ||
platform functions like board detection and identification, software | ||
interrupt generation, MMC and NOR Flash control etc. | ||
|
||
Required node properties: | ||
- compatible value : = "arm,vexpress,sysreg"; | ||
- reg : physical base address and the size of the registers window | ||
- gpio-controller : specifies that the node is a GPIO controller | ||
- #gpio-cells : size of the GPIO specifier, should be 2: | ||
- first cell is the pseudo-GPIO line number: | ||
0 - MMC CARDIN | ||
1 - MMC WPROT | ||
2 - NOR FLASH WPn | ||
- second cell can take standard GPIO flags (currently ignored). | ||
|
||
Example: | ||
v2m_sysreg: sysreg@10000000 { | ||
compatible = "arm,vexpress-sysreg"; | ||
reg = <0x10000000 0x1000>; | ||
gpio-controller; | ||
#gpio-cells = <2>; | ||
}; | ||
|
||
This block also can also act a bridge to the platform's configuration | ||
bus via "system control" interface, addressing devices with site number, | ||
position in the board stack, config controller, function and device | ||
numbers - see motherboard's TRM for more details. | ||
|
||
The node describing a config device must refer to the sysreg node via | ||
"arm,vexpress,config-bridge" phandle (can be also defined in the node's | ||
parent) and relies on the board topology properties - see main vexpress | ||
node documentation for more details. It must must also define the | ||
following property: | ||
- arm,vexpress-sysreg,func : must contain two cells: | ||
- first cell defines function number (eg. 1 for clock generator, | ||
2 for voltage regulators etc.) | ||
- device number (eg. osc 0, osc 1 etc.) | ||
|
||
Example: | ||
mcc { | ||
arm,vexpress,config-bridge = <&v2m_sysreg>; | ||
|
||
osc@0 { | ||
compatible = "arm,vexpress-osc"; | ||
arm,vexpress-sysreg,func = <1 0>; | ||
}; | ||
}; |
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
22 changes: 22 additions & 0 deletions
22
trunk/Documentation/devicetree/bindings/drm/exynos/hdmi.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,22 @@ | ||
Device-Tree bindings for drm hdmi driver | ||
|
||
Required properties: | ||
- compatible: value should be "samsung,exynos5-hdmi". | ||
- reg: physical base address of the hdmi and length of memory mapped | ||
region. | ||
- interrupts: interrupt number to the cpu. | ||
- hpd-gpio: following information about the hotplug gpio pin. | ||
a) phandle of the gpio controller node. | ||
b) pin number within the gpio controller. | ||
c) pin function mode. | ||
d) optional flags and pull up/down. | ||
e) drive strength. | ||
|
||
Example: | ||
|
||
hdmi { | ||
compatible = "samsung,exynos5-hdmi"; | ||
reg = <0x14530000 0x100000>; | ||
interrupts = <0 95 0>; | ||
hpd-gpio = <&gpx3 7 0xf 1 3>; | ||
}; |
12 changes: 12 additions & 0 deletions
12
trunk/Documentation/devicetree/bindings/drm/exynos/hdmiddc.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,12 @@ | ||
Device-Tree bindings for hdmiddc driver | ||
|
||
Required properties: | ||
- compatible: value should be "samsung,exynos5-hdmiddc". | ||
- reg: I2C address of the hdmiddc device. | ||
|
||
Example: | ||
|
||
hdmiddc { | ||
compatible = "samsung,exynos5-hdmiddc"; | ||
reg = <0x50>; | ||
}; |
12 changes: 12 additions & 0 deletions
12
trunk/Documentation/devicetree/bindings/drm/exynos/hdmiphy.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,12 @@ | ||
Device-Tree bindings for hdmiphy driver | ||
|
||
Required properties: | ||
- compatible: value should be "samsung,exynos5-hdmiphy". | ||
- reg: I2C address of the hdmiphy device. | ||
|
||
Example: | ||
|
||
hdmiphy { | ||
compatible = "samsung,exynos5-hdmiphy"; | ||
reg = <0x38>; | ||
}; |
15 changes: 15 additions & 0 deletions
15
trunk/Documentation/devicetree/bindings/drm/exynos/mixer.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 @@ | ||
Device-Tree bindings for mixer driver | ||
|
||
Required properties: | ||
- compatible: value should be "samsung,exynos5-mixer". | ||
- reg: physical base address of the mixer and length of memory mapped | ||
region. | ||
- interrupts: interrupt number to the cpu. | ||
|
||
Example: | ||
|
||
mixer { | ||
compatible = "samsung,exynos5-mixer"; | ||
reg = <0x14450000 0x10000>; | ||
interrupts = <0 94 0>; | ||
}; |
19 changes: 19 additions & 0 deletions
19
trunk/Documentation/devicetree/bindings/input/touchscreen/egalax-ts.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 @@ | ||
* EETI eGalax Multiple Touch Controller | ||
|
||
Required properties: | ||
- compatible: must be "eeti,egalax_ts" | ||
- reg: i2c slave address | ||
- interrupt-parent: the phandle for the interrupt controller | ||
- interrupts: touch controller interrupt | ||
- wakeup-gpios: the gpio pin to be used for waking up the controller | ||
as well as uased as irq pin | ||
|
||
Example: | ||
|
||
egalax_ts@04 { | ||
compatible = "eeti,egalax_ts"; | ||
reg = <0x04>; | ||
interrupt-parent = <&gpio1>; | ||
interrupts = <9 2>; | ||
wakeup-gpios = <&gpio1 9 0>; | ||
}; |
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
Oops, something went wrong.