blob: 7d3c0d64fac96a6af631e2051c08d1a2b14952f8 [file] [log] [blame]
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -07001/* Copyright (c) 2015, The Linux Foundation. All rights reserved.
2 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions
5 * are met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above copyright
9 * notice, this list of conditions and the following disclaimer in
10 * the documentation and/or other materials provided with the
11 * distribution.
12 * * Neither the name of The Linux Foundation nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
19 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
22 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
23 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#include <debug.h>
31#include <string.h>
32#include <smem.h>
33#include <err.h>
34#include <msm_panel.h>
35#include <mipi_dsi.h>
36#include <pm8x41.h>
37#include <pm8x41_wled.h>
38#include <qpnp_wled.h>
39#include <board.h>
40#include <mdp5.h>
41#include <scm.h>
42#include <regulator.h>
43#include <platform/clock.h>
44#include <platform/gpio.h>
45#include <platform/iomap.h>
46#include <target/display.h>
47#include <qtimer.h>
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +053048#include <platform.h>
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -070049
50#include "include/panel.h"
51#include "include/display_resource.h"
52#include "gcdb_display.h"
53
54/*---------------------------------------------------------------------------*/
55/* GPIO configuration */
56/*---------------------------------------------------------------------------*/
57static struct gpio_pin reset_gpio = {
58 "msmgpio", 0, 3, 1, 0, 1
59};
60
61static struct gpio_pin enable_gpio = {
62 "msmgpio", 90, 3, 1, 0, 1
63};
64
65static struct gpio_pin bkl_gpio = {
66 "msmgpio", 91, 3, 1, 0, 1
67};
68
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +053069static struct gpio_pin lcd_mode_gpio = {
70 "msmgpio", 107, 3, 1, 0, 1
71};
72
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -070073#define VCO_DELAY_USEC 1000
74#define GPIO_STATE_LOW 0
75#define GPIO_STATE_HIGH 2
76#define RESET_GPIO_SEQ_LEN 3
77#define PMIC_WLED_SLAVE_ID 3
78
Padmanabhan Komandurub3381932015-06-15 22:14:02 +053079#define DSI0_BASE_ADJUST -0x4000
80#define DSI0_PHY_BASE_ADJUST -0x4100
81#define DSI0_PHY_PLL_BASE_ADJUST -0x3900
82#define DSI0_PHY_REGULATOR_BASE_ADJUST -0x3C00
83
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -070084static void mdss_dsi_uniphy_pll_sw_reset_8952(uint32_t pll_base)
85{
86 writel(0x01, pll_base + 0x0068); /* PLL TEST CFG */
87 mdelay(1);
88 writel(0x00, pll_base + 0x0068); /* PLL TEST CFG */
89 mdelay(1);
90}
91
92static void dsi_pll_toggle_lock_detect_8952(uint32_t pll_base)
93{
94 writel(0x04, pll_base + 0x0064); /* LKDetect CFG2 */
95 udelay(1);
96 writel(0x05, pll_base + 0x0064); /* LKDetect CFG2 */
97 udelay(512);
98}
99
100static void dsi_pll_sw_reset_8952(uint32_t pll_base)
101{
102 writel(0x01, pll_base + 0x0068); /* PLL TEST CFG */
103 udelay(1);
104 writel(0x00, pll_base + 0x0068); /* PLL TEST CFG */
Padmanabhan Komanduru6cf63522015-06-08 14:48:00 +0530105 udelay(1);
106}
107
108static uint32_t dsi_pll_lock_status_8956(uint32_t pll_base)
109{
110 uint32_t counter, status;
111
112 status = readl(pll_base + 0x00c0) & 0x01;
113 for (counter = 0; counter < 5 && !status; counter++) {
114 udelay(100);
115 status = readl(pll_base + 0x00c0) & 0x01;
116 }
117
118 return status;
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700119}
120
121static uint32_t gf_1_dsi_pll_enable_sequence_8952(uint32_t pll_base)
122{
123 uint32_t rc;
124
125 dsi_pll_sw_reset_8952(pll_base);
126
127 /*
128 * Add hardware recommended delays between register writes for
129 * the updates to take effect. These delays are necessary for the
130 * PLL to successfully lock
131 */
132 writel(0x14, pll_base + 0x0070); /* CAL CFG1*/
133 writel(0x01, pll_base + 0x0020); /* GLB CFG */
134 writel(0x05, pll_base + 0x0020); /* GLB CFG */
135 udelay(3);
136 writel(0x0f, pll_base + 0x0020); /* GLB CFG */
137 udelay(500);
138
139 dsi_pll_toggle_lock_detect_8952(pll_base);
140 rc = readl(pll_base + 0x00c0) & 0x01;
141
142 return rc;
143}
144
145static uint32_t gf_2_dsi_pll_enable_sequence_8952(uint32_t pll_base)
146{
147 uint32_t rc;
148
149 dsi_pll_sw_reset_8952(pll_base);
150
151 /*
152 * Add hardware recommended delays between register writes for
153 * the updates to take effect. These delays are necessary for the
154 * PLL to successfully lock
155 */
156 writel(0x04, pll_base + 0x0070); /* CAL CFG1*/
157 writel(0x01, pll_base + 0x0020); /* GLB CFG */
158 writel(0x05, pll_base + 0x0020); /* GLB CFG */
159 udelay(3);
160 writel(0x0f, pll_base + 0x0020); /* GLB CFG */
161 udelay(500);
162
163 dsi_pll_toggle_lock_detect_8952(pll_base);
164 rc = readl(pll_base + 0x00c0) & 0x01;
165
166 return rc;
167}
168
169static uint32_t tsmc_dsi_pll_enable_sequence_8952(uint32_t pll_base)
170{
171 uint32_t rc;
172
173 dsi_pll_sw_reset_8952(pll_base);
174 /*
175 * Add hardware recommended delays between register writes for
176 * the updates to take effect. These delays are necessary for the
177 * PLL to successfully lock
178 */
179
180 writel(0x34, pll_base + 0x0070); /* CAL CFG1*/
181 writel(0x01, pll_base + 0x0020); /* GLB CFG */
182 writel(0x05, pll_base + 0x0020); /* GLB CFG */
183 writel(0x0f, pll_base + 0x0020); /* GLB CFG */
184 udelay(500);
185
186 dsi_pll_toggle_lock_detect_8952(pll_base);
187 rc = readl(pll_base + 0x00c0) & 0x01;
188
189 return rc;
190}
191
192
193static uint32_t dsi_pll_enable_seq_8952(uint32_t pll_base)
194{
195 uint32_t pll_locked = 0;
196 uint32_t counter = 0;
197
198 do {
199 pll_locked = tsmc_dsi_pll_enable_sequence_8952(pll_base);
200
201 dprintf(SPEW, "TSMC pll locked status is %d\n", pll_locked);
202 ++counter;
203 } while (!pll_locked && (counter < 3));
204
205 if(!pll_locked) {
206 counter = 0;
207 do {
208 pll_locked = gf_1_dsi_pll_enable_sequence_8952(pll_base);
209
210 dprintf(SPEW, "GF P1 pll locked status is %d\n", pll_locked);
211 ++counter;
212 } while (!pll_locked && (counter < 3));
213 }
214
215 if(!pll_locked) {
216 counter = 0;
217 do {
218 pll_locked = gf_2_dsi_pll_enable_sequence_8952(pll_base);
219
220 dprintf(SPEW, "GF P2 pll locked status is %d\n", pll_locked);
221 ++counter;
222 } while (!pll_locked && (counter < 3));
223 }
224
225 return pll_locked;
226}
227
Padmanabhan Komanduru6cf63522015-06-08 14:48:00 +0530228static uint32_t dsi_pll_enable_seq_8956(uint32_t pll_base)
229{
230 /*
231 * PLL power up sequence
232 * Add necessary delays recommended by h/w team
233 */
234
235 /* Lock Detect setting */
236 writel(0x0d, pll_base + 0x0064); /* LKDetect CFG2 */
237 writel(0x34, pll_base + 0x0070); /* PLL CAL_CFG1 */
238 writel(0x10, pll_base + 0x005c); /* LKDetect CFG0 */
239 writel(0x1a, pll_base + 0x0060); /* LKDetect CFG1 */
240
241 writel(0x01, pll_base + 0x0020); /* GLB CFG */
242 udelay(300);
243 writel(0x05, pll_base + 0x0020); /* GLB CFG */
244 udelay(300);
245 writel(0x0f, pll_base + 0x0020); /* GLB CFG */
246 udelay(300);
247 writel(0x07, pll_base + 0x0020); /* GLB CFG */
248 udelay(300);
249 writel(0x0f, pll_base + 0x0020); /* GLB CFG */
250 udelay(1000);
251
252 return dsi_pll_lock_status_8956(pll_base);
253}
254
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700255static int msm8952_wled_backlight_ctrl(uint8_t enable)
256{
257 uint8_t slave_id = PMIC_WLED_SLAVE_ID; /* pmi */
258
259 pm8x41_wled_config_slave_id(slave_id);
260 qpnp_wled_enable_backlight(enable);
261 qpnp_ibb_enable(enable);
262 return NO_ERROR;
263}
264
265int target_backlight_ctrl(struct backlight *bl, uint8_t enable)
266{
267 uint32_t ret = NO_ERROR;
268
269 if (bl->bl_interface_type == BL_DCS)
270 return ret;
271
272 ret = msm8952_wled_backlight_ctrl(enable);
273
274 return ret;
275}
276
Padmanabhan Komanduru77a979a2015-06-15 15:03:23 +0530277static int32_t mdss_dsi_pll_config(uint32_t pll_base, uint32_t ctl_base,
278 struct mdss_dsi_pll_config *pll_data)
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700279{
280 int32_t ret = 0;
Padmanabhan Komanduru77a979a2015-06-15 15:03:23 +0530281 if (!platform_is_msm8956())
282 mdss_dsi_uniphy_pll_sw_reset_8952(pll_base);
283 else
284 dsi_pll_sw_reset_8952(pll_base);
285 mdss_dsi_auto_pll_config(pll_base, ctl_base, pll_data);
286 if (platform_is_msm8956())
287 ret = dsi_pll_enable_seq_8956(pll_base);
288 else
289 ret = dsi_pll_enable_seq_8952(pll_base);
290
291 return ret;
292}
293
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700294int target_panel_clock(uint8_t enable, struct msm_panel_info *pinfo)
295{
Padmanabhan Komanduru82ae7132015-06-08 15:46:33 +0530296 int32_t ret = 0, flags;
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700297 struct mdss_dsi_pll_config *pll_data;
298 dprintf(SPEW, "target_panel_clock\n");
299
Padmanabhan Komanduru82ae7132015-06-08 15:46:33 +0530300 if (pinfo->dest == DISPLAY_2) {
301 flags = MMSS_DSI_CLKS_FLAG_DSI1;
302 if (pinfo->mipi.dual_dsi)
303 flags |= MMSS_DSI_CLKS_FLAG_DSI0;
304 } else {
305 flags = MMSS_DSI_CLKS_FLAG_DSI0;
306 if (pinfo->mipi.dual_dsi)
307 flags |= MMSS_DSI_CLKS_FLAG_DSI1;
308 }
309
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700310 pll_data = pinfo->mipi.dsi_pll_config;
311 pll_data->vco_delay = VCO_DELAY_USEC;
312
Padmanabhan Komanduruf68f51b2015-12-21 18:32:12 +0530313 /* SSC parameters */
314 if (platform_is_msm8937()) {
315 pll_data->ssc_en = true;
316 pll_data->is_center_spread = false;
317 pll_data->ssc_freq = 30000;
318 pll_data->ssc_ppm = 5000;
319 }
320
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700321 if (enable) {
322 mdp_gdsc_ctrl(enable);
323 mdss_bus_clocks_enable();
324 mdp_clock_enable();
325 ret = restore_secure_cfg(SECURE_DEVICE_MDSS);
326 if (ret) {
327 dprintf(CRITICAL,
328 "%s: Failed to restore MDP security configs",
329 __func__);
330 mdp_clock_disable();
331 mdss_bus_clocks_disable();
332 mdp_gdsc_ctrl(0);
333 return ret;
334 }
Padmanabhan Komanduru77a979a2015-06-15 15:03:23 +0530335
336 ret = mdss_dsi_pll_config(pinfo->mipi.pll_base,
337 pinfo->mipi.ctl_base, pll_data);
Padmanabhan Komanduru6cf63522015-06-08 14:48:00 +0530338 if (!ret)
Padmanabhan Komanduru77a979a2015-06-15 15:03:23 +0530339 dprintf(CRITICAL, "Not able to enable master pll\n");
340
Padmanabhan Komanduru2a6c3452015-09-09 18:46:06 +0530341 if (platform_is_msm8956() && pinfo->mipi.dual_dsi &&
342 !platform_is_msm8976_v_1_1()) {
Padmanabhan Komanduru77a979a2015-06-15 15:03:23 +0530343 ret = mdss_dsi_pll_config(pinfo->mipi.spll_base,
344 pinfo->mipi.sctl_base, pll_data);
345 if (!ret)
346 dprintf(CRITICAL, "Not able to enable second pll\n");
347 }
348
Padmanabhan Komanduru2a6c3452015-09-09 18:46:06 +0530349 gcc_dsi_clocks_enable(flags, pinfo->mipi.use_dsi1_pll,
350 pll_data->pclk_m, pll_data->pclk_n, pll_data->pclk_d);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700351 } else if(!target_cont_splash_screen()) {
Padmanabhan Komanduru82ae7132015-06-08 15:46:33 +0530352 gcc_dsi_clocks_disable(flags);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700353 mdp_clock_disable();
354 mdss_bus_clocks_disable();
355 mdp_gdsc_ctrl(enable);
356 }
357
358 return 0;
359}
360
361int target_panel_reset(uint8_t enable, struct panel_reset_sequence *resetseq,
362 struct msm_panel_info *pinfo)
363{
364 int ret = NO_ERROR;
Sujeev Dias6bc9fa32015-08-03 23:13:44 -0700365 uint32_t hw_id = board_hardware_id();
366 uint32_t hw_subtype = board_hardware_subtype();
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700367
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530368 if (platform_is_msm8956()) {
369 reset_gpio.pin_id = 25;
370 bkl_gpio.pin_id = 66;
Padmanabhan Komandurub3231322015-11-12 16:54:21 +0530371 } else if (platform_is_msm8937()) {
372 reset_gpio.pin_id = 60;
373 bkl_gpio.pin_id = 98;
374 enable_gpio.pin_id = 99;
Sujeev Dias6bc9fa32015-08-03 23:13:44 -0700375 } else if ((hw_id == HW_PLATFORM_QRD) &&
376 (hw_subtype == HW_PLATFORM_SUBTYPE_POLARIS)) {
377 enable_gpio.pin_id = 19;
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530378 }
379
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700380 if (enable) {
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530381 if (pinfo->mipi.use_enable_gpio && !platform_is_msm8956()) {
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700382 gpio_tlmm_config(enable_gpio.pin_id, 0,
383 enable_gpio.pin_direction, enable_gpio.pin_pull,
384 enable_gpio.pin_strength,
385 enable_gpio.pin_state);
386
387 gpio_set_dir(enable_gpio.pin_id, 2);
388 }
389
390 gpio_tlmm_config(bkl_gpio.pin_id, 0,
391 bkl_gpio.pin_direction, bkl_gpio.pin_pull,
392 bkl_gpio.pin_strength, bkl_gpio.pin_state);
393
394 gpio_set_dir(bkl_gpio.pin_id, 2);
395
396 gpio_tlmm_config(reset_gpio.pin_id, 0,
397 reset_gpio.pin_direction, reset_gpio.pin_pull,
398 reset_gpio.pin_strength, reset_gpio.pin_state);
399
400 gpio_set_dir(reset_gpio.pin_id, 2);
401
402 /* reset */
403 for (int i = 0; i < RESET_GPIO_SEQ_LEN; i++) {
404 if (resetseq->pin_state[i] == GPIO_STATE_LOW)
405 gpio_set_dir(reset_gpio.pin_id, GPIO_STATE_LOW);
406 else
407 gpio_set_dir(reset_gpio.pin_id, GPIO_STATE_HIGH);
408 mdelay(resetseq->sleep[i]);
409 }
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530410
411 if (platform_is_msm8956()) {
412 gpio_tlmm_config(lcd_mode_gpio.pin_id, 0,
413 lcd_mode_gpio.pin_direction, lcd_mode_gpio.pin_pull,
414 lcd_mode_gpio.pin_strength, lcd_mode_gpio.pin_state);
415
416 if (pinfo->lcdc.split_display || pinfo->lcdc.dst_split)
417 gpio_set_dir(lcd_mode_gpio.pin_id, GPIO_STATE_LOW);
418 else
419 gpio_set_dir(lcd_mode_gpio.pin_id, GPIO_STATE_HIGH);
420 }
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700421 } else if(!target_cont_splash_screen()) {
422 gpio_set_dir(reset_gpio.pin_id, 0);
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530423 if (pinfo->mipi.use_enable_gpio && !platform_is_msm8956())
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700424 gpio_set_dir(enable_gpio.pin_id, 0);
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530425 if (platform_is_msm8956())
426 gpio_set_dir(lcd_mode_gpio.pin_id, 0);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700427 }
428
429 return ret;
430}
431
432static void wled_init(struct msm_panel_info *pinfo)
433{
434 struct qpnp_wled_config_data config = {0};
435 struct labibb_desc *labibb;
436 int display_type = 0;
437
438 labibb = pinfo->labibb;
439
440 if (labibb)
441 display_type = labibb->amoled_panel;
442
443 config.display_type = display_type;
444 config.lab_init_volt = 4600000; /* fixed, see pmi register */
445 config.ibb_init_volt = 1400000; /* fixed, see pmi register */
446
447 if (labibb && labibb->force_config) {
448 config.lab_min_volt = labibb->lab_min_volt;
449 config.lab_max_volt = labibb->lab_max_volt;
450 config.ibb_min_volt = labibb->ibb_min_volt;
451 config.ibb_max_volt = labibb->ibb_max_volt;
452 config.pwr_up_delay = labibb->pwr_up_delay;
453 config.pwr_down_delay = labibb->pwr_down_delay;
454 config.ibb_discharge_en = labibb->ibb_discharge_en;
455 } else {
456 /* default */
457 config.pwr_up_delay = 3;
458 config.pwr_down_delay = 3;
459 config.ibb_discharge_en = 1;
460 if (display_type) { /* amoled */
461 config.lab_min_volt = 4600000;
462 config.lab_max_volt = 4600000;
463 config.ibb_min_volt = 4000000;
464 config.ibb_max_volt = 4000000;
465 } else { /* lcd */
466 config.lab_min_volt = 5500000;
467 config.lab_max_volt = 5500000;
468 config.ibb_min_volt = 5500000;
469 config.ibb_max_volt = 5500000;
470 }
471 }
472
473 dprintf(SPEW, "%s: %d %d %d %d %d %d %d %d %d %d\n", __func__,
474 config.display_type,
475 config.lab_min_volt, config.lab_max_volt,
476 config.ibb_min_volt, config.ibb_max_volt,
477 config.lab_init_volt, config.ibb_init_volt,
478 config.pwr_up_delay, config.pwr_down_delay,
479 config.ibb_discharge_en);
480
481 /* QPNP WLED init for display backlight */
482 pm8x41_wled_config_slave_id(PMIC_WLED_SLAVE_ID);
483
484 qpnp_wled_init(&config);
485}
486
Dhaval Patel7709c412015-05-12 10:09:41 -0700487int target_dsi_phy_config(struct mdss_dsi_phy_ctrl *phy_db)
488{
489 memcpy(phy_db->regulator, panel_regulator_settings, REGULATOR_SIZE);
490 memcpy(phy_db->ctrl, panel_physical_ctrl, PHYSICAL_SIZE);
491 memcpy(phy_db->strength, panel_strength_ctrl, STRENGTH_SIZE);
492 memcpy(phy_db->bistCtrl, panel_bist_ctrl, BIST_SIZE);
493 memcpy(phy_db->laneCfg, panel_lane_config, LANE_SIZE);
494 return NO_ERROR;
495}
496
Padmanabhan Komandurub3381932015-06-15 22:14:02 +0530497int target_display_get_base_offset(uint32_t base)
498{
Padmanabhan Komandurub3231322015-11-12 16:54:21 +0530499 if(platform_is_msm8956() || platform_is_msm8937()) {
Padmanabhan Komandurub3381932015-06-15 22:14:02 +0530500 if (base == MIPI_DSI0_BASE)
501 return DSI0_BASE_ADJUST;
502 else if (base == DSI0_PHY_BASE)
503 return DSI0_PHY_BASE_ADJUST;
504 else if (base == DSI0_PLL_BASE)
505 return DSI0_PHY_PLL_BASE_ADJUST;
506 else if (base == DSI0_REGULATOR_BASE)
507 return DSI0_PHY_REGULATOR_BASE_ADJUST;
508 }
509
510 return 0;
511}
512
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700513int target_ldo_ctrl(uint8_t enable, struct msm_panel_info *pinfo)
514{
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530515 uint32_t ldo_num = REG_LDO6 | REG_LDO17;
516
517 if (platform_is_msm8956())
518 ldo_num |= REG_LDO1;
519 else
520 ldo_num |= REG_LDO2;
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700521
522 if (enable) {
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530523 regulator_enable(ldo_num);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700524 mdelay(10);
525 wled_init(pinfo);
526 qpnp_ibb_enable(true); /*5V boost*/
527 mdelay(50);
528 } else {
Padmanabhan Komandurufa2899b2015-06-30 16:25:33 +0530529 /*
530 * LDO1, LDO2 and LDO6 are shared with other subsystems.
531 * Do not disable them.
532 */
533 regulator_disable(REG_LDO17);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700534 }
535
536 return NO_ERROR;
537}
538
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530539bool target_display_panel_node(char *pbuf, uint16_t buf_size)
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700540{
Padmanabhan Komanduru6664df22015-08-28 15:21:25 +0530541 return gcdb_display_cmdline_arg(pbuf, buf_size);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700542}
543
544void target_display_init(const char *panel_name)
545{
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530546 struct oem_panel_data oem;
Ray Zhangf95f5b92015-06-25 15:34:29 +0800547 int32_t ret = 0;
548 uint32_t panel_loop = 0;
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700549
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530550 set_panel_cmd_string(panel_name);
551 oem = mdss_dsi_get_oem_data();
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700552
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530553 if (!strcmp(oem.panel, NO_PANEL_CONFIG)
554 || !strcmp(oem.panel, SIM_VIDEO_PANEL)
555 || !strcmp(oem.panel, SIM_CMD_PANEL)
556 || oem.skip) {
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700557 dprintf(INFO, "Selected panel: %s\nSkip panel configuration\n",
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530558 oem.panel);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700559 return;
560 }
561
Ray Zhangf95f5b92015-06-25 15:34:29 +0800562 do {
563 target_force_cont_splash_disable(false);
564 ret = gcdb_display_init(oem.panel, MDP_REV_50, (void *)MIPI_FB_ADDR);
565 if (!ret || ret == ERR_NOT_SUPPORTED) {
566 break;
567 } else {
568 target_force_cont_splash_disable(true);
569 msm_display_off();
570 }
571 } while (++panel_loop <= oem_panel_max_auto_detect_panels());
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700572
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530573 if (!oem.cont_splash) {
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700574 dprintf(INFO, "Forcing continuous splash disable\n");
575 target_force_cont_splash_disable(true);
576 }
577}
578
579void target_display_shutdown(void)
580{
581 gcdb_display_shutdown();
582}