Avery Pennarun | 6e24c86 | 2013-09-16 23:38:03 -0400 | [diff] [blame] | 1 | |
| 2 | config BLACKFIN |
| 3 | bool |
| 4 | select HAS_KALLSYMS |
| 5 | select HAS_MODULES |
| 6 | select HAVE_CONFIGURABLE_MEMORY_LAYOUT |
| 7 | select HAVE_CONFIGURABLE_TEXT_BASE |
| 8 | default y |
| 9 | |
| 10 | config BF561 |
| 11 | bool |
| 12 | |
| 13 | config BOARDINFO |
| 14 | default "PII IPE337" if MACH_IPE337 |
| 15 | |
| 16 | config ARCH_TEXT_BASE |
| 17 | hex |
| 18 | default 0x00000000 |
| 19 | default 0x03f00000 if MACH_IPE337 |
| 20 | |
| 21 | choice |
| 22 | prompt "Select your board" |
| 23 | |
| 24 | config MACH_IPE337 |
| 25 | bool "PII ipe337" |
| 26 | select BF561 |
| 27 | help |
| 28 | Say Y here if you are using the PII IPE337 board |
| 29 | |
| 30 | endchoice |
| 31 | |
| 32 | choice |
| 33 | prompt "Select your board options" |
| 34 | depends on MACH_IPE337 |
| 35 | default MACH_IPE337_V2 |
| 36 | |
| 37 | config MACH_IPE337_V1 |
| 38 | bool "revision 1 (25MHz)" |
| 39 | help |
| 40 | Say Y here if you are using the first revision of the PII IPE337 board (Crystal running at 25Mhz) |
| 41 | |
| 42 | config MACH_IPE337_V2 |
| 43 | bool "revision 2 (40MHz)" |
| 44 | help |
| 45 | Say Y here if you are using the second revision of the PII IPE337 board (Crystal running at 40Mhz) |
| 46 | |
| 47 | endchoice |
| 48 | |
| 49 | choice |
| 50 | prompt "Boot Mode" |
| 51 | default BFIN_BOOT_FLASH16 |
| 52 | |
| 53 | config BFIN_BOOT_BYPASS |
| 54 | bool "bypass" |
| 55 | help |
| 56 | blackfin is strapped to boot from parallel flash on CS0 |
| 57 | |
| 58 | config BFIN_BOOT_FLASH8 |
| 59 | bool "flash 8 bit" |
| 60 | help |
| 61 | blackfin is strapped to boot from 8bit wide flash via boot ROM |
| 62 | |
| 63 | config BFIN_BOOT_FLASH16 |
| 64 | bool "flash 16 bit" |
| 65 | help |
| 66 | blackfin is strapped to boot from 16bit wide flash via boot ROM |
| 67 | |
| 68 | endchoice |
| 69 | |
| 70 | source common/Kconfig |
| 71 | source commands/Kconfig |
| 72 | source net/Kconfig |
| 73 | source drivers/Kconfig |
| 74 | source fs/Kconfig |
| 75 | source lib/Kconfig |
| 76 | |