]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-uniphier/Kconfig
ARM: uniphier: rename CONFIG_MACH_* to CONFIG_ARCH_UNIPHIER_*
[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"
8497ccc4 11 default ARCH_UNIPHIER_PH1_PRO4
66cba041 12
8497ccc4 13config ARCH_UNIPHIER_PH1_SLD3
3365b4eb 14 bool "PH1-sLD3"
84b3584f 15 select UNIPHIER_SMP
66cba041 16
8497ccc4 17config ARCH_UNIPHIER_PH1_LD4
66cba041
MY
18 bool "PH1-LD4"
19
8497ccc4 20config ARCH_UNIPHIER_PH1_PRO4
3365b4eb
MY
21 bool "PH1-Pro4"
22 select UNIPHIER_SMP
23
8497ccc4 24config ARCH_UNIPHIER_PH1_SLD8
66cba041
MY
25 bool "PH1-sLD8"
26
27endchoice
28
9879842c
MY
29config MICRO_SUPPORT_CARD
30 bool "Use Micro Support Card"
3201455d 31 help
9879842c
MY
32 This option provides support for the expansion board, available
33 on some UniPhier reference boards.
3201455d
MY
34
35 Say Y to use the on-board UART, Ether, LED devices.
36
59ca5537
MY
37config CMD_PINMON
38 bool "Enable boot mode pins monitor command"
59ca5537
MY
39 default y
40 help
41 The command "pinmon" shows the state of the boot mode pins.
42 The boot mode pins are latched when the system reset is deasserted
43 and determine which device the system should load a boot image from.
44
c67b2afd
MY
45config CMD_DDRPHY_DUMP
46 bool "Enable dump command of DDR PHY parameters"
c67b2afd
MY
47 help
48 The command "ddrphy" shows the resulting parameters of DDR PHY
49 training; it is useful for the evaluation of DDR PHY training.
50
a69e037e
MY
51choice
52 prompt "DDR3 Frequency select"
a69e037e
MY
53
54config DDR_FREQ_1600
55 bool "DDR3 1600"
8497ccc4 56 depends on ARCH_UNIPHIER_PH1_SLD3 || ARCH_UNIPHIER_PH1_LD4 || ARCH_UNIPHIER_PH1_PRO4
a69e037e
MY
57
58config DDR_FREQ_1333
59 bool "DDR3 1333"
8497ccc4 60 depends on ARCH_UNIPHIER_PH1_SLD3 || ARCH_UNIPHIER_PH1_LD4 || ARCH_UNIPHIER_PH1_SLD8
a69e037e
MY
61
62endchoice
63
64config DDR_FREQ
65 int
66 default 1333 if DDR_FREQ_1333
67 default 1600 if DDR_FREQ_1600
68
b6ef3a3f 69endif