xref: /openbmc/u-boot/arch/mips/mach-mscc/Kconfig (revision e9f1492b)
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
36endchoice
37
38config SYS_CONFIG_NAME
39	default "vcoreiii"
40
41choice
42	prompt "DDR type"
43
44config DDRTYPE_H5TQ4G63MFR
45	bool "Hynix H5TQ4G63MFR-PBC (4Gbit, DDR3-800, 256Mbitx16)"
46
47config DDRTYPE_MT41K256M16
48	bool "Micron MT41K256M16 (4Gbit, DDR3L-800, 256Mbitx16)"
49
50config DDRTYPE_H5TQ1G63BFA
51	bool "Hynix H5TQ1G63BFA (1Gbit DDR3, x16)"
52
53config DDRTYPE_MT41J128M16HA
54	bool "Micron MT41J128M16HA-15E:D (2Gbit DDR3, x16)"
55
56config DDRTYPE_MT41K128M16JT
57	bool "Micron MT41K128M16JT-125 (2Gbit DDR3L, 128Mbitx16)"
58
59config DDRTYPE_MT47H128M8HQ
60	bool "Micron MT47H128M8-3 (1Gbit, DDR-533@CL4 @ 4.80ns 16Mbisx8x8)"
61
62endchoice
63
64source "board/mscc/ocelot/Kconfig"
65
66source "board/mscc/luton/Kconfig"
67
68endmenu
69