forked from torvalds/linux
-
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.
Merge branch 'marvell/dt' into late2/dt
* marvell/dt: (41 commits) ARM: Kirkwood: Replace mrvl with marvell ARM: Kirkwood: Describe GoFlex Net LEDs and SATA in DT. ARM: Kirkwood: Describe Dreamplug LEDs in DT. ARM: Kirkwood: Describe iConnects LEDs in DT. ARM: Kirkwood: Describe iConnects temperature sensor in DT. ARM: Kirkwood: Describe IB62x0 LEDs in DT. ARM: Kirkwood: Describe IB62x0 gpio-keys in DT. ARM: Kirkwood: Describe DNS32? gpio-keys in DT. ARM: Kirkwood: Move common portions into a kirkwood-dnskw.dtsi ARM: Kirkwood: Replace DNS-320/DNS-325 leds with dt bindings ARM: Kirkwood: Describe DNS325 temperature sensor in DT. ARM: Kirkwood: Use DT to configure SATA device. ARM: kirkwood: use devicetree for SPI on dreamplug ARM: kirkwood: Add LS-XHL and LS-CHLv2 support ARM: Kirkwood: Initial DTS support for Kirkwood GoFlex Net ARM: Kirkwood: Add basic device tree support for QNAP TS219. ATA: sata_mv: Add device tree support ARM: Orion: DTify the watchdog timer. ARM: Orion: Add arch support needed for I2C via DT. ARM: kirkwood: use devicetree for orion-spi ...
- Loading branch information
Showing
65 changed files
with
1,915 additions
and
646 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
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,16 @@ | ||
* Marvell Orion SATA | ||
|
||
Required Properties: | ||
- compatibility : "marvell,orion-sata" | ||
- reg : Address range of controller | ||
- interrupts : Interrupt controller is using | ||
- nr-ports : Number of SATA ports in use. | ||
|
||
Example: | ||
|
||
sata@80000 { | ||
compatible = "marvell,orion-sata"; | ||
reg = <0x80000 0x5000>; | ||
interrupts = <21>; | ||
nr-ports = <2>; | ||
} |
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 @@ | ||
Marvell Orion SPI device | ||
|
||
Required properties: | ||
- compatible : should be "marvell,orion-spi". | ||
- reg : offset and length of the register set for the device | ||
- cell-index : Which of multiple SPI controllers is this. | ||
Optional properties: | ||
- interrupts : Is currently not used. | ||
|
||
Example: | ||
spi@10600 { | ||
compatible = "marvell,orion-spi"; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
cell-index = <0>; | ||
reg = <0x10600 0x28>; | ||
interrupts = <23>; | ||
status = "disabled"; | ||
}; |
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 @@ | ||
* Marvell Orion Watchdog Time | ||
|
||
Required Properties: | ||
|
||
- Compatibility : "marvell,orion-wdt" | ||
- reg : Address of the timer registers | ||
|
||
Example: | ||
|
||
wdt@20300 { | ||
compatible = "marvell,orion-wdt"; | ||
reg = <0x20300 0x28>; | ||
status = "okay"; | ||
}; |
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,69 @@ | ||
/include/ "kirkwood.dtsi" | ||
|
||
/ { | ||
model = "D-Link DNS NASes (kirkwood-based)"; | ||
compatible = "dlink,dns-kirkwood", "marvell,kirkwood-88f6281", "marvell,kirkwood"; | ||
|
||
gpio_keys { | ||
compatible = "gpio-keys"; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
button@1 { | ||
label = "Power button"; | ||
linux,code = <116>; | ||
gpios = <&gpio1 2 1>; | ||
}; | ||
button@2 { | ||
label = "USB unmount button"; | ||
linux,code = <161>; | ||
gpios = <&gpio1 15 1>; | ||
}; | ||
button@3 { | ||
label = "Reset button"; | ||
linux,code = <0x198>; | ||
gpios = <&gpio1 16 1>; | ||
}; | ||
}; | ||
|
||
ocp@f1000000 { | ||
sata@80000 { | ||
status = "okay"; | ||
nr-ports = <2>; | ||
}; | ||
|
||
nand@3000000 { | ||
status = "okay"; | ||
|
||
partition@0 { | ||
label = "u-boot"; | ||
reg = <0x0000000 0x100000>; | ||
read-only; | ||
}; | ||
|
||
partition@100000 { | ||
label = "uImage"; | ||
reg = <0x0100000 0x500000>; | ||
}; | ||
|
||
partition@600000 { | ||
label = "ramdisk"; | ||
reg = <0x0600000 0x500000>; | ||
}; | ||
|
||
partition@b00000 { | ||
label = "image"; | ||
reg = <0x0b00000 0x6600000>; | ||
}; | ||
|
||
partition@7100000 { | ||
label = "mini firmware"; | ||
reg = <0x7100000 0xa00000>; | ||
}; | ||
|
||
partition@7b00000 { | ||
label = "config"; | ||
reg = <0x7b00000 0x500000>; | ||
}; | ||
}; | ||
}; | ||
}; |
Oops, something went wrong.