diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-24 11:02:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-24 11:02:58 -0400 |
commit | 064e297c324fff9b62226aae5dc468ebb272433c (patch) | |
tree | 49d031d180a30d6e94e4cfdcc46ec966399d8856 /arch/blackfin/Kconfig | |
parent | f13771187b9423b824f32518319f6da85d819003 (diff) | |
parent | db52ecc2953d932b2fc1c62e585231659edd1d98 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vapier/blackfin
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vapier/blackfin: (30 commits)
Blackfin: SMP: fix continuation lines
Blackfin: acvilon: fix timeout usage for I2C
Blackfin: fix typo in BF537 IRQ comment
Blackfin: unify duplicate MEM_MT48LC32M8A2_75 kconfig options
Blackfin: set ARCH_KMALLOC_MINALIGN
Blackfin: use atomic kmalloc in L1 alloc so it too can be atomic
Blackfin: another year of changes (update copyright in boot log)
Blackfin: optimize strncpy a bit
Blackfin: isram: clean up ITEST_COMMAND macro and improve the selftests
Blackfin: move string functions to normal lib/ assembly
Blackfin: SIC: cut down on IAR MMR reads a bit
Blackfin: bf537-minotaur: fix build errors due to header changes
Blackfin: kgdb: pass up the CC register instead of a 0 stub
Blackfin: handle HW errors in the new "FAULT" printing code
Blackfin: show the whole accumulator in the pseudo DBG insn
Blackfin: support all possible registers in the pseudo instructions
Blackfin: add support for the DBG (debug output) pseudo insn
Blackfin: change the BUG opcode to an unused 16-bit opcode
Blackfin: allow NMI watchdog to be used w/RETN as a scratch reg
Blackfin: add support for the DBGA (debug assert) pseudo insn
...
Diffstat (limited to 'arch/blackfin/Kconfig')
-rw-r--r-- | arch/blackfin/Kconfig | 61 |
1 files changed, 29 insertions, 32 deletions
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig index c078849df7f9..f66294b4f9d2 100644 --- a/arch/blackfin/Kconfig +++ b/arch/blackfin/Kconfig | |||
@@ -348,7 +348,7 @@ config MEM_MT48LC16M16A2TG_75 | |||
348 | 348 | ||
349 | config MEM_MT48LC32M8A2_75 | 349 | config MEM_MT48LC32M8A2_75 |
350 | bool | 350 | bool |
351 | depends on (BFIN537_STAMP || PNAV10 || BFIN538_EZKIT) | 351 | depends on (BFIN518F_EZBRD || BFIN537_STAMP || PNAV10 || BFIN538_EZKIT) |
352 | default y | 352 | default y |
353 | 353 | ||
354 | config MEM_MT48LC8M32B2B5_7 | 354 | config MEM_MT48LC8M32B2B5_7 |
@@ -361,11 +361,6 @@ config MEM_MT48LC32M16A2TG_75 | |||
361 | depends on (BFIN527_EZKIT || BFIN527_EZKIT_V2 || BFIN532_IP0X || BLACKSTAMP) | 361 | depends on (BFIN527_EZKIT || BFIN527_EZKIT_V2 || BFIN532_IP0X || BLACKSTAMP) |
362 | default y | 362 | default y |
363 | 363 | ||
364 | config MEM_MT48LC32M8A2_75 | ||
365 | bool | ||
366 | depends on (BFIN518F_EZBRD) | ||
367 | default y | ||
368 | |||
369 | config MEM_MT48H32M16LFCJ_75 | 364 | config MEM_MT48H32M16LFCJ_75 |
370 | bool | 365 | bool |
371 | depends on (BFIN526_EZBRD) | 366 | depends on (BFIN526_EZBRD) |
@@ -791,6 +786,34 @@ config MEMCPY_L1 | |||
791 | If enabled, the memcpy function is linked | 786 | If enabled, the memcpy function is linked |
792 | into L1 instruction memory. (less latency) | 787 | into L1 instruction memory. (less latency) |
793 | 788 | ||
789 | config STRCMP_L1 | ||
790 | bool "locate strcmp function in L1 Memory" | ||
791 | default y | ||
792 | help | ||
793 | If enabled, the strcmp function is linked | ||
794 | into L1 instruction memory (less latency). | ||
795 | |||
796 | config STRNCMP_L1 | ||
797 | bool "locate strncmp function in L1 Memory" | ||
798 | default y | ||
799 | help | ||
800 | If enabled, the strncmp function is linked | ||
801 | into L1 instruction memory (less latency). | ||
802 | |||
803 | config STRCPY_L1 | ||
804 | bool "locate strcpy function in L1 Memory" | ||
805 | default y | ||
806 | help | ||
807 | If enabled, the strcpy function is linked | ||
808 | into L1 instruction memory (less latency). | ||
809 | |||
810 | config STRNCPY_L1 | ||
811 | bool "locate strncpy function in L1 Memory" | ||
812 | default y | ||
813 | help | ||
814 | If enabled, the strncpy function is linked | ||
815 | into L1 instruction memory (less latency). | ||
816 | |||
794 | config SYS_BFIN_SPINLOCK_L1 | 817 | config SYS_BFIN_SPINLOCK_L1 |
795 | bool "Locate sys_bfin_spinlock function in L1 Memory" | 818 | bool "Locate sys_bfin_spinlock function in L1 Memory" |
796 | default y | 819 | default y |
@@ -1187,32 +1210,6 @@ config PM_BFIN_SLEEP | |||
1187 | If unsure, select "Sleep Deeper". | 1210 | If unsure, select "Sleep Deeper". |
1188 | endchoice | 1211 | endchoice |
1189 | 1212 | ||
1190 | config PM_WAKEUP_BY_GPIO | ||
1191 | bool "Allow Wakeup from Standby by GPIO" | ||
1192 | depends on PM && !BF54x | ||
1193 | |||
1194 | config PM_WAKEUP_GPIO_NUMBER | ||
1195 | int "GPIO number" | ||
1196 | range 0 47 | ||
1197 | depends on PM_WAKEUP_BY_GPIO | ||
1198 | default 2 | ||
1199 | |||
1200 | choice | ||
1201 | prompt "GPIO Polarity" | ||
1202 | depends on PM_WAKEUP_BY_GPIO | ||
1203 | default PM_WAKEUP_GPIO_POLAR_H | ||
1204 | config PM_WAKEUP_GPIO_POLAR_H | ||
1205 | bool "Active High" | ||
1206 | config PM_WAKEUP_GPIO_POLAR_L | ||
1207 | bool "Active Low" | ||
1208 | config PM_WAKEUP_GPIO_POLAR_EDGE_F | ||
1209 | bool "Falling EDGE" | ||
1210 | config PM_WAKEUP_GPIO_POLAR_EDGE_R | ||
1211 | bool "Rising EDGE" | ||
1212 | config PM_WAKEUP_GPIO_POLAR_EDGE_B | ||
1213 | bool "Both EDGE" | ||
1214 | endchoice | ||
1215 | |||
1216 | comment "Possible Suspend Mem / Hibernate Wake-Up Sources" | 1213 | comment "Possible Suspend Mem / Hibernate Wake-Up Sources" |
1217 | depends on PM | 1214 | depends on PM |
1218 | 1215 | ||