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 tag 'dt2' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/…
…arm-soc Pull arm-soc Marvell Orion device-tree updates from Olof Johansson: "This contains a set of device-tree conversions for Marvell Orion platforms that were staged early but took a few tries to get the branch into a format where it was suitable for us to pick up. Given that most people working on these platforms are hobbyists with limited time, we were a bit more flexible with merging it even though it came in late." * tag 'dt2' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (21 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 ... Conflicts: drivers/watchdog/orion_wdt.c
- Loading branch information
Showing
43 changed files
with
1,387 additions
and
569 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
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>; | ||
}; | ||
}; | ||
}; | ||
}; |
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.