Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1 | menu "PowerPC architecture" |
2 | depends on PPC | ||||
3 | |||||
4 | config SYS_ARCH | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 5 | default "powerpc" |
6 | |||||
7 | choice | ||||
8 | prompt "CPU 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 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 11 | config MPC512X |
12 | bool "MPC512X" | ||||
13 | |||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 14 | config MPC5xxx |
15 | bool "MPC5xxx" | ||||
16 | |||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 17 | config MPC83xx |
18 | bool "MPC83xx" | ||||
Masahiro Yamada | a350c6a | 2015-07-15 20:59:29 +0900 | [diff] [blame] | 19 | select CREATE_ARCH_SYMLINK |
York Sun | 2c2e2c9 | 2016-12-28 08:43:30 -0800 | [diff] [blame] | 20 | select SYS_FSL_HAS_SEC |
York Sun | 90b8038 | 2016-12-28 08:43:31 -0800 | [diff] [blame] | 21 | select SYS_FSL_SEC_BE |
York Sun | 2c2e2c9 | 2016-12-28 08:43:30 -0800 | [diff] [blame] | 22 | select SYS_FSL_SEC_COMPAT_2 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 23 | |
24 | config MPC85xx | ||||
25 | bool "MPC85xx" | ||||
Masahiro Yamada | a350c6a | 2015-07-15 20:59:29 +0900 | [diff] [blame] | 26 | select CREATE_ARCH_SYMLINK |
York Sun | d26e34c | 2016-12-28 08:43:40 -0800 | [diff] [blame] | 27 | select SYS_FSL_DDR |
28 | select SYS_FSL_DDR_BE | ||||
Tom Rini | 64d6ac5 | 2017-05-12 22:33:28 -0400 | [diff] [blame] | 29 | imply USB_EHCI_HCD if USB |
Simon Glass | 551c393 | 2017-05-17 03:25:25 -0600 | [diff] [blame] | 30 | imply CMD_HASH |
Simon Glass | 1b33089 | 2017-05-17 03:25:39 -0600 | [diff] [blame] | 31 | imply CMD_IRQ |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 32 | |
33 | config MPC86xx | ||||
34 | bool "MPC86xx" | ||||
York Sun | d26e34c | 2016-12-28 08:43:40 -0800 | [diff] [blame] | 35 | select SYS_FSL_DDR |
36 | select SYS_FSL_DDR_BE | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 37 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 38 | config 4xx |
39 | bool "PPC4xx" | ||||
Masahiro Yamada | a350c6a | 2015-07-15 20:59:29 +0900 | [diff] [blame] | 40 | select CREATE_ARCH_SYMLINK |
Simon Glass | 1b33089 | 2017-05-17 03:25:39 -0600 | [diff] [blame] | 41 | imply CMD_IRQ |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 42 | |
43 | endchoice | ||||
44 | |||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 45 | source "arch/powerpc/cpu/mpc512x/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 46 | source "arch/powerpc/cpu/mpc5xxx/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 47 | source "arch/powerpc/cpu/mpc83xx/Kconfig" |
48 | source "arch/powerpc/cpu/mpc85xx/Kconfig" | ||||
49 | source "arch/powerpc/cpu/mpc86xx/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 50 | source "arch/powerpc/cpu/ppc4xx/Kconfig" |
51 | |||||
52 | endmenu |