summaryrefslogtreecommitdiffstats
path: root/arch/blackfin/Kconfig
blob: 6233614e190021fd7c5bfb6c98becf76cbdd6157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74

config BLACKFIN
	bool
	select HAS_KALLSYMS
	select HAS_MODULES
	select HAVE_CONFIGURABLE_MEMORY_LAYOUT
	select HAVE_CONFIGURABLE_TEXT_BASE
	select GENERIC_FIND_NEXT_BIT
	default y

config BF561
	bool

config ARCH_TEXT_BASE
	hex
	default 0x00000000
	default 0x03f00000 if MACH_IPE337

choice
	prompt "Select your board"

config MACH_IPE337
	bool "PII ipe337"
	select BF561
	help
	  Say Y here if you are using the PII IPE337 board

endchoice

choice
	prompt "Select your board options"
	depends on MACH_IPE337
	default MACH_IPE337_V2

config MACH_IPE337_V1
	bool "revision 1 (25MHz)"
	help
	  Say Y here if you are using the first revision of the PII IPE337 board (Crystal running at 25Mhz)

config MACH_IPE337_V2
	bool "revision 2 (40MHz)"
	help
	  Say Y here if you are using the second revision of the PII IPE337 board (Crystal running at 40Mhz)

endchoice

choice
	prompt "Boot Mode"
	default BFIN_BOOT_FLASH16

config BFIN_BOOT_BYPASS
	bool "bypass"
	help
	  blackfin is strapped to boot from parallel flash on CS0

config BFIN_BOOT_FLASH8
	bool "flash 8 bit"
	help
	  blackfin is strapped to boot from 8bit wide flash via boot ROM

config BFIN_BOOT_FLASH16
	bool "flash 16 bit"
	help
	  blackfin is strapped to boot from 16bit wide flash via boot ROM

endchoice

source common/Kconfig
source commands/Kconfig
source net/Kconfig
source drivers/Kconfig
source fs/Kconfig
source lib/Kconfig
source crypto/Kconfig