diff options
Diffstat (limited to 'arch/blackfin/Kconfig')
-rw-r--r-- | arch/blackfin/Kconfig | 57 |
1 files changed, 39 insertions, 18 deletions
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig index 8140a2fc8bbd..220635a1ebdd 100644 --- a/arch/blackfin/Kconfig +++ b/arch/blackfin/Kconfig | |||
@@ -907,23 +907,41 @@ endchoice | |||
907 | 907 | ||
908 | 908 | ||
909 | comment "Cache Support" | 909 | comment "Cache Support" |
910 | |||
910 | config BFIN_ICACHE | 911 | config BFIN_ICACHE |
911 | bool "Enable ICACHE" | 912 | bool "Enable ICACHE" |
913 | default y | ||
914 | config BFIN_ICACHE_LOCK | ||
915 | bool "Enable Instruction Cache Locking" | ||
916 | depends on BFIN_ICACHE | ||
917 | default n | ||
918 | config BFIN_EXTMEM_ICACHEABLE | ||
919 | bool "Enable ICACHE for external memory" | ||
920 | depends on BFIN_ICACHE | ||
921 | default y | ||
922 | config BFIN_L2_ICACHEABLE | ||
923 | bool "Enable ICACHE for L2 SRAM" | ||
924 | depends on BFIN_ICACHE | ||
925 | depends on BF54x || BF561 | ||
926 | default n | ||
927 | |||
912 | config BFIN_DCACHE | 928 | config BFIN_DCACHE |
913 | bool "Enable DCACHE" | 929 | bool "Enable DCACHE" |
930 | default y | ||
914 | config BFIN_DCACHE_BANKA | 931 | config BFIN_DCACHE_BANKA |
915 | bool "Enable only 16k BankA DCACHE - BankB is SRAM" | 932 | bool "Enable only 16k BankA DCACHE - BankB is SRAM" |
916 | depends on BFIN_DCACHE && !BF531 | 933 | depends on BFIN_DCACHE && !BF531 |
917 | default n | 934 | default n |
918 | config BFIN_ICACHE_LOCK | 935 | config BFIN_EXTMEM_DCACHEABLE |
919 | bool "Enable Instruction Cache Locking" | 936 | bool "Enable DCACHE for external memory" |
920 | |||
921 | choice | ||
922 | prompt "External memory cache policy" | ||
923 | depends on BFIN_DCACHE | 937 | depends on BFIN_DCACHE |
924 | default BFIN_WB if !SMP | 938 | default y |
925 | default BFIN_WT if SMP | 939 | choice |
926 | config BFIN_WB | 940 | prompt "External memory DCACHE policy" |
941 | depends on BFIN_EXTMEM_DCACHEABLE | ||
942 | default BFIN_EXTMEM_WRITEBACK if !SMP | ||
943 | default BFIN_EXTMEM_WRITETHROUGH if SMP | ||
944 | config BFIN_EXTMEM_WRITEBACK | ||
927 | bool "Write back" | 945 | bool "Write back" |
928 | depends on !SMP | 946 | depends on !SMP |
929 | help | 947 | help |
@@ -941,7 +959,7 @@ config BFIN_WB | |||
941 | If you are unsure of the options and you want to be safe, | 959 | If you are unsure of the options and you want to be safe, |
942 | then go with Write Through. | 960 | then go with Write Through. |
943 | 961 | ||
944 | config BFIN_WT | 962 | config BFIN_EXTMEM_WRITETHROUGH |
945 | bool "Write through" | 963 | bool "Write through" |
946 | help | 964 | help |
947 | Write Back Policy: | 965 | Write Back Policy: |
@@ -960,23 +978,26 @@ config BFIN_WT | |||
960 | 978 | ||
961 | endchoice | 979 | endchoice |
962 | 980 | ||
981 | config BFIN_L2_DCACHEABLE | ||
982 | bool "Enable DCACHE for L2 SRAM" | ||
983 | depends on BFIN_DCACHE | ||
984 | depends on BF54x || BF561 | ||
985 | default n | ||
963 | choice | 986 | choice |
964 | prompt "L2 SRAM cache policy" | 987 | prompt "L2 SRAM DCACHE policy" |
965 | depends on (BF54x || BF561) | 988 | depends on BFIN_L2_DCACHEABLE |
966 | default BFIN_L2_WT | 989 | default BFIN_L2_WRITEBACK |
967 | config BFIN_L2_WB | 990 | config BFIN_L2_WRITEBACK |
968 | bool "Write back" | 991 | bool "Write back" |
969 | depends on !SMP | 992 | depends on !SMP |
970 | 993 | ||
971 | config BFIN_L2_WT | 994 | config BFIN_L2_WRITETHROUGH |
972 | bool "Write through" | 995 | bool "Write through" |
973 | depends on !SMP | 996 | depends on !SMP |
974 | |||
975 | config BFIN_L2_NOT_CACHED | ||
976 | bool "Not cached" | ||
977 | |||
978 | endchoice | 997 | endchoice |
979 | 998 | ||
999 | |||
1000 | comment "Memory Protection Unit" | ||
980 | config MPU | 1001 | config MPU |
981 | bool "Enable the memory protection unit (EXPERIMENTAL)" | 1002 | bool "Enable the memory protection unit (EXPERIMENTAL)" |
982 | default n | 1003 | default n |