diff options
| author | Mark A. Greer <mgreer@animalcreek.com> | 2012-12-21 09:28:09 -0700 | 
|---|---|---|
| committer | Paul Walmsley <paul@pwsan.com> | 2013-03-30 15:51:33 -0600 | 
| commit | 660ffd6ba2405ed7ff614ab73f282e056c47d8f6 (patch) | |
| tree | 1077d8eec0a021161855a521fc6b93bf7b069010 /arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c | |
| parent | aec94bf5b62879c7ae18a212a2dc0c0823c780c9 (diff) | |
| download | olio-linux-3.10-660ffd6ba2405ed7ff614ab73f282e056c47d8f6.tar.xz olio-linux-3.10-660ffd6ba2405ed7ff614ab73f282e056c47d8f6.zip  | |
ARM: OMAP2xxx: hwmod: Convert AES crypto devcie data to hwmod
Convert the device data for the OMAP2 AES crypto IP from
explicit platform_data to hwmod.
CC: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Mark A. Greer <mgreer@animalcreek.com>
[paul@pwsan.com: fixed lines causing sparse warnings]
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c')
| -rw-r--r-- | arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c | 18 | 
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c b/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c index 339ac273c60..5fd40d4a989 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c @@ -147,6 +147,15 @@ static struct omap_hwmod_addr_space omap2xxx_sham_addrs[] = {  	{ }  }; +static struct omap_hwmod_addr_space omap2xxx_aes_addrs[] = { +	{ +		.pa_start	= 0x480a6000, +		.pa_end		= 0x480a6000 + 0x50 - 1, +		.flags		= ADDR_TYPE_RT +	}, +	{ } +}; +  /*   * Common interconnect data   */ @@ -407,3 +416,12 @@ struct omap_hwmod_ocp_if omap2xxx_l4_core__sham = {  	.addr		= omap2xxx_sham_addrs,  	.user		= OCP_USER_MPU | OCP_USER_SDMA,  }; + +/* l4 core -> aes interface */ +struct omap_hwmod_ocp_if omap2xxx_l4_core__aes = { +	.master		= &omap2xxx_l4_core_hwmod, +	.slave		= &omap2xxx_aes_hwmod, +	.clk		= "aes_ick", +	.addr		= omap2xxx_aes_addrs, +	.user		= OCP_USER_MPU | OCP_USER_SDMA, +};  |