blob: 44fb235d602a7e6e797d05356fb48d07120e2059 [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 }
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700408 }
409
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800410 writel(0x0001, mipi->ctl_base + SOFT_RESET);
411 writel(0x0000, mipi->ctl_base + SOFT_RESET);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700412
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800413 /* Turn on all DSI Clks */
414 writel((0 << 16) | 0x3f, mipi->ctl_base + CLK_CTRL);
415 writel(DMA_STREAM1 << 8 | 0x04, mipi->ctl_base + TRIG_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700416
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800417 writel(0 << 30 | DLNx_EN << 4 | ctrl_mode, mipi->ctl_base + CTRL);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700418 writel(broadcast << 31 | EMBED_MODE1 << 28 | POWER_MODE2 << 26
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700419 | PACK_TYPE1 << 24 | VC1 << 22 | DT1 << 16 | WC1,
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800420 mipi->ctl_base + COMMAND_MODE_DMA_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700421
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800422 writel(lane_swap, mipi->ctl_base + LANE_SWAP_CTL);
423 writel(timing_ctl, mipi->ctl_base + TIMING_CTL);
Ray Zhang8da5e5d2015-01-21 10:14:09 +0800424
Sandeep Pandad9cc3a92015-05-25 15:19:38 +0530425 if ((mipi->mode == DSI_CMD_MODE) &&
426 (readl(mipi->ctl_base) >= DSI_HW_REV_103)) {
427 uint32_t tmp;
428 tmp = readl(mipi->ctl_base + 0x01b8);
429 tmp |= BIT(16); /* enable burst mode */
430 writel(tmp, mipi->ctl_base + 0x01b8);
431 }
432
Huaibin Yang952dce32015-02-19 18:01:27 -0800433 if ((mipi->mode == DSI_VIDEO_MODE) && mipi->tx_eot_append)
434 writel(0x1, mipi->ctl_base + EOT_PACKET_CTRL);
435
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800436#endif
Siddhartha Agrawal2679a822013-05-31 19:15:12 -0700437
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800438 return 0;
439}
440
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530441void mdss_dsi_panel_shutdown(struct msm_panel_info *pinfo)
442{
443#if (DISPLAY_TYPE_MDSS == 1)
444 unsigned long read_val = 0;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800445 uint32_t ctl_base = pinfo->mipi.ctl_base;
446 uint32_t sctl_base = pinfo->mipi.sctl_base;
447
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530448 if (pinfo->mipi.panel_off_cmds) {
449 /*
450 * Once MDP TG is disabled, reset of DSI controller is
451 * needed before we send panel OFF commands.
452 */
453 if (pinfo->type == MIPI_VIDEO_PANEL) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800454 read_val = readl(ctl_base + CTRL);
455 writel((read_val & ~BIT(0)), ctl_base + CTRL);
456 writel(0x0001, ctl_base + SOFT_RESET);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530457 dsb();
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800458 writel(0x0000, ctl_base + SOFT_RESET);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530459 dsb();
460 /* Enable cmd mode only */
461 writel(((read_val & ~BIT(1)) | BIT(2)),
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800462 ctl_base + CTRL);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530463 }
464
465 if (pinfo->mipi.broadcast) {
466 if (pinfo->type == MIPI_VIDEO_PANEL) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800467 read_val = readl(sctl_base + CTRL);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530468 writel((read_val & ~BIT(0)),
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800469 sctl_base + CTRL);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530470
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800471 writel(0x0001, sctl_base + SOFT_RESET);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530472 dsb();
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800473 writel(0x0000, sctl_base + SOFT_RESET);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530474 dsb();
475
476 writel(((read_val & ~BIT(1)) | BIT(2)),
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800477 sctl_base + CTRL);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530478 }
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530479 }
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800480 mdss_dsi_cmds_tx(&pinfo->mipi, pinfo->mipi.panel_off_cmds,
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800481 pinfo->mipi.num_of_panel_off_cmds,
482 pinfo->mipi.broadcast);
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530483 }
484#endif
485}
486
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800487int mdss_dsi_panel_initialize(struct mipi_panel_info *mipi, uint32_t
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800488 broadcast)
489{
490 int status = 0;
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700491 uint32_t ctrl_mode = 0;
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800492
493#if (DISPLAY_TYPE_MDSS == 1)
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800494 if (!mipi->panel_on_cmds)
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800495 goto end;
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700496
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800497 ctrl_mode = readl(mipi->ctl_base + CTRL);
Siddhartha Agrawal980b5ee2013-05-30 12:17:50 -0700498
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800499 /* Enable command mode before sending the commands. */
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800500 writel(ctrl_mode | 0x04, mipi->ctl_base + CTRL);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800501 if (broadcast)
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800502 writel(ctrl_mode | 0x04, mipi->sctl_base + CTRL);
503 status = mdss_dsi_cmds_tx(mipi, mipi->panel_on_cmds,
504 mipi->num_of_panel_on_cmds, broadcast);
505 writel(ctrl_mode, mipi->ctl_base + CTRL);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800506 if (broadcast)
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800507 writel(ctrl_mode, mipi->sctl_base + CTRL);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800508
509 if (!broadcast && !status && target_panel_auto_detect_enabled())
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800510 status = mdss_dsi_read_panel_signature(mipi);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800511
512end:
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400513#endif
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700514 return status;
515}
516
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700517int mdss_dsi_video_mode_config(struct msm_panel_info *pinfo,
518 uint16_t disp_width,
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700519 uint16_t disp_height,
520 uint16_t img_width,
521 uint16_t img_height,
522 uint16_t hsync_porch0_fp,
523 uint16_t hsync_porch0_bp,
524 uint16_t vsync_porch0_fp,
525 uint16_t vsync_porch0_bp,
526 uint16_t hsync_width,
527 uint16_t vsync_width,
528 uint16_t dst_format,
529 uint16_t traffic_mode,
530 uint8_t lane_en,
Padmanabhan Komandurue3209872015-01-12 16:33:16 +0530531 uint8_t pulse_mode_hsa_he,
532 uint32_t low_pwr_stop_mode,
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700533 uint8_t eof_bllp_pwr,
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700534 uint8_t interleav,
535 uint32_t ctl_base)
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700536{
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700537 int status = 0;
538
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400539#if (DISPLAY_TYPE_MDSS == 1)
Padmanabhan Komanduru684b58f2015-02-11 16:22:51 +0530540 int last_line_interleave_en = 0;
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700541 struct dsc_desc *dsc = NULL;
542
543 if (pinfo->compression_mode == COMPRESSION_DSC)
544 dsc = &pinfo->dsc;
Padmanabhan Komanduru684b58f2015-02-11 16:22:51 +0530545
546 /*Check if EOF_BLLP_PWR_MODE bit is set*/
547 if(eof_bllp_pwr & 0x8)
548 last_line_interleave_en = 1;
549
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700550 writel(0x00000000, ctl_base + CLK_CTRL);
551 writel(0x00000002, ctl_base + CLK_CTRL);
552 writel(0x00000006, ctl_base + CLK_CTRL);
553 writel(0x0000000e, ctl_base + CLK_CTRL);
554 writel(0x0000001e, ctl_base + CLK_CTRL);
555 writel(0x0000023f, ctl_base + CLK_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700556
Padmanabhan Komanduru2f8e0bc2014-11-27 18:25:36 +0530557 writel(0x03f03fe0, ctl_base + ERR_INT_MASK0);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700558
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700559 writel(0x02020202, ctl_base + INT_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700560
Padmanabhan Komandurudaebf6b2014-08-20 20:39:40 +0530561 /* For 8916/8939, enable DSI timing double buffering */
Kuogee Hsieh861e25d2014-10-29 16:50:15 -0700562 if (readl(ctl_base) >= DSI_HW_REV_103 &&
Shivaraj Shetty41d2d482014-11-04 16:07:32 +0530563 mdp_get_revision() != MDP_REV_305)
Padmanabhan Komandurudaebf6b2014-08-20 20:39:40 +0530564 writel(0x1, ctl_base + TIMING_DB_MODE);
565
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700566 writel(((disp_width + hsync_porch0_bp) << 16) | hsync_porch0_bp,
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700567 ctl_base + VIDEO_MODE_ACTIVE_H);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700568
569 writel(((disp_height + vsync_porch0_bp) << 16) | (vsync_porch0_bp),
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700570 ctl_base + VIDEO_MODE_ACTIVE_V);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700571
Terence Hampson7385f6a2013-08-16 15:31:25 -0400572 if (mdp_get_revision() >= MDP_REV_41 ||
Shivaraj Shettyf9e10c42014-09-17 04:21:15 +0530573 mdp_get_revision() == MDP_REV_304 ||
574 mdp_get_revision() == MDP_REV_305) {
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700575 writel(((disp_height + vsync_porch0_fp
576 + vsync_porch0_bp - 1) << 16)
577 | (disp_width + hsync_porch0_fp
578 + hsync_porch0_bp - 1),
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700579 ctl_base + VIDEO_MODE_TOTAL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700580 } else {
581 writel(((disp_height + vsync_porch0_fp
582 + vsync_porch0_bp) << 16)
583 | (disp_width + hsync_porch0_fp
584 + hsync_porch0_bp),
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700585 ctl_base + VIDEO_MODE_TOTAL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700586 }
587
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700588 writel((hsync_width << 16) | 0, ctl_base + VIDEO_MODE_HSYNC);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700589
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700590 writel(0 << 16 | 0, ctl_base + VIDEO_MODE_VSYNC);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700591
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700592 writel(vsync_width << 16 | 0, ctl_base + VIDEO_MODE_VSYNC_VPOS);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700593
Padmanabhan Komandurudaebf6b2014-08-20 20:39:40 +0530594 /* For 8916/8939, flush the DSI timing registers */
Kuogee Hsieh861e25d2014-10-29 16:50:15 -0700595 if (readl(ctl_base) >= DSI_HW_REV_103 &&
Shivaraj Shetty41d2d482014-11-04 16:07:32 +0530596 mdp_get_revision() != MDP_REV_305)
Padmanabhan Komandurudaebf6b2014-08-20 20:39:40 +0530597 writel(0x1, ctl_base + TIMING_FLUSH);
598
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700599 writel(0x0, ctl_base + EOT_PACKET_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700600
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700601 writel(0x00000100, ctl_base + MISR_VIDEO_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700602
Shivaraj Shetty41d2d482014-11-04 16:07:32 +0530603 if (mdp_get_revision() >= MDP_REV_41 || mdp_get_revision() == MDP_REV_305) {
Padmanabhan Komanduru684b58f2015-02-11 16:22:51 +0530604 writel(last_line_interleave_en << 31 | pulse_mode_hsa_he << 28 |
605 low_pwr_stop_mode << 16 | eof_bllp_pwr << 12 |
606 traffic_mode << 8 | dst_format << 4 | 0x0,
607 ctl_base + VIDEO_MODE_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700608 } else {
609 writel(1 << 28 | 1 << 24 | 1 << 20 | low_pwr_stop_mode << 16 |
610 eof_bllp_pwr << 12 | traffic_mode << 8
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700611 | dst_format << 4 | 0x0, ctl_base + VIDEO_MODE_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700612 }
613
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700614 writel(0x3fd08, ctl_base + HS_TIMER_CTRL);
615 writel(0x00010100, ctl_base + MISR_VIDEO_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700616
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700617 writel(0x00010100, ctl_base + INT_CTRL);
618 writel(0x02010202, ctl_base + INT_CTRL);
619 writel(0x02030303, ctl_base + INT_CTRL);
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700620
621 writel(interleav << 30 | 0 << 24 | 0 << 20 | lane_en << 4
Siddhartha Agrawal6e760042013-05-30 21:10:18 -0700622 | 0x103, ctl_base + CTRL);
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700623 if (dsc) {
624 if (dsc->dsi_dsc_config)
625 dsc->dsi_dsc_config(pinfo->mipi.ctl_base, DSI_VIDEO_MODE, dsc);
626 }
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400627#endif
Siddhartha Agrawal06bb82f2013-05-24 12:32:33 -0700628
629 return status;
630}
631
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800632int mdss_dsi_config(struct msm_fb_panel_data *panel)
633{
634 int ret = NO_ERROR;
635 struct msm_panel_info *pinfo;
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800636 struct mipi_panel_info *mipi;
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700637 struct dsc_desc *dsc = NULL;
638 struct mipi_dsi_cmd cmd;
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800639
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400640#if (DISPLAY_TYPE_MDSS == 1)
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800641 if (!panel)
642 return ERR_INVALID_ARGS;
643
644 pinfo = &(panel->panel_info);
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800645 mipi = &(pinfo->mipi);
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800646
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700647
648 if (pinfo->compression_mode == COMPRESSION_DSC) {
649 dsc = &pinfo->dsc;
650 if (dsc) {
651 if (dsc->dsc2buf)
652 dsc->dsc2buf(pinfo);
653 }
654 }
655
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800656 dprintf(SPEW, "ctl_base=0x%08x, phy_base=0x%08x\n", mipi->ctl_base,
657 mipi->phy_base);
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800658
Jeevan Shriram01379322015-01-07 17:41:26 -0800659 mdss_dsi_phy_init(mipi);
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800660
661 ret = mdss_dsi_host_init(mipi, mipi->dual_dsi,
662 mipi->broadcast);
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800663 if (ret) {
664 dprintf(CRITICAL, "dsi host init error\n");
665 goto error;
666 }
667
Aravind Venkateswaran51e57552014-12-09 13:23:19 -0800668 mdss_dsi_phy_contention_detection(mipi, mipi->phy_base);
669 if (mipi->dual_dsi)
670 mdss_dsi_phy_contention_detection(mipi, mipi->sphy_base);
Xiaoming Zhou03fd48b2014-07-31 15:24:41 -0400671
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800672 if (panel->pre_init_func) {
673 ret = panel->pre_init_func();
674 if (ret) {
675 dprintf(CRITICAL, "pre_init_func error\n");
676 goto error;
677 }
678 }
679
Veera Sundaram Sankaran9439eb12016-06-13 13:53:56 -0700680 if (mipi->force_clk_lane_hs)
681 mdss_dsi_force_clk_lane_hs(mipi, mipi->dual_dsi);
682
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800683 if (!mipi->cmds_post_tg) {
684 ret = mdss_dsi_panel_initialize(mipi, mipi->broadcast);
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700685 if (ret) {
686 dprintf(CRITICAL, "dsi panel init error\n");
687 goto error;
688 }
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800689 }
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800690
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700691 if (dsc) {
692 cmd.size = DCS_HDR_LEN + DSC_PPS_LEN;
693 cmd.payload = dsc->pps_buf;
694 cmd.wait = 0x10;
695 mdss_dsi_cmds_tx(mipi, &cmd, 1, mipi->broadcast);
696 }
697
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800698 if (pinfo->rotate && panel->rotate)
699 pinfo->rotate();
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400700#endif
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800701
Ray Zhang4c7e37f2013-12-03 17:04:55 +0800702error:
Siddhartha Agrawal3e694ea2013-01-23 17:01:31 -0800703 return ret;
704}
705
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700706int mdss_dsi_post_on(struct msm_fb_panel_data *panel)
707{
708 int ret = 0;
709 struct msm_panel_info *pinfo = &(panel->panel_info);
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700710
711 if (pinfo->mipi.cmds_post_tg) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800712 ret = mdss_dsi_panel_initialize(&pinfo->mipi, pinfo->mipi.broadcast);
Siddhartha Agrawal007ea9e2014-10-14 15:02:48 -0700713 if (ret) {
714 dprintf(CRITICAL, "dsi panel init error\n");
715 }
716 }
717 return ret;
718}
719
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700720int mdss_dsi_cmd_mode_config(struct msm_panel_info *pinfo,
721 uint16_t disp_width,
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700722 uint16_t disp_height,
723 uint16_t img_width,
724 uint16_t img_height,
725 uint16_t dst_format,
Xiaoming Zhou8d534dd2013-07-29 15:49:19 -0400726 uint8_t ystride,
727 uint8_t lane_en,
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800728 uint8_t interleav,
729 uint32_t ctl_base)
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700730{
Xiaoming Zhou8d534dd2013-07-29 15:49:19 -0400731 uint16_t dst_fmt = 0;
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700732 struct dsc_desc *dsc = NULL;
733 unsigned int data;
Xiaoming Zhou8d534dd2013-07-29 15:49:19 -0400734
735 switch (dst_format) {
736 case DSI_VIDEO_DST_FORMAT_RGB565:
737 dst_fmt = DSI_CMD_DST_FORMAT_RGB565;
738 break;
739 case DSI_VIDEO_DST_FORMAT_RGB666:
740 case DSI_VIDEO_DST_FORMAT_RGB666_LOOSE:
741 dst_fmt = DSI_CMD_DST_FORMAT_RGB666;
742 break;
743 case DSI_VIDEO_DST_FORMAT_RGB888:
744 dst_fmt = DSI_CMD_DST_FORMAT_RGB888;
745 break;
746 default:
747 dprintf(CRITICAL, "unsupported dst format\n");
748 return ERROR;
749 }
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700750
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400751#if (DISPLAY_TYPE_MDSS == 1)
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800752 writel(0x00000000, ctl_base + CLK_CTRL);
753 writel(0x00000000, ctl_base + CLK_CTRL);
754 writel(0x00000000, ctl_base + CLK_CTRL);
755 writel(0x00000000, ctl_base + CLK_CTRL);
756 writel(0x00000002, ctl_base + CLK_CTRL);
757 writel(0x00000006, ctl_base + CLK_CTRL);
758 writel(0x0000000e, ctl_base + CLK_CTRL);
759 writel(0x0000001e, ctl_base + CLK_CTRL);
760 writel(0x0000023f, ctl_base + CLK_CTRL);
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700761
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800762 writel(0, ctl_base + CTRL);
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700763
Padmanabhan Komanduru2f8e0bc2014-11-27 18:25:36 +0530764 writel(0x03f03fe0, ctl_base + ERR_INT_MASK0);
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700765
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800766 writel(0x02020202, ctl_base + INT_CTRL);
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700767
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800768 writel(dst_fmt, ctl_base + COMMAND_MODE_MDP_CTRL);
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700769
770 if (pinfo->compression_mode == COMPRESSION_DSC)
771 dsc = &pinfo->dsc;
772
773 if (dsc) {
774 data = dsc->bytes_per_pkt;
775 if (pinfo->mipi.insert_dcs_cmd)
776 data++;
777 data <<= 16;
778 data |= 0x039;
779 writel(data, ctl_base + COMMAND_MODE_MDP_STREAM0_CTRL);
780 writel(data, ctl_base + COMMAND_MODE_MDP_STREAM1_CTRL);
781 data = dsc->pic_height << 16;
782 data |= dsc->pclk_per_line;
783 writel(data, ctl_base + COMMAND_MODE_MDP_STREAM0_TOTAL);
784 writel(data, ctl_base + COMMAND_MODE_MDP_STREAM1_TOTAL);
785
786 if (dsc->dsi_dsc_config)
Kuogee Hsieh6a8802f2015-09-01 09:11:40 -0700787 dsc->dsi_dsc_config(pinfo->mipi.ctl_base, DSI_CMD_MODE, dsc);
Kuogee Hsiehd58c8092015-07-07 10:31:34 -0700788 } else {
789
790 writel((img_width * ystride + 1) << 16 | 0x0039,
791 ctl_base + COMMAND_MODE_MDP_STREAM0_CTRL);
792 writel((img_width * ystride + 1) << 16 | 0x0039,
793 ctl_base + COMMAND_MODE_MDP_STREAM1_CTRL);
794 writel(img_height << 16 | img_width,
795 ctl_base + COMMAND_MODE_MDP_STREAM0_TOTAL);
796 writel(img_height << 16 | img_width,
797 ctl_base + COMMAND_MODE_MDP_STREAM1_TOTAL);
798 }
799
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800800 writel(0x13c2c, ctl_base + COMMAND_MODE_MDP_DCS_CMD_CTRL);
Xiaoming Zhou8d534dd2013-07-29 15:49:19 -0400801 writel(interleav << 30 | 0 << 24 | 0 << 20 | lane_en << 4 | 0x105,
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800802 ctl_base + CTRL);
Padmanabhan Komanduru7860be52014-03-18 19:07:36 +0530803 writel(0x14000000, ctl_base + COMMAND_MODE_DMA_CTRL);
Dhaval Patel5b22fe72014-01-02 16:28:38 -0800804 writel(0x10000000, ctl_base + MISR_CMD_CTRL);
Xiaoming Zhoua0469332014-03-04 18:34:24 -0500805 writel(0x1, ctl_base + EOT_PACKET_CTRL);
Terence Hampsoncc3345c2013-06-27 15:30:10 -0400806#endif
Xiaoming Zhou8d534dd2013-07-29 15:49:19 -0400807 return 0;
Siddhartha Agrawal7317e482013-04-21 16:16:57 -0700808}
809
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800810int mipi_dsi_on(struct msm_panel_info *pinfo)
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700811{
812 int ret = NO_ERROR;
813 unsigned long ReadValue;
814 unsigned long count = 0;
815
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800816 ReadValue = readl(pinfo->mipi.ctl_base + INT_CTRL) & 0x00010000;
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700817
818 mdelay(10);
819
820 while (ReadValue != 0x00010000) {
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800821 ReadValue = readl(pinfo->mipi.ctl_base + INT_CTRL) & 0x00010000;
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700822 count++;
823 if (count > 0xffff) {
824 dprintf(CRITICAL, "Video lane test failed\n");
825 return ERROR;
826 }
827 }
828
Amir Samuelov2d4ba162012-07-22 11:53:14 +0300829 dprintf(INFO, "Video lane tested successfully\n");
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700830 return ret;
831}
832
Siddhartha Agrawal24d81b52013-07-01 11:13:32 -0700833int mipi_dsi_off(struct msm_panel_info *pinfo)
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700834{
Amol Jadi6834f1a2012-06-29 14:42:59 -0700835 if(!target_cont_splash_screen())
836 {
Padmanabhan Komanduruf8986be2014-11-04 15:57:19 +0530837 mdss_dsi_panel_shutdown(pinfo);
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800838 writel(0, pinfo->mipi.ctl_base + CLK_CTRL);
Naseer Ahmedd2f6de32015-11-27 11:13:09 -0500839 writel(0, pinfo->mipi.ctl_base + CTRL);
Siddhartha Agrawale0033a12013-02-23 15:37:42 -0800840 }
841
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800842 writel(0x1115501, pinfo->mipi.ctl_base + INT_CTRL);
feifanz87f19852015-09-25 11:54:26 +0800843 if (pinfo->mipi.dual_dsi)
Aravind Venkateswaranfec354c2014-12-04 18:10:14 -0800844 writel(0x1115501, pinfo->mipi.sctl_base + INT_CTRL);
Shashank Mittal4bfb2e32012-04-16 10:56:27 -0700845
846 return NO_ERROR;
847}
Channagoud Kadabi10189fd2012-05-25 13:33:39 +0530848
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800849#if (DISPLAY_TYPE_MDSS == 0)
850static int dsi_cmd_dma_trigger_for_panel()
851{
852 unsigned long ReadValue;
853 unsigned long count = 0;
854 int status = 0;
855
856 writel(0x03030303, DSI_INT_CTRL);
857 writel(0x1, DSI_CMD_MODE_DMA_SW_TRIGGER);
858 dsb();
859 ReadValue = readl(DSI_INT_CTRL) & 0x00000001;
860 while (ReadValue != 0x00000001) {
861 ReadValue = readl(DSI_INT_CTRL) & 0x00000001;
862 count++;
863 if (count > 0xffff) {
864 status = FAIL;
865 dprintf(CRITICAL,
866 "Panel CMD: command mode dma test failed\n");
867 return status;
868 }
869 }
870
871 writel((readl(DSI_INT_CTRL) | 0x01000001), DSI_INT_CTRL);
872 dprintf(SPEW, "Panel CMD: command mode dma tested successfully\n");
873 return status;
874}
875
876int mipi_dsi_cmds_tx(struct mipi_dsi_cmd *cmds, int count)
877{
878 int ret = 0;
879 struct mipi_dsi_cmd *cm;
880 int i = 0;
881 char pload[256];
882 uint32_t off;
883
884 /* Align pload at 8 byte boundry */
885 off = pload;
886 off &= 0x07;
887 if (off)
888 off = 8 - off;
889 off += pload;
890
891 cm = cmds;
892 for (i = 0; i < count; i++) {
893 /* Wait for VIDEO_MODE_DONE */
894 ret = mdss_dsi_wait4_video_done();
895 if (ret)
896 goto mipi_cmds_error;
897
898 memcpy((void *)off, (cm->payload), cm->size);
Matthew Qin81933ce2015-02-03 17:58:52 +0800899 arch_clean_invalidate_cache_range((addr_t)(off), size);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -0800900 writel(off, DSI_DMA_CMD_OFFSET);
901 writel(cm->size, DSI_DMA_CMD_LENGTH); // reg 0x48 for this build
902 dsb();
903 ret += dsi_cmd_dma_trigger_for_panel();
904 dsb();
905 if (cm->wait)
906 mdelay(cm->wait);
907 else
908 udelay(80);
909 cm++;
910 }
911mipi_cmds_error:
912 return ret;
913}
914
915/*
916 * mipi_dsi_cmd_rx: can receive at most 16 bytes
917 * per transaction since it only have 4 32bits reigsters
918 * to hold data.
919 * therefore Maximum Return Packet Size need to be set to 16.
920 * any return data more than MRPS need to be break down
921 * to multiple transactions.
922 */
923int mipi_dsi_cmds_rx(char **rp, int len)
924{
925 uint32_t *lp, data;
926 char *dp;
927 int i, off, cnt;
928 int rlen, res;
929
930 if (len <= 2)
931 rlen = 4; /* short read */
932 else
933 rlen = MIPI_DSI_MRPS + 6; /* 4 bytes header + 2 bytes crc */
934
935 if (rlen > MIPI_DSI_REG_LEN) {
936 return 0;
937 }
938
939 res = rlen & 0x03;
940
941 rlen += res; /* 4 byte align */
942 lp = (uint32_t *) (*rp);
943
944 cnt = rlen;
945 cnt += 3;
946 cnt >>= 2;
947
948 if (cnt > 4)
949 cnt = 4; /* 4 x 32 bits registers only */
950
951 off = 0x068; /* DSI_RDBK_DATA0 */
952 off += ((cnt - 1) * 4);
953
954 for (i = 0; i < cnt; i++) {
955 data = (uint32_t) readl(MIPI_DSI_BASE + off);
956 *lp++ = ntohl(data); /* to network byte order */
957 off -= 4;
958 }
959
960 if (len > 2) {
961 /*First 4 bytes + paded bytes will be header next len bytes would be payload */
962 for (i = 0; i < len; i++) {
963 dp = *rp;
964 dp[i] = dp[4 + res + i];
965 }
966 }
967
968 return len;
969}
970
971static int mipi_dsi_panel_initialize(struct mipi_dsi_panel_config *pinfo)
972{
973 uint8_t DMA_STREAM1 = 0; // for mdp display processor path
974 uint8_t EMBED_MODE1 = 1; // from frame buffer
975 uint8_t POWER_MODE2 = 1; // from frame buffer
976 uint8_t PACK_TYPE1; // long packet
977 uint8_t VC1 = 0;
978 uint8_t DT1 = 0; // non embedded mode
979 uint8_t WC1 = 0; // for non embedded mode only
980 int status = 0;
981 uint8_t DLNx_EN;
982
983 switch (pinfo->num_of_lanes) {
984 default:
985 case 1:
986 DLNx_EN = 1; // 1 lane
987 break;
988 case 2:
989 DLNx_EN = 3; // 2 lane
990 break;
991 case 3:
992 DLNx_EN = 7; // 3 lane
993 break;
994 case 4:
995 DLNx_EN = 0x0F; /* 4 lanes */
996 break;
997 }
998
999 PACK_TYPE1 = pinfo->pack;
1000
1001 writel(0x0001, DSI_SOFT_RESET);
1002 writel(0x0000, DSI_SOFT_RESET);
1003
1004 writel((0 << 16) | 0x3f, DSI_CLK_CTRL); /* Turn on all DSI Clks */
1005 writel(DMA_STREAM1 << 8 | 0x04, DSI_TRIG_CTRL); // reg 0x80 dma trigger: sw
1006 // trigger 0x4; dma stream1
1007
1008 writel(0 << 30 | DLNx_EN << 4 | 0x105, DSI_CTRL); // reg 0x00 for this
1009 // build
1010 writel(EMBED_MODE1 << 28 | POWER_MODE2 << 26
1011 | PACK_TYPE1 << 24 | VC1 << 22 | DT1 << 16 | WC1,
1012 DSI_COMMAND_MODE_DMA_CTRL);
1013
1014 if (pinfo->panel_on_cmds)
1015 status = mipi_dsi_cmds_tx(pinfo->panel_on_cmds,
1016 pinfo->num_of_panel_on_cmds);
1017
1018 return status;
1019}
1020#endif
1021
1022void mipi_dsi_shutdown(void)
1023{
1024#if (DISPLAY_TYPE_MDSS == 0)
1025 if(!target_cont_splash_screen())
1026 {
1027 mdp_shutdown();
1028 writel(0x01010101, DSI_INT_CTRL);
1029 writel(0x13FF3BFF, DSI_ERR_INT_MASK0);
1030
1031 writel(0, DSI_CLK_CTRL);
1032 writel(0, DSI_CTRL);
1033 writel(0, DSIPHY_PLL_CTRL(0));
1034 }
1035 else
1036 {
1037 /* To keep the splash screen displayed till kernel driver takes
1038 control, do not turn off the video mode engine and clocks.
1039 Only disabling the MIPI DSI IRQs */
1040 writel(0x01010101, DSI_INT_CTRL);
1041 writel(0x13FF3BFF, DSI_ERR_INT_MASK0);
1042 }
1043#endif
1044}
1045
Channagoud Kadabi10189fd2012-05-25 13:33:39 +05301046int mipi_cmd_trigger()
1047{
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -08001048#if (DISPLAY_TYPE_MDSS == 0)
Channagoud Kadabi10189fd2012-05-25 13:33:39 +05301049 writel(0x1, DSI_CMD_MODE_MDP_SW_TRIGGER);
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -08001050#endif
Channagoud Kadabi10189fd2012-05-25 13:33:39 +05301051 return NO_ERROR;
1052}
Aravind Venkateswarance4dd7f2014-12-04 16:54:26 -08001053
1054int mipi_config(struct msm_fb_panel_data *panel)
1055{
1056 int ret = NO_ERROR;
1057#if (DISPLAY_TYPE_MDSS == 0)
1058 struct msm_panel_info *pinfo;
1059 struct mipi_dsi_panel_config mipi_pinfo;
1060
1061 if (!panel)
1062 return ERR_INVALID_ARGS;
1063
1064 pinfo = &(panel->panel_info);
1065 mipi_pinfo.mode = pinfo->mipi.mode;
1066 mipi_pinfo.num_of_lanes = pinfo->mipi.num_of_lanes;
1067 mipi_pinfo.dsi_phy_config = pinfo->mipi.dsi_phy_db;
1068 mipi_pinfo.panel_on_cmds = pinfo->mipi.panel_on_cmds;
1069 mipi_pinfo.num_of_panel_on_cmds = pinfo->mipi.num_of_panel_on_cmds;
1070 mipi_pinfo.lane_swap = pinfo->mipi.lane_swap;
1071 mipi_pinfo.pack = 1;
1072
1073 /* Enable MMSS_AHB_ARB_MATER_PORT_E for
1074 arbiter master0 and master 1 request */
1075#if (!DISPLAY_MIPI_PANEL_RENESAS && !DISPLAY_TYPE_DSI6G && !DISPLAY_TYPE_8610)
1076 writel(0x00001800, MMSS_SFPB_GPREG);
1077#endif
1078
1079 mipi_dsi_phy_init(&mipi_pinfo);
1080
1081 ret += mipi_dsi_panel_initialize(&mipi_pinfo);
1082
1083 if (pinfo->rotate && panel->rotate)
1084 pinfo->rotate();
1085#endif
1086 return ret;
1087}