mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 10:26:10 +01:00 
			
		
		
		
	On boards using the AXP313 PMIC, the DRAM rail is often not setup correctly at reset time, so we have to program the PMIC very early in the SPL, before running the DRAM initialisation. Add a simple AXP313 PMIC driver that knows about DCDC2(CPU) and DCDC3(DRAM), so that we can bump up the voltage before the DRAM init. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0+
 | |
| #
 | |
| # Copyright (c) 2009 Wind River Systems, Inc.
 | |
| # Tom Rix <Tom.Rix at windriver.com>
 | |
| 
 | |
| obj-$(CONFIG_$(SPL_TPL_)ACPI_PMC) += acpi_pmc/
 | |
| obj-$(CONFIG_$(SPL_TPL_)POWER_DOMAIN) += domain/
 | |
| obj-y += pmic/
 | |
| obj-y += regulator/
 | |
| 
 | |
| obj-$(CONFIG_AXP152_POWER)	+= axp152.o
 | |
| obj-$(CONFIG_AXP209_POWER)	+= axp209.o
 | |
| obj-$(CONFIG_AXP221_POWER)	+= axp221.o
 | |
| obj-$(CONFIG_AXP305_POWER)	+= axp305.o
 | |
| obj-$(CONFIG_AXP313_POWER)	+= axp313.o
 | |
| obj-$(CONFIG_AXP809_POWER)	+= axp809.o
 | |
| obj-$(CONFIG_AXP818_POWER)	+= axp818.o
 | |
| obj-$(CONFIG_EXYNOS_TMU)	+= exynos-tmu.o
 | |
| obj-$(CONFIG_SY8106A_POWER)	+= sy8106a.o
 | |
| obj-$(CONFIG_TPS6586X_POWER)	+= tps6586x.o
 | |
| obj-$(CONFIG_TWL4030_POWER)	+= twl4030.o
 | |
| obj-$(CONFIG_TWL6030_POWER)	+= twl6030.o
 | |
| obj-$(CONFIG_PALMAS_POWER)	+= palmas.o
 | |
| obj-$(CONFIG_$(SPL_TPL_)POWER_LEGACY) += power_core.o
 | |
| obj-$(CONFIG_DIALOG_POWER) += power_dialog.o
 | |
| obj-$(CONFIG_POWER_FSL) += power_fsl.o
 | |
| obj-$(CONFIG_$(SPL_TPL_)POWER_I2C) += power_i2c.o
 | |
| obj-$(CONFIG_POWER_SPI) += power_spi.o
 | |
| obj-$(CONFIG_POWER_MT6323) += mt6323.o
 |