Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1 | menu "mpc86xx CPU" |
| 2 | depends on MPC86xx |
| 3 | |
| 4 | config SYS_CPU |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 5 | default "mpc86xx" |
| 6 | |
| 7 | choice |
| 8 | prompt "Target select" |
Joe Hershberger | a26cd04 | 2015-05-12 14:46:23 -0500 | [diff] [blame] | 9 | optional |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 10 | |
| 11 | config TARGET_SBC8641D |
| 12 | bool "Support sbc8641d" |
York Sun | 4f5554c | 2016-11-23 14:08:36 -0800 | [diff] [blame] | 13 | select ARCH_MPC8641 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 14 | |
| 15 | config TARGET_MPC8610HPCD |
| 16 | bool "Support MPC8610HPCD" |
York Sun | 1425a87 | 2016-11-23 14:06:21 -0800 | [diff] [blame] | 17 | select ARCH_MPC8610 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 18 | |
| 19 | config TARGET_MPC8641HPCN |
| 20 | bool "Support MPC8641HPCN" |
York Sun | 4f5554c | 2016-11-23 14:08:36 -0800 | [diff] [blame] | 21 | select ARCH_MPC8641 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 22 | |
| 23 | config TARGET_XPEDITE517X |
| 24 | bool "Support xpedite517x" |
York Sun | 4f5554c | 2016-11-23 14:08:36 -0800 | [diff] [blame] | 25 | select ARCH_MPC8641 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 26 | |
| 27 | endchoice |
| 28 | |
York Sun | 1425a87 | 2016-11-23 14:06:21 -0800 | [diff] [blame] | 29 | config ARCH_MPC8610 |
| 30 | bool |
| 31 | |
York Sun | 4f5554c | 2016-11-23 14:08:36 -0800 | [diff] [blame] | 32 | config ARCH_MPC8641 |
| 33 | bool |
| 34 | |
York Sun | 4a1e681 | 2016-12-01 13:32:46 -0800 | [diff] [blame] | 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 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 44 | source "board/freescale/mpc8610hpcd/Kconfig" |
| 45 | source "board/freescale/mpc8641hpcn/Kconfig" |
| 46 | source "board/sbc8641d/Kconfig" |
| 47 | source "board/xes/xpedite517x/Kconfig" |
| 48 | |
| 49 | endmenu |