summaryrefslogtreecommitdiffstats
path: root/arch/ppc/Kconfig
blob: cda14de25d134adeba7fb4af03c326b6825910fa (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

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 MPC5XXX_EARLY_CONSOLE
	bool
	depends on ARCH_MPC5200
	default y

config HAS_EARLY_INIT
	bool
	default y

config PPC
	bool
	select HAVE_CONFIGURABLE_TEXT_BASE
	select HAS_KALLSYMS
	select HAS_MODULES
	select HAVE_CONFIGURABLE_MEMORY_LAYOUT
	select HAVE_CONFIGURABLE_TEXT_BASE
	default y

# Uh, we should decide which one we want to use
config ARCH_MPC5200
	bool

config MPC5200
	bool

config MPC5xxx
	bool

config CACHELINE_SIZE
	int
	default 32 if ARCH_MPC5200

config HAS_REGINFO
	bool
	default y if ARCH_MPC5200

choice
	prompt "Select your board"

config MACH_PHYCORE_MPC5200B_TINY
	bool "Phycore mpc5200b tiny"
	select ARCH_MPC5200
	select MPC5200
	select MPC5xxx
	select HAS_CFI
	help
	  Say Y here if you are using the Phytec Phycore MPC5200B Tiny
	  board aka pcm030
endchoice

source arch/ppc/mach-mpc5xxx/Kconfig
source common/Kconfig
source commands/Kconfig
source net/Kconfig
source drivers/Kconfig
source fs/Kconfig
source lib/Kconfig