drm/rockchip: mipi: dsi: add send mipi command function
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / drm / rockchip / dw-mipi-dsi.c
1 /*
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/pm_runtime.h>
16 #include <linux/regmap.h>
17 #include <linux/mfd/syscon.h>
18 #include <drm/drm_atomic_helper.h>
19 #include <drm/drm_crtc.h>
20 #include <drm/drm_crtc_helper.h>
21 #include <drm/drm_mipi_dsi.h>
22 #include <drm/drm_of.h>
23 #include <drm/drm_panel.h>
24 #include <drm/drmP.h>
25 #include <video/mipi_display.h>
26
27 #include "rockchip_drm_drv.h"
28 #include "rockchip_drm_vop.h"
29
30 #define DRIVER_NAME    "dw-mipi-dsi"
31
32 #define RK3288_GRF_SOC_CON6             0x025c
33 #define RK3288_DSI0_SEL_VOP_LIT         BIT(6)
34 #define RK3288_DSI1_SEL_VOP_LIT         BIT(9)
35
36 #define RK3399_GRF_SOC_CON19            0x6250
37 #define RK3399_DSI0_SEL_VOP_LIT         BIT(0)
38 #define RK3399_DSI1_SEL_VOP_LIT         BIT(4)
39
40 /* disable turnrequest, turndisable, forcetxstopmode, forcerxmode */
41 #define RK3399_GRF_SOC_CON22            0x6258
42 #define RK3399_GRF_DSI_MODE             0xffff0000
43
44 #define DSI_VERSION                     0x00
45 #define DSI_PWR_UP                      0x04
46 #define RESET                           0
47 #define POWERUP                         BIT(0)
48
49 #define DSI_CLKMGR_CFG                  0x08
50 #define TO_CLK_DIVIDSION(div)           (((div) & 0xff) << 8)
51 #define TX_ESC_CLK_DIVIDSION(div)       (((div) & 0xff) << 0)
52
53 #define DSI_DPI_VCID                    0x0c
54 #define DPI_VID(vid)                    (((vid) & 0x3) << 0)
55
56 #define DSI_DPI_COLOR_CODING            0x10
57 #define EN18_LOOSELY                    BIT(8)
58 #define DPI_COLOR_CODING_16BIT_1        0x0
59 #define DPI_COLOR_CODING_16BIT_2        0x1
60 #define DPI_COLOR_CODING_16BIT_3        0x2
61 #define DPI_COLOR_CODING_18BIT_1        0x3
62 #define DPI_COLOR_CODING_18BIT_2        0x4
63 #define DPI_COLOR_CODING_24BIT          0x5
64
65 #define DSI_DPI_CFG_POL                 0x14
66 #define COLORM_ACTIVE_LOW               BIT(4)
67 #define SHUTD_ACTIVE_LOW                BIT(3)
68 #define HSYNC_ACTIVE_LOW                BIT(2)
69 #define VSYNC_ACTIVE_LOW                BIT(1)
70 #define DATAEN_ACTIVE_LOW               BIT(0)
71
72 #define DSI_DPI_LP_CMD_TIM              0x18
73 #define OUTVACT_LPCMD_TIME(p)           (((p) & 0xff) << 16)
74 #define INVACT_LPCMD_TIME(p)            ((p) & 0xff)
75
76 #define DSI_DBI_CFG                     0x20
77 #define DSI_DBI_CMDSIZE                 0x28
78
79 #define DSI_PCKHDL_CFG                  0x2c
80 #define EN_CRC_RX                       BIT(4)
81 #define EN_ECC_RX                       BIT(3)
82 #define EN_BTA                          BIT(2)
83 #define EN_EOTP_RX                      BIT(1)
84 #define EN_EOTP_TX                      BIT(0)
85
86 #define DSI_MODE_CFG                    0x34
87 #define ENABLE_VIDEO_MODE               0
88 #define ENABLE_CMD_MODE                 BIT(0)
89
90 #define DSI_VID_MODE_CFG                0x38
91 #define FRAME_BTA_ACK                   BIT(14)
92 #define ENABLE_LOW_POWER                (0x3f << 8)
93 #define ENABLE_LOW_POWER_MASK           (0x3f << 8)
94 #define VID_MODE_TYPE_BURST_SYNC_PULSES         0x2
95 #define VID_MODE_TYPE_MASK                      0x3
96
97 #define DSI_VID_PKT_SIZE                0x3c
98 #define VID_PKT_SIZE(p)                 (((p) & 0x3fff) << 0)
99 #define VID_PKT_MAX_SIZE                0x3fff
100
101 #define DSI_VID_HSA_TIME                0x48
102 #define DSI_VID_HBP_TIME                0x4c
103 #define DSI_VID_HLINE_TIME              0x50
104 #define DSI_VID_VSA_LINES               0x54
105 #define DSI_VID_VBP_LINES               0x58
106 #define DSI_VID_VFP_LINES               0x5c
107 #define DSI_VID_VACTIVE_LINES           0x60
108 #define DSI_CMD_MODE_CFG                0x68
109 #define MAX_RD_PKT_SIZE_LP              BIT(24)
110 #define DCS_LW_TX_LP                    BIT(19)
111 #define DCS_SR_0P_TX_LP                 BIT(18)
112 #define DCS_SW_1P_TX_LP                 BIT(17)
113 #define DCS_SW_0P_TX_LP                 BIT(16)
114 #define GEN_LW_TX_LP                    BIT(14)
115 #define GEN_SR_2P_TX_LP                 BIT(13)
116 #define GEN_SR_1P_TX_LP                 BIT(12)
117 #define GEN_SR_0P_TX_LP                 BIT(11)
118 #define GEN_SW_2P_TX_LP                 BIT(10)
119 #define GEN_SW_1P_TX_LP                 BIT(9)
120 #define GEN_SW_0P_TX_LP                 BIT(8)
121 #define EN_ACK_RQST                     BIT(1)
122 #define EN_TEAR_FX                      BIT(0)
123
124 #define CMD_MODE_ALL_LP                 (MAX_RD_PKT_SIZE_LP | \
125                                          DCS_LW_TX_LP | \
126                                          DCS_SR_0P_TX_LP | \
127                                          DCS_SW_1P_TX_LP | \
128                                          DCS_SW_0P_TX_LP | \
129                                          GEN_LW_TX_LP | \
130                                          GEN_SR_2P_TX_LP | \
131                                          GEN_SR_1P_TX_LP | \
132                                          GEN_SR_0P_TX_LP | \
133                                          GEN_SW_2P_TX_LP | \
134                                          GEN_SW_1P_TX_LP | \
135                                          GEN_SW_0P_TX_LP)
136
137 #define DSI_GEN_HDR                     0x6c
138 #define GEN_HDATA(data)                 (((data) & 0xffff) << 8)
139 #define GEN_HDATA_MASK                  (0xffff << 8)
140 #define GEN_HTYPE(type)                 (((type) & 0xff) << 0)
141 #define GEN_HTYPE_MASK                  0xff
142
143 #define DSI_GEN_PLD_DATA                0x70
144
145 #define DSI_CMD_PKT_STATUS              0x74
146 #define GEN_CMD_EMPTY                   BIT(0)
147 #define GEN_CMD_FULL                    BIT(1)
148 #define GEN_PLD_W_EMPTY                 BIT(2)
149 #define GEN_PLD_W_FULL                  BIT(3)
150 #define GEN_PLD_R_EMPTY                 BIT(4)
151 #define GEN_PLD_R_FULL                  BIT(5)
152 #define GEN_RD_CMD_BUSY                 BIT(6)
153
154 #define DSI_TO_CNT_CFG                  0x78
155 #define HSTX_TO_CNT(p)                  (((p) & 0xffff) << 16)
156 #define LPRX_TO_CNT(p)                  ((p) & 0xffff)
157
158 #define DSI_BTA_TO_CNT                  0x8c
159 #define DSI_LPCLK_CTRL                  0x94
160 #define AUTO_CLKLANE_CTRL               BIT(1)
161 #define PHY_TXREQUESTCLKHS              BIT(0)
162
163 #define DSI_PHY_TMR_LPCLK_CFG           0x98
164 #define PHY_CLKHS2LP_TIME(lbcc)         (((lbcc) & 0x3ff) << 16)
165 #define PHY_CLKLP2HS_TIME(lbcc)         ((lbcc) & 0x3ff)
166
167 #define DSI_PHY_TMR_CFG                 0x9c
168 #define PHY_HS2LP_TIME(lbcc)            (((lbcc) & 0xff) << 24)
169 #define PHY_LP2HS_TIME(lbcc)            (((lbcc) & 0xff) << 16)
170 #define MAX_RD_TIME(lbcc)               ((lbcc) & 0x7fff)
171
172 #define DSI_PHY_RSTZ                    0xa0
173 #define PHY_DISFORCEPLL                 0
174 #define PHY_ENFORCEPLL                  BIT(3)
175 #define PHY_DISABLECLK                  0
176 #define PHY_ENABLECLK                   BIT(2)
177 #define PHY_RSTZ                        0
178 #define PHY_UNRSTZ                      BIT(1)
179 #define PHY_SHUTDOWNZ                   0
180 #define PHY_UNSHUTDOWNZ                 BIT(0)
181
182 #define DSI_PHY_IF_CFG                  0xa4
183 #define N_LANES(n)                      ((((n) - 1) & 0x3) << 0)
184 #define PHY_STOP_WAIT_TIME(cycle)       (((cycle) & 0xff) << 8)
185
186 #define DSI_PHY_STATUS                  0xb0
187 #define LOCK                            BIT(0)
188 #define STOP_STATE_CLK_LANE             BIT(2)
189
190 #define DSI_PHY_TST_CTRL0               0xb4
191 #define PHY_TESTCLK                     BIT(1)
192 #define PHY_UNTESTCLK                   0
193 #define PHY_TESTCLR                     BIT(0)
194 #define PHY_UNTESTCLR                   0
195
196 #define DSI_PHY_TST_CTRL1               0xb8
197 #define PHY_TESTEN                      BIT(16)
198 #define PHY_UNTESTEN                    0
199 #define PHY_TESTDOUT(n)                 (((n) & 0xff) << 8)
200 #define PHY_TESTDIN(n)                  (((n) & 0xff) << 0)
201
202 #define DSI_INT_ST0                     0xbc
203 #define DSI_INT_ST1                     0xc0
204 #define DSI_INT_MSK0                    0xc4
205 #define DSI_INT_MSK1                    0xc8
206
207 #define PHY_STATUS_TIMEOUT_US           10000
208 #define CMD_PKT_STATUS_TIMEOUT_US       20000
209
210 #define BYPASS_VCO_RANGE        BIT(7)
211 #define VCO_RANGE_CON_SEL(val)  (((val) & 0x7) << 3)
212 #define VCO_IN_CAP_CON_DEFAULT  (0x0 << 1)
213 #define VCO_IN_CAP_CON_LOW      (0x1 << 1)
214 #define VCO_IN_CAP_CON_HIGH     (0x2 << 1)
215 #define REF_BIAS_CUR_SEL        BIT(0)
216
217 #define CP_CURRENT_3MA          BIT(3)
218 #define CP_PROGRAM_EN           BIT(7)
219 #define LPF_PROGRAM_EN          BIT(6)
220 #define LPF_RESISTORS_20_KOHM   0
221
222 #define HSFREQRANGE_SEL(val)    (((val) & 0x3f) << 1)
223
224 #define INPUT_DIVIDER(val)      ((val - 1) & 0x7f)
225 #define LOW_PROGRAM_EN          0
226 #define HIGH_PROGRAM_EN         BIT(7)
227 #define LOOP_DIV_LOW_SEL(val)   ((val - 1) & 0x1f)
228 #define LOOP_DIV_HIGH_SEL(val)  (((val - 1) >> 5) & 0x1f)
229 #define PLL_LOOP_DIV_EN         BIT(5)
230 #define PLL_INPUT_DIV_EN        BIT(4)
231
232 #define POWER_CONTROL           BIT(6)
233 #define INTERNAL_REG_CURRENT    BIT(3)
234 #define BIAS_BLOCK_ON           BIT(2)
235 #define BANDGAP_ON              BIT(0)
236
237 #define TER_RESISTOR_HIGH       BIT(7)
238 #define TER_RESISTOR_LOW        0
239 #define LEVEL_SHIFTERS_ON       BIT(6)
240 #define TER_CAL_DONE            BIT(5)
241 #define SETRD_MAX               (0x7 << 2)
242 #define POWER_MANAGE            BIT(1)
243 #define TER_RESISTORS_ON        BIT(0)
244
245 #define BIASEXTR_SEL(val)       ((val) & 0x7)
246 #define BANDGAP_SEL(val)        ((val) & 0x7)
247 #define TLP_PROGRAM_EN          BIT(7)
248 #define THS_PRE_PROGRAM_EN      BIT(7)
249 #define THS_ZERO_PROGRAM_EN     BIT(6)
250
251 enum {
252         BANDGAP_97_07,
253         BANDGAP_98_05,
254         BANDGAP_99_02,
255         BANDGAP_100_00,
256         BANDGAP_93_17,
257         BANDGAP_94_15,
258         BANDGAP_95_12,
259         BANDGAP_96_10,
260 };
261
262 enum {
263         BIASEXTR_87_1,
264         BIASEXTR_91_5,
265         BIASEXTR_95_9,
266         BIASEXTR_100,
267         BIASEXTR_105_94,
268         BIASEXTR_111_88,
269         BIASEXTR_118_8,
270         BIASEXTR_127_7,
271 };
272
273 struct dw_mipi_dsi_plat_data {
274         u32 dsi0_en_bit;
275         u32 dsi1_en_bit;
276         u32 grf_switch_reg;
277         u32 grf_dsi0_mode;
278         u32 grf_dsi0_mode_reg;
279         unsigned int max_data_lanes;
280         enum drm_mode_status (*mode_valid)(struct drm_connector *connector,
281                                            struct drm_display_mode *mode);
282 };
283
284 struct dw_mipi_dsi {
285         struct drm_encoder encoder;
286         struct drm_connector connector;
287         struct mipi_dsi_host dsi_host;
288         struct drm_panel *panel;
289         struct device *dev;
290         struct regmap *grf_regmap;
291         void __iomem *base;
292
293         struct clk *pllref_clk;
294         struct clk *pclk;
295         struct clk *phy_cfg_clk;
296
297         int dpms_mode;
298         unsigned int lane_mbps; /* per lane */
299         u32 channel;
300         u32 lanes;
301         u32 format;
302         u16 input_div;
303         u16 feedback_div;
304         struct drm_display_mode *mode;
305
306         const struct dw_mipi_dsi_plat_data *pdata;
307 };
308
309 enum dw_mipi_dsi_mode {
310         DW_MIPI_DSI_CMD_MODE,
311         DW_MIPI_DSI_VID_MODE,
312 };
313
314 struct dphy_pll_testdin_map {
315         unsigned int max_mbps;
316         u8 testdin;
317 };
318
319 /* The table is based on 27MHz DPHY pll reference clock. */
320 static const struct dphy_pll_testdin_map dptdin_map[] = {
321         {  90, 0x00}, { 100, 0x10}, { 110, 0x20}, { 130, 0x01},
322         { 140, 0x11}, { 150, 0x21}, { 170, 0x02}, { 180, 0x12},
323         { 200, 0x22}, { 220, 0x03}, { 240, 0x13}, { 250, 0x23},
324         { 270, 0x04}, { 300, 0x14}, { 330, 0x05}, { 360, 0x15},
325         { 400, 0x25}, { 450, 0x06}, { 500, 0x16}, { 550, 0x07},
326         { 600, 0x17}, { 650, 0x08}, { 700, 0x18}, { 750, 0x09},
327         { 800, 0x19}, { 850, 0x29}, { 900, 0x39}, { 950, 0x0a},
328         {1000, 0x1a}, {1050, 0x2a}, {1100, 0x3a}, {1150, 0x0b},
329         {1200, 0x1b}, {1250, 0x2b}, {1300, 0x3b}, {1350, 0x0c},
330         {1400, 0x1c}, {1450, 0x2c}, {1500, 0x3c}
331 };
332
333 static int max_mbps_to_testdin(unsigned int max_mbps)
334 {
335         int i;
336
337         for (i = 0; i < ARRAY_SIZE(dptdin_map); i++)
338                 if (dptdin_map[i].max_mbps > max_mbps)
339                         return dptdin_map[i].testdin;
340
341         return -EINVAL;
342 }
343
344 /*
345  * The controller should generate 2 frames before
346  * preparing the peripheral.
347  */
348 static void dw_mipi_dsi_wait_for_two_frames(struct dw_mipi_dsi *dsi)
349 {
350         int refresh, two_frames;
351
352         refresh = drm_mode_vrefresh(dsi->mode);
353         two_frames = DIV_ROUND_UP(MSEC_PER_SEC, refresh) * 2;
354         msleep(two_frames);
355 }
356
357 static inline struct dw_mipi_dsi *host_to_dsi(struct mipi_dsi_host *host)
358 {
359         return container_of(host, struct dw_mipi_dsi, dsi_host);
360 }
361
362 static inline struct dw_mipi_dsi *con_to_dsi(struct drm_connector *con)
363 {
364         return container_of(con, struct dw_mipi_dsi, connector);
365 }
366
367 static inline struct dw_mipi_dsi *encoder_to_dsi(struct drm_encoder *encoder)
368 {
369         return container_of(encoder, struct dw_mipi_dsi, encoder);
370 }
371 static inline void dsi_write(struct dw_mipi_dsi *dsi, u32 reg, u32 val)
372 {
373         writel(val, dsi->base + reg);
374 }
375
376 static inline u32 dsi_read(struct dw_mipi_dsi *dsi, u32 reg)
377 {
378         return readl(dsi->base + reg);
379 }
380
381 static void dw_mipi_dsi_phy_write(struct dw_mipi_dsi *dsi, u8 test_code,
382                                  u8 test_data)
383 {
384         /*
385          * With the falling edge on TESTCLK, the TESTDIN[7:0] signal content
386          * is latched internally as the current test code. Test data is
387          * programmed internally by rising edge on TESTCLK.
388          */
389         dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_TESTCLK | PHY_UNTESTCLR);
390
391         dsi_write(dsi, DSI_PHY_TST_CTRL1, PHY_TESTEN | PHY_TESTDOUT(0) |
392                                           PHY_TESTDIN(test_code));
393
394         dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_UNTESTCLK | PHY_UNTESTCLR);
395
396         dsi_write(dsi, DSI_PHY_TST_CTRL1, PHY_UNTESTEN | PHY_TESTDOUT(0) |
397                                           PHY_TESTDIN(test_data));
398
399         dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_TESTCLK | PHY_UNTESTCLR);
400 }
401
402 static 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
416         dsi_write(dsi, DSI_PWR_UP, POWERUP);
417
418         if (!IS_ERR(dsi->phy_cfg_clk)) {
419                 ret = clk_prepare_enable(dsi->phy_cfg_clk);
420                 if (ret) {
421                         dev_err(dsi->dev, "Failed to enable phy_cfg_clk\n");
422                         return ret;
423                 }
424         }
425
426         dw_mipi_dsi_phy_write(dsi, 0x10, BYPASS_VCO_RANGE |
427                                          VCO_RANGE_CON_SEL(vco) |
428                                          VCO_IN_CAP_CON_LOW |
429                                          REF_BIAS_CUR_SEL);
430
431         dw_mipi_dsi_phy_write(dsi, 0x11, CP_CURRENT_3MA);
432         dw_mipi_dsi_phy_write(dsi, 0x12, CP_PROGRAM_EN | LPF_PROGRAM_EN |
433                                          LPF_RESISTORS_20_KOHM);
434
435         dw_mipi_dsi_phy_write(dsi, 0x44, HSFREQRANGE_SEL(testdin));
436
437         dw_mipi_dsi_phy_write(dsi, 0x19, PLL_LOOP_DIV_EN | PLL_INPUT_DIV_EN);
438         dw_mipi_dsi_phy_write(dsi, 0x17, INPUT_DIVIDER(dsi->input_div));
439         dw_mipi_dsi_phy_write(dsi, 0x18, LOOP_DIV_LOW_SEL(dsi->feedback_div) |
440                                          LOW_PROGRAM_EN);
441         dw_mipi_dsi_phy_write(dsi, 0x18, LOOP_DIV_HIGH_SEL(dsi->feedback_div) |
442                                          HIGH_PROGRAM_EN);
443
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
453         dw_mipi_dsi_phy_write(dsi, 0x22, LOW_PROGRAM_EN |
454                                          BIASEXTR_SEL(BIASEXTR_127_7));
455         dw_mipi_dsi_phy_write(dsi, 0x22, HIGH_PROGRAM_EN |
456                                          BANDGAP_SEL(BANDGAP_96_10));
457
458         dw_mipi_dsi_phy_write(dsi, 0x70, TLP_PROGRAM_EN | 0xf);
459         dw_mipi_dsi_phy_write(dsi, 0x71, THS_PRE_PROGRAM_EN | 0x55);
460         dw_mipi_dsi_phy_write(dsi, 0x72, THS_ZERO_PROGRAM_EN | 0xa);
461
462         dsi_write(dsi, DSI_PHY_RSTZ, PHY_ENFORCEPLL | PHY_ENABLECLK |
463                                      PHY_UNRSTZ | PHY_UNSHUTDOWNZ);
464
465
466         ret = readx_poll_timeout(readl, dsi->base + DSI_PHY_STATUS,
467                                  val, val & LOCK, 1000, PHY_STATUS_TIMEOUT_US);
468         if (ret < 0) {
469                 dev_err(dsi->dev, "failed to wait for phy lock state\n");
470                 goto phy_init_end;
471         }
472
473         ret = readx_poll_timeout(readl, dsi->base + DSI_PHY_STATUS,
474                                  val, val & STOP_STATE_CLK_LANE, 1000,
475                                  PHY_STATUS_TIMEOUT_US);
476         if (ret < 0)
477                 dev_err(dsi->dev,
478                         "failed to wait for phy clk lane stop state\n");
479
480 phy_init_end:
481         if (!IS_ERR(dsi->phy_cfg_clk))
482                 clk_disable_unprepare(dsi->phy_cfg_clk);
483
484         return ret;
485 }
486
487 static int dw_mipi_dsi_get_lane_bps(struct dw_mipi_dsi *dsi)
488 {
489         unsigned int i, pre;
490         unsigned long mpclk, pllref, tmp;
491         unsigned int m = 1, n = 1, target_mbps = 1000;
492         unsigned int max_mbps = dptdin_map[ARRAY_SIZE(dptdin_map) - 1].max_mbps;
493         int bpp;
494
495         bpp = mipi_dsi_pixel_format_to_bpp(dsi->format);
496         if (bpp < 0) {
497                 dev_err(dsi->dev, "failed to get bpp for pixel format %d\n",
498                         dsi->format);
499                 return bpp;
500         }
501
502         mpclk = DIV_ROUND_UP(dsi->mode->clock, MSEC_PER_SEC);
503         if (mpclk) {
504                 /* take 1 / 0.9, since mbps must big than bandwidth of RGB */
505                 tmp = mpclk * (bpp / dsi->lanes) * 10 / 9;
506                 if (tmp < max_mbps)
507                         target_mbps = tmp;
508                 else
509                         dev_err(dsi->dev, "DPHY clock frequency is out of range\n");
510         }
511
512         pllref = DIV_ROUND_UP(clk_get_rate(dsi->pllref_clk), USEC_PER_SEC);
513         tmp = pllref;
514
515         for (i = 1; i < 6; i++) {
516                 pre = pllref / i;
517                 if ((tmp > (target_mbps % pre)) && (target_mbps / pre < 512)) {
518                         tmp = target_mbps % pre;
519                         n = i;
520                         m = target_mbps / pre;
521                 }
522                 if (tmp == 0)
523                         break;
524         }
525
526         dsi->lane_mbps = pllref / n * m;
527         dsi->input_div = n;
528         dsi->feedback_div = m;
529
530         return 0;
531 }
532
533 static int dw_mipi_dsi_host_attach(struct mipi_dsi_host *host,
534                                    struct mipi_dsi_device *device)
535 {
536         struct dw_mipi_dsi *dsi = host_to_dsi(host);
537
538         if (device->lanes > dsi->pdata->max_data_lanes) {
539                 dev_err(dsi->dev, "the number of data lanes(%u) is too many\n",
540                                 device->lanes);
541                 return -EINVAL;
542         }
543
544         if (!(device->mode_flags & MIPI_DSI_MODE_VIDEO_BURST) ||
545             !(device->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)) {
546                 dev_err(dsi->dev, "device mode is unsupported\n");
547                 return -EINVAL;
548         }
549
550         dsi->lanes = device->lanes;
551         dsi->channel = device->channel;
552         dsi->format = device->format;
553         dsi->panel = of_drm_find_panel(device->dev.of_node);
554         if (!dsi->panel) {
555                 DRM_ERROR("failed to find panel\n");
556                 return -ENODEV;
557         }
558
559         return 0;
560 }
561
562 static int dw_mipi_dsi_host_detach(struct mipi_dsi_host *host,
563                                    struct mipi_dsi_device *device)
564 {
565         struct dw_mipi_dsi *dsi = host_to_dsi(host);
566
567         if (dsi->panel)
568                 drm_panel_detach(dsi->panel);
569
570         dsi->panel = NULL;
571         return 0;
572 }
573
574 static int dw_mipi_dsi_gen_pkt_hdr_write(struct dw_mipi_dsi *dsi, u32 val)
575 {
576         int ret;
577         int sts = 0;
578
579         ret = readx_poll_timeout(readl, dsi->base + DSI_CMD_PKT_STATUS,
580                                  sts, !(sts & GEN_CMD_FULL), 1000,
581                                  CMD_PKT_STATUS_TIMEOUT_US);
582
583         if (ret < 0) {
584                 dev_err(dsi->dev, "failed to get available command FIFO\n");
585                 return ret;
586         }
587
588         dsi_write(dsi, DSI_GEN_HDR, val);
589
590         ret = readx_poll_timeout(readl, dsi->base + DSI_CMD_PKT_STATUS,
591                                  sts, sts & (GEN_CMD_EMPTY | GEN_PLD_W_EMPTY),
592                                  1000, CMD_PKT_STATUS_TIMEOUT_US);
593
594         if (ret < 0) {
595                 dev_err(dsi->dev, "failed to write command FIFO\n");
596                 return ret;
597         }
598
599         return 0;
600 }
601
602 static int dw_mipi_dsi_short_write(struct dw_mipi_dsi *dsi,
603                                    const struct mipi_dsi_msg *msg)
604 {
605         const u16 *tx_buf = msg->tx_buf;
606         u32 val = GEN_HDATA(*tx_buf) | GEN_HTYPE(msg->type);
607
608         if (msg->tx_len > 2) {
609                 dev_err(dsi->dev, "too long tx buf length %zu for short write\n",
610                         msg->tx_len);
611                 return -EINVAL;
612         }
613
614         return dw_mipi_dsi_gen_pkt_hdr_write(dsi, val);
615 }
616
617 static int dw_mipi_dsi_long_write(struct dw_mipi_dsi *dsi,
618                                   const struct mipi_dsi_msg *msg)
619 {
620         const u32 *tx_buf = msg->tx_buf;
621         int len = msg->tx_len, pld_data_bytes = sizeof(*tx_buf), ret;
622         u32 val = GEN_HDATA(msg->tx_len) | GEN_HTYPE(msg->type);
623         u32 remainder = 0;
624         u32 sts = 0;
625
626         if (msg->tx_len < 3) {
627                 dev_err(dsi->dev, "wrong tx buf length %zu for long write\n",
628                         msg->tx_len);
629                 return -EINVAL;
630         }
631
632         while (DIV_ROUND_UP(len, pld_data_bytes)) {
633                 if (len < pld_data_bytes) {
634                         memcpy(&remainder, tx_buf, len);
635                         dsi_write(dsi, DSI_GEN_PLD_DATA, remainder);
636                         len = 0;
637                 } else {
638                         dsi_write(dsi, DSI_GEN_PLD_DATA, *tx_buf);
639                         tx_buf++;
640                         len -= pld_data_bytes;
641                 }
642
643                 ret = readx_poll_timeout(readl, dsi->base + DSI_CMD_PKT_STATUS,
644                                          sts, !(sts & GEN_PLD_W_FULL), 1000,
645                                          CMD_PKT_STATUS_TIMEOUT_US);
646                 if (ret < 0) {
647                         dev_err(dsi->dev,
648                                 "failed to get available write payload FIFO\n");
649                         return ret;
650                 }
651         }
652
653         return dw_mipi_dsi_gen_pkt_hdr_write(dsi, val);
654 }
655
656 static ssize_t dw_mipi_dsi_host_transfer(struct mipi_dsi_host *host,
657                                          const struct mipi_dsi_msg *msg)
658 {
659         struct dw_mipi_dsi *dsi = host_to_dsi(host);
660         int ret;
661
662         switch (msg->type) {
663         case MIPI_DSI_DCS_SHORT_WRITE:
664         case MIPI_DSI_DCS_SHORT_WRITE_PARAM:
665         case MIPI_DSI_GENERIC_SHORT_WRITE_0_PARAM:
666         case MIPI_DSI_GENERIC_SHORT_WRITE_1_PARAM:
667         case MIPI_DSI_GENERIC_SHORT_WRITE_2_PARAM:
668         case MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE:
669                 ret = dw_mipi_dsi_short_write(dsi, msg);
670                 break;
671         case MIPI_DSI_DCS_LONG_WRITE:
672         case MIPI_DSI_GENERIC_LONG_WRITE:
673                 ret = dw_mipi_dsi_long_write(dsi, msg);
674                 break;
675         default:
676                 dev_err(dsi->dev, "unsupported message type\n");
677                 ret = -EINVAL;
678         }
679
680         return ret;
681 }
682
683 static const struct mipi_dsi_host_ops dw_mipi_dsi_host_ops = {
684         .attach = dw_mipi_dsi_host_attach,
685         .detach = dw_mipi_dsi_host_detach,
686         .transfer = dw_mipi_dsi_host_transfer,
687 };
688
689 static void dw_mipi_dsi_video_mode_config(struct dw_mipi_dsi *dsi)
690 {
691         u32 val;
692
693         val = VID_MODE_TYPE_BURST_SYNC_PULSES | ENABLE_LOW_POWER;
694
695         dsi_write(dsi, DSI_VID_MODE_CFG, val);
696 }
697
698 static void dw_mipi_dsi_set_mode(struct dw_mipi_dsi *dsi,
699                                  enum dw_mipi_dsi_mode mode)
700 {
701         if (mode == DW_MIPI_DSI_CMD_MODE) {
702                 dsi_write(dsi, DSI_PWR_UP, RESET);
703                 dsi_write(dsi, DSI_MODE_CFG, ENABLE_CMD_MODE);
704                 dsi_write(dsi, DSI_PWR_UP, POWERUP);
705         } else {
706                 dsi_write(dsi, DSI_PWR_UP, RESET);
707                 dsi_write(dsi, DSI_MODE_CFG, ENABLE_VIDEO_MODE);
708                 dw_mipi_dsi_video_mode_config(dsi);
709                 dsi_write(dsi, DSI_PWR_UP, POWERUP);
710         }
711 }
712
713 static void dw_mipi_dsi_disable(struct dw_mipi_dsi *dsi)
714 {
715         dsi_write(dsi, DSI_PWR_UP, RESET);
716         dsi_write(dsi, DSI_PHY_RSTZ, PHY_RSTZ);
717 }
718
719 static void dw_mipi_dsi_init(struct dw_mipi_dsi *dsi)
720 {
721         dsi_write(dsi, DSI_PWR_UP, RESET);
722         dsi_write(dsi, DSI_PHY_RSTZ, PHY_DISFORCEPLL | PHY_DISABLECLK
723                   | PHY_RSTZ | PHY_SHUTDOWNZ);
724         dsi_write(dsi, DSI_CLKMGR_CFG, TO_CLK_DIVIDSION(10) |
725                   TX_ESC_CLK_DIVIDSION(7));
726         dsi_write(dsi, DSI_LPCLK_CTRL, PHY_TXREQUESTCLKHS);
727 }
728
729 static void dw_mipi_dsi_dpi_config(struct dw_mipi_dsi *dsi,
730                                    struct drm_display_mode *mode)
731 {
732         u32 val = 0, color = 0;
733
734         switch (dsi->format) {
735         case MIPI_DSI_FMT_RGB888:
736                 color = DPI_COLOR_CODING_24BIT;
737                 break;
738         case MIPI_DSI_FMT_RGB666:
739                 color = DPI_COLOR_CODING_18BIT_2 | EN18_LOOSELY;
740                 break;
741         case MIPI_DSI_FMT_RGB666_PACKED:
742                 color = DPI_COLOR_CODING_18BIT_1;
743                 break;
744         case MIPI_DSI_FMT_RGB565:
745                 color = DPI_COLOR_CODING_16BIT_1;
746                 break;
747         }
748
749         if (!(mode->flags & DRM_MODE_FLAG_PVSYNC))
750                 val |= VSYNC_ACTIVE_LOW;
751         if (!(mode->flags & DRM_MODE_FLAG_PHSYNC))
752                 val |= HSYNC_ACTIVE_LOW;
753
754         dsi_write(dsi, DSI_DPI_VCID, DPI_VID(dsi->channel));
755         dsi_write(dsi, DSI_DPI_COLOR_CODING, color);
756         dsi_write(dsi, DSI_DPI_CFG_POL, val);
757         dsi_write(dsi, DSI_DPI_LP_CMD_TIM, OUTVACT_LPCMD_TIME(4)
758                   | INVACT_LPCMD_TIME(4));
759 }
760
761 static void dw_mipi_dsi_packet_handler_config(struct dw_mipi_dsi *dsi)
762 {
763         dsi_write(dsi, DSI_PCKHDL_CFG, EN_CRC_RX | EN_ECC_RX | EN_BTA);
764 }
765
766 static void dw_mipi_dsi_video_packet_config(struct dw_mipi_dsi *dsi,
767                                             struct drm_display_mode *mode)
768 {
769         dsi_write(dsi, DSI_VID_PKT_SIZE, VID_PKT_SIZE(mode->hdisplay));
770 }
771
772 static void dw_mipi_dsi_command_mode_config(struct dw_mipi_dsi *dsi)
773 {
774         dsi_write(dsi, DSI_TO_CNT_CFG, HSTX_TO_CNT(1000) | LPRX_TO_CNT(1000));
775         dsi_write(dsi, DSI_BTA_TO_CNT, 0xd00);
776         dsi_write(dsi, DSI_CMD_MODE_CFG, CMD_MODE_ALL_LP);
777         dsi_write(dsi, DSI_MODE_CFG, ENABLE_CMD_MODE);
778 }
779
780 /* Get lane byte clock cycles. */
781 static u32 dw_mipi_dsi_get_hcomponent_lbcc(struct dw_mipi_dsi *dsi,
782                                            u32 hcomponent)
783 {
784         u32 frac, lbcc;
785
786         lbcc = hcomponent * dsi->lane_mbps * MSEC_PER_SEC / 8;
787
788         frac = lbcc % dsi->mode->clock;
789         lbcc = lbcc / dsi->mode->clock;
790         if (frac)
791                 lbcc++;
792
793         return lbcc;
794 }
795
796 static void dw_mipi_dsi_line_timer_config(struct dw_mipi_dsi *dsi)
797 {
798         u32 htotal, hsa, hbp, lbcc;
799         struct drm_display_mode *mode = dsi->mode;
800
801         htotal = mode->htotal;
802         hsa = mode->hsync_end - mode->hsync_start;
803         hbp = mode->htotal - mode->hsync_end;
804
805         lbcc = dw_mipi_dsi_get_hcomponent_lbcc(dsi, htotal);
806         dsi_write(dsi, DSI_VID_HLINE_TIME, lbcc);
807
808         lbcc = dw_mipi_dsi_get_hcomponent_lbcc(dsi, hsa);
809         dsi_write(dsi, DSI_VID_HSA_TIME, lbcc);
810
811         lbcc = dw_mipi_dsi_get_hcomponent_lbcc(dsi, hbp);
812         dsi_write(dsi, DSI_VID_HBP_TIME, lbcc);
813 }
814
815 static void dw_mipi_dsi_vertical_timing_config(struct dw_mipi_dsi *dsi)
816 {
817         u32 vactive, vsa, vfp, vbp;
818         struct drm_display_mode *mode = dsi->mode;
819
820         vactive = mode->vdisplay;
821         vsa = mode->vsync_end - mode->vsync_start;
822         vfp = mode->vsync_start - mode->vdisplay;
823         vbp = mode->vtotal - mode->vsync_end;
824
825         dsi_write(dsi, DSI_VID_VACTIVE_LINES, vactive);
826         dsi_write(dsi, DSI_VID_VSA_LINES, vsa);
827         dsi_write(dsi, DSI_VID_VFP_LINES, vfp);
828         dsi_write(dsi, DSI_VID_VBP_LINES, vbp);
829 }
830
831 static void dw_mipi_dsi_dphy_timing_config(struct dw_mipi_dsi *dsi)
832 {
833         dsi_write(dsi, DSI_PHY_TMR_CFG, PHY_HS2LP_TIME(0x40)
834                   | PHY_LP2HS_TIME(0x40) | MAX_RD_TIME(10000));
835
836         dsi_write(dsi, DSI_PHY_TMR_LPCLK_CFG, PHY_CLKHS2LP_TIME(0x40)
837                   | PHY_CLKLP2HS_TIME(0x40));
838 }
839
840 static void dw_mipi_dsi_dphy_interface_config(struct dw_mipi_dsi *dsi)
841 {
842         dsi_write(dsi, DSI_PHY_IF_CFG, PHY_STOP_WAIT_TIME(0x20) |
843                   N_LANES(dsi->lanes));
844 }
845
846 static void dw_mipi_dsi_clear_err(struct dw_mipi_dsi *dsi)
847 {
848         dsi_read(dsi, DSI_INT_ST0);
849         dsi_read(dsi, DSI_INT_ST1);
850         dsi_write(dsi, DSI_INT_MSK0, 0);
851         dsi_write(dsi, DSI_INT_MSK1, 0);
852 }
853
854 static void dw_mipi_dsi_encoder_mode_set(struct drm_encoder *encoder,
855                                         struct drm_display_mode *mode,
856                                         struct drm_display_mode *adjusted_mode)
857 {
858         struct dw_mipi_dsi *dsi = encoder_to_dsi(encoder);
859         int ret;
860
861         if (dsi->dpms_mode == DRM_MODE_DPMS_ON)
862                 return;
863
864         dsi->mode = adjusted_mode;
865
866         ret = dw_mipi_dsi_get_lane_bps(dsi);
867         if (ret < 0)
868                 return;
869
870         if (clk_prepare_enable(dsi->pclk)) {
871                 dev_err(dsi->dev, "%s: Failed to enable pclk\n", __func__);
872                 return;
873         }
874
875         pm_runtime_get_sync(dsi->dev);
876
877         dw_mipi_dsi_init(dsi);
878         dw_mipi_dsi_dpi_config(dsi, mode);
879         dw_mipi_dsi_packet_handler_config(dsi);
880         dw_mipi_dsi_video_mode_config(dsi);
881         dw_mipi_dsi_video_packet_config(dsi, mode);
882         dw_mipi_dsi_command_mode_config(dsi);
883         dw_mipi_dsi_line_timer_config(dsi);
884         dw_mipi_dsi_vertical_timing_config(dsi);
885         dw_mipi_dsi_dphy_timing_config(dsi);
886         dw_mipi_dsi_dphy_interface_config(dsi);
887         dw_mipi_dsi_clear_err(dsi);
888         if (drm_panel_prepare(dsi->panel))
889                 dev_err(dsi->dev, "failed to prepare panel\n");
890
891         clk_disable_unprepare(dsi->pclk);
892 }
893
894 static void dw_mipi_dsi_encoder_disable(struct drm_encoder *encoder)
895 {
896         struct dw_mipi_dsi *dsi = encoder_to_dsi(encoder);
897
898         if (dsi->dpms_mode != DRM_MODE_DPMS_ON)
899                 return;
900
901         drm_panel_disable(dsi->panel);
902
903         if (clk_prepare_enable(dsi->pclk)) {
904                 dev_err(dsi->dev, "%s: Failed to enable pclk\n", __func__);
905                 return;
906         }
907
908         dw_mipi_dsi_set_mode(dsi, DW_MIPI_DSI_CMD_MODE);
909         drm_panel_unprepare(dsi->panel);
910         dw_mipi_dsi_set_mode(dsi, DW_MIPI_DSI_VID_MODE);
911
912         /*
913          * This is necessary to make sure the peripheral will be driven
914          * normally when the display is enabled again later.
915          */
916         msleep(120);
917
918         dw_mipi_dsi_set_mode(dsi, DW_MIPI_DSI_CMD_MODE);
919         dw_mipi_dsi_disable(dsi);
920         pm_runtime_put(dsi->dev);
921         clk_disable_unprepare(dsi->pclk);
922         dsi->dpms_mode = DRM_MODE_DPMS_OFF;
923 }
924
925 static bool dw_mipi_dsi_encoder_mode_fixup(struct drm_encoder *encoder,
926                                         const struct drm_display_mode *mode,
927                                         struct drm_display_mode *adjusted_mode)
928 {
929         return true;
930 }
931
932 static void dw_mipi_dsi_encoder_commit(struct drm_encoder *encoder)
933 {
934         struct dw_mipi_dsi *dsi = encoder_to_dsi(encoder);
935         const struct dw_mipi_dsi_plat_data *pdata = dsi->pdata;
936         int mux = drm_of_encoder_active_endpoint_id(dsi->dev->of_node, encoder);
937         u32 val;
938
939         if (clk_prepare_enable(dsi->pclk)) {
940                 dev_err(dsi->dev, "%s: Failed to enable pclk\n", __func__);
941                 return;
942         }
943
944         if (pdata->grf_dsi0_mode_reg)
945                 regmap_write(dsi->grf_regmap, pdata->grf_dsi0_mode_reg,
946                              pdata->grf_dsi0_mode);
947
948         dw_mipi_dsi_phy_init(dsi);
949         dw_mipi_dsi_wait_for_two_frames(dsi);
950
951         dw_mipi_dsi_set_mode(dsi, DW_MIPI_DSI_VID_MODE);
952         drm_panel_enable(dsi->panel);
953
954         clk_disable_unprepare(dsi->pclk);
955
956         if (mux)
957                 val = pdata->dsi0_en_bit | (pdata->dsi0_en_bit << 16);
958         else
959                 val = pdata->dsi0_en_bit << 16;
960
961         regmap_write(dsi->grf_regmap, pdata->grf_switch_reg, val);
962         dev_dbg(dsi->dev, "vop %s output to dsi0\n", (mux) ? "LIT" : "BIG");
963         dsi->dpms_mode = DRM_MODE_DPMS_ON;
964 }
965
966 static int
967 dw_mipi_dsi_encoder_atomic_check(struct drm_encoder *encoder,
968                                  struct drm_crtc_state *crtc_state,
969                                  struct drm_connector_state *conn_state)
970 {
971         struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state);
972         struct dw_mipi_dsi *dsi = encoder_to_dsi(encoder);
973
974         switch (dsi->format) {
975         case MIPI_DSI_FMT_RGB888:
976                 s->output_mode = ROCKCHIP_OUT_MODE_P888;
977                 break;
978         case MIPI_DSI_FMT_RGB666:
979                 s->output_mode = ROCKCHIP_OUT_MODE_P666;
980                 break;
981         case MIPI_DSI_FMT_RGB565:
982                 s->output_mode = ROCKCHIP_OUT_MODE_P565;
983                 break;
984         default:
985                 WARN_ON(1);
986                 return -EINVAL;
987         }
988
989         s->output_type = DRM_MODE_CONNECTOR_DSI;
990
991         return 0;
992 }
993
994 static struct drm_encoder_helper_funcs
995 dw_mipi_dsi_encoder_helper_funcs = {
996         .mode_fixup = dw_mipi_dsi_encoder_mode_fixup,
997         .commit = dw_mipi_dsi_encoder_commit,
998         .mode_set = dw_mipi_dsi_encoder_mode_set,
999         .disable = dw_mipi_dsi_encoder_disable,
1000         .atomic_check = dw_mipi_dsi_encoder_atomic_check,
1001 };
1002
1003 static struct drm_encoder_funcs dw_mipi_dsi_encoder_funcs = {
1004         .destroy = drm_encoder_cleanup,
1005 };
1006
1007 static int dw_mipi_dsi_connector_get_modes(struct drm_connector *connector)
1008 {
1009         struct dw_mipi_dsi *dsi = con_to_dsi(connector);
1010
1011         return drm_panel_get_modes(dsi->panel);
1012 }
1013
1014 static enum drm_mode_status dw_mipi_dsi_mode_valid(
1015                                         struct drm_connector *connector,
1016                                         struct drm_display_mode *mode)
1017 {
1018         struct dw_mipi_dsi *dsi = con_to_dsi(connector);
1019
1020         enum drm_mode_status mode_status = MODE_OK;
1021
1022         if (dsi->pdata->mode_valid)
1023                 mode_status = dsi->pdata->mode_valid(connector, mode);
1024
1025         return mode_status;
1026 }
1027
1028 static struct drm_encoder *dw_mipi_dsi_connector_best_encoder(
1029                                         struct drm_connector *connector)
1030 {
1031         struct dw_mipi_dsi *dsi = con_to_dsi(connector);
1032
1033         return &dsi->encoder;
1034 }
1035
1036 static struct drm_connector_helper_funcs dw_mipi_dsi_connector_helper_funcs = {
1037         .get_modes = dw_mipi_dsi_connector_get_modes,
1038         .mode_valid = dw_mipi_dsi_mode_valid,
1039         .best_encoder = dw_mipi_dsi_connector_best_encoder,
1040 };
1041
1042 static enum drm_connector_status
1043 dw_mipi_dsi_detect(struct drm_connector *connector, bool force)
1044 {
1045         return connector_status_connected;
1046 }
1047
1048 static void dw_mipi_dsi_drm_connector_destroy(struct drm_connector *connector)
1049 {
1050         drm_connector_unregister(connector);
1051         drm_connector_cleanup(connector);
1052 }
1053
1054 static struct drm_connector_funcs dw_mipi_dsi_atomic_connector_funcs = {
1055         .dpms = drm_atomic_helper_connector_dpms,
1056         .fill_modes = drm_helper_probe_single_connector_modes,
1057         .detect = dw_mipi_dsi_detect,
1058         .destroy = dw_mipi_dsi_drm_connector_destroy,
1059         .reset = drm_atomic_helper_connector_reset,
1060         .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
1061         .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
1062 };
1063
1064 static int dw_mipi_dsi_register(struct drm_device *drm,
1065                                       struct dw_mipi_dsi *dsi)
1066 {
1067         struct drm_encoder *encoder = &dsi->encoder;
1068         struct drm_connector *connector = &dsi->connector;
1069         struct device *dev = dsi->dev;
1070         int ret;
1071
1072         encoder->possible_crtcs = drm_of_find_possible_crtcs(drm,
1073                                                              dev->of_node);
1074         /*
1075          * If we failed to find the CRTC(s) which this encoder is
1076          * supposed to be connected to, it's because the CRTC has
1077          * not been registered yet.  Defer probing, and hope that
1078          * the required CRTC is added later.
1079          */
1080         if (encoder->possible_crtcs == 0)
1081                 return -EPROBE_DEFER;
1082
1083         drm_encoder_helper_add(&dsi->encoder,
1084                                &dw_mipi_dsi_encoder_helper_funcs);
1085         ret = drm_encoder_init(drm, &dsi->encoder, &dw_mipi_dsi_encoder_funcs,
1086                          DRM_MODE_ENCODER_DSI, NULL);
1087         if (ret) {
1088                 dev_err(dev, "Failed to initialize encoder with drm\n");
1089                 return ret;
1090         }
1091
1092         drm_connector_helper_add(connector,
1093                         &dw_mipi_dsi_connector_helper_funcs);
1094
1095         drm_connector_init(drm, &dsi->connector,
1096                            &dw_mipi_dsi_atomic_connector_funcs,
1097                            DRM_MODE_CONNECTOR_DSI);
1098
1099         drm_panel_attach(dsi->panel, &dsi->connector);
1100
1101         dsi->connector.port = dev->of_node;
1102
1103         drm_mode_connector_attach_encoder(connector, encoder);
1104
1105         return 0;
1106 }
1107
1108 static int rockchip_mipi_parse_dt(struct dw_mipi_dsi *dsi)
1109 {
1110         struct device_node *np = dsi->dev->of_node;
1111
1112         dsi->grf_regmap = syscon_regmap_lookup_by_phandle(np, "rockchip,grf");
1113         if (IS_ERR(dsi->grf_regmap)) {
1114                 dev_err(dsi->dev, "Unable to get rockchip,grf\n");
1115                 return PTR_ERR(dsi->grf_regmap);
1116         }
1117
1118         return 0;
1119 }
1120
1121 static struct dw_mipi_dsi_plat_data rk3288_mipi_dsi_drv_data = {
1122         .dsi0_en_bit = RK3288_DSI0_SEL_VOP_LIT,
1123         .dsi1_en_bit = RK3288_DSI1_SEL_VOP_LIT,
1124         .grf_switch_reg = RK3288_GRF_SOC_CON6,
1125         .max_data_lanes = 4,
1126 };
1127
1128 static struct dw_mipi_dsi_plat_data rk3399_mipi_dsi_drv_data = {
1129         .dsi0_en_bit = RK3399_DSI0_SEL_VOP_LIT,
1130         .dsi1_en_bit = RK3399_DSI1_SEL_VOP_LIT,
1131         .grf_switch_reg = RK3399_GRF_SOC_CON19,
1132         .grf_dsi0_mode = RK3399_GRF_DSI_MODE,
1133         .grf_dsi0_mode_reg = RK3399_GRF_SOC_CON22,
1134         .max_data_lanes = 4,
1135 };
1136
1137 static const struct of_device_id dw_mipi_dsi_dt_ids[] = {
1138         {
1139          .compatible = "rockchip,rk3288-mipi-dsi",
1140          .data = &rk3288_mipi_dsi_drv_data,
1141         },{
1142          .compatible = "rockchip,rk3399-mipi-dsi",
1143          .data = &rk3399_mipi_dsi_drv_data,
1144         },
1145         { /* sentinel */ }
1146 };
1147 MODULE_DEVICE_TABLE(of, dw_mipi_dsi_dt_ids);
1148
1149 static int dw_mipi_dsi_bind(struct device *dev, struct device *master,
1150                              void *data)
1151 {
1152         struct platform_device *pdev = to_platform_device(dev);
1153         struct drm_device *drm = data;
1154         struct dw_mipi_dsi *dsi = dev_get_drvdata(dev);
1155         struct resource *res;
1156         int ret;
1157
1158         dsi->dpms_mode = DRM_MODE_DPMS_OFF;
1159
1160         if (!dsi->panel)
1161                 return -EPROBE_DEFER;
1162
1163         ret = rockchip_mipi_parse_dt(dsi);
1164         if (ret)
1165                 return ret;
1166
1167         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1168         if (!res)
1169                 return -ENODEV;
1170
1171         dsi->base = devm_ioremap_resource(dev, res);
1172         if (IS_ERR(dsi->base))
1173                 return PTR_ERR(dsi->base);
1174
1175         dsi->pllref_clk = devm_clk_get(dev, "ref");
1176         if (IS_ERR(dsi->pllref_clk)) {
1177                 ret = PTR_ERR(dsi->pllref_clk);
1178                 dev_err(dev, "Unable to get pll reference clock: %d\n", ret);
1179                 return ret;
1180         }
1181
1182         dsi->pclk = devm_clk_get(dev, "pclk");
1183         if (IS_ERR(dsi->pclk)) {
1184                 ret = PTR_ERR(dsi->pclk);
1185                 dev_err(dev, "Unable to get pclk: %d\n", ret);
1186                 return ret;
1187         }
1188
1189         dsi->phy_cfg_clk = devm_clk_get(dev, "phy_cfg");
1190         if (IS_ERR(dsi->phy_cfg_clk))
1191                 dev_dbg(dev, "have not phy_cfg_clk\n");
1192
1193         ret = clk_prepare_enable(dsi->pllref_clk);
1194         if (ret) {
1195                 dev_err(dev, "%s: Failed to enable pllref_clk\n", __func__);
1196                 return ret;
1197         }
1198
1199         ret = dw_mipi_dsi_register(drm, dsi);
1200         if (ret) {
1201                 dev_err(dev, "Failed to register mipi_dsi: %d\n", ret);
1202                 goto err_pllref;
1203         }
1204
1205         dev_set_drvdata(dev, dsi);
1206
1207         pm_runtime_enable(dev);
1208
1209         return 0;
1210
1211 err_pllref:
1212         clk_disable_unprepare(dsi->pllref_clk);
1213         return ret;
1214 }
1215
1216 static void dw_mipi_dsi_unbind(struct device *dev, struct device *master,
1217         void *data)
1218 {
1219         struct dw_mipi_dsi *dsi = dev_get_drvdata(dev);
1220
1221         pm_runtime_disable(dev);
1222         clk_disable_unprepare(dsi->pllref_clk);
1223 }
1224
1225 static const struct component_ops dw_mipi_dsi_ops = {
1226         .bind   = dw_mipi_dsi_bind,
1227         .unbind = dw_mipi_dsi_unbind,
1228 };
1229
1230 static int dw_mipi_dsi_probe(struct platform_device *pdev)
1231 {
1232         struct device *dev = &pdev->dev;
1233         const struct of_device_id *of_id =
1234                         of_match_device(dw_mipi_dsi_dt_ids, dev);
1235         const struct dw_mipi_dsi_plat_data *pdata = of_id->data;
1236         struct dw_mipi_dsi *dsi;
1237         int ret;
1238
1239         dsi = devm_kzalloc(&pdev->dev, sizeof(*dsi), GFP_KERNEL);
1240         if (!dsi)
1241                 return -ENOMEM;
1242
1243         dsi->dev = dev;
1244         dsi->pdata = pdata;
1245         dsi->dsi_host.ops = &dw_mipi_dsi_host_ops;
1246         dsi->dsi_host.dev = &pdev->dev;
1247
1248         ret = mipi_dsi_host_register(&dsi->dsi_host);
1249         if (ret)
1250                 return ret;
1251
1252         platform_set_drvdata(pdev, dsi);
1253         ret = component_add(&pdev->dev, &dw_mipi_dsi_ops);
1254         if (ret)
1255                 mipi_dsi_host_unregister(&dsi->dsi_host);
1256
1257         return ret;
1258 }
1259
1260 static int dw_mipi_dsi_remove(struct platform_device *pdev)
1261 {
1262         struct dw_mipi_dsi *dsi = dev_get_drvdata(&pdev->dev);
1263
1264         if (dsi)
1265                 mipi_dsi_host_unregister(&dsi->dsi_host);
1266         component_del(&pdev->dev, &dw_mipi_dsi_ops);
1267         return 0;
1268 }
1269
1270 static struct platform_driver dw_mipi_dsi_driver = {
1271         .probe          = dw_mipi_dsi_probe,
1272         .remove         = dw_mipi_dsi_remove,
1273         .driver         = {
1274                 .of_match_table = dw_mipi_dsi_dt_ids,
1275                 .name   = DRIVER_NAME,
1276         },
1277 };
1278 module_platform_driver(dw_mipi_dsi_driver);
1279
1280 MODULE_DESCRIPTION("ROCKCHIP MIPI DSI host controller driver");
1281 MODULE_AUTHOR("Chris Zhong <zyw@rock-chips.com>");
1282 MODULE_LICENSE("GPL");
1283 MODULE_ALIAS("platform:" DRIVER_NAME);