summaryrefslogtreecommitdiff
path: root/arch/arm/plat-stmp3xxx/Kconfig
blob: e8bb6834f813f727e19391fd8277b713ba5eb17c (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
if ARCH_STMP3XXX

menu "Freescale STMP3xxx implementations"

choice
	prompt "Select STMP3xxx chip family"

config ARCH_STMP37XX
	bool "Freescale SMTP37xx"
	select CPU_ARM926T
	select FIQ
	---help---
	 STMP37xx refers to 3700 through 3769 chips

config ARCH_STMP378X
	bool "Freescale STMP378x"
	select CPU_ARM926T
	select FIQ
	---help---
	 STMP378x refers to 3780 through 3789 chips

endchoice

choice
	prompt "Select STMP3xxx board type"

config MACH_STMP37XX
	depends on ARCH_STMP37XX
	bool "Freescale STMP37xx development board"

config MACH_STMP378X
	depends on ARCH_STMP378X
	bool "Freescale STMP378x development board"

endchoice

config IRAM_ALLOC
	bool
	default y
	select GENERIC_ALLOCATOR

source arch/arm/mach-stmp378x/Kconfig

endmenu

endif