blob: ec85f707c19a685a7fd26e56802131ce87e6d446 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
HeungJun, Kim89f95492012-01-16 21:13:05 +00002/*
3 * Copyright (C) 2011 Samsung Electronics
4 * Heungjun Kim <riverful.kim@samsung.com>
5 * Kyungmin Park <kyungmin.park@samsung.com>
Donghwa Lee51b1cd62012-04-05 19:36:27 +00006 * Donghwa Lee <dh09.lee@samsung.com>
HeungJun, Kim89f95492012-01-16 21:13:05 +00007 */
8
9#include <common.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060010#include <env.h>
Donghwa Lee51b1cd62012-04-05 19:36:27 +000011#include <lcd.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000012#include <asm/io.h>
Simon Glass903fd792014-10-20 19:48:37 -060013#include <asm/gpio.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000014#include <asm/arch/cpu.h>
Piotr Wilczekd651e882012-09-20 00:19:58 +000015#include <asm/arch/pinmux.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000016#include <asm/arch/clock.h>
Donghwa Lee51b1cd62012-04-05 19:36:27 +000017#include <asm/arch/mipi_dsim.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000018#include <asm/arch/watchdog.h>
19#include <asm/arch/power.h>
Łukasz Majewskic7336812012-11-13 03:21:55 +000020#include <power/pmic.h>
Marek Vasut5d5716e2015-12-04 02:51:20 +010021#include <usb/dwc2_udc.h>
Łukasz Majewskic7336812012-11-13 03:21:55 +000022#include <power/max8997_pmic.h>
Łukasz Majewski7dcda992012-11-13 03:22:06 +000023#include <power/max8997_muic.h>
Łukasz Majewski61365ff2012-11-13 03:22:08 +000024#include <power/battery.h>
Łukasz Majewski5a773582012-11-13 03:22:07 +000025#include <power/max17042_fg.h>
Jaehoon Chung883c19a2017-03-30 21:29:59 +090026#include <power/pmic.h>
Piotr Wilczekfe601642014-03-07 14:59:48 +010027#include <libtizen.h>
Mateusz Zalega16297cf2013-10-04 19:22:26 +020028#include <usb.h>
Lukasz Majewski83301b42013-03-05 12:10:18 +010029#include <usb_mass_storage.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000030
31#include "setup.h"
32
HeungJun, Kim89f95492012-01-16 21:13:05 +000033unsigned int board_rev;
34
35#ifdef CONFIG_REVISION_TAG
36u32 get_board_rev(void)
37{
38 return board_rev;
39}
40#endif
41
42static void check_hw_revision(void);
Marek Vasutc0982872015-12-04 02:23:29 +010043struct dwc2_plat_otg_data s5pc210_otg_data;
Lukasz Majewskia241d6e2012-08-06 14:41:10 +020044
Piotr Wilczekfe601642014-03-07 14:59:48 +010045int exynos_init(void)
HeungJun, Kim89f95492012-01-16 21:13:05 +000046{
HeungJun, Kim89f95492012-01-16 21:13:05 +000047 check_hw_revision();
48 printf("HW Revision:\t0x%x\n", board_rev);
49
HeungJun, Kim89f95492012-01-16 21:13:05 +000050 return 0;
51}
52
Simon Glassfc47cf92016-11-23 06:34:40 -070053#ifndef CONFIG_DM_I2C /* TODO(maintainer): Convert to driver model */
Łukasz Majewski69ad72a2012-11-13 03:22:10 +000054static void trats_low_power_mode(void)
55{
56 struct exynos4_clock *clk =
57 (struct exynos4_clock *)samsung_get_base_clock();
58 struct exynos4_power *pwr =
59 (struct exynos4_power *)samsung_get_base_power();
60
61 /* Power down CORE1 */
62 /* LOCAL_PWR_CFG [1:0] 0x3 EN, 0x0 DIS */
63 writel(0x0, &pwr->arm_core1_configuration);
64
65 /* Change the APLL frequency */
66 /* ENABLE (1 enable) | LOCKED (1 locked) */
67 /* [31] | [29] */
68 /* FSEL | MDIV | PDIV | SDIV */
69 /* [27] | [25:16] | [13:8] | [2:0] */
70 writel(0xa0c80604, &clk->apll_con0);
71
72 /* Change CPU0 clock divider */
73 /* CORE2_RATIO | APLL_RATIO | PCLK_DBG_RATIO | ATB_RATIO */
74 /* [30:28] | [26:24] | [22:20] | [18:16] */
75 /* PERIPH_RATIO | COREM1_RATIO | COREM0_RATIO | CORE_RATIO */
76 /* [14:12] | [10:8] | [6:4] | [2:0] */
77 writel(0x00000100, &clk->div_cpu0);
78
79 /* CLK_DIV_STAT_CPU0 - wait until clock gets stable (0 = stable) */
80 while (readl(&clk->div_stat_cpu0) & 0x1111111)
81 continue;
82
83 /* Change clock divider ratio for DMC */
84 /* DMCP_RATIO | DMCD_RATIO */
85 /* [22:20] | [18:16] */
86 /* DMC_RATIO | DPHY_RATIO | ACP_PCLK_RATIO | ACP_RATIO */
87 /* [14:12] | [10:8] | [6:4] | [2:0] */
88 writel(0x13113117, &clk->div_dmc0);
89
90 /* CLK_DIV_STAT_DMC0 - wait until clock gets stable (0 = stable) */
91 while (readl(&clk->div_stat_dmc0) & 0x11111111)
92 continue;
93
94 /* Turn off unnecessary power domains */
95 writel(0x0, &pwr->xxti_configuration); /* XXTI */
96 writel(0x0, &pwr->cam_configuration); /* CAM */
97 writel(0x0, &pwr->tv_configuration); /* TV */
98 writel(0x0, &pwr->mfc_configuration); /* MFC */
99 writel(0x0, &pwr->g3d_configuration); /* G3D */
100 writel(0x0, &pwr->gps_configuration); /* GPS */
101 writel(0x0, &pwr->gps_alive_configuration); /* GPS_ALIVE */
102
103 /* Turn off unnecessary clocks */
104 writel(0x0, &clk->gate_ip_cam); /* CAM */
105 writel(0x0, &clk->gate_ip_tv); /* TV */
106 writel(0x0, &clk->gate_ip_mfc); /* MFC */
107 writel(0x0, &clk->gate_ip_g3d); /* G3D */
108 writel(0x0, &clk->gate_ip_image); /* IMAGE */
109 writel(0x0, &clk->gate_ip_gps); /* GPS */
110}
Simon Glassfc47cf92016-11-23 06:34:40 -0700111#endif
Łukasz Majewskia52a7b12012-11-13 03:22:05 +0000112
Piotr Wilczekfe601642014-03-07 14:59:48 +0100113int exynos_power_init(void)
Łukasz Majewskid47ab982012-11-13 03:21:57 +0000114{
Simon Glassfc47cf92016-11-23 06:34:40 -0700115#ifndef CONFIG_DM_I2C /* TODO(maintainer): Convert to driver model */
Łukasz Majewskibdee9c82012-11-13 03:22:11 +0000116 int chrg, ret;
117 struct power_battery *pb;
118 struct pmic *p_fg, *p_chrg, *p_muic, *p_bat;
Łukasz Majewskid47ab982012-11-13 03:21:57 +0000119
Łukasz Majewski2936df12013-08-16 15:33:33 +0200120 /*
121 * For PMIC/MUIC the I2C bus is named as I2C5, but it is connected
122 * to logical I2C adapter 0
123 *
124 * The FUEL_GAUGE is marked as I2C9 on the schematic, but connected
125 * to logical I2C adapter 1
126 */
Jaehoon Chung5dfbd7b2017-03-30 21:29:58 +0900127 ret = power_fg_init(I2C_9);
Piotr Wilczek2d8f1e22013-11-20 10:43:49 +0100128 ret |= power_muic_init(I2C_5);
Łukasz Majewski61365ff2012-11-13 03:22:08 +0000129 ret |= power_bat_init(0);
Łukasz Majewskid47ab982012-11-13 03:21:57 +0000130 if (ret)
131 return ret;
132
Łukasz Majewskibdee9c82012-11-13 03:22:11 +0000133 p_fg = pmic_get("MAX17042_FG");
134 if (!p_fg) {
135 puts("MAX17042_FG: Not found\n");
136 return -ENODEV;
137 }
138
139 p_chrg = pmic_get("MAX8997_PMIC");
140 if (!p_chrg) {
141 puts("MAX8997_PMIC: Not found\n");
142 return -ENODEV;
143 }
144
145 p_muic = pmic_get("MAX8997_MUIC");
146 if (!p_muic) {
147 puts("MAX8997_MUIC: Not found\n");
148 return -ENODEV;
149 }
150
151 p_bat = pmic_get("BAT_TRATS");
152 if (!p_bat) {
153 puts("BAT_TRATS: Not found\n");
154 return -ENODEV;
155 }
156
157 p_fg->parent = p_bat;
158 p_chrg->parent = p_bat;
159 p_muic->parent = p_bat;
160
161 p_bat->low_power_mode = trats_low_power_mode;
162 p_bat->pbat->battery_init(p_bat, p_fg, p_chrg, p_muic);
163
164 pb = p_bat->pbat;
165 chrg = p_muic->chrg->chrg_type(p_muic);
166 debug("CHARGER TYPE: %d\n", chrg);
167
168 if (!p_chrg->chrg->chrg_bat_present(p_chrg)) {
169 puts("No battery detected\n");
Przemyslaw Marczak4a188362014-06-10 16:55:08 +0200170 return 0;
Łukasz Majewskibdee9c82012-11-13 03:22:11 +0000171 }
172
173 p_fg->fg->fg_battery_check(p_fg, p_bat);
174
175 if (pb->bat->state == CHARGE && chrg == CHARGER_USB)
176 puts("CHARGE Battery !\n");
Simon Glassfc47cf92016-11-23 06:34:40 -0700177#endif
Łukasz Majewskibdee9c82012-11-13 03:22:11 +0000178
Łukasz Majewskid47ab982012-11-13 03:21:57 +0000179 return 0;
180}
181
HeungJun, Kim89f95492012-01-16 21:13:05 +0000182static unsigned int get_hw_revision(void)
183{
HeungJun, Kim89f95492012-01-16 21:13:05 +0000184 int hwrev = 0;
Simon Glass7f196102014-10-20 19:48:39 -0600185 char str[10];
HeungJun, Kim89f95492012-01-16 21:13:05 +0000186 int i;
187
188 /* hw_rev[3:0] == GPE1[3:0] */
Simon Glass7f196102014-10-20 19:48:39 -0600189 for (i = 0; i < 4; i++) {
190 int pin = i + EXYNOS4_GPIO_E10;
191
192 sprintf(str, "hw_rev%d", i);
193 gpio_request(pin, str);
194 gpio_cfg_pin(pin, S5P_GPIO_INPUT);
195 gpio_set_pull(pin, S5P_GPIO_PULL_NONE);
HeungJun, Kim89f95492012-01-16 21:13:05 +0000196 }
197
198 udelay(1);
199
200 for (i = 0; i < 4; i++)
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530201 hwrev |= (gpio_get_value(EXYNOS4_GPIO_E10 + i) << i);
HeungJun, Kim89f95492012-01-16 21:13:05 +0000202
203 debug("hwrev 0x%x\n", hwrev);
204
205 return hwrev;
206}
207
208static void check_hw_revision(void)
209{
210 int hwrev;
211
212 hwrev = get_hw_revision();
213
214 board_rev |= hwrev;
215}
216
HeungJun, Kim89f95492012-01-16 21:13:05 +0000217
218#ifdef CONFIG_USB_GADGET
219static int s5pc210_phy_control(int on)
220{
Jaehoon Chung883c19a2017-03-30 21:29:59 +0900221 struct udevice *dev;
222 int reg, ret;
HeungJun, Kim89f95492012-01-16 21:13:05 +0000223
Jaehoon Chung883c19a2017-03-30 21:29:59 +0900224 ret = pmic_get("max8997-pmic", &dev);
225 if (ret)
226 return ret;
HeungJun, Kim89f95492012-01-16 21:13:05 +0000227
228 if (on) {
Jaehoon Chung883c19a2017-03-30 21:29:59 +0900229 reg = pmic_reg_read(dev, MAX8997_REG_SAFEOUTCTRL);
230 reg |= ENSAFEOUT1;
231 ret = pmic_reg_write(dev, MAX8997_REG_SAFEOUTCTRL, reg);
232 if (ret) {
233 puts("MAX8997 setting error!\n");
234 return ret;
235 }
236 reg = pmic_reg_read(dev, MAX8997_REG_LDO3CTRL);
237 reg |= EN_LDO;
238 ret = pmic_reg_write(dev, MAX8997_REG_LDO3CTRL, reg);
239 if (ret) {
240 puts("MAX8997 setting error!\n");
241 return ret;
242 }
243 reg = pmic_reg_read(dev, MAX8997_REG_LDO8CTRL);
244 reg |= EN_LDO;
245 ret = pmic_reg_write(dev, MAX8997_REG_LDO8CTRL, reg);
246 if (ret) {
247 puts("MAX8997 setting error!\n");
248 return ret;
249 }
HeungJun, Kim89f95492012-01-16 21:13:05 +0000250 } else {
Jaehoon Chung883c19a2017-03-30 21:29:59 +0900251 reg = pmic_reg_read(dev, MAX8997_REG_LDO8CTRL);
252 reg &= DIS_LDO;
253 ret = pmic_reg_write(dev, MAX8997_REG_LDO8CTRL, reg);
254 if (ret) {
255 puts("MAX8997 setting error!\n");
256 return ret;
257 }
258 reg = pmic_reg_read(dev, MAX8997_REG_LDO3CTRL);
259 reg &= DIS_LDO;
260 ret = pmic_reg_write(dev, MAX8997_REG_LDO3CTRL, reg);
261 if (ret) {
262 puts("MAX8997 setting error!\n");
263 return ret;
264 }
265 reg = pmic_reg_read(dev, MAX8997_REG_SAFEOUTCTRL);
266 reg &= ~ENSAFEOUT1;
267 ret = pmic_reg_write(dev, MAX8997_REG_SAFEOUTCTRL, reg);
268 if (ret) {
269 puts("MAX8997 setting error!\n");
270 return ret;
271 }
Łukasz Majewskia0f5b5a2012-04-25 23:30:18 +0000272
HeungJun, Kim89f95492012-01-16 21:13:05 +0000273 }
274
HeungJun, Kim89f95492012-01-16 21:13:05 +0000275 return 0;
276}
277
Marek Vasutc0982872015-12-04 02:23:29 +0100278struct dwc2_plat_otg_data s5pc210_otg_data = {
HeungJun, Kim89f95492012-01-16 21:13:05 +0000279 .phy_control = s5pc210_phy_control,
280 .regs_phy = EXYNOS4_USBPHY_BASE,
281 .regs_otg = EXYNOS4_USBOTG_BASE,
282 .usb_phy_ctrl = EXYNOS4_USBPHY_CONTROL,
283 .usb_flags = PHY0_SLEEP,
284};
Lukasz Majewskia241d6e2012-08-06 14:41:10 +0200285
Troy Kiskybba67912013-10-10 15:27:55 -0700286int board_usb_init(int index, enum usb_init_type init)
Lukasz Majewskia241d6e2012-08-06 14:41:10 +0200287{
288 debug("USB_udc_probe\n");
Marek Vasuta4bb9b32015-12-04 02:26:33 +0100289 return dwc2_udc_probe(&s5pc210_otg_data);
Lukasz Majewskia241d6e2012-08-06 14:41:10 +0200290}
Przemyslaw Marczak0938f5b2013-12-02 13:54:01 +0100291
Mateusz Zalega75504e92014-04-30 13:07:48 +0200292int g_dnl_board_usb_cable_connected(void)
Przemyslaw Marczak0938f5b2013-12-02 13:54:01 +0100293{
Simon Glassfc47cf92016-11-23 06:34:40 -0700294#ifndef CONFIG_DM_I2C /* TODO(maintainer): Convert to driver model */
Przemyslaw Marczak0938f5b2013-12-02 13:54:01 +0100295 struct pmic *muic = pmic_get("MAX8997_MUIC");
296 if (!muic)
297 return 0;
298
299 return !!muic->chrg->chrg_type(muic);
Simon Glassfc47cf92016-11-23 06:34:40 -0700300#else
301 return false;
302#endif
303
Przemyslaw Marczak0938f5b2013-12-02 13:54:01 +0100304}
305#endif
HeungJun, Kim89f95492012-01-16 21:13:05 +0000306
307static void pmic_reset(void)
308{
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530309 gpio_direction_output(EXYNOS4_GPIO_X07, 1);
310 gpio_set_pull(EXYNOS4_GPIO_X27, S5P_GPIO_PULL_NONE);
HeungJun, Kim89f95492012-01-16 21:13:05 +0000311}
312
313static void board_clock_init(void)
314{
315 struct exynos4_clock *clk =
316 (struct exynos4_clock *)samsung_get_base_clock();
317
318 writel(CLK_SRC_CPU_VAL, (unsigned int)&clk->src_cpu);
319 writel(CLK_SRC_TOP0_VAL, (unsigned int)&clk->src_top0);
320 writel(CLK_SRC_FSYS_VAL, (unsigned int)&clk->src_fsys);
321 writel(CLK_SRC_PERIL0_VAL, (unsigned int)&clk->src_peril0);
322
323 writel(CLK_DIV_CPU0_VAL, (unsigned int)&clk->div_cpu0);
324 writel(CLK_DIV_CPU1_VAL, (unsigned int)&clk->div_cpu1);
325 writel(CLK_DIV_DMC0_VAL, (unsigned int)&clk->div_dmc0);
326 writel(CLK_DIV_DMC1_VAL, (unsigned int)&clk->div_dmc1);
327 writel(CLK_DIV_LEFTBUS_VAL, (unsigned int)&clk->div_leftbus);
328 writel(CLK_DIV_RIGHTBUS_VAL, (unsigned int)&clk->div_rightbus);
329 writel(CLK_DIV_TOP_VAL, (unsigned int)&clk->div_top);
330 writel(CLK_DIV_FSYS1_VAL, (unsigned int)&clk->div_fsys1);
331 writel(CLK_DIV_FSYS2_VAL, (unsigned int)&clk->div_fsys2);
332 writel(CLK_DIV_FSYS3_VAL, (unsigned int)&clk->div_fsys3);
333 writel(CLK_DIV_PERIL0_VAL, (unsigned int)&clk->div_peril0);
334 writel(CLK_DIV_PERIL3_VAL, (unsigned int)&clk->div_peril3);
335
336 writel(PLL_LOCKTIME, (unsigned int)&clk->apll_lock);
337 writel(PLL_LOCKTIME, (unsigned int)&clk->mpll_lock);
338 writel(PLL_LOCKTIME, (unsigned int)&clk->epll_lock);
339 writel(PLL_LOCKTIME, (unsigned int)&clk->vpll_lock);
340 writel(APLL_CON1_VAL, (unsigned int)&clk->apll_con1);
341 writel(APLL_CON0_VAL, (unsigned int)&clk->apll_con0);
342 writel(MPLL_CON1_VAL, (unsigned int)&clk->mpll_con1);
343 writel(MPLL_CON0_VAL, (unsigned int)&clk->mpll_con0);
344 writel(EPLL_CON1_VAL, (unsigned int)&clk->epll_con1);
345 writel(EPLL_CON0_VAL, (unsigned int)&clk->epll_con0);
346 writel(VPLL_CON1_VAL, (unsigned int)&clk->vpll_con1);
347 writel(VPLL_CON0_VAL, (unsigned int)&clk->vpll_con0);
348
349 writel(CLK_GATE_IP_CAM_VAL, (unsigned int)&clk->gate_ip_cam);
350 writel(CLK_GATE_IP_VP_VAL, (unsigned int)&clk->gate_ip_tv);
351 writel(CLK_GATE_IP_MFC_VAL, (unsigned int)&clk->gate_ip_mfc);
352 writel(CLK_GATE_IP_G3D_VAL, (unsigned int)&clk->gate_ip_g3d);
353 writel(CLK_GATE_IP_IMAGE_VAL, (unsigned int)&clk->gate_ip_image);
354 writel(CLK_GATE_IP_LCD0_VAL, (unsigned int)&clk->gate_ip_lcd0);
355 writel(CLK_GATE_IP_LCD1_VAL, (unsigned int)&clk->gate_ip_lcd1);
356 writel(CLK_GATE_IP_FSYS_VAL, (unsigned int)&clk->gate_ip_fsys);
357 writel(CLK_GATE_IP_GPS_VAL, (unsigned int)&clk->gate_ip_gps);
358 writel(CLK_GATE_IP_PERIL_VAL, (unsigned int)&clk->gate_ip_peril);
359 writel(CLK_GATE_IP_PERIR_VAL, (unsigned int)&clk->gate_ip_perir);
360 writel(CLK_GATE_BLOCK_VAL, (unsigned int)&clk->gate_block);
361}
362
HeungJun, Kim89f95492012-01-16 21:13:05 +0000363static void board_power_init(void)
364{
365 struct exynos4_power *pwr =
366 (struct exynos4_power *)samsung_get_base_power();
367
368 /* PS HOLD */
369 writel(EXYNOS4_PS_HOLD_CON_VAL, (unsigned int)&pwr->ps_hold_control);
370
371 /* Set power down */
372 writel(0, (unsigned int)&pwr->cam_configuration);
373 writel(0, (unsigned int)&pwr->tv_configuration);
374 writel(0, (unsigned int)&pwr->mfc_configuration);
375 writel(0, (unsigned int)&pwr->g3d_configuration);
376 writel(0, (unsigned int)&pwr->lcd1_configuration);
377 writel(0, (unsigned int)&pwr->gps_configuration);
378 writel(0, (unsigned int)&pwr->gps_alive_configuration);
Piotr Wilczekab233042012-10-08 20:45:42 +0000379
380 /* It is necessary to power down core 1 */
381 /* to successfully boot CPU1 in kernel */
382 writel(0, (unsigned int)&pwr->arm_core1_configuration);
HeungJun, Kim89f95492012-01-16 21:13:05 +0000383}
384
Piotr Wilczekfe601642014-03-07 14:59:48 +0100385static void exynos_uart_init(void)
HeungJun, Kim89f95492012-01-16 21:13:05 +0000386{
HeungJun, Kim89f95492012-01-16 21:13:05 +0000387 /* UART_SEL GPY4[7] (part2) at EXYNOS4 */
Simon Glass7f196102014-10-20 19:48:39 -0600388 gpio_request(EXYNOS4_GPIO_Y47, "uart_sel");
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530389 gpio_set_pull(EXYNOS4_GPIO_Y47, S5P_GPIO_PULL_UP);
390 gpio_direction_output(EXYNOS4_GPIO_Y47, 1);
HeungJun, Kim89f95492012-01-16 21:13:05 +0000391}
392
Piotr Wilczekfe601642014-03-07 14:59:48 +0100393int exynos_early_init_f(void)
HeungJun, Kim89f95492012-01-16 21:13:05 +0000394{
Minkyu Kang85948a82012-01-18 15:56:47 +0900395 wdt_stop();
HeungJun, Kim89f95492012-01-16 21:13:05 +0000396 pmic_reset();
397 board_clock_init();
Piotr Wilczekfe601642014-03-07 14:59:48 +0100398 exynos_uart_init();
HeungJun, Kim89f95492012-01-16 21:13:05 +0000399 board_power_init();
400
401 return 0;
402}
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000403
Ajay Kumar29fd5702013-02-21 23:52:57 +0000404void exynos_reset_lcd(void)
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000405{
Simon Glass7f196102014-10-20 19:48:39 -0600406 gpio_request(EXYNOS4_GPIO_Y45, "lcd_reset");
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530407 gpio_direction_output(EXYNOS4_GPIO_Y45, 1);
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000408 udelay(10000);
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530409 gpio_direction_output(EXYNOS4_GPIO_Y45, 0);
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000410 udelay(10000);
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530411 gpio_direction_output(EXYNOS4_GPIO_Y45, 1);
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000412}
413
Piotr Wilczekfe601642014-03-07 14:59:48 +0100414int lcd_power(void)
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000415{
Simon Glassfc47cf92016-11-23 06:34:40 -0700416#ifndef CONFIG_DM_I2C /* TODO(maintainer): Convert to driver model */
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000417 int ret = 0;
Łukasz Majewskic7336812012-11-13 03:21:55 +0000418 struct pmic *p = pmic_get("MAX8997_PMIC");
419 if (!p)
420 return -ENODEV;
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000421
422 if (pmic_probe(p))
423 return 0;
424
425 /* LDO15 voltage: 2.2v */
426 ret |= pmic_reg_write(p, MAX8997_REG_LDO15CTRL, 0x1c | EN_LDO);
427 /* LDO13 voltage: 3.0v */
428 ret |= pmic_reg_write(p, MAX8997_REG_LDO13CTRL, 0x2c | EN_LDO);
429
430 if (ret) {
431 puts("MAX8997 LDO setting error!\n");
432 return -1;
433 }
Simon Glassfc47cf92016-11-23 06:34:40 -0700434#endif
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000435 return 0;
436}
437
Piotr Wilczekfe601642014-03-07 14:59:48 +0100438int mipi_power(void)
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000439{
Simon Glassfc47cf92016-11-23 06:34:40 -0700440#ifndef CONFIG_DM_I2C /* TODO(maintainer): Convert to driver model */
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000441 int ret = 0;
Łukasz Majewskic7336812012-11-13 03:21:55 +0000442 struct pmic *p = pmic_get("MAX8997_PMIC");
443 if (!p)
444 return -ENODEV;
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000445
446 if (pmic_probe(p))
447 return 0;
448
449 /* LDO3 voltage: 1.1v */
450 ret |= pmic_reg_write(p, MAX8997_REG_LDO3CTRL, 0x6 | EN_LDO);
451 /* LDO4 voltage: 1.8v */
452 ret |= pmic_reg_write(p, MAX8997_REG_LDO4CTRL, 0x14 | EN_LDO);
453
454 if (ret) {
455 puts("MAX8997 LDO setting error!\n");
456 return -1;
457 }
Simon Glassfc47cf92016-11-23 06:34:40 -0700458#endif
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000459 return 0;
460}
461
Simon Glassea743e62016-02-21 21:08:54 -0700462#ifdef CONFIG_LCD
Piotr Wilczekfe601642014-03-07 14:59:48 +0100463void exynos_lcd_misc_init(vidinfo_t *vid)
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000464{
Donghwa Lee90464972012-05-09 19:23:46 +0000465#ifdef CONFIG_TIZEN
466 get_tizen_logo_info(vid);
467#endif
Piotr Wilczekfe601642014-03-07 14:59:48 +0100468#ifdef CONFIG_S6E8AX0
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000469 s6e8ax0_init();
Simon Glass382bee52017-08-03 12:22:09 -0600470 env_set("lcdinfo", "lcd=s6e8ax0");
Piotr Wilczekfe601642014-03-07 14:59:48 +0100471#endif
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000472}
Simon Glassea743e62016-02-21 21:08:54 -0700473#endif