blob: a5580730cf25e64fa0c13b851316c3018da25fa7 [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 Yamada48efc8a2016-06-17 19:24:27 +09006config ARCH_UNIPHIER_32BIT
7 bool
8 select CPU_V7
9
10config ARCH_UNIPHIER_64BIT
11 bool
12 select ARM64
13 select SPL_SEPARATE_BSS
Masahiro Yamada18c11982016-06-17 19:24:28 +090014 select ARMV8_MULTIENTRY
Masahiro Yamadab7c4d252016-07-17 01:38:21 +090015 select ARMV8_SPIN_TABLE
Masahiro Yamada48efc8a2016-06-17 19:24:27 +090016
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090017choice
18 prompt "UniPhier SoC select"
Masahiro Yamadaea65c982016-03-18 16:41:43 +090019 default ARCH_UNIPHIER_PRO4
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090020
Masahiro Yamadaea65c982016-03-18 16:41:43 +090021config ARCH_UNIPHIER_SLD3
Masahiro Yamada323d1f92015-09-22 00:27:39 +090022 bool "UniPhier PH1-sLD3 SoC"
Masahiro Yamada48efc8a2016-06-17 19:24:27 +090023 select ARCH_UNIPHIER_32BIT
Masahiro Yamada66cba042014-10-03 19:21:07 +090024
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090025config ARCH_UNIPHIER_LD4_SLD8
26 bool "UniPhier PH1-LD4/PH1-sLD8 SoC"
Masahiro Yamada48efc8a2016-06-17 19:24:27 +090027 select ARCH_UNIPHIER_32BIT
Masahiro Yamada66cba042014-10-03 19:21:07 +090028
Masahiro Yamadaea65c982016-03-18 16:41:43 +090029config ARCH_UNIPHIER_PRO4
Masahiro Yamada323d1f92015-09-22 00:27:39 +090030 bool "UniPhier PH1-Pro4 SoC"
Masahiro Yamada48efc8a2016-06-17 19:24:27 +090031 select ARCH_UNIPHIER_32BIT
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090032
33config ARCH_UNIPHIER_PRO5_PXS2_LD6B
34 bool "UniPhier PH1-Pro5/ProXstream2/PH1-LD6b SoC"
Masahiro Yamada48efc8a2016-06-17 19:24:27 +090035 select ARCH_UNIPHIER_32BIT
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090036
Masahiro Yamada667dbcd2016-05-24 21:14:01 +090037config ARCH_UNIPHIER_LD11
38 bool "UniPhier PH1-LD11 SoC"
Masahiro Yamada48efc8a2016-06-17 19:24:27 +090039 select ARCH_UNIPHIER_64BIT
Masahiro Yamada667dbcd2016-05-24 21:14:01 +090040
Masahiro Yamada9d0c2ce2016-04-21 14:43:18 +090041config ARCH_UNIPHIER_LD20
42 bool "UniPhier PH1-LD20 SoC"
Masahiro Yamada48efc8a2016-06-17 19:24:27 +090043 select ARCH_UNIPHIER_64BIT
Masahiro Yamada51ea5a02016-06-17 19:24:29 +090044 select OF_BOARD_SETUP
Masahiro Yamada9d0c2ce2016-04-21 14:43:18 +090045
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090046endchoice
47
Masahiro Yamadaea65c982016-03-18 16:41:43 +090048config ARCH_UNIPHIER_LD4
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090049 bool "Enable UniPhier PH1-LD4 SoC support"
50 depends on ARCH_UNIPHIER_LD4_SLD8
51 default y
Masahiro Yamada3365b4e2015-07-21 14:04:22 +090052
Masahiro Yamadaea65c982016-03-18 16:41:43 +090053config ARCH_UNIPHIER_SLD8
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090054 bool "Enable UniPhier PH1-sLD8 SoC support"
55 depends on ARCH_UNIPHIER_LD4_SLD8
56 default y
Masahiro Yamada66cba042014-10-03 19:21:07 +090057
Masahiro Yamadaea65c982016-03-18 16:41:43 +090058config ARCH_UNIPHIER_PRO5
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090059 bool "Enable UniPhier PH1-Pro5 SoC support"
60 depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
61 default y
Masahiro Yamada28f40d42015-09-22 00:27:40 +090062
Masahiro Yamadaea65c982016-03-18 16:41:43 +090063config ARCH_UNIPHIER_PXS2
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090064 bool "Enable UniPhier ProXstream2 SoC support"
65 depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
66 default y
Masahiro Yamada019df872015-09-22 00:27:41 +090067
Masahiro Yamadaea65c982016-03-18 16:41:43 +090068config ARCH_UNIPHIER_LD6B
Masahiro Yamada5fb87a12016-02-26 18:59:42 +090069 bool "Enable UniPhier PH1-LD6b SoC support"
70 depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
71 default y
Masahiro Yamada019df872015-09-22 00:27:41 +090072
Masahiro Yamada7382d172016-08-10 16:08:45 +090073config CACHE_UNIPHIER
74 bool "Enable the UniPhier L2 cache controller"
75 depends on ARCH_UNIPHIER_32BIT
76 default y
77 help
78 This option allows to use the UniPhier System Cache as L2 cache.
79
Masahiro Yamada98798422015-09-11 20:17:45 +090080config MICRO_SUPPORT_CARD
81 bool "Use Micro Support Card"
Masahiro Yamada32014552014-12-06 00:03:21 +090082 help
Masahiro Yamada98798422015-09-11 20:17:45 +090083 This option provides support for the expansion board, available
84 on some UniPhier reference boards.
Masahiro Yamada32014552014-12-06 00:03:21 +090085
86 Say Y to use the on-board UART, Ether, LED devices.
87
Masahiro Yamada59ca5532014-10-20 20:45:22 +090088config CMD_PINMON
89 bool "Enable boot mode pins monitor command"
Masahiro Yamada59ca5532014-10-20 20:45:22 +090090 default y
91 help
92 The command "pinmon" shows the state of the boot mode pins.
93 The boot mode pins are latched when the system reset is deasserted
94 and determine which device the system should load a boot image from.
95
Masahiro Yamadac67b2af2014-12-19 20:20:53 +090096config CMD_DDRPHY_DUMP
97 bool "Enable dump command of DDR PHY parameters"
Masahiro Yamadaea65c982016-03-18 16:41:43 +090098 depends on ARCH_UNIPHIER_LD4 || ARCH_UNIPHIER_PRO4 || ARCH_UNIPHIER_SLD8
Masahiro Yamadaf6c65bc2016-03-18 16:41:47 +090099 default y
Masahiro Yamadac67b2af2014-12-19 20:20:53 +0900100 help
101 The command "ddrphy" shows the resulting parameters of DDR PHY
102 training; it is useful for the evaluation of DDR PHY training.
103
Masahiro Yamada93d92d42016-01-09 01:51:15 +0900104config CMD_DDRMPHY_DUMP
105 bool "Enable dump command of DDR Multi PHY parameters"
Masahiro Yamadaea65c982016-03-18 16:41:43 +0900106 depends on ARCH_UNIPHIER_PXS2 || ARCH_UNIPHIER_LD6B
Masahiro Yamadaf6c65bc2016-03-18 16:41:47 +0900107 default y
Masahiro Yamada93d92d42016-01-09 01:51:15 +0900108 help
109 The command "ddrmphy" shows the resulting parameters of DDR Multi PHY
110 training; it is useful for the evaluation of DDR Multi PHY training.
111
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900112endif