-
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: 326719 b: refs/heads/master c: 402efdb h: refs/heads/master i: 326717: 113d696 326715: d14a14b 326711: b4754e0 326703: f29fc64 326687: 7b2493c 326655: 4e22137 v: v3
- Loading branch information
Olof Johansson
committed
Sep 5, 2012
1 parent
30bc7ce
commit df41132
Showing
25 changed files
with
648 additions
and
120 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: 056876f6c73406c06d530d16d020177f5ec4a0bd | ||
refs/heads/master: 402efdb48d6a6aef9e91e3112a94b679d787fef7 |
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>; | ||
}; |
31 changes: 31 additions & 0 deletions
31
trunk/Documentation/devicetree/bindings/mtd/pxa3xx-nand.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,31 @@ | ||
PXA3xx NAND DT bindings | ||
|
||
Required properties: | ||
|
||
- compatible: Should be "marvell,pxa3xx-nand" | ||
- reg: The register base for the controller | ||
- interrupts: The interrupt to map | ||
- #address-cells: Set to <1> if the node includes partitions | ||
|
||
Optional properties: | ||
|
||
- marvell,nand-enable-arbiter: Set to enable the bus arbiter | ||
- marvell,nand-keep-config: Set to keep the NAND controller config as set | ||
by the bootloader | ||
- num-cs: Number of chipselect lines to usw | ||
|
||
Example: | ||
|
||
nand0: nand@43100000 { | ||
compatible = "marvell,pxa3xx-nand"; | ||
reg = <0x43100000 90>; | ||
interrupts = <45>; | ||
#address-cells = <1>; | ||
|
||
marvell,nand-enable-arbiter; | ||
marvell,nand-keep-config; | ||
num-cs = <1>; | ||
|
||
/* partitions (optional) */ | ||
}; | ||
|
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,14 @@ | ||
* PXA RTC | ||
|
||
PXA specific RTC driver. | ||
|
||
Required properties: | ||
- compatible : Should be "marvell,pxa-rtc" | ||
|
||
Examples: | ||
|
||
rtc@40900000 { | ||
compatible = "marvell,pxa-rtc"; | ||
reg = <0x40900000 0x3c>; | ||
interrupts = <30 31>; | ||
}; |
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,14 @@ | ||
/* The pxa3xx skeleton simply augments the 2xx version */ | ||
/include/ "pxa2xx.dtsi" | ||
|
||
/ { | ||
model = "Marvell PXA27x familiy SoC"; | ||
compatible = "marvell,pxa27x"; | ||
|
||
pxabus { | ||
pxairq: interrupt-controller@40d00000 { | ||
marvell,intc-priority; | ||
marvell,intc-nr-irqs = <34>; | ||
}; | ||
}; | ||
}; |
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,132 @@ | ||
/* | ||
* pxa2xx.dtsi - Device Tree Include file for Marvell PXA2xx family SoC | ||
* | ||
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> | ||
* | ||
* Licensed under GPLv2 or later. | ||
*/ | ||
|
||
/include/ "skeleton.dtsi" | ||
|
||
/ { | ||
model = "Marvell PXA2xx family SoC"; | ||
compatible = "marvell,pxa2xx"; | ||
interrupt-parent = <&pxairq>; | ||
|
||
aliases { | ||
serial0 = &ffuart; | ||
serial1 = &btuart; | ||
serial2 = &stuart; | ||
serial3 = &hwuart; | ||
i2c0 = &pwri2c; | ||
i2c1 = &pxai2c1; | ||
}; | ||
|
||
cpus { | ||
cpu@0 { | ||
compatible = "arm,xscale"; | ||
}; | ||
}; | ||
|
||
pxabus { | ||
compatible = "simple-bus"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
ranges; | ||
|
||
pxairq: interrupt-controller@40d00000 { | ||
#interrupt-cells = <1>; | ||
compatible = "marvell,pxa-intc"; | ||
interrupt-controller; | ||
interrupt-parent; | ||
marvell,intc-nr-irqs = <32>; | ||
reg = <0x40d00000 0xd0>; | ||
}; | ||
|
||
gpio: gpio@40e00000 { | ||
compatible = "mrvl,pxa-gpio"; | ||
#address-cells = <0x1>; | ||
#size-cells = <0x1>; | ||
reg = <0x40e00000 0x10000>; | ||
gpio-controller; | ||
#gpio-cells = <0x2>; | ||
interrupts = <10>; | ||
interrupt-names = "gpio_mux"; | ||
interrupt-controller; | ||
#interrupt-cells = <0x2>; | ||
ranges; | ||
|
||
gcb0: gpio@40e00000 { | ||
reg = <0x40e00000 0x4>; | ||
}; | ||
|
||
gcb1: gpio@40e00004 { | ||
reg = <0x40e00004 0x4>; | ||
}; | ||
|
||
gcb2: gpio@40e00008 { | ||
reg = <0x40e00008 0x4>; | ||
}; | ||
gcb3: gpio@40e0000c { | ||
reg = <0x40e0000c 0x4>; | ||
}; | ||
}; | ||
|
||
ffuart: uart@40100000 { | ||
compatible = "mrvl,pxa-uart"; | ||
reg = <0x40100000 0x30>; | ||
interrupts = <22>; | ||
status = "disabled"; | ||
}; | ||
|
||
btuart: uart@40200000 { | ||
compatible = "mrvl,pxa-uart"; | ||
reg = <0x40200000 0x30>; | ||
interrupts = <21>; | ||
status = "disabled"; | ||
}; | ||
|
||
stuart: uart@40700000 { | ||
compatible = "mrvl,pxa-uart"; | ||
reg = <0x40700000 0x30>; | ||
interrupts = <20>; | ||
status = "disabled"; | ||
}; | ||
|
||
hwuart: uart@41100000 { | ||
compatible = "mrvl,pxa-uart"; | ||
reg = <0x41100000 0x30>; | ||
interrupts = <7>; | ||
status = "disabled"; | ||
}; | ||
|
||
pxai2c1: i2c@40301680 { | ||
compatible = "mrvl,pxa-i2c"; | ||
reg = <0x40301680 0x30>; | ||
interrupts = <18>; | ||
#address-cells = <0x1>; | ||
#size-cells = <0>; | ||
status = "disabled"; | ||
}; | ||
|
||
usb0: ohci@4c000000 { | ||
compatible = "mrvl,pxa-ohci"; | ||
reg = <0x4c000000 0x10000>; | ||
interrupts = <3>; | ||
status = "disabled"; | ||
}; | ||
|
||
mmc0: mmc@41100000 { | ||
compatible = "mrvl,pxa-mmc"; | ||
reg = <0x41100000 0x1000>; | ||
interrupts = <23>; | ||
status = "disabled"; | ||
}; | ||
|
||
rtc@40900000 { | ||
compatible = "marvell,pxa-rtc"; | ||
reg = <0x40900000 0x3c>; | ||
interrupts = <30 31>; | ||
}; | ||
}; | ||
}; |
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,32 @@ | ||
/* The pxa3xx skeleton simply augments the 2xx version */ | ||
/include/ "pxa2xx.dtsi" | ||
|
||
/ { | ||
model = "Marvell PXA3xx familiy SoC"; | ||
compatible = "marvell,pxa3xx"; | ||
|
||
pxabus { | ||
pwri2c: i2c@40f500c0 { | ||
compatible = "mrvl,pwri2c"; | ||
reg = <0x40f500c0 0x30>; | ||
interrupts = <6>; | ||
#address-cells = <0x1>; | ||
#size-cells = <0>; | ||
status = "disabled"; | ||
}; | ||
|
||
nand0: nand@43100000 { | ||
compatible = "marvell,pxa3xx-nand"; | ||
reg = <0x43100000 90>; | ||
interrupts = <45>; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
status = "disabled"; | ||
}; | ||
|
||
pxairq: interrupt-controller@40d00000 { | ||
marvell,intc-priority; | ||
marvell,intc-nr-irqs = <56>; | ||
}; | ||
}; | ||
}; |
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
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
Oops, something went wrong.