ppc: Remove MPC8610HPCD board
[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 config TARGET_MPC8641HPCN
17         bool "Support MPC8641HPCN"
18         select ARCH_MPC8641
19         select FSL_DDR_INTERACTIVE
20         imply SCSI
21
22 config TARGET_XPEDITE517X
23         bool "Support xpedite517x"
24         select ARCH_MPC8641
25
26 endchoice
27
28 config ARCH_MPC8610
29         bool
30         select FSL_LAW
31         select SYS_FSL_HAS_DDR1
32         select SYS_FSL_HAS_DDR2
33
34 config ARCH_MPC8641
35         bool
36         select FSL_LAW
37         select SYS_FSL_HAS_DDR1
38         select SYS_FSL_HAS_DDR2
39
40 config FSL_LAW
41         bool
42         help
43                 Use Freescale common code for Local Access Window
44
45 config SYS_CCSRBAR_DEFAULT
46         hex "Default CCSRBAR address"
47         default 0xff700000 if ARCH_MPC8610 || ARCH_MPC8641
48         help
49                 Default value of CCSRBAR comes from power-on-reset. It
50                 is fixed on each SoC. Some SoCs can have different value
51                 if changed by pre-boot regime. The value here must match
52                 the current value in SoC. If not sure, do not change.
53 config SYS_FSL_NUM_LAWS
54         int "Number of local access windows"
55         default 10 if ARCH_MPC8610 || ARCH_MPC8641
56         help
57                 Number of local access windows. This is fixed per SoC.
58                 If not sure, do not change.
59
60 source "board/freescale/mpc8641hpcn/Kconfig"
61 source "board/sbc8641d/Kconfig"
62 source "board/xes/xpedite517x/Kconfig"
63
64 endmenu