blob: 587f8029920b77a33e61b8addb69189e299e7ea4 [file] [log] [blame]
Avery Pennarun6e24c862013-09-16 23:38:03 -04001
2config 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
10config BF561
11 bool
12
13config BOARDINFO
14 default "PII IPE337" if MACH_IPE337
15
16config ARCH_TEXT_BASE
17 hex
18 default 0x00000000
19 default 0x03f00000 if MACH_IPE337
20
21choice
22 prompt "Select your board"
23
24config MACH_IPE337
25 bool "PII ipe337"
26 select BF561
27 help
28 Say Y here if you are using the PII IPE337 board
29
30endchoice
31
32choice
33 prompt "Select your board options"
34 depends on MACH_IPE337
35 default MACH_IPE337_V2
36
37config 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
42config 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
47endchoice
48
49choice
50 prompt "Boot Mode"
51 default BFIN_BOOT_FLASH16
52
53config BFIN_BOOT_BYPASS
54 bool "bypass"
55 help
56 blackfin is strapped to boot from parallel flash on CS0
57
58config BFIN_BOOT_FLASH8
59 bool "flash 8 bit"
60 help
61 blackfin is strapped to boot from 8bit wide flash via boot ROM
62
63config BFIN_BOOT_FLASH16
64 bool "flash 16 bit"
65 help
66 blackfin is strapped to boot from 16bit wide flash via boot ROM
67
68endchoice
69
70source common/Kconfig
71source commands/Kconfig
72source net/Kconfig
73source drivers/Kconfig
74source fs/Kconfig
75source lib/Kconfig
76