mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
f37fbd36c5
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
21 lines
544 B
Plaintext
21 lines
544 B
Plaintext
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";
|
|
};
|