1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
6 #include "drm/drm_bridge_connector.h"
11 #define DSI_CLOCK_MASTER DSI_0
12 #define DSI_CLOCK_SLAVE DSI_1
14 #define DSI_LEFT DSI_0
15 #define DSI_RIGHT DSI_1
17 /* According to the current drm framework sequence, take the encoder of
18 * DSI_1 as master encoder
20 #define DSI_ENCODER_MASTER DSI_1
21 #define DSI_ENCODER_SLAVE DSI_0
23 struct msm_dsi_manager {
24 struct msm_dsi *dsi[DSI_MAX];
28 int master_dsi_link_id;
31 static struct msm_dsi_manager msm_dsim_glb;
33 #define IS_BONDED_DSI() (msm_dsim_glb.is_bonded_dsi)
34 #define IS_SYNC_NEEDED() (msm_dsim_glb.is_sync_needed)
35 #define IS_MASTER_DSI_LINK(id) (msm_dsim_glb.master_dsi_link_id == id)
38 static bool dsi_mgr_power_on_early(struct drm_bridge *bridge)
40 struct drm_bridge *next_bridge = drm_bridge_get_next_bridge(bridge);
43 * If the next bridge in the chain is the Parade ps8640 bridge chip
44 * then don't power on early since it seems to violate the expectations
45 * of the firmware that the bridge chip is running.
47 * NOTE: this is expected to be a temporary special case. It's expected
48 * that we'll eventually have a framework that allows the next level
49 * bridge to indicate whether it needs us to power on before it or
50 * after it. When that framework is in place then we'll use it and
51 * remove this special case.
53 return !(next_bridge && next_bridge->of_node &&
54 of_device_is_compatible(next_bridge->of_node, "parade,ps8640"));
57 static inline bool dsi_mgr_power_on_early(struct drm_bridge *bridge)
63 static inline struct msm_dsi *dsi_mgr_get_dsi(int id)
65 return msm_dsim_glb.dsi[id];
68 static inline struct msm_dsi *dsi_mgr_get_other_dsi(int id)
70 return msm_dsim_glb.dsi[(id + 1) % DSI_MAX];
73 static int dsi_mgr_parse_of(struct device_node *np, int id)
75 struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
77 /* We assume 2 dsi nodes have the same information of bonded dsi and
78 * sync-mode, and only one node specifies master in case of bonded mode.
80 if (!msm_dsim->is_bonded_dsi)
81 msm_dsim->is_bonded_dsi = of_property_read_bool(np, "qcom,dual-dsi-mode");
83 if (msm_dsim->is_bonded_dsi) {
84 if (of_property_read_bool(np, "qcom,master-dsi"))
85 msm_dsim->master_dsi_link_id = id;
86 if (!msm_dsim->is_sync_needed)
87 msm_dsim->is_sync_needed = of_property_read_bool(
88 np, "qcom,sync-dual-dsi");
94 static int dsi_mgr_setup_components(int id)
96 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
97 struct msm_dsi *other_dsi = dsi_mgr_get_other_dsi(id);
98 struct msm_dsi *clk_master_dsi = dsi_mgr_get_dsi(DSI_CLOCK_MASTER);
99 struct msm_dsi *clk_slave_dsi = dsi_mgr_get_dsi(DSI_CLOCK_SLAVE);
102 if (!IS_BONDED_DSI()) {
103 ret = msm_dsi_host_register(msm_dsi->host);
107 msm_dsi_phy_set_usecase(msm_dsi->phy, MSM_DSI_PHY_STANDALONE);
108 msm_dsi_host_set_phy_mode(msm_dsi->host, msm_dsi->phy);
109 } else if (other_dsi) {
110 struct msm_dsi *master_link_dsi = IS_MASTER_DSI_LINK(id) ?
112 struct msm_dsi *slave_link_dsi = IS_MASTER_DSI_LINK(id) ?
114 /* Register slave host first, so that slave DSI device
115 * has a chance to probe, and do not block the master
116 * DSI device's probe.
117 * Also, do not check defer for the slave host,
118 * because only master DSI device adds the panel to global
119 * panel list. The panel's device is the master DSI device.
121 ret = msm_dsi_host_register(slave_link_dsi->host);
124 ret = msm_dsi_host_register(master_link_dsi->host);
128 /* PLL0 is to drive both 2 DSI link clocks in bonded DSI mode. */
129 msm_dsi_phy_set_usecase(clk_master_dsi->phy,
131 msm_dsi_phy_set_usecase(clk_slave_dsi->phy,
133 msm_dsi_host_set_phy_mode(msm_dsi->host, msm_dsi->phy);
134 msm_dsi_host_set_phy_mode(other_dsi->host, other_dsi->phy);
140 static int enable_phy(struct msm_dsi *msm_dsi,
141 struct msm_dsi_phy_shared_timings *shared_timings)
143 struct msm_dsi_phy_clk_request clk_req;
144 bool is_bonded_dsi = IS_BONDED_DSI();
146 msm_dsi_host_get_phy_clk_req(msm_dsi->host, &clk_req, is_bonded_dsi);
148 return msm_dsi_phy_enable(msm_dsi->phy, &clk_req, shared_timings);
152 dsi_mgr_phy_enable(int id,
153 struct msm_dsi_phy_shared_timings shared_timings[DSI_MAX])
155 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
156 struct msm_dsi *mdsi = dsi_mgr_get_dsi(DSI_CLOCK_MASTER);
157 struct msm_dsi *sdsi = dsi_mgr_get_dsi(DSI_CLOCK_SLAVE);
160 /* In case of bonded DSI, some registers in PHY1 have been programmed
161 * during PLL0 clock's set_rate. The PHY1 reset called by host1 here
162 * will silently reset those PHY1 registers. Therefore we need to reset
163 * and enable both PHYs before any PLL clock operation.
165 if (IS_BONDED_DSI() && mdsi && sdsi) {
166 if (!mdsi->phy_enabled && !sdsi->phy_enabled) {
167 msm_dsi_host_reset_phy(mdsi->host);
168 msm_dsi_host_reset_phy(sdsi->host);
170 ret = enable_phy(mdsi,
171 &shared_timings[DSI_CLOCK_MASTER]);
174 ret = enable_phy(sdsi,
175 &shared_timings[DSI_CLOCK_SLAVE]);
177 msm_dsi_phy_disable(mdsi->phy);
182 msm_dsi_host_reset_phy(msm_dsi->host);
183 ret = enable_phy(msm_dsi, &shared_timings[id]);
188 msm_dsi->phy_enabled = true;
193 static void dsi_mgr_phy_disable(int id)
195 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
196 struct msm_dsi *mdsi = dsi_mgr_get_dsi(DSI_CLOCK_MASTER);
197 struct msm_dsi *sdsi = dsi_mgr_get_dsi(DSI_CLOCK_SLAVE);
200 * In bonded dsi configuration, the phy should be disabled for the
201 * first controller only when the second controller is disabled.
203 msm_dsi->phy_enabled = false;
204 if (IS_BONDED_DSI() && mdsi && sdsi) {
205 if (!mdsi->phy_enabled && !sdsi->phy_enabled) {
206 msm_dsi_phy_disable(sdsi->phy);
207 msm_dsi_phy_disable(mdsi->phy);
210 msm_dsi_phy_disable(msm_dsi->phy);
215 struct drm_bridge base;
219 #define to_dsi_bridge(x) container_of(x, struct dsi_bridge, base)
221 static int dsi_mgr_bridge_get_id(struct drm_bridge *bridge)
223 struct dsi_bridge *dsi_bridge = to_dsi_bridge(bridge);
224 return dsi_bridge->id;
227 static void msm_dsi_manager_set_split_display(u8 id)
229 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
230 struct msm_dsi *other_dsi = dsi_mgr_get_other_dsi(id);
231 struct msm_drm_private *priv = msm_dsi->dev->dev_private;
232 struct msm_kms *kms = priv->kms;
233 struct msm_dsi *master_dsi, *slave_dsi;
235 if (IS_BONDED_DSI() && !IS_MASTER_DSI_LINK(id)) {
236 master_dsi = other_dsi;
239 master_dsi = msm_dsi;
240 slave_dsi = other_dsi;
243 if (!msm_dsi->external_bridge || !IS_BONDED_DSI())
247 * Set split display info to kms once bonded DSI panel is connected to
250 if (other_dsi && other_dsi->external_bridge && kms->funcs->set_split_display) {
251 kms->funcs->set_split_display(kms, master_dsi->encoder,
253 msm_dsi_is_cmd_mode(msm_dsi));
257 static void dsi_mgr_bridge_power_on(struct drm_bridge *bridge)
259 int id = dsi_mgr_bridge_get_id(bridge);
260 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
261 struct msm_dsi *msm_dsi1 = dsi_mgr_get_dsi(DSI_1);
262 struct mipi_dsi_host *host = msm_dsi->host;
263 struct msm_dsi_phy_shared_timings phy_shared_timings[DSI_MAX];
264 bool is_bonded_dsi = IS_BONDED_DSI();
268 if (!msm_dsi_device_connected(msm_dsi))
271 /* Do nothing with the host if it is slave-DSI in case of bonded DSI */
272 if (is_bonded_dsi && !IS_MASTER_DSI_LINK(id))
275 ret = dsi_mgr_phy_enable(id, phy_shared_timings);
279 ret = msm_dsi_host_power_on(host, &phy_shared_timings[id], is_bonded_dsi, msm_dsi->phy);
281 pr_err("%s: power on host %d failed, %d\n", __func__, id, ret);
285 if (is_bonded_dsi && msm_dsi1) {
286 ret = msm_dsi_host_power_on(msm_dsi1->host,
287 &phy_shared_timings[DSI_1], is_bonded_dsi, msm_dsi1->phy);
289 pr_err("%s: power on host1 failed, %d\n",
296 * Enable before preparing the panel, disable after unpreparing, so
297 * that the panel can communicate over the DSI link.
299 msm_dsi_host_enable_irq(host);
300 if (is_bonded_dsi && msm_dsi1)
301 msm_dsi_host_enable_irq(msm_dsi1->host);
306 msm_dsi_host_power_off(host);
308 dsi_mgr_phy_disable(id);
313 static void dsi_mgr_bridge_pre_enable(struct drm_bridge *bridge)
315 int id = dsi_mgr_bridge_get_id(bridge);
316 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
317 struct msm_dsi *msm_dsi1 = dsi_mgr_get_dsi(DSI_1);
318 struct mipi_dsi_host *host = msm_dsi->host;
319 bool is_bonded_dsi = IS_BONDED_DSI();
323 if (!msm_dsi_device_connected(msm_dsi))
326 /* Do nothing with the host if it is slave-DSI in case of bonded DSI */
327 if (is_bonded_dsi && !IS_MASTER_DSI_LINK(id))
330 if (!dsi_mgr_power_on_early(bridge))
331 dsi_mgr_bridge_power_on(bridge);
333 ret = msm_dsi_host_enable(host);
335 pr_err("%s: enable host %d failed, %d\n", __func__, id, ret);
339 if (is_bonded_dsi && msm_dsi1) {
340 ret = msm_dsi_host_enable(msm_dsi1->host);
342 pr_err("%s: enable host1 failed, %d\n", __func__, ret);
350 msm_dsi_host_disable(host);
356 void msm_dsi_manager_tpg_enable(void)
358 struct msm_dsi *m_dsi = dsi_mgr_get_dsi(DSI_0);
359 struct msm_dsi *s_dsi = dsi_mgr_get_dsi(DSI_1);
361 /* if dual dsi, trigger tpg on master first then slave */
363 msm_dsi_host_test_pattern_en(m_dsi->host);
364 if (IS_BONDED_DSI() && s_dsi)
365 msm_dsi_host_test_pattern_en(s_dsi->host);
369 static void dsi_mgr_bridge_post_disable(struct drm_bridge *bridge)
371 int id = dsi_mgr_bridge_get_id(bridge);
372 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
373 struct msm_dsi *msm_dsi1 = dsi_mgr_get_dsi(DSI_1);
374 struct mipi_dsi_host *host = msm_dsi->host;
375 bool is_bonded_dsi = IS_BONDED_DSI();
380 if (!msm_dsi_device_connected(msm_dsi))
384 * Do nothing with the host if it is slave-DSI in case of bonded DSI.
385 * It is safe to call dsi_mgr_phy_disable() here because a single PHY
386 * won't be diabled until both PHYs request disable.
388 if (is_bonded_dsi && !IS_MASTER_DSI_LINK(id))
391 ret = msm_dsi_host_disable(host);
393 pr_err("%s: host %d disable failed, %d\n", __func__, id, ret);
395 if (is_bonded_dsi && msm_dsi1) {
396 ret = msm_dsi_host_disable(msm_dsi1->host);
398 pr_err("%s: host1 disable failed, %d\n", __func__, ret);
401 msm_dsi_host_disable_irq(host);
402 if (is_bonded_dsi && msm_dsi1)
403 msm_dsi_host_disable_irq(msm_dsi1->host);
405 /* Save PHY status if it is a clock source */
406 msm_dsi_phy_pll_save_state(msm_dsi->phy);
408 ret = msm_dsi_host_power_off(host);
410 pr_err("%s: host %d power off failed,%d\n", __func__, id, ret);
412 if (is_bonded_dsi && msm_dsi1) {
413 ret = msm_dsi_host_power_off(msm_dsi1->host);
415 pr_err("%s: host1 power off failed, %d\n",
420 dsi_mgr_phy_disable(id);
423 static void dsi_mgr_bridge_mode_set(struct drm_bridge *bridge,
424 const struct drm_display_mode *mode,
425 const struct drm_display_mode *adjusted_mode)
427 int id = dsi_mgr_bridge_get_id(bridge);
428 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
429 struct msm_dsi *other_dsi = dsi_mgr_get_other_dsi(id);
430 struct mipi_dsi_host *host = msm_dsi->host;
431 bool is_bonded_dsi = IS_BONDED_DSI();
433 DBG("set mode: " DRM_MODE_FMT, DRM_MODE_ARG(mode));
435 if (is_bonded_dsi && !IS_MASTER_DSI_LINK(id))
438 msm_dsi_host_set_display_mode(host, adjusted_mode);
439 if (is_bonded_dsi && other_dsi)
440 msm_dsi_host_set_display_mode(other_dsi->host, adjusted_mode);
442 if (dsi_mgr_power_on_early(bridge))
443 dsi_mgr_bridge_power_on(bridge);
446 static enum drm_mode_status dsi_mgr_bridge_mode_valid(struct drm_bridge *bridge,
447 const struct drm_display_info *info,
448 const struct drm_display_mode *mode)
450 int id = dsi_mgr_bridge_get_id(bridge);
451 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
452 struct mipi_dsi_host *host = msm_dsi->host;
454 return msm_dsi_host_check_dsc(host, mode);
457 static const struct drm_bridge_funcs dsi_mgr_bridge_funcs = {
458 .pre_enable = dsi_mgr_bridge_pre_enable,
459 .post_disable = dsi_mgr_bridge_post_disable,
460 .mode_set = dsi_mgr_bridge_mode_set,
461 .mode_valid = dsi_mgr_bridge_mode_valid,
464 /* initialize bridge */
465 struct drm_bridge *msm_dsi_manager_bridge_init(u8 id)
467 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
468 struct drm_bridge *bridge = NULL;
469 struct dsi_bridge *dsi_bridge;
470 struct drm_encoder *encoder;
473 dsi_bridge = devm_kzalloc(msm_dsi->dev->dev,
474 sizeof(*dsi_bridge), GFP_KERNEL);
482 encoder = msm_dsi->encoder;
484 bridge = &dsi_bridge->base;
485 bridge->funcs = &dsi_mgr_bridge_funcs;
487 drm_bridge_add(bridge);
489 ret = drm_bridge_attach(encoder, bridge, NULL, 0);
497 msm_dsi_manager_bridge_destroy(bridge);
502 int msm_dsi_manager_ext_bridge_init(u8 id)
504 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
505 struct drm_device *dev = msm_dsi->dev;
506 struct drm_encoder *encoder;
507 struct drm_bridge *int_bridge, *ext_bridge;
510 int_bridge = msm_dsi->bridge;
511 ext_bridge = devm_drm_of_get_bridge(&msm_dsi->pdev->dev,
512 msm_dsi->pdev->dev.of_node, 1, 0);
513 if (IS_ERR(ext_bridge))
514 return PTR_ERR(ext_bridge);
516 msm_dsi->external_bridge = ext_bridge;
518 encoder = msm_dsi->encoder;
521 * Try first to create the bridge without it creating its own
522 * connector.. currently some bridges support this, and others
523 * do not (and some support both modes)
525 ret = drm_bridge_attach(encoder, ext_bridge, int_bridge,
526 DRM_BRIDGE_ATTACH_NO_CONNECTOR);
527 if (ret == -EINVAL) {
529 * link the internal dsi bridge to the external bridge,
530 * connector is created by the next bridge.
532 ret = drm_bridge_attach(encoder, ext_bridge, int_bridge, 0);
536 struct drm_connector *connector;
538 /* We are in charge of the connector, create one now. */
539 connector = drm_bridge_connector_init(dev, encoder);
540 if (IS_ERR(connector)) {
541 DRM_ERROR("Unable to create bridge connector\n");
542 return PTR_ERR(connector);
545 ret = drm_connector_attach_encoder(connector, encoder);
550 /* The pipeline is ready, ping encoders if necessary */
551 msm_dsi_manager_set_split_display(id);
556 void msm_dsi_manager_bridge_destroy(struct drm_bridge *bridge)
558 drm_bridge_remove(bridge);
561 int msm_dsi_manager_cmd_xfer(int id, const struct mipi_dsi_msg *msg)
563 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
564 struct msm_dsi *msm_dsi0 = dsi_mgr_get_dsi(DSI_0);
565 struct mipi_dsi_host *host = msm_dsi->host;
566 bool is_read = (msg->rx_buf && msg->rx_len);
567 bool need_sync = (IS_SYNC_NEEDED() && !is_read);
570 if (!msg->tx_buf || !msg->tx_len)
573 /* In bonded master case, panel requires the same commands sent to
574 * both DSI links. Host issues the command trigger to both links
575 * when DSI_1 calls the cmd transfer function, no matter it happens
576 * before or after DSI_0 cmd transfer.
578 if (need_sync && (id == DSI_0))
579 return is_read ? msg->rx_len : msg->tx_len;
581 if (need_sync && msm_dsi0) {
582 ret = msm_dsi_host_xfer_prepare(msm_dsi0->host, msg);
584 pr_err("%s: failed to prepare non-trigger host, %d\n",
589 ret = msm_dsi_host_xfer_prepare(host, msg);
591 pr_err("%s: failed to prepare host, %d\n", __func__, ret);
595 ret = is_read ? msm_dsi_host_cmd_rx(host, msg) :
596 msm_dsi_host_cmd_tx(host, msg);
598 msm_dsi_host_xfer_restore(host, msg);
601 if (need_sync && msm_dsi0)
602 msm_dsi_host_xfer_restore(msm_dsi0->host, msg);
607 bool msm_dsi_manager_cmd_xfer_trigger(int id, u32 dma_base, u32 len)
609 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
610 struct msm_dsi *msm_dsi0 = dsi_mgr_get_dsi(DSI_0);
611 struct mipi_dsi_host *host = msm_dsi->host;
613 if (IS_SYNC_NEEDED() && (id == DSI_0))
616 if (IS_SYNC_NEEDED() && msm_dsi0)
617 msm_dsi_host_cmd_xfer_commit(msm_dsi0->host, dma_base, len);
619 msm_dsi_host_cmd_xfer_commit(host, dma_base, len);
624 int msm_dsi_manager_register(struct msm_dsi *msm_dsi)
626 struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
627 int id = msm_dsi->id;
631 pr_err("%s: invalid id %d\n", __func__, id);
635 if (msm_dsim->dsi[id]) {
636 pr_err("%s: dsi%d already registered\n", __func__, id);
640 msm_dsim->dsi[id] = msm_dsi;
642 ret = dsi_mgr_parse_of(msm_dsi->pdev->dev.of_node, id);
644 pr_err("%s: failed to parse OF DSI info\n", __func__);
648 ret = dsi_mgr_setup_components(id);
650 pr_err("%s: failed to register mipi dsi host for DSI %d: %d\n",
658 msm_dsim->dsi[id] = NULL;
662 void msm_dsi_manager_unregister(struct msm_dsi *msm_dsi)
664 struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
667 msm_dsi_host_unregister(msm_dsi->host);
669 if (msm_dsi->id >= 0)
670 msm_dsim->dsi[msm_dsi->id] = NULL;
673 bool msm_dsi_is_bonded_dsi(struct msm_dsi *msm_dsi)
675 return IS_BONDED_DSI();
678 bool msm_dsi_is_master_dsi(struct msm_dsi *msm_dsi)
680 return IS_MASTER_DSI_LINK(msm_dsi->id);