summaryrefslogtreecommitdiffstats
path: root/arch/ppc/mach-mpc5xxx/Kconfig
blob: 34254eb7ce7495708000f51e7f6713e555bd52fb (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
if ARCH_MPC5XXX

config BOARDINFO
	default "Phytec Phycore mpc5200b tiny" if MACH_PHYCORE_MPC5200B_TINY

config ARCH_TEXT_BASE
	hex
	default 0x00000000 if RELOCATABLE
	default 0x01000000 if MACH_PHYCORE_MPC5200B_TINY

config HAS_REGINFO
	bool
	default y if ARCH_MPC5200

choice
	prompt "Select your board"

config MACH_PHYCORE_MPC5200B_TINY
	bool "Phycore mpc5200b tiny"
	help
	  Say Y here if you are using the Phytec Phycore MPC5200B Tiny
	  board aka pcm030.
endchoice

config MPC5200
	bool
	depends on MACH_PHYCORE_MPC5200B_TINY
	default y

config ARCH_MPC5200
	bool
	depends on MACH_PHYCORE_MPC5200B_TINY
	default y

config MPC5xxx
	bool
	depends on MACH_PHYCORE_MPC5200B_TINY
	default y

menu "Board specific settings"

config MACH_PHYCORE_MPC5200B_TINY_REV
	int "Board Revision"
	default 1
	depends on MACH_PHYCORE_MPC5200B_TINY
	help
	  Revision 0 and revision 1 of the tiny board have
	  incompatible flash settings. Unless you have a very
	  old board you should set this option to 1

endmenu

endif