diff options
author | Jiaxun Yang <jiaxun.yang@flygoat.com> | 2023-05-29 15:52:45 +0200 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2023-06-09 09:49:45 +0200 |
commit | fb6700c598d8a10d35afb1365cb321695e9a94bc (patch) | |
tree | 40258cbdd895ec72aadf5ee966520b8fdb5bc78d /arch/mips/Kconfig | |
parent | mips: provide unxlate_dev_mem_ptr() in asm/io.h (diff) | |
download | linux-fb6700c598d8a10d35afb1365cb321695e9a94bc.tar.xz linux-fb6700c598d8a10d35afb1365cb321695e9a94bc.zip |
MIPS: generic: Allow R5 CPUs to be selected
Since we do have P5600 bitfile for boston board, we should
allow generic kernel to be compiled for R5 CPUs.
Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Reviewed-by: Serge Semin <fancer.lancer@gmail.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/Kconfig')
-rw-r--r-- | arch/mips/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index c2f5498d207f..d79d6d495094 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -152,9 +152,11 @@ config MIPS_GENERIC_KERNEL select SWAP_IO_SPACE select SYS_HAS_CPU_MIPS32_R1 select SYS_HAS_CPU_MIPS32_R2 + select SYS_HAS_CPU_MIPS32_R5 select SYS_HAS_CPU_MIPS32_R6 select SYS_HAS_CPU_MIPS64_R1 select SYS_HAS_CPU_MIPS64_R2 + select SYS_HAS_CPU_MIPS64_R5 select SYS_HAS_CPU_MIPS64_R6 select SYS_SUPPORTS_32BIT_KERNEL select SYS_SUPPORTS_64BIT_KERNEL |