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 18config SOC_OCELOT 19 bool 20 select SOC_VCOREIII 21 help 22 This supports MSCC Ocelot family of SOCs. 23 24config SOC_LUTON 25 bool 26 select SOC_VCOREIII 27 help 28 This supports MSCC Luton family of SOCs. 29 30config SYS_CONFIG_NAME 31 default "vcoreiii" 32 33choice 34 prompt "Board select" 35 36config TARGET_OCELOT_PCB120 37 bool "MSCC PCB120 Reference Board (aka VSC5635EV)" 38 select SOC_OCELOT 39 help 40 When selected, CONFIG_DEFAULT_DEVICE_TREE should be set to 41 ocelot_pcb120 42 43config TARGET_OCELOT_PCB123 44 bool "MSCC PCB123 Reference Board (aka VSC7514EV))" 45 select SOC_OCELOT 46 help 47 When selected, CONFIG_DEFAULT_DEVICE_TREE should be set to 48 ocelot_pcb123 49 50config TARGET_LUTON_PCB091 51 bool "MSCC PCB091 Reference Board" 52 select SOC_LUTON 53 select MSCC_BITBANG_SPI_GPIO 54 help 55 When selected, CONFIG_DEFAULT_DEVICE_TREE should be set to 56 luton_pcb091 57endchoice 58 59choice 60 prompt "DDR type" 61 62config DDRTYPE_H5TQ4G63MFR 63 bool "Hynix H5TQ4G63MFR-PBC (4Gbit, DDR3-800, 256Mbitx16)" 64 65config DDRTYPE_MT41K256M16 66 bool "Micron MT41K256M16 (4Gbit, DDR3L-800, 256Mbitx16)" 67 68config DDRTYPE_H5TQ1G63BFA 69 bool "Hynix H5TQ1G63BFA (1Gbit DDR3, x16)" 70 71config DDRTYPE_MT41J128M16HA 72 bool "Micron MT41J128M16HA-15E:D (2Gbit DDR3, x16)" 73 74config DDRTYPE_MT41K128M16JT 75 bool "Micron MT41K128M16JT-125 (2Gbit DDR3L, 128Mbitx16)" 76 77config DDRTYPE_MT47H128M8HQ 78 bool "Micron MT47H128M8-3 (1Gbit, DDR-533@CL4 @ 4.80ns 16Mbisx8x8)" 79 80endchoice 81 82source "board/mscc/ocelot/Kconfig" 83 84endmenu 85