-
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.
Crypto: CESA: Add support for DT based instantiation.
Based on work by Michael Walle and Jason Cooper. Added support for getting the interrupt number and address of SRAM from DT. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Tested-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Signed-off-by: Jason Cooper <jason@lakedaemon.net> Conflicts: arch/arm/mach-kirkwood/board-dt.c
- Loading branch information
Andrew Lunn
authored and
Jason Cooper
committed
Sep 22, 2012
1 parent
2eecb47
commit f37fbd3
Showing
4 changed files
with
47 additions
and
4 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
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