blob: d7a19c6772ce18ddb61c43533e195462b6648351 [file] [log] [blame]
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +09001if ARCH_UNIPHIER
Masahiro Yamada66cba042014-10-03 19:21:07 +09002
Masahiro Yamada66cba042014-10-03 19:21:07 +09003config SYS_CONFIG_NAME
Masahiro Yamadaf5d0b9b2014-12-06 00:03:22 +09004 default "uniphier"
Masahiro Yamada66cba042014-10-03 19:21:07 +09005
Masahiro Yamada84b35842014-12-06 00:03:20 +09006config UNIPHIER_SMP
7 bool
8
Masahiro Yamada66cba042014-10-03 19:21:07 +09009choice
10 prompt "UniPhier SoC select"
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090011 default ARCH_UNIPHIER_PH1_PRO4
Masahiro Yamada66cba042014-10-03 19:21:07 +090012
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090013config ARCH_UNIPHIER_PH1_SLD3
Masahiro Yamada3365b4e2015-07-21 14:04:22 +090014 bool "PH1-sLD3"
Masahiro Yamada84b35842014-12-06 00:03:20 +090015 select UNIPHIER_SMP
Masahiro Yamada66cba042014-10-03 19:21:07 +090016
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090017config ARCH_UNIPHIER_PH1_LD4
Masahiro Yamada66cba042014-10-03 19:21:07 +090018 bool "PH1-LD4"
19
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090020config ARCH_UNIPHIER_PH1_PRO4
Masahiro Yamada3365b4e2015-07-21 14:04:22 +090021 bool "PH1-Pro4"
22 select UNIPHIER_SMP
23
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090024config ARCH_UNIPHIER_PH1_SLD8
Masahiro Yamada66cba042014-10-03 19:21:07 +090025 bool "PH1-sLD8"
26
27endchoice
28
Masahiro Yamada98798422015-09-11 20:17:45 +090029config MICRO_SUPPORT_CARD
30 bool "Use Micro Support Card"
Masahiro Yamada32014552014-12-06 00:03:21 +090031 help
Masahiro Yamada98798422015-09-11 20:17:45 +090032 This option provides support for the expansion board, available
33 on some UniPhier reference boards.
Masahiro Yamada32014552014-12-06 00:03:21 +090034
35 Say Y to use the on-board UART, Ether, LED devices.
36
Masahiro Yamada59ca5532014-10-20 20:45:22 +090037config CMD_PINMON
38 bool "Enable boot mode pins monitor command"
Masahiro Yamada59ca5532014-10-20 20:45:22 +090039 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
Masahiro Yamadac67b2af2014-12-19 20:20:53 +090045config CMD_DDRPHY_DUMP
46 bool "Enable dump command of DDR PHY parameters"
Masahiro Yamadac67b2af2014-12-19 20:20:53 +090047 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
Masahiro Yamadaa69e0372014-11-06 20:16:42 +090051choice
52 prompt "DDR3 Frequency select"
Masahiro Yamadaa69e0372014-11-06 20:16:42 +090053
54config DDR_FREQ_1600
55 bool "DDR3 1600"
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090056 depends on ARCH_UNIPHIER_PH1_SLD3 || ARCH_UNIPHIER_PH1_LD4 || ARCH_UNIPHIER_PH1_PRO4
Masahiro Yamadaa69e0372014-11-06 20:16:42 +090057
58config DDR_FREQ_1333
59 bool "DDR3 1333"
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090060 depends on ARCH_UNIPHIER_PH1_SLD3 || ARCH_UNIPHIER_PH1_LD4 || ARCH_UNIPHIER_PH1_SLD8
Masahiro Yamadaa69e0372014-11-06 20:16:42 +090061
62endchoice
63
64config DDR_FREQ
65 int
66 default 1333 if DDR_FREQ_1333
67 default 1600 if DDR_FREQ_1600
68
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +090069endif