blob: e859ca3adad0ea9befe9cc9771f037321d6af3a7 [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 Yamada5fb87a12016-02-26 18:59:42 +09006choice
7 prompt "UniPhier SoC select"
8 default ARCH_UNIPHIER_PH1_PRO4
9
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090010config ARCH_UNIPHIER_PH1_SLD3
Masahiro Yamada323d1f92015-09-22 00:27:39 +090011 bool "UniPhier PH1-sLD3 SoC"
Masahiro Yamada66cba042014-10-03 19:21:07 +090012
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090013config ARCH_UNIPHIER_LD4_SLD8
14 bool "UniPhier PH1-LD4/PH1-sLD8 SoC"
Masahiro Yamada66cba042014-10-03 19:21:07 +090015
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090016config ARCH_UNIPHIER_PH1_PRO4
Masahiro Yamada323d1f92015-09-22 00:27:39 +090017 bool "UniPhier PH1-Pro4 SoC"
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090018
19config ARCH_UNIPHIER_PRO5_PXS2_LD6B
20 bool "UniPhier PH1-Pro5/ProXstream2/PH1-LD6b SoC"
21
22endchoice
23
24config ARCH_UNIPHIER_PH1_LD4
25 bool "Enable UniPhier PH1-LD4 SoC support"
26 depends on ARCH_UNIPHIER_LD4_SLD8
27 default y
Masahiro Yamada3365b4e2015-07-21 14:04:22 +090028
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090029config ARCH_UNIPHIER_PH1_SLD8
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090030 bool "Enable UniPhier PH1-sLD8 SoC support"
31 depends on ARCH_UNIPHIER_LD4_SLD8
32 default y
Masahiro Yamada66cba042014-10-03 19:21:07 +090033
Masahiro Yamada28f40d42015-09-22 00:27:40 +090034config ARCH_UNIPHIER_PH1_PRO5
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090035 bool "Enable UniPhier PH1-Pro5 SoC support"
36 depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
37 default y
Masahiro Yamada28f40d42015-09-22 00:27:40 +090038
Masahiro Yamada019df872015-09-22 00:27:41 +090039config ARCH_UNIPHIER_PROXSTREAM2
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090040 bool "Enable UniPhier ProXstream2 SoC support"
41 depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
42 default y
Masahiro Yamada019df872015-09-22 00:27:41 +090043
44config ARCH_UNIPHIER_PH1_LD6B
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090045 bool "Enable UniPhier PH1-LD6b SoC support"
46 depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
47 default y
Masahiro Yamada019df872015-09-22 00:27:41 +090048
Masahiro Yamada98798422015-09-11 20:17:45 +090049config MICRO_SUPPORT_CARD
50 bool "Use Micro Support Card"
Masahiro Yamada32014552014-12-06 00:03:21 +090051 help
Masahiro Yamada98798422015-09-11 20:17:45 +090052 This option provides support for the expansion board, available
53 on some UniPhier reference boards.
Masahiro Yamada32014552014-12-06 00:03:21 +090054
55 Say Y to use the on-board UART, Ether, LED devices.
56
Masahiro Yamada59ca5532014-10-20 20:45:22 +090057config CMD_PINMON
58 bool "Enable boot mode pins monitor command"
Masahiro Yamada59ca5532014-10-20 20:45:22 +090059 default y
60 help
61 The command "pinmon" shows the state of the boot mode pins.
62 The boot mode pins are latched when the system reset is deasserted
63 and determine which device the system should load a boot image from.
64
Masahiro Yamadac67b2af2014-12-19 20:20:53 +090065config CMD_DDRPHY_DUMP
66 bool "Enable dump command of DDR PHY parameters"
Masahiro Yamada93d92d42016-01-09 01:51:15 +090067 depends on ARCH_UNIPHIER_PH1_LD4 || ARCH_UNIPHIER_PH1_PRO4 || \
68 ARCH_UNIPHIER_PH1_SLD8
Masahiro Yamadac67b2af2014-12-19 20:20:53 +090069 help
70 The command "ddrphy" shows the resulting parameters of DDR PHY
71 training; it is useful for the evaluation of DDR PHY training.
72
Masahiro Yamada93d92d42016-01-09 01:51:15 +090073config CMD_DDRMPHY_DUMP
74 bool "Enable dump command of DDR Multi PHY parameters"
75 depends on ARCH_UNIPHIER_PROXSTREAM2 || ARCH_UNIPHIER_PH1_LD6B
76 help
77 The command "ddrmphy" shows the resulting parameters of DDR Multi PHY
78 training; it is useful for the evaluation of DDR Multi PHY training.
79
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +090080endif