Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 326722
b: refs/heads/master
c: fd6c9b7
h: refs/heads/master
v: v3
  • Loading branch information
Olof Johansson committed Sep 7, 2012
1 parent 6ceab99 commit 494af35
Show file tree
Hide file tree
Showing 30 changed files with 1,384 additions and 545 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 25b3ab6c7e39e42245d98c27d25d9902baec7b65
refs/heads/master: fd6c9b75c7e341e0c6824be39ac81b32b7d9fe2f
17 changes: 17 additions & 0 deletions trunk/Documentation/devicetree/bindings/arm/mrvl/tauros2.txt
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 trunk/Documentation/devicetree/bindings/mtd/pxa3xx-nand.txt
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) */
};

14 changes: 14 additions & 0 deletions trunk/Documentation/devicetree/bindings/rtc/pxa-rtc.txt
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>;
};
5 changes: 5 additions & 0 deletions trunk/arch/arm/boot/dts/mmp2.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
interrupt-parent = <&intc>;
ranges;

L2: l2-cache {
compatible = "marvell,tauros2-cache";
marvell,tauros2-cache-features = <0x3>;
};

axi@d4200000 { /* AXI */
compatible = "mrvl,axi-bus", "simple-bus";
#address-cells = <1>;
Expand Down
Loading

0 comments on commit 494af35

Please sign in to comment.