blob: 60dfb5666a2506e060467ba8de880e636bc4bbe8 [file] [log] [blame]
Chris Zhong84e05402016-01-06 16:12:54 +08001/*
2 * Copyright (c) 2016, Fuzhou Rockchip Electronics Co., Ltd
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 */
9#include <linux/clk.h>
10#include <linux/component.h>
11#include <linux/iopoll.h>
12#include <linux/math64.h>
13#include <linux/module.h>
14#include <linux/of_device.h>
15#include <linux/regmap.h>
16#include <linux/mfd/syscon.h>
17#include <drm/drm_atomic_helper.h>
18#include <drm/drm_crtc.h>
19#include <drm/drm_crtc_helper.h>
20#include <drm/drm_mipi_dsi.h>
21#include <drm/drm_of.h>
22#include <drm/drm_panel.h>
23#include <drm/drmP.h>
24#include <video/mipi_display.h>
25
26#include "rockchip_drm_drv.h"
27#include "rockchip_drm_vop.h"
28
29#define DRIVER_NAME "dw-mipi-dsi"
30
31#define GRF_SOC_CON6 0x025c
32#define DSI0_SEL_VOP_LIT (1 << 6)
33#define DSI1_SEL_VOP_LIT (1 << 9)
34
35#define DSI_VERSION 0x00
36#define DSI_PWR_UP 0x04
37#define RESET 0
38#define POWERUP BIT(0)
39
40#define DSI_CLKMGR_CFG 0x08
41#define TO_CLK_DIVIDSION(div) (((div) & 0xff) << 8)
42#define TX_ESC_CLK_DIVIDSION(div) (((div) & 0xff) << 0)
43
44#define DSI_DPI_VCID 0x0c
45#define DPI_VID(vid) (((vid) & 0x3) << 0)
46
47#define DSI_DPI_COLOR_CODING 0x10
48#define EN18_LOOSELY BIT(8)
49#define DPI_COLOR_CODING_16BIT_1 0x0
50#define DPI_COLOR_CODING_16BIT_2 0x1
51#define DPI_COLOR_CODING_16BIT_3 0x2
52#define DPI_COLOR_CODING_18BIT_1 0x3
53#define DPI_COLOR_CODING_18BIT_2 0x4
54#define DPI_COLOR_CODING_24BIT 0x5
55
56#define DSI_DPI_CFG_POL 0x14
57#define COLORM_ACTIVE_LOW BIT(4)
58#define SHUTD_ACTIVE_LOW BIT(3)
59#define HSYNC_ACTIVE_LOW BIT(2)
60#define VSYNC_ACTIVE_LOW BIT(1)
61#define DATAEN_ACTIVE_LOW BIT(0)
62
63#define DSI_DPI_LP_CMD_TIM 0x18
64#define OUTVACT_LPCMD_TIME(p) (((p) & 0xff) << 16)
65#define INVACT_LPCMD_TIME(p) ((p) & 0xff)
66
67#define DSI_DBI_CFG 0x20
68#define DSI_DBI_CMDSIZE 0x28
69
70#define DSI_PCKHDL_CFG 0x2c
71#define EN_CRC_RX BIT(4)
72#define EN_ECC_RX BIT(3)
73#define EN_BTA BIT(2)
74#define EN_EOTP_RX BIT(1)
75#define EN_EOTP_TX BIT(0)
76
77#define DSI_MODE_CFG 0x34
78#define ENABLE_VIDEO_MODE 0
79#define ENABLE_CMD_MODE BIT(0)
80
81#define DSI_VID_MODE_CFG 0x38
82#define FRAME_BTA_ACK BIT(14)
83#define ENABLE_LOW_POWER (0x3f << 8)
84#define ENABLE_LOW_POWER_MASK (0x3f << 8)
85#define VID_MODE_TYPE_BURST_SYNC_PULSES 0x2
86#define VID_MODE_TYPE_MASK 0x3
87
88#define DSI_VID_PKT_SIZE 0x3c
89#define VID_PKT_SIZE(p) (((p) & 0x3fff) << 0)
90#define VID_PKT_MAX_SIZE 0x3fff
91
92#define DSI_VID_HSA_TIME 0x48
93#define DSI_VID_HBP_TIME 0x4c
94#define DSI_VID_HLINE_TIME 0x50
95#define DSI_VID_VSA_LINES 0x54
96#define DSI_VID_VBP_LINES 0x58
97#define DSI_VID_VFP_LINES 0x5c
98#define DSI_VID_VACTIVE_LINES 0x60
99#define DSI_CMD_MODE_CFG 0x68
100#define MAX_RD_PKT_SIZE_LP BIT(24)
101#define DCS_LW_TX_LP BIT(19)
102#define DCS_SR_0P_TX_LP BIT(18)
103#define DCS_SW_1P_TX_LP BIT(17)
104#define DCS_SW_0P_TX_LP BIT(16)
105#define GEN_LW_TX_LP BIT(14)
106#define GEN_SR_2P_TX_LP BIT(13)
107#define GEN_SR_1P_TX_LP BIT(12)
108#define GEN_SR_0P_TX_LP BIT(11)
109#define GEN_SW_2P_TX_LP BIT(10)
110#define GEN_SW_1P_TX_LP BIT(9)
111#define GEN_SW_0P_TX_LP BIT(8)
112#define EN_ACK_RQST BIT(1)
113#define EN_TEAR_FX BIT(0)
114
115#define CMD_MODE_ALL_LP (MAX_RD_PKT_SIZE_LP | \
116 DCS_LW_TX_LP | \
117 DCS_SR_0P_TX_LP | \
118 DCS_SW_1P_TX_LP | \
119 DCS_SW_0P_TX_LP | \
120 GEN_LW_TX_LP | \
121 GEN_SR_2P_TX_LP | \
122 GEN_SR_1P_TX_LP | \
123 GEN_SR_0P_TX_LP | \
124 GEN_SW_2P_TX_LP | \
125 GEN_SW_1P_TX_LP | \
126 GEN_SW_0P_TX_LP)
127
128#define DSI_GEN_HDR 0x6c
129#define GEN_HDATA(data) (((data) & 0xffff) << 8)
130#define GEN_HDATA_MASK (0xffff << 8)
131#define GEN_HTYPE(type) (((type) & 0xff) << 0)
132#define GEN_HTYPE_MASK 0xff
133
134#define DSI_GEN_PLD_DATA 0x70
135
136#define DSI_CMD_PKT_STATUS 0x74
137#define GEN_CMD_EMPTY BIT(0)
138#define GEN_CMD_FULL BIT(1)
139#define GEN_PLD_W_EMPTY BIT(2)
140#define GEN_PLD_W_FULL BIT(3)
141#define GEN_PLD_R_EMPTY BIT(4)
142#define GEN_PLD_R_FULL BIT(5)
143#define GEN_RD_CMD_BUSY BIT(6)
144
145#define DSI_TO_CNT_CFG 0x78
146#define HSTX_TO_CNT(p) (((p) & 0xffff) << 16)
147#define LPRX_TO_CNT(p) ((p) & 0xffff)
148
149#define DSI_BTA_TO_CNT 0x8c
150
151#define DSI_LPCLK_CTRL 0x94
152#define AUTO_CLKLANE_CTRL BIT(1)
153#define PHY_TXREQUESTCLKHS BIT(0)
154
155#define DSI_PHY_TMR_LPCLK_CFG 0x98
156#define PHY_CLKHS2LP_TIME(lbcc) (((lbcc) & 0x3ff) << 16)
157#define PHY_CLKLP2HS_TIME(lbcc) ((lbcc) & 0x3ff)
158
159#define DSI_PHY_TMR_CFG 0x9c
160#define PHY_HS2LP_TIME(lbcc) (((lbcc) & 0xff) << 24)
161#define PHY_LP2HS_TIME(lbcc) (((lbcc) & 0xff) << 16)
162#define MAX_RD_TIME(lbcc) ((lbcc) & 0x7fff)
163
164#define DSI_PHY_RSTZ 0xa0
165#define PHY_DISFORCEPLL 0
166#define PHY_ENFORCEPLL BIT(3)
167#define PHY_DISABLECLK 0
168#define PHY_ENABLECLK BIT(2)
169#define PHY_RSTZ 0
170#define PHY_UNRSTZ BIT(1)
171#define PHY_SHUTDOWNZ 0
172#define PHY_UNSHUTDOWNZ BIT(0)
173
174#define DSI_PHY_IF_CFG 0xa4
175#define N_LANES(n) ((((n) - 1) & 0x3) << 0)
176#define PHY_STOP_WAIT_TIME(cycle) (((cycle) & 0xff) << 8)
177
178#define DSI_PHY_STATUS 0xb0
179#define LOCK BIT(0)
180#define STOP_STATE_CLK_LANE BIT(2)
181
182#define DSI_PHY_TST_CTRL0 0xb4
183#define PHY_TESTCLK BIT(1)
184#define PHY_UNTESTCLK 0
185#define PHY_TESTCLR BIT(0)
186#define PHY_UNTESTCLR 0
187
188#define DSI_PHY_TST_CTRL1 0xb8
189#define PHY_TESTEN BIT(16)
190#define PHY_UNTESTEN 0
191#define PHY_TESTDOUT(n) (((n) & 0xff) << 8)
192#define PHY_TESTDIN(n) (((n) & 0xff) << 0)
193
194#define DSI_INT_ST0 0xbc
195#define DSI_INT_ST1 0xc0
196#define DSI_INT_MSK0 0xc4
197#define DSI_INT_MSK1 0xc8
198
199#define PHY_STATUS_TIMEOUT_US 10000
200#define CMD_PKT_STATUS_TIMEOUT_US 20000
201
202#define BYPASS_VCO_RANGE BIT(7)
203#define VCO_RANGE_CON_SEL(val) (((val) & 0x7) << 3)
204#define VCO_IN_CAP_CON_DEFAULT (0x0 << 1)
205#define VCO_IN_CAP_CON_LOW (0x1 << 1)
206#define VCO_IN_CAP_CON_HIGH (0x2 << 1)
207#define REF_BIAS_CUR_SEL BIT(0)
208
209#define CP_CURRENT_3MA BIT(3)
210#define CP_PROGRAM_EN BIT(7)
211#define LPF_PROGRAM_EN BIT(6)
212#define LPF_RESISTORS_20_KOHM 0
213
214#define HSFREQRANGE_SEL(val) (((val) & 0x3f) << 1)
215
216#define INPUT_DIVIDER(val) ((val - 1) & 0x7f)
217#define LOW_PROGRAM_EN 0
218#define HIGH_PROGRAM_EN BIT(7)
219#define LOOP_DIV_LOW_SEL(val) ((val - 1) & 0x1f)
220#define LOOP_DIV_HIGH_SEL(val) (((val - 1) >> 5) & 0x1f)
221#define PLL_LOOP_DIV_EN BIT(5)
222#define PLL_INPUT_DIV_EN BIT(4)
223
224#define POWER_CONTROL BIT(6)
225#define INTERNAL_REG_CURRENT BIT(3)
226#define BIAS_BLOCK_ON BIT(2)
227#define BANDGAP_ON BIT(0)
228
229#define TER_RESISTOR_HIGH BIT(7)
230#define TER_RESISTOR_LOW 0
231#define LEVEL_SHIFTERS_ON BIT(6)
232#define TER_CAL_DONE BIT(5)
233#define SETRD_MAX (0x7 << 2)
234#define POWER_MANAGE BIT(1)
235#define TER_RESISTORS_ON BIT(0)
236
237#define BIASEXTR_SEL(val) ((val) & 0x7)
238#define BANDGAP_SEL(val) ((val) & 0x7)
239#define TLP_PROGRAM_EN BIT(7)
240#define THS_PRE_PROGRAM_EN BIT(7)
241#define THS_ZERO_PROGRAM_EN BIT(6)
242
243enum {
244 BANDGAP_97_07,
245 BANDGAP_98_05,
246 BANDGAP_99_02,
247 BANDGAP_100_00,
248 BANDGAP_93_17,
249 BANDGAP_94_15,
250 BANDGAP_95_12,
251 BANDGAP_96_10,
252};
253
254enum {
255 BIASEXTR_87_1,
256 BIASEXTR_91_5,
257 BIASEXTR_95_9,
258 BIASEXTR_100,
259 BIASEXTR_105_94,
260 BIASEXTR_111_88,
261 BIASEXTR_118_8,
262 BIASEXTR_127_7,
263};
264
265struct dw_mipi_dsi_plat_data {
266 unsigned int max_data_lanes;
267 enum drm_mode_status (*mode_valid)(struct drm_connector *connector,
268 struct drm_display_mode *mode);
269};
270
271struct dw_mipi_dsi {
272 struct drm_encoder encoder;
273 struct drm_connector connector;
274 struct mipi_dsi_host dsi_host;
275 struct drm_panel *panel;
276 struct device *dev;
277 struct regmap *grf_regmap;
278 void __iomem *base;
279
280 struct clk *pllref_clk;
281 struct clk *pclk;
282
283 unsigned int lane_mbps; /* per lane */
284 u32 channel;
285 u32 lanes;
286 u32 format;
287 u16 input_div;
288 u16 feedback_div;
Chris Zhong84e05402016-01-06 16:12:54 +0800289
290 const struct dw_mipi_dsi_plat_data *pdata;
291};
292
293enum dw_mipi_dsi_mode {
294 DW_MIPI_DSI_CMD_MODE,
295 DW_MIPI_DSI_VID_MODE,
296};
297
298struct dphy_pll_testdin_map {
299 unsigned int max_mbps;
300 u8 testdin;
301};
302
303/* The table is based on 27MHz DPHY pll reference clock. */
304static const struct dphy_pll_testdin_map dptdin_map[] = {
305 { 90, 0x00}, { 100, 0x10}, { 110, 0x20}, { 130, 0x01},
306 { 140, 0x11}, { 150, 0x21}, { 170, 0x02}, { 180, 0x12},
307 { 200, 0x22}, { 220, 0x03}, { 240, 0x13}, { 250, 0x23},
308 { 270, 0x04}, { 300, 0x14}, { 330, 0x05}, { 360, 0x15},
309 { 400, 0x25}, { 450, 0x06}, { 500, 0x16}, { 550, 0x07},
310 { 600, 0x17}, { 650, 0x08}, { 700, 0x18}, { 750, 0x09},
311 { 800, 0x19}, { 850, 0x29}, { 900, 0x39}, { 950, 0x0a},
312 {1000, 0x1a}, {1050, 0x2a}, {1100, 0x3a}, {1150, 0x0b},
313 {1200, 0x1b}, {1250, 0x2b}, {1300, 0x3b}, {1350, 0x0c},
314 {1400, 0x1c}, {1450, 0x2c}, {1500, 0x3c}
315};
316
317static int max_mbps_to_testdin(unsigned int max_mbps)
318{
319 int i;
320
321 for (i = 0; i < ARRAY_SIZE(dptdin_map); i++)
322 if (dptdin_map[i].max_mbps > max_mbps)
323 return dptdin_map[i].testdin;
324
325 return -EINVAL;
326}
327
328/*
329 * The controller should generate 2 frames before
330 * preparing the peripheral.
331 */
John Keeping0f2c3ad2017-02-24 12:54:45 +0000332static void dw_mipi_dsi_wait_for_two_frames(struct drm_display_mode *mode)
Chris Zhong84e05402016-01-06 16:12:54 +0800333{
334 int refresh, two_frames;
335
John Keeping0f2c3ad2017-02-24 12:54:45 +0000336 refresh = drm_mode_vrefresh(mode);
Chris Zhong84e05402016-01-06 16:12:54 +0800337 two_frames = DIV_ROUND_UP(MSEC_PER_SEC, refresh) * 2;
338 msleep(two_frames);
339}
340
341static inline struct dw_mipi_dsi *host_to_dsi(struct mipi_dsi_host *host)
342{
343 return container_of(host, struct dw_mipi_dsi, dsi_host);
344}
345
346static inline struct dw_mipi_dsi *con_to_dsi(struct drm_connector *con)
347{
348 return container_of(con, struct dw_mipi_dsi, connector);
349}
350
351static inline struct dw_mipi_dsi *encoder_to_dsi(struct drm_encoder *encoder)
352{
353 return container_of(encoder, struct dw_mipi_dsi, encoder);
354}
355static inline void dsi_write(struct dw_mipi_dsi *dsi, u32 reg, u32 val)
356{
357 writel(val, dsi->base + reg);
358}
359
360static inline u32 dsi_read(struct dw_mipi_dsi *dsi, u32 reg)
361{
362 return readl(dsi->base + reg);
363}
364
365static void dw_mipi_dsi_phy_write(struct dw_mipi_dsi *dsi, u8 test_code,
366 u8 test_data)
367{
368 /*
369 * With the falling edge on TESTCLK, the TESTDIN[7:0] signal content
370 * is latched internally as the current test code. Test data is
371 * programmed internally by rising edge on TESTCLK.
372 */
373 dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_TESTCLK | PHY_UNTESTCLR);
374
375 dsi_write(dsi, DSI_PHY_TST_CTRL1, PHY_TESTEN | PHY_TESTDOUT(0) |
376 PHY_TESTDIN(test_code));
377
378 dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_UNTESTCLK | PHY_UNTESTCLR);
379
380 dsi_write(dsi, DSI_PHY_TST_CTRL1, PHY_UNTESTEN | PHY_TESTDOUT(0) |
381 PHY_TESTDIN(test_data));
382
383 dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_TESTCLK | PHY_UNTESTCLR);
384}
385
John Keeping3fdfb4f2017-02-24 12:54:59 +0000386/**
387 * ns2bc - Nanoseconds to byte clock cycles
388 */
389static inline unsigned int ns2bc(struct dw_mipi_dsi *dsi, int ns)
390{
391 return DIV_ROUND_UP(ns * dsi->lane_mbps / 8, 1000);
392}
393
394/**
395 * ns2ui - Nanoseconds to UI time periods
396 */
397static inline unsigned int ns2ui(struct dw_mipi_dsi *dsi, int ns)
398{
399 return DIV_ROUND_UP(ns * dsi->lane_mbps, 1000);
400}
401
Chris Zhong84e05402016-01-06 16:12:54 +0800402static int dw_mipi_dsi_phy_init(struct dw_mipi_dsi *dsi)
403{
404 int ret, testdin, vco, val;
405
406 vco = (dsi->lane_mbps < 200) ? 0 : (dsi->lane_mbps + 100) / 200;
407
408 testdin = max_mbps_to_testdin(dsi->lane_mbps);
409 if (testdin < 0) {
410 dev_err(dsi->dev,
411 "failed to get testdin for %dmbps lane clock\n",
412 dsi->lane_mbps);
413 return testdin;
414 }
415
John Keepingefe83ce2017-02-24 12:54:57 +0000416 /* Start by clearing PHY state */
417 dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_UNTESTCLR);
418 dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_TESTCLR);
419 dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_UNTESTCLR);
Chris Zhong84e05402016-01-06 16:12:54 +0800420
421 dw_mipi_dsi_phy_write(dsi, 0x10, BYPASS_VCO_RANGE |
422 VCO_RANGE_CON_SEL(vco) |
423 VCO_IN_CAP_CON_LOW |
424 REF_BIAS_CUR_SEL);
425
426 dw_mipi_dsi_phy_write(dsi, 0x11, CP_CURRENT_3MA);
427 dw_mipi_dsi_phy_write(dsi, 0x12, CP_PROGRAM_EN | LPF_PROGRAM_EN |
428 LPF_RESISTORS_20_KOHM);
429
430 dw_mipi_dsi_phy_write(dsi, 0x44, HSFREQRANGE_SEL(testdin));
431
Chris Zhong84e05402016-01-06 16:12:54 +0800432 dw_mipi_dsi_phy_write(dsi, 0x17, INPUT_DIVIDER(dsi->input_div));
433 dw_mipi_dsi_phy_write(dsi, 0x18, LOOP_DIV_LOW_SEL(dsi->feedback_div) |
434 LOW_PROGRAM_EN);
435 dw_mipi_dsi_phy_write(dsi, 0x18, LOOP_DIV_HIGH_SEL(dsi->feedback_div) |
436 HIGH_PROGRAM_EN);
John Keepingd969c152017-02-24 12:54:58 +0000437 dw_mipi_dsi_phy_write(dsi, 0x19, PLL_LOOP_DIV_EN | PLL_INPUT_DIV_EN);
438
439 dw_mipi_dsi_phy_write(dsi, 0x22, LOW_PROGRAM_EN |
440 BIASEXTR_SEL(BIASEXTR_127_7));
441 dw_mipi_dsi_phy_write(dsi, 0x22, HIGH_PROGRAM_EN |
442 BANDGAP_SEL(BANDGAP_96_10));
Chris Zhong84e05402016-01-06 16:12:54 +0800443
444 dw_mipi_dsi_phy_write(dsi, 0x20, POWER_CONTROL | INTERNAL_REG_CURRENT |
445 BIAS_BLOCK_ON | BANDGAP_ON);
446
447 dw_mipi_dsi_phy_write(dsi, 0x21, TER_RESISTOR_LOW | TER_CAL_DONE |
448 SETRD_MAX | TER_RESISTORS_ON);
449 dw_mipi_dsi_phy_write(dsi, 0x21, TER_RESISTOR_HIGH | LEVEL_SHIFTERS_ON |
450 SETRD_MAX | POWER_MANAGE |
451 TER_RESISTORS_ON);
452
John Keeping3fdfb4f2017-02-24 12:54:59 +0000453 dw_mipi_dsi_phy_write(dsi, 0x60, TLP_PROGRAM_EN | ns2bc(dsi, 500));
454 dw_mipi_dsi_phy_write(dsi, 0x61, THS_PRE_PROGRAM_EN | ns2ui(dsi, 40));
455 dw_mipi_dsi_phy_write(dsi, 0x62, THS_ZERO_PROGRAM_EN | ns2bc(dsi, 300));
456 dw_mipi_dsi_phy_write(dsi, 0x63, THS_PRE_PROGRAM_EN | ns2ui(dsi, 100));
457 dw_mipi_dsi_phy_write(dsi, 0x64, BIT(5) | ns2bc(dsi, 100));
458 dw_mipi_dsi_phy_write(dsi, 0x65, BIT(5) | (ns2bc(dsi, 60) + 7));
Chris Zhong84e05402016-01-06 16:12:54 +0800459
John Keeping3fdfb4f2017-02-24 12:54:59 +0000460 dw_mipi_dsi_phy_write(dsi, 0x70, TLP_PROGRAM_EN | ns2bc(dsi, 500));
461 dw_mipi_dsi_phy_write(dsi, 0x71,
462 THS_PRE_PROGRAM_EN | (ns2ui(dsi, 50) + 5));
463 dw_mipi_dsi_phy_write(dsi, 0x72,
464 THS_ZERO_PROGRAM_EN | (ns2bc(dsi, 140) + 2));
465 dw_mipi_dsi_phy_write(dsi, 0x73,
466 THS_PRE_PROGRAM_EN | (ns2ui(dsi, 60) + 8));
467 dw_mipi_dsi_phy_write(dsi, 0x74, BIT(5) | ns2bc(dsi, 100));
Chris Zhong84e05402016-01-06 16:12:54 +0800468
469 dsi_write(dsi, DSI_PHY_RSTZ, PHY_ENFORCEPLL | PHY_ENABLECLK |
470 PHY_UNRSTZ | PHY_UNSHUTDOWNZ);
471
472
John Keeping44136972017-02-24 12:55:01 +0000473 ret = readl_poll_timeout(dsi->base + DSI_PHY_STATUS,
Chris Zhong84e05402016-01-06 16:12:54 +0800474 val, val & LOCK, 1000, PHY_STATUS_TIMEOUT_US);
475 if (ret < 0) {
476 dev_err(dsi->dev, "failed to wait for phy lock state\n");
477 return ret;
478 }
479
John Keeping44136972017-02-24 12:55:01 +0000480 ret = readl_poll_timeout(dsi->base + DSI_PHY_STATUS,
Chris Zhong84e05402016-01-06 16:12:54 +0800481 val, val & STOP_STATE_CLK_LANE, 1000,
482 PHY_STATUS_TIMEOUT_US);
483 if (ret < 0) {
484 dev_err(dsi->dev,
485 "failed to wait for phy clk lane stop state\n");
486 return ret;
487 }
488
489 return ret;
490}
491
John Keeping0f2c3ad2017-02-24 12:54:45 +0000492static int dw_mipi_dsi_get_lane_bps(struct dw_mipi_dsi *dsi,
493 struct drm_display_mode *mode)
Chris Zhong84e05402016-01-06 16:12:54 +0800494{
Andrzej Hajda484bb6c2016-01-14 09:59:02 +0100495 unsigned int i, pre;
Chris Zhong84e05402016-01-06 16:12:54 +0800496 unsigned long mpclk, pllref, tmp;
497 unsigned int m = 1, n = 1, target_mbps = 1000;
498 unsigned int max_mbps = dptdin_map[ARRAY_SIZE(dptdin_map) - 1].max_mbps;
Andrzej Hajda484bb6c2016-01-14 09:59:02 +0100499 int bpp;
Chris Zhong84e05402016-01-06 16:12:54 +0800500
501 bpp = mipi_dsi_pixel_format_to_bpp(dsi->format);
502 if (bpp < 0) {
503 dev_err(dsi->dev, "failed to get bpp for pixel format %d\n",
504 dsi->format);
505 return bpp;
506 }
507
John Keeping0f2c3ad2017-02-24 12:54:45 +0000508 mpclk = DIV_ROUND_UP(mode->clock, MSEC_PER_SEC);
Chris Zhong84e05402016-01-06 16:12:54 +0800509 if (mpclk) {
510 /* take 1 / 0.9, since mbps must big than bandwidth of RGB */
511 tmp = mpclk * (bpp / dsi->lanes) * 10 / 9;
512 if (tmp < max_mbps)
513 target_mbps = tmp;
514 else
515 dev_err(dsi->dev, "DPHY clock frequency is out of range\n");
516 }
517
518 pllref = DIV_ROUND_UP(clk_get_rate(dsi->pllref_clk), USEC_PER_SEC);
519 tmp = pllref;
520
John Keepingb0a45fe2017-02-24 12:55:00 +0000521 /*
522 * The limits on the PLL divisor are:
523 *
524 * 5MHz <= (pllref / n) <= 40MHz
525 *
526 * we walk over these values in descreasing order so that if we hit
527 * an exact match for target_mbps it is more likely that "m" will be
528 * even.
529 *
530 * TODO: ensure that "m" is even after this loop.
531 */
532 for (i = pllref / 5; i > (pllref / 40); i--) {
Chris Zhong84e05402016-01-06 16:12:54 +0800533 pre = pllref / i;
534 if ((tmp > (target_mbps % pre)) && (target_mbps / pre < 512)) {
535 tmp = target_mbps % pre;
536 n = i;
537 m = target_mbps / pre;
538 }
539 if (tmp == 0)
540 break;
541 }
542
543 dsi->lane_mbps = pllref / n * m;
544 dsi->input_div = n;
545 dsi->feedback_div = m;
546
547 return 0;
548}
549
550static int dw_mipi_dsi_host_attach(struct mipi_dsi_host *host,
551 struct mipi_dsi_device *device)
552{
553 struct dw_mipi_dsi *dsi = host_to_dsi(host);
554
555 if (device->lanes > dsi->pdata->max_data_lanes) {
556 dev_err(dsi->dev, "the number of data lanes(%u) is too many\n",
557 device->lanes);
558 return -EINVAL;
559 }
560
561 if (!(device->mode_flags & MIPI_DSI_MODE_VIDEO_BURST) ||
562 !(device->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)) {
563 dev_err(dsi->dev, "device mode is unsupported\n");
564 return -EINVAL;
565 }
566
567 dsi->lanes = device->lanes;
568 dsi->channel = device->channel;
569 dsi->format = device->format;
570 dsi->panel = of_drm_find_panel(device->dev.of_node);
571 if (dsi->panel)
572 return drm_panel_attach(dsi->panel, &dsi->connector);
573
574 return -EINVAL;
575}
576
577static int dw_mipi_dsi_host_detach(struct mipi_dsi_host *host,
578 struct mipi_dsi_device *device)
579{
580 struct dw_mipi_dsi *dsi = host_to_dsi(host);
581
582 drm_panel_detach(dsi->panel);
583
584 return 0;
585}
586
John Keeping52c66e42017-02-24 12:54:51 +0000587static void dw_mipi_message_config(struct dw_mipi_dsi *dsi,
588 const struct mipi_dsi_msg *msg)
589{
John Keeping7361c6f2017-02-24 12:54:52 +0000590 bool lpm = msg->flags & MIPI_DSI_MSG_USE_LPM;
John Keeping52c66e42017-02-24 12:54:51 +0000591 u32 val = 0;
592
593 if (msg->flags & MIPI_DSI_MSG_REQ_ACK)
594 val |= EN_ACK_RQST;
John Keeping7361c6f2017-02-24 12:54:52 +0000595 if (lpm)
John Keeping52c66e42017-02-24 12:54:51 +0000596 val |= CMD_MODE_ALL_LP;
597
John Keeping7361c6f2017-02-24 12:54:52 +0000598 dsi_write(dsi, DSI_LPCLK_CTRL, lpm ? 0 : PHY_TXREQUESTCLKHS);
John Keeping52c66e42017-02-24 12:54:51 +0000599 dsi_write(dsi, DSI_CMD_MODE_CFG, val);
600}
601
John Keepingd3852c212017-02-24 12:54:47 +0000602static int dw_mipi_dsi_gen_pkt_hdr_write(struct dw_mipi_dsi *dsi, u32 hdr_val)
Chris Zhong84e05402016-01-06 16:12:54 +0800603{
604 int ret;
John Keeping480564a2017-02-24 12:54:48 +0000605 u32 val, mask;
Chris Zhong84e05402016-01-06 16:12:54 +0800606
John Keeping44136972017-02-24 12:55:01 +0000607 ret = readl_poll_timeout(dsi->base + DSI_CMD_PKT_STATUS,
Chris Zhong84e05402016-01-06 16:12:54 +0800608 val, !(val & GEN_CMD_FULL), 1000,
609 CMD_PKT_STATUS_TIMEOUT_US);
610 if (ret < 0) {
611 dev_err(dsi->dev, "failed to get available command FIFO\n");
612 return ret;
613 }
614
John Keepingd3852c212017-02-24 12:54:47 +0000615 dsi_write(dsi, DSI_GEN_HDR, hdr_val);
Chris Zhong84e05402016-01-06 16:12:54 +0800616
John Keeping480564a2017-02-24 12:54:48 +0000617 mask = GEN_CMD_EMPTY | GEN_PLD_W_EMPTY;
John Keeping44136972017-02-24 12:55:01 +0000618 ret = readl_poll_timeout(dsi->base + DSI_CMD_PKT_STATUS,
John Keeping480564a2017-02-24 12:54:48 +0000619 val, (val & mask) == mask,
Chris Zhong84e05402016-01-06 16:12:54 +0800620 1000, CMD_PKT_STATUS_TIMEOUT_US);
621 if (ret < 0) {
622 dev_err(dsi->dev, "failed to write command FIFO\n");
623 return ret;
624 }
625
626 return 0;
627}
628
629static int dw_mipi_dsi_dcs_short_write(struct dw_mipi_dsi *dsi,
630 const struct mipi_dsi_msg *msg)
631{
John Keepingdad17ed2017-02-24 12:54:49 +0000632 const u8 *tx_buf = msg->tx_buf;
633 u16 data = 0;
634 u32 val;
635
636 if (msg->tx_len > 0)
637 data |= tx_buf[0];
638 if (msg->tx_len > 1)
639 data |= tx_buf[1] << 8;
Chris Zhong84e05402016-01-06 16:12:54 +0800640
641 if (msg->tx_len > 2) {
642 dev_err(dsi->dev, "too long tx buf length %zu for short write\n",
643 msg->tx_len);
644 return -EINVAL;
645 }
646
John Keepingdad17ed2017-02-24 12:54:49 +0000647 val = GEN_HDATA(data) | GEN_HTYPE(msg->type);
Chris Zhong84e05402016-01-06 16:12:54 +0800648 return dw_mipi_dsi_gen_pkt_hdr_write(dsi, val);
649}
650
651static int dw_mipi_dsi_dcs_long_write(struct dw_mipi_dsi *dsi,
652 const struct mipi_dsi_msg *msg)
653{
John Keeping1ed498b2017-02-24 12:54:53 +0000654 const u8 *tx_buf = msg->tx_buf;
655 int len = msg->tx_len, pld_data_bytes = sizeof(u32), ret;
John Keepingd3852c212017-02-24 12:54:47 +0000656 u32 hdr_val = GEN_HDATA(msg->tx_len) | GEN_HTYPE(msg->type);
John Keeping1ed498b2017-02-24 12:54:53 +0000657 u32 remainder;
John Keepingd3852c212017-02-24 12:54:47 +0000658 u32 val;
Chris Zhong84e05402016-01-06 16:12:54 +0800659
660 if (msg->tx_len < 3) {
661 dev_err(dsi->dev, "wrong tx buf length %zu for long write\n",
662 msg->tx_len);
663 return -EINVAL;
664 }
665
666 while (DIV_ROUND_UP(len, pld_data_bytes)) {
667 if (len < pld_data_bytes) {
John Keeping1ed498b2017-02-24 12:54:53 +0000668 remainder = 0;
Chris Zhong84e05402016-01-06 16:12:54 +0800669 memcpy(&remainder, tx_buf, len);
670 dsi_write(dsi, DSI_GEN_PLD_DATA, remainder);
671 len = 0;
672 } else {
John Keeping1ed498b2017-02-24 12:54:53 +0000673 memcpy(&remainder, tx_buf, pld_data_bytes);
674 dsi_write(dsi, DSI_GEN_PLD_DATA, remainder);
675 tx_buf += pld_data_bytes;
Chris Zhong84e05402016-01-06 16:12:54 +0800676 len -= pld_data_bytes;
677 }
678
John Keeping44136972017-02-24 12:55:01 +0000679 ret = readl_poll_timeout(dsi->base + DSI_CMD_PKT_STATUS,
Chris Zhong84e05402016-01-06 16:12:54 +0800680 val, !(val & GEN_PLD_W_FULL), 1000,
681 CMD_PKT_STATUS_TIMEOUT_US);
682 if (ret < 0) {
683 dev_err(dsi->dev,
684 "failed to get available write payload FIFO\n");
685 return ret;
686 }
687 }
688
John Keepingd3852c212017-02-24 12:54:47 +0000689 return dw_mipi_dsi_gen_pkt_hdr_write(dsi, hdr_val);
Chris Zhong84e05402016-01-06 16:12:54 +0800690}
691
692static ssize_t dw_mipi_dsi_host_transfer(struct mipi_dsi_host *host,
693 const struct mipi_dsi_msg *msg)
694{
695 struct dw_mipi_dsi *dsi = host_to_dsi(host);
696 int ret;
697
John Keeping52c66e42017-02-24 12:54:51 +0000698 dw_mipi_message_config(dsi, msg);
699
Chris Zhong84e05402016-01-06 16:12:54 +0800700 switch (msg->type) {
701 case MIPI_DSI_DCS_SHORT_WRITE:
702 case MIPI_DSI_DCS_SHORT_WRITE_PARAM:
703 case MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE:
704 ret = dw_mipi_dsi_dcs_short_write(dsi, msg);
705 break;
706 case MIPI_DSI_DCS_LONG_WRITE:
707 ret = dw_mipi_dsi_dcs_long_write(dsi, msg);
708 break;
709 default:
John Keeping028316f2017-02-24 12:54:50 +0000710 dev_err(dsi->dev, "unsupported message type 0x%02x\n",
711 msg->type);
Chris Zhong84e05402016-01-06 16:12:54 +0800712 ret = -EINVAL;
713 }
714
715 return ret;
716}
717
718static const struct mipi_dsi_host_ops dw_mipi_dsi_host_ops = {
719 .attach = dw_mipi_dsi_host_attach,
720 .detach = dw_mipi_dsi_host_detach,
721 .transfer = dw_mipi_dsi_host_transfer,
722};
723
724static void dw_mipi_dsi_video_mode_config(struct dw_mipi_dsi *dsi)
725{
726 u32 val;
727
728 val = VID_MODE_TYPE_BURST_SYNC_PULSES | ENABLE_LOW_POWER;
729
730 dsi_write(dsi, DSI_VID_MODE_CFG, val);
731}
732
733static void dw_mipi_dsi_set_mode(struct dw_mipi_dsi *dsi,
734 enum dw_mipi_dsi_mode mode)
735{
736 if (mode == DW_MIPI_DSI_CMD_MODE) {
737 dsi_write(dsi, DSI_PWR_UP, RESET);
738 dsi_write(dsi, DSI_MODE_CFG, ENABLE_CMD_MODE);
739 dsi_write(dsi, DSI_PWR_UP, POWERUP);
740 } else {
741 dsi_write(dsi, DSI_PWR_UP, RESET);
742 dsi_write(dsi, DSI_MODE_CFG, ENABLE_VIDEO_MODE);
743 dw_mipi_dsi_video_mode_config(dsi);
John Keeping7361c6f2017-02-24 12:54:52 +0000744 dsi_write(dsi, DSI_LPCLK_CTRL, PHY_TXREQUESTCLKHS);
Chris Zhong84e05402016-01-06 16:12:54 +0800745 dsi_write(dsi, DSI_PWR_UP, POWERUP);
746 }
747}
748
749static void dw_mipi_dsi_disable(struct dw_mipi_dsi *dsi)
750{
751 dsi_write(dsi, DSI_PWR_UP, RESET);
752 dsi_write(dsi, DSI_PHY_RSTZ, PHY_RSTZ);
753}
754
755static void dw_mipi_dsi_init(struct dw_mipi_dsi *dsi)
756{
John Keeping1bef24b2017-02-24 12:54:56 +0000757 /*
758 * The maximum permitted escape clock is 20MHz and it is derived from
759 * lanebyteclk, which is running at "lane_mbps / 8". Thus we want:
760 *
761 * (lane_mbps >> 3) / esc_clk_division < 20
762 * which is:
763 * (lane_mbps >> 3) / 20 > esc_clk_division
764 */
765 u32 esc_clk_division = (dsi->lane_mbps >> 3) / 20 + 1;
766
Chris Zhong84e05402016-01-06 16:12:54 +0800767 dsi_write(dsi, DSI_PWR_UP, RESET);
768 dsi_write(dsi, DSI_PHY_RSTZ, PHY_DISFORCEPLL | PHY_DISABLECLK
769 | PHY_RSTZ | PHY_SHUTDOWNZ);
770 dsi_write(dsi, DSI_CLKMGR_CFG, TO_CLK_DIVIDSION(10) |
John Keeping1bef24b2017-02-24 12:54:56 +0000771 TX_ESC_CLK_DIVIDSION(esc_clk_division));
Chris Zhong84e05402016-01-06 16:12:54 +0800772}
773
774static void dw_mipi_dsi_dpi_config(struct dw_mipi_dsi *dsi,
775 struct drm_display_mode *mode)
776{
777 u32 val = 0, color = 0;
778
779 switch (dsi->format) {
780 case MIPI_DSI_FMT_RGB888:
781 color = DPI_COLOR_CODING_24BIT;
782 break;
783 case MIPI_DSI_FMT_RGB666:
784 color = DPI_COLOR_CODING_18BIT_2 | EN18_LOOSELY;
785 break;
786 case MIPI_DSI_FMT_RGB666_PACKED:
787 color = DPI_COLOR_CODING_18BIT_1;
788 break;
789 case MIPI_DSI_FMT_RGB565:
790 color = DPI_COLOR_CODING_16BIT_1;
791 break;
792 }
793
John Keeping2b0c4b72017-02-24 12:55:02 +0000794 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Zhong84e05402016-01-06 16:12:54 +0800795 val |= VSYNC_ACTIVE_LOW;
John Keeping2b0c4b72017-02-24 12:55:02 +0000796 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Zhong84e05402016-01-06 16:12:54 +0800797 val |= HSYNC_ACTIVE_LOW;
798
799 dsi_write(dsi, DSI_DPI_VCID, DPI_VID(dsi->channel));
800 dsi_write(dsi, DSI_DPI_COLOR_CODING, color);
801 dsi_write(dsi, DSI_DPI_CFG_POL, val);
802 dsi_write(dsi, DSI_DPI_LP_CMD_TIM, OUTVACT_LPCMD_TIME(4)
803 | INVACT_LPCMD_TIME(4));
804}
805
806static void dw_mipi_dsi_packet_handler_config(struct dw_mipi_dsi *dsi)
807{
808 dsi_write(dsi, DSI_PCKHDL_CFG, EN_CRC_RX | EN_ECC_RX | EN_BTA);
809}
810
811static void dw_mipi_dsi_video_packet_config(struct dw_mipi_dsi *dsi,
812 struct drm_display_mode *mode)
813{
814 dsi_write(dsi, DSI_VID_PKT_SIZE, VID_PKT_SIZE(mode->hdisplay));
815}
816
817static void dw_mipi_dsi_command_mode_config(struct dw_mipi_dsi *dsi)
818{
819 dsi_write(dsi, DSI_TO_CNT_CFG, HSTX_TO_CNT(1000) | LPRX_TO_CNT(1000));
820 dsi_write(dsi, DSI_BTA_TO_CNT, 0xd00);
Chris Zhong84e05402016-01-06 16:12:54 +0800821 dsi_write(dsi, DSI_MODE_CFG, ENABLE_CMD_MODE);
822}
823
824/* Get lane byte clock cycles. */
825static u32 dw_mipi_dsi_get_hcomponent_lbcc(struct dw_mipi_dsi *dsi,
John Keeping0f2c3ad2017-02-24 12:54:45 +0000826 struct drm_display_mode *mode,
Chris Zhong84e05402016-01-06 16:12:54 +0800827 u32 hcomponent)
828{
829 u32 frac, lbcc;
830
831 lbcc = hcomponent * dsi->lane_mbps * MSEC_PER_SEC / 8;
832
John Keeping0f2c3ad2017-02-24 12:54:45 +0000833 frac = lbcc % mode->clock;
834 lbcc = lbcc / mode->clock;
Chris Zhong84e05402016-01-06 16:12:54 +0800835 if (frac)
836 lbcc++;
837
838 return lbcc;
839}
840
John Keeping0f2c3ad2017-02-24 12:54:45 +0000841static void dw_mipi_dsi_line_timer_config(struct dw_mipi_dsi *dsi,
842 struct drm_display_mode *mode)
Chris Zhong84e05402016-01-06 16:12:54 +0800843{
844 u32 htotal, hsa, hbp, lbcc;
Chris Zhong84e05402016-01-06 16:12:54 +0800845
846 htotal = mode->htotal;
847 hsa = mode->hsync_end - mode->hsync_start;
848 hbp = mode->htotal - mode->hsync_end;
849
John Keeping0f2c3ad2017-02-24 12:54:45 +0000850 lbcc = dw_mipi_dsi_get_hcomponent_lbcc(dsi, mode, htotal);
Chris Zhong84e05402016-01-06 16:12:54 +0800851 dsi_write(dsi, DSI_VID_HLINE_TIME, lbcc);
852
John Keeping0f2c3ad2017-02-24 12:54:45 +0000853 lbcc = dw_mipi_dsi_get_hcomponent_lbcc(dsi, mode, hsa);
Chris Zhong84e05402016-01-06 16:12:54 +0800854 dsi_write(dsi, DSI_VID_HSA_TIME, lbcc);
855
John Keeping0f2c3ad2017-02-24 12:54:45 +0000856 lbcc = dw_mipi_dsi_get_hcomponent_lbcc(dsi, mode, hbp);
Chris Zhong84e05402016-01-06 16:12:54 +0800857 dsi_write(dsi, DSI_VID_HBP_TIME, lbcc);
858}
859
John Keeping0f2c3ad2017-02-24 12:54:45 +0000860static void dw_mipi_dsi_vertical_timing_config(struct dw_mipi_dsi *dsi,
861 struct drm_display_mode *mode)
Chris Zhong84e05402016-01-06 16:12:54 +0800862{
863 u32 vactive, vsa, vfp, vbp;
Chris Zhong84e05402016-01-06 16:12:54 +0800864
865 vactive = mode->vdisplay;
866 vsa = mode->vsync_end - mode->vsync_start;
867 vfp = mode->vsync_start - mode->vdisplay;
868 vbp = mode->vtotal - mode->vsync_end;
869
870 dsi_write(dsi, DSI_VID_VACTIVE_LINES, vactive);
871 dsi_write(dsi, DSI_VID_VSA_LINES, vsa);
872 dsi_write(dsi, DSI_VID_VFP_LINES, vfp);
873 dsi_write(dsi, DSI_VID_VBP_LINES, vbp);
874}
875
876static void dw_mipi_dsi_dphy_timing_config(struct dw_mipi_dsi *dsi)
877{
878 dsi_write(dsi, DSI_PHY_TMR_CFG, PHY_HS2LP_TIME(0x40)
879 | PHY_LP2HS_TIME(0x40) | MAX_RD_TIME(10000));
880
881 dsi_write(dsi, DSI_PHY_TMR_LPCLK_CFG, PHY_CLKHS2LP_TIME(0x40)
882 | PHY_CLKLP2HS_TIME(0x40));
883}
884
885static void dw_mipi_dsi_dphy_interface_config(struct dw_mipi_dsi *dsi)
886{
887 dsi_write(dsi, DSI_PHY_IF_CFG, PHY_STOP_WAIT_TIME(0x20) |
888 N_LANES(dsi->lanes));
889}
890
891static void dw_mipi_dsi_clear_err(struct dw_mipi_dsi *dsi)
892{
893 dsi_read(dsi, DSI_INT_ST0);
894 dsi_read(dsi, DSI_INT_ST1);
895 dsi_write(dsi, DSI_INT_MSK0, 0);
896 dsi_write(dsi, DSI_INT_MSK1, 0);
897}
898
Chris Zhong84e05402016-01-06 16:12:54 +0800899static void dw_mipi_dsi_encoder_disable(struct drm_encoder *encoder)
900{
901 struct dw_mipi_dsi *dsi = encoder_to_dsi(encoder);
902
Chris Zhong84e05402016-01-06 16:12:54 +0800903 if (clk_prepare_enable(dsi->pclk)) {
904 dev_err(dsi->dev, "%s: Failed to enable pclk\n", __func__);
905 return;
906 }
907
John Keeping96ad6f02017-02-24 12:54:55 +0000908 drm_panel_disable(dsi->panel);
909
Chris Zhong84e05402016-01-06 16:12:54 +0800910 dw_mipi_dsi_set_mode(dsi, DW_MIPI_DSI_CMD_MODE);
911 drm_panel_unprepare(dsi->panel);
Chris Zhong84e05402016-01-06 16:12:54 +0800912
Chris Zhong84e05402016-01-06 16:12:54 +0800913 dw_mipi_dsi_disable(dsi);
914 clk_disable_unprepare(dsi->pclk);
915}
916
John Keeping5e408d72017-02-24 12:54:44 +0000917static void dw_mipi_dsi_encoder_enable(struct drm_encoder *encoder)
Chris Zhong84e05402016-01-06 16:12:54 +0800918{
919 struct dw_mipi_dsi *dsi = encoder_to_dsi(encoder);
John Keeping2ba0f4a2017-02-24 12:54:46 +0000920 struct drm_display_mode *mode = &encoder->crtc->state->adjusted_mode;
Philipp Zabel16450612015-02-24 11:42:08 +0100921 int mux = drm_of_encoder_active_endpoint_id(dsi->dev->of_node, encoder);
Chris Zhong84e05402016-01-06 16:12:54 +0800922 u32 val;
John Keeping5e408d72017-02-24 12:54:44 +0000923 int ret;
924
John Keeping0f2c3ad2017-02-24 12:54:45 +0000925 ret = dw_mipi_dsi_get_lane_bps(dsi, mode);
John Keeping5e408d72017-02-24 12:54:44 +0000926 if (ret < 0)
927 return;
Chris Zhong84e05402016-01-06 16:12:54 +0800928
929 if (clk_prepare_enable(dsi->pclk)) {
930 dev_err(dsi->dev, "%s: Failed to enable pclk\n", __func__);
931 return;
932 }
933
John Keeping5e408d72017-02-24 12:54:44 +0000934 dw_mipi_dsi_init(dsi);
John Keeping0f2c3ad2017-02-24 12:54:45 +0000935 dw_mipi_dsi_dpi_config(dsi, mode);
John Keeping5e408d72017-02-24 12:54:44 +0000936 dw_mipi_dsi_packet_handler_config(dsi);
937 dw_mipi_dsi_video_mode_config(dsi);
John Keeping0f2c3ad2017-02-24 12:54:45 +0000938 dw_mipi_dsi_video_packet_config(dsi, mode);
John Keeping5e408d72017-02-24 12:54:44 +0000939 dw_mipi_dsi_command_mode_config(dsi);
John Keeping0f2c3ad2017-02-24 12:54:45 +0000940 dw_mipi_dsi_line_timer_config(dsi, mode);
941 dw_mipi_dsi_vertical_timing_config(dsi, mode);
John Keeping5e408d72017-02-24 12:54:44 +0000942 dw_mipi_dsi_dphy_timing_config(dsi);
943 dw_mipi_dsi_dphy_interface_config(dsi);
944 dw_mipi_dsi_clear_err(dsi);
John Keeping5e408d72017-02-24 12:54:44 +0000945
Chris Zhong84e05402016-01-06 16:12:54 +0800946 dw_mipi_dsi_phy_init(dsi);
John Keeping0f2c3ad2017-02-24 12:54:45 +0000947 dw_mipi_dsi_wait_for_two_frames(mode);
Chris Zhong84e05402016-01-06 16:12:54 +0800948
John Keeping8a7df732017-02-24 12:54:54 +0000949 dw_mipi_dsi_set_mode(dsi, DW_MIPI_DSI_CMD_MODE);
950 if (drm_panel_prepare(dsi->panel))
951 dev_err(dsi->dev, "failed to prepare panel\n");
952
Chris Zhong84e05402016-01-06 16:12:54 +0800953 dw_mipi_dsi_set_mode(dsi, DW_MIPI_DSI_VID_MODE);
954 drm_panel_enable(dsi->panel);
955
956 clk_disable_unprepare(dsi->pclk);
957
Chris Zhong84e05402016-01-06 16:12:54 +0800958 if (mux)
959 val = DSI0_SEL_VOP_LIT | (DSI0_SEL_VOP_LIT << 16);
960 else
961 val = DSI0_SEL_VOP_LIT << 16;
962
963 regmap_write(dsi->grf_regmap, GRF_SOC_CON6, val);
964 dev_dbg(dsi->dev, "vop %s output to dsi0\n", (mux) ? "LIT" : "BIG");
965}
966
Mark Yao4e257d92016-04-20 10:41:42 +0800967static int
968dw_mipi_dsi_encoder_atomic_check(struct drm_encoder *encoder,
969 struct drm_crtc_state *crtc_state,
970 struct drm_connector_state *conn_state)
971{
972 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state);
973 struct dw_mipi_dsi *dsi = encoder_to_dsi(encoder);
974
975 switch (dsi->format) {
976 case MIPI_DSI_FMT_RGB888:
977 s->output_mode = ROCKCHIP_OUT_MODE_P888;
978 break;
979 case MIPI_DSI_FMT_RGB666:
980 s->output_mode = ROCKCHIP_OUT_MODE_P666;
981 break;
982 case MIPI_DSI_FMT_RGB565:
983 s->output_mode = ROCKCHIP_OUT_MODE_P565;
984 break;
985 default:
986 WARN_ON(1);
987 return -EINVAL;
988 }
989
990 s->output_type = DRM_MODE_CONNECTOR_DSI;
991
992 return 0;
993}
994
Chris Zhong84e05402016-01-06 16:12:54 +0800995static struct drm_encoder_helper_funcs
996dw_mipi_dsi_encoder_helper_funcs = {
John Keeping5e408d72017-02-24 12:54:44 +0000997 .enable = dw_mipi_dsi_encoder_enable,
Chris Zhong84e05402016-01-06 16:12:54 +0800998 .disable = dw_mipi_dsi_encoder_disable,
Mark Yao4e257d92016-04-20 10:41:42 +0800999 .atomic_check = dw_mipi_dsi_encoder_atomic_check,
Chris Zhong84e05402016-01-06 16:12:54 +08001000};
1001
1002static struct drm_encoder_funcs dw_mipi_dsi_encoder_funcs = {
1003 .destroy = drm_encoder_cleanup,
1004};
1005
1006static int dw_mipi_dsi_connector_get_modes(struct drm_connector *connector)
1007{
1008 struct dw_mipi_dsi *dsi = con_to_dsi(connector);
1009
1010 return drm_panel_get_modes(dsi->panel);
1011}
1012
1013static enum drm_mode_status dw_mipi_dsi_mode_valid(
1014 struct drm_connector *connector,
1015 struct drm_display_mode *mode)
1016{
1017 struct dw_mipi_dsi *dsi = con_to_dsi(connector);
1018
1019 enum drm_mode_status mode_status = MODE_OK;
1020
1021 if (dsi->pdata->mode_valid)
1022 mode_status = dsi->pdata->mode_valid(connector, mode);
1023
1024 return mode_status;
1025}
1026
Chris Zhong84e05402016-01-06 16:12:54 +08001027static struct drm_connector_helper_funcs dw_mipi_dsi_connector_helper_funcs = {
1028 .get_modes = dw_mipi_dsi_connector_get_modes,
1029 .mode_valid = dw_mipi_dsi_mode_valid,
Chris Zhong84e05402016-01-06 16:12:54 +08001030};
1031
Chris Zhong84e05402016-01-06 16:12:54 +08001032static void dw_mipi_dsi_drm_connector_destroy(struct drm_connector *connector)
1033{
1034 drm_connector_unregister(connector);
1035 drm_connector_cleanup(connector);
1036}
1037
1038static struct drm_connector_funcs dw_mipi_dsi_atomic_connector_funcs = {
1039 .dpms = drm_atomic_helper_connector_dpms,
1040 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Zhong84e05402016-01-06 16:12:54 +08001041 .destroy = dw_mipi_dsi_drm_connector_destroy,
1042 .reset = drm_atomic_helper_connector_reset,
1043 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
1044 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
1045};
1046
1047static int dw_mipi_dsi_register(struct drm_device *drm,
1048 struct dw_mipi_dsi *dsi)
1049{
1050 struct drm_encoder *encoder = &dsi->encoder;
1051 struct drm_connector *connector = &dsi->connector;
1052 struct device *dev = dsi->dev;
1053 int ret;
1054
1055 encoder->possible_crtcs = drm_of_find_possible_crtcs(drm,
1056 dev->of_node);
1057 /*
1058 * If we failed to find the CRTC(s) which this encoder is
1059 * supposed to be connected to, it's because the CRTC has
1060 * not been registered yet. Defer probing, and hope that
1061 * the required CRTC is added later.
1062 */
1063 if (encoder->possible_crtcs == 0)
1064 return -EPROBE_DEFER;
1065
1066 drm_encoder_helper_add(&dsi->encoder,
1067 &dw_mipi_dsi_encoder_helper_funcs);
1068 ret = drm_encoder_init(drm, &dsi->encoder, &dw_mipi_dsi_encoder_funcs,
1069 DRM_MODE_ENCODER_DSI, NULL);
1070 if (ret) {
1071 dev_err(dev, "Failed to initialize encoder with drm\n");
1072 return ret;
1073 }
1074
1075 drm_connector_helper_add(connector,
1076 &dw_mipi_dsi_connector_helper_funcs);
1077
1078 drm_connector_init(drm, &dsi->connector,
1079 &dw_mipi_dsi_atomic_connector_funcs,
1080 DRM_MODE_CONNECTOR_DSI);
1081
1082 drm_mode_connector_attach_encoder(connector, encoder);
1083
1084 return 0;
1085}
1086
1087static int rockchip_mipi_parse_dt(struct dw_mipi_dsi *dsi)
1088{
1089 struct device_node *np = dsi->dev->of_node;
1090
1091 dsi->grf_regmap = syscon_regmap_lookup_by_phandle(np, "rockchip,grf");
1092 if (IS_ERR(dsi->grf_regmap)) {
1093 dev_err(dsi->dev, "Unable to get rockchip,grf\n");
1094 return PTR_ERR(dsi->grf_regmap);
1095 }
1096
1097 return 0;
1098}
1099
1100static enum drm_mode_status rk3288_mipi_dsi_mode_valid(
1101 struct drm_connector *connector,
1102 struct drm_display_mode *mode)
1103{
1104 /*
1105 * The VID_PKT_SIZE field in the DSI_VID_PKT_CFG
1106 * register is 11-bit.
1107 */
1108 if (mode->hdisplay > 0x7ff)
1109 return MODE_BAD_HVALUE;
1110
1111 /*
1112 * The V_ACTIVE_LINES field in the DSI_VTIMING_CFG
1113 * register is 11-bit.
1114 */
1115 if (mode->vdisplay > 0x7ff)
1116 return MODE_BAD_VVALUE;
1117
1118 return MODE_OK;
1119}
1120
1121static struct dw_mipi_dsi_plat_data rk3288_mipi_dsi_drv_data = {
1122 .max_data_lanes = 4,
1123 .mode_valid = rk3288_mipi_dsi_mode_valid,
1124};
1125
1126static const struct of_device_id dw_mipi_dsi_dt_ids[] = {
1127 {
1128 .compatible = "rockchip,rk3288-mipi-dsi",
1129 .data = &rk3288_mipi_dsi_drv_data,
1130 },
1131 { /* sentinel */ }
1132};
1133MODULE_DEVICE_TABLE(of, dw_mipi_dsi_dt_ids);
1134
1135static int dw_mipi_dsi_bind(struct device *dev, struct device *master,
1136 void *data)
1137{
1138 const struct of_device_id *of_id =
1139 of_match_device(dw_mipi_dsi_dt_ids, dev);
1140 const struct dw_mipi_dsi_plat_data *pdata = of_id->data;
1141 struct platform_device *pdev = to_platform_device(dev);
1142 struct drm_device *drm = data;
1143 struct dw_mipi_dsi *dsi;
1144 struct resource *res;
1145 int ret;
1146
1147 dsi = devm_kzalloc(dev, sizeof(*dsi), GFP_KERNEL);
1148 if (!dsi)
1149 return -ENOMEM;
1150
1151 dsi->dev = dev;
1152 dsi->pdata = pdata;
1153
1154 ret = rockchip_mipi_parse_dt(dsi);
1155 if (ret)
1156 return ret;
1157
1158 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1159 if (!res)
1160 return -ENODEV;
1161
1162 dsi->base = devm_ioremap_resource(dev, res);
1163 if (IS_ERR(dsi->base))
1164 return PTR_ERR(dsi->base);
1165
1166 dsi->pllref_clk = devm_clk_get(dev, "ref");
1167 if (IS_ERR(dsi->pllref_clk)) {
1168 ret = PTR_ERR(dsi->pllref_clk);
1169 dev_err(dev, "Unable to get pll reference clock: %d\n", ret);
1170 return ret;
1171 }
1172
1173 dsi->pclk = devm_clk_get(dev, "pclk");
1174 if (IS_ERR(dsi->pclk)) {
1175 ret = PTR_ERR(dsi->pclk);
1176 dev_err(dev, "Unable to get pclk: %d\n", ret);
1177 return ret;
1178 }
1179
1180 ret = clk_prepare_enable(dsi->pllref_clk);
1181 if (ret) {
1182 dev_err(dev, "%s: Failed to enable pllref_clk\n", __func__);
1183 return ret;
1184 }
1185
1186 ret = dw_mipi_dsi_register(drm, dsi);
1187 if (ret) {
1188 dev_err(dev, "Failed to register mipi_dsi: %d\n", ret);
1189 goto err_pllref;
1190 }
1191
1192 dev_set_drvdata(dev, dsi);
1193
1194 dsi->dsi_host.ops = &dw_mipi_dsi_host_ops;
1195 dsi->dsi_host.dev = dev;
1196 return mipi_dsi_host_register(&dsi->dsi_host);
1197
1198err_pllref:
1199 clk_disable_unprepare(dsi->pllref_clk);
1200 return ret;
1201}
1202
1203static void dw_mipi_dsi_unbind(struct device *dev, struct device *master,
1204 void *data)
1205{
1206 struct dw_mipi_dsi *dsi = dev_get_drvdata(dev);
1207
1208 mipi_dsi_host_unregister(&dsi->dsi_host);
1209 clk_disable_unprepare(dsi->pllref_clk);
1210}
1211
1212static const struct component_ops dw_mipi_dsi_ops = {
1213 .bind = dw_mipi_dsi_bind,
1214 .unbind = dw_mipi_dsi_unbind,
1215};
1216
1217static int dw_mipi_dsi_probe(struct platform_device *pdev)
1218{
1219 return component_add(&pdev->dev, &dw_mipi_dsi_ops);
1220}
1221
1222static int dw_mipi_dsi_remove(struct platform_device *pdev)
1223{
1224 component_del(&pdev->dev, &dw_mipi_dsi_ops);
1225 return 0;
1226}
1227
1228static struct platform_driver dw_mipi_dsi_driver = {
1229 .probe = dw_mipi_dsi_probe,
1230 .remove = dw_mipi_dsi_remove,
1231 .driver = {
1232 .of_match_table = dw_mipi_dsi_dt_ids,
1233 .name = DRIVER_NAME,
1234 },
1235};
1236module_platform_driver(dw_mipi_dsi_driver);
1237
1238MODULE_DESCRIPTION("ROCKCHIP MIPI DSI host controller driver");
1239MODULE_AUTHOR("Chris Zhong <zyw@rock-chips.com>");
1240MODULE_LICENSE("GPL");
1241MODULE_ALIAS("platform:" DRIVER_NAME);