aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91/Kconfig
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2011-11-17 12:41:28 -0500
committerNicolas Ferre <nicolas.ferre@atmel.com>2012-01-20 11:22:50 -0500
commit14f991a730f453a1c8f114ccb686f83e158fdd92 (patch)
treecebc0df6224f92f7e554b96bad2daf7e4fe13a64 /arch/arm/mach-at91/Kconfig
parente9f68b5cc6160a473fc668054fd13f435fd4508b (diff)
ARM: at91: Fix at91sam9g45 and at91cap9 reset
As on the other sam9 we need to cleanly shutdown the DDRAM before rebooting. On those SoC the SDRAM/DDRAM controller is different. So, the assembly code ends up being not cleanly combined with previous at91sam9_alt_restart function. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91/Kconfig')
-rw-r--r--arch/arm/mach-at91/Kconfig5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
index 4275577fddc2..71feb00a1e99 100644
--- a/arch/arm/mach-at91/Kconfig
+++ b/arch/arm/mach-at91/Kconfig
@@ -21,6 +21,9 @@ config HAVE_AT91_USART5
21config AT91_SAM9_ALT_RESET 21config AT91_SAM9_ALT_RESET
22 bool 22 bool
23 23
24config AT91_SAM9G45_RESET
25 bool
26
24menu "Atmel AT91 System-on-Chip" 27menu "Atmel AT91 System-on-Chip"
25 28
26choice 29choice
@@ -97,6 +100,7 @@ config ARCH_AT91SAM9G45
97 select HAVE_FB_ATMEL 100 select HAVE_FB_ATMEL
98 select HAVE_NET_MACB 101 select HAVE_NET_MACB
99 select HAVE_AT91_DBGU1 102 select HAVE_AT91_DBGU1
103 select AT91_SAM9G45_RESET
100 104
101config ARCH_AT91CAP9 105config ARCH_AT91CAP9
102 bool "AT91CAP9" 106 bool "AT91CAP9"
@@ -105,6 +109,7 @@ config ARCH_AT91CAP9
105 select HAVE_FB_ATMEL 109 select HAVE_FB_ATMEL
106 select HAVE_NET_MACB 110 select HAVE_NET_MACB
107 select HAVE_AT91_DBGU1 111 select HAVE_AT91_DBGU1
112 select AT91_SAM9G45_RESET
108 113
109config ARCH_AT91X40 114config ARCH_AT91X40
110 bool "AT91x40" 115 bool "AT91x40"