-
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: 327111 b: refs/heads/master c: 5ae8d15 h: refs/heads/master i: 327109: f5eba37 327107: 7b49d05 327103: 88dbcc5 v: v3
- Loading branch information
Olof Johansson
committed
Sep 21, 2012
1 parent
9f85183
commit 9d28992
Showing
1,499 changed files
with
37,224 additions
and
41,934 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: 617276307cd4cdb9a95c77efaa3063695af63aa7 | ||
refs/heads/master: 5ae8d15f686f93d2ac60a7b16d8ddfbfdfc7c00f |
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
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,8 @@ | ||
Broadcom BCM2835 device tree bindings | ||
------------------------------------------- | ||
|
||
Boards with the BCM2835 SoC shall have the following properties: | ||
|
||
Required root node property: | ||
|
||
compatible = "brcm,bcm2835"; |
17 changes: 17 additions & 0 deletions
17
trunk/Documentation/devicetree/bindings/arm/mrvl/tauros2.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 @@ | ||
* Marvell Tauros2 Cache | ||
|
||
Required properties: | ||
- compatible : Should be "marvell,tauros2-cache". | ||
- marvell,tauros2-cache-features : Specify the features supported for the | ||
tauros2 cache. | ||
The features including | ||
CACHE_TAUROS2_PREFETCH_ON (1 << 0) | ||
CACHE_TAUROS2_LINEFILL_BURST8 (1 << 1) | ||
The definition can be found at | ||
arch/arm/include/asm/hardware/cache-tauros2.h | ||
|
||
Example: | ||
L2: l2-cache { | ||
compatible = "marvell,tauros2-cache"; | ||
marvell,tauros2-cache-features = <0x3>; | ||
}; |
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,38 @@ | ||
* MSM Timer | ||
|
||
Properties: | ||
|
||
- compatible : Should at least contain "qcom,msm-timer". More specific | ||
properties such as "qcom,msm-gpt" and "qcom,msm-dgt" specify a general | ||
purpose timer and a debug timer respectively. | ||
|
||
- interrupts : Interrupt indicating a match event. | ||
|
||
- reg : Specifies the base address of the timer registers. The second region | ||
specifies an optional register used to configure the clock divider. | ||
|
||
- clock-frequency : The frequency of the timer in Hz. | ||
|
||
Optional: | ||
|
||
- cpu-offset : per-cpu offset used when the timer is accessed without the | ||
CPU remapping facilities. The offset is cpu-offset * cpu-nr. | ||
|
||
Example: | ||
|
||
timer@200a004 { | ||
compatible = "qcom,msm-gpt", "qcom,msm-timer"; | ||
interrupts = <1 2 0x301>; | ||
reg = <0x0200a004 0x10>; | ||
clock-frequency = <32768>; | ||
cpu-offset = <0x40000>; | ||
}; | ||
|
||
timer@200a024 { | ||
compatible = "qcom,msm-dgt", "qcom,msm-timer"; | ||
interrupts = <1 3 0x301>; | ||
reg = <0x0200a024 0x10>, | ||
<0x0200a034 0x4>; | ||
clock-frequency = <6750000>; | ||
cpu-offset = <0x40000>; | ||
}; |
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.