summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mxs/Kconfig
blob: f9cefaf9074604bf4fd3c9a21fcc79f42875bdd3 (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
75
76
77
78
79
80
81
82
83
84
85
if ARCH_MXS

config ARCH_TEXT_BASE
	hex
	default 0x41000000 if MACH_MX23EVK
	default 0x42000000 if MACH_CHUMBY
	default 0x47000000 if MACH_TX28

config BOARDINFO
	default "Freescale i.MX23-EVK" if MACH_MX23EVK
	default "Chumby Falconwing" if MACH_CHUMBY
	default "Karo TX28" if MACH_TX28

comment "Freescale i.MX System-on-Chip"

choice
	prompt "Freescale i.MX Processor"

config ARCH_IMX23
	bool "i.MX23"
	select CPU_ARM926T

config ARCH_IMX28
	bool "i.MX28"
	select CPU_ARM926T
	select ARCH_HAS_FEC_IMX

endchoice

if ARCH_IMX23

choice
	prompt "i.MX23 Board Type"

config MACH_MX23EVK
	bool "mx23-evk"
	help
	  Say Y here if you are using the Freescale i.MX23-EVK board

config MACH_CHUMBY
	bool "Chumby Falconwing"
	select HAVE_MMU
	help
	  Say Y here if you are using the "chumby one" aka falconwing from
	  Chumby Industries

endchoice

endif

if ARCH_IMX28

choice
	prompt "i.MX28 Board Type"

config MACH_TX28
	bool "KARO tx28"
	select HAVE_MMU
	help
	  Say Y here if you are using the KARO TX28 CPU module.

endchoice

endif

menu "Board specific settings       "

if MACH_TX28

choice
	prompt "TX28 Base Board Type"

config MACH_TX28STK5
	bool "TX28-stk5"
	help
	  Select this entry if you are running the TX28 CPU module on the
	  KARO TX28 Starterkit5.

endchoice

endif

endmenu

endif