1# SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 3menu "MSCC VCore-III platforms" 4 depends on ARCH_MSCC 5 6config SOC_VCOREIII 7 select MIPS_TUNE_24KC 8 select ROM_EXCEPTION_VECTORS 9 select SUPPORTS_BIG_ENDIAN 10 select SUPPORTS_CPU_MIPS32_R1 11 select SUPPORTS_CPU_MIPS32_R2 12 select SUPPORTS_LITTLE_ENDIAN 13 bool 14 15config SYS_SOC 16 default "mscc" 17 18choice 19 20 prompt "SOC Family Variant" 21 22config SOC_OCELOT 23 bool "Ocelot SOC Family" 24 select SOC_VCOREIII 25 select DESIGNWARE_SPI 26 help 27 This supports MSCC Ocelot family of SOCs. 28 29config SOC_LUTON 30 bool "Luton SOC Family" 31 select SOC_VCOREIII 32 select MSCC_BITBANG_SPI_GPIO 33 help 34 This supports MSCC Luton family of SOCs. 35 36config SOC_JR2 37 bool "Jaguar2 SOC Family" 38 select SOC_VCOREIII 39 select DESIGNWARE_SPI 40 help 41 This supports MSCC Jaguar2 family of SOCs. 42 43endchoice 44 45config SYS_CONFIG_NAME 46 default "vcoreiii" 47 48choice 49 prompt "DDR type" 50 51config DDRTYPE_H5TQ4G63MFR 52 bool "Hynix H5TQ4G63MFR-PBC (4Gbit, DDR3-800, 256Mbitx16)" 53 54config DDRTYPE_MT41K256M16 55 bool "Micron MT41K256M16 (4Gbit, DDR3L-800, 256Mbitx16)" 56 57config DDRTYPE_H5TQ1G63BFA 58 bool "Hynix H5TQ1G63BFA (1Gbit DDR3, x16)" 59 60config DDRTYPE_MT41J128M16HA 61 bool "Micron MT41J128M16HA-15E:D (2Gbit DDR3, x16)" 62 63config DDRTYPE_MT41K128M16JT 64 bool "Micron MT41K128M16JT-125 (2Gbit DDR3L, 128Mbitx16)" 65 66config DDRTYPE_MT47H128M8HQ 67 bool "Micron MT47H128M8-3 (1Gbit, DDR-533@CL4 @ 4.80ns 16Mbisx8x8)" 68 69endchoice 70 71source "board/mscc/ocelot/Kconfig" 72 73source "board/mscc/luton/Kconfig" 74 75source "board/mscc/jr2/Kconfig" 76 77endmenu 78