-
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: 340082 b: refs/heads/master c: c3e5dba h: refs/heads/master v: v3
- Loading branch information
Olof Johansson
committed
Nov 21, 2012
1 parent
d100f4a
commit 3a43239
Showing
842 changed files
with
12,087 additions
and
12,278 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: be6a98d3f00c292d347465d96acbec9d8c2783cf | ||
refs/heads/master: c3e5dba4ee862a23c9f2273b9ddd492047cbfb15 |
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 @@ | ||
ARM Allwinner SoCs | ||
================== | ||
|
||
This document lists all the ARM Allwinner SoCs that are currently | ||
supported in mainline by the Linux kernel. This document will also | ||
provide links to documentation and or datasheet for these SoCs. | ||
|
||
SunXi family | ||
------------ | ||
|
||
Flavors: | ||
Allwinner A10 (sun4i) | ||
Datasheet : http://dl.linux-sunxi.org/A10/A10%20Datasheet%20-%20v1.21%20%282012-04-06%29.pdf | ||
|
||
Allwinner A13 (sun5i) | ||
Datasheet : http://dl.linux-sunxi.org/A13/A13%20Datasheet%20-%20v1.12%20%282012-03-29%29.pdf | ||
|
||
Core: Cortex A8 | ||
Linux kernel mach directory: arch/arm/mach-sunxi |
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,9 @@ | ||
Broadcom BCM11351 device tree bindings | ||
------------------------------------------- | ||
|
||
Boards with the bcm281xx SoC family (which includes bcm11130, bcm11140, | ||
bcm11351, bcm28145, bcm28155 SoCs) shall have the following properties: | ||
|
||
Required root node property: | ||
|
||
compatible = "bcm,bcm11351"; |
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
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/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>; | ||
}; |
Oops, something went wrong.