blob: 3da68ad2a53f7aa7579c069d10a45aaa3b38c722 [file] [log] [blame]
Chintan Pandya250c2e52012-01-19 17:15:49 +05301/* Copyright (c) 2012, Code Aurora Forum. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13#include <linux/init.h>
14#include <linux/ioport.h>
15#include <linux/platform_device.h>
16#include <linux/bootmem.h>
17#include <linux/regulator/consumer.h>
Steve Mucklef132c6c2012-06-06 18:30:57 -070018#include <linux/gpio.h>
Chintan Pandya250c2e52012-01-19 17:15:49 +053019#include <asm/mach-types.h>
20#include <asm/io.h>
21#include <mach/msm_bus_board.h>
22#include <mach/msm_memtypes.h>
23#include <mach/board.h>
Chintan Pandya250c2e52012-01-19 17:15:49 +053024#include <mach/gpiomux.h>
25#include <mach/socinfo.h>
26#include <mach/rpc_pmapp.h>
27#include "devices.h"
28#include "board-msm7627a.h"
29
30#ifdef CONFIG_FB_MSM_TRIPLE_BUFFER
Jeevan Shriram8c23e072012-03-14 11:35:49 +053031#define MSM_FB_SIZE 0x4BF000
32#define MSM7x25A_MSM_FB_SIZE 0x1C2000
33#define MSM8x25_MSM_FB_SIZE 0x5FA000
Chintan Pandya250c2e52012-01-19 17:15:49 +053034#else
Jeevan Shriram8c23e072012-03-14 11:35:49 +053035#define MSM_FB_SIZE 0x32A000
36#define MSM7x25A_MSM_FB_SIZE 0x12C000
37#define MSM8x25_MSM_FB_SIZE 0x3FC000
Chintan Pandya250c2e52012-01-19 17:15:49 +053038#endif
39
Alhad Purnapatrec55856c2012-02-28 13:24:57 -080040/*
41 * Reserve enough v4l2 space for a double buffered full screen
42 * res image (864x480x1.5x2)
43 */
44#define MSM_V4L2_VIDEO_OVERLAY_BUF_SIZE 1244160
45
Chintan Pandya250c2e52012-01-19 17:15:49 +053046static unsigned fb_size = MSM_FB_SIZE;
47static int __init fb_size_setup(char *p)
48{
49 fb_size = memparse(p, NULL);
50 return 0;
51}
52
53early_param("fb_size", fb_size_setup);
54
Jeevan Shriram901a15f2012-03-09 11:53:23 +053055static uint32_t lcdc_truly_gpio_initialized;
56static struct regulator_bulk_data regs_truly_lcdc[] = {
57 { .supply = "rfrx1", .min_uV = 1800000, .max_uV = 1800000 },
58};
59
60#define SKU3_LCDC_GPIO_DISPLAY_RESET 90
61#define SKU3_LCDC_GPIO_SPI_MOSI 19
62#define SKU3_LCDC_GPIO_SPI_CLK 20
63#define SKU3_LCDC_GPIO_SPI_CS0_N 21
64#define SKU3_LCDC_LCD_CAMERA_LDO_2V8 35 /*LCD_CAMERA_LDO_2V8*/
65#define SKU3_LCDC_LCD_CAMERA_LDO_1V8 34 /*LCD_CAMERA_LDO_1V8*/
66#define SKU3_1_LCDC_LCD_CAMERA_LDO_1V8 58 /*LCD_CAMERA_LDO_1V8*/
67
68static uint32_t lcdc_truly_gpio_table[] = {
69 19,
70 20,
71 21,
72 89,
73 90,
74};
75
76static char *lcdc_gpio_name_table[5] = {
77 "spi_mosi",
78 "spi_clk",
79 "spi_cs",
80 "gpio_bkl_en",
81 "gpio_disp_reset",
82};
83
84static int lcdc_truly_gpio_init(void)
85{
86 int i;
87 int rc = 0;
88
89 if (!lcdc_truly_gpio_initialized) {
90 for (i = 0; i < ARRAY_SIZE(lcdc_truly_gpio_table); i++) {
91 rc = gpio_request(lcdc_truly_gpio_table[i],
92 lcdc_gpio_name_table[i]);
93 if (rc < 0) {
94 pr_err("Error request gpio %s\n",
95 lcdc_gpio_name_table[i]);
96 goto truly_gpio_fail;
97 }
98 rc = gpio_tlmm_config(GPIO_CFG(lcdc_truly_gpio_table[i],
99 0, GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL,
100 GPIO_CFG_2MA), GPIO_CFG_ENABLE);
101 if (rc < 0) {
102 pr_err("Error config lcdc gpio:%d\n",
103 lcdc_truly_gpio_table[i]);
104 goto truly_gpio_fail;
105 }
106 rc = gpio_direction_output(lcdc_truly_gpio_table[i], 0);
107 if (rc < 0) {
108 pr_err("Error direct lcdc gpio:%d\n",
109 lcdc_truly_gpio_table[i]);
110 goto truly_gpio_fail;
111 }
112 }
113
114 lcdc_truly_gpio_initialized = 1;
115 }
116
117 return rc;
118
119truly_gpio_fail:
120 for (; i >= 0; i--) {
121 pr_err("Freeing GPIO: %d", lcdc_truly_gpio_table[i]);
122 gpio_free(lcdc_truly_gpio_table[i]);
123 }
124
125 lcdc_truly_gpio_initialized = 0;
126 return rc;
127}
128
129
130void sku3_lcdc_lcd_camera_power_init(void)
131{
132 int rc = 0;
133 u32 socinfo = socinfo_get_platform_type();
134
135 /* LDO_EXT2V8 */
136 if (gpio_request(SKU3_LCDC_LCD_CAMERA_LDO_2V8, "lcd_camera_ldo_2v8")) {
137 pr_err("failed to request gpio lcd_camera_ldo_2v8\n");
138 return;
139 }
140
141 rc = gpio_tlmm_config(GPIO_CFG(SKU3_LCDC_LCD_CAMERA_LDO_2V8, 0,
142 GPIO_CFG_OUTPUT, GPIO_CFG_PULL_DOWN, GPIO_CFG_2MA),
143 GPIO_CFG_ENABLE);
144
145 if (rc < 0) {
146 pr_err("%s:unable to enable lcd_camera_ldo_2v8!\n", __func__);
147 goto fail_gpio2;
148 }
149
150 /* LDO_EVT1V8 */
151 if (socinfo == 0x0B) {
152 if (gpio_request(SKU3_LCDC_LCD_CAMERA_LDO_1V8,
153 "lcd_camera_ldo_1v8")) {
154 pr_err("failed to request gpio lcd_camera_ldo_1v8\n");
155 goto fail_gpio1;
156 }
157
158 rc = gpio_tlmm_config(GPIO_CFG(SKU3_LCDC_LCD_CAMERA_LDO_1V8, 0,
159 GPIO_CFG_OUTPUT, GPIO_CFG_PULL_DOWN, GPIO_CFG_2MA),
160 GPIO_CFG_ENABLE);
161
162 if (rc < 0) {
163 pr_err("%s: unable to enable lcdc_camera_ldo_1v8!\n",
164 __func__);
165 goto fail_gpio1;
166 }
Jeevan Shriram045cdc72012-03-27 07:04:15 +0530167 } else if (socinfo == 0x0F || machine_is_msm8625_qrd7()) {
Jeevan Shriram901a15f2012-03-09 11:53:23 +0530168 if (gpio_request(SKU3_1_LCDC_LCD_CAMERA_LDO_1V8,
169 "lcd_camera_ldo_1v8")) {
170 pr_err("failed to request gpio lcd_camera_ldo_1v8\n");
171 goto fail_gpio1;
172 }
173
174 rc = gpio_tlmm_config(GPIO_CFG(SKU3_1_LCDC_LCD_CAMERA_LDO_1V8,
175 0, GPIO_CFG_OUTPUT, GPIO_CFG_PULL_DOWN, GPIO_CFG_2MA),
176 GPIO_CFG_ENABLE);
177
178 if (rc < 0) {
179 pr_err("%s: unable to enable lcdc_camera_ldo_1v8!\n",
180 __func__);
181 goto fail_gpio1;
182 }
183 }
184
185 rc = regulator_bulk_get(NULL, ARRAY_SIZE(regs_truly_lcdc),
186 regs_truly_lcdc);
187 if (rc)
188 pr_err("%s: could not get regulators: %d\n", __func__, rc);
189
190 rc = regulator_bulk_set_voltage(ARRAY_SIZE(regs_truly_lcdc),
191 regs_truly_lcdc);
192 if (rc)
193 pr_err("%s: could not set voltages: %d\n", __func__, rc);
194
195 return;
196
197fail_gpio1:
198 if (socinfo == 0x0B)
199 gpio_free(SKU3_LCDC_LCD_CAMERA_LDO_1V8);
Jeevan Shriram045cdc72012-03-27 07:04:15 +0530200 else if (socinfo == 0x0F || machine_is_msm8625_qrd7())
Jeevan Shriram901a15f2012-03-09 11:53:23 +0530201 gpio_free(SKU3_1_LCDC_LCD_CAMERA_LDO_1V8);
202fail_gpio2:
203 gpio_free(SKU3_LCDC_LCD_CAMERA_LDO_2V8);
204 return;
205}
206
207int sku3_lcdc_lcd_camera_power_onoff(int on)
208{
209 int rc = 0;
210 u32 socinfo = socinfo_get_platform_type();
211
212 if (on) {
213 if (socinfo == 0x0B)
214 gpio_set_value_cansleep(SKU3_LCDC_LCD_CAMERA_LDO_1V8,
215 1);
Jeevan Shriram045cdc72012-03-27 07:04:15 +0530216 else if (socinfo == 0x0F || machine_is_msm8625_qrd7())
Jeevan Shriram901a15f2012-03-09 11:53:23 +0530217 gpio_set_value_cansleep(SKU3_1_LCDC_LCD_CAMERA_LDO_1V8,
218 1);
219
220 gpio_set_value_cansleep(SKU3_LCDC_LCD_CAMERA_LDO_2V8, 1);
221
222 rc = regulator_bulk_enable(ARRAY_SIZE(regs_truly_lcdc),
223 regs_truly_lcdc);
224 if (rc)
225 pr_err("%s: could not enable regulators: %d\n",
226 __func__, rc);
227 } else {
228 if (socinfo == 0x0B)
229 gpio_set_value_cansleep(SKU3_LCDC_LCD_CAMERA_LDO_1V8,
230 0);
Jeevan Shriram045cdc72012-03-27 07:04:15 +0530231 else if (socinfo == 0x0F || machine_is_msm8625_qrd7())
Jeevan Shriram901a15f2012-03-09 11:53:23 +0530232 gpio_set_value_cansleep(SKU3_1_LCDC_LCD_CAMERA_LDO_1V8,
233 0);
234
235 gpio_set_value_cansleep(SKU3_LCDC_LCD_CAMERA_LDO_2V8, 0);
236
237 rc = regulator_bulk_disable(ARRAY_SIZE(regs_truly_lcdc),
238 regs_truly_lcdc);
239 if (rc)
240 pr_err("%s: could not disable regulators: %d\n",
241 __func__, rc);
242 }
243
244 return rc;
245}
246
247static int sku3_lcdc_power_save(int on)
248{
249 int rc = 0;
250
251 if (on) {
252 sku3_lcdc_lcd_camera_power_onoff(1);
253 rc = lcdc_truly_gpio_init();
254 if (rc < 0) {
255 pr_err("%s(): Truly GPIO initializations failed",
256 __func__);
257 return rc;
258 }
259
260 if (lcdc_truly_gpio_initialized) {
261 /*LCD reset*/
262 gpio_set_value(SKU3_LCDC_GPIO_DISPLAY_RESET, 1);
263 msleep(20);
264 gpio_set_value(SKU3_LCDC_GPIO_DISPLAY_RESET, 0);
265 msleep(20);
266 gpio_set_value(SKU3_LCDC_GPIO_DISPLAY_RESET, 1);
267 msleep(20);
268 }
269 } else {
270 /* pull down LCD IO to avoid current leakage */
271 gpio_set_value(SKU3_LCDC_GPIO_SPI_MOSI, 0);
272 gpio_set_value(SKU3_LCDC_GPIO_SPI_CLK, 0);
273 gpio_set_value(SKU3_LCDC_GPIO_SPI_CS0_N, 0);
274 gpio_set_value(SKU3_LCDC_GPIO_DISPLAY_RESET, 0);
275
276 sku3_lcdc_lcd_camera_power_onoff(0);
277 }
278 return rc;
279}
280
281static struct msm_panel_common_pdata lcdc_truly_panel_data = {
282 .panel_config_gpio = NULL,
283 .gpio_num = lcdc_truly_gpio_table,
284};
285
286static struct platform_device lcdc_truly_panel_device = {
287 .name = "lcdc_truly_hvga_ips3p2335_pt",
288 .id = 0,
289 .dev = {
290 .platform_data = &lcdc_truly_panel_data,
291 }
292};
293
Chintan Pandya250c2e52012-01-19 17:15:49 +0530294static struct regulator_bulk_data regs_lcdc[] = {
295 { .supply = "gp2", .min_uV = 2850000, .max_uV = 2850000 },
296 { .supply = "msme1", .min_uV = 1800000, .max_uV = 1800000 },
297};
298static uint32_t lcdc_gpio_initialized;
299
300static void lcdc_toshiba_gpio_init(void)
301{
302 int rc = 0;
303 if (!lcdc_gpio_initialized) {
304 if (gpio_request(GPIO_SPI_CLK, "spi_clk")) {
305 pr_err("failed to request gpio spi_clk\n");
306 return;
307 }
308 if (gpio_request(GPIO_SPI_CS0_N, "spi_cs")) {
309 pr_err("failed to request gpio spi_cs0_N\n");
310 goto fail_gpio6;
311 }
312 if (gpio_request(GPIO_SPI_MOSI, "spi_mosi")) {
313 pr_err("failed to request gpio spi_mosi\n");
314 goto fail_gpio5;
315 }
316 if (gpio_request(GPIO_SPI_MISO, "spi_miso")) {
317 pr_err("failed to request gpio spi_miso\n");
318 goto fail_gpio4;
319 }
320 if (gpio_request(GPIO_DISPLAY_PWR_EN, "gpio_disp_pwr")) {
321 pr_err("failed to request gpio_disp_pwr\n");
322 goto fail_gpio3;
323 }
324 if (gpio_request(GPIO_BACKLIGHT_EN, "gpio_bkl_en")) {
325 pr_err("failed to request gpio_bkl_en\n");
326 goto fail_gpio2;
327 }
328 pmapp_disp_backlight_init();
329
330 rc = regulator_bulk_get(NULL, ARRAY_SIZE(regs_lcdc),
331 regs_lcdc);
332 if (rc) {
333 pr_err("%s: could not get regulators: %d\n",
334 __func__, rc);
335 goto fail_gpio1;
336 }
337
338 rc = regulator_bulk_set_voltage(ARRAY_SIZE(regs_lcdc),
339 regs_lcdc);
340 if (rc) {
341 pr_err("%s: could not set voltages: %d\n",
342 __func__, rc);
343 goto fail_vreg;
344 }
345 lcdc_gpio_initialized = 1;
346 }
347 return;
348fail_vreg:
349 regulator_bulk_free(ARRAY_SIZE(regs_lcdc), regs_lcdc);
350fail_gpio1:
351 gpio_free(GPIO_BACKLIGHT_EN);
352fail_gpio2:
353 gpio_free(GPIO_DISPLAY_PWR_EN);
354fail_gpio3:
355 gpio_free(GPIO_SPI_MISO);
356fail_gpio4:
357 gpio_free(GPIO_SPI_MOSI);
358fail_gpio5:
359 gpio_free(GPIO_SPI_CS0_N);
360fail_gpio6:
361 gpio_free(GPIO_SPI_CLK);
362 lcdc_gpio_initialized = 0;
363}
364
365static uint32_t lcdc_gpio_table[] = {
366 GPIO_SPI_CLK,
367 GPIO_SPI_CS0_N,
368 GPIO_SPI_MOSI,
369 GPIO_DISPLAY_PWR_EN,
370 GPIO_BACKLIGHT_EN,
371 GPIO_SPI_MISO,
372};
373
374static void config_lcdc_gpio_table(uint32_t *table, int len, unsigned enable)
375{
376 int n;
377
378 if (lcdc_gpio_initialized) {
379 /* All are IO Expander GPIOs */
380 for (n = 0; n < (len - 1); n++)
381 gpio_direction_output(table[n], 1);
382 }
383}
384
385static void lcdc_toshiba_config_gpios(int enable)
386{
387 config_lcdc_gpio_table(lcdc_gpio_table,
388 ARRAY_SIZE(lcdc_gpio_table), enable);
389}
390
391static int msm_fb_lcdc_power_save(int on)
392{
393 int rc = 0;
394 /* Doing the init of the LCDC GPIOs very late as they are from
395 an I2C-controlled IO Expander */
396 lcdc_toshiba_gpio_init();
397
398 if (lcdc_gpio_initialized) {
399 gpio_set_value_cansleep(GPIO_DISPLAY_PWR_EN, on);
400 gpio_set_value_cansleep(GPIO_BACKLIGHT_EN, on);
401
402 rc = on ? regulator_bulk_enable(
403 ARRAY_SIZE(regs_lcdc), regs_lcdc) :
404 regulator_bulk_disable(
405 ARRAY_SIZE(regs_lcdc), regs_lcdc);
406
407 if (rc)
408 pr_err("%s: could not %sable regulators: %d\n",
409 __func__, on ? "en" : "dis", rc);
410 }
411
412 return rc;
413}
414
415static int lcdc_toshiba_set_bl(int level)
416{
417 int ret;
418
419 ret = pmapp_disp_backlight_set_brightness(level);
420 if (ret)
421 pr_err("%s: can't set lcd backlight!\n", __func__);
422
423 return ret;
424}
425
Jeevan Shriram901a15f2012-03-09 11:53:23 +0530426
427static int msm_lcdc_power_save(int on)
428{
429 int rc = 0;
Jeevan Shriram045cdc72012-03-27 07:04:15 +0530430 if (machine_is_msm7627a_qrd3() || machine_is_msm8625_qrd7())
Jeevan Shriram901a15f2012-03-09 11:53:23 +0530431 rc = sku3_lcdc_power_save(on);
432 else
433 rc = msm_fb_lcdc_power_save(on);
434
435 return rc;
436}
437
Chintan Pandya250c2e52012-01-19 17:15:49 +0530438static struct lcdc_platform_data lcdc_pdata = {
439 .lcdc_gpio_config = NULL,
Jeevan Shriram901a15f2012-03-09 11:53:23 +0530440 .lcdc_power_save = msm_lcdc_power_save,
Chintan Pandya250c2e52012-01-19 17:15:49 +0530441};
442
443static int lcd_panel_spi_gpio_num[] = {
444 GPIO_SPI_MOSI, /* spi_sdi */
445 GPIO_SPI_MISO, /* spi_sdoi */
446 GPIO_SPI_CLK, /* spi_clk */
447 GPIO_SPI_CS0_N, /* spi_cs */
448};
449
450static struct msm_panel_common_pdata lcdc_toshiba_panel_data = {
451 .panel_config_gpio = lcdc_toshiba_config_gpios,
452 .pmic_backlight = lcdc_toshiba_set_bl,
453 .gpio_num = lcd_panel_spi_gpio_num,
454};
455
456static struct platform_device lcdc_toshiba_panel_device = {
457 .name = "lcdc_toshiba_fwvga_pt",
458 .id = 0,
459 .dev = {
460 .platform_data = &lcdc_toshiba_panel_data,
461 }
462};
463
464static struct resource msm_fb_resources[] = {
465 {
466 .flags = IORESOURCE_DMA,
467 }
468};
469
Alhad Purnapatrec55856c2012-02-28 13:24:57 -0800470#ifdef CONFIG_MSM_V4L2_VIDEO_OVERLAY_DEVICE
471static struct resource msm_v4l2_video_overlay_resources[] = {
472 {
473 .flags = IORESOURCE_DMA,
474 }
475};
476#endif
477
Chintan Pandya250c2e52012-01-19 17:15:49 +0530478#define LCDC_TOSHIBA_FWVGA_PANEL_NAME "lcdc_toshiba_fwvga_pt"
479#define MIPI_CMD_RENESAS_FWVGA_PANEL_NAME "mipi_cmd_renesas_fwvga"
480
481static int msm_fb_detect_panel(const char *name)
482{
483 int ret = -ENODEV;
484
Taniya Dase3027e22012-02-27 16:32:27 +0530485 if (machine_is_msm7x27a_surf() || machine_is_msm7625a_surf() ||
486 machine_is_msm8625_surf()) {
Chintan Pandya250c2e52012-01-19 17:15:49 +0530487 if (!strncmp(name, "lcdc_toshiba_fwvga_pt", 21) ||
488 !strncmp(name, "mipi_cmd_renesas_fwvga", 22))
489 ret = 0;
Aparna Mallavarapu9f000a72012-04-20 15:37:57 +0530490 } else if (machine_is_msm7x27a_ffa() || machine_is_msm7625a_ffa()
491 || machine_is_msm8625_ffa()) {
Chintan Pandya250c2e52012-01-19 17:15:49 +0530492 if (!strncmp(name, "mipi_cmd_renesas_fwvga", 22))
493 ret = 0;
494 } else if (machine_is_msm7627a_qrd1()) {
495 if (!strncmp(name, "mipi_video_truly_wvga", 21))
496 ret = 0;
Jeevan Shriram045cdc72012-03-27 07:04:15 +0530497 } else if (machine_is_msm7627a_qrd3() || machine_is_msm8625_qrd7()) {
Jeevan Shriram901a15f2012-03-09 11:53:23 +0530498 if (!strncmp(name, "lcdc_truly_hvga_ips3p2335_pt", 28))
499 ret = 0;
Jeevan Shriram66c3c2d2012-06-12 17:46:53 +0530500 } else if (machine_is_msm7627a_evb() || machine_is_msm8625_evb() ||
501 machine_is_msm8625_evt()) {
Jeevan Shrirame941df42012-01-23 12:40:21 +0530502 if (!strncmp(name, "mipi_cmd_nt35510_wvga", 21))
503 ret = 0;
Chintan Pandya250c2e52012-01-19 17:15:49 +0530504 }
505
506#if !defined(CONFIG_FB_MSM_LCDC_AUTO_DETECT) && \
507 !defined(CONFIG_FB_MSM_MIPI_PANEL_AUTO_DETECT) && \
508 !defined(CONFIG_FB_MSM_LCDC_MIPI_PANEL_AUTO_DETECT)
509 if (machine_is_msm7x27a_surf() ||
Taniya Dase3027e22012-02-27 16:32:27 +0530510 machine_is_msm7625a_surf() ||
511 machine_is_msm8625_surf()) {
Chintan Pandya250c2e52012-01-19 17:15:49 +0530512 if (!strncmp(name, LCDC_TOSHIBA_FWVGA_PANEL_NAME,
513 strnlen(LCDC_TOSHIBA_FWVGA_PANEL_NAME,
514 PANEL_NAME_MAX_LEN)))
515 return 0;
516 }
517#endif
518
519 return ret;
520}
521
522static int mipi_truly_set_bl(int on)
523{
524 gpio_set_value_cansleep(QRD_GPIO_BACKLIGHT_EN, !!on);
525
526 return 1;
527}
528
529static struct msm_fb_platform_data msm_fb_pdata = {
530 .detect_client = msm_fb_detect_panel,
531};
532
533static struct platform_device msm_fb_device = {
534 .name = "msm_fb",
535 .id = 0,
536 .num_resources = ARRAY_SIZE(msm_fb_resources),
537 .resource = msm_fb_resources,
538 .dev = {
539 .platform_data = &msm_fb_pdata,
540 }
541};
542
Alhad Purnapatrec55856c2012-02-28 13:24:57 -0800543#ifdef CONFIG_MSM_V4L2_VIDEO_OVERLAY_DEVICE
544static struct platform_device msm_v4l2_video_overlay_device = {
545 .name = "msm_v4l2_overlay_pd",
546 .id = 0,
547 .num_resources = ARRAY_SIZE(msm_v4l2_video_overlay_resources),
548 .resource = msm_v4l2_video_overlay_resources,
549 };
550#endif
551
552
Chintan Pandya250c2e52012-01-19 17:15:49 +0530553#ifdef CONFIG_FB_MSM_MIPI_DSI
554static int mipi_renesas_set_bl(int level)
555{
556 int ret;
557
558 ret = pmapp_disp_backlight_set_brightness(level);
559
560 if (ret)
561 pr_err("%s: can't set lcd backlight!\n", __func__);
562
563 return ret;
564}
565
566static struct msm_panel_common_pdata mipi_renesas_pdata = {
567 .pmic_backlight = mipi_renesas_set_bl,
568};
569
570
571static struct platform_device mipi_dsi_renesas_panel_device = {
572 .name = "mipi_renesas",
573 .id = 0,
574 .dev = {
575 .platform_data = &mipi_renesas_pdata,
576 }
577};
578#endif
579
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530580static int evb_backlight_control(int level, int mode)
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +0530581{
582
583 int i = 0;
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530584 int remainder, ret = 0;
585
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +0530586 /* device address byte = 0x72 */
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530587 if (!mode) {
588 gpio_set_value(96, 0);
589 udelay(67);
590 gpio_set_value(96, 1);
591 udelay(33);
592 gpio_set_value(96, 0);
593 udelay(33);
594 gpio_set_value(96, 1);
595 udelay(67);
596 gpio_set_value(96, 0);
597 udelay(33);
598 gpio_set_value(96, 1);
599 udelay(67);
600 gpio_set_value(96, 0);
601 udelay(33);
602 gpio_set_value(96, 1);
603 udelay(67);
604 gpio_set_value(96, 0);
605 udelay(67);
606 gpio_set_value(96, 1);
607 udelay(33);
608 gpio_set_value(96, 0);
609 udelay(67);
610 gpio_set_value(96, 1);
611 udelay(33);
612 gpio_set_value(96, 0);
613 udelay(33);
614 gpio_set_value(96, 1);
615 udelay(67);
616 gpio_set_value(96, 0);
617 udelay(67);
618 gpio_set_value(96, 1);
619 udelay(33);
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +0530620
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530621 /* t-EOS and t-start */
622 gpio_set_value(96, 0);
623 ndelay(4200);
624 gpio_set_value(96, 1);
625 ndelay(9000);
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +0530626
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530627 /* data byte */
628 /* RFA = 0 */
629 gpio_set_value(96, 0);
630 udelay(67);
631 gpio_set_value(96, 1);
632 udelay(33);
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +0530633
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530634 /* Address bits */
635 gpio_set_value(96, 0);
636 udelay(67);
637 gpio_set_value(96, 1);
638 udelay(33);
639 gpio_set_value(96, 0);
640 udelay(67);
641 gpio_set_value(96, 1);
642 udelay(33);
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +0530643
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530644 /* Data bits */
645 for (i = 0; i < 5; i++) {
646 remainder = (level) & (16);
647 if (remainder) {
648 gpio_set_value(96, 0);
649 udelay(33);
650 gpio_set_value(96, 1);
651 udelay(67);
652 } else {
653 gpio_set_value(96, 0);
654 udelay(67);
655 gpio_set_value(96, 1);
656 udelay(33);
657 }
658 level = level << 1;
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +0530659 }
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530660
661 /* t-EOS */
662 gpio_set_value(96, 0);
663 ndelay(12000);
664 gpio_set_value(96, 1);
665 } else {
666 ret = pmapp_disp_backlight_set_brightness(level);
667 if (ret)
668 pr_err("%s: can't set lcd backlight!\n", __func__);
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +0530669 }
670
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530671 return ret;
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +0530672}
673
Jeevan Shriram8f7c96d2012-05-15 12:42:57 +0530674static int mipi_NT35510_rotate_panel(void)
675{
676 int rotate = 0;
677 if (machine_is_msm8625_evt())
678 rotate = 1;
679
680 return rotate;
681}
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +0530682
Chintan Pandya250c2e52012-01-19 17:15:49 +0530683static struct msm_panel_common_pdata mipi_truly_pdata = {
684 .pmic_backlight = mipi_truly_set_bl,
685};
686
687static struct platform_device mipi_dsi_truly_panel_device = {
688 .name = "mipi_truly",
689 .id = 0,
690 .dev = {
691 .platform_data = &mipi_truly_pdata,
692 }
693};
694
Jeevan Shrirame941df42012-01-23 12:40:21 +0530695static struct msm_panel_common_pdata mipi_NT35510_pdata = {
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530696 .backlight = evb_backlight_control,
Jeevan Shriram8f7c96d2012-05-15 12:42:57 +0530697 .rotate_panel = mipi_NT35510_rotate_panel,
Jeevan Shrirame941df42012-01-23 12:40:21 +0530698};
699
700static struct platform_device mipi_dsi_NT35510_panel_device = {
701 .name = "mipi_NT35510",
702 .id = 0,
703 .dev = {
704 .platform_data = &mipi_NT35510_pdata,
705 }
706};
707
Pradeep Jilagam1b0a5df2012-02-23 08:00:24 +0530708static struct msm_panel_common_pdata mipi_NT35516_pdata = {
Padmanabhan Komandurucc913992012-05-09 14:57:28 +0530709 .backlight = evb_backlight_control,
Pradeep Jilagam1b0a5df2012-02-23 08:00:24 +0530710};
711
712static struct platform_device mipi_dsi_NT35516_panel_device = {
713 .name = "mipi_truly_tft540960_1_e",
714 .id = 0,
715 .dev = {
716 .platform_data = &mipi_NT35516_pdata,
717 }
718};
719
Chintan Pandya250c2e52012-01-19 17:15:49 +0530720static struct platform_device *msm_fb_devices[] __initdata = {
721 &msm_fb_device,
722 &lcdc_toshiba_panel_device,
723#ifdef CONFIG_FB_MSM_MIPI_DSI
724 &mipi_dsi_renesas_panel_device,
725#endif
Alhad Purnapatrec55856c2012-02-28 13:24:57 -0800726#ifdef CONFIG_MSM_V4L2_VIDEO_OVERLAY_DEVICE
727 &msm_v4l2_video_overlay_device,
728#endif
Chintan Pandya250c2e52012-01-19 17:15:49 +0530729};
730
731static struct platform_device *qrd_fb_devices[] __initdata = {
732 &msm_fb_device,
733 &mipi_dsi_truly_panel_device,
734};
735
Jeevan Shriram901a15f2012-03-09 11:53:23 +0530736static struct platform_device *qrd3_fb_devices[] __initdata = {
737 &msm_fb_device,
738 &lcdc_truly_panel_device,
739};
740
Taniya Dasc868a2e2012-01-03 10:18:47 +0530741static struct platform_device *evb_fb_devices[] __initdata = {
Jeevan Shrirame941df42012-01-23 12:40:21 +0530742 &msm_fb_device,
743 &mipi_dsi_NT35510_panel_device,
Pradeep Jilagam1b0a5df2012-02-23 08:00:24 +0530744 &mipi_dsi_NT35516_panel_device,
Taniya Dasc868a2e2012-01-03 10:18:47 +0530745};
746
Chintan Pandya250c2e52012-01-19 17:15:49 +0530747void __init msm_msm7627a_allocate_memory_regions(void)
748{
749 void *addr;
750 unsigned long fb_size;
751
752 if (machine_is_msm7625a_surf() || machine_is_msm7625a_ffa())
753 fb_size = MSM7x25A_MSM_FB_SIZE;
Aparna Mallavarapu5a326242012-05-09 19:49:02 +0530754 else if (machine_is_msm7627a_evb() || machine_is_msm8625_evb()
755 || machine_is_msm8625_evt())
Jeevan Shriram8c23e072012-03-14 11:35:49 +0530756 fb_size = MSM8x25_MSM_FB_SIZE;
Chintan Pandya250c2e52012-01-19 17:15:49 +0530757 else
758 fb_size = MSM_FB_SIZE;
Jeevan Shriram8c23e072012-03-14 11:35:49 +0530759
Chintan Pandya250c2e52012-01-19 17:15:49 +0530760 addr = alloc_bootmem_align(fb_size, 0x1000);
761 msm_fb_resources[0].start = __pa(addr);
762 msm_fb_resources[0].end = msm_fb_resources[0].start + fb_size - 1;
763 pr_info("allocating %lu bytes at %p (%lx physical) for fb\n", fb_size,
764 addr, __pa(addr));
Alhad Purnapatrec55856c2012-02-28 13:24:57 -0800765
766#ifdef CONFIG_MSM_V4L2_VIDEO_OVERLAY_DEVICE
767 fb_size = MSM_V4L2_VIDEO_OVERLAY_BUF_SIZE;
768 addr = alloc_bootmem_align(fb_size, 0x1000);
769 msm_v4l2_video_overlay_resources[0].start = __pa(addr);
770 msm_v4l2_video_overlay_resources[0].end =
771 msm_v4l2_video_overlay_resources[0].start + fb_size - 1;
772 pr_debug("allocating %lu bytes at %p (%lx physical) for v4l2\n",
773 fb_size, addr, __pa(addr));
774#endif
775
Chintan Pandya250c2e52012-01-19 17:15:49 +0530776}
777
778static struct msm_panel_common_pdata mdp_pdata = {
779 .gpio = 97,
780 .mdp_rev = MDP_REV_303,
781};
782
783#define GPIO_LCDC_BRDG_PD 128
784#define GPIO_LCDC_BRDG_RESET_N 129
785#define GPIO_LCD_DSI_SEL 125
786#define LCDC_RESET_PHYS 0x90008014
787
788static void __iomem *lcdc_reset_ptr;
789
790static unsigned mipi_dsi_gpio[] = {
791 GPIO_CFG(GPIO_LCDC_BRDG_RESET_N, 0, GPIO_CFG_OUTPUT,
792 GPIO_CFG_NO_PULL, GPIO_CFG_2MA), /* LCDC_BRDG_RESET_N */
793 GPIO_CFG(GPIO_LCDC_BRDG_PD, 0, GPIO_CFG_OUTPUT,
794 GPIO_CFG_NO_PULL, GPIO_CFG_2MA), /* LCDC_BRDG_PD */
795};
796
797static unsigned lcd_dsi_sel_gpio[] = {
798 GPIO_CFG(GPIO_LCD_DSI_SEL, 0, GPIO_CFG_OUTPUT, GPIO_CFG_PULL_UP,
799 GPIO_CFG_2MA),
800};
801
802enum {
803 DSI_SINGLE_LANE = 1,
804 DSI_TWO_LANES,
805};
806
807static int msm_fb_get_lane_config(void)
808{
809 /* For MSM7627A SURF/FFA and QRD */
810 int rc = DSI_TWO_LANES;
811 if (machine_is_msm7625a_surf() || machine_is_msm7625a_ffa()) {
812 rc = DSI_SINGLE_LANE;
813 pr_info("DSI_SINGLE_LANES\n");
814 } else {
815 pr_info("DSI_TWO_LANES\n");
816 }
817 return rc;
818}
819
820static int msm_fb_dsi_client_msm_reset(void)
821{
822 int rc = 0;
823
824 rc = gpio_request(GPIO_LCDC_BRDG_RESET_N, "lcdc_brdg_reset_n");
825 if (rc < 0) {
826 pr_err("failed to request lcd brdg reset_n\n");
827 return rc;
828 }
829
830 rc = gpio_request(GPIO_LCDC_BRDG_PD, "lcdc_brdg_pd");
831 if (rc < 0) {
832 pr_err("failed to request lcd brdg pd\n");
833 return rc;
834 }
835
836 rc = gpio_tlmm_config(mipi_dsi_gpio[0], GPIO_CFG_ENABLE);
837 if (rc) {
838 pr_err("Failed to enable LCDC Bridge reset enable\n");
839 goto gpio_error;
840 }
841
842 rc = gpio_tlmm_config(mipi_dsi_gpio[1], GPIO_CFG_ENABLE);
843 if (rc) {
844 pr_err("Failed to enable LCDC Bridge pd enable\n");
845 goto gpio_error2;
846 }
847
848 rc = gpio_direction_output(GPIO_LCDC_BRDG_RESET_N, 1);
849 rc |= gpio_direction_output(GPIO_LCDC_BRDG_PD, 1);
850 gpio_set_value_cansleep(GPIO_LCDC_BRDG_PD, 0);
851
852 if (!rc) {
Taniya Dase3027e22012-02-27 16:32:27 +0530853 if (machine_is_msm7x27a_surf() || machine_is_msm7625a_surf()
854 || machine_is_msm8625_surf()) {
Chintan Pandya250c2e52012-01-19 17:15:49 +0530855 lcdc_reset_ptr = ioremap_nocache(LCDC_RESET_PHYS,
856 sizeof(uint32_t));
857
858 if (!lcdc_reset_ptr)
859 return 0;
860 }
861 return rc;
862 } else {
863 goto gpio_error;
864 }
865
866gpio_error2:
867 pr_err("Failed GPIO bridge pd\n");
868 gpio_free(GPIO_LCDC_BRDG_PD);
869
870gpio_error:
871 pr_err("Failed GPIO bridge reset\n");
872 gpio_free(GPIO_LCDC_BRDG_RESET_N);
873 return rc;
874}
875
876static int mipi_truly_sel_mode(int video_mode)
877{
878 int rc = 0;
879
880 rc = gpio_request(GPIO_LCD_DSI_SEL, "lcd_dsi_sel");
881 if (rc < 0)
882 goto gpio_error;
883
884 rc = gpio_tlmm_config(lcd_dsi_sel_gpio[0], GPIO_CFG_ENABLE);
885 if (rc)
886 goto gpio_error;
887
888 rc = gpio_direction_output(GPIO_LCD_DSI_SEL, 1);
889 if (!rc) {
890 gpio_set_value_cansleep(GPIO_LCD_DSI_SEL, video_mode);
891 return rc;
892 } else {
893 goto gpio_error;
894 }
895
896gpio_error:
897 pr_err("mipi_truly_sel_mode failed\n");
898 gpio_free(GPIO_LCD_DSI_SEL);
899 return rc;
900}
901
902static int msm_fb_dsi_client_qrd1_reset(void)
903{
904 int rc = 0;
905
906 rc = gpio_request(GPIO_LCDC_BRDG_RESET_N, "lcdc_brdg_reset_n");
907 if (rc < 0) {
908 pr_err("failed to request lcd brdg reset_n\n");
909 return rc;
910 }
911
912 rc = gpio_tlmm_config(mipi_dsi_gpio[0], GPIO_CFG_ENABLE);
913 if (rc < 0) {
914 pr_err("Failed to enable LCDC Bridge reset enable\n");
915 return rc;
916 }
917
918 rc = gpio_direction_output(GPIO_LCDC_BRDG_RESET_N, 1);
919 if (rc < 0) {
920 pr_err("Failed GPIO bridge pd\n");
921 gpio_free(GPIO_LCDC_BRDG_RESET_N);
922 return rc;
923 }
924
925 mipi_truly_sel_mode(1);
926
927 return rc;
928}
929
Jeevan Shrirame941df42012-01-23 12:40:21 +0530930#define GPIO_QRD3_LCD_BRDG_RESET_N 85
931#define GPIO_QRD3_LCD_BACKLIGHT_EN 96
932#define GPIO_QRD3_LCD_EXT_2V85_EN 35
933#define GPIO_QRD3_LCD_EXT_1V8_EN 40
934
935static unsigned qrd3_mipi_dsi_gpio[] = {
936 GPIO_CFG(GPIO_QRD3_LCD_BRDG_RESET_N, 0, GPIO_CFG_OUTPUT,
937 GPIO_CFG_NO_PULL,
938 GPIO_CFG_2MA), /* GPIO_QRD3_LCD_BRDG_RESET_N */
939 GPIO_CFG(GPIO_QRD3_LCD_BACKLIGHT_EN, 0, GPIO_CFG_OUTPUT,
940 GPIO_CFG_NO_PULL,
941 GPIO_CFG_2MA), /* GPIO_QRD3_LCD_BACKLIGHT_EN */
942 GPIO_CFG(GPIO_QRD3_LCD_EXT_2V85_EN, 0, GPIO_CFG_OUTPUT,
943 GPIO_CFG_NO_PULL,
944 GPIO_CFG_2MA), /* GPIO_QRD3_LCD_EXT_2V85_EN */
945 GPIO_CFG(GPIO_QRD3_LCD_EXT_1V8_EN, 0, GPIO_CFG_OUTPUT,
946 GPIO_CFG_NO_PULL,
947 GPIO_CFG_2MA), /* GPIO_QRD3_LCD_EXT_1V8_EN */
948};
949
950static int msm_fb_dsi_client_qrd3_reset(void)
951{
952 int rc = 0;
953
954 rc = gpio_request(GPIO_QRD3_LCD_BRDG_RESET_N, "qrd3_lcd_brdg_reset_n");
955 if (rc < 0) {
956 pr_err("failed to request qrd3 lcd brdg reset_n\n");
957 return rc;
958 }
959
Jeevan Shrirame941df42012-01-23 12:40:21 +0530960 return rc;
961}
962
Chintan Pandya250c2e52012-01-19 17:15:49 +0530963static int msm_fb_dsi_client_reset(void)
964{
965 int rc = 0;
966
967 if (machine_is_msm7627a_qrd1())
968 rc = msm_fb_dsi_client_qrd1_reset();
Aparna Mallavarapu5a326242012-05-09 19:49:02 +0530969 else if (machine_is_msm7627a_evb() || machine_is_msm8625_evb()
970 || machine_is_msm8625_evt())
Jeevan Shrirame941df42012-01-23 12:40:21 +0530971 rc = msm_fb_dsi_client_qrd3_reset();
Chintan Pandya250c2e52012-01-19 17:15:49 +0530972 else
973 rc = msm_fb_dsi_client_msm_reset();
974
975 return rc;
976
977}
978
979static struct regulator_bulk_data regs_dsi[] = {
980 { .supply = "gp2", .min_uV = 2850000, .max_uV = 2850000 },
981 { .supply = "msme1", .min_uV = 1800000, .max_uV = 1800000 },
982};
983
984static int dsi_gpio_initialized;
985
986static int mipi_dsi_panel_msm_power(int on)
987{
988 int rc = 0;
989 uint32_t lcdc_reset_cfg;
990
991 /* I2C-controlled GPIO Expander -init of the GPIOs very late */
992 if (unlikely(!dsi_gpio_initialized)) {
993 pmapp_disp_backlight_init();
994
995 rc = gpio_request(GPIO_DISPLAY_PWR_EN, "gpio_disp_pwr");
996 if (rc < 0) {
997 pr_err("failed to request gpio_disp_pwr\n");
998 return rc;
999 }
1000
Taniya Dase3027e22012-02-27 16:32:27 +05301001 if (machine_is_msm7x27a_surf() || machine_is_msm7625a_surf()
1002 || machine_is_msm8625_surf()) {
Chintan Pandya250c2e52012-01-19 17:15:49 +05301003 rc = gpio_direction_output(GPIO_DISPLAY_PWR_EN, 1);
1004 if (rc < 0) {
1005 pr_err("failed to enable display pwr\n");
1006 goto fail_gpio1;
1007 }
1008
1009 rc = gpio_request(GPIO_BACKLIGHT_EN, "gpio_bkl_en");
1010 if (rc < 0) {
1011 pr_err("failed to request gpio_bkl_en\n");
1012 goto fail_gpio1;
1013 }
1014
1015 rc = gpio_direction_output(GPIO_BACKLIGHT_EN, 1);
1016 if (rc < 0) {
1017 pr_err("failed to enable backlight\n");
1018 goto fail_gpio2;
1019 }
1020 }
1021
1022 rc = regulator_bulk_get(NULL, ARRAY_SIZE(regs_dsi), regs_dsi);
1023 if (rc) {
1024 pr_err("%s: could not get regulators: %d\n",
1025 __func__, rc);
1026 goto fail_gpio2;
1027 }
1028
1029 rc = regulator_bulk_set_voltage(ARRAY_SIZE(regs_dsi),
1030 regs_dsi);
1031 if (rc) {
1032 pr_err("%s: could not set voltages: %d\n",
1033 __func__, rc);
1034 goto fail_vreg;
1035 }
1036 if (pmapp_disp_backlight_set_brightness(100))
1037 pr_err("backlight set brightness failed\n");
1038
1039 dsi_gpio_initialized = 1;
1040 }
Taniya Dase3027e22012-02-27 16:32:27 +05301041 if (machine_is_msm7x27a_surf() || machine_is_msm7625a_surf() ||
1042 machine_is_msm8625_surf()) {
Chintan Pandya250c2e52012-01-19 17:15:49 +05301043 gpio_set_value_cansleep(GPIO_DISPLAY_PWR_EN, on);
1044 gpio_set_value_cansleep(GPIO_BACKLIGHT_EN, on);
Aparna Mallavarapu9f000a72012-04-20 15:37:57 +05301045 } else if (machine_is_msm7x27a_ffa() || machine_is_msm7625a_ffa()
1046 || machine_is_msm8625_ffa()) {
Chintan Pandya250c2e52012-01-19 17:15:49 +05301047 if (on) {
1048 /* This line drives an active low pin on FFA */
1049 rc = gpio_direction_output(GPIO_DISPLAY_PWR_EN, !on);
1050 if (rc < 0)
1051 pr_err("failed to set direction for "
1052 "display pwr\n");
1053 } else {
1054 gpio_set_value_cansleep(GPIO_DISPLAY_PWR_EN, !on);
1055 rc = gpio_direction_input(GPIO_DISPLAY_PWR_EN);
1056 if (rc < 0)
1057 pr_err("failed to set direction for "
1058 "display pwr\n");
1059 }
1060 }
1061
1062 if (on) {
1063 gpio_set_value_cansleep(GPIO_LCDC_BRDG_PD, 0);
1064
1065 if (machine_is_msm7x27a_surf() ||
Taniya Dase3027e22012-02-27 16:32:27 +05301066 machine_is_msm7625a_surf() ||
1067 machine_is_msm8625_surf()) {
Chintan Pandya250c2e52012-01-19 17:15:49 +05301068 lcdc_reset_cfg = readl_relaxed(lcdc_reset_ptr);
1069 rmb();
1070 lcdc_reset_cfg &= ~1;
1071
1072 writel_relaxed(lcdc_reset_cfg, lcdc_reset_ptr);
1073 msleep(20);
1074 wmb();
1075 lcdc_reset_cfg |= 1;
1076 writel_relaxed(lcdc_reset_cfg, lcdc_reset_ptr);
1077 } else {
1078 gpio_set_value_cansleep(GPIO_LCDC_BRDG_RESET_N, 0);
1079 msleep(20);
1080 gpio_set_value_cansleep(GPIO_LCDC_BRDG_RESET_N, 1);
1081 }
1082 } else {
1083 gpio_set_value_cansleep(GPIO_LCDC_BRDG_PD, 1);
Chintan Pandya250c2e52012-01-19 17:15:49 +05301084 }
1085
1086 rc = on ? regulator_bulk_enable(ARRAY_SIZE(regs_dsi), regs_dsi) :
1087 regulator_bulk_disable(ARRAY_SIZE(regs_dsi), regs_dsi);
1088
1089 if (rc)
1090 pr_err("%s: could not %sable regulators: %d\n",
1091 __func__, on ? "en" : "dis", rc);
1092
1093 return rc;
1094fail_vreg:
1095 regulator_bulk_free(ARRAY_SIZE(regs_dsi), regs_dsi);
1096fail_gpio2:
1097 gpio_free(GPIO_BACKLIGHT_EN);
1098fail_gpio1:
1099 gpio_free(GPIO_DISPLAY_PWR_EN);
1100 dsi_gpio_initialized = 0;
1101 return rc;
1102}
1103
1104static int mipi_dsi_panel_qrd1_power(int on)
1105{
1106 int rc = 0;
1107
1108 if (!dsi_gpio_initialized) {
1109 rc = gpio_request(QRD_GPIO_BACKLIGHT_EN, "gpio_bkl_en");
1110 if (rc < 0)
1111 return rc;
1112
1113 rc = gpio_tlmm_config(GPIO_CFG(QRD_GPIO_BACKLIGHT_EN, 0,
1114 GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL, GPIO_CFG_2MA),
1115 GPIO_CFG_ENABLE);
1116 if (rc < 0) {
1117 pr_err("failed GPIO_BACKLIGHT_EN tlmm config\n");
1118 return rc;
1119 }
1120
1121 rc = gpio_direction_output(QRD_GPIO_BACKLIGHT_EN, 1);
1122 if (rc < 0) {
1123 pr_err("failed to enable backlight\n");
1124 gpio_free(QRD_GPIO_BACKLIGHT_EN);
1125 return rc;
1126 }
1127 dsi_gpio_initialized = 1;
1128 }
1129
1130 gpio_set_value_cansleep(QRD_GPIO_BACKLIGHT_EN, !!on);
1131
Jeevan Shrirame941df42012-01-23 12:40:21 +05301132 if (on) {
Chintan Pandya250c2e52012-01-19 17:15:49 +05301133 gpio_set_value_cansleep(GPIO_LCDC_BRDG_RESET_N, 1);
1134 msleep(20);
1135 gpio_set_value_cansleep(GPIO_LCDC_BRDG_RESET_N, 0);
1136 msleep(20);
1137 gpio_set_value_cansleep(GPIO_LCDC_BRDG_RESET_N, 1);
1138
1139 }
1140
1141 return rc;
1142}
1143
Jeevan Shrirame941df42012-01-23 12:40:21 +05301144static int qrd3_dsi_gpio_initialized;
1145
1146static int mipi_dsi_panel_qrd3_power(int on)
1147{
1148 int rc = 0;
Jeevan Shriram4461a112012-06-01 22:08:47 +05301149 static struct regulator *gpio_reg_2p85v, *gpio_reg_1p8v;
Jeevan Shrirame941df42012-01-23 12:40:21 +05301150
1151 if (!qrd3_dsi_gpio_initialized) {
Padmanabhan Komandurucc913992012-05-09 14:57:28 +05301152 pmapp_disp_backlight_init();
Jeevan Shrirame941df42012-01-23 12:40:21 +05301153 rc = gpio_request(GPIO_QRD3_LCD_BACKLIGHT_EN,
1154 "qrd3_gpio_bkl_en");
1155 if (rc < 0)
1156 return rc;
1157
Jeevan Shriram4461a112012-06-01 22:08:47 +05301158 gpio_reg_2p85v = regulator_get(&msm8625_mipi_dsi_device.dev,
1159 "lcd_vdd");
1160 if (IS_ERR(gpio_reg_2p85v)) {
1161 pr_err("%s:ext_2p85v regulator get failed", __func__);
1162 return -EINVAL;
Jeevan Shrirame941df42012-01-23 12:40:21 +05301163 }
1164
Jeevan Shriram4461a112012-06-01 22:08:47 +05301165 gpio_reg_1p8v = regulator_get(&msm8625_mipi_dsi_device.dev,
1166 "lcd_vddi");
1167 if (IS_ERR(gpio_reg_1p8v)) {
1168 pr_err("%s:ext_1p8v regulator get failed", __func__);
1169 return -EINVAL;
Jeevan Shrirame941df42012-01-23 12:40:21 +05301170 }
1171
Jeevan Shriram4461a112012-06-01 22:08:47 +05301172 qrd3_dsi_gpio_initialized = 1;
Jeevan Shrirame941df42012-01-23 12:40:21 +05301173 }
1174
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +05301175 if (on) {
Padmanabhan Komanduru6dadd872012-04-12 12:20:12 +05301176 rc = gpio_tlmm_config(GPIO_CFG(GPIO_QRD3_LCD_BACKLIGHT_EN, 0,
1177 GPIO_CFG_OUTPUT, GPIO_CFG_PULL_UP, GPIO_CFG_2MA),
1178 GPIO_CFG_ENABLE);
1179 if (rc < 0) {
1180 pr_err("failed QRD3 GPIO_BACKLIGHT_EN tlmm config\n");
1181 return rc;
1182 }
1183 rc = gpio_direction_output(GPIO_QRD3_LCD_BACKLIGHT_EN, 1);
1184 if (rc < 0) {
1185 pr_err("failed to enable backlight\n");
1186 gpio_free(GPIO_QRD3_LCD_BACKLIGHT_EN);
1187 return rc;
1188 }
Jeevan Shriram4461a112012-06-01 22:08:47 +05301189 /*Toggle Backlight GPIO*/
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +05301190 gpio_set_value_cansleep(GPIO_QRD3_LCD_BACKLIGHT_EN, 1);
1191 udelay(190);
1192 gpio_set_value_cansleep(GPIO_QRD3_LCD_BACKLIGHT_EN, 0);
1193 udelay(286);
1194 gpio_set_value_cansleep(GPIO_QRD3_LCD_BACKLIGHT_EN, 1);
1195 /* 1 wire mode starts from this low to high transition */
1196 udelay(50);
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +05301197
Jeevan Shriram4461a112012-06-01 22:08:47 +05301198 /*Enable EXT_2.85 and 1.8 regulators*/
1199 rc = regulator_enable(gpio_reg_2p85v);
1200 if (rc < 0)
1201 pr_err("%s: reg enable failed\n", __func__);
1202 rc = regulator_enable(gpio_reg_1p8v);
1203 if (rc < 0)
1204 pr_err("%s: reg enable failed\n", __func__);
Jeevan Shrirame941df42012-01-23 12:40:21 +05301205
Jeevan Shriram4461a112012-06-01 22:08:47 +05301206 /*Configure LCD Bridge reset*/
Padmanabhan Komanduru599d3552012-02-21 16:53:05 +05301207 rc = gpio_tlmm_config(qrd3_mipi_dsi_gpio[0], GPIO_CFG_ENABLE);
Padmanabhan Komanduru599d3552012-02-21 16:53:05 +05301208 if (rc < 0) {
1209 pr_err("Failed to enable LCD Bridge reset enable\n");
1210 return rc;
1211 }
1212
1213 rc = gpio_direction_output(GPIO_QRD3_LCD_BRDG_RESET_N, 1);
1214
1215 if (rc < 0) {
1216 pr_err("Failed GPIO bridge Reset\n");
1217 gpio_free(GPIO_QRD3_LCD_BRDG_RESET_N);
1218 return rc;
1219 }
1220
Jeevan Shriram4461a112012-06-01 22:08:47 +05301221 /*Toggle Bridge Reset GPIO*/
Jeevan Shrirame941df42012-01-23 12:40:21 +05301222 msleep(20);
1223 gpio_set_value_cansleep(GPIO_QRD3_LCD_BRDG_RESET_N, 0);
1224 msleep(20);
1225 gpio_set_value_cansleep(GPIO_QRD3_LCD_BRDG_RESET_N, 1);
1226 msleep(20);
Jeevan Shriram4461a112012-06-01 22:08:47 +05301227
Padmanabhan Komanduru599d3552012-02-21 16:53:05 +05301228 } else {
Jeevan Shriram4461a112012-06-01 22:08:47 +05301229 gpio_tlmm_config(GPIO_CFG(GPIO_QRD3_LCD_BACKLIGHT_EN, 0,
1230 GPIO_CFG_INPUT, GPIO_CFG_PULL_DOWN, GPIO_CFG_2MA),
1231 GPIO_CFG_DISABLE);
1232
Padmanabhan Komanduru599d3552012-02-21 16:53:05 +05301233 gpio_tlmm_config(GPIO_CFG(GPIO_QRD3_LCD_BRDG_RESET_N, 0,
1234 GPIO_CFG_INPUT, GPIO_CFG_NO_PULL, GPIO_CFG_2MA),
1235 GPIO_CFG_DISABLE);
Jeevan Shriram4461a112012-06-01 22:08:47 +05301236
1237 rc = regulator_disable(gpio_reg_2p85v);
1238 if (rc < 0)
1239 pr_err("%s: reg disable failed\n", __func__);
1240 rc = regulator_disable(gpio_reg_1p8v);
1241 if (rc < 0)
1242 pr_err("%s: reg disable failed\n", __func__);
1243
Jeevan Shrirame941df42012-01-23 12:40:21 +05301244 }
1245
Jeevan Shriram4461a112012-06-01 22:08:47 +05301246 return rc;
Jeevan Shrirame941df42012-01-23 12:40:21 +05301247}
1248
Chintan Pandya250c2e52012-01-19 17:15:49 +05301249static int mipi_dsi_panel_power(int on)
1250{
1251 int rc = 0;
1252
1253 if (machine_is_msm7627a_qrd1())
1254 rc = mipi_dsi_panel_qrd1_power(on);
Aparna Mallavarapu5a326242012-05-09 19:49:02 +05301255 else if (machine_is_msm7627a_evb() || machine_is_msm8625_evb()
1256 || machine_is_msm8625_evt())
Jeevan Shrirame941df42012-01-23 12:40:21 +05301257 rc = mipi_dsi_panel_qrd3_power(on);
Chintan Pandya250c2e52012-01-19 17:15:49 +05301258 else
1259 rc = mipi_dsi_panel_msm_power(on);
1260 return rc;
1261}
1262
1263#define MDP_303_VSYNC_GPIO 97
1264
Jeevan Shriram901a15f2012-03-09 11:53:23 +05301265#ifdef CONFIG_FB_MSM_MIPI_DSI
Chintan Pandya250c2e52012-01-19 17:15:49 +05301266static struct mipi_dsi_platform_data mipi_dsi_pdata = {
1267 .vsync_gpio = MDP_303_VSYNC_GPIO,
1268 .dsi_power_save = mipi_dsi_panel_power,
1269 .dsi_client_reset = msm_fb_dsi_client_reset,
1270 .get_lane_config = msm_fb_get_lane_config,
1271};
1272#endif
1273
Padmanabhan Komanduru92f9a722012-04-04 19:28:02 +05301274static char prim_panel_name[PANEL_NAME_MAX_LEN];
1275static int __init prim_display_setup(char *param)
1276{
1277 if (strnlen(param, PANEL_NAME_MAX_LEN))
1278 strlcpy(prim_panel_name, param, PANEL_NAME_MAX_LEN);
1279 return 0;
1280}
1281early_param("prim_display", prim_display_setup);
1282
1283void msm7x27a_set_display_params(char *prim_panel)
1284{
1285 if (strnlen(prim_panel, PANEL_NAME_MAX_LEN)) {
1286 strlcpy(msm_fb_pdata.prim_panel_name, prim_panel,
1287 PANEL_NAME_MAX_LEN);
1288 pr_debug("msm_fb_pdata.prim_panel_name %s\n",
1289 msm_fb_pdata.prim_panel_name);
1290 }
1291}
1292
Chintan Pandya250c2e52012-01-19 17:15:49 +05301293void __init msm_fb_add_devices(void)
1294{
Padmanabhan Komanduru92f9a722012-04-04 19:28:02 +05301295 msm7x27a_set_display_params(prim_panel_name);
Chintan Pandya250c2e52012-01-19 17:15:49 +05301296 if (machine_is_msm7627a_qrd1())
1297 platform_add_devices(qrd_fb_devices,
1298 ARRAY_SIZE(qrd_fb_devices));
Aparna Mallavarapu5a326242012-05-09 19:49:02 +05301299 else if (machine_is_msm7627a_evb() || machine_is_msm8625_evb()
1300 || machine_is_msm8625_evt()) {
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +05301301 mipi_NT35510_pdata.bl_lock = 1;
Padmanabhan Komanduru0f0000a2012-04-12 10:23:02 +05301302 mipi_NT35516_pdata.bl_lock = 1;
Taniya Dasc868a2e2012-01-03 10:18:47 +05301303 platform_add_devices(evb_fb_devices,
1304 ARRAY_SIZE(evb_fb_devices));
Padmanabhan Komandurubea9c062012-04-09 10:33:48 +05301305 } else if (machine_is_msm7627a_qrd3() || machine_is_msm8625_qrd7()) {
Jeevan Shriram901a15f2012-03-09 11:53:23 +05301306 sku3_lcdc_lcd_camera_power_init();
1307 platform_add_devices(qrd3_fb_devices,
1308 ARRAY_SIZE(qrd3_fb_devices));
1309 } else
Chintan Pandya250c2e52012-01-19 17:15:49 +05301310 platform_add_devices(msm_fb_devices,
1311 ARRAY_SIZE(msm_fb_devices));
1312
1313 msm_fb_register_device("mdp", &mdp_pdata);
Taniya Dase3027e22012-02-27 16:32:27 +05301314 if (machine_is_msm7625a_surf() || machine_is_msm7x27a_surf() ||
Jeevan Shriram045cdc72012-03-27 07:04:15 +05301315 machine_is_msm8625_surf() || machine_is_msm7627a_qrd3()
1316 || machine_is_msm8625_qrd7())
Chintan Pandya250c2e52012-01-19 17:15:49 +05301317 msm_fb_register_device("lcdc", &lcdc_pdata);
Jeevan Shriram901a15f2012-03-09 11:53:23 +05301318#ifdef CONFIG_FB_MSM_MIPI_DSI
Chintan Pandya250c2e52012-01-19 17:15:49 +05301319 msm_fb_register_device("mipi_dsi", &mipi_dsi_pdata);
1320#endif
1321}