diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2017-07-07 10:16:42 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-07-08 15:56:06 -0400 |
commit | 53193a4f07c9e7a7d42493863712352cf16f1258 (patch) | |
tree | 6e57b908237df4d480f97f5cd197f9ecd0ee4b4c /arch | |
parent | dd7ff4721aaf46533a42ebd017aecd70cafa98e3 (diff) | |
download | u-boot-53193a4f07c9e7a7d42493863712352cf16f1258.zip u-boot-53193a4f07c9e7a7d42493863712352cf16f1258.tar.gz u-boot-53193a4f07c9e7a7d42493863712352cf16f1258.tar.bz2 |
powerpc, 8xx: Add support for MCR3000 board from CSSI
CS Systemes d'Information (CSSI) manufactures two boards, named MCR3000
and CMPC885 which are respectively based on MPC866 and MPC885 processors.
This patch adds support for the first board.
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc8xx/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/powerpc/cpu/mpc8xx/Kconfig b/arch/powerpc/cpu/mpc8xx/Kconfig index 9e1ad33..5a7db33 100644 --- a/arch/powerpc/cpu/mpc8xx/Kconfig +++ b/arch/powerpc/cpu/mpc8xx/Kconfig @@ -8,6 +8,9 @@ choice prompt "Target select" optional +config TARGET_MCR3000 + bool "Support MCR3000 board from CSSI" + endchoice choice @@ -167,4 +170,6 @@ config SYS_OR7_PRELIM config SYS_IMMR hex "Value for IMMR" +source "board/cssi/MCR3000/Kconfig" + endmenu |