diff options
author | Paul Burton <paul.burton@imgtec.com> | 2016-09-08 07:47:39 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-09-21 16:24:36 +0200 |
commit | ad8783cb1cb258b71d81800f72cd64eb44081653 (patch) | |
tree | feb7ad4960dc78fa6db22dd8c862b2b0d8bf93d9 /arch/mips/Kconfig | |
parent | dd7c749474e0976cfc7e78dc9032d7fa8b9b9632 (diff) | |
download | u-boot-ad8783cb1cb258b71d81800f72cd64eb44081653.tar.gz u-boot-ad8783cb1cb258b71d81800f72cd64eb44081653.tar.bz2 u-boot-ad8783cb1cb258b71d81800f72cd64eb44081653.zip |
boston: Introduce support for the MIPS Boston development board
This patch introduces support for building U-Boot to run on the MIPS
Boston development board. This is a board built around an FPGA & an
Intel EG20T Platform Controller Hub, used largely as part of the
development of new CPUs and their software support. It is essentially
the successor to the older MIPS Malta board.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Diffstat (limited to 'arch/mips/Kconfig')
-rw-r--r-- | arch/mips/Kconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index f113b91de7..097ad587c1 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -75,6 +75,23 @@ config MACH_PIC32 select OF_CONTROL select DM +config TARGET_BOSTON + bool "Support Boston" + select DM + select DM_SERIAL + select OF_CONTROL + select MIPS_CM + select MIPS_L1_CACHE_SHIFT_6 + select MIPS_L2_CACHE + select SUPPORTS_BIG_ENDIAN + select SUPPORTS_LITTLE_ENDIAN + select SUPPORTS_CPU_MIPS32_R1 + select SUPPORTS_CPU_MIPS32_R2 + select SUPPORTS_CPU_MIPS32_R6 + select SUPPORTS_CPU_MIPS64_R1 + select SUPPORTS_CPU_MIPS64_R2 + select SUPPORTS_CPU_MIPS64_R6 + config TARGET_XILFPGA bool "Support Imagination Xilfpga" select OF_CONTROL @@ -92,6 +109,7 @@ config TARGET_XILFPGA endchoice source "board/dbau1x00/Kconfig" +source "board/imgtec/boston/Kconfig" source "board/imgtec/malta/Kconfig" source "board/imgtec/xilfpga/Kconfig" source "board/micronas/vct/Kconfig" |