blob: 49ae821e82d8c04bda0aaa266e704cbd6ed83549 [file] [log] [blame]
ymohanmabe4fc042013-08-27 23:40:56 +03001/*
2 * Copyright © 2013 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Shobhit Kumar <shobhit.kumar@intel.com>
25 * Yogesh Mohan Marimuthu <yogesh.mohan.marimuthu@intel.com>
26 */
27
28#include <linux/kernel.h>
29#include "intel_drv.h"
30#include "i915_drv.h"
31#include "intel_dsi.h"
32
33#define DSI_HSS_PACKET_SIZE 4
34#define DSI_HSE_PACKET_SIZE 4
35#define DSI_HSA_PACKET_EXTRA_SIZE 6
36#define DSI_HBP_PACKET_EXTRA_SIZE 6
37#define DSI_HACTIVE_PACKET_EXTRA_SIZE 6
38#define DSI_HFP_PACKET_EXTRA_SIZE 6
39#define DSI_EOTP_PACKET_SIZE 4
40
Jani Nikula260c1ad2015-07-01 15:58:50 +030041static int dsi_pixel_format_bpp(int pixel_format)
42{
43 int bpp;
44
45 switch (pixel_format) {
46 default:
47 case VID_MODE_FORMAT_RGB888:
48 case VID_MODE_FORMAT_RGB666_LOOSE:
49 bpp = 24;
50 break;
51 case VID_MODE_FORMAT_RGB666:
52 bpp = 18;
53 break;
54 case VID_MODE_FORMAT_RGB565:
55 bpp = 16;
56 break;
57 }
58
59 return bpp;
60}
61
ymohanmabe4fc042013-08-27 23:40:56 +030062struct dsi_mnp {
63 u32 dsi_pll_ctrl;
64 u32 dsi_pll_div;
65};
66
67static const u32 lfsr_converts[] = {
68 426, 469, 234, 373, 442, 221, 110, 311, 411, /* 62 - 70 */
69 461, 486, 243, 377, 188, 350, 175, 343, 427, 213, /* 71 - 80 */
70 106, 53, 282, 397, 354, 227, 113, 56, 284, 142, /* 81 - 90 */
71 71, 35 /* 91 - 92 */
72};
73
Shobhit Kumar44d4c6e2013-12-10 12:14:56 +053074#ifdef DSI_CLK_FROM_RR
75
Ville Syrjäläa7482142013-09-04 18:25:27 +030076static u32 dsi_rr_formula(const struct drm_display_mode *mode,
ymohanmabe4fc042013-08-27 23:40:56 +030077 int pixel_format, int video_mode_format,
78 int lane_count, bool eotp)
79{
80 u32 bpp;
81 u32 hactive, vactive, hfp, hsync, hbp, vfp, vsync, vbp;
82 u32 hsync_bytes, hbp_bytes, hactive_bytes, hfp_bytes;
83 u32 bytes_per_line, bytes_per_frame;
84 u32 num_frames;
85 u32 bytes_per_x_frames, bytes_per_x_frames_x_lanes;
86 u32 dsi_bit_clock_hz;
87 u32 dsi_clk;
88
Jani Nikula260c1ad2015-07-01 15:58:50 +030089 bpp = dsi_pixel_format_bpp(pixel_format);
ymohanmabe4fc042013-08-27 23:40:56 +030090
91 hactive = mode->hdisplay;
92 vactive = mode->vdisplay;
93 hfp = mode->hsync_start - mode->hdisplay;
94 hsync = mode->hsync_end - mode->hsync_start;
95 hbp = mode->htotal - mode->hsync_end;
96
97 vfp = mode->vsync_start - mode->vdisplay;
98 vsync = mode->vsync_end - mode->vsync_start;
99 vbp = mode->vtotal - mode->vsync_end;
100
101 hsync_bytes = DIV_ROUND_UP(hsync * bpp, 8);
102 hbp_bytes = DIV_ROUND_UP(hbp * bpp, 8);
103 hactive_bytes = DIV_ROUND_UP(hactive * bpp, 8);
104 hfp_bytes = DIV_ROUND_UP(hfp * bpp, 8);
105
106 bytes_per_line = DSI_HSS_PACKET_SIZE + hsync_bytes +
107 DSI_HSA_PACKET_EXTRA_SIZE + DSI_HSE_PACKET_SIZE +
108 hbp_bytes + DSI_HBP_PACKET_EXTRA_SIZE +
109 hactive_bytes + DSI_HACTIVE_PACKET_EXTRA_SIZE +
110 hfp_bytes + DSI_HFP_PACKET_EXTRA_SIZE;
111
112 /*
113 * XXX: Need to accurately calculate LP to HS transition timeout and add
114 * it to bytes_per_line/bytes_per_frame.
115 */
116
117 if (eotp && video_mode_format == VIDEO_MODE_BURST)
118 bytes_per_line += DSI_EOTP_PACKET_SIZE;
119
120 bytes_per_frame = vsync * bytes_per_line + vbp * bytes_per_line +
121 vactive * bytes_per_line + vfp * bytes_per_line;
122
123 if (eotp &&
124 (video_mode_format == VIDEO_MODE_NON_BURST_WITH_SYNC_PULSE ||
125 video_mode_format == VIDEO_MODE_NON_BURST_WITH_SYNC_EVENTS))
126 bytes_per_frame += DSI_EOTP_PACKET_SIZE;
127
128 num_frames = drm_mode_vrefresh(mode);
129 bytes_per_x_frames = num_frames * bytes_per_frame;
130
131 bytes_per_x_frames_x_lanes = bytes_per_x_frames / lane_count;
132
133 /* the dsi clock is divided by 2 in the hardware to get dsi ddr clock */
134 dsi_bit_clock_hz = bytes_per_x_frames_x_lanes * 8;
Shobhit Kumar44d4c6e2013-12-10 12:14:56 +0530135 dsi_clk = dsi_bit_clock_hz / 1000;
ymohanmabe4fc042013-08-27 23:40:56 +0300136
137 if (eotp && video_mode_format == VIDEO_MODE_BURST)
138 dsi_clk *= 2;
139
140 return dsi_clk;
141}
142
Shobhit Kumar44d4c6e2013-12-10 12:14:56 +0530143#else
ymohanmabe4fc042013-08-27 23:40:56 +0300144
Shobhit Kumar44d4c6e2013-12-10 12:14:56 +0530145/* Get DSI clock from pixel clock */
Shobhit Kumar7f0c8602014-07-30 20:34:57 +0530146static u32 dsi_clk_from_pclk(u32 pclk, int pixel_format, int lane_count)
ymohanmabe4fc042013-08-27 23:40:56 +0300147{
Shobhit Kumar44d4c6e2013-12-10 12:14:56 +0530148 u32 dsi_clk_khz;
Jani Nikula260c1ad2015-07-01 15:58:50 +0300149 u32 bpp = dsi_pixel_format_bpp(pixel_format);
ymohanmabe4fc042013-08-27 23:40:56 +0300150
Shobhit Kumar44d4c6e2013-12-10 12:14:56 +0530151 /* DSI data rate = pixel clock * bits per pixel / lane count
152 pixel clock is converted from KHz to Hz */
Shobhit Kumar7f0c8602014-07-30 20:34:57 +0530153 dsi_clk_khz = DIV_ROUND_CLOSEST(pclk * bpp, lane_count);
ymohanmabe4fc042013-08-27 23:40:56 +0300154
Shobhit Kumar44d4c6e2013-12-10 12:14:56 +0530155 return dsi_clk_khz;
ymohanmabe4fc042013-08-27 23:40:56 +0300156}
157
Shobhit Kumar44d4c6e2013-12-10 12:14:56 +0530158#endif
ymohanmabe4fc042013-08-27 23:40:56 +0300159
Jani Nikula7471bf42015-05-12 15:23:09 +0300160static int dsi_calc_mnp(int target_dsi_clk, struct dsi_mnp *dsi_mnp)
ymohanmabe4fc042013-08-27 23:40:56 +0300161{
Jani Nikula7471bf42015-05-12 15:23:09 +0300162 unsigned int calc_m = 0, calc_p = 0;
Jani Nikulaa856c5b2015-05-13 10:35:25 +0300163 unsigned int m, n = 1, p;
Jani Nikula7471bf42015-05-12 15:23:09 +0300164 int ref_clk = 25000;
165 int delta = target_dsi_clk;
ymohanmabe4fc042013-08-27 23:40:56 +0300166 u32 m_seed;
167
Jani Nikula7471bf42015-05-12 15:23:09 +0300168 /* target_dsi_clk is expected in kHz */
169 if (target_dsi_clk < 300000 || target_dsi_clk > 1150000) {
ymohanmabe4fc042013-08-27 23:40:56 +0300170 DRM_ERROR("DSI CLK Out of Range\n");
171 return -ECHRNG;
172 }
173
Jani Nikula7471bf42015-05-12 15:23:09 +0300174 for (m = 62; m <= 92 && delta; m++) {
175 for (p = 2; p <= 6 && delta; p++) {
176 /*
177 * Find the optimal m and p divisors with minimal delta
178 * +/- the required clock
179 */
Jani Nikulaa856c5b2015-05-13 10:35:25 +0300180 int calc_dsi_clk = (m * ref_clk) / (p * n);
Jani Nikula7471bf42015-05-12 15:23:09 +0300181 int d = abs(target_dsi_clk - calc_dsi_clk);
182 if (d < delta) {
183 delta = d;
Shobhit Kumar8e1eed52013-12-10 12:14:57 +0530184 calc_m = m;
185 calc_p = p;
ymohanmabe4fc042013-08-27 23:40:56 +0300186 }
187 }
188 }
189
Jani Nikulaa856c5b2015-05-13 10:35:25 +0300190 /* register has log2(N1), this works fine for powers of two */
191 n = ffs(n) - 1;
ymohanmabe4fc042013-08-27 23:40:56 +0300192 m_seed = lfsr_converts[calc_m - 62];
ymohanmabe4fc042013-08-27 23:40:56 +0300193 dsi_mnp->dsi_pll_ctrl = 1 << (DSI_PLL_P1_POST_DIV_SHIFT + calc_p - 2);
Jani Nikulaa856c5b2015-05-13 10:35:25 +0300194 dsi_mnp->dsi_pll_div = n << DSI_PLL_N1_DIV_SHIFT |
ymohanmabe4fc042013-08-27 23:40:56 +0300195 m_seed << DSI_PLL_M1_DIV_SHIFT;
196
197 return 0;
198}
199
ymohanmabe4fc042013-08-27 23:40:56 +0300200/*
201 * XXX: The muxing and gating is hard coded for now. Need to add support for
202 * sharing PLLs with two DSI outputs.
203 */
204static void vlv_configure_dsi_pll(struct intel_encoder *encoder)
205{
206 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
ymohanmabe4fc042013-08-27 23:40:56 +0300207 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
208 int ret;
209 struct dsi_mnp dsi_mnp;
210 u32 dsi_clk;
211
Shobhit Kumar7f0c8602014-07-30 20:34:57 +0530212 dsi_clk = dsi_clk_from_pclk(intel_dsi->pclk, intel_dsi->pixel_format,
Daniel Vetter7f3de832014-07-30 22:34:27 +0200213 intel_dsi->lane_count);
ymohanmabe4fc042013-08-27 23:40:56 +0300214
215 ret = dsi_calc_mnp(dsi_clk, &dsi_mnp);
216 if (ret) {
217 DRM_DEBUG_KMS("dsi_calc_mnp failed\n");
218 return;
219 }
220
Gaurav K Singh3c860ab2014-12-09 10:57:00 +0530221 if (intel_dsi->ports & (1 << PORT_A))
222 dsi_mnp.dsi_pll_ctrl |= DSI_PLL_CLK_GATE_DSI0_DSIPLL;
ymohanmabe4fc042013-08-27 23:40:56 +0300223
Gaurav K Singh3c860ab2014-12-09 10:57:00 +0530224 if (intel_dsi->ports & (1 << PORT_C))
Gaurav K Singh58cf8882014-12-04 10:58:52 +0530225 dsi_mnp.dsi_pll_ctrl |= DSI_PLL_CLK_GATE_DSI1_DSIPLL;
226
ymohanmabe4fc042013-08-27 23:40:56 +0300227 DRM_DEBUG_KMS("dsi pll div %08x, ctrl %08x\n",
228 dsi_mnp.dsi_pll_div, dsi_mnp.dsi_pll_ctrl);
229
230 vlv_cck_write(dev_priv, CCK_REG_DSI_PLL_CONTROL, 0);
231 vlv_cck_write(dev_priv, CCK_REG_DSI_PLL_DIVIDER, dsi_mnp.dsi_pll_div);
232 vlv_cck_write(dev_priv, CCK_REG_DSI_PLL_CONTROL, dsi_mnp.dsi_pll_ctrl);
233}
234
235void vlv_enable_dsi_pll(struct intel_encoder *encoder)
236{
237 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
238 u32 tmp;
239
240 DRM_DEBUG_KMS("\n");
241
Ville Syrjäläa5805162015-05-26 20:42:30 +0300242 mutex_lock(&dev_priv->sb_lock);
ymohanmabe4fc042013-08-27 23:40:56 +0300243
244 vlv_configure_dsi_pll(encoder);
245
246 /* wait at least 0.5 us after ungating before enabling VCO */
247 usleep_range(1, 10);
248
249 tmp = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
250 tmp |= DSI_PLL_VCO_EN;
251 vlv_cck_write(dev_priv, CCK_REG_DSI_PLL_CONTROL, tmp);
252
Gaurav K Singh3770f0e2014-12-05 14:16:58 +0530253 if (wait_for(vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL) &
254 DSI_PLL_LOCK, 20)) {
ymohanmabe4fc042013-08-27 23:40:56 +0300255
Ville Syrjäläa5805162015-05-26 20:42:30 +0300256 mutex_unlock(&dev_priv->sb_lock);
ymohanmabe4fc042013-08-27 23:40:56 +0300257 DRM_ERROR("DSI PLL lock failed\n");
258 return;
259 }
Ville Syrjäläa5805162015-05-26 20:42:30 +0300260 mutex_unlock(&dev_priv->sb_lock);
ymohanmabe4fc042013-08-27 23:40:56 +0300261
262 DRM_DEBUG_KMS("DSI PLL locked\n");
263}
264
265void vlv_disable_dsi_pll(struct intel_encoder *encoder)
266{
267 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
268 u32 tmp;
269
270 DRM_DEBUG_KMS("\n");
271
Ville Syrjäläa5805162015-05-26 20:42:30 +0300272 mutex_lock(&dev_priv->sb_lock);
ymohanmabe4fc042013-08-27 23:40:56 +0300273
274 tmp = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
275 tmp &= ~DSI_PLL_VCO_EN;
276 tmp |= DSI_PLL_LDO_GATE;
277 vlv_cck_write(dev_priv, CCK_REG_DSI_PLL_CONTROL, tmp);
278
Ville Syrjäläa5805162015-05-26 20:42:30 +0300279 mutex_unlock(&dev_priv->sb_lock);
ymohanmabe4fc042013-08-27 23:40:56 +0300280}
Shobhit Kumarf573de52014-07-30 20:32:37 +0530281
282static void assert_bpp_mismatch(int pixel_format, int pipe_bpp)
283{
Jani Nikula260c1ad2015-07-01 15:58:50 +0300284 int bpp = dsi_pixel_format_bpp(pixel_format);
Shobhit Kumarf573de52014-07-30 20:32:37 +0530285
286 WARN(bpp != pipe_bpp,
Daniel Vetter7f3de832014-07-30 22:34:27 +0200287 "bpp match assertion failure (expected %d, current %d)\n",
288 bpp, pipe_bpp);
Shobhit Kumarf573de52014-07-30 20:32:37 +0530289}
290
291u32 vlv_get_dsi_pclk(struct intel_encoder *encoder, int pipe_bpp)
292{
293 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
294 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
295 u32 dsi_clock, pclk;
296 u32 pll_ctl, pll_div;
Jani Nikulaa856c5b2015-05-13 10:35:25 +0300297 u32 m = 0, p = 0, n;
Shobhit Kumarf573de52014-07-30 20:32:37 +0530298 int refclk = 25000;
299 int i;
300
301 DRM_DEBUG_KMS("\n");
302
Ville Syrjäläa5805162015-05-26 20:42:30 +0300303 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumarf573de52014-07-30 20:32:37 +0530304 pll_ctl = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
305 pll_div = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_DIVIDER);
Ville Syrjäläa5805162015-05-26 20:42:30 +0300306 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumarf573de52014-07-30 20:32:37 +0530307
308 /* mask out other bits and extract the P1 divisor */
309 pll_ctl &= DSI_PLL_P1_POST_DIV_MASK;
310 pll_ctl = pll_ctl >> (DSI_PLL_P1_POST_DIV_SHIFT - 2);
311
Jani Nikulaa856c5b2015-05-13 10:35:25 +0300312 /* N1 divisor */
313 n = (pll_div & DSI_PLL_N1_DIV_MASK) >> DSI_PLL_N1_DIV_SHIFT;
314 n = 1 << n; /* register has log2(N1) */
315
Shobhit Kumarf573de52014-07-30 20:32:37 +0530316 /* mask out the other bits and extract the M1 divisor */
317 pll_div &= DSI_PLL_M1_DIV_MASK;
318 pll_div = pll_div >> DSI_PLL_M1_DIV_SHIFT;
319
320 while (pll_ctl) {
321 pll_ctl = pll_ctl >> 1;
322 p++;
323 }
324 p--;
325
326 if (!p) {
327 DRM_ERROR("wrong P1 divisor\n");
328 return 0;
329 }
330
331 for (i = 0; i < ARRAY_SIZE(lfsr_converts); i++) {
332 if (lfsr_converts[i] == pll_div)
333 break;
334 }
335
336 if (i == ARRAY_SIZE(lfsr_converts)) {
337 DRM_ERROR("wrong m_seed programmed\n");
338 return 0;
339 }
340
341 m = i + 62;
342
Jani Nikulaa856c5b2015-05-13 10:35:25 +0300343 dsi_clock = (m * refclk) / (p * n);
Shobhit Kumarf573de52014-07-30 20:32:37 +0530344
345 /* pixel_format and pipe_bpp should agree */
346 assert_bpp_mismatch(intel_dsi->pixel_format, pipe_bpp);
347
348 pclk = DIV_ROUND_CLOSEST(dsi_clock * intel_dsi->lane_count, pipe_bpp);
349
350 return pclk;
351}