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