xref: /openbmc/u-boot/arch/arm/mach-uniphier/Kconfig (revision 7dd12830)
1if ARCH_UNIPHIER
2
3config SYS_CONFIG_NAME
4	default "uniphier"
5
6choice
7        prompt "UniPhier SoC select"
8        default ARCH_UNIPHIER_PRO4
9
10config ARCH_UNIPHIER_SLD3
11	bool "UniPhier PH1-sLD3 SoC"
12	select CPU_V7
13
14config ARCH_UNIPHIER_LD4_SLD8
15	bool "UniPhier PH1-LD4/PH1-sLD8 SoC"
16	select CPU_V7
17
18config ARCH_UNIPHIER_PRO4
19	bool "UniPhier PH1-Pro4 SoC"
20	select CPU_V7
21
22config ARCH_UNIPHIER_PRO5_PXS2_LD6B
23	bool "UniPhier PH1-Pro5/ProXstream2/PH1-LD6b SoC"
24	select CPU_V7
25
26config ARCH_UNIPHIER_LD11
27	bool "UniPhier PH1-LD11 SoC"
28	select ARM64
29	select SPL_SEPARATE_BSS
30
31config ARCH_UNIPHIER_LD20
32	bool "UniPhier PH1-LD20 SoC"
33	select ARM64
34	select SPL_SEPARATE_BSS
35
36endchoice
37
38config ARCH_UNIPHIER_LD4
39	bool "Enable UniPhier PH1-LD4 SoC support"
40	depends on ARCH_UNIPHIER_LD4_SLD8
41	default y
42
43config ARCH_UNIPHIER_SLD8
44	bool "Enable UniPhier PH1-sLD8 SoC support"
45	depends on ARCH_UNIPHIER_LD4_SLD8
46	default y
47
48config ARCH_UNIPHIER_PRO5
49	bool "Enable UniPhier PH1-Pro5 SoC support"
50	depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
51	default y
52
53config ARCH_UNIPHIER_PXS2
54	bool "Enable UniPhier ProXstream2 SoC support"
55	depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
56	default y
57
58config ARCH_UNIPHIER_LD6B
59	bool "Enable UniPhier PH1-LD6b SoC support"
60	depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
61	default y
62
63config MICRO_SUPPORT_CARD
64	bool "Use Micro Support Card"
65	help
66	  This option provides support for the expansion board, available
67	  on some UniPhier reference boards.
68
69	  Say Y to use the on-board UART, Ether, LED devices.
70
71config CMD_PINMON
72	bool "Enable boot mode pins monitor command"
73	default y
74	help
75	  The command "pinmon" shows the state of the boot mode pins.
76	  The boot mode pins are latched when the system reset is deasserted
77	  and determine which device the system should load a boot image from.
78
79config CMD_DDRPHY_DUMP
80	bool "Enable dump command of DDR PHY parameters"
81	depends on ARCH_UNIPHIER_LD4 || ARCH_UNIPHIER_PRO4 || ARCH_UNIPHIER_SLD8
82	default y
83	help
84	  The command "ddrphy" shows the resulting parameters of DDR PHY
85	  training; it is useful for the evaluation of DDR PHY training.
86
87config CMD_DDRMPHY_DUMP
88	bool "Enable dump command of DDR Multi PHY parameters"
89	depends on ARCH_UNIPHIER_PXS2 || ARCH_UNIPHIER_LD6B
90	default y
91	help
92	  The command "ddrmphy" shows the resulting parameters of DDR Multi PHY
93	  training; it is useful for the evaluation of DDR Multi PHY training.
94
95endif
96