mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 08:21:36 +01:00 
			
		
		
		
	With the upcoming addition of the Armada 38x DDR support, which is not
compatible to the Armada XP DDR init code, we need to introduce a new
directory infrastructure. To support multiple Marvell DDR controller.
This will be the new structure:
     drivers/ddr/marvell/axp
     Supporting Armada XP (AXP) devices (and perhaps Armada 370)
     drivers/ddr/marvell/a38x
     Supporting Armada 38x devices (and perhaps Armada 39x)
Signed-off-by: Stefan Roese <sr@denx.de>
		
	
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			448 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			448 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # SPDX-License-Identifier:	GPL-2.0+
 | |
| #
 | |
| 
 | |
| obj-$(CONFIG_SPL_BUILD) += ddr3_dfs.o
 | |
| obj-$(CONFIG_SPL_BUILD) += ddr3_dqs.o
 | |
| obj-$(CONFIG_SPL_BUILD) += ddr3_hw_training.o
 | |
| obj-$(CONFIG_SPL_BUILD) += ddr3_init.o
 | |
| obj-$(CONFIG_SPL_BUILD) += ddr3_pbs.o
 | |
| obj-$(CONFIG_SPL_BUILD) += ddr3_read_leveling.o
 | |
| obj-$(CONFIG_SPL_BUILD) += ddr3_sdram.o
 | |
| obj-$(CONFIG_SPL_BUILD) += ddr3_spd.o
 | |
| obj-$(CONFIG_SPL_BUILD) += ddr3_write_leveling.o
 | |
| obj-$(CONFIG_SPL_BUILD) += xor.o
 |