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