ppc: Remove xpedite boards
[platform/kernel/u-boot.git] / arch / powerpc / cpu / mpc86xx / Kconfig
1 menu "mpc86xx CPU"
2         depends on MPC86xx
3
4 config SYS_CPU
5         default "mpc86xx"
6
7 choice
8         prompt "Target select"
9         optional
10
11 config TARGET_SBC8641D
12         bool "Support sbc8641d"
13         select ARCH_MPC8641
14         select BOARD_EARLY_INIT_F
15
16 endchoice
17
18 config ARCH_MPC8610
19         bool
20         select FSL_LAW
21         select SYS_FSL_HAS_DDR1
22         select SYS_FSL_HAS_DDR2
23
24 config ARCH_MPC8641
25         bool
26         select FSL_LAW
27         select SYS_FSL_HAS_DDR1
28         select SYS_FSL_HAS_DDR2
29
30 config FSL_LAW
31         bool
32         help
33                 Use Freescale common code for Local Access Window
34
35 config SYS_CCSRBAR_DEFAULT
36         hex "Default CCSRBAR address"
37         default 0xff700000 if ARCH_MPC8610 || ARCH_MPC8641
38         help
39                 Default value of CCSRBAR comes from power-on-reset. It
40                 is fixed on each SoC. Some SoCs can have different value
41                 if changed by pre-boot regime. The value here must match
42                 the current value in SoC. If not sure, do not change.
43 config SYS_FSL_NUM_LAWS
44         int "Number of local access windows"
45         default 10 if ARCH_MPC8610 || ARCH_MPC8641
46         help
47                 Number of local access windows. This is fixed per SoC.
48                 If not sure, do not change.
49
50 source "board/sbc8641d/Kconfig"
51
52 endmenu