GNU Linux-libre 4.14.332-gnu1
[releases.git] / drivers / gpu / drm / msm / dsi / dsi_host.c
1 /*
2  * Copyright (c) 2015, The Linux Foundation. All rights reserved.
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 version 2 and
6  * only version 2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  */
13
14 #include <linux/clk.h>
15 #include <linux/delay.h>
16 #include <linux/err.h>
17 #include <linux/gpio.h>
18 #include <linux/gpio/consumer.h>
19 #include <linux/interrupt.h>
20 #include <linux/of_device.h>
21 #include <linux/of_gpio.h>
22 #include <linux/of_irq.h>
23 #include <linux/pinctrl/consumer.h>
24 #include <linux/of_graph.h>
25 #include <linux/regulator/consumer.h>
26 #include <linux/spinlock.h>
27 #include <linux/mfd/syscon.h>
28 #include <linux/regmap.h>
29 #include <video/mipi_display.h>
30
31 #include "dsi.h"
32 #include "dsi.xml.h"
33 #include "sfpb.xml.h"
34 #include "dsi_cfg.h"
35 #include "msm_kms.h"
36
37 #define DSI_RESET_TOGGLE_DELAY_MS 20
38
39 static int dsi_get_version(const void __iomem *base, u32 *major, u32 *minor)
40 {
41         u32 ver;
42
43         if (!major || !minor)
44                 return -EINVAL;
45
46         /*
47          * From DSI6G(v3), addition of a 6G_HW_VERSION register at offset 0
48          * makes all other registers 4-byte shifted down.
49          *
50          * In order to identify between DSI6G(v3) and beyond, and DSIv2 and
51          * older, we read the DSI_VERSION register without any shift(offset
52          * 0x1f0). In the case of DSIv2, this hast to be a non-zero value. In
53          * the case of DSI6G, this has to be zero (the offset points to a
54          * scratch register which we never touch)
55          */
56
57         ver = msm_readl(base + REG_DSI_VERSION);
58         if (ver) {
59                 /* older dsi host, there is no register shift */
60                 ver = FIELD(ver, DSI_VERSION_MAJOR);
61                 if (ver <= MSM_DSI_VER_MAJOR_V2) {
62                         /* old versions */
63                         *major = ver;
64                         *minor = 0;
65                         return 0;
66                 } else {
67                         return -EINVAL;
68                 }
69         } else {
70                 /*
71                  * newer host, offset 0 has 6G_HW_VERSION, the rest of the
72                  * registers are shifted down, read DSI_VERSION again with
73                  * the shifted offset
74                  */
75                 ver = msm_readl(base + DSI_6G_REG_SHIFT + REG_DSI_VERSION);
76                 ver = FIELD(ver, DSI_VERSION_MAJOR);
77                 if (ver == MSM_DSI_VER_MAJOR_6G) {
78                         /* 6G version */
79                         *major = ver;
80                         *minor = msm_readl(base + REG_DSI_6G_HW_VERSION);
81                         return 0;
82                 } else {
83                         return -EINVAL;
84                 }
85         }
86 }
87
88 #define DSI_ERR_STATE_ACK                       0x0000
89 #define DSI_ERR_STATE_TIMEOUT                   0x0001
90 #define DSI_ERR_STATE_DLN0_PHY                  0x0002
91 #define DSI_ERR_STATE_FIFO                      0x0004
92 #define DSI_ERR_STATE_MDP_FIFO_UNDERFLOW        0x0008
93 #define DSI_ERR_STATE_INTERLEAVE_OP_CONTENTION  0x0010
94 #define DSI_ERR_STATE_PLL_UNLOCKED              0x0020
95
96 #define DSI_CLK_CTRL_ENABLE_CLKS        \
97                 (DSI_CLK_CTRL_AHBS_HCLK_ON | DSI_CLK_CTRL_AHBM_SCLK_ON | \
98                 DSI_CLK_CTRL_PCLK_ON | DSI_CLK_CTRL_DSICLK_ON | \
99                 DSI_CLK_CTRL_BYTECLK_ON | DSI_CLK_CTRL_ESCCLK_ON | \
100                 DSI_CLK_CTRL_FORCE_ON_DYN_AHBM_HCLK)
101
102 struct msm_dsi_host {
103         struct mipi_dsi_host base;
104
105         struct platform_device *pdev;
106         struct drm_device *dev;
107
108         int id;
109
110         void __iomem *ctrl_base;
111         struct regulator_bulk_data supplies[DSI_DEV_REGULATOR_MAX];
112
113         struct clk *bus_clks[DSI_BUS_CLK_MAX];
114
115         struct clk *byte_clk;
116         struct clk *esc_clk;
117         struct clk *pixel_clk;
118         struct clk *byte_clk_src;
119         struct clk *pixel_clk_src;
120
121         u32 byte_clk_rate;
122         u32 esc_clk_rate;
123
124         /* DSI v2 specific clocks */
125         struct clk *src_clk;
126         struct clk *esc_clk_src;
127         struct clk *dsi_clk_src;
128
129         u32 src_clk_rate;
130
131         struct gpio_desc *disp_en_gpio;
132         struct gpio_desc *te_gpio;
133
134         const struct msm_dsi_cfg_handler *cfg_hnd;
135
136         struct completion dma_comp;
137         struct completion video_comp;
138         struct mutex dev_mutex;
139         struct mutex cmd_mutex;
140         spinlock_t intr_lock; /* Protect interrupt ctrl register */
141
142         u32 err_work_state;
143         struct work_struct err_work;
144         struct work_struct hpd_work;
145         struct workqueue_struct *workqueue;
146
147         /* DSI 6G TX buffer*/
148         struct drm_gem_object *tx_gem_obj;
149
150         /* DSI v2 TX buffer */
151         void *tx_buf;
152         dma_addr_t tx_buf_paddr;
153
154         int tx_size;
155
156         u8 *rx_buf;
157
158         struct regmap *sfpb;
159
160         struct drm_display_mode *mode;
161
162         /* connected device info */
163         struct device_node *device_node;
164         unsigned int channel;
165         unsigned int lanes;
166         enum mipi_dsi_pixel_format format;
167         unsigned long mode_flags;
168
169         /* lane data parsed via DT */
170         int dlane_swap;
171         int num_data_lanes;
172
173         u32 dma_cmd_ctrl_restore;
174
175         bool registered;
176         bool power_on;
177         int irq;
178 };
179
180 static u32 dsi_get_bpp(const enum mipi_dsi_pixel_format fmt)
181 {
182         switch (fmt) {
183         case MIPI_DSI_FMT_RGB565:               return 16;
184         case MIPI_DSI_FMT_RGB666_PACKED:        return 18;
185         case MIPI_DSI_FMT_RGB666:
186         case MIPI_DSI_FMT_RGB888:
187         default:                                return 24;
188         }
189 }
190
191 static inline u32 dsi_read(struct msm_dsi_host *msm_host, u32 reg)
192 {
193         return msm_readl(msm_host->ctrl_base + reg);
194 }
195 static inline void dsi_write(struct msm_dsi_host *msm_host, u32 reg, u32 data)
196 {
197         msm_writel(data, msm_host->ctrl_base + reg);
198 }
199
200 static int dsi_host_regulator_enable(struct msm_dsi_host *msm_host);
201 static void dsi_host_regulator_disable(struct msm_dsi_host *msm_host);
202
203 static const struct msm_dsi_cfg_handler *dsi_get_config(
204                                                 struct msm_dsi_host *msm_host)
205 {
206         const struct msm_dsi_cfg_handler *cfg_hnd = NULL;
207         struct device *dev = &msm_host->pdev->dev;
208         struct regulator *gdsc_reg;
209         struct clk *ahb_clk;
210         int ret;
211         u32 major = 0, minor = 0;
212
213         gdsc_reg = regulator_get(dev, "gdsc");
214         if (IS_ERR(gdsc_reg)) {
215                 pr_err("%s: cannot get gdsc\n", __func__);
216                 goto exit;
217         }
218
219         ahb_clk = clk_get(dev, "iface_clk");
220         if (IS_ERR(ahb_clk)) {
221                 pr_err("%s: cannot get interface clock\n", __func__);
222                 goto put_gdsc;
223         }
224
225         pm_runtime_get_sync(dev);
226
227         ret = regulator_enable(gdsc_reg);
228         if (ret) {
229                 pr_err("%s: unable to enable gdsc\n", __func__);
230                 goto put_clk;
231         }
232
233         ret = clk_prepare_enable(ahb_clk);
234         if (ret) {
235                 pr_err("%s: unable to enable ahb_clk\n", __func__);
236                 goto disable_gdsc;
237         }
238
239         ret = dsi_get_version(msm_host->ctrl_base, &major, &minor);
240         if (ret) {
241                 pr_err("%s: Invalid version\n", __func__);
242                 goto disable_clks;
243         }
244
245         cfg_hnd = msm_dsi_cfg_get(major, minor);
246
247         DBG("%s: Version %x:%x\n", __func__, major, minor);
248
249 disable_clks:
250         clk_disable_unprepare(ahb_clk);
251 disable_gdsc:
252         regulator_disable(gdsc_reg);
253         pm_runtime_put_sync(dev);
254 put_clk:
255         clk_put(ahb_clk);
256 put_gdsc:
257         regulator_put(gdsc_reg);
258 exit:
259         return cfg_hnd;
260 }
261
262 static inline struct msm_dsi_host *to_msm_dsi_host(struct mipi_dsi_host *host)
263 {
264         return container_of(host, struct msm_dsi_host, base);
265 }
266
267 static void dsi_host_regulator_disable(struct msm_dsi_host *msm_host)
268 {
269         struct regulator_bulk_data *s = msm_host->supplies;
270         const struct dsi_reg_entry *regs = msm_host->cfg_hnd->cfg->reg_cfg.regs;
271         int num = msm_host->cfg_hnd->cfg->reg_cfg.num;
272         int i;
273
274         DBG("");
275         for (i = num - 1; i >= 0; i--)
276                 if (regs[i].disable_load >= 0)
277                         regulator_set_load(s[i].consumer,
278                                            regs[i].disable_load);
279
280         regulator_bulk_disable(num, s);
281 }
282
283 static int dsi_host_regulator_enable(struct msm_dsi_host *msm_host)
284 {
285         struct regulator_bulk_data *s = msm_host->supplies;
286         const struct dsi_reg_entry *regs = msm_host->cfg_hnd->cfg->reg_cfg.regs;
287         int num = msm_host->cfg_hnd->cfg->reg_cfg.num;
288         int ret, i;
289
290         DBG("");
291         for (i = 0; i < num; i++) {
292                 if (regs[i].enable_load >= 0) {
293                         ret = regulator_set_load(s[i].consumer,
294                                                  regs[i].enable_load);
295                         if (ret < 0) {
296                                 pr_err("regulator %d set op mode failed, %d\n",
297                                         i, ret);
298                                 goto fail;
299                         }
300                 }
301         }
302
303         ret = regulator_bulk_enable(num, s);
304         if (ret < 0) {
305                 pr_err("regulator enable failed, %d\n", ret);
306                 goto fail;
307         }
308
309         return 0;
310
311 fail:
312         for (i--; i >= 0; i--)
313                 regulator_set_load(s[i].consumer, regs[i].disable_load);
314         return ret;
315 }
316
317 static int dsi_regulator_init(struct msm_dsi_host *msm_host)
318 {
319         struct regulator_bulk_data *s = msm_host->supplies;
320         const struct dsi_reg_entry *regs = msm_host->cfg_hnd->cfg->reg_cfg.regs;
321         int num = msm_host->cfg_hnd->cfg->reg_cfg.num;
322         int i, ret;
323
324         for (i = 0; i < num; i++)
325                 s[i].supply = regs[i].name;
326
327         ret = devm_regulator_bulk_get(&msm_host->pdev->dev, num, s);
328         if (ret < 0) {
329                 pr_err("%s: failed to init regulator, ret=%d\n",
330                                                 __func__, ret);
331                 return ret;
332         }
333
334         return 0;
335 }
336
337 static int dsi_clk_init(struct msm_dsi_host *msm_host)
338 {
339         struct device *dev = &msm_host->pdev->dev;
340         const struct msm_dsi_cfg_handler *cfg_hnd = msm_host->cfg_hnd;
341         const struct msm_dsi_config *cfg = cfg_hnd->cfg;
342         int i, ret = 0;
343
344         /* get bus clocks */
345         for (i = 0; i < cfg->num_bus_clks; i++) {
346                 msm_host->bus_clks[i] = devm_clk_get(dev,
347                                                 cfg->bus_clk_names[i]);
348                 if (IS_ERR(msm_host->bus_clks[i])) {
349                         ret = PTR_ERR(msm_host->bus_clks[i]);
350                         pr_err("%s: Unable to get %s, ret = %d\n",
351                                 __func__, cfg->bus_clk_names[i], ret);
352                         goto exit;
353                 }
354         }
355
356         /* get link and source clocks */
357         msm_host->byte_clk = devm_clk_get(dev, "byte_clk");
358         if (IS_ERR(msm_host->byte_clk)) {
359                 ret = PTR_ERR(msm_host->byte_clk);
360                 pr_err("%s: can't find dsi_byte_clk. ret=%d\n",
361                         __func__, ret);
362                 msm_host->byte_clk = NULL;
363                 goto exit;
364         }
365
366         msm_host->pixel_clk = devm_clk_get(dev, "pixel_clk");
367         if (IS_ERR(msm_host->pixel_clk)) {
368                 ret = PTR_ERR(msm_host->pixel_clk);
369                 pr_err("%s: can't find dsi_pixel_clk. ret=%d\n",
370                         __func__, ret);
371                 msm_host->pixel_clk = NULL;
372                 goto exit;
373         }
374
375         msm_host->esc_clk = devm_clk_get(dev, "core_clk");
376         if (IS_ERR(msm_host->esc_clk)) {
377                 ret = PTR_ERR(msm_host->esc_clk);
378                 pr_err("%s: can't find dsi_esc_clk. ret=%d\n",
379                         __func__, ret);
380                 msm_host->esc_clk = NULL;
381                 goto exit;
382         }
383
384         msm_host->byte_clk_src = clk_get_parent(msm_host->byte_clk);
385         if (!msm_host->byte_clk_src) {
386                 ret = -ENODEV;
387                 pr_err("%s: can't find byte_clk_src. ret=%d\n", __func__, ret);
388                 goto exit;
389         }
390
391         msm_host->pixel_clk_src = clk_get_parent(msm_host->pixel_clk);
392         if (!msm_host->pixel_clk_src) {
393                 ret = -ENODEV;
394                 pr_err("%s: can't find pixel_clk_src. ret=%d\n", __func__, ret);
395                 goto exit;
396         }
397
398         if (cfg_hnd->major == MSM_DSI_VER_MAJOR_V2) {
399                 msm_host->src_clk = devm_clk_get(dev, "src_clk");
400                 if (IS_ERR(msm_host->src_clk)) {
401                         ret = PTR_ERR(msm_host->src_clk);
402                         pr_err("%s: can't find dsi_src_clk. ret=%d\n",
403                                 __func__, ret);
404                         msm_host->src_clk = NULL;
405                         goto exit;
406                 }
407
408                 msm_host->esc_clk_src = clk_get_parent(msm_host->esc_clk);
409                 if (!msm_host->esc_clk_src) {
410                         ret = -ENODEV;
411                         pr_err("%s: can't get esc_clk_src. ret=%d\n",
412                                 __func__, ret);
413                         goto exit;
414                 }
415
416                 msm_host->dsi_clk_src = clk_get_parent(msm_host->src_clk);
417                 if (!msm_host->dsi_clk_src) {
418                         ret = -ENODEV;
419                         pr_err("%s: can't get dsi_clk_src. ret=%d\n",
420                                 __func__, ret);
421                 }
422         }
423 exit:
424         return ret;
425 }
426
427 static int dsi_bus_clk_enable(struct msm_dsi_host *msm_host)
428 {
429         const struct msm_dsi_config *cfg = msm_host->cfg_hnd->cfg;
430         int i, ret;
431
432         DBG("id=%d", msm_host->id);
433
434         for (i = 0; i < cfg->num_bus_clks; i++) {
435                 ret = clk_prepare_enable(msm_host->bus_clks[i]);
436                 if (ret) {
437                         pr_err("%s: failed to enable bus clock %d ret %d\n",
438                                 __func__, i, ret);
439                         goto err;
440                 }
441         }
442
443         return 0;
444 err:
445         while (--i >= 0)
446                 clk_disable_unprepare(msm_host->bus_clks[i]);
447
448         return ret;
449 }
450
451 static void dsi_bus_clk_disable(struct msm_dsi_host *msm_host)
452 {
453         const struct msm_dsi_config *cfg = msm_host->cfg_hnd->cfg;
454         int i;
455
456         DBG("");
457
458         for (i = cfg->num_bus_clks - 1; i >= 0; i--)
459                 clk_disable_unprepare(msm_host->bus_clks[i]);
460 }
461
462 int msm_dsi_runtime_suspend(struct device *dev)
463 {
464         struct platform_device *pdev = to_platform_device(dev);
465         struct msm_dsi *msm_dsi = platform_get_drvdata(pdev);
466         struct mipi_dsi_host *host = msm_dsi->host;
467         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
468
469         if (!msm_host->cfg_hnd)
470                 return 0;
471
472         dsi_bus_clk_disable(msm_host);
473
474         return 0;
475 }
476
477 int msm_dsi_runtime_resume(struct device *dev)
478 {
479         struct platform_device *pdev = to_platform_device(dev);
480         struct msm_dsi *msm_dsi = platform_get_drvdata(pdev);
481         struct mipi_dsi_host *host = msm_dsi->host;
482         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
483
484         if (!msm_host->cfg_hnd)
485                 return 0;
486
487         return dsi_bus_clk_enable(msm_host);
488 }
489
490 static int dsi_link_clk_enable_6g(struct msm_dsi_host *msm_host)
491 {
492         int ret;
493
494         DBG("Set clk rates: pclk=%d, byteclk=%d",
495                 msm_host->mode->clock, msm_host->byte_clk_rate);
496
497         ret = clk_set_rate(msm_host->byte_clk, msm_host->byte_clk_rate);
498         if (ret) {
499                 pr_err("%s: Failed to set rate byte clk, %d\n", __func__, ret);
500                 goto error;
501         }
502
503         ret = clk_set_rate(msm_host->pixel_clk, msm_host->mode->clock * 1000);
504         if (ret) {
505                 pr_err("%s: Failed to set rate pixel clk, %d\n", __func__, ret);
506                 goto error;
507         }
508
509         ret = clk_prepare_enable(msm_host->esc_clk);
510         if (ret) {
511                 pr_err("%s: Failed to enable dsi esc clk\n", __func__);
512                 goto error;
513         }
514
515         ret = clk_prepare_enable(msm_host->byte_clk);
516         if (ret) {
517                 pr_err("%s: Failed to enable dsi byte clk\n", __func__);
518                 goto byte_clk_err;
519         }
520
521         ret = clk_prepare_enable(msm_host->pixel_clk);
522         if (ret) {
523                 pr_err("%s: Failed to enable dsi pixel clk\n", __func__);
524                 goto pixel_clk_err;
525         }
526
527         return 0;
528
529 pixel_clk_err:
530         clk_disable_unprepare(msm_host->byte_clk);
531 byte_clk_err:
532         clk_disable_unprepare(msm_host->esc_clk);
533 error:
534         return ret;
535 }
536
537 static int dsi_link_clk_enable_v2(struct msm_dsi_host *msm_host)
538 {
539         int ret;
540
541         DBG("Set clk rates: pclk=%d, byteclk=%d, esc_clk=%d, dsi_src_clk=%d",
542                 msm_host->mode->clock, msm_host->byte_clk_rate,
543                 msm_host->esc_clk_rate, msm_host->src_clk_rate);
544
545         ret = clk_set_rate(msm_host->byte_clk, msm_host->byte_clk_rate);
546         if (ret) {
547                 pr_err("%s: Failed to set rate byte clk, %d\n", __func__, ret);
548                 goto error;
549         }
550
551         ret = clk_set_rate(msm_host->esc_clk, msm_host->esc_clk_rate);
552         if (ret) {
553                 pr_err("%s: Failed to set rate esc clk, %d\n", __func__, ret);
554                 goto error;
555         }
556
557         ret = clk_set_rate(msm_host->src_clk, msm_host->src_clk_rate);
558         if (ret) {
559                 pr_err("%s: Failed to set rate src clk, %d\n", __func__, ret);
560                 goto error;
561         }
562
563         ret = clk_set_rate(msm_host->pixel_clk, msm_host->mode->clock * 1000);
564         if (ret) {
565                 pr_err("%s: Failed to set rate pixel clk, %d\n", __func__, ret);
566                 goto error;
567         }
568
569         ret = clk_prepare_enable(msm_host->byte_clk);
570         if (ret) {
571                 pr_err("%s: Failed to enable dsi byte clk\n", __func__);
572                 goto error;
573         }
574
575         ret = clk_prepare_enable(msm_host->esc_clk);
576         if (ret) {
577                 pr_err("%s: Failed to enable dsi esc clk\n", __func__);
578                 goto esc_clk_err;
579         }
580
581         ret = clk_prepare_enable(msm_host->src_clk);
582         if (ret) {
583                 pr_err("%s: Failed to enable dsi src clk\n", __func__);
584                 goto src_clk_err;
585         }
586
587         ret = clk_prepare_enable(msm_host->pixel_clk);
588         if (ret) {
589                 pr_err("%s: Failed to enable dsi pixel clk\n", __func__);
590                 goto pixel_clk_err;
591         }
592
593         return 0;
594
595 pixel_clk_err:
596         clk_disable_unprepare(msm_host->src_clk);
597 src_clk_err:
598         clk_disable_unprepare(msm_host->esc_clk);
599 esc_clk_err:
600         clk_disable_unprepare(msm_host->byte_clk);
601 error:
602         return ret;
603 }
604
605 static int dsi_link_clk_enable(struct msm_dsi_host *msm_host)
606 {
607         const struct msm_dsi_cfg_handler *cfg_hnd = msm_host->cfg_hnd;
608
609         if (cfg_hnd->major == MSM_DSI_VER_MAJOR_6G)
610                 return dsi_link_clk_enable_6g(msm_host);
611         else
612                 return dsi_link_clk_enable_v2(msm_host);
613 }
614
615 static void dsi_link_clk_disable(struct msm_dsi_host *msm_host)
616 {
617         const struct msm_dsi_cfg_handler *cfg_hnd = msm_host->cfg_hnd;
618
619         if (cfg_hnd->major == MSM_DSI_VER_MAJOR_6G) {
620                 clk_disable_unprepare(msm_host->esc_clk);
621                 clk_disable_unprepare(msm_host->pixel_clk);
622                 clk_disable_unprepare(msm_host->byte_clk);
623         } else {
624                 clk_disable_unprepare(msm_host->pixel_clk);
625                 clk_disable_unprepare(msm_host->src_clk);
626                 clk_disable_unprepare(msm_host->esc_clk);
627                 clk_disable_unprepare(msm_host->byte_clk);
628         }
629 }
630
631 static int dsi_calc_clk_rate(struct msm_dsi_host *msm_host)
632 {
633         struct drm_display_mode *mode = msm_host->mode;
634         const struct msm_dsi_cfg_handler *cfg_hnd = msm_host->cfg_hnd;
635         u8 lanes = msm_host->lanes;
636         u32 bpp = dsi_get_bpp(msm_host->format);
637         u32 pclk_rate;
638
639         if (!mode) {
640                 pr_err("%s: mode not set\n", __func__);
641                 return -EINVAL;
642         }
643
644         pclk_rate = mode->clock * 1000;
645         if (lanes > 0) {
646                 msm_host->byte_clk_rate = (pclk_rate * bpp) / (8 * lanes);
647         } else {
648                 pr_err("%s: forcing mdss_dsi lanes to 1\n", __func__);
649                 msm_host->byte_clk_rate = (pclk_rate * bpp) / 8;
650         }
651
652         DBG("pclk=%d, bclk=%d", pclk_rate, msm_host->byte_clk_rate);
653
654         msm_host->esc_clk_rate = clk_get_rate(msm_host->esc_clk);
655
656         if (cfg_hnd->major == MSM_DSI_VER_MAJOR_V2) {
657                 unsigned int esc_mhz, esc_div;
658                 unsigned long byte_mhz;
659
660                 msm_host->src_clk_rate = (pclk_rate * bpp) / 8;
661
662                 /*
663                  * esc clock is byte clock followed by a 4 bit divider,
664                  * we need to find an escape clock frequency within the
665                  * mipi DSI spec range within the maximum divider limit
666                  * We iterate here between an escape clock frequencey
667                  * between 20 Mhz to 5 Mhz and pick up the first one
668                  * that can be supported by our divider
669                  */
670
671                 byte_mhz = msm_host->byte_clk_rate / 1000000;
672
673                 for (esc_mhz = 20; esc_mhz >= 5; esc_mhz--) {
674                         esc_div = DIV_ROUND_UP(byte_mhz, esc_mhz);
675
676                         /*
677                          * TODO: Ideally, we shouldn't know what sort of divider
678                          * is available in mmss_cc, we're just assuming that
679                          * it'll always be a 4 bit divider. Need to come up with
680                          * a better way here.
681                          */
682                         if (esc_div >= 1 && esc_div <= 16)
683                                 break;
684                 }
685
686                 if (esc_mhz < 5)
687                         return -EINVAL;
688
689                 msm_host->esc_clk_rate = msm_host->byte_clk_rate / esc_div;
690
691                 DBG("esc=%d, src=%d", msm_host->esc_clk_rate,
692                         msm_host->src_clk_rate);
693         }
694
695         return 0;
696 }
697
698 static void dsi_intr_ctrl(struct msm_dsi_host *msm_host, u32 mask, int enable)
699 {
700         u32 intr;
701         unsigned long flags;
702
703         spin_lock_irqsave(&msm_host->intr_lock, flags);
704         intr = dsi_read(msm_host, REG_DSI_INTR_CTRL);
705
706         if (enable)
707                 intr |= mask;
708         else
709                 intr &= ~mask;
710
711         DBG("intr=%x enable=%d", intr, enable);
712
713         dsi_write(msm_host, REG_DSI_INTR_CTRL, intr);
714         spin_unlock_irqrestore(&msm_host->intr_lock, flags);
715 }
716
717 static inline enum dsi_traffic_mode dsi_get_traffic_mode(const u32 mode_flags)
718 {
719         if (mode_flags & MIPI_DSI_MODE_VIDEO_BURST)
720                 return BURST_MODE;
721         else if (mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)
722                 return NON_BURST_SYNCH_PULSE;
723
724         return NON_BURST_SYNCH_EVENT;
725 }
726
727 static inline enum dsi_vid_dst_format dsi_get_vid_fmt(
728                                 const enum mipi_dsi_pixel_format mipi_fmt)
729 {
730         switch (mipi_fmt) {
731         case MIPI_DSI_FMT_RGB888:       return VID_DST_FORMAT_RGB888;
732         case MIPI_DSI_FMT_RGB666:       return VID_DST_FORMAT_RGB666_LOOSE;
733         case MIPI_DSI_FMT_RGB666_PACKED:        return VID_DST_FORMAT_RGB666;
734         case MIPI_DSI_FMT_RGB565:       return VID_DST_FORMAT_RGB565;
735         default:                        return VID_DST_FORMAT_RGB888;
736         }
737 }
738
739 static inline enum dsi_cmd_dst_format dsi_get_cmd_fmt(
740                                 const enum mipi_dsi_pixel_format mipi_fmt)
741 {
742         switch (mipi_fmt) {
743         case MIPI_DSI_FMT_RGB888:       return CMD_DST_FORMAT_RGB888;
744         case MIPI_DSI_FMT_RGB666_PACKED:
745         case MIPI_DSI_FMT_RGB666:       return CMD_DST_FORMAT_RGB666;
746         case MIPI_DSI_FMT_RGB565:       return CMD_DST_FORMAT_RGB565;
747         default:                        return CMD_DST_FORMAT_RGB888;
748         }
749 }
750
751 static void dsi_ctrl_config(struct msm_dsi_host *msm_host, bool enable,
752                         struct msm_dsi_phy_shared_timings *phy_shared_timings)
753 {
754         u32 flags = msm_host->mode_flags;
755         enum mipi_dsi_pixel_format mipi_fmt = msm_host->format;
756         const struct msm_dsi_cfg_handler *cfg_hnd = msm_host->cfg_hnd;
757         u32 data = 0;
758
759         if (!enable) {
760                 dsi_write(msm_host, REG_DSI_CTRL, 0);
761                 return;
762         }
763
764         if (flags & MIPI_DSI_MODE_VIDEO) {
765                 if (flags & MIPI_DSI_MODE_VIDEO_HSE)
766                         data |= DSI_VID_CFG0_PULSE_MODE_HSA_HE;
767                 if (flags & MIPI_DSI_MODE_VIDEO_HFP)
768                         data |= DSI_VID_CFG0_HFP_POWER_STOP;
769                 if (flags & MIPI_DSI_MODE_VIDEO_HBP)
770                         data |= DSI_VID_CFG0_HBP_POWER_STOP;
771                 if (flags & MIPI_DSI_MODE_VIDEO_HSA)
772                         data |= DSI_VID_CFG0_HSA_POWER_STOP;
773                 /* Always set low power stop mode for BLLP
774                  * to let command engine send packets
775                  */
776                 data |= DSI_VID_CFG0_EOF_BLLP_POWER_STOP |
777                         DSI_VID_CFG0_BLLP_POWER_STOP;
778                 data |= DSI_VID_CFG0_TRAFFIC_MODE(dsi_get_traffic_mode(flags));
779                 data |= DSI_VID_CFG0_DST_FORMAT(dsi_get_vid_fmt(mipi_fmt));
780                 data |= DSI_VID_CFG0_VIRT_CHANNEL(msm_host->channel);
781                 dsi_write(msm_host, REG_DSI_VID_CFG0, data);
782
783                 /* Do not swap RGB colors */
784                 data = DSI_VID_CFG1_RGB_SWAP(SWAP_RGB);
785                 dsi_write(msm_host, REG_DSI_VID_CFG1, 0);
786         } else {
787                 /* Do not swap RGB colors */
788                 data = DSI_CMD_CFG0_RGB_SWAP(SWAP_RGB);
789                 data |= DSI_CMD_CFG0_DST_FORMAT(dsi_get_cmd_fmt(mipi_fmt));
790                 dsi_write(msm_host, REG_DSI_CMD_CFG0, data);
791
792                 data = DSI_CMD_CFG1_WR_MEM_START(MIPI_DCS_WRITE_MEMORY_START) |
793                         DSI_CMD_CFG1_WR_MEM_CONTINUE(
794                                         MIPI_DCS_WRITE_MEMORY_CONTINUE);
795                 /* Always insert DCS command */
796                 data |= DSI_CMD_CFG1_INSERT_DCS_COMMAND;
797                 dsi_write(msm_host, REG_DSI_CMD_CFG1, data);
798         }
799
800         dsi_write(msm_host, REG_DSI_CMD_DMA_CTRL,
801                         DSI_CMD_DMA_CTRL_FROM_FRAME_BUFFER |
802                         DSI_CMD_DMA_CTRL_LOW_POWER);
803
804         data = 0;
805         /* Always assume dedicated TE pin */
806         data |= DSI_TRIG_CTRL_TE;
807         data |= DSI_TRIG_CTRL_MDP_TRIGGER(TRIGGER_NONE);
808         data |= DSI_TRIG_CTRL_DMA_TRIGGER(TRIGGER_SW);
809         data |= DSI_TRIG_CTRL_STREAM(msm_host->channel);
810         if ((cfg_hnd->major == MSM_DSI_VER_MAJOR_6G) &&
811                 (cfg_hnd->minor >= MSM_DSI_6G_VER_MINOR_V1_2))
812                 data |= DSI_TRIG_CTRL_BLOCK_DMA_WITHIN_FRAME;
813         dsi_write(msm_host, REG_DSI_TRIG_CTRL, data);
814
815         data = DSI_CLKOUT_TIMING_CTRL_T_CLK_POST(phy_shared_timings->clk_post) |
816                 DSI_CLKOUT_TIMING_CTRL_T_CLK_PRE(phy_shared_timings->clk_pre);
817         dsi_write(msm_host, REG_DSI_CLKOUT_TIMING_CTRL, data);
818
819         if ((cfg_hnd->major == MSM_DSI_VER_MAJOR_6G) &&
820             (cfg_hnd->minor > MSM_DSI_6G_VER_MINOR_V1_0) &&
821             phy_shared_timings->clk_pre_inc_by_2)
822                 dsi_write(msm_host, REG_DSI_T_CLK_PRE_EXTEND,
823                           DSI_T_CLK_PRE_EXTEND_INC_BY_2_BYTECLK);
824
825         data = 0;
826         if (!(flags & MIPI_DSI_MODE_EOT_PACKET))
827                 data |= DSI_EOT_PACKET_CTRL_TX_EOT_APPEND;
828         dsi_write(msm_host, REG_DSI_EOT_PACKET_CTRL, data);
829
830         /* allow only ack-err-status to generate interrupt */
831         dsi_write(msm_host, REG_DSI_ERR_INT_MASK0, 0x13ff3fe0);
832
833         dsi_intr_ctrl(msm_host, DSI_IRQ_MASK_ERROR, 1);
834
835         dsi_write(msm_host, REG_DSI_CLK_CTRL, DSI_CLK_CTRL_ENABLE_CLKS);
836
837         data = DSI_CTRL_CLK_EN;
838
839         DBG("lane number=%d", msm_host->lanes);
840         data |= ((DSI_CTRL_LANE0 << msm_host->lanes) - DSI_CTRL_LANE0);
841
842         dsi_write(msm_host, REG_DSI_LANE_SWAP_CTRL,
843                   DSI_LANE_SWAP_CTRL_DLN_SWAP_SEL(msm_host->dlane_swap));
844
845         if (!(flags & MIPI_DSI_CLOCK_NON_CONTINUOUS))
846                 dsi_write(msm_host, REG_DSI_LANE_CTRL,
847                         DSI_LANE_CTRL_CLKLN_HS_FORCE_REQUEST);
848
849         data |= DSI_CTRL_ENABLE;
850
851         dsi_write(msm_host, REG_DSI_CTRL, data);
852 }
853
854 static void dsi_timing_setup(struct msm_dsi_host *msm_host)
855 {
856         struct drm_display_mode *mode = msm_host->mode;
857         u32 hs_start = 0, vs_start = 0; /* take sync start as 0 */
858         u32 h_total = mode->htotal;
859         u32 v_total = mode->vtotal;
860         u32 hs_end = mode->hsync_end - mode->hsync_start;
861         u32 vs_end = mode->vsync_end - mode->vsync_start;
862         u32 ha_start = h_total - mode->hsync_start;
863         u32 ha_end = ha_start + mode->hdisplay;
864         u32 va_start = v_total - mode->vsync_start;
865         u32 va_end = va_start + mode->vdisplay;
866         u32 wc;
867
868         DBG("");
869
870         if (msm_host->mode_flags & MIPI_DSI_MODE_VIDEO) {
871                 dsi_write(msm_host, REG_DSI_ACTIVE_H,
872                         DSI_ACTIVE_H_START(ha_start) |
873                         DSI_ACTIVE_H_END(ha_end));
874                 dsi_write(msm_host, REG_DSI_ACTIVE_V,
875                         DSI_ACTIVE_V_START(va_start) |
876                         DSI_ACTIVE_V_END(va_end));
877                 dsi_write(msm_host, REG_DSI_TOTAL,
878                         DSI_TOTAL_H_TOTAL(h_total - 1) |
879                         DSI_TOTAL_V_TOTAL(v_total - 1));
880
881                 dsi_write(msm_host, REG_DSI_ACTIVE_HSYNC,
882                         DSI_ACTIVE_HSYNC_START(hs_start) |
883                         DSI_ACTIVE_HSYNC_END(hs_end));
884                 dsi_write(msm_host, REG_DSI_ACTIVE_VSYNC_HPOS, 0);
885                 dsi_write(msm_host, REG_DSI_ACTIVE_VSYNC_VPOS,
886                         DSI_ACTIVE_VSYNC_VPOS_START(vs_start) |
887                         DSI_ACTIVE_VSYNC_VPOS_END(vs_end));
888         } else {                /* command mode */
889                 /* image data and 1 byte write_memory_start cmd */
890                 wc = mode->hdisplay * dsi_get_bpp(msm_host->format) / 8 + 1;
891
892                 dsi_write(msm_host, REG_DSI_CMD_MDP_STREAM_CTRL,
893                         DSI_CMD_MDP_STREAM_CTRL_WORD_COUNT(wc) |
894                         DSI_CMD_MDP_STREAM_CTRL_VIRTUAL_CHANNEL(
895                                         msm_host->channel) |
896                         DSI_CMD_MDP_STREAM_CTRL_DATA_TYPE(
897                                         MIPI_DSI_DCS_LONG_WRITE));
898
899                 dsi_write(msm_host, REG_DSI_CMD_MDP_STREAM_TOTAL,
900                         DSI_CMD_MDP_STREAM_TOTAL_H_TOTAL(mode->hdisplay) |
901                         DSI_CMD_MDP_STREAM_TOTAL_V_TOTAL(mode->vdisplay));
902         }
903 }
904
905 static void dsi_sw_reset(struct msm_dsi_host *msm_host)
906 {
907         dsi_write(msm_host, REG_DSI_CLK_CTRL, DSI_CLK_CTRL_ENABLE_CLKS);
908         wmb(); /* clocks need to be enabled before reset */
909
910         dsi_write(msm_host, REG_DSI_RESET, 1);
911         msleep(DSI_RESET_TOGGLE_DELAY_MS); /* make sure reset happen */
912         dsi_write(msm_host, REG_DSI_RESET, 0);
913 }
914
915 static void dsi_op_mode_config(struct msm_dsi_host *msm_host,
916                                         bool video_mode, bool enable)
917 {
918         u32 dsi_ctrl;
919
920         dsi_ctrl = dsi_read(msm_host, REG_DSI_CTRL);
921
922         if (!enable) {
923                 dsi_ctrl &= ~(DSI_CTRL_ENABLE | DSI_CTRL_VID_MODE_EN |
924                                 DSI_CTRL_CMD_MODE_EN);
925                 dsi_intr_ctrl(msm_host, DSI_IRQ_MASK_CMD_MDP_DONE |
926                                         DSI_IRQ_MASK_VIDEO_DONE, 0);
927         } else {
928                 if (video_mode) {
929                         dsi_ctrl |= DSI_CTRL_VID_MODE_EN;
930                 } else {                /* command mode */
931                         dsi_ctrl |= DSI_CTRL_CMD_MODE_EN;
932                         dsi_intr_ctrl(msm_host, DSI_IRQ_MASK_CMD_MDP_DONE, 1);
933                 }
934                 dsi_ctrl |= DSI_CTRL_ENABLE;
935         }
936
937         dsi_write(msm_host, REG_DSI_CTRL, dsi_ctrl);
938 }
939
940 static void dsi_set_tx_power_mode(int mode, struct msm_dsi_host *msm_host)
941 {
942         u32 data;
943
944         data = dsi_read(msm_host, REG_DSI_CMD_DMA_CTRL);
945
946         if (mode == 0)
947                 data &= ~DSI_CMD_DMA_CTRL_LOW_POWER;
948         else
949                 data |= DSI_CMD_DMA_CTRL_LOW_POWER;
950
951         dsi_write(msm_host, REG_DSI_CMD_DMA_CTRL, data);
952 }
953
954 static void dsi_wait4video_done(struct msm_dsi_host *msm_host)
955 {
956         dsi_intr_ctrl(msm_host, DSI_IRQ_MASK_VIDEO_DONE, 1);
957
958         reinit_completion(&msm_host->video_comp);
959
960         wait_for_completion_timeout(&msm_host->video_comp,
961                         msecs_to_jiffies(70));
962
963         dsi_intr_ctrl(msm_host, DSI_IRQ_MASK_VIDEO_DONE, 0);
964 }
965
966 static void dsi_wait4video_eng_busy(struct msm_dsi_host *msm_host)
967 {
968         if (!(msm_host->mode_flags & MIPI_DSI_MODE_VIDEO))
969                 return;
970
971         if (msm_host->power_on) {
972                 dsi_wait4video_done(msm_host);
973                 /* delay 4 ms to skip BLLP */
974                 usleep_range(2000, 4000);
975         }
976 }
977
978 /* dsi_cmd */
979 static int dsi_tx_buf_alloc(struct msm_dsi_host *msm_host, int size)
980 {
981         struct drm_device *dev = msm_host->dev;
982         struct msm_drm_private *priv = dev->dev_private;
983         const struct msm_dsi_cfg_handler *cfg_hnd = msm_host->cfg_hnd;
984         int ret;
985         uint64_t iova;
986
987         if (cfg_hnd->major == MSM_DSI_VER_MAJOR_6G) {
988                 msm_host->tx_gem_obj = msm_gem_new(dev, size, MSM_BO_UNCACHED);
989                 if (IS_ERR(msm_host->tx_gem_obj)) {
990                         ret = PTR_ERR(msm_host->tx_gem_obj);
991                         pr_err("%s: failed to allocate gem, %d\n",
992                                 __func__, ret);
993                         msm_host->tx_gem_obj = NULL;
994                         return ret;
995                 }
996
997                 ret = msm_gem_get_iova(msm_host->tx_gem_obj,
998                                 priv->kms->aspace, &iova);
999                 mutex_unlock(&dev->struct_mutex);
1000                 if (ret) {
1001                         pr_err("%s: failed to get iova, %d\n", __func__, ret);
1002                         return ret;
1003                 }
1004
1005                 if (iova & 0x07) {
1006                         pr_err("%s: buf NOT 8 bytes aligned\n", __func__);
1007                         return -EINVAL;
1008                 }
1009
1010                 msm_host->tx_size = msm_host->tx_gem_obj->size;
1011         } else {
1012                 msm_host->tx_buf = dma_alloc_coherent(dev->dev, size,
1013                                         &msm_host->tx_buf_paddr, GFP_KERNEL);
1014                 if (!msm_host->tx_buf) {
1015                         ret = -ENOMEM;
1016                         pr_err("%s: failed to allocate tx buf, %d\n",
1017                                 __func__, ret);
1018                         return ret;
1019                 }
1020
1021                 msm_host->tx_size = size;
1022         }
1023
1024         return 0;
1025 }
1026
1027 static void dsi_tx_buf_free(struct msm_dsi_host *msm_host)
1028 {
1029         struct drm_device *dev = msm_host->dev;
1030
1031         if (msm_host->tx_gem_obj) {
1032                 msm_gem_put_iova(msm_host->tx_gem_obj, 0);
1033                 mutex_lock(&dev->struct_mutex);
1034                 msm_gem_free_object(msm_host->tx_gem_obj);
1035                 msm_host->tx_gem_obj = NULL;
1036                 mutex_unlock(&dev->struct_mutex);
1037         }
1038
1039         if (msm_host->tx_buf)
1040                 dma_free_coherent(dev->dev, msm_host->tx_size, msm_host->tx_buf,
1041                         msm_host->tx_buf_paddr);
1042 }
1043
1044 /*
1045  * prepare cmd buffer to be txed
1046  */
1047 static int dsi_cmd_dma_add(struct msm_dsi_host *msm_host,
1048                            const struct mipi_dsi_msg *msg)
1049 {
1050         const struct msm_dsi_cfg_handler *cfg_hnd = msm_host->cfg_hnd;
1051         struct mipi_dsi_packet packet;
1052         int len;
1053         int ret;
1054         u8 *data;
1055
1056         ret = mipi_dsi_create_packet(&packet, msg);
1057         if (ret) {
1058                 pr_err("%s: create packet failed, %d\n", __func__, ret);
1059                 return ret;
1060         }
1061         len = (packet.size + 3) & (~0x3);
1062
1063         if (len > msm_host->tx_size) {
1064                 pr_err("%s: packet size is too big\n", __func__);
1065                 return -EINVAL;
1066         }
1067
1068         if (cfg_hnd->major == MSM_DSI_VER_MAJOR_6G) {
1069                 data = msm_gem_get_vaddr(msm_host->tx_gem_obj);
1070                 if (IS_ERR(data)) {
1071                         ret = PTR_ERR(data);
1072                         pr_err("%s: get vaddr failed, %d\n", __func__, ret);
1073                         return ret;
1074                 }
1075         } else {
1076                 data = msm_host->tx_buf;
1077         }
1078
1079         /* MSM specific command format in memory */
1080         data[0] = packet.header[1];
1081         data[1] = packet.header[2];
1082         data[2] = packet.header[0];
1083         data[3] = BIT(7); /* Last packet */
1084         if (mipi_dsi_packet_format_is_long(msg->type))
1085                 data[3] |= BIT(6);
1086         if (msg->rx_buf && msg->rx_len)
1087                 data[3] |= BIT(5);
1088
1089         /* Long packet */
1090         if (packet.payload && packet.payload_length)
1091                 memcpy(data + 4, packet.payload, packet.payload_length);
1092
1093         /* Append 0xff to the end */
1094         if (packet.size < len)
1095                 memset(data + packet.size, 0xff, len - packet.size);
1096
1097         if (cfg_hnd->major == MSM_DSI_VER_MAJOR_6G)
1098                 msm_gem_put_vaddr(msm_host->tx_gem_obj);
1099
1100         return len;
1101 }
1102
1103 /*
1104  * dsi_short_read1_resp: 1 parameter
1105  */
1106 static int dsi_short_read1_resp(u8 *buf, const struct mipi_dsi_msg *msg)
1107 {
1108         u8 *data = msg->rx_buf;
1109         if (data && (msg->rx_len >= 1)) {
1110                 *data = buf[1]; /* strip out dcs type */
1111                 return 1;
1112         } else {
1113                 pr_err("%s: read data does not match with rx_buf len %zu\n",
1114                         __func__, msg->rx_len);
1115                 return -EINVAL;
1116         }
1117 }
1118
1119 /*
1120  * dsi_short_read2_resp: 2 parameter
1121  */
1122 static int dsi_short_read2_resp(u8 *buf, const struct mipi_dsi_msg *msg)
1123 {
1124         u8 *data = msg->rx_buf;
1125         if (data && (msg->rx_len >= 2)) {
1126                 data[0] = buf[1]; /* strip out dcs type */
1127                 data[1] = buf[2];
1128                 return 2;
1129         } else {
1130                 pr_err("%s: read data does not match with rx_buf len %zu\n",
1131                         __func__, msg->rx_len);
1132                 return -EINVAL;
1133         }
1134 }
1135
1136 static int dsi_long_read_resp(u8 *buf, const struct mipi_dsi_msg *msg)
1137 {
1138         /* strip out 4 byte dcs header */
1139         if (msg->rx_buf && msg->rx_len)
1140                 memcpy(msg->rx_buf, buf + 4, msg->rx_len);
1141
1142         return msg->rx_len;
1143 }
1144
1145 static int dsi_cmd_dma_tx(struct msm_dsi_host *msm_host, int len)
1146 {
1147         const struct msm_dsi_cfg_handler *cfg_hnd = msm_host->cfg_hnd;
1148         struct drm_device *dev = msm_host->dev;
1149         struct msm_drm_private *priv = dev->dev_private;
1150         int ret;
1151         uint64_t dma_base;
1152         bool triggered;
1153
1154         if (cfg_hnd->major == MSM_DSI_VER_MAJOR_6G) {
1155                 ret = msm_gem_get_iova(msm_host->tx_gem_obj,
1156                                 priv->kms->aspace, &dma_base);
1157                 if (ret) {
1158                         pr_err("%s: failed to get iova: %d\n", __func__, ret);
1159                         return ret;
1160                 }
1161         } else {
1162                 dma_base = msm_host->tx_buf_paddr;
1163         }
1164
1165         reinit_completion(&msm_host->dma_comp);
1166
1167         dsi_wait4video_eng_busy(msm_host);
1168
1169         triggered = msm_dsi_manager_cmd_xfer_trigger(
1170                                                 msm_host->id, dma_base, len);
1171         if (triggered) {
1172                 ret = wait_for_completion_timeout(&msm_host->dma_comp,
1173                                         msecs_to_jiffies(200));
1174                 DBG("ret=%d", ret);
1175                 if (ret == 0)
1176                         ret = -ETIMEDOUT;
1177                 else
1178                         ret = len;
1179         } else
1180                 ret = len;
1181
1182         return ret;
1183 }
1184
1185 static int dsi_cmd_dma_rx(struct msm_dsi_host *msm_host,
1186                         u8 *buf, int rx_byte, int pkt_size)
1187 {
1188         u32 *lp, *temp, data;
1189         int i, j = 0, cnt;
1190         u32 read_cnt;
1191         u8 reg[16];
1192         int repeated_bytes = 0;
1193         int buf_offset = buf - msm_host->rx_buf;
1194
1195         lp = (u32 *)buf;
1196         temp = (u32 *)reg;
1197         cnt = (rx_byte + 3) >> 2;
1198         if (cnt > 4)
1199                 cnt = 4; /* 4 x 32 bits registers only */
1200
1201         if (rx_byte == 4)
1202                 read_cnt = 4;
1203         else
1204                 read_cnt = pkt_size + 6;
1205
1206         /*
1207          * In case of multiple reads from the panel, after the first read, there
1208          * is possibility that there are some bytes in the payload repeating in
1209          * the RDBK_DATA registers. Since we read all the parameters from the
1210          * panel right from the first byte for every pass. We need to skip the
1211          * repeating bytes and then append the new parameters to the rx buffer.
1212          */
1213         if (read_cnt > 16) {
1214                 int bytes_shifted;
1215                 /* Any data more than 16 bytes will be shifted out.
1216                  * The temp read buffer should already contain these bytes.
1217                  * The remaining bytes in read buffer are the repeated bytes.
1218                  */
1219                 bytes_shifted = read_cnt - 16;
1220                 repeated_bytes = buf_offset - bytes_shifted;
1221         }
1222
1223         for (i = cnt - 1; i >= 0; i--) {
1224                 data = dsi_read(msm_host, REG_DSI_RDBK_DATA(i));
1225                 *temp++ = ntohl(data); /* to host byte order */
1226                 DBG("data = 0x%x and ntohl(data) = 0x%x", data, ntohl(data));
1227         }
1228
1229         for (i = repeated_bytes; i < 16; i++)
1230                 buf[j++] = reg[i];
1231
1232         return j;
1233 }
1234
1235 static int dsi_cmds2buf_tx(struct msm_dsi_host *msm_host,
1236                                 const struct mipi_dsi_msg *msg)
1237 {
1238         int len, ret;
1239         int bllp_len = msm_host->mode->hdisplay *
1240                         dsi_get_bpp(msm_host->format) / 8;
1241
1242         len = dsi_cmd_dma_add(msm_host, msg);
1243         if (len < 0) {
1244                 pr_err("%s: failed to add cmd type = 0x%x\n",
1245                         __func__,  msg->type);
1246                 return len;
1247         }
1248
1249         /* for video mode, do not send cmds more than
1250         * one pixel line, since it only transmit it
1251         * during BLLP.
1252         */
1253         /* TODO: if the command is sent in LP mode, the bit rate is only
1254          * half of esc clk rate. In this case, if the video is already
1255          * actively streaming, we need to check more carefully if the
1256          * command can be fit into one BLLP.
1257          */
1258         if ((msm_host->mode_flags & MIPI_DSI_MODE_VIDEO) && (len > bllp_len)) {
1259                 pr_err("%s: cmd cannot fit into BLLP period, len=%d\n",
1260                         __func__, len);
1261                 return -EINVAL;
1262         }
1263
1264         ret = dsi_cmd_dma_tx(msm_host, len);
1265         if (ret < 0) {
1266                 pr_err("%s: cmd dma tx failed, type=0x%x, data0=0x%x, len=%d, ret=%d\n",
1267                         __func__, msg->type, (*(u8 *)(msg->tx_buf)), len, ret);
1268                 return ret;
1269         } else if (ret < len) {
1270                 pr_err("%s: cmd dma tx failed, type=0x%x, data0=0x%x, ret=%d len=%d\n",
1271                         __func__, msg->type, (*(u8 *)(msg->tx_buf)), ret, len);
1272                 return -EIO;
1273         }
1274
1275         return len;
1276 }
1277
1278 static void dsi_sw_reset_restore(struct msm_dsi_host *msm_host)
1279 {
1280         u32 data0, data1;
1281
1282         data0 = dsi_read(msm_host, REG_DSI_CTRL);
1283         data1 = data0;
1284         data1 &= ~DSI_CTRL_ENABLE;
1285         dsi_write(msm_host, REG_DSI_CTRL, data1);
1286         /*
1287          * dsi controller need to be disabled before
1288          * clocks turned on
1289          */
1290         wmb();
1291
1292         dsi_write(msm_host, REG_DSI_CLK_CTRL, DSI_CLK_CTRL_ENABLE_CLKS);
1293         wmb();  /* make sure clocks enabled */
1294
1295         /* dsi controller can only be reset while clocks are running */
1296         dsi_write(msm_host, REG_DSI_RESET, 1);
1297         msleep(DSI_RESET_TOGGLE_DELAY_MS); /* make sure reset happen */
1298         dsi_write(msm_host, REG_DSI_RESET, 0);
1299         wmb();  /* controller out of reset */
1300         dsi_write(msm_host, REG_DSI_CTRL, data0);
1301         wmb();  /* make sure dsi controller enabled again */
1302 }
1303
1304 static void dsi_hpd_worker(struct work_struct *work)
1305 {
1306         struct msm_dsi_host *msm_host =
1307                 container_of(work, struct msm_dsi_host, hpd_work);
1308
1309         drm_helper_hpd_irq_event(msm_host->dev);
1310 }
1311
1312 static void dsi_err_worker(struct work_struct *work)
1313 {
1314         struct msm_dsi_host *msm_host =
1315                 container_of(work, struct msm_dsi_host, err_work);
1316         u32 status = msm_host->err_work_state;
1317
1318         pr_err_ratelimited("%s: status=%x\n", __func__, status);
1319         if (status & DSI_ERR_STATE_MDP_FIFO_UNDERFLOW)
1320                 dsi_sw_reset_restore(msm_host);
1321
1322         /* It is safe to clear here because error irq is disabled. */
1323         msm_host->err_work_state = 0;
1324
1325         /* enable dsi error interrupt */
1326         dsi_intr_ctrl(msm_host, DSI_IRQ_MASK_ERROR, 1);
1327 }
1328
1329 static void dsi_ack_err_status(struct msm_dsi_host *msm_host)
1330 {
1331         u32 status;
1332
1333         status = dsi_read(msm_host, REG_DSI_ACK_ERR_STATUS);
1334
1335         if (status) {
1336                 dsi_write(msm_host, REG_DSI_ACK_ERR_STATUS, status);
1337                 /* Writing of an extra 0 needed to clear error bits */
1338                 dsi_write(msm_host, REG_DSI_ACK_ERR_STATUS, 0);
1339                 msm_host->err_work_state |= DSI_ERR_STATE_ACK;
1340         }
1341 }
1342
1343 static void dsi_timeout_status(struct msm_dsi_host *msm_host)
1344 {
1345         u32 status;
1346
1347         status = dsi_read(msm_host, REG_DSI_TIMEOUT_STATUS);
1348
1349         if (status) {
1350                 dsi_write(msm_host, REG_DSI_TIMEOUT_STATUS, status);
1351                 msm_host->err_work_state |= DSI_ERR_STATE_TIMEOUT;
1352         }
1353 }
1354
1355 static void dsi_dln0_phy_err(struct msm_dsi_host *msm_host)
1356 {
1357         u32 status;
1358
1359         status = dsi_read(msm_host, REG_DSI_DLN0_PHY_ERR);
1360
1361         if (status & (DSI_DLN0_PHY_ERR_DLN0_ERR_ESC |
1362                         DSI_DLN0_PHY_ERR_DLN0_ERR_SYNC_ESC |
1363                         DSI_DLN0_PHY_ERR_DLN0_ERR_CONTROL |
1364                         DSI_DLN0_PHY_ERR_DLN0_ERR_CONTENTION_LP0 |
1365                         DSI_DLN0_PHY_ERR_DLN0_ERR_CONTENTION_LP1)) {
1366                 dsi_write(msm_host, REG_DSI_DLN0_PHY_ERR, status);
1367                 msm_host->err_work_state |= DSI_ERR_STATE_DLN0_PHY;
1368         }
1369 }
1370
1371 static void dsi_fifo_status(struct msm_dsi_host *msm_host)
1372 {
1373         u32 status;
1374
1375         status = dsi_read(msm_host, REG_DSI_FIFO_STATUS);
1376
1377         /* fifo underflow, overflow */
1378         if (status) {
1379                 dsi_write(msm_host, REG_DSI_FIFO_STATUS, status);
1380                 msm_host->err_work_state |= DSI_ERR_STATE_FIFO;
1381                 if (status & DSI_FIFO_STATUS_CMD_MDP_FIFO_UNDERFLOW)
1382                         msm_host->err_work_state |=
1383                                         DSI_ERR_STATE_MDP_FIFO_UNDERFLOW;
1384         }
1385 }
1386
1387 static void dsi_status(struct msm_dsi_host *msm_host)
1388 {
1389         u32 status;
1390
1391         status = dsi_read(msm_host, REG_DSI_STATUS0);
1392
1393         if (status & DSI_STATUS0_INTERLEAVE_OP_CONTENTION) {
1394                 dsi_write(msm_host, REG_DSI_STATUS0, status);
1395                 msm_host->err_work_state |=
1396                         DSI_ERR_STATE_INTERLEAVE_OP_CONTENTION;
1397         }
1398 }
1399
1400 static void dsi_clk_status(struct msm_dsi_host *msm_host)
1401 {
1402         u32 status;
1403
1404         status = dsi_read(msm_host, REG_DSI_CLK_STATUS);
1405
1406         if (status & DSI_CLK_STATUS_PLL_UNLOCKED) {
1407                 dsi_write(msm_host, REG_DSI_CLK_STATUS, status);
1408                 msm_host->err_work_state |= DSI_ERR_STATE_PLL_UNLOCKED;
1409         }
1410 }
1411
1412 static void dsi_error(struct msm_dsi_host *msm_host)
1413 {
1414         /* disable dsi error interrupt */
1415         dsi_intr_ctrl(msm_host, DSI_IRQ_MASK_ERROR, 0);
1416
1417         dsi_clk_status(msm_host);
1418         dsi_fifo_status(msm_host);
1419         dsi_ack_err_status(msm_host);
1420         dsi_timeout_status(msm_host);
1421         dsi_status(msm_host);
1422         dsi_dln0_phy_err(msm_host);
1423
1424         queue_work(msm_host->workqueue, &msm_host->err_work);
1425 }
1426
1427 static irqreturn_t dsi_host_irq(int irq, void *ptr)
1428 {
1429         struct msm_dsi_host *msm_host = ptr;
1430         u32 isr;
1431         unsigned long flags;
1432
1433         if (!msm_host->ctrl_base)
1434                 return IRQ_HANDLED;
1435
1436         spin_lock_irqsave(&msm_host->intr_lock, flags);
1437         isr = dsi_read(msm_host, REG_DSI_INTR_CTRL);
1438         dsi_write(msm_host, REG_DSI_INTR_CTRL, isr);
1439         spin_unlock_irqrestore(&msm_host->intr_lock, flags);
1440
1441         DBG("isr=0x%x, id=%d", isr, msm_host->id);
1442
1443         if (isr & DSI_IRQ_ERROR)
1444                 dsi_error(msm_host);
1445
1446         if (isr & DSI_IRQ_VIDEO_DONE)
1447                 complete(&msm_host->video_comp);
1448
1449         if (isr & DSI_IRQ_CMD_DMA_DONE)
1450                 complete(&msm_host->dma_comp);
1451
1452         return IRQ_HANDLED;
1453 }
1454
1455 static int dsi_host_init_panel_gpios(struct msm_dsi_host *msm_host,
1456                         struct device *panel_device)
1457 {
1458         msm_host->disp_en_gpio = devm_gpiod_get_optional(panel_device,
1459                                                          "disp-enable",
1460                                                          GPIOD_OUT_LOW);
1461         if (IS_ERR(msm_host->disp_en_gpio)) {
1462                 DBG("cannot get disp-enable-gpios %ld",
1463                                 PTR_ERR(msm_host->disp_en_gpio));
1464                 return PTR_ERR(msm_host->disp_en_gpio);
1465         }
1466
1467         msm_host->te_gpio = devm_gpiod_get_optional(panel_device, "disp-te",
1468                                                                 GPIOD_IN);
1469         if (IS_ERR(msm_host->te_gpio)) {
1470                 DBG("cannot get disp-te-gpios %ld", PTR_ERR(msm_host->te_gpio));
1471                 return PTR_ERR(msm_host->te_gpio);
1472         }
1473
1474         return 0;
1475 }
1476
1477 static int dsi_host_attach(struct mipi_dsi_host *host,
1478                                         struct mipi_dsi_device *dsi)
1479 {
1480         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1481         int ret;
1482
1483         if (dsi->lanes > msm_host->num_data_lanes)
1484                 return -EINVAL;
1485
1486         msm_host->channel = dsi->channel;
1487         msm_host->lanes = dsi->lanes;
1488         msm_host->format = dsi->format;
1489         msm_host->mode_flags = dsi->mode_flags;
1490
1491         msm_dsi_manager_attach_dsi_device(msm_host->id, dsi->mode_flags);
1492
1493         /* Some gpios defined in panel DT need to be controlled by host */
1494         ret = dsi_host_init_panel_gpios(msm_host, &dsi->dev);
1495         if (ret)
1496                 return ret;
1497
1498         DBG("id=%d", msm_host->id);
1499         if (msm_host->dev)
1500                 queue_work(msm_host->workqueue, &msm_host->hpd_work);
1501
1502         return 0;
1503 }
1504
1505 static int dsi_host_detach(struct mipi_dsi_host *host,
1506                                         struct mipi_dsi_device *dsi)
1507 {
1508         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1509
1510         msm_host->device_node = NULL;
1511
1512         DBG("id=%d", msm_host->id);
1513         if (msm_host->dev)
1514                 queue_work(msm_host->workqueue, &msm_host->hpd_work);
1515
1516         return 0;
1517 }
1518
1519 static ssize_t dsi_host_transfer(struct mipi_dsi_host *host,
1520                                         const struct mipi_dsi_msg *msg)
1521 {
1522         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1523         int ret;
1524
1525         if (!msg || !msm_host->power_on)
1526                 return -EINVAL;
1527
1528         mutex_lock(&msm_host->cmd_mutex);
1529         ret = msm_dsi_manager_cmd_xfer(msm_host->id, msg);
1530         mutex_unlock(&msm_host->cmd_mutex);
1531
1532         return ret;
1533 }
1534
1535 static struct mipi_dsi_host_ops dsi_host_ops = {
1536         .attach = dsi_host_attach,
1537         .detach = dsi_host_detach,
1538         .transfer = dsi_host_transfer,
1539 };
1540
1541 /*
1542  * List of supported physical to logical lane mappings.
1543  * For example, the 2nd entry represents the following mapping:
1544  *
1545  * "3012": Logic 3->Phys 0; Logic 0->Phys 1; Logic 1->Phys 2; Logic 2->Phys 3;
1546  */
1547 static const int supported_data_lane_swaps[][4] = {
1548         { 0, 1, 2, 3 },
1549         { 3, 0, 1, 2 },
1550         { 2, 3, 0, 1 },
1551         { 1, 2, 3, 0 },
1552         { 0, 3, 2, 1 },
1553         { 1, 0, 3, 2 },
1554         { 2, 1, 0, 3 },
1555         { 3, 2, 1, 0 },
1556 };
1557
1558 static int dsi_host_parse_lane_data(struct msm_dsi_host *msm_host,
1559                                     struct device_node *ep)
1560 {
1561         struct device *dev = &msm_host->pdev->dev;
1562         struct property *prop;
1563         u32 lane_map[4];
1564         int ret, i, len, num_lanes;
1565
1566         prop = of_find_property(ep, "data-lanes", &len);
1567         if (!prop) {
1568                 dev_dbg(dev,
1569                         "failed to find data lane mapping, using default\n");
1570                 /* Set the number of date lanes to 4 by default. */
1571                 msm_host->num_data_lanes = 4;
1572                 return 0;
1573         }
1574
1575         num_lanes = len / sizeof(u32);
1576
1577         if (num_lanes < 1 || num_lanes > 4) {
1578                 dev_err(dev, "bad number of data lanes\n");
1579                 return -EINVAL;
1580         }
1581
1582         msm_host->num_data_lanes = num_lanes;
1583
1584         ret = of_property_read_u32_array(ep, "data-lanes", lane_map,
1585                                          num_lanes);
1586         if (ret) {
1587                 dev_err(dev, "failed to read lane data\n");
1588                 return ret;
1589         }
1590
1591         /*
1592          * compare DT specified physical-logical lane mappings with the ones
1593          * supported by hardware
1594          */
1595         for (i = 0; i < ARRAY_SIZE(supported_data_lane_swaps); i++) {
1596                 const int *swap = supported_data_lane_swaps[i];
1597                 int j;
1598
1599                 /*
1600                  * the data-lanes array we get from DT has a logical->physical
1601                  * mapping. The "data lane swap" register field represents
1602                  * supported configurations in a physical->logical mapping.
1603                  * Translate the DT mapping to what we understand and find a
1604                  * configuration that works.
1605                  */
1606                 for (j = 0; j < num_lanes; j++) {
1607                         if (lane_map[j] < 0 || lane_map[j] > 3)
1608                                 dev_err(dev, "bad physical lane entry %u\n",
1609                                         lane_map[j]);
1610
1611                         if (swap[lane_map[j]] != j)
1612                                 break;
1613                 }
1614
1615                 if (j == num_lanes) {
1616                         msm_host->dlane_swap = i;
1617                         return 0;
1618                 }
1619         }
1620
1621         return -EINVAL;
1622 }
1623
1624 static int dsi_host_parse_dt(struct msm_dsi_host *msm_host)
1625 {
1626         struct device *dev = &msm_host->pdev->dev;
1627         struct device_node *np = dev->of_node;
1628         struct device_node *endpoint, *device_node;
1629         int ret = 0;
1630
1631         /*
1632          * Get the endpoint of the output port of the DSI host. In our case,
1633          * this is mapped to port number with reg = 1. Don't return an error if
1634          * the remote endpoint isn't defined. It's possible that there is
1635          * nothing connected to the dsi output.
1636          */
1637         endpoint = of_graph_get_endpoint_by_regs(np, 1, -1);
1638         if (!endpoint) {
1639                 dev_dbg(dev, "%s: no endpoint\n", __func__);
1640                 return 0;
1641         }
1642
1643         ret = dsi_host_parse_lane_data(msm_host, endpoint);
1644         if (ret) {
1645                 dev_err(dev, "%s: invalid lane configuration %d\n",
1646                         __func__, ret);
1647                 goto err;
1648         }
1649
1650         /* Get panel node from the output port's endpoint data */
1651         device_node = of_graph_get_remote_node(np, 1, 0);
1652         if (!device_node) {
1653                 dev_dbg(dev, "%s: no valid device\n", __func__);
1654                 goto err;
1655         }
1656
1657         msm_host->device_node = device_node;
1658
1659         if (of_property_read_bool(np, "syscon-sfpb")) {
1660                 msm_host->sfpb = syscon_regmap_lookup_by_phandle(np,
1661                                         "syscon-sfpb");
1662                 if (IS_ERR(msm_host->sfpb)) {
1663                         dev_err(dev, "%s: failed to get sfpb regmap\n",
1664                                 __func__);
1665                         ret = PTR_ERR(msm_host->sfpb);
1666                 }
1667         }
1668
1669         of_node_put(device_node);
1670
1671 err:
1672         of_node_put(endpoint);
1673
1674         return ret;
1675 }
1676
1677 static int dsi_host_get_id(struct msm_dsi_host *msm_host)
1678 {
1679         struct platform_device *pdev = msm_host->pdev;
1680         const struct msm_dsi_config *cfg = msm_host->cfg_hnd->cfg;
1681         struct resource *res;
1682         int i;
1683
1684         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dsi_ctrl");
1685         if (!res)
1686                 return -EINVAL;
1687
1688         for (i = 0; i < cfg->num_dsi; i++) {
1689                 if (cfg->io_start[i] == res->start)
1690                         return i;
1691         }
1692
1693         return -EINVAL;
1694 }
1695
1696 int msm_dsi_host_init(struct msm_dsi *msm_dsi)
1697 {
1698         struct msm_dsi_host *msm_host = NULL;
1699         struct platform_device *pdev = msm_dsi->pdev;
1700         int ret;
1701
1702         msm_host = devm_kzalloc(&pdev->dev, sizeof(*msm_host), GFP_KERNEL);
1703         if (!msm_host) {
1704                 pr_err("%s: FAILED: cannot alloc dsi host\n",
1705                        __func__);
1706                 ret = -ENOMEM;
1707                 goto fail;
1708         }
1709
1710         msm_host->pdev = pdev;
1711         msm_dsi->host = &msm_host->base;
1712
1713         ret = dsi_host_parse_dt(msm_host);
1714         if (ret) {
1715                 pr_err("%s: failed to parse dt\n", __func__);
1716                 goto fail;
1717         }
1718
1719         msm_host->ctrl_base = msm_ioremap(pdev, "dsi_ctrl", "DSI CTRL");
1720         if (IS_ERR(msm_host->ctrl_base)) {
1721                 pr_err("%s: unable to map Dsi ctrl base\n", __func__);
1722                 ret = PTR_ERR(msm_host->ctrl_base);
1723                 goto fail;
1724         }
1725
1726         pm_runtime_enable(&pdev->dev);
1727
1728         msm_host->cfg_hnd = dsi_get_config(msm_host);
1729         if (!msm_host->cfg_hnd) {
1730                 ret = -EINVAL;
1731                 pr_err("%s: get config failed\n", __func__);
1732                 goto fail;
1733         }
1734
1735         msm_host->id = dsi_host_get_id(msm_host);
1736         if (msm_host->id < 0) {
1737                 ret = msm_host->id;
1738                 pr_err("%s: unable to identify DSI host index\n", __func__);
1739                 goto fail;
1740         }
1741
1742         /* fixup base address by io offset */
1743         msm_host->ctrl_base += msm_host->cfg_hnd->cfg->io_offset;
1744
1745         ret = dsi_regulator_init(msm_host);
1746         if (ret) {
1747                 pr_err("%s: regulator init failed\n", __func__);
1748                 goto fail;
1749         }
1750
1751         ret = dsi_clk_init(msm_host);
1752         if (ret) {
1753                 pr_err("%s: unable to initialize dsi clks\n", __func__);
1754                 goto fail;
1755         }
1756
1757         msm_host->rx_buf = devm_kzalloc(&pdev->dev, SZ_4K, GFP_KERNEL);
1758         if (!msm_host->rx_buf) {
1759                 ret = -ENOMEM;
1760                 pr_err("%s: alloc rx temp buf failed\n", __func__);
1761                 goto fail;
1762         }
1763
1764         init_completion(&msm_host->dma_comp);
1765         init_completion(&msm_host->video_comp);
1766         mutex_init(&msm_host->dev_mutex);
1767         mutex_init(&msm_host->cmd_mutex);
1768         spin_lock_init(&msm_host->intr_lock);
1769
1770         /* setup workqueue */
1771         msm_host->workqueue = alloc_ordered_workqueue("dsi_drm_work", 0);
1772         if (!msm_host->workqueue)
1773                 return -ENOMEM;
1774
1775         INIT_WORK(&msm_host->err_work, dsi_err_worker);
1776         INIT_WORK(&msm_host->hpd_work, dsi_hpd_worker);
1777
1778         msm_dsi->id = msm_host->id;
1779
1780         DBG("Dsi Host %d initialized", msm_host->id);
1781         return 0;
1782
1783 fail:
1784         return ret;
1785 }
1786
1787 void msm_dsi_host_destroy(struct mipi_dsi_host *host)
1788 {
1789         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1790
1791         DBG("");
1792         dsi_tx_buf_free(msm_host);
1793         if (msm_host->workqueue) {
1794                 flush_workqueue(msm_host->workqueue);
1795                 destroy_workqueue(msm_host->workqueue);
1796                 msm_host->workqueue = NULL;
1797         }
1798
1799         mutex_destroy(&msm_host->cmd_mutex);
1800         mutex_destroy(&msm_host->dev_mutex);
1801
1802         pm_runtime_disable(&msm_host->pdev->dev);
1803 }
1804
1805 int msm_dsi_host_modeset_init(struct mipi_dsi_host *host,
1806                                         struct drm_device *dev)
1807 {
1808         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1809         struct platform_device *pdev = msm_host->pdev;
1810         int ret;
1811
1812         msm_host->irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
1813         if (msm_host->irq < 0) {
1814                 ret = msm_host->irq;
1815                 dev_err(dev->dev, "failed to get irq: %d\n", ret);
1816                 return ret;
1817         }
1818
1819         ret = devm_request_irq(&pdev->dev, msm_host->irq,
1820                         dsi_host_irq, IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
1821                         "dsi_isr", msm_host);
1822         if (ret < 0) {
1823                 dev_err(&pdev->dev, "failed to request IRQ%u: %d\n",
1824                                 msm_host->irq, ret);
1825                 return ret;
1826         }
1827
1828         msm_host->dev = dev;
1829         ret = dsi_tx_buf_alloc(msm_host, SZ_4K);
1830         if (ret) {
1831                 pr_err("%s: alloc tx gem obj failed, %d\n", __func__, ret);
1832                 return ret;
1833         }
1834
1835         return 0;
1836 }
1837
1838 int msm_dsi_host_register(struct mipi_dsi_host *host, bool check_defer)
1839 {
1840         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1841         int ret;
1842
1843         /* Register mipi dsi host */
1844         if (!msm_host->registered) {
1845                 host->dev = &msm_host->pdev->dev;
1846                 host->ops = &dsi_host_ops;
1847                 ret = mipi_dsi_host_register(host);
1848                 if (ret)
1849                         return ret;
1850
1851                 msm_host->registered = true;
1852
1853                 /* If the panel driver has not been probed after host register,
1854                  * we should defer the host's probe.
1855                  * It makes sure panel is connected when fbcon detects
1856                  * connector status and gets the proper display mode to
1857                  * create framebuffer.
1858                  * Don't try to defer if there is nothing connected to the dsi
1859                  * output
1860                  */
1861                 if (check_defer && msm_host->device_node) {
1862                         if (!of_drm_find_panel(msm_host->device_node))
1863                                 if (!of_drm_find_bridge(msm_host->device_node))
1864                                         return -EPROBE_DEFER;
1865                 }
1866         }
1867
1868         return 0;
1869 }
1870
1871 void msm_dsi_host_unregister(struct mipi_dsi_host *host)
1872 {
1873         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1874
1875         if (msm_host->registered) {
1876                 mipi_dsi_host_unregister(host);
1877                 host->dev = NULL;
1878                 host->ops = NULL;
1879                 msm_host->registered = false;
1880         }
1881 }
1882
1883 int msm_dsi_host_xfer_prepare(struct mipi_dsi_host *host,
1884                                 const struct mipi_dsi_msg *msg)
1885 {
1886         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1887
1888         /* TODO: make sure dsi_cmd_mdp is idle.
1889          * Since DSI6G v1.2.0, we can set DSI_TRIG_CTRL.BLOCK_DMA_WITHIN_FRAME
1890          * to ask H/W to wait until cmd mdp is idle. S/W wait is not needed.
1891          * How to handle the old versions? Wait for mdp cmd done?
1892          */
1893
1894         /*
1895          * mdss interrupt is generated in mdp core clock domain
1896          * mdp clock need to be enabled to receive dsi interrupt
1897          */
1898         pm_runtime_get_sync(&msm_host->pdev->dev);
1899         dsi_link_clk_enable(msm_host);
1900
1901         /* TODO: vote for bus bandwidth */
1902
1903         if (!(msg->flags & MIPI_DSI_MSG_USE_LPM))
1904                 dsi_set_tx_power_mode(0, msm_host);
1905
1906         msm_host->dma_cmd_ctrl_restore = dsi_read(msm_host, REG_DSI_CTRL);
1907         dsi_write(msm_host, REG_DSI_CTRL,
1908                 msm_host->dma_cmd_ctrl_restore |
1909                 DSI_CTRL_CMD_MODE_EN |
1910                 DSI_CTRL_ENABLE);
1911         dsi_intr_ctrl(msm_host, DSI_IRQ_MASK_CMD_DMA_DONE, 1);
1912
1913         return 0;
1914 }
1915
1916 void msm_dsi_host_xfer_restore(struct mipi_dsi_host *host,
1917                                 const struct mipi_dsi_msg *msg)
1918 {
1919         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1920
1921         dsi_intr_ctrl(msm_host, DSI_IRQ_MASK_CMD_DMA_DONE, 0);
1922         dsi_write(msm_host, REG_DSI_CTRL, msm_host->dma_cmd_ctrl_restore);
1923
1924         if (!(msg->flags & MIPI_DSI_MSG_USE_LPM))
1925                 dsi_set_tx_power_mode(1, msm_host);
1926
1927         /* TODO: unvote for bus bandwidth */
1928
1929         dsi_link_clk_disable(msm_host);
1930         pm_runtime_put_autosuspend(&msm_host->pdev->dev);
1931 }
1932
1933 int msm_dsi_host_cmd_tx(struct mipi_dsi_host *host,
1934                                 const struct mipi_dsi_msg *msg)
1935 {
1936         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1937
1938         return dsi_cmds2buf_tx(msm_host, msg);
1939 }
1940
1941 int msm_dsi_host_cmd_rx(struct mipi_dsi_host *host,
1942                                 const struct mipi_dsi_msg *msg)
1943 {
1944         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
1945         const struct msm_dsi_cfg_handler *cfg_hnd = msm_host->cfg_hnd;
1946         int data_byte, rx_byte, dlen, end;
1947         int short_response, diff, pkt_size, ret = 0;
1948         char cmd;
1949         int rlen = msg->rx_len;
1950         u8 *buf;
1951
1952         if (rlen <= 2) {
1953                 short_response = 1;
1954                 pkt_size = rlen;
1955                 rx_byte = 4;
1956         } else {
1957                 short_response = 0;
1958                 data_byte = 10; /* first read */
1959                 if (rlen < data_byte)
1960                         pkt_size = rlen;
1961                 else
1962                         pkt_size = data_byte;
1963                 rx_byte = data_byte + 6; /* 4 header + 2 crc */
1964         }
1965
1966         buf = msm_host->rx_buf;
1967         end = 0;
1968         while (!end) {
1969                 u8 tx[2] = {pkt_size & 0xff, pkt_size >> 8};
1970                 struct mipi_dsi_msg max_pkt_size_msg = {
1971                         .channel = msg->channel,
1972                         .type = MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE,
1973                         .tx_len = 2,
1974                         .tx_buf = tx,
1975                 };
1976
1977                 DBG("rlen=%d pkt_size=%d rx_byte=%d",
1978                         rlen, pkt_size, rx_byte);
1979
1980                 ret = dsi_cmds2buf_tx(msm_host, &max_pkt_size_msg);
1981                 if (ret < 2) {
1982                         pr_err("%s: Set max pkt size failed, %d\n",
1983                                 __func__, ret);
1984                         return -EINVAL;
1985                 }
1986
1987                 if ((cfg_hnd->major == MSM_DSI_VER_MAJOR_6G) &&
1988                         (cfg_hnd->minor >= MSM_DSI_6G_VER_MINOR_V1_1)) {
1989                         /* Clear the RDBK_DATA registers */
1990                         dsi_write(msm_host, REG_DSI_RDBK_DATA_CTRL,
1991                                         DSI_RDBK_DATA_CTRL_CLR);
1992                         wmb(); /* make sure the RDBK registers are cleared */
1993                         dsi_write(msm_host, REG_DSI_RDBK_DATA_CTRL, 0);
1994                         wmb(); /* release cleared status before transfer */
1995                 }
1996
1997                 ret = dsi_cmds2buf_tx(msm_host, msg);
1998                 if (ret < 0) {
1999                         pr_err("%s: Read cmd Tx failed, %d\n", __func__, ret);
2000                         return ret;
2001                 } else if (ret < msg->tx_len) {
2002                         pr_err("%s: Read cmd Tx failed, too short: %d\n", __func__, ret);
2003                         return -ECOMM;
2004                 }
2005
2006                 /*
2007                  * once cmd_dma_done interrupt received,
2008                  * return data from client is ready and stored
2009                  * at RDBK_DATA register already
2010                  * since rx fifo is 16 bytes, dcs header is kept at first loop,
2011                  * after that dcs header lost during shift into registers
2012                  */
2013                 dlen = dsi_cmd_dma_rx(msm_host, buf, rx_byte, pkt_size);
2014
2015                 if (dlen <= 0)
2016                         return 0;
2017
2018                 if (short_response)
2019                         break;
2020
2021                 if (rlen <= data_byte) {
2022                         diff = data_byte - rlen;
2023                         end = 1;
2024                 } else {
2025                         diff = 0;
2026                         rlen -= data_byte;
2027                 }
2028
2029                 if (!end) {
2030                         dlen -= 2; /* 2 crc */
2031                         dlen -= diff;
2032                         buf += dlen;    /* next start position */
2033                         data_byte = 14; /* NOT first read */
2034                         if (rlen < data_byte)
2035                                 pkt_size += rlen;
2036                         else
2037                                 pkt_size += data_byte;
2038                         DBG("buf=%p dlen=%d diff=%d", buf, dlen, diff);
2039                 }
2040         }
2041
2042         /*
2043          * For single Long read, if the requested rlen < 10,
2044          * we need to shift the start position of rx
2045          * data buffer to skip the bytes which are not
2046          * updated.
2047          */
2048         if (pkt_size < 10 && !short_response)
2049                 buf = msm_host->rx_buf + (10 - rlen);
2050         else
2051                 buf = msm_host->rx_buf;
2052
2053         cmd = buf[0];
2054         switch (cmd) {
2055         case MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT:
2056                 pr_err("%s: rx ACK_ERR_PACLAGE\n", __func__);
2057                 ret = 0;
2058                 break;
2059         case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE:
2060         case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE:
2061                 ret = dsi_short_read1_resp(buf, msg);
2062                 break;
2063         case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE:
2064         case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE:
2065                 ret = dsi_short_read2_resp(buf, msg);
2066                 break;
2067         case MIPI_DSI_RX_GENERIC_LONG_READ_RESPONSE:
2068         case MIPI_DSI_RX_DCS_LONG_READ_RESPONSE:
2069                 ret = dsi_long_read_resp(buf, msg);
2070                 break;
2071         default:
2072                 pr_warn("%s:Invalid response cmd\n", __func__);
2073                 ret = 0;
2074         }
2075
2076         return ret;
2077 }
2078
2079 void msm_dsi_host_cmd_xfer_commit(struct mipi_dsi_host *host, u32 dma_base,
2080                                   u32 len)
2081 {
2082         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2083
2084         dsi_write(msm_host, REG_DSI_DMA_BASE, dma_base);
2085         dsi_write(msm_host, REG_DSI_DMA_LEN, len);
2086         dsi_write(msm_host, REG_DSI_TRIG_DMA, 1);
2087
2088         /* Make sure trigger happens */
2089         wmb();
2090 }
2091
2092 int msm_dsi_host_set_src_pll(struct mipi_dsi_host *host,
2093         struct msm_dsi_pll *src_pll)
2094 {
2095         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2096         const struct msm_dsi_cfg_handler *cfg_hnd = msm_host->cfg_hnd;
2097         struct clk *byte_clk_provider, *pixel_clk_provider;
2098         int ret;
2099
2100         ret = msm_dsi_pll_get_clk_provider(src_pll,
2101                                 &byte_clk_provider, &pixel_clk_provider);
2102         if (ret) {
2103                 pr_info("%s: can't get provider from pll, don't set parent\n",
2104                         __func__);
2105                 return 0;
2106         }
2107
2108         ret = clk_set_parent(msm_host->byte_clk_src, byte_clk_provider);
2109         if (ret) {
2110                 pr_err("%s: can't set parent to byte_clk_src. ret=%d\n",
2111                         __func__, ret);
2112                 goto exit;
2113         }
2114
2115         ret = clk_set_parent(msm_host->pixel_clk_src, pixel_clk_provider);
2116         if (ret) {
2117                 pr_err("%s: can't set parent to pixel_clk_src. ret=%d\n",
2118                         __func__, ret);
2119                 goto exit;
2120         }
2121
2122         if (cfg_hnd->major == MSM_DSI_VER_MAJOR_V2) {
2123                 ret = clk_set_parent(msm_host->dsi_clk_src, pixel_clk_provider);
2124                 if (ret) {
2125                         pr_err("%s: can't set parent to dsi_clk_src. ret=%d\n",
2126                                 __func__, ret);
2127                         goto exit;
2128                 }
2129
2130                 ret = clk_set_parent(msm_host->esc_clk_src, byte_clk_provider);
2131                 if (ret) {
2132                         pr_err("%s: can't set parent to esc_clk_src. ret=%d\n",
2133                                 __func__, ret);
2134                         goto exit;
2135                 }
2136         }
2137
2138 exit:
2139         return ret;
2140 }
2141
2142 void msm_dsi_host_reset_phy(struct mipi_dsi_host *host)
2143 {
2144         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2145
2146         DBG("");
2147         dsi_write(msm_host, REG_DSI_PHY_RESET, DSI_PHY_RESET_RESET);
2148         /* Make sure fully reset */
2149         wmb();
2150         udelay(1000);
2151         dsi_write(msm_host, REG_DSI_PHY_RESET, 0);
2152         udelay(100);
2153 }
2154
2155 void msm_dsi_host_get_phy_clk_req(struct mipi_dsi_host *host,
2156         struct msm_dsi_phy_clk_request *clk_req)
2157 {
2158         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2159         int ret;
2160
2161         ret = dsi_calc_clk_rate(msm_host);
2162         if (ret) {
2163                 pr_err("%s: unable to calc clk rate, %d\n", __func__, ret);
2164                 return;
2165         }
2166
2167         clk_req->bitclk_rate = msm_host->byte_clk_rate * 8;
2168         clk_req->escclk_rate = msm_host->esc_clk_rate;
2169 }
2170
2171 int msm_dsi_host_enable(struct mipi_dsi_host *host)
2172 {
2173         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2174
2175         dsi_op_mode_config(msm_host,
2176                 !!(msm_host->mode_flags & MIPI_DSI_MODE_VIDEO), true);
2177
2178         /* TODO: clock should be turned off for command mode,
2179          * and only turned on before MDP START.
2180          * This part of code should be enabled once mdp driver support it.
2181          */
2182         /* if (msm_panel->mode == MSM_DSI_CMD_MODE) {
2183          *      dsi_link_clk_disable(msm_host);
2184          *      pm_runtime_put_autosuspend(&msm_host->pdev->dev);
2185          * }
2186          */
2187
2188         return 0;
2189 }
2190
2191 int msm_dsi_host_disable(struct mipi_dsi_host *host)
2192 {
2193         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2194
2195         dsi_op_mode_config(msm_host,
2196                 !!(msm_host->mode_flags & MIPI_DSI_MODE_VIDEO), false);
2197
2198         /* Since we have disabled INTF, the video engine won't stop so that
2199          * the cmd engine will be blocked.
2200          * Reset to disable video engine so that we can send off cmd.
2201          */
2202         dsi_sw_reset(msm_host);
2203
2204         return 0;
2205 }
2206
2207 static void msm_dsi_sfpb_config(struct msm_dsi_host *msm_host, bool enable)
2208 {
2209         enum sfpb_ahb_arb_master_port_en en;
2210
2211         if (!msm_host->sfpb)
2212                 return;
2213
2214         en = enable ? SFPB_MASTER_PORT_ENABLE : SFPB_MASTER_PORT_DISABLE;
2215
2216         regmap_update_bits(msm_host->sfpb, REG_SFPB_GPREG,
2217                         SFPB_GPREG_MASTER_PORT_EN__MASK,
2218                         SFPB_GPREG_MASTER_PORT_EN(en));
2219 }
2220
2221 int msm_dsi_host_power_on(struct mipi_dsi_host *host,
2222                         struct msm_dsi_phy_shared_timings *phy_shared_timings)
2223 {
2224         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2225         int ret = 0;
2226
2227         mutex_lock(&msm_host->dev_mutex);
2228         if (msm_host->power_on) {
2229                 DBG("dsi host already on");
2230                 goto unlock_ret;
2231         }
2232
2233         msm_dsi_sfpb_config(msm_host, true);
2234
2235         ret = dsi_host_regulator_enable(msm_host);
2236         if (ret) {
2237                 pr_err("%s:Failed to enable vregs.ret=%d\n",
2238                         __func__, ret);
2239                 goto unlock_ret;
2240         }
2241
2242         pm_runtime_get_sync(&msm_host->pdev->dev);
2243         ret = dsi_link_clk_enable(msm_host);
2244         if (ret) {
2245                 pr_err("%s: failed to enable link clocks. ret=%d\n",
2246                        __func__, ret);
2247                 goto fail_disable_reg;
2248         }
2249
2250         ret = pinctrl_pm_select_default_state(&msm_host->pdev->dev);
2251         if (ret) {
2252                 pr_err("%s: failed to set pinctrl default state, %d\n",
2253                         __func__, ret);
2254                 goto fail_disable_clk;
2255         }
2256
2257         dsi_timing_setup(msm_host);
2258         dsi_sw_reset(msm_host);
2259         dsi_ctrl_config(msm_host, true, phy_shared_timings);
2260
2261         if (msm_host->disp_en_gpio)
2262                 gpiod_set_value(msm_host->disp_en_gpio, 1);
2263
2264         msm_host->power_on = true;
2265         mutex_unlock(&msm_host->dev_mutex);
2266
2267         return 0;
2268
2269 fail_disable_clk:
2270         dsi_link_clk_disable(msm_host);
2271         pm_runtime_put_autosuspend(&msm_host->pdev->dev);
2272 fail_disable_reg:
2273         dsi_host_regulator_disable(msm_host);
2274 unlock_ret:
2275         mutex_unlock(&msm_host->dev_mutex);
2276         return ret;
2277 }
2278
2279 int msm_dsi_host_power_off(struct mipi_dsi_host *host)
2280 {
2281         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2282
2283         mutex_lock(&msm_host->dev_mutex);
2284         if (!msm_host->power_on) {
2285                 DBG("dsi host already off");
2286                 goto unlock_ret;
2287         }
2288
2289         dsi_ctrl_config(msm_host, false, NULL);
2290
2291         if (msm_host->disp_en_gpio)
2292                 gpiod_set_value(msm_host->disp_en_gpio, 0);
2293
2294         pinctrl_pm_select_sleep_state(&msm_host->pdev->dev);
2295
2296         dsi_link_clk_disable(msm_host);
2297         pm_runtime_put_autosuspend(&msm_host->pdev->dev);
2298
2299         dsi_host_regulator_disable(msm_host);
2300
2301         msm_dsi_sfpb_config(msm_host, false);
2302
2303         DBG("-");
2304
2305         msm_host->power_on = false;
2306
2307 unlock_ret:
2308         mutex_unlock(&msm_host->dev_mutex);
2309         return 0;
2310 }
2311
2312 int msm_dsi_host_set_display_mode(struct mipi_dsi_host *host,
2313                                         struct drm_display_mode *mode)
2314 {
2315         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2316
2317         if (msm_host->mode) {
2318                 drm_mode_destroy(msm_host->dev, msm_host->mode);
2319                 msm_host->mode = NULL;
2320         }
2321
2322         msm_host->mode = drm_mode_duplicate(msm_host->dev, mode);
2323         if (!msm_host->mode) {
2324                 pr_err("%s: cannot duplicate mode\n", __func__);
2325                 return -ENOMEM;
2326         }
2327
2328         return 0;
2329 }
2330
2331 struct drm_panel *msm_dsi_host_get_panel(struct mipi_dsi_host *host,
2332                                 unsigned long *panel_flags)
2333 {
2334         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2335         struct drm_panel *panel;
2336
2337         panel = of_drm_find_panel(msm_host->device_node);
2338         if (panel_flags)
2339                         *panel_flags = msm_host->mode_flags;
2340
2341         return panel;
2342 }
2343
2344 struct drm_bridge *msm_dsi_host_get_bridge(struct mipi_dsi_host *host)
2345 {
2346         struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
2347
2348         return of_drm_find_bridge(msm_host->device_node);
2349 }