diff options
author | Andrew Lunn <andrew@lunn.ch> | 2011-05-15 07:32:51 -0400 |
---|---|---|
committer | Nicolas Pitre <nico@fluxnic.net> | 2011-05-16 15:16:17 -0400 |
commit | 44350061905b2a502579d3827eacaf8efa393aad (patch) | |
tree | 33c66c67205e2fd48cae80dd29db1c755ddb94fb /arch/arm/plat-orion | |
parent | 9e613f8a7904f2b7516eed08f413463c579325bd (diff) |
ARM: orion: Consolidate setup of the crypto engine.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Nicolas Pitre <nico@fluxnic.net>
Diffstat (limited to 'arch/arm/plat-orion')
-rw-r--r-- | arch/arm/plat-orion/common.c | 31 | ||||
-rw-r--r-- | arch/arm/plat-orion/include/plat/common.h | 5 |
2 files changed, 36 insertions, 0 deletions
diff --git a/arch/arm/plat-orion/common.c b/arch/arm/plat-orion/common.c index d1cf7c3fb744..9e5451b3c8e3 100644 --- a/arch/arm/plat-orion/common.c +++ b/arch/arm/plat-orion/common.c | |||
@@ -923,4 +923,35 @@ void __init orion_sata_init(struct mv_sata_platform_data *sata_data, | |||
923 | platform_device_register(&orion_sata); | 923 | platform_device_register(&orion_sata); |
924 | } | 924 | } |
925 | 925 | ||
926 | /***************************************************************************** | ||
927 | * Cryptographic Engines and Security Accelerator (CESA) | ||
928 | ****************************************************************************/ | ||
929 | static struct resource orion_crypto_resources[] = { | ||
930 | { | ||
931 | .name = "regs", | ||
932 | }, { | ||
933 | .name = "crypto interrupt", | ||
934 | }, { | ||
935 | .name = "sram", | ||
936 | .flags = IORESOURCE_MEM, | ||
937 | }, | ||
938 | }; | ||
926 | 939 | ||
940 | static struct platform_device orion_crypto = { | ||
941 | .name = "mv_crypto", | ||
942 | .id = -1, | ||
943 | }; | ||
944 | |||
945 | void __init orion_crypto_init(unsigned long mapbase, | ||
946 | unsigned long srambase, | ||
947 | unsigned long sram_size, | ||
948 | unsigned long irq) | ||
949 | { | ||
950 | fill_resources(&orion_crypto, orion_crypto_resources, | ||
951 | mapbase, 0xffff, irq); | ||
952 | orion_crypto.num_resources = 3; | ||
953 | orion_crypto_resources[2].start = srambase; | ||
954 | orion_crypto_resources[2].end = srambase + sram_size - 1; | ||
955 | |||
956 | platform_device_register(&orion_crypto); | ||
957 | } | ||
diff --git a/arch/arm/plat-orion/include/plat/common.h b/arch/arm/plat-orion/include/plat/common.h index 0ec6b663a834..a63c357e2ab1 100644 --- a/arch/arm/plat-orion/include/plat/common.h +++ b/arch/arm/plat-orion/include/plat/common.h | |||
@@ -109,4 +109,9 @@ void __init orion_sata_init(struct mv_sata_platform_data *sata_data, | |||
109 | struct mbus_dram_target_info *mbus_dram_info, | 109 | struct mbus_dram_target_info *mbus_dram_info, |
110 | unsigned long mapbase, | 110 | unsigned long mapbase, |
111 | unsigned long irq); | 111 | unsigned long irq); |
112 | |||
113 | void __init orion_crypto_init(unsigned long mapbase, | ||
114 | unsigned long srambase, | ||
115 | unsigned long sram_size, | ||
116 | unsigned long irq); | ||
112 | #endif | 117 | #endif |