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