xref: /openbmc/u-boot/arch/powerpc/cpu/mpc86xx/Kconfig (revision fc47cf9d)
1menu "mpc86xx CPU"
2	depends on MPC86xx
3
4config SYS_CPU
5	default "mpc86xx"
6
7choice
8	prompt "Target select"
9	optional
10
11config TARGET_SBC8641D
12	bool "Support sbc8641d"
13	select ARCH_MPC8641
14
15config TARGET_MPC8610HPCD
16	bool "Support MPC8610HPCD"
17	select ARCH_MPC8610
18
19config TARGET_MPC8641HPCN
20	bool "Support MPC8641HPCN"
21	select ARCH_MPC8641
22
23config TARGET_XPEDITE517X
24	bool "Support xpedite517x"
25	select ARCH_MPC8641
26
27endchoice
28
29config ARCH_MPC8610
30	bool
31	select FSL_LAW
32
33config ARCH_MPC8641
34	bool
35	select FSL_LAW
36
37config FSL_LAW
38	bool
39	help
40		Use Freescale common code for Local Access Window
41
42config SYS_CCSRBAR_DEFAULT
43	hex "Default CCSRBAR address"
44	default 0xff700000 if ARCH_MPC8610 || ARCH_MPC8641
45	help
46		Default value of CCSRBAR comes from power-on-reset. It
47		is fixed on each SoC. Some SoCs can have different value
48		if changed by pre-boot regime. The value here must match
49		the current value in SoC. If not sure, do not change.
50config SYS_FSL_NUM_LAWS
51	int "Number of local access windows"
52	default 10 if ARCH_MPC8610 || ARCH_MPC8641
53	help
54		Number of local access windows. This is fixed per SoC.
55		If not sure, do not change.
56
57source "board/freescale/mpc8610hpcd/Kconfig"
58source "board/freescale/mpc8641hpcn/Kconfig"
59source "board/sbc8641d/Kconfig"
60source "board/xes/xpedite517x/Kconfig"
61
62endmenu
63