summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/mach-mpc85xx/Kconfig
blob: 550c554286d79249c70988fb8e4fc22545e0d927 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# SPDX-License-Identifier: GPL-2.0-only

if ARCH_MPC85XX

config MMU
	default y

config BTB
	bool
	default y

config TEXT_BASE
	hex
	default 0xeff80000 if P1010RDB || P2020RDB || P1022DS
	default 0xfff80000 if DA923RC

config RESET_VECTOR_ADDRESS
	hex
	default 0xfffffffc if DA923RC
	default 0xeffffffc if P1010RDB || P2020RDB || P1022DS

config MPC85xx
	bool
	default y

config BOOKE
	bool
	default y

config E500
	bool
	default y

choice
	prompt "Select your board"
config P1010RDB
	bool "P1010RDB"
    select P1010
    select DDR_SPD
    select FSL_DDR3
	help
	  Say Y here if you are using the Freescale P1010RDB

config P2020RDB
	bool "P2020RDB"
    select P2020
    select FSL_ELBC
	help
	  Say Y here if you are using the Freescale P2020RDB

config P1022DS
	bool "P1022DS"
    select P1022
    select DDR_SPD
    select FSL_DDR3
    select FSL_ELBC
	help
	  Say Y here if you are using the Freescale P1022DS

config DA923RC
	bool "DA923RC"
    select MPC8544
    select DDR_SPD
    select FSL_DDR2
	help
	Say Y here if you are using the GE Intelligent Platforms DA923RC
endchoice
endif

config P1010
    select FSL_IFC
    select FSL_ERRATUM_IFC_A002769
    select FSL_ERRATUM_P1010_A003549
    select FSL_ERRATUM_IFC_A003399
	bool

config P2020
	bool

config P1022
	bool

config MPC8544
	bool

config FSL_DDR2
	bool

config FSL_DDR3
	bool

config FSL_IFC
	bool

config FSL_ELBC
	bool

config FSL_ERRATUM_IFC_A002769
    bool

config FSL_ERRATUM_IFC_A003399
    bool

config FSL_ERRATUM_P1010_A003549
    bool