mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	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>
		
			
				
	
	
		
			17 lines
		
	
	
		
			460 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			460 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # SPDX-License-Identifier:	GPL-2.0+
 | |
| #
 | |
| 
 | |
| ifdef CONFIG_SPL_BUILD
 | |
| obj-$(CONFIG_DEBUG_LL) += lowlevel_debug.o
 | |
| obj-y += bcu_init.o 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
 | |
| endif
 | |
| 
 | |
| obj-y += boot-mode.o
 |