]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-uniphier/Kconfig
ARM: uniphier: add PH1-Pro5 support
[u-boot] / arch / arm / mach-uniphier / Kconfig
1 if ARCH_UNIPHIER
2
3 config SYS_CONFIG_NAME
4         default "uniphier"
5
6 config UNIPHIER_SMP
7         bool
8
9 config ARCH_UNIPHIER_PH1_SLD3
10         bool "UniPhier PH1-sLD3 SoC"
11         select UNIPHIER_SMP
12         help
13           This enables support for UniPhier PH1-sLD3 SoC.
14
15 config ARCH_UNIPHIER_PH1_LD4
16         bool "UniPhier PH1-LD4 SoC"
17         depends on !ARCH_UNIPHIER_PH1_SLD3
18         help
19           This enables support for UniPhier PH1-LD4 SoC.
20
21 config ARCH_UNIPHIER_PH1_PRO4
22         bool "UniPhier PH1-Pro4 SoC"
23         select UNIPHIER_SMP
24         depends on !ARCH_UNIPHIER_PH1_SLD3 && \
25                    !ARCH_UNIPHIER_PH1_LD4 && \
26                    !ARCH_UNIPHIER_PH1_SLD8
27         help
28           This enables support for UniPhier PH1-Pro4 SoC.
29
30 config ARCH_UNIPHIER_PH1_SLD8
31         bool "UniPhier PH1-sLD8 SoC"
32         depends on !ARCH_UNIPHIER_PH1_SLD3
33         help
34           This enables support for UniPhier PH1-sLD8 SoC.
35
36 config ARCH_UNIPHIER_PH1_PRO5
37         bool "UniPhier PH1-Pro5 SoC"
38         select UNIPHIER_SMP
39         depends on !ARCH_UNIPHIER_PH1_SLD3 && \
40                    !ARCH_UNIPHIER_PH1_LD4 && \
41                    !ARCH_UNIPHIER_PH1_SLD8
42         help
43           This enables support for UniPhier PH1-Pro5 SoC.
44
45 config MICRO_SUPPORT_CARD
46         bool "Use Micro Support Card"
47         help
48           This option provides support for the expansion board, available
49           on some UniPhier reference boards.
50
51           Say Y to use the on-board UART, Ether, LED devices.
52
53 config CMD_PINMON
54         bool "Enable boot mode pins monitor command"
55         default y
56         help
57           The command "pinmon" shows the state of the boot mode pins.
58           The boot mode pins are latched when the system reset is deasserted
59           and determine which device the system should load a boot image from.
60
61 config CMD_DDRPHY_DUMP
62         bool "Enable dump command of DDR PHY parameters"
63         help
64           The command "ddrphy" shows the resulting parameters of DDR PHY
65           training; it is useful for the evaluation of DDR PHY training.
66
67 endif