Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: e42391cd048809d903291d07f86ed3934ce138e9 authored by Linus Torvalds on 29 March 2015, 22:26:31 UTC
Linux 4.0-rc6
Tip revision: e42391c
mv_cesa.txt
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";
	};
back to top