]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/powerpc/cpu/mpc86xx/Kconfig
env: Convert CONFIG_ENV_IS_IN... to a choice
[people/ms/u-boot.git] / arch / powerpc / cpu / mpc86xx / Kconfig
CommitLineData
dd84058d
MY
1menu "mpc86xx CPU"
2 depends on MPC86xx
3
4config SYS_CPU
dd84058d
MY
5 default "mpc86xx"
6
7choice
8 prompt "Target select"
a26cd049 9 optional
dd84058d
MY
10
11config TARGET_SBC8641D
12 bool "Support sbc8641d"
4f5554c6 13 select ARCH_MPC8641
a5d67547 14 select BOARD_EARLY_INIT_F
dd84058d
MY
15
16config TARGET_MPC8610HPCD
17 bool "Support MPC8610HPCD"
1425a87b 18 select ARCH_MPC8610
a5d67547 19 select BOARD_EARLY_INIT_F
dd84058d
MY
20
21config TARGET_MPC8641HPCN
22 bool "Support MPC8641HPCN"
4f5554c6 23 select ARCH_MPC8641
fedb428c 24 imply SCSI
dd84058d
MY
25
26config TARGET_XPEDITE517X
27 bool "Support xpedite517x"
4f5554c6 28 select ARCH_MPC8641
dd84058d
MY
29
30endchoice
31
1425a87b
YS
32config ARCH_MPC8610
33 bool
f4325b47 34 select FSL_LAW
d26e34c4
YS
35 select SYS_FSL_HAS_DDR1
36 select SYS_FSL_HAS_DDR2
1425a87b 37
4f5554c6
YS
38config ARCH_MPC8641
39 bool
f4325b47 40 select FSL_LAW
d26e34c4
YS
41 select SYS_FSL_HAS_DDR1
42 select SYS_FSL_HAS_DDR2
f4325b47
YS
43
44config FSL_LAW
45 bool
46 help
47 Use Freescale common code for Local Access Window
4f5554c6 48
4a1e6810
YS
49config SYS_CCSRBAR_DEFAULT
50 hex "Default CCSRBAR address"
51 default 0xff700000 if ARCH_MPC8610 || ARCH_MPC8641
52 help
53 Default value of CCSRBAR comes from power-on-reset. It
54 is fixed on each SoC. Some SoCs can have different value
55 if changed by pre-boot regime. The value here must match
56 the current value in SoC. If not sure, do not change.
54db3c20
YS
57config SYS_FSL_NUM_LAWS
58 int "Number of local access windows"
59 default 10 if ARCH_MPC8610 || ARCH_MPC8641
60 help
61 Number of local access windows. This is fixed per SoC.
62 If not sure, do not change.
4a1e6810 63
dd84058d
MY
64source "board/freescale/mpc8610hpcd/Kconfig"
65source "board/freescale/mpc8641hpcn/Kconfig"
66source "board/sbc8641d/Kconfig"
67source "board/xes/xpedite517x/Kconfig"
68
69endmenu