-
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
Linus Torvalds
committed
Jul 24, 2012
1 parent
4a316da
commit e1d5265
Showing
1,640 changed files
with
58,368 additions
and
27,890 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: 719154c6d1c1a3a404f4ff570c4b36bb2ef868ca | ||
refs/heads/master: 759e2a253aaefbb6da9253d517a5a8fe1801ce0f |
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
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
23 changes: 23 additions & 0 deletions
23
trunk/Documentation/devicetree/bindings/arm/armada-370-xp-mpic.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,23 @@ | ||
Marvell Armada 370 and Armada XP Interrupt Controller | ||
----------------------------------------------------- | ||
|
||
Required properties: | ||
- compatible: Should be "marvell,mpic" | ||
- interrupt-controller: Identifies the node as an interrupt controller. | ||
- #interrupt-cells: The number of cells to define the interrupts. Should be 1. | ||
The cell is the IRQ number | ||
- reg: Should contain PMIC registers location and length. First pair | ||
for the main interrupt registers, second pair for the per-CPU | ||
interrupt registers | ||
|
||
Example: | ||
|
||
mpic: interrupt-controller@d0020000 { | ||
compatible = "marvell,mpic"; | ||
#interrupt-cells = <1>; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
interrupt-controller; | ||
reg = <0xd0020000 0x1000>, | ||
<0xd0021000 0x1000>; | ||
}; |
11 changes: 11 additions & 0 deletions
11
trunk/Documentation/devicetree/bindings/arm/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Marvell Armada 370 and Armada XP Global Timers | ||
---------------------------------------------- | ||
|
||
Required properties: | ||
- compatible: Should be "marvell,armada-370-xp-timer" | ||
- interrupts: Should contain the list of Global Timer interrupts | ||
- reg: Should contain the base address of the Global Timer registers | ||
|
||
Optional properties: | ||
- marvell,timer-25Mhz: Tells whether the Global timer supports the 25 | ||
Mhz fixed mode (available on Armada XP and not on Armada 370) |
24 changes: 24 additions & 0 deletions
24
trunk/Documentation/devicetree/bindings/arm/armada-370-xp.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,24 @@ | ||
Marvell Armada 370 and Armada XP Platforms Device Tree Bindings | ||
--------------------------------------------------------------- | ||
|
||
Boards with a SoC of the Marvell Armada 370 and Armada XP families | ||
shall have the following property: | ||
|
||
Required root node property: | ||
|
||
compatible: must contain "marvell,armada-370-xp" | ||
|
||
In addition, boards using the Marvell Armada 370 SoC shall have the | ||
following property: | ||
|
||
Required root node property: | ||
|
||
compatible: must contain "marvell,armada370" | ||
|
||
In addition, boards using the Marvell Armada XP SoC shall have the | ||
following property: | ||
|
||
Required root node property: | ||
|
||
compatible: must contain "marvell,armadaxp" | ||
|
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
27 changes: 27 additions & 0 deletions
27
trunk/Documentation/devicetree/bindings/arm/davinci/cp-intc.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,27 @@ | ||
* TI Common Platform Interrupt Controller | ||
|
||
Common Platform Interrupt Controller (cp_intc) is used on | ||
OMAP-L1x SoCs and can support several configurable number | ||
of interrupts. | ||
|
||
Main node required properties: | ||
|
||
- compatible : should be: | ||
"ti,cp-intc" | ||
- interrupt-controller : Identifies the node as an interrupt controller | ||
- #interrupt-cells : Specifies the number of cells needed to encode an | ||
interrupt source. The type shall be a <u32> and the value shall be 1. | ||
|
||
The cell contains the interrupt number in the range [0-128]. | ||
- ti,intc-size: Number of interrupts handled by the interrupt controller. | ||
- reg: physical base address and size of the intc registers map. | ||
|
||
Example: | ||
|
||
intc: interrupt-controller@1 { | ||
compatible = "ti,cp-intc"; | ||
interrupt-controller; | ||
#interrupt-cells = <1>; | ||
ti,intc-size = <101>; | ||
reg = <0xfffee000 0x2000>; | ||
}; |
17 changes: 17 additions & 0 deletions
17
trunk/Documentation/devicetree/bindings/arm/mvebu-system-controller.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,17 @@ | ||
MVEBU System Controller | ||
----------------------- | ||
MVEBU (Marvell SOCs: Armada 370/XP, Dove, mv78xx0, Kirkwood, Orion5x) | ||
|
||
Required properties: | ||
|
||
- compatible: one of: | ||
- "marvell,orion-system-controller" | ||
- "marvell,armada-370-xp-system-controller" | ||
- reg: Should contain system controller registers location and length. | ||
|
||
Example: | ||
|
||
system-controller@d0018200 { | ||
compatible = "marvell,armada-370-xp-system-controller"; | ||
reg = <0xd0018200 0x500>; | ||
}; |
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 @@ | ||
Olimex i.MX Platforms Device Tree Bindings | ||
------------------------------------------ | ||
|
||
i.MX23 Olinuxino Low Cost Board | ||
Required root node properties: | ||
- compatible = "olimex,imx23-olinuxino", "fsl,imx23"; |
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
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 MXS LCD Interface (LCDIF) | ||
|
||
Required properties: | ||
- compatible: Should be "fsl,<chip>-lcdif". Supported chips include | ||
imx23 and imx28. | ||
- reg: Address and length of the register set for lcdif | ||
- interrupts: Should contain lcdif interrupts | ||
|
||
Optional properties: | ||
- panel-enable-gpios : Should specify the gpio for panel enable | ||
|
||
Examples: | ||
|
||
lcdif@80030000 { | ||
compatible = "fsl,imx28-lcdif"; | ||
reg = <0x80030000 2000>; | ||
interrupts = <38 86>; | ||
panel-enable-gpios = <&gpio3 30 0>; | ||
}; |
Oops, something went wrong.