diff options
author | York Sun <york.sun@nxp.com> | 2016-12-28 08:43:27 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-04 19:40:12 -0500 |
commit | f8dee360341538f80a1b61b632c852c443ba5558 (patch) | |
tree | 97d359cd14fe21a3fac47e344a310d8f9da157f0 /arch | |
parent | 87f5f5417fc897df0b05826b408f0f4b7d2ee388 (diff) | |
download | u-boot-imx-f8dee360341538f80a1b61b632c852c443ba5558.zip u-boot-imx-f8dee360341538f80a1b61b632c852c443ba5558.tar.gz u-boot-imx-f8dee360341538f80a1b61b632c852c443ba5558.tar.bz2 |
powerpc: E500: Move CONFIG_E500 and CONFIG_E500MC to Kconfig
Use Kconfig option for E500 and E500MC macros.
Signed-off-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/Kconfig | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/Kconfig b/arch/powerpc/cpu/mpc85xx/Kconfig index e4873f5..6d8709e 100644 --- a/arch/powerpc/cpu/mpc85xx/Kconfig +++ b/arch/powerpc/cpu/mpc85xx/Kconfig @@ -323,10 +323,12 @@ endchoice config ARCH_B4420 bool + select E500MC select FSL_LAW config ARCH_B4860 bool + select E500MC select FSL_LAW config ARCH_BSC9131 @@ -419,22 +421,27 @@ config ARCH_P2020 config ARCH_P2041 bool + select E500MC select FSL_LAW config ARCH_P3041 bool + select E500MC select FSL_LAW config ARCH_P4080 bool + select E500MC select FSL_LAW config ARCH_P5020 bool + select E500MC select FSL_LAW config ARCH_P5040 bool + select E500MC select FSL_LAW config ARCH_QEMU_E500 @@ -442,36 +449,59 @@ config ARCH_QEMU_E500 config ARCH_T1023 bool + select E500MC select FSL_LAW config ARCH_T1024 bool + select E500MC select FSL_LAW config ARCH_T1040 bool + select E500MC select FSL_LAW config ARCH_T1042 bool + select E500MC select FSL_LAW config ARCH_T2080 bool + select E500MC select FSL_LAW config ARCH_T2081 bool + select E500MC select FSL_LAW config ARCH_T4160 bool + select E500MC select FSL_LAW config ARCH_T4240 bool + select E500MC select FSL_LAW +config BOOKE + bool + default y + +config E500 + bool + default y + help + Enable PowerPC E500 cores, including e500v1, e500v2, e500mc + +config E500MC + bool + help + Enble PowerPC E500MC core + config FSL_LAW bool help |