blob: 11afffa83033e39412787a367e90befd13aa1391 [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "mpc86xx CPU"
2 depends on MPC86xx
3
4config SYS_CPU
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "mpc86xx"
6
7choice
8 prompt "Target select"
Joe Hershbergera26cd042015-05-12 14:46:23 -05009 optional
Masahiro Yamadadd840582014-07-30 14:08:14 +090010
11config TARGET_SBC8641D
12 bool "Support sbc8641d"
York Sun4f5554c2016-11-23 14:08:36 -080013 select ARCH_MPC8641
Masahiro Yamadadd840582014-07-30 14:08:14 +090014
15config TARGET_MPC8610HPCD
16 bool "Support MPC8610HPCD"
York Sun1425a872016-11-23 14:06:21 -080017 select ARCH_MPC8610
Masahiro Yamadadd840582014-07-30 14:08:14 +090018
19config TARGET_MPC8641HPCN
20 bool "Support MPC8641HPCN"
York Sun4f5554c2016-11-23 14:08:36 -080021 select ARCH_MPC8641
Masahiro Yamadadd840582014-07-30 14:08:14 +090022
23config TARGET_XPEDITE517X
24 bool "Support xpedite517x"
York Sun4f5554c2016-11-23 14:08:36 -080025 select ARCH_MPC8641
Masahiro Yamadadd840582014-07-30 14:08:14 +090026
27endchoice
28
York Sun1425a872016-11-23 14:06:21 -080029config ARCH_MPC8610
30 bool
York Sunf4325b42016-12-02 10:45:23 -080031 select FSL_LAW
York Sun1425a872016-11-23 14:06:21 -080032
York Sun4f5554c2016-11-23 14:08:36 -080033config ARCH_MPC8641
34 bool
York Sunf4325b42016-12-02 10:45:23 -080035 select FSL_LAW
36
37config FSL_LAW
38 bool
39 help
40 Use Freescale common code for Local Access Window
York Sun4f5554c2016-11-23 14:08:36 -080041
York Sun4a1e6812016-12-01 13:32:46 -080042config 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.
York Sun54db3c22016-12-01 14:10:47 -080050config 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.
York Sun4a1e6812016-12-01 13:32:46 -080056
Masahiro Yamadadd840582014-07-30 14:08:14 +090057source "board/freescale/mpc8610hpcd/Kconfig"
58source "board/freescale/mpc8641hpcn/Kconfig"
59source "board/sbc8641d/Kconfig"
60source "board/xes/xpedite517x/Kconfig"
61
62endmenu