blob: d92dd1e9d27253904693296ce131059f0b038972 [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;
Channagoud Kadabiebbca342012-06-29 18:14:31 +053045 unsigned rate = 0;
46
47 rate = panel.panel_info.clk_rate;
Channagoud Kadabi10189fd2012-05-25 13:33:39 +053048
49 if (enable)
Channagoud Kadabiebbca342012-06-29 18:14:31 +053050 mdp_clock_init(rate);
Aparna Mallavarapuc2163802012-06-19 19:15:32 +053051 else
52 mdp_clock_disable();
Channagoud Kadabi10189fd2012-05-25 13:33:39 +053053 return ret;
54}
55
Channagoud Kadabi539ef722012-03-29 16:02:50 +053056void display_init(void)
57{
58 unsigned mach_type;
59 mach_type = board_machtype();
60
61 dprintf(SPEW, "display_init\n");
62
63 switch (mach_type) {
64 case MSM7X27A_SURF:
65 case MSM8X25_SURF:
66 case MSM7X27A_FFA:
Channagoud Kadabi10189fd2012-05-25 13:33:39 +053067 mipi_renesas_cmd_fwvga_init(&(panel.panel_info));
68 panel.clk_func = msm7627a_mdp_clock_init;
Channagoud Kadabi539ef722012-03-29 16:02:50 +053069 panel.power_func = mipi_renesas_panel_dsi_config;
70 panel.fb.base = MIPI_FB_ADDR;
71 panel.fb.width = panel.panel_info.xres;
72 panel.fb.height = panel.panel_info.yres;
73 panel.fb.stride = panel.panel_info.xres;
74 panel.fb.bpp = panel.panel_info.bpp;
75 panel.fb.format = FB_FORMAT_RGB888;
76 panel.mdp_rev = MDP_REV_303;
77 break;
78 case MSM7X25A_SURF:
79 case MSM7X25A_FFA:
Channagoud Kadabi10189fd2012-05-25 13:33:39 +053080 mipi_renesas_cmd_hvga_init(&(panel.panel_info));
81 panel.clk_func = msm7627a_mdp_clock_init;
Channagoud Kadabi539ef722012-03-29 16:02:50 +053082 panel.power_func = mipi_renesas_panel_dsi_config;
83 panel.fb.base = MIPI_FB_ADDR;
84 panel.fb.width = panel.panel_info.xres;
85 panel.fb.height = panel.panel_info.yres;
86 panel.fb.stride = panel.panel_info.xres;
87 panel.fb.bpp = panel.panel_info.bpp;
88 panel.fb.format = FB_FORMAT_RGB888;
89 panel.mdp_rev = MDP_REV_303;
90 break;
91 case MSM7X27A_EVB:
92 case MSM8X25_EVB:
Aparna Mallavarapu287d89c2012-05-11 14:27:03 +053093 case MSM8X25_EVT:
Channagoud Kadabi10189fd2012-05-25 13:33:39 +053094 mipi_nt35510_cmd_wvga_init(&(panel.panel_info));
95 panel.clk_func = msm7627a_mdp_clock_init;
Channagoud Kadabi539ef722012-03-29 16:02:50 +053096 panel.power_func = mipi_nt35510_panel_dsi_config;
97 panel.fb.base = MIPI_FB_ADDR;
98 panel.fb.width = panel.panel_info.xres;
99 panel.fb.height = panel.panel_info.yres;
100 panel.fb.stride = panel.panel_info.xres;
101 panel.fb.bpp = panel.panel_info.bpp;
102 panel.fb.format = FB_FORMAT_RGB888;
103 panel.mdp_rev = MDP_REV_303;
Channagoud Kadabi01c91822012-06-06 15:53:30 +0530104 if (mach_type == MSM8X25_EVT)
105 panel.rotate = 1;
Channagoud Kadabi539ef722012-03-29 16:02:50 +0530106 break;
107 default:
108 return;
109 };
110
111 if (msm_display_init(&panel)) {
Channagoud Kadabi898453d2012-06-06 11:14:35 +0530112 dprintf(CRITICAL, "Display init failed!\n");
Channagoud Kadabi539ef722012-03-29 16:02:50 +0530113 return;
114 }
Channagoud Kadabi539ef722012-03-29 16:02:50 +0530115 display_enabled = 1;
116}
117
118void display_shutdown(void)
119{
120 dprintf(SPEW, "display_shutdown()\n");
121 if (display_enabled)
122 msm_display_off();
123}