mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
imx: ventana: add pmic_setup to SPL
We need to do any PMIC setup in the SPL if we are to bypass U-Boot for falcon mode. Signed-off-by: Tim Harvey <tharvey@gateworks.com>
This commit is contained in:
parent
55ff55e9b4
commit
e06a03625d
2 changed files with 4 additions and 0 deletions
|
@ -551,6 +551,9 @@ void spl_board_init(void)
|
|||
default:
|
||||
puts("Unknown boot device\n");
|
||||
}
|
||||
|
||||
/* PMIC init */
|
||||
setup_pmic();
|
||||
}
|
||||
|
||||
void reset_cpu(ulong addr)
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#define CONFIG_SPL_BOARD_INIT
|
||||
#define CONFIG_SPL_NAND_SUPPORT
|
||||
#define CONFIG_SPL_MMC_SUPPORT
|
||||
#define CONFIG_SPL_POWER_SUPPORT
|
||||
/* Location in NAND to read U-Boot from */
|
||||
#define CONFIG_SYS_NAND_U_BOOT_OFFS (14 * SZ_1M)
|
||||
|
||||
|
|
Loading…
Reference in a new issue