1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
7 #include <linux/delay.h>
8 #include <linux/dma-mapping.h>
10 #include <linux/gpio/consumer.h>
11 #include <linux/interrupt.h>
12 #include <linux/mfd/syscon.h>
13 #include <linux/of_device.h>
14 #include <linux/of_graph.h>
15 #include <linux/of_irq.h>
16 #include <linux/pinctrl/consumer.h>
17 #include <linux/pm_opp.h>
18 #include <linux/regmap.h>
19 #include <linux/regulator/consumer.h>
20 #include <linux/spinlock.h>
22 #include <video/mipi_display.h>
31 #define DSI_RESET_TOGGLE_DELAY_MS 20
33 static int dsi_get_version(const void __iomem
*base
, u32
*major
, u32
*minor
)
41 * From DSI6G(v3), addition of a 6G_HW_VERSION register at offset 0
42 * makes all other registers 4-byte shifted down.
44 * In order to identify between DSI6G(v3) and beyond, and DSIv2 and
45 * older, we read the DSI_VERSION register without any shift(offset
46 * 0x1f0). In the case of DSIv2, this hast to be a non-zero value. In
47 * the case of DSI6G, this has to be zero (the offset points to a
48 * scratch register which we never touch)
51 ver
= msm_readl(base
+ REG_DSI_VERSION
);
53 /* older dsi host, there is no register shift */
54 ver
= FIELD(ver
, DSI_VERSION_MAJOR
);
55 if (ver
<= MSM_DSI_VER_MAJOR_V2
) {
65 * newer host, offset 0 has 6G_HW_VERSION, the rest of the
66 * registers are shifted down, read DSI_VERSION again with
69 ver
= msm_readl(base
+ DSI_6G_REG_SHIFT
+ REG_DSI_VERSION
);
70 ver
= FIELD(ver
, DSI_VERSION_MAJOR
);
71 if (ver
== MSM_DSI_VER_MAJOR_6G
) {
74 *minor
= msm_readl(base
+ REG_DSI_6G_HW_VERSION
);
82 #define DSI_ERR_STATE_ACK 0x0000
83 #define DSI_ERR_STATE_TIMEOUT 0x0001
84 #define DSI_ERR_STATE_DLN0_PHY 0x0002
85 #define DSI_ERR_STATE_FIFO 0x0004
86 #define DSI_ERR_STATE_MDP_FIFO_UNDERFLOW 0x0008
87 #define DSI_ERR_STATE_INTERLEAVE_OP_CONTENTION 0x0010
88 #define DSI_ERR_STATE_PLL_UNLOCKED 0x0020
90 #define DSI_CLK_CTRL_ENABLE_CLKS \
91 (DSI_CLK_CTRL_AHBS_HCLK_ON | DSI_CLK_CTRL_AHBM_SCLK_ON | \
92 DSI_CLK_CTRL_PCLK_ON | DSI_CLK_CTRL_DSICLK_ON | \
93 DSI_CLK_CTRL_BYTECLK_ON | DSI_CLK_CTRL_ESCCLK_ON | \
94 DSI_CLK_CTRL_FORCE_ON_DYN_AHBM_HCLK)
97 struct mipi_dsi_host base
;
99 struct platform_device
*pdev
;
100 struct drm_device
*dev
;
104 void __iomem
*ctrl_base
;
105 struct regulator_bulk_data supplies
[DSI_DEV_REGULATOR_MAX
];
107 struct clk
*bus_clks
[DSI_BUS_CLK_MAX
];
109 struct clk
*byte_clk
;
111 struct clk
*pixel_clk
;
112 struct clk
*byte_clk_src
;
113 struct clk
*pixel_clk_src
;
114 struct clk
*byte_intf_clk
;
116 struct opp_table
*opp_table
;
122 /* DSI v2 specific clocks */
124 struct clk
*esc_clk_src
;
125 struct clk
*dsi_clk_src
;
129 struct gpio_desc
*disp_en_gpio
;
130 struct gpio_desc
*te_gpio
;
132 const struct msm_dsi_cfg_handler
*cfg_hnd
;
134 struct completion dma_comp
;
135 struct completion video_comp
;
136 struct mutex dev_mutex
;
137 struct mutex cmd_mutex
;
138 spinlock_t intr_lock
; /* Protect interrupt ctrl register */
141 struct work_struct err_work
;
142 struct work_struct hpd_work
;
143 struct workqueue_struct
*workqueue
;
145 /* DSI 6G TX buffer*/
146 struct drm_gem_object
*tx_gem_obj
;
148 /* DSI v2 TX buffer */
150 dma_addr_t tx_buf_paddr
;
158 struct drm_display_mode
*mode
;
160 /* connected device info */
161 struct device_node
*device_node
;
162 unsigned int channel
;
164 enum mipi_dsi_pixel_format format
;
165 unsigned long mode_flags
;
167 /* lane data parsed via DT */
171 u32 dma_cmd_ctrl_restore
;
179 static u32
dsi_get_bpp(const enum mipi_dsi_pixel_format fmt
)
182 case MIPI_DSI_FMT_RGB565
: return 16;
183 case MIPI_DSI_FMT_RGB666_PACKED
: return 18;
184 case MIPI_DSI_FMT_RGB666
:
185 case MIPI_DSI_FMT_RGB888
:
190 static inline u32
dsi_read(struct msm_dsi_host
*msm_host
, u32 reg
)
192 return msm_readl(msm_host
->ctrl_base
+ reg
);
194 static inline void dsi_write(struct msm_dsi_host
*msm_host
, u32 reg
, u32 data
)
196 msm_writel(data
, msm_host
->ctrl_base
+ reg
);
199 static int dsi_host_regulator_enable(struct msm_dsi_host
*msm_host
);
200 static void dsi_host_regulator_disable(struct msm_dsi_host
*msm_host
);
202 static const struct msm_dsi_cfg_handler
*dsi_get_config(
203 struct msm_dsi_host
*msm_host
)
205 const struct msm_dsi_cfg_handler
*cfg_hnd
= NULL
;
206 struct device
*dev
= &msm_host
->pdev
->dev
;
207 struct regulator
*gdsc_reg
;
210 u32 major
= 0, minor
= 0;
212 gdsc_reg
= regulator_get(dev
, "gdsc");
213 if (IS_ERR(gdsc_reg
)) {
214 pr_err("%s: cannot get gdsc\n", __func__
);
218 ahb_clk
= msm_clk_get(msm_host
->pdev
, "iface");
219 if (IS_ERR(ahb_clk
)) {
220 pr_err("%s: cannot get interface clock\n", __func__
);
224 pm_runtime_get_sync(dev
);
226 ret
= regulator_enable(gdsc_reg
);
228 pr_err("%s: unable to enable gdsc\n", __func__
);
232 ret
= clk_prepare_enable(ahb_clk
);
234 pr_err("%s: unable to enable ahb_clk\n", __func__
);
238 ret
= dsi_get_version(msm_host
->ctrl_base
, &major
, &minor
);
240 pr_err("%s: Invalid version\n", __func__
);
244 cfg_hnd
= msm_dsi_cfg_get(major
, minor
);
246 DBG("%s: Version %x:%x\n", __func__
, major
, minor
);
249 clk_disable_unprepare(ahb_clk
);
251 regulator_disable(gdsc_reg
);
252 pm_runtime_put_sync(dev
);
254 regulator_put(gdsc_reg
);
259 static inline struct msm_dsi_host
*to_msm_dsi_host(struct mipi_dsi_host
*host
)
261 return container_of(host
, struct msm_dsi_host
, base
);
264 static void dsi_host_regulator_disable(struct msm_dsi_host
*msm_host
)
266 struct regulator_bulk_data
*s
= msm_host
->supplies
;
267 const struct dsi_reg_entry
*regs
= msm_host
->cfg_hnd
->cfg
->reg_cfg
.regs
;
268 int num
= msm_host
->cfg_hnd
->cfg
->reg_cfg
.num
;
272 for (i
= num
- 1; i
>= 0; i
--)
273 if (regs
[i
].disable_load
>= 0)
274 regulator_set_load(s
[i
].consumer
,
275 regs
[i
].disable_load
);
277 regulator_bulk_disable(num
, s
);
280 static int dsi_host_regulator_enable(struct msm_dsi_host
*msm_host
)
282 struct regulator_bulk_data
*s
= msm_host
->supplies
;
283 const struct dsi_reg_entry
*regs
= msm_host
->cfg_hnd
->cfg
->reg_cfg
.regs
;
284 int num
= msm_host
->cfg_hnd
->cfg
->reg_cfg
.num
;
288 for (i
= 0; i
< num
; i
++) {
289 if (regs
[i
].enable_load
>= 0) {
290 ret
= regulator_set_load(s
[i
].consumer
,
291 regs
[i
].enable_load
);
293 pr_err("regulator %d set op mode failed, %d\n",
300 ret
= regulator_bulk_enable(num
, s
);
302 pr_err("regulator enable failed, %d\n", ret
);
309 for (i
--; i
>= 0; i
--)
310 regulator_set_load(s
[i
].consumer
, regs
[i
].disable_load
);
314 static int dsi_regulator_init(struct msm_dsi_host
*msm_host
)
316 struct regulator_bulk_data
*s
= msm_host
->supplies
;
317 const struct dsi_reg_entry
*regs
= msm_host
->cfg_hnd
->cfg
->reg_cfg
.regs
;
318 int num
= msm_host
->cfg_hnd
->cfg
->reg_cfg
.num
;
321 for (i
= 0; i
< num
; i
++)
322 s
[i
].supply
= regs
[i
].name
;
324 ret
= devm_regulator_bulk_get(&msm_host
->pdev
->dev
, num
, s
);
326 pr_err("%s: failed to init regulator, ret=%d\n",
334 int dsi_clk_init_v2(struct msm_dsi_host
*msm_host
)
336 struct platform_device
*pdev
= msm_host
->pdev
;
339 msm_host
->src_clk
= msm_clk_get(pdev
, "src");
341 if (IS_ERR(msm_host
->src_clk
)) {
342 ret
= PTR_ERR(msm_host
->src_clk
);
343 pr_err("%s: can't find src clock. ret=%d\n",
345 msm_host
->src_clk
= NULL
;
349 msm_host
->esc_clk_src
= clk_get_parent(msm_host
->esc_clk
);
350 if (!msm_host
->esc_clk_src
) {
352 pr_err("%s: can't get esc clock parent. ret=%d\n",
357 msm_host
->dsi_clk_src
= clk_get_parent(msm_host
->src_clk
);
358 if (!msm_host
->dsi_clk_src
) {
360 pr_err("%s: can't get src clock parent. ret=%d\n",
367 int dsi_clk_init_6g_v2(struct msm_dsi_host
*msm_host
)
369 struct platform_device
*pdev
= msm_host
->pdev
;
372 msm_host
->byte_intf_clk
= msm_clk_get(pdev
, "byte_intf");
373 if (IS_ERR(msm_host
->byte_intf_clk
)) {
374 ret
= PTR_ERR(msm_host
->byte_intf_clk
);
375 pr_err("%s: can't find byte_intf clock. ret=%d\n",
382 static int dsi_clk_init(struct msm_dsi_host
*msm_host
)
384 struct platform_device
*pdev
= msm_host
->pdev
;
385 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
386 const struct msm_dsi_config
*cfg
= cfg_hnd
->cfg
;
390 for (i
= 0; i
< cfg
->num_bus_clks
; i
++) {
391 msm_host
->bus_clks
[i
] = msm_clk_get(pdev
,
392 cfg
->bus_clk_names
[i
]);
393 if (IS_ERR(msm_host
->bus_clks
[i
])) {
394 ret
= PTR_ERR(msm_host
->bus_clks
[i
]);
395 pr_err("%s: Unable to get %s clock, ret = %d\n",
396 __func__
, cfg
->bus_clk_names
[i
], ret
);
401 /* get link and source clocks */
402 msm_host
->byte_clk
= msm_clk_get(pdev
, "byte");
403 if (IS_ERR(msm_host
->byte_clk
)) {
404 ret
= PTR_ERR(msm_host
->byte_clk
);
405 pr_err("%s: can't find dsi_byte clock. ret=%d\n",
407 msm_host
->byte_clk
= NULL
;
411 msm_host
->pixel_clk
= msm_clk_get(pdev
, "pixel");
412 if (IS_ERR(msm_host
->pixel_clk
)) {
413 ret
= PTR_ERR(msm_host
->pixel_clk
);
414 pr_err("%s: can't find dsi_pixel clock. ret=%d\n",
416 msm_host
->pixel_clk
= NULL
;
420 msm_host
->esc_clk
= msm_clk_get(pdev
, "core");
421 if (IS_ERR(msm_host
->esc_clk
)) {
422 ret
= PTR_ERR(msm_host
->esc_clk
);
423 pr_err("%s: can't find dsi_esc clock. ret=%d\n",
425 msm_host
->esc_clk
= NULL
;
429 msm_host
->byte_clk_src
= clk_get_parent(msm_host
->byte_clk
);
430 if (IS_ERR(msm_host
->byte_clk_src
)) {
431 ret
= PTR_ERR(msm_host
->byte_clk_src
);
432 pr_err("%s: can't find byte_clk clock. ret=%d\n", __func__
, ret
);
436 msm_host
->pixel_clk_src
= clk_get_parent(msm_host
->pixel_clk
);
437 if (IS_ERR(msm_host
->pixel_clk_src
)) {
438 ret
= PTR_ERR(msm_host
->pixel_clk_src
);
439 pr_err("%s: can't find pixel_clk clock. ret=%d\n", __func__
, ret
);
443 if (cfg_hnd
->ops
->clk_init_ver
)
444 ret
= cfg_hnd
->ops
->clk_init_ver(msm_host
);
449 static int dsi_bus_clk_enable(struct msm_dsi_host
*msm_host
)
451 const struct msm_dsi_config
*cfg
= msm_host
->cfg_hnd
->cfg
;
454 DBG("id=%d", msm_host
->id
);
456 for (i
= 0; i
< cfg
->num_bus_clks
; i
++) {
457 ret
= clk_prepare_enable(msm_host
->bus_clks
[i
]);
459 pr_err("%s: failed to enable bus clock %d ret %d\n",
468 clk_disable_unprepare(msm_host
->bus_clks
[i
]);
473 static void dsi_bus_clk_disable(struct msm_dsi_host
*msm_host
)
475 const struct msm_dsi_config
*cfg
= msm_host
->cfg_hnd
->cfg
;
480 for (i
= cfg
->num_bus_clks
- 1; i
>= 0; i
--)
481 clk_disable_unprepare(msm_host
->bus_clks
[i
]);
484 int msm_dsi_runtime_suspend(struct device
*dev
)
486 struct platform_device
*pdev
= to_platform_device(dev
);
487 struct msm_dsi
*msm_dsi
= platform_get_drvdata(pdev
);
488 struct mipi_dsi_host
*host
= msm_dsi
->host
;
489 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
491 if (!msm_host
->cfg_hnd
)
494 dsi_bus_clk_disable(msm_host
);
499 int msm_dsi_runtime_resume(struct device
*dev
)
501 struct platform_device
*pdev
= to_platform_device(dev
);
502 struct msm_dsi
*msm_dsi
= platform_get_drvdata(pdev
);
503 struct mipi_dsi_host
*host
= msm_dsi
->host
;
504 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
506 if (!msm_host
->cfg_hnd
)
509 return dsi_bus_clk_enable(msm_host
);
512 int dsi_link_clk_set_rate_6g(struct msm_dsi_host
*msm_host
)
516 DBG("Set clk rates: pclk=%d, byteclk=%d",
517 msm_host
->mode
->clock
, msm_host
->byte_clk_rate
);
519 ret
= dev_pm_opp_set_rate(&msm_host
->pdev
->dev
,
520 msm_host
->byte_clk_rate
);
522 pr_err("%s: dev_pm_opp_set_rate failed %d\n", __func__
, ret
);
526 ret
= clk_set_rate(msm_host
->pixel_clk
, msm_host
->pixel_clk_rate
);
528 pr_err("%s: Failed to set rate pixel clk, %d\n", __func__
, ret
);
532 if (msm_host
->byte_intf_clk
) {
533 ret
= clk_set_rate(msm_host
->byte_intf_clk
,
534 msm_host
->byte_clk_rate
/ 2);
536 pr_err("%s: Failed to set rate byte intf clk, %d\n",
546 int dsi_link_clk_enable_6g(struct msm_dsi_host
*msm_host
)
550 ret
= clk_prepare_enable(msm_host
->esc_clk
);
552 pr_err("%s: Failed to enable dsi esc clk\n", __func__
);
556 ret
= clk_prepare_enable(msm_host
->byte_clk
);
558 pr_err("%s: Failed to enable dsi byte clk\n", __func__
);
562 ret
= clk_prepare_enable(msm_host
->pixel_clk
);
564 pr_err("%s: Failed to enable dsi pixel clk\n", __func__
);
568 if (msm_host
->byte_intf_clk
) {
569 ret
= clk_prepare_enable(msm_host
->byte_intf_clk
);
571 pr_err("%s: Failed to enable byte intf clk\n",
573 goto byte_intf_clk_err
;
580 clk_disable_unprepare(msm_host
->pixel_clk
);
582 clk_disable_unprepare(msm_host
->byte_clk
);
584 clk_disable_unprepare(msm_host
->esc_clk
);
589 int dsi_link_clk_set_rate_v2(struct msm_dsi_host
*msm_host
)
593 DBG("Set clk rates: pclk=%d, byteclk=%d, esc_clk=%d, dsi_src_clk=%d",
594 msm_host
->mode
->clock
, msm_host
->byte_clk_rate
,
595 msm_host
->esc_clk_rate
, msm_host
->src_clk_rate
);
597 ret
= clk_set_rate(msm_host
->byte_clk
, msm_host
->byte_clk_rate
);
599 pr_err("%s: Failed to set rate byte clk, %d\n", __func__
, ret
);
603 ret
= clk_set_rate(msm_host
->esc_clk
, msm_host
->esc_clk_rate
);
605 pr_err("%s: Failed to set rate esc clk, %d\n", __func__
, ret
);
609 ret
= clk_set_rate(msm_host
->src_clk
, msm_host
->src_clk_rate
);
611 pr_err("%s: Failed to set rate src clk, %d\n", __func__
, ret
);
615 ret
= clk_set_rate(msm_host
->pixel_clk
, msm_host
->pixel_clk_rate
);
617 pr_err("%s: Failed to set rate pixel clk, %d\n", __func__
, ret
);
624 int dsi_link_clk_enable_v2(struct msm_dsi_host
*msm_host
)
628 ret
= clk_prepare_enable(msm_host
->byte_clk
);
630 pr_err("%s: Failed to enable dsi byte clk\n", __func__
);
634 ret
= clk_prepare_enable(msm_host
->esc_clk
);
636 pr_err("%s: Failed to enable dsi esc clk\n", __func__
);
640 ret
= clk_prepare_enable(msm_host
->src_clk
);
642 pr_err("%s: Failed to enable dsi src clk\n", __func__
);
646 ret
= clk_prepare_enable(msm_host
->pixel_clk
);
648 pr_err("%s: Failed to enable dsi pixel clk\n", __func__
);
655 clk_disable_unprepare(msm_host
->src_clk
);
657 clk_disable_unprepare(msm_host
->esc_clk
);
659 clk_disable_unprepare(msm_host
->byte_clk
);
664 void dsi_link_clk_disable_6g(struct msm_dsi_host
*msm_host
)
666 /* Drop the performance state vote */
667 dev_pm_opp_set_rate(&msm_host
->pdev
->dev
, 0);
668 clk_disable_unprepare(msm_host
->esc_clk
);
669 clk_disable_unprepare(msm_host
->pixel_clk
);
670 if (msm_host
->byte_intf_clk
)
671 clk_disable_unprepare(msm_host
->byte_intf_clk
);
672 clk_disable_unprepare(msm_host
->byte_clk
);
675 void dsi_link_clk_disable_v2(struct msm_dsi_host
*msm_host
)
677 clk_disable_unprepare(msm_host
->pixel_clk
);
678 clk_disable_unprepare(msm_host
->src_clk
);
679 clk_disable_unprepare(msm_host
->esc_clk
);
680 clk_disable_unprepare(msm_host
->byte_clk
);
683 static u32
dsi_get_pclk_rate(struct msm_dsi_host
*msm_host
, bool is_dual_dsi
)
685 struct drm_display_mode
*mode
= msm_host
->mode
;
688 pclk_rate
= mode
->clock
* 1000;
691 * For dual DSI mode, the current DRM mode has the complete width of the
692 * panel. Since, the complete panel is driven by two DSI controllers,
693 * the clock rates have to be split between the two dsi controllers.
694 * Adjust the byte and pixel clock rates for each dsi host accordingly.
702 static void dsi_calc_pclk(struct msm_dsi_host
*msm_host
, bool is_dual_dsi
)
704 u8 lanes
= msm_host
->lanes
;
705 u32 bpp
= dsi_get_bpp(msm_host
->format
);
706 u32 pclk_rate
= dsi_get_pclk_rate(msm_host
, is_dual_dsi
);
707 u64 pclk_bpp
= (u64
)pclk_rate
* bpp
;
710 pr_err("%s: forcing mdss_dsi lanes to 1\n", __func__
);
714 do_div(pclk_bpp
, (8 * lanes
));
716 msm_host
->pixel_clk_rate
= pclk_rate
;
717 msm_host
->byte_clk_rate
= pclk_bpp
;
719 DBG("pclk=%d, bclk=%d", msm_host
->pixel_clk_rate
,
720 msm_host
->byte_clk_rate
);
724 int dsi_calc_clk_rate_6g(struct msm_dsi_host
*msm_host
, bool is_dual_dsi
)
726 if (!msm_host
->mode
) {
727 pr_err("%s: mode not set\n", __func__
);
731 dsi_calc_pclk(msm_host
, is_dual_dsi
);
732 msm_host
->esc_clk_rate
= clk_get_rate(msm_host
->esc_clk
);
736 int dsi_calc_clk_rate_v2(struct msm_dsi_host
*msm_host
, bool is_dual_dsi
)
738 u32 bpp
= dsi_get_bpp(msm_host
->format
);
740 unsigned int esc_mhz
, esc_div
;
741 unsigned long byte_mhz
;
743 dsi_calc_pclk(msm_host
, is_dual_dsi
);
745 pclk_bpp
= (u64
)dsi_get_pclk_rate(msm_host
, is_dual_dsi
) * bpp
;
747 msm_host
->src_clk_rate
= pclk_bpp
;
750 * esc clock is byte clock followed by a 4 bit divider,
751 * we need to find an escape clock frequency within the
752 * mipi DSI spec range within the maximum divider limit
753 * We iterate here between an escape clock frequencey
754 * between 20 Mhz to 5 Mhz and pick up the first one
755 * that can be supported by our divider
758 byte_mhz
= msm_host
->byte_clk_rate
/ 1000000;
760 for (esc_mhz
= 20; esc_mhz
>= 5; esc_mhz
--) {
761 esc_div
= DIV_ROUND_UP(byte_mhz
, esc_mhz
);
764 * TODO: Ideally, we shouldn't know what sort of divider
765 * is available in mmss_cc, we're just assuming that
766 * it'll always be a 4 bit divider. Need to come up with
769 if (esc_div
>= 1 && esc_div
<= 16)
776 msm_host
->esc_clk_rate
= msm_host
->byte_clk_rate
/ esc_div
;
778 DBG("esc=%d, src=%d", msm_host
->esc_clk_rate
,
779 msm_host
->src_clk_rate
);
784 static void dsi_intr_ctrl(struct msm_dsi_host
*msm_host
, u32 mask
, int enable
)
789 spin_lock_irqsave(&msm_host
->intr_lock
, flags
);
790 intr
= dsi_read(msm_host
, REG_DSI_INTR_CTRL
);
797 DBG("intr=%x enable=%d", intr
, enable
);
799 dsi_write(msm_host
, REG_DSI_INTR_CTRL
, intr
);
800 spin_unlock_irqrestore(&msm_host
->intr_lock
, flags
);
803 static inline enum dsi_traffic_mode
dsi_get_traffic_mode(const u32 mode_flags
)
805 if (mode_flags
& MIPI_DSI_MODE_VIDEO_BURST
)
807 else if (mode_flags
& MIPI_DSI_MODE_VIDEO_SYNC_PULSE
)
808 return NON_BURST_SYNCH_PULSE
;
810 return NON_BURST_SYNCH_EVENT
;
813 static inline enum dsi_vid_dst_format
dsi_get_vid_fmt(
814 const enum mipi_dsi_pixel_format mipi_fmt
)
817 case MIPI_DSI_FMT_RGB888
: return VID_DST_FORMAT_RGB888
;
818 case MIPI_DSI_FMT_RGB666
: return VID_DST_FORMAT_RGB666_LOOSE
;
819 case MIPI_DSI_FMT_RGB666_PACKED
: return VID_DST_FORMAT_RGB666
;
820 case MIPI_DSI_FMT_RGB565
: return VID_DST_FORMAT_RGB565
;
821 default: return VID_DST_FORMAT_RGB888
;
825 static inline enum dsi_cmd_dst_format
dsi_get_cmd_fmt(
826 const enum mipi_dsi_pixel_format mipi_fmt
)
829 case MIPI_DSI_FMT_RGB888
: return CMD_DST_FORMAT_RGB888
;
830 case MIPI_DSI_FMT_RGB666_PACKED
:
831 case MIPI_DSI_FMT_RGB666
: return CMD_DST_FORMAT_RGB666
;
832 case MIPI_DSI_FMT_RGB565
: return CMD_DST_FORMAT_RGB565
;
833 default: return CMD_DST_FORMAT_RGB888
;
837 static void dsi_ctrl_config(struct msm_dsi_host
*msm_host
, bool enable
,
838 struct msm_dsi_phy_shared_timings
*phy_shared_timings
)
840 u32 flags
= msm_host
->mode_flags
;
841 enum mipi_dsi_pixel_format mipi_fmt
= msm_host
->format
;
842 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
843 u32 data
= 0, lane_ctrl
= 0;
846 dsi_write(msm_host
, REG_DSI_CTRL
, 0);
850 if (flags
& MIPI_DSI_MODE_VIDEO
) {
851 if (flags
& MIPI_DSI_MODE_VIDEO_HSE
)
852 data
|= DSI_VID_CFG0_PULSE_MODE_HSA_HE
;
853 if (flags
& MIPI_DSI_MODE_VIDEO_HFP
)
854 data
|= DSI_VID_CFG0_HFP_POWER_STOP
;
855 if (flags
& MIPI_DSI_MODE_VIDEO_HBP
)
856 data
|= DSI_VID_CFG0_HBP_POWER_STOP
;
857 if (flags
& MIPI_DSI_MODE_VIDEO_HSA
)
858 data
|= DSI_VID_CFG0_HSA_POWER_STOP
;
859 /* Always set low power stop mode for BLLP
860 * to let command engine send packets
862 data
|= DSI_VID_CFG0_EOF_BLLP_POWER_STOP
|
863 DSI_VID_CFG0_BLLP_POWER_STOP
;
864 data
|= DSI_VID_CFG0_TRAFFIC_MODE(dsi_get_traffic_mode(flags
));
865 data
|= DSI_VID_CFG0_DST_FORMAT(dsi_get_vid_fmt(mipi_fmt
));
866 data
|= DSI_VID_CFG0_VIRT_CHANNEL(msm_host
->channel
);
867 dsi_write(msm_host
, REG_DSI_VID_CFG0
, data
);
869 /* Do not swap RGB colors */
870 data
= DSI_VID_CFG1_RGB_SWAP(SWAP_RGB
);
871 dsi_write(msm_host
, REG_DSI_VID_CFG1
, 0);
873 /* Do not swap RGB colors */
874 data
= DSI_CMD_CFG0_RGB_SWAP(SWAP_RGB
);
875 data
|= DSI_CMD_CFG0_DST_FORMAT(dsi_get_cmd_fmt(mipi_fmt
));
876 dsi_write(msm_host
, REG_DSI_CMD_CFG0
, data
);
878 data
= DSI_CMD_CFG1_WR_MEM_START(MIPI_DCS_WRITE_MEMORY_START
) |
879 DSI_CMD_CFG1_WR_MEM_CONTINUE(
880 MIPI_DCS_WRITE_MEMORY_CONTINUE
);
881 /* Always insert DCS command */
882 data
|= DSI_CMD_CFG1_INSERT_DCS_COMMAND
;
883 dsi_write(msm_host
, REG_DSI_CMD_CFG1
, data
);
886 dsi_write(msm_host
, REG_DSI_CMD_DMA_CTRL
,
887 DSI_CMD_DMA_CTRL_FROM_FRAME_BUFFER
|
888 DSI_CMD_DMA_CTRL_LOW_POWER
);
891 /* Always assume dedicated TE pin */
892 data
|= DSI_TRIG_CTRL_TE
;
893 data
|= DSI_TRIG_CTRL_MDP_TRIGGER(TRIGGER_NONE
);
894 data
|= DSI_TRIG_CTRL_DMA_TRIGGER(TRIGGER_SW
);
895 data
|= DSI_TRIG_CTRL_STREAM(msm_host
->channel
);
896 if ((cfg_hnd
->major
== MSM_DSI_VER_MAJOR_6G
) &&
897 (cfg_hnd
->minor
>= MSM_DSI_6G_VER_MINOR_V1_2
))
898 data
|= DSI_TRIG_CTRL_BLOCK_DMA_WITHIN_FRAME
;
899 dsi_write(msm_host
, REG_DSI_TRIG_CTRL
, data
);
901 data
= DSI_CLKOUT_TIMING_CTRL_T_CLK_POST(phy_shared_timings
->clk_post
) |
902 DSI_CLKOUT_TIMING_CTRL_T_CLK_PRE(phy_shared_timings
->clk_pre
);
903 dsi_write(msm_host
, REG_DSI_CLKOUT_TIMING_CTRL
, data
);
905 if ((cfg_hnd
->major
== MSM_DSI_VER_MAJOR_6G
) &&
906 (cfg_hnd
->minor
> MSM_DSI_6G_VER_MINOR_V1_0
) &&
907 phy_shared_timings
->clk_pre_inc_by_2
)
908 dsi_write(msm_host
, REG_DSI_T_CLK_PRE_EXTEND
,
909 DSI_T_CLK_PRE_EXTEND_INC_BY_2_BYTECLK
);
912 if (!(flags
& MIPI_DSI_MODE_EOT_PACKET
))
913 data
|= DSI_EOT_PACKET_CTRL_TX_EOT_APPEND
;
914 dsi_write(msm_host
, REG_DSI_EOT_PACKET_CTRL
, data
);
916 /* allow only ack-err-status to generate interrupt */
917 dsi_write(msm_host
, REG_DSI_ERR_INT_MASK0
, 0x13ff3fe0);
919 dsi_intr_ctrl(msm_host
, DSI_IRQ_MASK_ERROR
, 1);
921 dsi_write(msm_host
, REG_DSI_CLK_CTRL
, DSI_CLK_CTRL_ENABLE_CLKS
);
923 data
= DSI_CTRL_CLK_EN
;
925 DBG("lane number=%d", msm_host
->lanes
);
926 data
|= ((DSI_CTRL_LANE0
<< msm_host
->lanes
) - DSI_CTRL_LANE0
);
928 dsi_write(msm_host
, REG_DSI_LANE_SWAP_CTRL
,
929 DSI_LANE_SWAP_CTRL_DLN_SWAP_SEL(msm_host
->dlane_swap
));
931 if (!(flags
& MIPI_DSI_CLOCK_NON_CONTINUOUS
)) {
932 lane_ctrl
= dsi_read(msm_host
, REG_DSI_LANE_CTRL
);
933 dsi_write(msm_host
, REG_DSI_LANE_CTRL
,
934 lane_ctrl
| DSI_LANE_CTRL_CLKLN_HS_FORCE_REQUEST
);
937 data
|= DSI_CTRL_ENABLE
;
939 dsi_write(msm_host
, REG_DSI_CTRL
, data
);
942 static void dsi_timing_setup(struct msm_dsi_host
*msm_host
, bool is_dual_dsi
)
944 struct drm_display_mode
*mode
= msm_host
->mode
;
945 u32 hs_start
= 0, vs_start
= 0; /* take sync start as 0 */
946 u32 h_total
= mode
->htotal
;
947 u32 v_total
= mode
->vtotal
;
948 u32 hs_end
= mode
->hsync_end
- mode
->hsync_start
;
949 u32 vs_end
= mode
->vsync_end
- mode
->vsync_start
;
950 u32 ha_start
= h_total
- mode
->hsync_start
;
951 u32 ha_end
= ha_start
+ mode
->hdisplay
;
952 u32 va_start
= v_total
- mode
->vsync_start
;
953 u32 va_end
= va_start
+ mode
->vdisplay
;
954 u32 hdisplay
= mode
->hdisplay
;
960 * For dual DSI mode, the current DRM mode has
961 * the complete width of the panel. Since, the complete
962 * panel is driven by two DSI controllers, the horizontal
963 * timings have to be split between the two dsi controllers.
964 * Adjust the DSI host timing values accordingly.
974 if (msm_host
->mode_flags
& MIPI_DSI_MODE_VIDEO
) {
975 dsi_write(msm_host
, REG_DSI_ACTIVE_H
,
976 DSI_ACTIVE_H_START(ha_start
) |
977 DSI_ACTIVE_H_END(ha_end
));
978 dsi_write(msm_host
, REG_DSI_ACTIVE_V
,
979 DSI_ACTIVE_V_START(va_start
) |
980 DSI_ACTIVE_V_END(va_end
));
981 dsi_write(msm_host
, REG_DSI_TOTAL
,
982 DSI_TOTAL_H_TOTAL(h_total
- 1) |
983 DSI_TOTAL_V_TOTAL(v_total
- 1));
985 dsi_write(msm_host
, REG_DSI_ACTIVE_HSYNC
,
986 DSI_ACTIVE_HSYNC_START(hs_start
) |
987 DSI_ACTIVE_HSYNC_END(hs_end
));
988 dsi_write(msm_host
, REG_DSI_ACTIVE_VSYNC_HPOS
, 0);
989 dsi_write(msm_host
, REG_DSI_ACTIVE_VSYNC_VPOS
,
990 DSI_ACTIVE_VSYNC_VPOS_START(vs_start
) |
991 DSI_ACTIVE_VSYNC_VPOS_END(vs_end
));
992 } else { /* command mode */
993 /* image data and 1 byte write_memory_start cmd */
994 wc
= hdisplay
* dsi_get_bpp(msm_host
->format
) / 8 + 1;
996 dsi_write(msm_host
, REG_DSI_CMD_MDP_STREAM0_CTRL
,
997 DSI_CMD_MDP_STREAM0_CTRL_WORD_COUNT(wc
) |
998 DSI_CMD_MDP_STREAM0_CTRL_VIRTUAL_CHANNEL(
1000 DSI_CMD_MDP_STREAM0_CTRL_DATA_TYPE(
1001 MIPI_DSI_DCS_LONG_WRITE
));
1003 dsi_write(msm_host
, REG_DSI_CMD_MDP_STREAM0_TOTAL
,
1004 DSI_CMD_MDP_STREAM0_TOTAL_H_TOTAL(hdisplay
) |
1005 DSI_CMD_MDP_STREAM0_TOTAL_V_TOTAL(mode
->vdisplay
));
1009 static void dsi_sw_reset(struct msm_dsi_host
*msm_host
)
1011 dsi_write(msm_host
, REG_DSI_CLK_CTRL
, DSI_CLK_CTRL_ENABLE_CLKS
);
1012 wmb(); /* clocks need to be enabled before reset */
1014 dsi_write(msm_host
, REG_DSI_RESET
, 1);
1015 msleep(DSI_RESET_TOGGLE_DELAY_MS
); /* make sure reset happen */
1016 dsi_write(msm_host
, REG_DSI_RESET
, 0);
1019 static void dsi_op_mode_config(struct msm_dsi_host
*msm_host
,
1020 bool video_mode
, bool enable
)
1024 dsi_ctrl
= dsi_read(msm_host
, REG_DSI_CTRL
);
1027 dsi_ctrl
&= ~(DSI_CTRL_ENABLE
| DSI_CTRL_VID_MODE_EN
|
1028 DSI_CTRL_CMD_MODE_EN
);
1029 dsi_intr_ctrl(msm_host
, DSI_IRQ_MASK_CMD_MDP_DONE
|
1030 DSI_IRQ_MASK_VIDEO_DONE
, 0);
1033 dsi_ctrl
|= DSI_CTRL_VID_MODE_EN
;
1034 } else { /* command mode */
1035 dsi_ctrl
|= DSI_CTRL_CMD_MODE_EN
;
1036 dsi_intr_ctrl(msm_host
, DSI_IRQ_MASK_CMD_MDP_DONE
, 1);
1038 dsi_ctrl
|= DSI_CTRL_ENABLE
;
1041 dsi_write(msm_host
, REG_DSI_CTRL
, dsi_ctrl
);
1044 static void dsi_set_tx_power_mode(int mode
, struct msm_dsi_host
*msm_host
)
1048 data
= dsi_read(msm_host
, REG_DSI_CMD_DMA_CTRL
);
1051 data
&= ~DSI_CMD_DMA_CTRL_LOW_POWER
;
1053 data
|= DSI_CMD_DMA_CTRL_LOW_POWER
;
1055 dsi_write(msm_host
, REG_DSI_CMD_DMA_CTRL
, data
);
1058 static void dsi_wait4video_done(struct msm_dsi_host
*msm_host
)
1061 struct device
*dev
= &msm_host
->pdev
->dev
;
1063 dsi_intr_ctrl(msm_host
, DSI_IRQ_MASK_VIDEO_DONE
, 1);
1065 reinit_completion(&msm_host
->video_comp
);
1067 ret
= wait_for_completion_timeout(&msm_host
->video_comp
,
1068 msecs_to_jiffies(70));
1071 DRM_DEV_ERROR(dev
, "wait for video done timed out\n");
1073 dsi_intr_ctrl(msm_host
, DSI_IRQ_MASK_VIDEO_DONE
, 0);
1076 static void dsi_wait4video_eng_busy(struct msm_dsi_host
*msm_host
)
1078 if (!(msm_host
->mode_flags
& MIPI_DSI_MODE_VIDEO
))
1081 if (msm_host
->power_on
&& msm_host
->enabled
) {
1082 dsi_wait4video_done(msm_host
);
1083 /* delay 4 ms to skip BLLP */
1084 usleep_range(2000, 4000);
1088 int dsi_tx_buf_alloc_6g(struct msm_dsi_host
*msm_host
, int size
)
1090 struct drm_device
*dev
= msm_host
->dev
;
1091 struct msm_drm_private
*priv
= dev
->dev_private
;
1095 data
= msm_gem_kernel_new(dev
, size
, MSM_BO_UNCACHED
,
1097 &msm_host
->tx_gem_obj
, &iova
);
1100 msm_host
->tx_gem_obj
= NULL
;
1101 return PTR_ERR(data
);
1104 msm_gem_object_set_name(msm_host
->tx_gem_obj
, "tx_gem");
1106 msm_host
->tx_size
= msm_host
->tx_gem_obj
->size
;
1111 int dsi_tx_buf_alloc_v2(struct msm_dsi_host
*msm_host
, int size
)
1113 struct drm_device
*dev
= msm_host
->dev
;
1115 msm_host
->tx_buf
= dma_alloc_coherent(dev
->dev
, size
,
1116 &msm_host
->tx_buf_paddr
, GFP_KERNEL
);
1117 if (!msm_host
->tx_buf
)
1120 msm_host
->tx_size
= size
;
1125 static void dsi_tx_buf_free(struct msm_dsi_host
*msm_host
)
1127 struct drm_device
*dev
= msm_host
->dev
;
1128 struct msm_drm_private
*priv
;
1131 * This is possible if we're tearing down before we've had a chance to
1132 * fully initialize. A very real possibility if our probe is deferred,
1133 * in which case we'll hit msm_dsi_host_destroy() without having run
1134 * through the dsi_tx_buf_alloc().
1139 priv
= dev
->dev_private
;
1140 if (msm_host
->tx_gem_obj
) {
1141 msm_gem_unpin_iova(msm_host
->tx_gem_obj
, priv
->kms
->aspace
);
1142 drm_gem_object_put(msm_host
->tx_gem_obj
);
1143 msm_host
->tx_gem_obj
= NULL
;
1146 if (msm_host
->tx_buf
)
1147 dma_free_coherent(dev
->dev
, msm_host
->tx_size
, msm_host
->tx_buf
,
1148 msm_host
->tx_buf_paddr
);
1151 void *dsi_tx_buf_get_6g(struct msm_dsi_host
*msm_host
)
1153 return msm_gem_get_vaddr(msm_host
->tx_gem_obj
);
1156 void *dsi_tx_buf_get_v2(struct msm_dsi_host
*msm_host
)
1158 return msm_host
->tx_buf
;
1161 void dsi_tx_buf_put_6g(struct msm_dsi_host
*msm_host
)
1163 msm_gem_put_vaddr(msm_host
->tx_gem_obj
);
1167 * prepare cmd buffer to be txed
1169 static int dsi_cmd_dma_add(struct msm_dsi_host
*msm_host
,
1170 const struct mipi_dsi_msg
*msg
)
1172 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
1173 struct mipi_dsi_packet packet
;
1178 ret
= mipi_dsi_create_packet(&packet
, msg
);
1180 pr_err("%s: create packet failed, %d\n", __func__
, ret
);
1183 len
= (packet
.size
+ 3) & (~0x3);
1185 if (len
> msm_host
->tx_size
) {
1186 pr_err("%s: packet size is too big\n", __func__
);
1190 data
= cfg_hnd
->ops
->tx_buf_get(msm_host
);
1192 ret
= PTR_ERR(data
);
1193 pr_err("%s: get vaddr failed, %d\n", __func__
, ret
);
1197 /* MSM specific command format in memory */
1198 data
[0] = packet
.header
[1];
1199 data
[1] = packet
.header
[2];
1200 data
[2] = packet
.header
[0];
1201 data
[3] = BIT(7); /* Last packet */
1202 if (mipi_dsi_packet_format_is_long(msg
->type
))
1204 if (msg
->rx_buf
&& msg
->rx_len
)
1208 if (packet
.payload
&& packet
.payload_length
)
1209 memcpy(data
+ 4, packet
.payload
, packet
.payload_length
);
1211 /* Append 0xff to the end */
1212 if (packet
.size
< len
)
1213 memset(data
+ packet
.size
, 0xff, len
- packet
.size
);
1215 if (cfg_hnd
->ops
->tx_buf_put
)
1216 cfg_hnd
->ops
->tx_buf_put(msm_host
);
1222 * dsi_short_read1_resp: 1 parameter
1224 static int dsi_short_read1_resp(u8
*buf
, const struct mipi_dsi_msg
*msg
)
1226 u8
*data
= msg
->rx_buf
;
1227 if (data
&& (msg
->rx_len
>= 1)) {
1228 *data
= buf
[1]; /* strip out dcs type */
1231 pr_err("%s: read data does not match with rx_buf len %zu\n",
1232 __func__
, msg
->rx_len
);
1238 * dsi_short_read2_resp: 2 parameter
1240 static int dsi_short_read2_resp(u8
*buf
, const struct mipi_dsi_msg
*msg
)
1242 u8
*data
= msg
->rx_buf
;
1243 if (data
&& (msg
->rx_len
>= 2)) {
1244 data
[0] = buf
[1]; /* strip out dcs type */
1248 pr_err("%s: read data does not match with rx_buf len %zu\n",
1249 __func__
, msg
->rx_len
);
1254 static int dsi_long_read_resp(u8
*buf
, const struct mipi_dsi_msg
*msg
)
1256 /* strip out 4 byte dcs header */
1257 if (msg
->rx_buf
&& msg
->rx_len
)
1258 memcpy(msg
->rx_buf
, buf
+ 4, msg
->rx_len
);
1263 int dsi_dma_base_get_6g(struct msm_dsi_host
*msm_host
, uint64_t *dma_base
)
1265 struct drm_device
*dev
= msm_host
->dev
;
1266 struct msm_drm_private
*priv
= dev
->dev_private
;
1271 return msm_gem_get_and_pin_iova(msm_host
->tx_gem_obj
,
1272 priv
->kms
->aspace
, dma_base
);
1275 int dsi_dma_base_get_v2(struct msm_dsi_host
*msm_host
, uint64_t *dma_base
)
1280 *dma_base
= msm_host
->tx_buf_paddr
;
1284 static int dsi_cmd_dma_tx(struct msm_dsi_host
*msm_host
, int len
)
1286 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
1291 ret
= cfg_hnd
->ops
->dma_base_get(msm_host
, &dma_base
);
1293 pr_err("%s: failed to get iova: %d\n", __func__
, ret
);
1297 reinit_completion(&msm_host
->dma_comp
);
1299 dsi_wait4video_eng_busy(msm_host
);
1301 triggered
= msm_dsi_manager_cmd_xfer_trigger(
1302 msm_host
->id
, dma_base
, len
);
1304 ret
= wait_for_completion_timeout(&msm_host
->dma_comp
,
1305 msecs_to_jiffies(200));
1317 static int dsi_cmd_dma_rx(struct msm_dsi_host
*msm_host
,
1318 u8
*buf
, int rx_byte
, int pkt_size
)
1324 int repeated_bytes
= 0;
1325 int buf_offset
= buf
- msm_host
->rx_buf
;
1328 cnt
= (rx_byte
+ 3) >> 2;
1330 cnt
= 4; /* 4 x 32 bits registers only */
1335 read_cnt
= pkt_size
+ 6;
1338 * In case of multiple reads from the panel, after the first read, there
1339 * is possibility that there are some bytes in the payload repeating in
1340 * the RDBK_DATA registers. Since we read all the parameters from the
1341 * panel right from the first byte for every pass. We need to skip the
1342 * repeating bytes and then append the new parameters to the rx buffer.
1344 if (read_cnt
> 16) {
1346 /* Any data more than 16 bytes will be shifted out.
1347 * The temp read buffer should already contain these bytes.
1348 * The remaining bytes in read buffer are the repeated bytes.
1350 bytes_shifted
= read_cnt
- 16;
1351 repeated_bytes
= buf_offset
- bytes_shifted
;
1354 for (i
= cnt
- 1; i
>= 0; i
--) {
1355 data
= dsi_read(msm_host
, REG_DSI_RDBK_DATA(i
));
1356 *temp
++ = ntohl(data
); /* to host byte order */
1357 DBG("data = 0x%x and ntohl(data) = 0x%x", data
, ntohl(data
));
1360 for (i
= repeated_bytes
; i
< 16; i
++)
1366 static int dsi_cmds2buf_tx(struct msm_dsi_host
*msm_host
,
1367 const struct mipi_dsi_msg
*msg
)
1370 int bllp_len
= msm_host
->mode
->hdisplay
*
1371 dsi_get_bpp(msm_host
->format
) / 8;
1373 len
= dsi_cmd_dma_add(msm_host
, msg
);
1375 pr_err("%s: failed to add cmd type = 0x%x\n",
1376 __func__
, msg
->type
);
1380 /* for video mode, do not send cmds more than
1381 * one pixel line, since it only transmit it
1384 /* TODO: if the command is sent in LP mode, the bit rate is only
1385 * half of esc clk rate. In this case, if the video is already
1386 * actively streaming, we need to check more carefully if the
1387 * command can be fit into one BLLP.
1389 if ((msm_host
->mode_flags
& MIPI_DSI_MODE_VIDEO
) && (len
> bllp_len
)) {
1390 pr_err("%s: cmd cannot fit into BLLP period, len=%d\n",
1395 ret
= dsi_cmd_dma_tx(msm_host
, len
);
1397 pr_err("%s: cmd dma tx failed, type=0x%x, data0=0x%x, len=%d\n",
1398 __func__
, msg
->type
, (*(u8
*)(msg
->tx_buf
)), len
);
1405 static void dsi_sw_reset_restore(struct msm_dsi_host
*msm_host
)
1409 data0
= dsi_read(msm_host
, REG_DSI_CTRL
);
1411 data1
&= ~DSI_CTRL_ENABLE
;
1412 dsi_write(msm_host
, REG_DSI_CTRL
, data1
);
1414 * dsi controller need to be disabled before
1419 dsi_write(msm_host
, REG_DSI_CLK_CTRL
, DSI_CLK_CTRL_ENABLE_CLKS
);
1420 wmb(); /* make sure clocks enabled */
1422 /* dsi controller can only be reset while clocks are running */
1423 dsi_write(msm_host
, REG_DSI_RESET
, 1);
1424 msleep(DSI_RESET_TOGGLE_DELAY_MS
); /* make sure reset happen */
1425 dsi_write(msm_host
, REG_DSI_RESET
, 0);
1426 wmb(); /* controller out of reset */
1427 dsi_write(msm_host
, REG_DSI_CTRL
, data0
);
1428 wmb(); /* make sure dsi controller enabled again */
1431 static void dsi_hpd_worker(struct work_struct
*work
)
1433 struct msm_dsi_host
*msm_host
=
1434 container_of(work
, struct msm_dsi_host
, hpd_work
);
1436 drm_helper_hpd_irq_event(msm_host
->dev
);
1439 static void dsi_err_worker(struct work_struct
*work
)
1441 struct msm_dsi_host
*msm_host
=
1442 container_of(work
, struct msm_dsi_host
, err_work
);
1443 u32 status
= msm_host
->err_work_state
;
1445 pr_err_ratelimited("%s: status=%x\n", __func__
, status
);
1446 if (status
& DSI_ERR_STATE_MDP_FIFO_UNDERFLOW
)
1447 dsi_sw_reset_restore(msm_host
);
1449 /* It is safe to clear here because error irq is disabled. */
1450 msm_host
->err_work_state
= 0;
1452 /* enable dsi error interrupt */
1453 dsi_intr_ctrl(msm_host
, DSI_IRQ_MASK_ERROR
, 1);
1456 static void dsi_ack_err_status(struct msm_dsi_host
*msm_host
)
1460 status
= dsi_read(msm_host
, REG_DSI_ACK_ERR_STATUS
);
1463 dsi_write(msm_host
, REG_DSI_ACK_ERR_STATUS
, status
);
1464 /* Writing of an extra 0 needed to clear error bits */
1465 dsi_write(msm_host
, REG_DSI_ACK_ERR_STATUS
, 0);
1466 msm_host
->err_work_state
|= DSI_ERR_STATE_ACK
;
1470 static void dsi_timeout_status(struct msm_dsi_host
*msm_host
)
1474 status
= dsi_read(msm_host
, REG_DSI_TIMEOUT_STATUS
);
1477 dsi_write(msm_host
, REG_DSI_TIMEOUT_STATUS
, status
);
1478 msm_host
->err_work_state
|= DSI_ERR_STATE_TIMEOUT
;
1482 static void dsi_dln0_phy_err(struct msm_dsi_host
*msm_host
)
1486 status
= dsi_read(msm_host
, REG_DSI_DLN0_PHY_ERR
);
1488 if (status
& (DSI_DLN0_PHY_ERR_DLN0_ERR_ESC
|
1489 DSI_DLN0_PHY_ERR_DLN0_ERR_SYNC_ESC
|
1490 DSI_DLN0_PHY_ERR_DLN0_ERR_CONTROL
|
1491 DSI_DLN0_PHY_ERR_DLN0_ERR_CONTENTION_LP0
|
1492 DSI_DLN0_PHY_ERR_DLN0_ERR_CONTENTION_LP1
)) {
1493 dsi_write(msm_host
, REG_DSI_DLN0_PHY_ERR
, status
);
1494 msm_host
->err_work_state
|= DSI_ERR_STATE_DLN0_PHY
;
1498 static void dsi_fifo_status(struct msm_dsi_host
*msm_host
)
1502 status
= dsi_read(msm_host
, REG_DSI_FIFO_STATUS
);
1504 /* fifo underflow, overflow */
1506 dsi_write(msm_host
, REG_DSI_FIFO_STATUS
, status
);
1507 msm_host
->err_work_state
|= DSI_ERR_STATE_FIFO
;
1508 if (status
& DSI_FIFO_STATUS_CMD_MDP_FIFO_UNDERFLOW
)
1509 msm_host
->err_work_state
|=
1510 DSI_ERR_STATE_MDP_FIFO_UNDERFLOW
;
1514 static void dsi_status(struct msm_dsi_host
*msm_host
)
1518 status
= dsi_read(msm_host
, REG_DSI_STATUS0
);
1520 if (status
& DSI_STATUS0_INTERLEAVE_OP_CONTENTION
) {
1521 dsi_write(msm_host
, REG_DSI_STATUS0
, status
);
1522 msm_host
->err_work_state
|=
1523 DSI_ERR_STATE_INTERLEAVE_OP_CONTENTION
;
1527 static void dsi_clk_status(struct msm_dsi_host
*msm_host
)
1531 status
= dsi_read(msm_host
, REG_DSI_CLK_STATUS
);
1533 if (status
& DSI_CLK_STATUS_PLL_UNLOCKED
) {
1534 dsi_write(msm_host
, REG_DSI_CLK_STATUS
, status
);
1535 msm_host
->err_work_state
|= DSI_ERR_STATE_PLL_UNLOCKED
;
1539 static void dsi_error(struct msm_dsi_host
*msm_host
)
1541 /* disable dsi error interrupt */
1542 dsi_intr_ctrl(msm_host
, DSI_IRQ_MASK_ERROR
, 0);
1544 dsi_clk_status(msm_host
);
1545 dsi_fifo_status(msm_host
);
1546 dsi_ack_err_status(msm_host
);
1547 dsi_timeout_status(msm_host
);
1548 dsi_status(msm_host
);
1549 dsi_dln0_phy_err(msm_host
);
1551 queue_work(msm_host
->workqueue
, &msm_host
->err_work
);
1554 static irqreturn_t
dsi_host_irq(int irq
, void *ptr
)
1556 struct msm_dsi_host
*msm_host
= ptr
;
1558 unsigned long flags
;
1560 if (!msm_host
->ctrl_base
)
1563 spin_lock_irqsave(&msm_host
->intr_lock
, flags
);
1564 isr
= dsi_read(msm_host
, REG_DSI_INTR_CTRL
);
1565 dsi_write(msm_host
, REG_DSI_INTR_CTRL
, isr
);
1566 spin_unlock_irqrestore(&msm_host
->intr_lock
, flags
);
1568 DBG("isr=0x%x, id=%d", isr
, msm_host
->id
);
1570 if (isr
& DSI_IRQ_ERROR
)
1571 dsi_error(msm_host
);
1573 if (isr
& DSI_IRQ_VIDEO_DONE
)
1574 complete(&msm_host
->video_comp
);
1576 if (isr
& DSI_IRQ_CMD_DMA_DONE
)
1577 complete(&msm_host
->dma_comp
);
1582 static int dsi_host_init_panel_gpios(struct msm_dsi_host
*msm_host
,
1583 struct device
*panel_device
)
1585 msm_host
->disp_en_gpio
= devm_gpiod_get_optional(panel_device
,
1588 if (IS_ERR(msm_host
->disp_en_gpio
)) {
1589 DBG("cannot get disp-enable-gpios %ld",
1590 PTR_ERR(msm_host
->disp_en_gpio
));
1591 return PTR_ERR(msm_host
->disp_en_gpio
);
1594 msm_host
->te_gpio
= devm_gpiod_get_optional(panel_device
, "disp-te",
1596 if (IS_ERR(msm_host
->te_gpio
)) {
1597 DBG("cannot get disp-te-gpios %ld", PTR_ERR(msm_host
->te_gpio
));
1598 return PTR_ERR(msm_host
->te_gpio
);
1604 static int dsi_host_attach(struct mipi_dsi_host
*host
,
1605 struct mipi_dsi_device
*dsi
)
1607 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
1610 if (dsi
->lanes
> msm_host
->num_data_lanes
)
1613 msm_host
->channel
= dsi
->channel
;
1614 msm_host
->lanes
= dsi
->lanes
;
1615 msm_host
->format
= dsi
->format
;
1616 msm_host
->mode_flags
= dsi
->mode_flags
;
1618 /* Some gpios defined in panel DT need to be controlled by host */
1619 ret
= dsi_host_init_panel_gpios(msm_host
, &dsi
->dev
);
1623 DBG("id=%d", msm_host
->id
);
1625 queue_work(msm_host
->workqueue
, &msm_host
->hpd_work
);
1630 static int dsi_host_detach(struct mipi_dsi_host
*host
,
1631 struct mipi_dsi_device
*dsi
)
1633 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
1635 msm_host
->device_node
= NULL
;
1637 DBG("id=%d", msm_host
->id
);
1639 queue_work(msm_host
->workqueue
, &msm_host
->hpd_work
);
1644 static ssize_t
dsi_host_transfer(struct mipi_dsi_host
*host
,
1645 const struct mipi_dsi_msg
*msg
)
1647 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
1650 if (!msg
|| !msm_host
->power_on
)
1653 mutex_lock(&msm_host
->cmd_mutex
);
1654 ret
= msm_dsi_manager_cmd_xfer(msm_host
->id
, msg
);
1655 mutex_unlock(&msm_host
->cmd_mutex
);
1660 static const struct mipi_dsi_host_ops dsi_host_ops
= {
1661 .attach
= dsi_host_attach
,
1662 .detach
= dsi_host_detach
,
1663 .transfer
= dsi_host_transfer
,
1667 * List of supported physical to logical lane mappings.
1668 * For example, the 2nd entry represents the following mapping:
1670 * "3012": Logic 3->Phys 0; Logic 0->Phys 1; Logic 1->Phys 2; Logic 2->Phys 3;
1672 static const int supported_data_lane_swaps
[][4] = {
1683 static int dsi_host_parse_lane_data(struct msm_dsi_host
*msm_host
,
1684 struct device_node
*ep
)
1686 struct device
*dev
= &msm_host
->pdev
->dev
;
1687 struct property
*prop
;
1689 int ret
, i
, len
, num_lanes
;
1691 prop
= of_find_property(ep
, "data-lanes", &len
);
1694 "failed to find data lane mapping, using default\n");
1698 num_lanes
= len
/ sizeof(u32
);
1700 if (num_lanes
< 1 || num_lanes
> 4) {
1701 DRM_DEV_ERROR(dev
, "bad number of data lanes\n");
1705 msm_host
->num_data_lanes
= num_lanes
;
1707 ret
= of_property_read_u32_array(ep
, "data-lanes", lane_map
,
1710 DRM_DEV_ERROR(dev
, "failed to read lane data\n");
1715 * compare DT specified physical-logical lane mappings with the ones
1716 * supported by hardware
1718 for (i
= 0; i
< ARRAY_SIZE(supported_data_lane_swaps
); i
++) {
1719 const int *swap
= supported_data_lane_swaps
[i
];
1723 * the data-lanes array we get from DT has a logical->physical
1724 * mapping. The "data lane swap" register field represents
1725 * supported configurations in a physical->logical mapping.
1726 * Translate the DT mapping to what we understand and find a
1727 * configuration that works.
1729 for (j
= 0; j
< num_lanes
; j
++) {
1730 if (lane_map
[j
] < 0 || lane_map
[j
] > 3)
1731 DRM_DEV_ERROR(dev
, "bad physical lane entry %u\n",
1734 if (swap
[lane_map
[j
]] != j
)
1738 if (j
== num_lanes
) {
1739 msm_host
->dlane_swap
= i
;
1747 static int dsi_host_parse_dt(struct msm_dsi_host
*msm_host
)
1749 struct device
*dev
= &msm_host
->pdev
->dev
;
1750 struct device_node
*np
= dev
->of_node
;
1751 struct device_node
*endpoint
, *device_node
;
1755 * Get the endpoint of the output port of the DSI host. In our case,
1756 * this is mapped to port number with reg = 1. Don't return an error if
1757 * the remote endpoint isn't defined. It's possible that there is
1758 * nothing connected to the dsi output.
1760 endpoint
= of_graph_get_endpoint_by_regs(np
, 1, -1);
1762 DRM_DEV_DEBUG(dev
, "%s: no endpoint\n", __func__
);
1766 ret
= dsi_host_parse_lane_data(msm_host
, endpoint
);
1768 DRM_DEV_ERROR(dev
, "%s: invalid lane configuration %d\n",
1774 /* Get panel node from the output port's endpoint data */
1775 device_node
= of_graph_get_remote_node(np
, 1, 0);
1777 DRM_DEV_DEBUG(dev
, "%s: no valid device\n", __func__
);
1782 msm_host
->device_node
= device_node
;
1784 if (of_property_read_bool(np
, "syscon-sfpb")) {
1785 msm_host
->sfpb
= syscon_regmap_lookup_by_phandle(np
,
1787 if (IS_ERR(msm_host
->sfpb
)) {
1788 DRM_DEV_ERROR(dev
, "%s: failed to get sfpb regmap\n",
1790 ret
= PTR_ERR(msm_host
->sfpb
);
1794 of_node_put(device_node
);
1797 of_node_put(endpoint
);
1802 static int dsi_host_get_id(struct msm_dsi_host
*msm_host
)
1804 struct platform_device
*pdev
= msm_host
->pdev
;
1805 const struct msm_dsi_config
*cfg
= msm_host
->cfg_hnd
->cfg
;
1806 struct resource
*res
;
1809 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "dsi_ctrl");
1813 for (i
= 0; i
< cfg
->num_dsi
; i
++) {
1814 if (cfg
->io_start
[i
] == res
->start
)
1821 int msm_dsi_host_init(struct msm_dsi
*msm_dsi
)
1823 struct msm_dsi_host
*msm_host
= NULL
;
1824 struct platform_device
*pdev
= msm_dsi
->pdev
;
1827 msm_host
= devm_kzalloc(&pdev
->dev
, sizeof(*msm_host
), GFP_KERNEL
);
1829 pr_err("%s: FAILED: cannot alloc dsi host\n",
1835 msm_host
->pdev
= pdev
;
1836 msm_dsi
->host
= &msm_host
->base
;
1838 ret
= dsi_host_parse_dt(msm_host
);
1840 pr_err("%s: failed to parse dt\n", __func__
);
1844 msm_host
->ctrl_base
= msm_ioremap(pdev
, "dsi_ctrl", "DSI CTRL");
1845 if (IS_ERR(msm_host
->ctrl_base
)) {
1846 pr_err("%s: unable to map Dsi ctrl base\n", __func__
);
1847 ret
= PTR_ERR(msm_host
->ctrl_base
);
1851 pm_runtime_enable(&pdev
->dev
);
1853 msm_host
->cfg_hnd
= dsi_get_config(msm_host
);
1854 if (!msm_host
->cfg_hnd
) {
1856 pr_err("%s: get config failed\n", __func__
);
1860 msm_host
->id
= dsi_host_get_id(msm_host
);
1861 if (msm_host
->id
< 0) {
1863 pr_err("%s: unable to identify DSI host index\n", __func__
);
1867 /* fixup base address by io offset */
1868 msm_host
->ctrl_base
+= msm_host
->cfg_hnd
->cfg
->io_offset
;
1870 ret
= dsi_regulator_init(msm_host
);
1872 pr_err("%s: regulator init failed\n", __func__
);
1876 ret
= dsi_clk_init(msm_host
);
1878 pr_err("%s: unable to initialize dsi clks\n", __func__
);
1882 msm_host
->rx_buf
= devm_kzalloc(&pdev
->dev
, SZ_4K
, GFP_KERNEL
);
1883 if (!msm_host
->rx_buf
) {
1885 pr_err("%s: alloc rx temp buf failed\n", __func__
);
1889 msm_host
->opp_table
= dev_pm_opp_set_clkname(&pdev
->dev
, "byte");
1890 if (IS_ERR(msm_host
->opp_table
))
1891 return PTR_ERR(msm_host
->opp_table
);
1892 /* OPP table is optional */
1893 ret
= dev_pm_opp_of_add_table(&pdev
->dev
);
1894 if (ret
&& ret
!= -ENODEV
) {
1895 dev_err(&pdev
->dev
, "invalid OPP table in device tree\n");
1896 dev_pm_opp_put_clkname(msm_host
->opp_table
);
1900 init_completion(&msm_host
->dma_comp
);
1901 init_completion(&msm_host
->video_comp
);
1902 mutex_init(&msm_host
->dev_mutex
);
1903 mutex_init(&msm_host
->cmd_mutex
);
1904 spin_lock_init(&msm_host
->intr_lock
);
1906 /* setup workqueue */
1907 msm_host
->workqueue
= alloc_ordered_workqueue("dsi_drm_work", 0);
1908 INIT_WORK(&msm_host
->err_work
, dsi_err_worker
);
1909 INIT_WORK(&msm_host
->hpd_work
, dsi_hpd_worker
);
1911 msm_dsi
->id
= msm_host
->id
;
1913 DBG("Dsi Host %d initialized", msm_host
->id
);
1920 void msm_dsi_host_destroy(struct mipi_dsi_host
*host
)
1922 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
1925 dsi_tx_buf_free(msm_host
);
1926 if (msm_host
->workqueue
) {
1927 flush_workqueue(msm_host
->workqueue
);
1928 destroy_workqueue(msm_host
->workqueue
);
1929 msm_host
->workqueue
= NULL
;
1932 mutex_destroy(&msm_host
->cmd_mutex
);
1933 mutex_destroy(&msm_host
->dev_mutex
);
1935 dev_pm_opp_of_remove_table(&msm_host
->pdev
->dev
);
1936 dev_pm_opp_put_clkname(msm_host
->opp_table
);
1937 pm_runtime_disable(&msm_host
->pdev
->dev
);
1940 int msm_dsi_host_modeset_init(struct mipi_dsi_host
*host
,
1941 struct drm_device
*dev
)
1943 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
1944 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
1945 struct platform_device
*pdev
= msm_host
->pdev
;
1948 msm_host
->irq
= irq_of_parse_and_map(pdev
->dev
.of_node
, 0);
1949 if (msm_host
->irq
< 0) {
1950 ret
= msm_host
->irq
;
1951 DRM_DEV_ERROR(dev
->dev
, "failed to get irq: %d\n", ret
);
1955 ret
= devm_request_irq(&pdev
->dev
, msm_host
->irq
,
1956 dsi_host_irq
, IRQF_TRIGGER_HIGH
| IRQF_ONESHOT
,
1957 "dsi_isr", msm_host
);
1959 DRM_DEV_ERROR(&pdev
->dev
, "failed to request IRQ%u: %d\n",
1960 msm_host
->irq
, ret
);
1964 msm_host
->dev
= dev
;
1965 ret
= cfg_hnd
->ops
->tx_buf_alloc(msm_host
, SZ_4K
);
1967 pr_err("%s: alloc tx gem obj failed, %d\n", __func__
, ret
);
1974 int msm_dsi_host_register(struct mipi_dsi_host
*host
, bool check_defer
)
1976 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
1979 /* Register mipi dsi host */
1980 if (!msm_host
->registered
) {
1981 host
->dev
= &msm_host
->pdev
->dev
;
1982 host
->ops
= &dsi_host_ops
;
1983 ret
= mipi_dsi_host_register(host
);
1987 msm_host
->registered
= true;
1989 /* If the panel driver has not been probed after host register,
1990 * we should defer the host's probe.
1991 * It makes sure panel is connected when fbcon detects
1992 * connector status and gets the proper display mode to
1993 * create framebuffer.
1994 * Don't try to defer if there is nothing connected to the dsi
1997 if (check_defer
&& msm_host
->device_node
) {
1998 if (IS_ERR(of_drm_find_panel(msm_host
->device_node
)))
1999 if (!of_drm_find_bridge(msm_host
->device_node
))
2000 return -EPROBE_DEFER
;
2007 void msm_dsi_host_unregister(struct mipi_dsi_host
*host
)
2009 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2011 if (msm_host
->registered
) {
2012 mipi_dsi_host_unregister(host
);
2015 msm_host
->registered
= false;
2019 int msm_dsi_host_xfer_prepare(struct mipi_dsi_host
*host
,
2020 const struct mipi_dsi_msg
*msg
)
2022 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2023 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
2025 /* TODO: make sure dsi_cmd_mdp is idle.
2026 * Since DSI6G v1.2.0, we can set DSI_TRIG_CTRL.BLOCK_DMA_WITHIN_FRAME
2027 * to ask H/W to wait until cmd mdp is idle. S/W wait is not needed.
2028 * How to handle the old versions? Wait for mdp cmd done?
2032 * mdss interrupt is generated in mdp core clock domain
2033 * mdp clock need to be enabled to receive dsi interrupt
2035 pm_runtime_get_sync(&msm_host
->pdev
->dev
);
2036 cfg_hnd
->ops
->link_clk_set_rate(msm_host
);
2037 cfg_hnd
->ops
->link_clk_enable(msm_host
);
2039 /* TODO: vote for bus bandwidth */
2041 if (!(msg
->flags
& MIPI_DSI_MSG_USE_LPM
))
2042 dsi_set_tx_power_mode(0, msm_host
);
2044 msm_host
->dma_cmd_ctrl_restore
= dsi_read(msm_host
, REG_DSI_CTRL
);
2045 dsi_write(msm_host
, REG_DSI_CTRL
,
2046 msm_host
->dma_cmd_ctrl_restore
|
2047 DSI_CTRL_CMD_MODE_EN
|
2049 dsi_intr_ctrl(msm_host
, DSI_IRQ_MASK_CMD_DMA_DONE
, 1);
2054 void msm_dsi_host_xfer_restore(struct mipi_dsi_host
*host
,
2055 const struct mipi_dsi_msg
*msg
)
2057 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2058 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
2060 dsi_intr_ctrl(msm_host
, DSI_IRQ_MASK_CMD_DMA_DONE
, 0);
2061 dsi_write(msm_host
, REG_DSI_CTRL
, msm_host
->dma_cmd_ctrl_restore
);
2063 if (!(msg
->flags
& MIPI_DSI_MSG_USE_LPM
))
2064 dsi_set_tx_power_mode(1, msm_host
);
2066 /* TODO: unvote for bus bandwidth */
2068 cfg_hnd
->ops
->link_clk_disable(msm_host
);
2069 pm_runtime_put_autosuspend(&msm_host
->pdev
->dev
);
2072 int msm_dsi_host_cmd_tx(struct mipi_dsi_host
*host
,
2073 const struct mipi_dsi_msg
*msg
)
2075 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2077 return dsi_cmds2buf_tx(msm_host
, msg
);
2080 int msm_dsi_host_cmd_rx(struct mipi_dsi_host
*host
,
2081 const struct mipi_dsi_msg
*msg
)
2083 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2084 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
2085 int data_byte
, rx_byte
, dlen
, end
;
2086 int short_response
, diff
, pkt_size
, ret
= 0;
2088 int rlen
= msg
->rx_len
;
2097 data_byte
= 10; /* first read */
2098 if (rlen
< data_byte
)
2101 pkt_size
= data_byte
;
2102 rx_byte
= data_byte
+ 6; /* 4 header + 2 crc */
2105 buf
= msm_host
->rx_buf
;
2108 u8 tx
[2] = {pkt_size
& 0xff, pkt_size
>> 8};
2109 struct mipi_dsi_msg max_pkt_size_msg
= {
2110 .channel
= msg
->channel
,
2111 .type
= MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE
,
2116 DBG("rlen=%d pkt_size=%d rx_byte=%d",
2117 rlen
, pkt_size
, rx_byte
);
2119 ret
= dsi_cmds2buf_tx(msm_host
, &max_pkt_size_msg
);
2121 pr_err("%s: Set max pkt size failed, %d\n",
2126 if ((cfg_hnd
->major
== MSM_DSI_VER_MAJOR_6G
) &&
2127 (cfg_hnd
->minor
>= MSM_DSI_6G_VER_MINOR_V1_1
)) {
2128 /* Clear the RDBK_DATA registers */
2129 dsi_write(msm_host
, REG_DSI_RDBK_DATA_CTRL
,
2130 DSI_RDBK_DATA_CTRL_CLR
);
2131 wmb(); /* make sure the RDBK registers are cleared */
2132 dsi_write(msm_host
, REG_DSI_RDBK_DATA_CTRL
, 0);
2133 wmb(); /* release cleared status before transfer */
2136 ret
= dsi_cmds2buf_tx(msm_host
, msg
);
2137 if (ret
< msg
->tx_len
) {
2138 pr_err("%s: Read cmd Tx failed, %d\n", __func__
, ret
);
2143 * once cmd_dma_done interrupt received,
2144 * return data from client is ready and stored
2145 * at RDBK_DATA register already
2146 * since rx fifo is 16 bytes, dcs header is kept at first loop,
2147 * after that dcs header lost during shift into registers
2149 dlen
= dsi_cmd_dma_rx(msm_host
, buf
, rx_byte
, pkt_size
);
2157 if (rlen
<= data_byte
) {
2158 diff
= data_byte
- rlen
;
2166 dlen
-= 2; /* 2 crc */
2168 buf
+= dlen
; /* next start position */
2169 data_byte
= 14; /* NOT first read */
2170 if (rlen
< data_byte
)
2173 pkt_size
+= data_byte
;
2174 DBG("buf=%p dlen=%d diff=%d", buf
, dlen
, diff
);
2179 * For single Long read, if the requested rlen < 10,
2180 * we need to shift the start position of rx
2181 * data buffer to skip the bytes which are not
2184 if (pkt_size
< 10 && !short_response
)
2185 buf
= msm_host
->rx_buf
+ (10 - rlen
);
2187 buf
= msm_host
->rx_buf
;
2191 case MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT
:
2192 pr_err("%s: rx ACK_ERR_PACLAGE\n", __func__
);
2195 case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE
:
2196 case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE
:
2197 ret
= dsi_short_read1_resp(buf
, msg
);
2199 case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE
:
2200 case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE
:
2201 ret
= dsi_short_read2_resp(buf
, msg
);
2203 case MIPI_DSI_RX_GENERIC_LONG_READ_RESPONSE
:
2204 case MIPI_DSI_RX_DCS_LONG_READ_RESPONSE
:
2205 ret
= dsi_long_read_resp(buf
, msg
);
2208 pr_warn("%s:Invalid response cmd\n", __func__
);
2215 void msm_dsi_host_cmd_xfer_commit(struct mipi_dsi_host
*host
, u32 dma_base
,
2218 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2220 dsi_write(msm_host
, REG_DSI_DMA_BASE
, dma_base
);
2221 dsi_write(msm_host
, REG_DSI_DMA_LEN
, len
);
2222 dsi_write(msm_host
, REG_DSI_TRIG_DMA
, 1);
2224 /* Make sure trigger happens */
2228 int msm_dsi_host_set_src_pll(struct mipi_dsi_host
*host
,
2229 struct msm_dsi_pll
*src_pll
)
2231 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2232 struct clk
*byte_clk_provider
, *pixel_clk_provider
;
2235 ret
= msm_dsi_pll_get_clk_provider(src_pll
,
2236 &byte_clk_provider
, &pixel_clk_provider
);
2238 pr_info("%s: can't get provider from pll, don't set parent\n",
2243 ret
= clk_set_parent(msm_host
->byte_clk_src
, byte_clk_provider
);
2245 pr_err("%s: can't set parent to byte_clk_src. ret=%d\n",
2250 ret
= clk_set_parent(msm_host
->pixel_clk_src
, pixel_clk_provider
);
2252 pr_err("%s: can't set parent to pixel_clk_src. ret=%d\n",
2257 if (msm_host
->dsi_clk_src
) {
2258 ret
= clk_set_parent(msm_host
->dsi_clk_src
, pixel_clk_provider
);
2260 pr_err("%s: can't set parent to dsi_clk_src. ret=%d\n",
2266 if (msm_host
->esc_clk_src
) {
2267 ret
= clk_set_parent(msm_host
->esc_clk_src
, byte_clk_provider
);
2269 pr_err("%s: can't set parent to esc_clk_src. ret=%d\n",
2279 void msm_dsi_host_reset_phy(struct mipi_dsi_host
*host
)
2281 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2284 dsi_write(msm_host
, REG_DSI_PHY_RESET
, DSI_PHY_RESET_RESET
);
2285 /* Make sure fully reset */
2288 dsi_write(msm_host
, REG_DSI_PHY_RESET
, 0);
2292 void msm_dsi_host_get_phy_clk_req(struct mipi_dsi_host
*host
,
2293 struct msm_dsi_phy_clk_request
*clk_req
,
2296 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2297 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
2300 ret
= cfg_hnd
->ops
->calc_clk_rate(msm_host
, is_dual_dsi
);
2302 pr_err("%s: unable to calc clk rate, %d\n", __func__
, ret
);
2306 clk_req
->bitclk_rate
= msm_host
->byte_clk_rate
* 8;
2307 clk_req
->escclk_rate
= msm_host
->esc_clk_rate
;
2310 int msm_dsi_host_enable(struct mipi_dsi_host
*host
)
2312 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2314 dsi_op_mode_config(msm_host
,
2315 !!(msm_host
->mode_flags
& MIPI_DSI_MODE_VIDEO
), true);
2317 /* TODO: clock should be turned off for command mode,
2318 * and only turned on before MDP START.
2319 * This part of code should be enabled once mdp driver support it.
2321 /* if (msm_panel->mode == MSM_DSI_CMD_MODE) {
2322 * dsi_link_clk_disable(msm_host);
2323 * pm_runtime_put_autosuspend(&msm_host->pdev->dev);
2326 msm_host
->enabled
= true;
2330 int msm_dsi_host_disable(struct mipi_dsi_host
*host
)
2332 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2334 msm_host
->enabled
= false;
2335 dsi_op_mode_config(msm_host
,
2336 !!(msm_host
->mode_flags
& MIPI_DSI_MODE_VIDEO
), false);
2338 /* Since we have disabled INTF, the video engine won't stop so that
2339 * the cmd engine will be blocked.
2340 * Reset to disable video engine so that we can send off cmd.
2342 dsi_sw_reset(msm_host
);
2347 static void msm_dsi_sfpb_config(struct msm_dsi_host
*msm_host
, bool enable
)
2349 enum sfpb_ahb_arb_master_port_en en
;
2351 if (!msm_host
->sfpb
)
2354 en
= enable
? SFPB_MASTER_PORT_ENABLE
: SFPB_MASTER_PORT_DISABLE
;
2356 regmap_update_bits(msm_host
->sfpb
, REG_SFPB_GPREG
,
2357 SFPB_GPREG_MASTER_PORT_EN__MASK
,
2358 SFPB_GPREG_MASTER_PORT_EN(en
));
2361 int msm_dsi_host_power_on(struct mipi_dsi_host
*host
,
2362 struct msm_dsi_phy_shared_timings
*phy_shared_timings
,
2365 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2366 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
2369 mutex_lock(&msm_host
->dev_mutex
);
2370 if (msm_host
->power_on
) {
2371 DBG("dsi host already on");
2375 msm_dsi_sfpb_config(msm_host
, true);
2377 ret
= dsi_host_regulator_enable(msm_host
);
2379 pr_err("%s:Failed to enable vregs.ret=%d\n",
2384 pm_runtime_get_sync(&msm_host
->pdev
->dev
);
2385 ret
= cfg_hnd
->ops
->link_clk_set_rate(msm_host
);
2387 ret
= cfg_hnd
->ops
->link_clk_enable(msm_host
);
2389 pr_err("%s: failed to enable link clocks. ret=%d\n",
2391 goto fail_disable_reg
;
2394 ret
= pinctrl_pm_select_default_state(&msm_host
->pdev
->dev
);
2396 pr_err("%s: failed to set pinctrl default state, %d\n",
2398 goto fail_disable_clk
;
2401 dsi_timing_setup(msm_host
, is_dual_dsi
);
2402 dsi_sw_reset(msm_host
);
2403 dsi_ctrl_config(msm_host
, true, phy_shared_timings
);
2405 if (msm_host
->disp_en_gpio
)
2406 gpiod_set_value(msm_host
->disp_en_gpio
, 1);
2408 msm_host
->power_on
= true;
2409 mutex_unlock(&msm_host
->dev_mutex
);
2414 cfg_hnd
->ops
->link_clk_disable(msm_host
);
2415 pm_runtime_put_autosuspend(&msm_host
->pdev
->dev
);
2417 dsi_host_regulator_disable(msm_host
);
2419 mutex_unlock(&msm_host
->dev_mutex
);
2423 int msm_dsi_host_power_off(struct mipi_dsi_host
*host
)
2425 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2426 const struct msm_dsi_cfg_handler
*cfg_hnd
= msm_host
->cfg_hnd
;
2428 mutex_lock(&msm_host
->dev_mutex
);
2429 if (!msm_host
->power_on
) {
2430 DBG("dsi host already off");
2434 dsi_ctrl_config(msm_host
, false, NULL
);
2436 if (msm_host
->disp_en_gpio
)
2437 gpiod_set_value(msm_host
->disp_en_gpio
, 0);
2439 pinctrl_pm_select_sleep_state(&msm_host
->pdev
->dev
);
2441 cfg_hnd
->ops
->link_clk_disable(msm_host
);
2442 pm_runtime_put_autosuspend(&msm_host
->pdev
->dev
);
2444 dsi_host_regulator_disable(msm_host
);
2446 msm_dsi_sfpb_config(msm_host
, false);
2450 msm_host
->power_on
= false;
2453 mutex_unlock(&msm_host
->dev_mutex
);
2457 int msm_dsi_host_set_display_mode(struct mipi_dsi_host
*host
,
2458 const struct drm_display_mode
*mode
)
2460 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2462 if (msm_host
->mode
) {
2463 drm_mode_destroy(msm_host
->dev
, msm_host
->mode
);
2464 msm_host
->mode
= NULL
;
2467 msm_host
->mode
= drm_mode_duplicate(msm_host
->dev
, mode
);
2468 if (!msm_host
->mode
) {
2469 pr_err("%s: cannot duplicate mode\n", __func__
);
2476 struct drm_panel
*msm_dsi_host_get_panel(struct mipi_dsi_host
*host
)
2478 return of_drm_find_panel(to_msm_dsi_host(host
)->device_node
);
2481 unsigned long msm_dsi_host_get_mode_flags(struct mipi_dsi_host
*host
)
2483 return to_msm_dsi_host(host
)->mode_flags
;
2486 struct drm_bridge
*msm_dsi_host_get_bridge(struct mipi_dsi_host
*host
)
2488 struct msm_dsi_host
*msm_host
= to_msm_dsi_host(host
);
2490 return of_drm_find_bridge(msm_host
->device_node
);