-
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 'kirkwood/dt' of git://git.infradead.org/users/jcooper/l…
…inux into late/kirkwood From Jason Cooper: New bindings: - iconnect nand and keys - mv_cesa - gpio-fan * 'kirkwood/dt' of git://git.infradead.org/users/jcooper/linux: ARM: kirkwood: Use devicetree to define DNS-32[05] fan hwmon: Add devicetree bindings to gpio-fan Crypto: CESA: Add support for DT based instantiation. ARM: Kirkwood: Describe iconnect nand in DT. ARM: Kirkwood: Describe iconnect keys in DT.
- Loading branch information
Showing
10 changed files
with
251 additions
and
79 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Marvell Cryptographic Engines And Security Accelerator | ||
|
||
Required properties: | ||
- compatible : should be "marvell,orion-crypto" | ||
- reg : base physical address of the engine and length of memory mapped | ||
region, followed by base physical address of sram and its memory | ||
length | ||
- reg-names : "regs" , "sram"; | ||
- interrupts : interrupt number | ||
|
||
Examples: | ||
|
||
crypto@30000 { | ||
compatible = "marvell,orion-crypto"; | ||
reg = <0x30000 0x10000>, | ||
<0x4000000 0x800>; | ||
reg-names = "regs" , "sram"; | ||
interrupts = <22>; | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Bindings for fan connected to GPIO lines | ||
|
||
Required properties: | ||
- compatible : "gpio-fan" | ||
- gpios: Specifies the pins that map to bits in the control value, | ||
ordered MSB-->LSB. | ||
- gpio-fan,speed-map: A mapping of possible fan RPM speeds and the | ||
control value that should be set to achieve them. This array | ||
must have the RPM values in ascending order. | ||
|
||
Optional properties: | ||
- alarm-gpios: This pin going active indicates something is wrong with | ||
the fan, and a udev event will be fired. | ||
|
||
Examples: | ||
|
||
gpio_fan { | ||
compatible = "gpio-fan"; | ||
gpios = <&gpio1 14 1 | ||
&gpio1 13 1>; | ||
gpio-fan,speed-map = <0 0 | ||
3000 1 | ||
6000 2>; | ||
alarm-gpios = <&gpio1 15 1>; | ||
}; |
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.