diff options
Diffstat (limited to 'arch/arm/mach-at91/at91sam9263.c')
-rw-r--r-- | arch/arm/mach-at91/at91sam9263.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/arch/arm/mach-at91/at91sam9263.c b/arch/arm/mach-at91/at91sam9263.c index 247ab633abcc..ef301be66575 100644 --- a/arch/arm/mach-at91/at91sam9263.c +++ b/arch/arm/mach-at91/at91sam9263.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <asm/irq.h> | 16 | #include <asm/irq.h> |
17 | #include <asm/mach/arch.h> | 17 | #include <asm/mach/arch.h> |
18 | #include <asm/mach/map.h> | 18 | #include <asm/mach/map.h> |
19 | #include <asm/system_misc.h> | ||
19 | #include <mach/at91sam9263.h> | 20 | #include <mach/at91sam9263.h> |
20 | #include <mach/at91_pmc.h> | 21 | #include <mach/at91_pmc.h> |
21 | #include <mach/at91_rstc.h> | 22 | #include <mach/at91_rstc.h> |
@@ -303,20 +304,17 @@ static void __init at91sam9263_ioremap_registers(void) | |||
303 | { | 304 | { |
304 | at91_ioremap_shdwc(AT91SAM9263_BASE_SHDWC); | 305 | at91_ioremap_shdwc(AT91SAM9263_BASE_SHDWC); |
305 | at91_ioremap_rstc(AT91SAM9263_BASE_RSTC); | 306 | at91_ioremap_rstc(AT91SAM9263_BASE_RSTC); |
307 | at91_ioremap_ramc(0, AT91SAM9263_BASE_SDRAMC0, 512); | ||
308 | at91_ioremap_ramc(1, AT91SAM9263_BASE_SDRAMC1, 512); | ||
306 | at91sam926x_ioremap_pit(AT91SAM9263_BASE_PIT); | 309 | at91sam926x_ioremap_pit(AT91SAM9263_BASE_PIT); |
307 | at91sam9_ioremap_smc(0, AT91SAM9263_BASE_SMC0); | 310 | at91sam9_ioremap_smc(0, AT91SAM9263_BASE_SMC0); |
308 | at91sam9_ioremap_smc(1, AT91SAM9263_BASE_SMC1); | 311 | at91sam9_ioremap_smc(1, AT91SAM9263_BASE_SMC1); |
309 | } | 312 | at91_ioremap_matrix(AT91SAM9263_BASE_MATRIX); |
310 | |||
311 | static void at91sam9263_idle(void) | ||
312 | { | ||
313 | at91_sys_write(AT91_PMC_SCDR, AT91_PMC_PCK); | ||
314 | cpu_do_idle(); | ||
315 | } | 313 | } |
316 | 314 | ||
317 | static void __init at91sam9263_initialize(void) | 315 | static void __init at91sam9263_initialize(void) |
318 | { | 316 | { |
319 | arm_pm_idle = at91sam9263_idle; | 317 | arm_pm_idle = at91sam9_idle; |
320 | arm_pm_restart = at91sam9_alt_restart; | 318 | arm_pm_restart = at91sam9_alt_restart; |
321 | at91_extern_irq = (1 << AT91SAM9263_ID_IRQ0) | (1 << AT91SAM9263_ID_IRQ1); | 319 | at91_extern_irq = (1 << AT91SAM9263_ID_IRQ0) | (1 << AT91SAM9263_ID_IRQ1); |
322 | 320 | ||