blob: 1e5b796223d0b9fa5baa76048639f475d62164dc [file] [log] [blame]
Vishnuvardhan Prodduturi4aa8dc42015-10-20 21:20:43 +05301/* Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -07002 *
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 */
Jayant Shekhar9c0533e2016-01-28 11:17:18 +0530314 if (platform_is_msm8937() || platform_is_msmgold()) {
Padmanabhan Komanduruf68f51b2015-12-21 18:32:12 +0530315 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;
Jayant Shekhar9c0533e2016-01-28 11:17:18 +0530375 } else if (platform_is_msmgold()) {
376 reset_gpio.pin_id = 60;
377 bkl_gpio.pin_id = 98;
378 pinfo->mipi.use_enable_gpio = 0;
Sujeev Dias6bc9fa32015-08-03 23:13:44 -0700379 } else if ((hw_id == HW_PLATFORM_QRD) &&
380 (hw_subtype == HW_PLATFORM_SUBTYPE_POLARIS)) {
381 enable_gpio.pin_id = 19;
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530382 }
383
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700384 if (enable) {
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530385 if (pinfo->mipi.use_enable_gpio && !platform_is_msm8956()) {
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700386 gpio_tlmm_config(enable_gpio.pin_id, 0,
387 enable_gpio.pin_direction, enable_gpio.pin_pull,
388 enable_gpio.pin_strength,
389 enable_gpio.pin_state);
390
391 gpio_set_dir(enable_gpio.pin_id, 2);
392 }
393
394 gpio_tlmm_config(bkl_gpio.pin_id, 0,
395 bkl_gpio.pin_direction, bkl_gpio.pin_pull,
396 bkl_gpio.pin_strength, bkl_gpio.pin_state);
397
398 gpio_set_dir(bkl_gpio.pin_id, 2);
399
400 gpio_tlmm_config(reset_gpio.pin_id, 0,
401 reset_gpio.pin_direction, reset_gpio.pin_pull,
402 reset_gpio.pin_strength, reset_gpio.pin_state);
403
404 gpio_set_dir(reset_gpio.pin_id, 2);
405
406 /* reset */
407 for (int i = 0; i < RESET_GPIO_SEQ_LEN; i++) {
408 if (resetseq->pin_state[i] == GPIO_STATE_LOW)
409 gpio_set_dir(reset_gpio.pin_id, GPIO_STATE_LOW);
410 else
411 gpio_set_dir(reset_gpio.pin_id, GPIO_STATE_HIGH);
412 mdelay(resetseq->sleep[i]);
413 }
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530414
415 if (platform_is_msm8956()) {
416 gpio_tlmm_config(lcd_mode_gpio.pin_id, 0,
417 lcd_mode_gpio.pin_direction, lcd_mode_gpio.pin_pull,
418 lcd_mode_gpio.pin_strength, lcd_mode_gpio.pin_state);
419
420 if (pinfo->lcdc.split_display || pinfo->lcdc.dst_split)
421 gpio_set_dir(lcd_mode_gpio.pin_id, GPIO_STATE_LOW);
422 else
423 gpio_set_dir(lcd_mode_gpio.pin_id, GPIO_STATE_HIGH);
424 }
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700425 } else if(!target_cont_splash_screen()) {
426 gpio_set_dir(reset_gpio.pin_id, 0);
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530427 if (pinfo->mipi.use_enable_gpio && !platform_is_msm8956())
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700428 gpio_set_dir(enable_gpio.pin_id, 0);
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530429 if (platform_is_msm8956())
430 gpio_set_dir(lcd_mode_gpio.pin_id, 0);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700431 }
432
433 return ret;
434}
435
436static void wled_init(struct msm_panel_info *pinfo)
437{
438 struct qpnp_wled_config_data config = {0};
439 struct labibb_desc *labibb;
440 int display_type = 0;
Vishnuvardhan Prodduturi4aa8dc42015-10-20 21:20:43 +0530441 bool swire_control = 0;
442 bool wled_avdd_control = 0;
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700443
444 labibb = pinfo->labibb;
445
446 if (labibb)
447 display_type = labibb->amoled_panel;
448
Vishnuvardhan Prodduturi4aa8dc42015-10-20 21:20:43 +0530449 if (display_type) {
450 swire_control = labibb->swire_control;
451 wled_avdd_control = true;
452 } else {
453 swire_control = false;
454 wled_avdd_control = false;
455 }
456
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700457 config.display_type = display_type;
458 config.lab_init_volt = 4600000; /* fixed, see pmi register */
459 config.ibb_init_volt = 1400000; /* fixed, see pmi register */
Vishnuvardhan Prodduturi4aa8dc42015-10-20 21:20:43 +0530460 config.lab_ibb_swire_control = swire_control;
461 config.wled_avdd_control = wled_avdd_control;
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700462
Vishnuvardhan Prodduturi4aa8dc42015-10-20 21:20:43 +0530463 if(!swire_control) {
464 if (labibb && labibb->force_config) {
465 config.lab_min_volt = labibb->lab_min_volt;
466 config.lab_max_volt = labibb->lab_max_volt;
467 config.ibb_min_volt = labibb->ibb_min_volt;
468 config.ibb_max_volt = labibb->ibb_max_volt;
469 config.pwr_up_delay = labibb->pwr_up_delay;
470 config.pwr_down_delay = labibb->pwr_down_delay;
471 config.ibb_discharge_en = labibb->ibb_discharge_en;
472 } else {
473 /* default */
474 config.pwr_up_delay = 3;
475 config.pwr_down_delay = 3;
476 config.ibb_discharge_en = 1;
477 if (display_type) { /* amoled */
478 config.lab_min_volt = 4600000;
479 config.lab_max_volt = 4600000;
480 config.ibb_min_volt = 4000000;
481 config.ibb_max_volt = 4000000;
482 } else { /* lcd */
483 config.lab_min_volt = 5500000;
484 config.lab_max_volt = 5500000;
485 config.ibb_min_volt = 5500000;
486 config.ibb_max_volt = 5500000;
487 }
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700488 }
489 }
490
491 dprintf(SPEW, "%s: %d %d %d %d %d %d %d %d %d %d\n", __func__,
492 config.display_type,
493 config.lab_min_volt, config.lab_max_volt,
494 config.ibb_min_volt, config.ibb_max_volt,
495 config.lab_init_volt, config.ibb_init_volt,
496 config.pwr_up_delay, config.pwr_down_delay,
497 config.ibb_discharge_en);
498
499 /* QPNP WLED init for display backlight */
500 pm8x41_wled_config_slave_id(PMIC_WLED_SLAVE_ID);
501
502 qpnp_wled_init(&config);
503}
504
Dhaval Patel7709c412015-05-12 10:09:41 -0700505int target_dsi_phy_config(struct mdss_dsi_phy_ctrl *phy_db)
506{
507 memcpy(phy_db->regulator, panel_regulator_settings, REGULATOR_SIZE);
508 memcpy(phy_db->ctrl, panel_physical_ctrl, PHYSICAL_SIZE);
509 memcpy(phy_db->strength, panel_strength_ctrl, STRENGTH_SIZE);
510 memcpy(phy_db->bistCtrl, panel_bist_ctrl, BIST_SIZE);
511 memcpy(phy_db->laneCfg, panel_lane_config, LANE_SIZE);
512 return NO_ERROR;
513}
514
Padmanabhan Komandurub3381932015-06-15 22:14:02 +0530515int target_display_get_base_offset(uint32_t base)
516{
Jayant Shekhar9c0533e2016-01-28 11:17:18 +0530517 if(platform_is_msm8956() || platform_is_msm8937() ||
518 platform_is_msmgold()) {
Padmanabhan Komandurub3381932015-06-15 22:14:02 +0530519 if (base == MIPI_DSI0_BASE)
520 return DSI0_BASE_ADJUST;
521 else if (base == DSI0_PHY_BASE)
522 return DSI0_PHY_BASE_ADJUST;
523 else if (base == DSI0_PLL_BASE)
524 return DSI0_PHY_PLL_BASE_ADJUST;
525 else if (base == DSI0_REGULATOR_BASE)
526 return DSI0_PHY_REGULATOR_BASE_ADJUST;
527 }
528
529 return 0;
530}
531
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700532int target_ldo_ctrl(uint8_t enable, struct msm_panel_info *pinfo)
533{
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530534 uint32_t ldo_num = REG_LDO6 | REG_LDO17;
535
536 if (platform_is_msm8956())
537 ldo_num |= REG_LDO1;
538 else
539 ldo_num |= REG_LDO2;
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700540
541 if (enable) {
Padmanabhan Komanduru3cb07662015-06-08 17:13:33 +0530542 regulator_enable(ldo_num);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700543 mdelay(10);
544 wled_init(pinfo);
545 qpnp_ibb_enable(true); /*5V boost*/
546 mdelay(50);
547 } else {
Padmanabhan Komandurufa2899b2015-06-30 16:25:33 +0530548 /*
549 * LDO1, LDO2 and LDO6 are shared with other subsystems.
550 * Do not disable them.
551 */
552 regulator_disable(REG_LDO17);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700553 }
554
555 return NO_ERROR;
556}
557
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530558bool target_display_panel_node(char *pbuf, uint16_t buf_size)
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700559{
Padmanabhan Komanduru6664df22015-08-28 15:21:25 +0530560 return gcdb_display_cmdline_arg(pbuf, buf_size);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700561}
562
563void target_display_init(const char *panel_name)
564{
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530565 struct oem_panel_data oem;
Ray Zhangf95f5b92015-06-25 15:34:29 +0800566 int32_t ret = 0;
567 uint32_t panel_loop = 0;
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700568
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530569 set_panel_cmd_string(panel_name);
570 oem = mdss_dsi_get_oem_data();
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700571
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530572 if (!strcmp(oem.panel, NO_PANEL_CONFIG)
573 || !strcmp(oem.panel, SIM_VIDEO_PANEL)
574 || !strcmp(oem.panel, SIM_CMD_PANEL)
575 || oem.skip) {
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700576 dprintf(INFO, "Selected panel: %s\nSkip panel configuration\n",
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530577 oem.panel);
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700578 return;
579 }
580
Ray Zhangf95f5b92015-06-25 15:34:29 +0800581 do {
582 target_force_cont_splash_disable(false);
583 ret = gcdb_display_init(oem.panel, MDP_REV_50, (void *)MIPI_FB_ADDR);
584 if (!ret || ret == ERR_NOT_SUPPORTED) {
585 break;
586 } else {
587 target_force_cont_splash_disable(true);
588 msm_display_off();
589 }
590 } while (++panel_loop <= oem_panel_max_auto_detect_panels());
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700591
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530592 if (!oem.cont_splash) {
Padmanabhan Komanduru9d49f892015-04-10 12:58:46 -0700593 dprintf(INFO, "Forcing continuous splash disable\n");
594 target_force_cont_splash_disable(true);
595 }
596}
597
598void target_display_shutdown(void)
599{
600 gcdb_display_shutdown();
601}