MSCC: add board support for the Ocelots based evaluation boards
[platform/kernel/u-boot.git] / arch / mips / mach-mscc / Kconfig
1 # SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2
3 menu "MSCC VCore-III platforms"
4         depends on ARCH_MSCC
5
6 config 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
15 config SYS_SOC
16         default "mscc"
17
18 config SOC_OCELOT
19         bool
20         select SOC_VCOREIII
21         help
22           This supports MSCC Ocelot family of SOCs.
23
24 config SOC_LUTON
25         bool
26         select SOC_VCOREIII
27         help
28           This supports MSCC Luton family of SOCs.
29
30 config SYS_CONFIG_NAME
31         default "vcoreiii"
32
33 choice
34         prompt "Board select"
35
36 config 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
43 config 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
50 config 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
57 endchoice
58
59 choice
60         prompt "DDR type"
61
62 config DDRTYPE_H5TQ4G63MFR
63         bool "Hynix H5TQ4G63MFR-PBC (4Gbit, DDR3-800, 256Mbitx16)"
64
65 config DDRTYPE_MT41K256M16
66         bool "Micron MT41K256M16 (4Gbit, DDR3L-800, 256Mbitx16)"
67
68 config DDRTYPE_H5TQ1G63BFA
69         bool "Hynix H5TQ1G63BFA (1Gbit DDR3, x16)"
70
71 config DDRTYPE_MT41J128M16HA
72         bool "Micron MT41J128M16HA-15E:D (2Gbit DDR3, x16)"
73
74 config DDRTYPE_MT41K128M16JT
75         bool "Micron MT41K128M16JT-125 (2Gbit DDR3L, 128Mbitx16)"
76
77 config DDRTYPE_MT47H128M8HQ
78         bool "Micron MT47H128M8-3 (1Gbit, DDR-533@CL4 @ 4.80ns 16Mbisx8x8)"
79
80 endchoice
81
82 source "board/mscc/ocelot/Kconfig"
83
84 endmenu