diff options
Diffstat (limited to 'arch/arm/mach-at91/at91sam9g45.c')
-rw-r--r-- | arch/arm/mach-at91/at91sam9g45.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/at91sam9g45.c b/arch/arm/mach-at91/at91sam9g45.c index 977127368a7d..ef6cedd52e3c 100644 --- a/arch/arm/mach-at91/at91sam9g45.c +++ b/arch/arm/mach-at91/at91sam9g45.c | |||
@@ -183,6 +183,13 @@ static struct clk adc_op_clk = { | |||
183 | .rate_hz = 13200000, | 183 | .rate_hz = 13200000, |
184 | }; | 184 | }; |
185 | 185 | ||
186 | /* AES/TDES/SHA clock - Only for sam9m11/sam9g56 */ | ||
187 | static struct clk aestdessha_clk = { | ||
188 | .name = "aestdessha_clk", | ||
189 | .pmc_mask = 1 << AT91SAM9G45_ID_AESTDESSHA, | ||
190 | .type = CLK_TYPE_PERIPHERAL, | ||
191 | }; | ||
192 | |||
186 | static struct clk *periph_clocks[] __initdata = { | 193 | static struct clk *periph_clocks[] __initdata = { |
187 | &pioA_clk, | 194 | &pioA_clk, |
188 | &pioB_clk, | 195 | &pioB_clk, |
@@ -212,6 +219,7 @@ static struct clk *periph_clocks[] __initdata = { | |||
212 | &udphs_clk, | 219 | &udphs_clk, |
213 | &mmc1_clk, | 220 | &mmc1_clk, |
214 | &adc_op_clk, | 221 | &adc_op_clk, |
222 | &aestdessha_clk, | ||
215 | // irq0 | 223 | // irq0 |
216 | }; | 224 | }; |
217 | 225 | ||
@@ -232,6 +240,9 @@ static struct clk_lookup periph_clocks_lookups[] = { | |||
232 | CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk), | 240 | CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk), |
233 | CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk), | 241 | CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk), |
234 | CLKDEV_CON_DEV_ID(NULL, "atmel-trng", &trng_clk), | 242 | CLKDEV_CON_DEV_ID(NULL, "atmel-trng", &trng_clk), |
243 | CLKDEV_CON_DEV_ID(NULL, "atmel_sha", &aestdessha_clk), | ||
244 | CLKDEV_CON_DEV_ID(NULL, "atmel_tdes", &aestdessha_clk), | ||
245 | CLKDEV_CON_DEV_ID(NULL, "atmel_aes", &aestdessha_clk), | ||
235 | /* more usart lookup table for DT entries */ | 246 | /* more usart lookup table for DT entries */ |
236 | CLKDEV_CON_DEV_ID("usart", "ffffee00.serial", &mck), | 247 | CLKDEV_CON_DEV_ID("usart", "ffffee00.serial", &mck), |
237 | CLKDEV_CON_DEV_ID("usart", "fff8c000.serial", &usart0_clk), | 248 | CLKDEV_CON_DEV_ID("usart", "fff8c000.serial", &usart0_clk), |
@@ -388,7 +399,7 @@ static unsigned int at91sam9g45_default_irq_priority[NR_AIC_IRQS] __initdata = { | |||
388 | 3, /* Ethernet */ | 399 | 3, /* Ethernet */ |
389 | 0, /* Image Sensor Interface */ | 400 | 0, /* Image Sensor Interface */ |
390 | 2, /* USB Device High speed port */ | 401 | 2, /* USB Device High speed port */ |
391 | 0, | 402 | 0, /* AESTDESSHA Crypto HW Accelerators */ |
392 | 0, /* Multimedia Card Interface 1 */ | 403 | 0, /* Multimedia Card Interface 1 */ |
393 | 0, | 404 | 0, |
394 | 0, /* Advanced Interrupt Controller (IRQ0) */ | 405 | 0, /* Advanced Interrupt Controller (IRQ0) */ |