-
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 'orion_dt_for_3.8' of git://git.infradead.org/users/jcooper…
…/linux into next/dt From Jason Cooper: orion dt for v3.8 - ehci-orion dt binding - gpio-poweroff - use dt regulators - move mpp to DT/pinctrl Depends on: - orion/boards - merge conflicts - keep all 'select's in Kconfig - remove all #includes in board-*.c - pinctrl/devel up to: - 06763c7 pinctrl: mvebu: move to its own directory * tag 'orion_dt_for_3.8' of git://git.infradead.org/users/jcooper/linux: (211 commits) ARM: Kirkwood: remove kirkwood_ehci_init() from new boards ARM: Kirkwood: Add support LED of OpenBlocks A6 ARM: Kirkwood: Convert to EHCI via DT for OpenBlocks A6 ARM: kirkwood: Add NAND partiton map for OpenBlocks A6 ARM: kirkwood: Add support second I2C bus and RTC on OpenBlocks A6 ARM: kirkwood: Add support DT of second I2C bus ARM: kirkwood: Convert mplcec4 board to pinctrl ARM: Kirkwood: Convert km_kirkwood to pinctrl ARM: Kirkwood: support 98DX412x kirkwoods with pinctrl ARM: Kirkwood: Convert IX2-200 to pinctrl. ARM: Kirkwood: Convert lsxl boards to pinctrl. ARM: Kirkwood: Convert ib62x0 to pinctrl. ARM: Kirkwood: Convert GoFlex Net to pinctrl. ARM: Kirkwood: Convert dreamplug to pinctrl. ARM: Kirkwood: Convert dockstar to pinctrl. ARM: Kirkwood: Convert dnskw to pinctrl ARM: Kirkwood: Convert iConnect to pinctrl. ARM: Kirkwood: Convert TS219 to pinctrl. ARM: Kirkwood: Add DTSI files for pinctrl ARM: Kirkwood: Make use of mvebu pincltl and gpio drivers ... Signed-off-by: Olof Johansson <olof@lixom.net>
- Loading branch information
Showing
271 changed files
with
5,821 additions
and
1,952 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,22 @@ | ||
GPIO line that should be set high/low to power off a device | ||
|
||
Required properties: | ||
- compatible : should be "gpio-poweroff". | ||
- gpios : The GPIO to set high/low, see "gpios property" in | ||
Documentation/devicetree/bindings/gpio/gpio.txt. If the pin should be | ||
low to power down the board set it to "Active Low", otherwise set | ||
gpio to "Active High". | ||
|
||
Optional properties: | ||
- input : Initially configure the GPIO line as an input. Only reconfigure | ||
it to an output when the pm_power_off function is called. If this optional | ||
property is not specified, the GPIO is initialized as an output in its | ||
inactive state. | ||
|
||
|
||
Examples: | ||
|
||
gpio-poweroff { | ||
compatible = "gpio-poweroff"; | ||
gpios = <&gpio 4 0>; /* GPIO 4 Active Low */ | ||
}; |
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,26 @@ | ||
Binding for dual-GPIO LED found on Network Space v2 (and parents). | ||
|
||
Required properties: | ||
- compatible: "lacie,ns2-leds". | ||
|
||
Each LED is represented as a sub-node of the ns2-leds device. | ||
|
||
Required sub-node properties: | ||
- cmd-gpio: Command LED GPIO. See OF device-tree GPIO specification. | ||
- slow-gpio: Slow LED GPIO. See OF device-tree GPIO specification. | ||
|
||
Optional sub-node properties: | ||
- label: Name for this LED. If omitted, the label is taken from the node name. | ||
- linux,default-trigger: Trigger assigned to the LED. | ||
|
||
Example: | ||
|
||
ns2-leds { | ||
compatible = "lacie,ns2-leds"; | ||
|
||
blue-sata { | ||
label = "ns2:blue:sata"; | ||
slow-gpio = <&gpio0 29 0>; | ||
cmd-gpio = <&gpio0 30 0>; | ||
}; | ||
}; |
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,15 @@ | ||
* EHCI controller, Orion Marvell variants | ||
|
||
Required properties: | ||
- compatible: must be "marvell,orion-ehci" | ||
- reg: physical base address of the controller and length of memory mapped | ||
region. | ||
- interrupts: The EHCI interrupt | ||
|
||
Example: | ||
|
||
ehci@50000 { | ||
compatible = "marvell,orion-ehci"; | ||
reg = <0x50000 0x1000>; | ||
interrupts = <19>; | ||
}; |
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.