diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2015-02-27 02:27:02 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2015-03-01 00:03:06 +0900 |
commit | ea6de4ac806f7e81960f642dacbaa9c53b30e9ed (patch) | |
tree | c2c7f0d9707ff1b1c36aed09decbb8fd1b47c922 /arch/arm/mach-uniphier/ph1-pro4/Makefile | |
parent | 53c45d4e1ec90cf12e6817992c303187afc16123 (diff) | |
download | u-boot-imx-ea6de4ac806f7e81960f642dacbaa9c53b30e9ed.zip u-boot-imx-ea6de4ac806f7e81960f642dacbaa9c53b30e9ed.tar.gz u-boot-imx-ea6de4ac806f7e81960f642dacbaa9c53b30e9ed.tar.bz2 |
ARM: UniPhier: support 1CS support card for all the UniPhier SoCs
Two support card variants are used with UniPhier reference boards:
- 1 chip select support card (original CPLD)
- 3 chip selects support card (ARIMA-compatible CPLD)
Currently, the former is only supported on PH1-Pro4, but it can be
expanded to PH1-LD4, PH1-sLD8 with a little code change.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch/arm/mach-uniphier/ph1-pro4/Makefile')
-rw-r--r-- | arch/arm/mach-uniphier/ph1-pro4/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-uniphier/ph1-pro4/Makefile b/arch/arm/mach-uniphier/ph1-pro4/Makefile index 0390506..b88525c 100644 --- a/arch/arm/mach-uniphier/ph1-pro4/Makefile +++ b/arch/arm/mach-uniphier/ph1-pro4/Makefile @@ -4,8 +4,10 @@ ifdef CONFIG_SPL_BUILD obj-$(CONFIG_DEBUG_LL) += lowlevel_debug.o -obj-y += sbc_init.o sg_init.o pll_init.o early_clkrst_init.o \ +obj-y += sg_init.o pll_init.o early_clkrst_init.o \ pll_spectrum.o umc_init.o ddrphy_init.o +obj-$(CONFIG_PFC_MICRO_SUPPORT_CARD) += sbc_init.o +obj-$(CONFIG_DCC_MICRO_SUPPORT_CARD) += sbc_init_3cs.o else obj-$(CONFIG_BOARD_EARLY_INIT_F) += pinctrl.o clkrst_init.o obj-$(if $(CONFIG_OF_CONTROL),,y) += platdevice.o |