aboutsummaryrefslogtreecommitdiff
path: root/board/samsung
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2018-01-29 13:53:19 +0900
committerJaehoon Chung <jh80.chung@samsung.com>2018-05-02 10:57:43 +0900
commit4f0a8bf669f24771d1e4ca89a1f2b1ca39e50e47 (patch)
treef1a6d49e07630ac8ba4f60d1cd74b978b5bfdb78 /board/samsung
parentec1754f091c3c06d76592a3f9fecf6184f27e4c9 (diff)
downloadu-boot-4f0a8bf669f24771d1e4ca89a1f2b1ca39e50e47.zip
u-boot-4f0a8bf669f24771d1e4ca89a1f2b1ca39e50e47.tar.gz
u-boot-4f0a8bf669f24771d1e4ca89a1f2b1ca39e50e47.tar.bz2
samsung: board: init the s2mps11 pmic during booting time
Exynos5422 board has s2mps11 pmic. If CONFIG_PMIC_S2MPS11 is enabled, it can initialize PMIC and Regulators during booting time. Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com> Tested-by: Anand Moon <linux.amoon@gmail.com>
Diffstat (limited to 'board/samsung')
-rw-r--r--board/samsung/common/exynos5-dt.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/board/samsung/common/exynos5-dt.c b/board/samsung/common/exynos5-dt.c
index a4eb351..862644b 100644
--- a/board/samsung/common/exynos5-dt.c
+++ b/board/samsung/common/exynos5-dt.c
@@ -93,6 +93,9 @@ int exynos_power_init(void)
struct udevice *dev;
int ret;
+#ifdef CONFIG_PMIC_S2MPS11
+ ret = pmic_get("s2mps11_pmic", &dev);
+#else
ret = pmic_get("max77686", &dev);
if (!ret) {
/* TODO(sjg@chromium.org): Move into the clock/pmic API */
@@ -112,6 +115,7 @@ int exynos_power_init(void)
s5m8767_enable_32khz_cp(dev);
#endif
}
+#endif /* CONFIG_PMIC_S2MPS11 */
if (ret == -ENODEV)
return 0;