From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lukasz Majewski Date: Tue, 04 Oct 2011 07:45:51 +0200 Subject: [U-Boot] [PATCH v2 3/3] misc:pmic:samsung Enable PMIC driver at GONI target In-Reply-To: <1317707151-21803-1-git-send-email-l.majewski@samsung.com> References: <1314868412-2949-1-git-send-email-l.majewski@samsung.com> <1317707151-21803-1-git-send-email-l.majewski@samsung.com> Message-ID: <1317707151-21803-4-git-send-email-l.majewski@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Enable support for new PMIC driver at GONI reference target. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Stefano Babic --- Changes for v2: - pmic_init() function call removed from arch/arm/lib/board.c and moved to s5p_goni board_init() function. - prepare separate patch for enabling new PMIC driver at GONI --- board/samsung/goni/goni.c | 4 ++++ include/configs/s5p_goni.h | 4 ++++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/board/samsung/goni/goni.c b/board/samsung/goni/goni.c index e24cd29..e191bfb 100644 --- a/board/samsung/goni/goni.c +++ b/board/samsung/goni/goni.c @@ -25,6 +25,7 @@ #include #include #include +#include DECLARE_GLOBAL_DATA_PTR; @@ -38,6 +39,9 @@ int board_init(void) gd->bd->bi_arch_number = MACH_TYPE_GONI; gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100; +#if defined(CONFIG_PMIC) + pmic_init(); +#endif return 0; } diff --git a/include/configs/s5p_goni.h b/include/configs/s5p_goni.h index 886c8be..aa51114 100644 --- a/include/configs/s5p_goni.h +++ b/include/configs/s5p_goni.h @@ -223,6 +223,10 @@ #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR - 0x1000000) +#define CONFIG_PMIC +#define CONFIG_PMIC_I2C +#define CONFIG_PMIC_MAX8998 + #include /* * I2C Settings -- 1.7.2.3