blob: 68d784d7f8f071867bc1601795b451cf9c116e10 [file] [log] [blame]
Veera Sundaram Sankaran9439eb12016-06-13 13:53:56 -07001/* Copyright (c) 2010-2016, The Linux Foundation. All rights reserved.
Chandan Uddaraju78ae6752010-10-19 12:57:10 -07002 *
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.
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -080012 * * Neither the name of The Linux Foundation nor the names of its
Chandan Uddaraju78ae6752010-10-19 12:57:10 -070013 * 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
30#include <reg.h>
Shashank Mittalcbd271d2011-01-14 15:18:33 -080031#include <endian.h>
Chandan Uddaraju78ae6752010-10-19 12:57:10 -070032#include <mipi_dsi.h>
33#include <dev/fbcon.h>
Greg Griscod6250552011-06-29 14:40:23 -070034#include <stdlib.h>
Greg Grisco1073a5e2011-07-28 18:59:18 -070035#include <string.h>
Kinson Chike5c93432011-06-17 09:10:29 -070036#include <debug.h>
Kinson Chikfe931032011-07-21 10:01:34 -070037#include <target/display.h>
Veera Sundaram Sankaran602d95a2014-12-09 17:55:04 -080038#include <mdp5.h>
Kinson Chikfe931032011-07-21 10:01:34 -070039#include <platform/iomap.h>
40#include <platform/clock.h>
Greg Grisco1073a5e2011-07-28 18:59:18 -070041#include <platform/timer.h>
Shashank Mittal4bfb2e32012-04-16 10:56:27 -070042#include <err.h>
43#include <msm_panel.h>
Matthew Qin81933ce2015-02-03 17:58:52 +080044#include <arch/ops.h>
Kinson Chikfe931032011-07-21 10:01:34 -070045
Ajay Dudanib01e5062011-12-03 23:23:42 -080046extern int mipi_dsi_cmd_config(struct fbcon_config mipi_fb_cfg,
47 unsigned short num_of_lanes);
Kinson Chikfe931032011-07-21 10:01:34 -070048extern void mdp_shutdown(void);
49extern void mdp_start_dma(void);
Chandan Uddaraju78ae6752010-10-19 12:57:10 -070050
Siddhartha Agrawal1b2ed842013-05-29 18:02:28 -070051#if (DISPLAY_TYPE_MDSS == 0)
52#define MIPI_DSI0_BASE MIPI_DSI_BASE
53#define MIPI_DSI1_BASE MIPI_DSI_BASE
54#endif
55
Veera Sundaram Sankarandb0b2bf2014-12-16 18:09:27 -080056struct fbcon_config mipi_fb_cfg = {
Ajay Dudanib01e5062011-12-03 23:23:42 -080057 .height = 0,
58 .width = 0,
59 .stride = 0,
60 .format = 0,
61 .bpp = 0,
62 .update_start = NULL,
63 .update_done = NULL,
Chandan Uddarajufe93e822010-11-21 20:44:47 -080064};
Chandan Uddarajufe93e822010-11-21 20:44:47 -080065
Veera Sundaram Sankarandb0b2bf2014-12-16 18:09:27 -080066static char read_id_a1h_cmd[4] = { 0xA1, 0x00, 0x06, 0xA0 }; /* DTYPE_DCS_READ */
67static struct mipi_dsi_cmd read_ddb_start_cmd =
68 {sizeof(read_id_a1h_cmd), read_id_a1h_cmd, 0x00};
69
Greg Griscod6250552011-06-29 14:40:23 -070070void secure_writel(uint32_t, uint32_t);
71uint32_t secure_readl(uint32_t);
Chandan Uddaraju78ae6752010-10-19 12:57:10 -070072
Shivaraj Shetty64604032013-11-14 16:44:10 +053073static uint32_t response_value = 0;
74
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -080075static uint32_t mdss_dsi_read_panel_signature(struct mipi_panel_info *mipi)
Shivaraj Shetty64604032013-11-14 16:44:10 +053076{
77 uint32_t rec_buf[1];
78 uint32_t *lp = rec_buf, data;
Veera Sundaram Sankarandb0b2bf2014-12-16 18:09:27 -080079 uint32_t ret = response_value;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -080080 uint32_t panel_signature = mipi->signature;
Shivaraj Shetty64604032013-11-14 16:44:10 +053081
82#if (DISPLAY_TYPE_MDSS == 1)
83 if (ret && ret != panel_signature)
84 goto exit_read_signature;
85
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -080086 ret = mdss_dsi_cmds_tx(mipi, &read_ddb_start_cmd, 1, 0);
Shivaraj Shetty64604032013-11-14 16:44:10 +053087 if (ret)
88 goto exit_read_signature;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -080089 if (!mdss_dsi_cmds_rx(mipi, &lp, 1, 1))
Shivaraj Shetty64604032013-11-14 16:44:10 +053090 goto exit_read_signature;
91
92 data = ntohl(*lp);
93 data = data >> 8;
94 response_value = data;
95 if (response_value != panel_signature)
96 ret = response_value;
97
98exit_read_signature:
99 /* Keep the non detectable panel at the end and set panel signature 0xFFFF */
Vineet Bajajc0d150d2014-11-07 17:04:44 +0530100 if ((panel_signature == 0) || (panel_signature == 0xFFFF))
Shivaraj Shetty64604032013-11-14 16:44:10 +0530101 ret = 0;
102#endif
103 return ret;
104}
105
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800106static int mdss_dsi_cmd_dma_trigger_for_panel(char dual_dsi,
107 uint32_t ctl_base, uint32_t sctl_base)
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700108{
109 uint32_t ReadValue;
110 uint32_t count = 0;
111 int status = 0;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800112 uint32_t base = dual_dsi ? sctl_base : ctl_base;
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700113
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400114#if (DISPLAY_TYPE_MDSS == 1)
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800115 writel(0x03030303, ctl_base + INT_CTRL);
116 writel(0x1, ctl_base + CMD_MODE_DMA_SW_TRIGGER);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700117 dsb();
118
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800119 if (dual_dsi) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800120 writel(0x03030303, sctl_base + INT_CTRL);
121 writel(0x1, sctl_base + CMD_MODE_DMA_SW_TRIGGER);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800122 dsb();
123 }
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700124
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800125 ReadValue = readl(base + INT_CTRL) & 0x00000001;
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700126 while (ReadValue != 0x00000001) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800127 ReadValue = readl(base + INT_CTRL) & 0x00000001;
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700128 count++;
129 if (count > 0xffff) {
130 status = FAIL;
131 dprintf(CRITICAL,
132 "Panel CMD: command mode dma test failed\n");
133 return status;
134 }
135 }
136
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800137 writel((readl(base + INT_CTRL) | 0x01000001), base + INT_CTRL);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700138 dprintf(SPEW, "Panel CMD: command mode dma tested successfully\n");
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400139#endif
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700140 return status;
141}
142
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800143static int mdss_dsi_wait4_video_done(uint32_t ctl_base)
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700144{
145 unsigned long read;
146 unsigned long count = 0;
147 int status = 0;
148
Padmanabhan Komanduru66459a92014-11-04 00:05:08 +0530149 /* If video mode is not enabled, return here */
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800150 if ((readl(ctl_base + CTRL) & BIT(1)) == 0)
Padmanabhan Komanduru66459a92014-11-04 00:05:08 +0530151 return 0;
152
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800153 read = readl(ctl_base + INT_CTRL);
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700154 /* Enable VIDEO MODE DONE MASK and clear the interrupt */
155 read = read | DSI_VIDEO_MODE_DONE_MASK | DSI_VIDEO_MODE_DONE_AK;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800156 writel(read, ctl_base + INT_CTRL);
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700157 dsb();
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800158 do {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800159 read = readl(ctl_base + INT_CTRL) &
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800160 DSI_VIDEO_MODE_DONE_STAT;
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700161 count++;
162 if (count > 0xffff) {
163 status = FAIL;
164 dprintf(CRITICAL,
165 "Panel CMD: Did not recieve video mode done interrupt\n");
166 return status;
167 }
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800168 } while (!read);
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700169
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800170 writel((readl(ctl_base + INT_CTRL) | 0x01000001), ctl_base + INT_CTRL);
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700171 dprintf(SPEW, "Panel wait_4_video_done: Recieved video mode done ack\n");
Padmanabhan Komanduru66459a92014-11-04 00:05:08 +0530172
173 /* Skip BLLP 4ms */
174 mdelay(4);
175
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700176 return status;
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700177}
178
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800179int mdss_dsi_cmds_tx(struct mipi_panel_info *mipi,
180 struct mipi_dsi_cmd *cmds, int count, char dual_dsi)
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700181{
182 int ret = 0;
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800183#if (DISPLAY_TYPE_MDSS == 1)
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700184 struct mipi_dsi_cmd *cm;
185 int i = 0;
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800186 uint8_t pload[256];
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700187 uint32_t off;
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800188 uint32_t size;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800189 uint32_t ctl_base, sctl_base;
190
191 /* if dest controller is not specified, default to DSI0 */
192 if (!mipi) {
193 ctl_base = MIPI_DSI0_BASE;
194 sctl_base = MIPI_DSI1_BASE;
195 } else {
196 ctl_base = mipi->ctl_base;
197 sctl_base = mipi->sctl_base;
198 }
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700199
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800200 /* Align pload at 8 byte boundary */
201 off = (uint32_t) pload;
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700202 off &= 0x07;
203 if (off)
204 off = 8 - off;
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800205 off += (uint32_t) pload;
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700206
207 cm = cmds;
208 for (i = 0; i < count; i++) {
Padmanabhan Komanduru66459a92014-11-04 00:05:08 +0530209 /* Wait for VIDEO_MODE_DONE */
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800210 ret = mdss_dsi_wait4_video_done(ctl_base);
Padmanabhan Komanduru66459a92014-11-04 00:05:08 +0530211 if (ret)
212 goto wait4video_error;
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700213
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800214 /* The payload size has to be a multiple of 4 */
215 size = cm->size;
216 size &= 0x03;
217 if (size)
218 size = 4 - size;
219 size += cm->size;
220 memcpy((uint8_t *)off, (cm->payload), size);
Matthew Qin81933ce2015-02-03 17:58:52 +0800221 arch_clean_invalidate_cache_range((addr_t)(off), size);
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800222 writel(off, ctl_base + DMA_CMD_OFFSET);
223 writel(size, ctl_base + DMA_CMD_LENGTH);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800224 if (dual_dsi) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800225 writel(off, sctl_base + DMA_CMD_OFFSET);
226 writel(size, sctl_base + DMA_CMD_LENGTH);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800227 }
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700228 dsb();
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800229 ret += mdss_dsi_cmd_dma_trigger_for_panel(dual_dsi, ctl_base,
230 sctl_base);
Dhaval Patel607a6242013-10-29 12:37:24 -0700231 if (cm->wait)
232 mdelay(cm->wait);
233 else
234 udelay(80);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700235 cm++;
236 }
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700237wait4video_error:
Padmanabhan Komanduru66459a92014-11-04 00:05:08 +0530238#endif
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700239 return ret;
240}
241
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800242int mdss_dsi_cmds_rx(struct mipi_panel_info *mipi, uint32_t **rp, int rp_len,
243 int rdbk_len)
Casey Piper84036752013-09-05 14:56:37 -0700244{
245 uint32_t *lp, data;
Veera Sundaram Sankarandb0b2bf2014-12-16 18:09:27 -0800246 uint32_t *dp;
Casey Piper84036752013-09-05 14:56:37 -0700247 int i, off;
248 int rlen, res;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800249 uint32_t ctl_base;
250
251 /* if dest controller is not specified, default to DSI0 */
252 if (!mipi)
253 ctl_base = MIPI_DSI0_BASE;
254 else
255 ctl_base = mipi->ctl_base;
Casey Piper84036752013-09-05 14:56:37 -0700256
257 if (rdbk_len > rp_len) {
258 return 0;
259 }
260
261 if (rdbk_len <= 2)
262 rlen = 4; /* short read */
263 else
264 rlen = MIPI_DSI_MRPS + 6; /* 4 bytes header + 2 bytes crc */
265
266 if (rlen > MIPI_DSI_REG_LEN) {
267 return 0;
268 }
269
270 res = rlen & 0x03;
271
272 rlen += res; /* 4 byte align */
273 lp = *rp;
274
275 rlen += 3;
276 rlen >>= 2;
277
278 if (rlen > 4)
279 rlen = 4; /* 4 x 32 bits registers only */
280
Shivaraj Shetty3c77da62013-12-09 15:58:16 +0530281 off = RDBK_DATA0;
Casey Piper84036752013-09-05 14:56:37 -0700282 off += ((rlen - 1) * 4);
283
284 for (i = 0; i < rlen; i++) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800285 data = readl(ctl_base + off);
Casey Piper84036752013-09-05 14:56:37 -0700286 *lp = ntohl(data); /* to network byte order */
287 lp++;
288
289 off -= 4;
290 }
291
292 if (rdbk_len > 2) {
293 /*First 4 bytes + paded bytes will be header next len bytes would be payload */
294 for (i = 0; i < rdbk_len; i++) {
295 dp = *rp;
296 dp[i] = dp[(res + i) >> 2];
297 }
298 }
299 return rdbk_len;
300}
301
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800302static int mdss_dsi_cmd_bta_sw_trigger(uint32_t ctl_base)
Shashank Mittalcbd271d2011-01-14 15:18:33 -0800303{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800304 uint32_t data;
305 int cnt = 0;
306 int err = 0;
Shashank Mittalcbd271d2011-01-14 15:18:33 -0800307
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800308 writel(0x01, ctl_base + 0x094); /* trigger */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800309 while (cnt < 10000) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800310 data = readl(ctl_base + 0x0004); /*DSI_STATUS */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800311 if ((data & 0x0010) == 0)
312 break;
313 cnt++;
314 }
315 if (cnt == 10000)
316 err = 1;
317 return err;
Shashank Mittalcbd271d2011-01-14 15:18:33 -0800318}
319
Veera Sundaram Sankaran9439eb12016-06-13 13:53:56 -0700320static void mdss_dsi_force_clk_lane_hs(struct mipi_panel_info *mipi,
321 uint32_t dual_dsi)
322{
323 uint32_t tmp;
324
325 if (dual_dsi) {
326 tmp = readl(mipi->sctl_base + LANE_CTL);
327 tmp |= BIT(28);
328 writel(tmp, mipi->sctl_base + LANE_CTL);
329 }
330
331 tmp = readl(mipi->ctl_base + LANE_CTL);
332 tmp |= BIT(28);
333 writel(tmp, mipi->ctl_base + LANE_CTL);
334}
335
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800336int mdss_dsi_host_init(struct mipi_panel_info *mipi, uint32_t
Dhaval Patel9207dec2014-04-16 10:45:32 -0700337 dual_dsi, uint32_t broadcast)
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700338{
339 uint8_t DMA_STREAM1 = 0; // for mdp display processor path
340 uint8_t EMBED_MODE1 = 1; // from frame buffer
341 uint8_t POWER_MODE2 = 1; // from frame buffer
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800342 uint8_t PACK_TYPE1 = 0; // long packet
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700343 uint8_t VC1 = 0;
344 uint8_t DT1 = 0; // non embedded mode
345 uint8_t WC1 = 0; // for non embedded mode only
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700346 uint8_t DLNx_EN;
Siddhartha Agrawal2679a822013-05-31 19:15:12 -0700347 uint8_t lane_swap = 0;
Siddhartha Agrawalb6c861f2013-05-31 19:36:44 -0700348 uint32_t timing_ctl = 0;
Vineet Bajaj2f08a362014-07-24 20:50:42 +0530349 uint32_t lane_swap_dsi1 = 0;
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700350 uint32_t ctrl_mode = 0x105; //Default is command mode to send cmds.
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700351
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400352#if (DISPLAY_TYPE_MDSS == 1)
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800353 switch (mipi->num_of_lanes) {
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700354 default:
355 case 1:
356 DLNx_EN = 1; // 1 lane
357 break;
358 case 2:
359 DLNx_EN = 3; // 2 lane
360 break;
361 case 3:
362 DLNx_EN = 7; // 3 lane
363 break;
364 case 4:
365 DLNx_EN = 0x0F; /* 4 lanes */
366 break;
367 }
368
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800369 lane_swap = mipi->lane_swap;
370 timing_ctl = ((mipi->t_clk_post << 8) | mipi->t_clk_pre);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700371
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800372 if (mipi->cmds_post_tg) {
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700373 /*
374 * Need to send pixel data before sending the ON commands
375 * so need to configure controller to VIDEO MODE.
376 */
377 ctrl_mode = 0x103;
378 }
379
Dhaval Patel9207dec2014-04-16 10:45:32 -0700380 if (dual_dsi) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800381 writel(0x0001, mipi->sctl_base + SOFT_RESET);
382 writel(0x0000, mipi->sctl_base + SOFT_RESET);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700383
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800384 /* Turn on all DSI Clks */
385 writel((0 << 16) | 0x3f, mipi->sctl_base + CLK_CTRL);
386 writel(DMA_STREAM1 << 8 | 0x04, mipi->sctl_base + TRIG_CTRL);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700387
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800388 writel(0 << 30 | DLNx_EN << 4 | ctrl_mode, mipi->sctl_base + CTRL);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700389 writel(broadcast << 31 | EMBED_MODE1 << 28 | POWER_MODE2 << 26
390 | PACK_TYPE1 << 24 | VC1 << 22 | DT1 << 16 | WC1,
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800391 mipi->sctl_base + COMMAND_MODE_DMA_CTRL);
Siddhartha Agrawal2679a822013-05-31 19:15:12 -0700392
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800393 /* for 8939 hw dsi1 has Lane_map as 3210 */
Jeevan Shriram01379322015-01-07 17:41:26 -0800394 if (readl(mipi->ctl_base) == DSI_HW_REV_103_1)
Vineet Bajaj2f08a362014-07-24 20:50:42 +0530395 lane_swap_dsi1 = 0x7;
396 else
397 lane_swap_dsi1 = lane_swap;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800398 writel(lane_swap_dsi1, mipi->sctl_base + LANE_SWAP_CTL);
399 writel(timing_ctl, mipi->sctl_base + TIMING_CTL);
Ray Zhang8da5e5d2015-01-21 10:14:09 +0800400
Sandeep Pandad9cc3a92015-05-25 15:19:38 +0530401 if ((mipi->mode == DSI_CMD_MODE) &&
402 (readl(mipi->sctl_base) >= DSI_HW_REV_103)) {
403 uint32_t tmp;
404 tmp = readl(mipi->sctl_base + 0x01b8);
405 tmp |= BIT(16); /* enable burst mode */
406 writel(tmp, mipi->sctl_base + 0x01b8);
407 }
Padmanabhan Komandurucea96762016-03-30 14:49:01 +0530408
409 writel(((mipi->rx_eot_ignore & 0x1) << 4) |
410 (mipi->tx_eot_append & 0x1),
411 mipi->sctl_base + EOT_PACKET_CTRL);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700412 }
413
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800414 writel(0x0001, mipi->ctl_base + SOFT_RESET);
415 writel(0x0000, mipi->ctl_base + SOFT_RESET);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700416
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800417 /* Turn on all DSI Clks */
418 writel((0 << 16) | 0x3f, mipi->ctl_base + CLK_CTRL);
419 writel(DMA_STREAM1 << 8 | 0x04, mipi->ctl_base + TRIG_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700420
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800421 writel(0 << 30 | DLNx_EN << 4 | ctrl_mode, mipi->ctl_base + CTRL);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700422 writel(broadcast << 31 | EMBED_MODE1 << 28 | POWER_MODE2 << 26
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700423 | PACK_TYPE1 << 24 | VC1 << 22 | DT1 << 16 | WC1,
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800424 mipi->ctl_base + COMMAND_MODE_DMA_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700425
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800426 writel(lane_swap, mipi->ctl_base + LANE_SWAP_CTL);
427 writel(timing_ctl, mipi->ctl_base + TIMING_CTL);
Ray Zhang8da5e5d2015-01-21 10:14:09 +0800428
Sandeep Pandad9cc3a92015-05-25 15:19:38 +0530429 if ((mipi->mode == DSI_CMD_MODE) &&
430 (readl(mipi->ctl_base) >= DSI_HW_REV_103)) {
431 uint32_t tmp;
432 tmp = readl(mipi->ctl_base + 0x01b8);
433 tmp |= BIT(16); /* enable burst mode */
434 writel(tmp, mipi->ctl_base + 0x01b8);
435 }
436
Padmanabhan Komandurucea96762016-03-30 14:49:01 +0530437 writel(((mipi->rx_eot_ignore & 0x1) << 4) | (mipi->tx_eot_append & 0x1),
438 mipi->ctl_base + EOT_PACKET_CTRL);
Huaibin Yang952dce32015-02-19 18:01:27 -0800439
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800440#endif
Siddhartha Agrawal2679a822013-05-31 19:15:12 -0700441
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800442 return 0;
443}
444
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530445void mdss_dsi_panel_shutdown(struct msm_panel_info *pinfo)
446{
447#if (DISPLAY_TYPE_MDSS == 1)
448 unsigned long read_val = 0;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800449 uint32_t ctl_base = pinfo->mipi.ctl_base;
450 uint32_t sctl_base = pinfo->mipi.sctl_base;
451
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530452 if (pinfo->mipi.panel_off_cmds) {
453 /*
454 * Once MDP TG is disabled, reset of DSI controller is
455 * needed before we send panel OFF commands.
456 */
457 if (pinfo->type == MIPI_VIDEO_PANEL) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800458 read_val = readl(ctl_base + CTRL);
459 writel((read_val & ~BIT(0)), ctl_base + CTRL);
460 writel(0x0001, ctl_base + SOFT_RESET);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530461 dsb();
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800462 writel(0x0000, ctl_base + SOFT_RESET);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530463 dsb();
464 /* Enable cmd mode only */
465 writel(((read_val & ~BIT(1)) | BIT(2)),
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800466 ctl_base + CTRL);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530467 }
468
469 if (pinfo->mipi.broadcast) {
470 if (pinfo->type == MIPI_VIDEO_PANEL) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800471 read_val = readl(sctl_base + CTRL);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530472 writel((read_val & ~BIT(0)),
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800473 sctl_base + CTRL);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530474
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800475 writel(0x0001, sctl_base + SOFT_RESET);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530476 dsb();
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800477 writel(0x0000, sctl_base + SOFT_RESET);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530478 dsb();
479
480 writel(((read_val & ~BIT(1)) | BIT(2)),
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800481 sctl_base + CTRL);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530482 }
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530483 }
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800484 mdss_dsi_cmds_tx(&pinfo->mipi, pinfo->mipi.panel_off_cmds,
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800485 pinfo->mipi.num_of_panel_off_cmds,
486 pinfo->mipi.broadcast);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530487 }
488#endif
489}
490
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800491int mdss_dsi_panel_initialize(struct mipi_panel_info *mipi, uint32_t
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800492 broadcast)
493{
494 int status = 0;
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700495 uint32_t ctrl_mode = 0;
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800496
497#if (DISPLAY_TYPE_MDSS == 1)
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800498 if (!mipi->panel_on_cmds)
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800499 goto end;
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700500
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800501 ctrl_mode = readl(mipi->ctl_base + CTRL);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700502
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800503 /* Enable command mode before sending the commands. */
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800504 writel(ctrl_mode | 0x04, mipi->ctl_base + CTRL);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800505 if (broadcast)
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800506 writel(ctrl_mode | 0x04, mipi->sctl_base + CTRL);
507 status = mdss_dsi_cmds_tx(mipi, mipi->panel_on_cmds,
508 mipi->num_of_panel_on_cmds, broadcast);
509 writel(ctrl_mode, mipi->ctl_base + CTRL);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800510 if (broadcast)
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800511 writel(ctrl_mode, mipi->sctl_base + CTRL);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800512
513 if (!broadcast && !status && target_panel_auto_detect_enabled())
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800514 status = mdss_dsi_read_panel_signature(mipi);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800515
516end:
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400517#endif
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700518 return status;
519}
520
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700521int mdss_dsi_video_mode_config(struct msm_panel_info *pinfo,
522 uint16_t disp_width,
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700523 uint16_t disp_height,
524 uint16_t img_width,
525 uint16_t img_height,
526 uint16_t hsync_porch0_fp,
527 uint16_t hsync_porch0_bp,
528 uint16_t vsync_porch0_fp,
529 uint16_t vsync_porch0_bp,
530 uint16_t hsync_width,
531 uint16_t vsync_width,
532 uint16_t dst_format,
533 uint16_t traffic_mode,
534 uint8_t lane_en,
Padmanabhan Komandurue3209872015-01-12 16:33:16 +0530535 uint8_t pulse_mode_hsa_he,
536 uint32_t low_pwr_stop_mode,
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700537 uint8_t eof_bllp_pwr,
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700538 uint8_t interleav,
539 uint32_t ctl_base)
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700540{
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700541 int status = 0;
542
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400543#if (DISPLAY_TYPE_MDSS == 1)
Padmanabhan Komanduru684b58f2015-02-11 16:22:51 +0530544 int last_line_interleave_en = 0;
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700545 struct dsc_desc *dsc = NULL;
546
547 if (pinfo->compression_mode == COMPRESSION_DSC)
548 dsc = &pinfo->dsc;
Padmanabhan Komanduru684b58f2015-02-11 16:22:51 +0530549
550 /*Check if EOF_BLLP_PWR_MODE bit is set*/
551 if(eof_bllp_pwr & 0x8)
552 last_line_interleave_en = 1;
553
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700554 writel(0x00000000, ctl_base + CLK_CTRL);
555 writel(0x00000002, ctl_base + CLK_CTRL);
556 writel(0x00000006, ctl_base + CLK_CTRL);
557 writel(0x0000000e, ctl_base + CLK_CTRL);
558 writel(0x0000001e, ctl_base + CLK_CTRL);
559 writel(0x0000023f, ctl_base + CLK_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700560
Padmanabhan Komanduru2f8e0bc2014-11-27 18:25:36 +0530561 writel(0x03f03fe0, ctl_base + ERR_INT_MASK0);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700562
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700563 writel(0x02020202, ctl_base + INT_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700564
Padmanabhan Komandurudaebf6b2014-08-20 20:39:40 +0530565 /* For 8916/8939, enable DSI timing double buffering */
Kuogee Hsieh861e25d2014-10-29 16:50:15 -0700566 if (readl(ctl_base) >= DSI_HW_REV_103 &&
Shivaraj Shetty41d2d482014-11-04 16:07:32 +0530567 mdp_get_revision() != MDP_REV_305)
Padmanabhan Komandurudaebf6b2014-08-20 20:39:40 +0530568 writel(0x1, ctl_base + TIMING_DB_MODE);
569
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700570 writel(((disp_width + hsync_porch0_bp) << 16) | hsync_porch0_bp,
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700571 ctl_base + VIDEO_MODE_ACTIVE_H);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700572
573 writel(((disp_height + vsync_porch0_bp) << 16) | (vsync_porch0_bp),
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700574 ctl_base + VIDEO_MODE_ACTIVE_V);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700575
Terence Hampson7385f6a2013-08-16 15:31:25 -0400576 if (mdp_get_revision() >= MDP_REV_41 ||
Shivaraj Shettyf9e10c42014-09-17 04:21:15 +0530577 mdp_get_revision() == MDP_REV_304 ||
578 mdp_get_revision() == MDP_REV_305) {
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700579 writel(((disp_height + vsync_porch0_fp
580 + vsync_porch0_bp - 1) << 16)
581 | (disp_width + hsync_porch0_fp
582 + hsync_porch0_bp - 1),
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700583 ctl_base + VIDEO_MODE_TOTAL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700584 } else {
585 writel(((disp_height + vsync_porch0_fp
586 + vsync_porch0_bp) << 16)
587 | (disp_width + hsync_porch0_fp
588 + hsync_porch0_bp),
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700589 ctl_base + VIDEO_MODE_TOTAL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700590 }
591
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700592 writel((hsync_width << 16) | 0, ctl_base + VIDEO_MODE_HSYNC);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700593
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700594 writel(0 << 16 | 0, ctl_base + VIDEO_MODE_VSYNC);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700595
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700596 writel(vsync_width << 16 | 0, ctl_base + VIDEO_MODE_VSYNC_VPOS);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700597
Padmanabhan Komandurudaebf6b2014-08-20 20:39:40 +0530598 /* For 8916/8939, flush the DSI timing registers */
Kuogee Hsieh861e25d2014-10-29 16:50:15 -0700599 if (readl(ctl_base) >= DSI_HW_REV_103 &&
Shivaraj Shetty41d2d482014-11-04 16:07:32 +0530600 mdp_get_revision() != MDP_REV_305)
Padmanabhan Komandurudaebf6b2014-08-20 20:39:40 +0530601 writel(0x1, ctl_base + TIMING_FLUSH);
602
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700603 writel(0x00000100, ctl_base + MISR_VIDEO_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700604
Shivaraj Shetty41d2d482014-11-04 16:07:32 +0530605 if (mdp_get_revision() >= MDP_REV_41 || mdp_get_revision() == MDP_REV_305) {
Padmanabhan Komanduru684b58f2015-02-11 16:22:51 +0530606 writel(last_line_interleave_en << 31 | pulse_mode_hsa_he << 28 |
607 low_pwr_stop_mode << 16 | eof_bllp_pwr << 12 |
608 traffic_mode << 8 | dst_format << 4 | 0x0,
609 ctl_base + VIDEO_MODE_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700610 } else {
611 writel(1 << 28 | 1 << 24 | 1 << 20 | low_pwr_stop_mode << 16 |
612 eof_bllp_pwr << 12 | traffic_mode << 8
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700613 | dst_format << 4 | 0x0, ctl_base + VIDEO_MODE_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700614 }
615
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700616 writel(0x3fd08, ctl_base + HS_TIMER_CTRL);
617 writel(0x00010100, ctl_base + MISR_VIDEO_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700618
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700619 writel(0x00010100, ctl_base + INT_CTRL);
620 writel(0x02010202, ctl_base + INT_CTRL);
621 writel(0x02030303, ctl_base + INT_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700622
623 writel(interleav << 30 | 0 << 24 | 0 << 20 | lane_en << 4
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700624 | 0x103, ctl_base + CTRL);
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700625 if (dsc) {
626 if (dsc->dsi_dsc_config)
627 dsc->dsi_dsc_config(pinfo->mipi.ctl_base, DSI_VIDEO_MODE, dsc);
628 }
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400629#endif
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700630
631 return status;
632}
633
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800634int mdss_dsi_config(struct msm_fb_panel_data *panel)
635{
636 int ret = NO_ERROR;
637 struct msm_panel_info *pinfo;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800638 struct mipi_panel_info *mipi;
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700639 struct dsc_desc *dsc = NULL;
640 struct mipi_dsi_cmd cmd;
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800641
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400642#if (DISPLAY_TYPE_MDSS == 1)
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800643 if (!panel)
644 return ERR_INVALID_ARGS;
645
646 pinfo = &(panel->panel_info);
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800647 mipi = &(pinfo->mipi);
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800648
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700649
650 if (pinfo->compression_mode == COMPRESSION_DSC) {
651 dsc = &pinfo->dsc;
652 if (dsc) {
653 if (dsc->dsc2buf)
654 dsc->dsc2buf(pinfo);
655 }
656 }
657
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800658 dprintf(SPEW, "ctl_base=0x%08x, phy_base=0x%08x\n", mipi->ctl_base,
659 mipi->phy_base);
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800660
Jeevan Shriram01379322015-01-07 17:41:26 -0800661 mdss_dsi_phy_init(mipi);
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800662
663 ret = mdss_dsi_host_init(mipi, mipi->dual_dsi,
664 mipi->broadcast);
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800665 if (ret) {
666 dprintf(CRITICAL, "dsi host init error\n");
667 goto error;
668 }
669
Aravind Venkateswaran51e57552014-12-09 13:23:19 -0800670 mdss_dsi_phy_contention_detection(mipi, mipi->phy_base);
671 if (mipi->dual_dsi)
672 mdss_dsi_phy_contention_detection(mipi, mipi->sphy_base);
Xiaoming Zhou03fd48b2014-07-31 15:24:41 -0400673
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800674 if (panel->pre_init_func) {
675 ret = panel->pre_init_func();
676 if (ret) {
677 dprintf(CRITICAL, "pre_init_func error\n");
678 goto error;
679 }
680 }
681
Veera Sundaram Sankaran9439eb12016-06-13 13:53:56 -0700682 if (mipi->force_clk_lane_hs)
683 mdss_dsi_force_clk_lane_hs(mipi, mipi->dual_dsi);
684
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800685 if (!mipi->cmds_post_tg) {
686 ret = mdss_dsi_panel_initialize(mipi, mipi->broadcast);
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700687 if (ret) {
688 dprintf(CRITICAL, "dsi panel init error\n");
689 goto error;
690 }
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800691 }
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800692
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700693 if (dsc) {
694 cmd.size = DCS_HDR_LEN + DSC_PPS_LEN;
695 cmd.payload = dsc->pps_buf;
696 cmd.wait = 0x10;
697 mdss_dsi_cmds_tx(mipi, &cmd, 1, mipi->broadcast);
698 }
699
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800700 if (pinfo->rotate && panel->rotate)
701 pinfo->rotate();
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400702#endif
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800703
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800704error:
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800705 return ret;
706}
707
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700708int mdss_dsi_post_on(struct msm_fb_panel_data *panel)
709{
710 int ret = 0;
711 struct msm_panel_info *pinfo = &(panel->panel_info);
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700712
713 if (pinfo->mipi.cmds_post_tg) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800714 ret = mdss_dsi_panel_initialize(&pinfo->mipi, pinfo->mipi.broadcast);
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700715 if (ret) {
716 dprintf(CRITICAL, "dsi panel init error\n");
717 }
718 }
719 return ret;
720}
721
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700722int mdss_dsi_cmd_mode_config(struct msm_panel_info *pinfo,
723 uint16_t disp_width,
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700724 uint16_t disp_height,
725 uint16_t img_width,
726 uint16_t img_height,
727 uint16_t dst_format,
Xiaoming Zhou8d534dd2013-07-29 15:49:19 -0400728 uint8_t ystride,
729 uint8_t lane_en,
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800730 uint8_t interleav,
731 uint32_t ctl_base)
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700732{
Xiaoming Zhou8d534dd2013-07-29 15:49:19 -0400733 uint16_t dst_fmt = 0;
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700734 struct dsc_desc *dsc = NULL;
735 unsigned int data;
Xiaoming Zhou8d534dd2013-07-29 15:49:19 -0400736
737 switch (dst_format) {
738 case DSI_VIDEO_DST_FORMAT_RGB565:
739 dst_fmt = DSI_CMD_DST_FORMAT_RGB565;
740 break;
741 case DSI_VIDEO_DST_FORMAT_RGB666:
742 case DSI_VIDEO_DST_FORMAT_RGB666_LOOSE:
743 dst_fmt = DSI_CMD_DST_FORMAT_RGB666;
744 break;
745 case DSI_VIDEO_DST_FORMAT_RGB888:
746 dst_fmt = DSI_CMD_DST_FORMAT_RGB888;
747 break;
748 default:
749 dprintf(CRITICAL, "unsupported dst format\n");
750 return ERROR;
751 }
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700752
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400753#if (DISPLAY_TYPE_MDSS == 1)
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800754 writel(0x00000000, ctl_base + CLK_CTRL);
755 writel(0x00000000, ctl_base + CLK_CTRL);
756 writel(0x00000000, ctl_base + CLK_CTRL);
757 writel(0x00000000, ctl_base + CLK_CTRL);
758 writel(0x00000002, ctl_base + CLK_CTRL);
759 writel(0x00000006, ctl_base + CLK_CTRL);
760 writel(0x0000000e, ctl_base + CLK_CTRL);
761 writel(0x0000001e, ctl_base + CLK_CTRL);
762 writel(0x0000023f, ctl_base + CLK_CTRL);
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700763
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800764 writel(0, ctl_base + CTRL);
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700765
Padmanabhan Komanduru2f8e0bc2014-11-27 18:25:36 +0530766 writel(0x03f03fe0, ctl_base + ERR_INT_MASK0);
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700767
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800768 writel(0x02020202, ctl_base + INT_CTRL);
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700769
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800770 writel(dst_fmt, ctl_base + COMMAND_MODE_MDP_CTRL);
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700771
772 if (pinfo->compression_mode == COMPRESSION_DSC)
773 dsc = &pinfo->dsc;
774
775 if (dsc) {
776 data = dsc->bytes_per_pkt;
777 if (pinfo->mipi.insert_dcs_cmd)
778 data++;
779 data <<= 16;
780 data |= 0x039;
781 writel(data, ctl_base + COMMAND_MODE_MDP_STREAM0_CTRL);
782 writel(data, ctl_base + COMMAND_MODE_MDP_STREAM1_CTRL);
783 data = dsc->pic_height << 16;
784 data |= dsc->pclk_per_line;
785 writel(data, ctl_base + COMMAND_MODE_MDP_STREAM0_TOTAL);
786 writel(data, ctl_base + COMMAND_MODE_MDP_STREAM1_TOTAL);
787
788 if (dsc->dsi_dsc_config)
Kuogee Hsieh6a8802f2015-09-01 09:11:40 -0700789 dsc->dsi_dsc_config(pinfo->mipi.ctl_base, DSI_CMD_MODE, dsc);
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700790 } else {
791
792 writel((img_width * ystride + 1) << 16 | 0x0039,
793 ctl_base + COMMAND_MODE_MDP_STREAM0_CTRL);
794 writel((img_width * ystride + 1) << 16 | 0x0039,
795 ctl_base + COMMAND_MODE_MDP_STREAM1_CTRL);
796 writel(img_height << 16 | img_width,
797 ctl_base + COMMAND_MODE_MDP_STREAM0_TOTAL);
798 writel(img_height << 16 | img_width,
799 ctl_base + COMMAND_MODE_MDP_STREAM1_TOTAL);
800 }
801
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800802 writel(0x13c2c, ctl_base + COMMAND_MODE_MDP_DCS_CMD_CTRL);
Xiaoming Zhou8d534dd2013-07-29 15:49:19 -0400803 writel(interleav << 30 | 0 << 24 | 0 << 20 | lane_en << 4 | 0x105,
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800804 ctl_base + CTRL);
Padmanabhan Komanduru7860be52014-03-18 19:07:36 +0530805 writel(0x14000000, ctl_base + COMMAND_MODE_DMA_CTRL);
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800806 writel(0x10000000, ctl_base + MISR_CMD_CTRL);
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400807#endif
Xiaoming Zhou8d534dd2013-07-29 15:49:19 -0400808 return 0;
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700809}
810
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800811int mipi_dsi_on(struct msm_panel_info *pinfo)
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700812{
813 int ret = NO_ERROR;
814 unsigned long ReadValue;
815 unsigned long count = 0;
816
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800817 ReadValue = readl(pinfo->mipi.ctl_base + INT_CTRL) & 0x00010000;
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700818
819 mdelay(10);
820
821 while (ReadValue != 0x00010000) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800822 ReadValue = readl(pinfo->mipi.ctl_base + INT_CTRL) & 0x00010000;
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700823 count++;
824 if (count > 0xffff) {
825 dprintf(CRITICAL, "Video lane test failed\n");
826 return ERROR;
827 }
828 }
829
Amir Samuelov2d4ba162012-07-22 11:53:14 +0300830 dprintf(INFO, "Video lane tested successfully\n");
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700831 return ret;
832}
833
Siddhartha Agrawal24d81b52013-07-01 11:13:32 -0700834int mipi_dsi_off(struct msm_panel_info *pinfo)
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700835{
Amol Jadi6834f1a2012-06-29 14:42:59 -0700836 if(!target_cont_splash_screen())
837 {
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530838 mdss_dsi_panel_shutdown(pinfo);
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800839 writel(0, pinfo->mipi.ctl_base + CLK_CTRL);
Naseer Ahmedd2f6de32015-11-27 11:13:09 -0500840 writel(0, pinfo->mipi.ctl_base + CTRL);
Siddhartha Agrawale0033a12013-02-23 15:37:42 -0800841 }
842
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800843 writel(0x1115501, pinfo->mipi.ctl_base + INT_CTRL);
feifanz87f19852015-09-25 11:54:26 +0800844 if (pinfo->mipi.dual_dsi)
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800845 writel(0x1115501, pinfo->mipi.sctl_base + INT_CTRL);
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700846
847 return NO_ERROR;
848}
Channagoud Kadabi10189fd2012-05-25 13:33:39 +0530849
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800850#if (DISPLAY_TYPE_MDSS == 0)
851static int dsi_cmd_dma_trigger_for_panel()
852{
853 unsigned long ReadValue;
854 unsigned long count = 0;
855 int status = 0;
856
857 writel(0x03030303, DSI_INT_CTRL);
858 writel(0x1, DSI_CMD_MODE_DMA_SW_TRIGGER);
859 dsb();
860 ReadValue = readl(DSI_INT_CTRL) & 0x00000001;
861 while (ReadValue != 0x00000001) {
862 ReadValue = readl(DSI_INT_CTRL) & 0x00000001;
863 count++;
864 if (count > 0xffff) {
865 status = FAIL;
866 dprintf(CRITICAL,
867 "Panel CMD: command mode dma test failed\n");
868 return status;
869 }
870 }
871
872 writel((readl(DSI_INT_CTRL) | 0x01000001), DSI_INT_CTRL);
873 dprintf(SPEW, "Panel CMD: command mode dma tested successfully\n");
874 return status;
875}
876
877int mipi_dsi_cmds_tx(struct mipi_dsi_cmd *cmds, int count)
878{
879 int ret = 0;
880 struct mipi_dsi_cmd *cm;
881 int i = 0;
882 char pload[256];
883 uint32_t off;
884
885 /* Align pload at 8 byte boundry */
886 off = pload;
887 off &= 0x07;
888 if (off)
889 off = 8 - off;
890 off += pload;
891
892 cm = cmds;
893 for (i = 0; i < count; i++) {
894 /* Wait for VIDEO_MODE_DONE */
895 ret = mdss_dsi_wait4_video_done();
896 if (ret)
897 goto mipi_cmds_error;
898
899 memcpy((void *)off, (cm->payload), cm->size);
Matthew Qin81933ce2015-02-03 17:58:52 +0800900 arch_clean_invalidate_cache_range((addr_t)(off), size);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800901 writel(off, DSI_DMA_CMD_OFFSET);
902 writel(cm->size, DSI_DMA_CMD_LENGTH); // reg 0x48 for this build
903 dsb();
904 ret += dsi_cmd_dma_trigger_for_panel();
905 dsb();
906 if (cm->wait)
907 mdelay(cm->wait);
908 else
909 udelay(80);
910 cm++;
911 }
912mipi_cmds_error:
913 return ret;
914}
915
916/*
917 * mipi_dsi_cmd_rx: can receive at most 16 bytes
918 * per transaction since it only have 4 32bits reigsters
919 * to hold data.
920 * therefore Maximum Return Packet Size need to be set to 16.
921 * any return data more than MRPS need to be break down
922 * to multiple transactions.
923 */
924int mipi_dsi_cmds_rx(char **rp, int len)
925{
926 uint32_t *lp, data;
927 char *dp;
928 int i, off, cnt;
929 int rlen, res;
930
931 if (len <= 2)
932 rlen = 4; /* short read */
933 else
934 rlen = MIPI_DSI_MRPS + 6; /* 4 bytes header + 2 bytes crc */
935
936 if (rlen > MIPI_DSI_REG_LEN) {
937 return 0;
938 }
939
940 res = rlen & 0x03;
941
942 rlen += res; /* 4 byte align */
943 lp = (uint32_t *) (*rp);
944
945 cnt = rlen;
946 cnt += 3;
947 cnt >>= 2;
948
949 if (cnt > 4)
950 cnt = 4; /* 4 x 32 bits registers only */
951
952 off = 0x068; /* DSI_RDBK_DATA0 */
953 off += ((cnt - 1) * 4);
954
955 for (i = 0; i < cnt; i++) {
956 data = (uint32_t) readl(MIPI_DSI_BASE + off);
957 *lp++ = ntohl(data); /* to network byte order */
958 off -= 4;
959 }
960
961 if (len > 2) {
962 /*First 4 bytes + paded bytes will be header next len bytes would be payload */
963 for (i = 0; i < len; i++) {
964 dp = *rp;
965 dp[i] = dp[4 + res + i];
966 }
967 }
968
969 return len;
970}
971
972static int mipi_dsi_panel_initialize(struct mipi_dsi_panel_config *pinfo)
973{
974 uint8_t DMA_STREAM1 = 0; // for mdp display processor path
975 uint8_t EMBED_MODE1 = 1; // from frame buffer
976 uint8_t POWER_MODE2 = 1; // from frame buffer
977 uint8_t PACK_TYPE1; // long packet
978 uint8_t VC1 = 0;
979 uint8_t DT1 = 0; // non embedded mode
980 uint8_t WC1 = 0; // for non embedded mode only
981 int status = 0;
982 uint8_t DLNx_EN;
983
984 switch (pinfo->num_of_lanes) {
985 default:
986 case 1:
987 DLNx_EN = 1; // 1 lane
988 break;
989 case 2:
990 DLNx_EN = 3; // 2 lane
991 break;
992 case 3:
993 DLNx_EN = 7; // 3 lane
994 break;
995 case 4:
996 DLNx_EN = 0x0F; /* 4 lanes */
997 break;
998 }
999
1000 PACK_TYPE1 = pinfo->pack;
1001
1002 writel(0x0001, DSI_SOFT_RESET);
1003 writel(0x0000, DSI_SOFT_RESET);
1004
1005 writel((0 << 16) | 0x3f, DSI_CLK_CTRL); /* Turn on all DSI Clks */
1006 writel(DMA_STREAM1 << 8 | 0x04, DSI_TRIG_CTRL); // reg 0x80 dma trigger: sw
1007 // trigger 0x4; dma stream1
1008
1009 writel(0 << 30 | DLNx_EN << 4 | 0x105, DSI_CTRL); // reg 0x00 for this
1010 // build
1011 writel(EMBED_MODE1 << 28 | POWER_MODE2 << 26
1012 | PACK_TYPE1 << 24 | VC1 << 22 | DT1 << 16 | WC1,
1013 DSI_COMMAND_MODE_DMA_CTRL);
1014
1015 if (pinfo->panel_on_cmds)
1016 status = mipi_dsi_cmds_tx(pinfo->panel_on_cmds,
1017 pinfo->num_of_panel_on_cmds);
1018
1019 return status;
1020}
1021#endif
1022
1023void mipi_dsi_shutdown(void)
1024{
1025#if (DISPLAY_TYPE_MDSS == 0)
1026 if(!target_cont_splash_screen())
1027 {
1028 mdp_shutdown();
1029 writel(0x01010101, DSI_INT_CTRL);
1030 writel(0x13FF3BFF, DSI_ERR_INT_MASK0);
1031
1032 writel(0, DSI_CLK_CTRL);
1033 writel(0, DSI_CTRL);
1034 writel(0, DSIPHY_PLL_CTRL(0));
1035 }
1036 else
1037 {
1038 /* To keep the splash screen displayed till kernel driver takes
1039 control, do not turn off the video mode engine and clocks.
1040 Only disabling the MIPI DSI IRQs */
1041 writel(0x01010101, DSI_INT_CTRL);
1042 writel(0x13FF3BFF, DSI_ERR_INT_MASK0);
1043 }
1044#endif
1045}
1046
Channagoud Kadabi10189fd2012-05-25 13:33:39 +05301047int mipi_cmd_trigger()
1048{
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -08001049#if (DISPLAY_TYPE_MDSS == 0)
Channagoud Kadabi10189fd2012-05-25 13:33:39 +05301050 writel(0x1, DSI_CMD_MODE_MDP_SW_TRIGGER);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -08001051#endif
Channagoud Kadabi10189fd2012-05-25 13:33:39 +05301052 return NO_ERROR;
1053}
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -08001054
1055int mipi_config(struct msm_fb_panel_data *panel)
1056{
1057 int ret = NO_ERROR;
1058#if (DISPLAY_TYPE_MDSS == 0)
1059 struct msm_panel_info *pinfo;
1060 struct mipi_dsi_panel_config mipi_pinfo;
1061
1062 if (!panel)
1063 return ERR_INVALID_ARGS;
1064
1065 pinfo = &(panel->panel_info);
1066 mipi_pinfo.mode = pinfo->mipi.mode;
1067 mipi_pinfo.num_of_lanes = pinfo->mipi.num_of_lanes;
1068 mipi_pinfo.dsi_phy_config = pinfo->mipi.dsi_phy_db;
1069 mipi_pinfo.panel_on_cmds = pinfo->mipi.panel_on_cmds;
1070 mipi_pinfo.num_of_panel_on_cmds = pinfo->mipi.num_of_panel_on_cmds;
1071 mipi_pinfo.lane_swap = pinfo->mipi.lane_swap;
1072 mipi_pinfo.pack = 1;
1073
1074 /* Enable MMSS_AHB_ARB_MATER_PORT_E for
1075 arbiter master0 and master 1 request */
1076#if (!DISPLAY_MIPI_PANEL_RENESAS && !DISPLAY_TYPE_DSI6G && !DISPLAY_TYPE_8610)
1077 writel(0x00001800, MMSS_SFPB_GPREG);
1078#endif
1079
1080 mipi_dsi_phy_init(&mipi_pinfo);
1081
1082 ret += mipi_dsi_panel_initialize(&mipi_pinfo);
1083
1084 if (pinfo->rotate && panel->rotate)
1085 pinfo->rotate();
1086#endif
1087 return ret;
1088}