]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-uniphier/Kconfig
ARM: UniPhier: set MACH_PH1_PRO4 as default SoC
[people/ms/u-boot.git] / arch / arm / mach-uniphier / Kconfig
CommitLineData
b6ef3a3f 1if ARCH_UNIPHIER
66cba041 2
66cba041 3config SYS_CONFIG_NAME
f5d0b9b2 4 default "uniphier"
66cba041 5
84b3584f
MY
6config UNIPHIER_SMP
7 bool
8
66cba041
MY
9choice
10 prompt "UniPhier SoC select"
7fff91ff 11 default MACH_PH1_PRO4
66cba041
MY
12
13config MACH_PH1_PRO4
14 bool "PH1-Pro4"
84b3584f 15 select UNIPHIER_SMP
66cba041
MY
16
17config MACH_PH1_LD4
18 bool "PH1-LD4"
19
20config MACH_PH1_SLD8
21 bool "PH1-sLD8"
22
23endchoice
24
3201455d
MY
25choice
26 prompt "UniPhier Support Card select"
27 optional
28
29config PFC_MICRO_SUPPORT_CARD
30 bool "Support card with PFC CPLD"
31 help
32 This option provides support for the expansion board with PFC
33 original address mapping.
34
35 Say Y to use the on-board UART, Ether, LED devices.
36
37config DCC_MICRO_SUPPORT_CARD
38 bool "Support card with DCC CPLD"
39 help
40 This option provides support for the expansion board with DCC-
41 arranged address mapping that is compatible with legacy UniPhier
42 reference boards.
43
44 Say Y to use the on-board UART, Ether, LED devices.
45
46endchoice
47
59ca5537
MY
48config CMD_PINMON
49 bool "Enable boot mode pins monitor command"
59ca5537
MY
50 default y
51 help
52 The command "pinmon" shows the state of the boot mode pins.
53 The boot mode pins are latched when the system reset is deasserted
54 and determine which device the system should load a boot image from.
55
c67b2afd
MY
56config CMD_DDRPHY_DUMP
57 bool "Enable dump command of DDR PHY parameters"
c67b2afd
MY
58 help
59 The command "ddrphy" shows the resulting parameters of DDR PHY
60 training; it is useful for the evaluation of DDR PHY training.
61
a69e037e
MY
62choice
63 prompt "DDR3 Frequency select"
a69e037e
MY
64
65config DDR_FREQ_1600
66 bool "DDR3 1600"
67 depends on MACH_PH1_PRO4 || MACH_PH1_LD4
68
69config DDR_FREQ_1333
70 bool "DDR3 1333"
71 depends on MACH_PH1_LD4 || MACH_PH1_SLD8
72
73endchoice
74
75config DDR_FREQ
76 int
77 default 1333 if DDR_FREQ_1333
78 default 1600 if DDR_FREQ_1600
79
b6ef3a3f 80endif