blob: 157b91b0320ec3ad47100b322018ffb62395b281 [file] [log] [blame]
Channagoud Kadabi539ef722012-03-29 16:02:50 +05301/* Copyright (c) 2012, Code Aurora Forum. 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 are
5 * 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
9 * copyright notice, this list of conditions and the following
10 * disclaimer in the documentation and/or other materials provided
11 * with the distribution.
12 * * Neither the name of Code Aurora Forum, Inc. 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 "AS IS" AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 */
29#include <debug.h>
30#include <msm_panel.h>
31#include <target/display.h>
32#include <target/board.h>
33
34static struct msm_fb_panel_data panel;
35static uint8_t display_enabled;
36
37extern int msm_display_init(struct msm_fb_panel_data *pdata);
38extern int msm_display_off();
39extern int mipi_renesas_panel_dsi_config(int);
40extern int mipi_nt35510_panel_dsi_config(int);
41
Channagoud Kadabi10189fd2012-05-25 13:33:39 +053042static int msm7627a_mdp_clock_init(int enable)
43{
44 int ret = 0;
45
46 if (enable)
47 mdp_clock_init();
48
49 return ret;
50}
51
Channagoud Kadabi539ef722012-03-29 16:02:50 +053052void display_init(void)
53{
54 unsigned mach_type;
55 mach_type = board_machtype();
56
57 dprintf(SPEW, "display_init\n");
58
59 switch (mach_type) {
60 case MSM7X27A_SURF:
61 case MSM8X25_SURF:
62 case MSM7X27A_FFA:
Channagoud Kadabi10189fd2012-05-25 13:33:39 +053063 mipi_renesas_cmd_fwvga_init(&(panel.panel_info));
64 panel.clk_func = msm7627a_mdp_clock_init;
Channagoud Kadabi539ef722012-03-29 16:02:50 +053065 panel.power_func = mipi_renesas_panel_dsi_config;
66 panel.fb.base = MIPI_FB_ADDR;
67 panel.fb.width = panel.panel_info.xres;
68 panel.fb.height = panel.panel_info.yres;
69 panel.fb.stride = panel.panel_info.xres;
70 panel.fb.bpp = panel.panel_info.bpp;
71 panel.fb.format = FB_FORMAT_RGB888;
72 panel.mdp_rev = MDP_REV_303;
73 break;
74 case MSM7X25A_SURF:
75 case MSM7X25A_FFA:
Channagoud Kadabi10189fd2012-05-25 13:33:39 +053076 mipi_renesas_cmd_hvga_init(&(panel.panel_info));
77 panel.clk_func = msm7627a_mdp_clock_init;
Channagoud Kadabi539ef722012-03-29 16:02:50 +053078 panel.power_func = mipi_renesas_panel_dsi_config;
79 panel.fb.base = MIPI_FB_ADDR;
80 panel.fb.width = panel.panel_info.xres;
81 panel.fb.height = panel.panel_info.yres;
82 panel.fb.stride = panel.panel_info.xres;
83 panel.fb.bpp = panel.panel_info.bpp;
84 panel.fb.format = FB_FORMAT_RGB888;
85 panel.mdp_rev = MDP_REV_303;
86 break;
87 case MSM7X27A_EVB:
88 case MSM8X25_EVB:
Aparna Mallavarapu287d89c2012-05-11 14:27:03 +053089 case MSM8X25_EVT:
Channagoud Kadabi10189fd2012-05-25 13:33:39 +053090 mipi_nt35510_cmd_wvga_init(&(panel.panel_info));
91 panel.clk_func = msm7627a_mdp_clock_init;
Channagoud Kadabi539ef722012-03-29 16:02:50 +053092 panel.power_func = mipi_nt35510_panel_dsi_config;
93 panel.fb.base = MIPI_FB_ADDR;
94 panel.fb.width = panel.panel_info.xres;
95 panel.fb.height = panel.panel_info.yres;
96 panel.fb.stride = panel.panel_info.xres;
97 panel.fb.bpp = panel.panel_info.bpp;
98 panel.fb.format = FB_FORMAT_RGB888;
99 panel.mdp_rev = MDP_REV_303;
100 break;
101 default:
102 return;
103 };
104
105 if (msm_display_init(&panel)) {
106 printf(CRITICAL, "Display init failed!\n");
107 return;
108 }
Channagoud Kadabi539ef722012-03-29 16:02:50 +0530109 display_enabled = 1;
110}
111
112void display_shutdown(void)
113{
114 dprintf(SPEW, "display_shutdown()\n");
115 if (display_enabled)
116 msm_display_off();
117}