diff options
author | Ye.Li <B37916@freescale.com> | 2014-11-06 16:29:02 +0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-11-20 10:52:32 +0100 |
commit | 593243d3a2aed5a05ead6dc6369b1bd08010d8bc (patch) | |
tree | 0d466e5e6723fa2ed5afc313b2f1891a899e1626 /board/freescale/mx6qsabreauto/mx6qsabreauto.c | |
parent | 1f98e31bc0b2c37a0e6068a14b11a7e27167e4df (diff) | |
download | u-boot-imx-593243d3a2aed5a05ead6dc6369b1bd08010d8bc.zip u-boot-imx-593243d3a2aed5a05ead6dc6369b1bd08010d8bc.tar.gz u-boot-imx-593243d3a2aed5a05ead6dc6369b1bd08010d8bc.tar.bz2 |
imx: imx6q/dlsabreauto: Add PMIC Pfuze100 support
Add the pfuze100 initialization in power_init_board for imx6q/dl
sabreauto board.
Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'board/freescale/mx6qsabreauto/mx6qsabreauto.c')
-rw-r--r-- | board/freescale/mx6qsabreauto/mx6qsabreauto.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/board/freescale/mx6qsabreauto/mx6qsabreauto.c b/board/freescale/mx6qsabreauto/mx6qsabreauto.c index b36b70d..59387ff 100644 --- a/board/freescale/mx6qsabreauto/mx6qsabreauto.c +++ b/board/freescale/mx6qsabreauto/mx6qsabreauto.c @@ -28,6 +28,8 @@ #include <asm/imx-common/video.h> #include <asm/arch/crm_regs.h> #include <pca953x.h> +#include <power/pmic.h> +#include "../common/pfuze.h" DECLARE_GLOBAL_DATA_PTR; @@ -57,6 +59,8 @@ DECLARE_GLOBAL_DATA_PTR; PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_MED | \ PAD_CTL_DSE_40ohm | PAD_CTL_SRE_FAST) +#define I2C_PMIC 1 + int dram_init(void) { gd->ram_size = get_ram_size((void *)PHYS_SDRAM, PHYS_SDRAM_SIZE); @@ -508,6 +512,17 @@ int board_spi_cs_gpio(unsigned bus, unsigned cs) } #endif +int power_init_board(void) +{ + struct pmic *p; + + p = pfuze_common_init(I2C_PMIC); + if (!p) + return -ENODEV; + + return 0; +} + #ifdef CONFIG_CMD_BMODE static const struct boot_mode board_boot_modes[] = { /* 4 bit bus width */ |