1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
9 #define DSI_CLOCK_MASTER DSI_0
10 #define DSI_CLOCK_SLAVE DSI_1
12 #define DSI_LEFT DSI_0
13 #define DSI_RIGHT DSI_1
15 /* According to the current drm framework sequence, take the encoder of
16 * DSI_1 as master encoder
18 #define DSI_ENCODER_MASTER DSI_1
19 #define DSI_ENCODER_SLAVE DSI_0
21 struct msm_dsi_manager
{
22 struct msm_dsi
*dsi
[DSI_MAX
];
26 int master_dsi_link_id
;
29 static struct msm_dsi_manager msm_dsim_glb
;
31 #define IS_DUAL_DSI() (msm_dsim_glb.is_dual_dsi)
32 #define IS_SYNC_NEEDED() (msm_dsim_glb.is_sync_needed)
33 #define IS_MASTER_DSI_LINK(id) (msm_dsim_glb.master_dsi_link_id == id)
35 static inline struct msm_dsi
*dsi_mgr_get_dsi(int id
)
37 return msm_dsim_glb
.dsi
[id
];
40 static inline struct msm_dsi
*dsi_mgr_get_other_dsi(int id
)
42 return msm_dsim_glb
.dsi
[(id
+ 1) % DSI_MAX
];
45 static int dsi_mgr_parse_dual_dsi(struct device_node
*np
, int id
)
47 struct msm_dsi_manager
*msm_dsim
= &msm_dsim_glb
;
49 /* We assume 2 dsi nodes have the same information of dual-dsi and
50 * sync-mode, and only one node specifies master in case of dual mode.
52 if (!msm_dsim
->is_dual_dsi
)
53 msm_dsim
->is_dual_dsi
= of_property_read_bool(
54 np
, "qcom,dual-dsi-mode");
56 if (msm_dsim
->is_dual_dsi
) {
57 if (of_property_read_bool(np
, "qcom,master-dsi"))
58 msm_dsim
->master_dsi_link_id
= id
;
59 if (!msm_dsim
->is_sync_needed
)
60 msm_dsim
->is_sync_needed
= of_property_read_bool(
61 np
, "qcom,sync-dual-dsi");
67 static int dsi_mgr_setup_components(int id
)
69 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
70 struct msm_dsi
*other_dsi
= dsi_mgr_get_other_dsi(id
);
71 struct msm_dsi
*clk_master_dsi
= dsi_mgr_get_dsi(DSI_CLOCK_MASTER
);
72 struct msm_dsi
*clk_slave_dsi
= dsi_mgr_get_dsi(DSI_CLOCK_SLAVE
);
73 struct msm_dsi_pll
*src_pll
;
77 ret
= msm_dsi_host_register(msm_dsi
->host
, true);
81 msm_dsi_phy_set_usecase(msm_dsi
->phy
, MSM_DSI_PHY_STANDALONE
);
82 src_pll
= msm_dsi_phy_get_pll(msm_dsi
->phy
);
84 return PTR_ERR(src_pll
);
85 ret
= msm_dsi_host_set_src_pll(msm_dsi
->host
, src_pll
);
86 } else if (!other_dsi
) {
89 struct msm_dsi
*master_link_dsi
= IS_MASTER_DSI_LINK(id
) ?
91 struct msm_dsi
*slave_link_dsi
= IS_MASTER_DSI_LINK(id
) ?
93 /* Register slave host first, so that slave DSI device
94 * has a chance to probe, and do not block the master
96 * Also, do not check defer for the slave host,
97 * because only master DSI device adds the panel to global
98 * panel list. The panel's device is the master DSI device.
100 ret
= msm_dsi_host_register(slave_link_dsi
->host
, false);
103 ret
= msm_dsi_host_register(master_link_dsi
->host
, true);
107 /* PLL0 is to drive both 2 DSI link clocks in Dual DSI mode. */
108 msm_dsi_phy_set_usecase(clk_master_dsi
->phy
,
110 msm_dsi_phy_set_usecase(clk_slave_dsi
->phy
,
112 src_pll
= msm_dsi_phy_get_pll(clk_master_dsi
->phy
);
114 return PTR_ERR(src_pll
);
115 ret
= msm_dsi_host_set_src_pll(msm_dsi
->host
, src_pll
);
118 ret
= msm_dsi_host_set_src_pll(other_dsi
->host
, src_pll
);
124 static int enable_phy(struct msm_dsi
*msm_dsi
, int src_pll_id
,
125 struct msm_dsi_phy_shared_timings
*shared_timings
)
127 struct msm_dsi_phy_clk_request clk_req
;
129 bool is_dual_dsi
= IS_DUAL_DSI();
131 msm_dsi_host_get_phy_clk_req(msm_dsi
->host
, &clk_req
, is_dual_dsi
);
133 ret
= msm_dsi_phy_enable(msm_dsi
->phy
, src_pll_id
, &clk_req
);
134 msm_dsi_phy_get_shared_timings(msm_dsi
->phy
, shared_timings
);
140 dsi_mgr_phy_enable(int id
,
141 struct msm_dsi_phy_shared_timings shared_timings
[DSI_MAX
])
143 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
144 struct msm_dsi
*mdsi
= dsi_mgr_get_dsi(DSI_CLOCK_MASTER
);
145 struct msm_dsi
*sdsi
= dsi_mgr_get_dsi(DSI_CLOCK_SLAVE
);
146 int src_pll_id
= IS_DUAL_DSI() ? DSI_CLOCK_MASTER
: id
;
149 /* In case of dual DSI, some registers in PHY1 have been programmed
150 * during PLL0 clock's set_rate. The PHY1 reset called by host1 here
151 * will silently reset those PHY1 registers. Therefore we need to reset
152 * and enable both PHYs before any PLL clock operation.
154 if (IS_DUAL_DSI() && mdsi
&& sdsi
) {
155 if (!mdsi
->phy_enabled
&& !sdsi
->phy_enabled
) {
156 msm_dsi_host_reset_phy(mdsi
->host
);
157 msm_dsi_host_reset_phy(sdsi
->host
);
159 ret
= enable_phy(mdsi
, src_pll_id
,
160 &shared_timings
[DSI_CLOCK_MASTER
]);
163 ret
= enable_phy(sdsi
, src_pll_id
,
164 &shared_timings
[DSI_CLOCK_SLAVE
]);
166 msm_dsi_phy_disable(mdsi
->phy
);
171 msm_dsi_host_reset_phy(msm_dsi
->host
);
172 ret
= enable_phy(msm_dsi
, src_pll_id
, &shared_timings
[id
]);
177 msm_dsi
->phy_enabled
= true;
182 static void dsi_mgr_phy_disable(int id
)
184 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
185 struct msm_dsi
*mdsi
= dsi_mgr_get_dsi(DSI_CLOCK_MASTER
);
186 struct msm_dsi
*sdsi
= dsi_mgr_get_dsi(DSI_CLOCK_SLAVE
);
189 * In dual-dsi configuration, the phy should be disabled for the
190 * first controller only when the second controller is disabled.
192 msm_dsi
->phy_enabled
= false;
193 if (IS_DUAL_DSI() && mdsi
&& sdsi
) {
194 if (!mdsi
->phy_enabled
&& !sdsi
->phy_enabled
) {
195 msm_dsi_phy_disable(sdsi
->phy
);
196 msm_dsi_phy_disable(mdsi
->phy
);
199 msm_dsi_phy_disable(msm_dsi
->phy
);
203 struct dsi_connector
{
204 struct drm_connector base
;
209 struct drm_bridge base
;
213 #define to_dsi_connector(x) container_of(x, struct dsi_connector, base)
214 #define to_dsi_bridge(x) container_of(x, struct dsi_bridge, base)
216 static inline int dsi_mgr_connector_get_id(struct drm_connector
*connector
)
218 struct dsi_connector
*dsi_connector
= to_dsi_connector(connector
);
219 return dsi_connector
->id
;
222 static int dsi_mgr_bridge_get_id(struct drm_bridge
*bridge
)
224 struct dsi_bridge
*dsi_bridge
= to_dsi_bridge(bridge
);
225 return dsi_bridge
->id
;
228 static bool dsi_mgr_is_cmd_mode(struct msm_dsi
*msm_dsi
)
230 unsigned long host_flags
= msm_dsi_host_get_mode_flags(msm_dsi
->host
);
231 return !(host_flags
& MIPI_DSI_MODE_VIDEO
);
234 void msm_dsi_manager_setup_encoder(int id
)
236 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
237 struct msm_drm_private
*priv
= msm_dsi
->dev
->dev_private
;
238 struct msm_kms
*kms
= priv
->kms
;
239 struct drm_encoder
*encoder
= msm_dsi_get_encoder(msm_dsi
);
241 if (encoder
&& kms
->funcs
->set_encoder_mode
)
242 kms
->funcs
->set_encoder_mode(kms
, encoder
,
243 dsi_mgr_is_cmd_mode(msm_dsi
));
246 static int msm_dsi_manager_panel_init(struct drm_connector
*conn
, u8 id
)
248 struct msm_drm_private
*priv
= conn
->dev
->dev_private
;
249 struct msm_kms
*kms
= priv
->kms
;
250 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
251 struct msm_dsi
*other_dsi
= dsi_mgr_get_other_dsi(id
);
252 struct msm_dsi
*master_dsi
, *slave_dsi
;
253 struct drm_panel
*panel
;
255 if (IS_DUAL_DSI() && !IS_MASTER_DSI_LINK(id
)) {
256 master_dsi
= other_dsi
;
259 master_dsi
= msm_dsi
;
260 slave_dsi
= other_dsi
;
264 * There is only 1 panel in the global panel list for dual DSI mode.
265 * Therefore slave dsi should get the drm_panel instance from master
268 panel
= msm_dsi_host_get_panel(master_dsi
->host
);
270 DRM_ERROR("Could not find panel for %u (%ld)\n", msm_dsi
->id
,
272 return PTR_ERR(panel
);
275 if (!panel
|| !IS_DUAL_DSI())
278 drm_object_attach_property(&conn
->base
,
279 conn
->dev
->mode_config
.tile_property
, 0);
282 * Set split display info to kms once dual DSI panel is connected to
285 if (other_dsi
&& other_dsi
->panel
&& kms
->funcs
->set_split_display
) {
286 kms
->funcs
->set_split_display(kms
, master_dsi
->encoder
,
288 dsi_mgr_is_cmd_mode(msm_dsi
));
292 msm_dsi
->panel
= panel
;
296 static enum drm_connector_status
dsi_mgr_connector_detect(
297 struct drm_connector
*connector
, bool force
)
299 int id
= dsi_mgr_connector_get_id(connector
);
300 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
302 return msm_dsi
->panel
? connector_status_connected
:
303 connector_status_disconnected
;
306 static void dsi_mgr_connector_destroy(struct drm_connector
*connector
)
308 struct dsi_connector
*dsi_connector
= to_dsi_connector(connector
);
312 drm_connector_cleanup(connector
);
314 kfree(dsi_connector
);
317 static int dsi_mgr_connector_get_modes(struct drm_connector
*connector
)
319 int id
= dsi_mgr_connector_get_id(connector
);
320 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
321 struct drm_panel
*panel
= msm_dsi
->panel
;
328 * In dual DSI mode, we have one connector that can be
329 * attached to the drm_panel.
331 drm_panel_attach(panel
, connector
);
332 num
= drm_panel_get_modes(panel
, connector
);
339 static int dsi_mgr_connector_mode_valid(struct drm_connector
*connector
,
340 struct drm_display_mode
*mode
)
342 int id
= dsi_mgr_connector_get_id(connector
);
343 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
344 struct drm_encoder
*encoder
= msm_dsi_get_encoder(msm_dsi
);
345 struct msm_drm_private
*priv
= connector
->dev
->dev_private
;
346 struct msm_kms
*kms
= priv
->kms
;
347 long actual
, requested
;
350 requested
= 1000 * mode
->clock
;
351 actual
= kms
->funcs
->round_pixclk(kms
, requested
, encoder
);
353 DBG("requested=%ld, actual=%ld", requested
, actual
);
354 if (actual
!= requested
)
355 return MODE_CLOCK_RANGE
;
360 static struct drm_encoder
*
361 dsi_mgr_connector_best_encoder(struct drm_connector
*connector
)
363 int id
= dsi_mgr_connector_get_id(connector
);
364 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
367 return msm_dsi_get_encoder(msm_dsi
);
370 static void dsi_mgr_bridge_pre_enable(struct drm_bridge
*bridge
)
372 int id
= dsi_mgr_bridge_get_id(bridge
);
373 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
374 struct msm_dsi
*msm_dsi1
= dsi_mgr_get_dsi(DSI_1
);
375 struct mipi_dsi_host
*host
= msm_dsi
->host
;
376 struct drm_panel
*panel
= msm_dsi
->panel
;
377 struct msm_dsi_phy_shared_timings phy_shared_timings
[DSI_MAX
];
378 bool is_dual_dsi
= IS_DUAL_DSI();
382 if (!msm_dsi_device_connected(msm_dsi
))
385 ret
= dsi_mgr_phy_enable(id
, phy_shared_timings
);
389 /* Do nothing with the host if it is slave-DSI in case of dual DSI */
390 if (is_dual_dsi
&& !IS_MASTER_DSI_LINK(id
))
393 ret
= msm_dsi_host_power_on(host
, &phy_shared_timings
[id
], is_dual_dsi
);
395 pr_err("%s: power on host %d failed, %d\n", __func__
, id
, ret
);
399 if (is_dual_dsi
&& msm_dsi1
) {
400 ret
= msm_dsi_host_power_on(msm_dsi1
->host
,
401 &phy_shared_timings
[DSI_1
], is_dual_dsi
);
403 pr_err("%s: power on host1 failed, %d\n",
409 /* Always call panel functions once, because even for dual panels,
410 * there is only one drm_panel instance.
413 ret
= drm_panel_prepare(panel
);
415 pr_err("%s: prepare panel %d failed, %d\n", __func__
,
417 goto panel_prep_fail
;
421 ret
= msm_dsi_host_enable(host
);
423 pr_err("%s: enable host %d failed, %d\n", __func__
, id
, ret
);
427 if (is_dual_dsi
&& msm_dsi1
) {
428 ret
= msm_dsi_host_enable(msm_dsi1
->host
);
430 pr_err("%s: enable host1 failed, %d\n", __func__
, ret
);
438 msm_dsi_host_disable(host
);
441 drm_panel_unprepare(panel
);
443 if (is_dual_dsi
&& msm_dsi1
)
444 msm_dsi_host_power_off(msm_dsi1
->host
);
446 msm_dsi_host_power_off(host
);
448 dsi_mgr_phy_disable(id
);
453 static void dsi_mgr_bridge_enable(struct drm_bridge
*bridge
)
455 int id
= dsi_mgr_bridge_get_id(bridge
);
456 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
457 struct drm_panel
*panel
= msm_dsi
->panel
;
458 bool is_dual_dsi
= IS_DUAL_DSI();
462 if (!msm_dsi_device_connected(msm_dsi
))
465 /* Do nothing with the host if it is slave-DSI in case of dual DSI */
466 if (is_dual_dsi
&& !IS_MASTER_DSI_LINK(id
))
470 ret
= drm_panel_enable(panel
);
472 pr_err("%s: enable panel %d failed, %d\n", __func__
, id
,
478 static void dsi_mgr_bridge_disable(struct drm_bridge
*bridge
)
480 int id
= dsi_mgr_bridge_get_id(bridge
);
481 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
482 struct drm_panel
*panel
= msm_dsi
->panel
;
483 bool is_dual_dsi
= IS_DUAL_DSI();
487 if (!msm_dsi_device_connected(msm_dsi
))
490 /* Do nothing with the host if it is slave-DSI in case of dual DSI */
491 if (is_dual_dsi
&& !IS_MASTER_DSI_LINK(id
))
495 ret
= drm_panel_disable(panel
);
497 pr_err("%s: Panel %d OFF failed, %d\n", __func__
, id
,
502 static void dsi_mgr_bridge_post_disable(struct drm_bridge
*bridge
)
504 int id
= dsi_mgr_bridge_get_id(bridge
);
505 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
506 struct msm_dsi
*msm_dsi1
= dsi_mgr_get_dsi(DSI_1
);
507 struct mipi_dsi_host
*host
= msm_dsi
->host
;
508 struct drm_panel
*panel
= msm_dsi
->panel
;
509 bool is_dual_dsi
= IS_DUAL_DSI();
514 if (!msm_dsi_device_connected(msm_dsi
))
518 * Do nothing with the host if it is slave-DSI in case of dual DSI.
519 * It is safe to call dsi_mgr_phy_disable() here because a single PHY
520 * won't be diabled until both PHYs request disable.
522 if (is_dual_dsi
&& !IS_MASTER_DSI_LINK(id
))
525 ret
= msm_dsi_host_disable(host
);
527 pr_err("%s: host %d disable failed, %d\n", __func__
, id
, ret
);
529 if (is_dual_dsi
&& msm_dsi1
) {
530 ret
= msm_dsi_host_disable(msm_dsi1
->host
);
532 pr_err("%s: host1 disable failed, %d\n", __func__
, ret
);
536 ret
= drm_panel_unprepare(panel
);
538 pr_err("%s: Panel %d unprepare failed,%d\n", __func__
,
542 ret
= msm_dsi_host_power_off(host
);
544 pr_err("%s: host %d power off failed,%d\n", __func__
, id
, ret
);
546 if (is_dual_dsi
&& msm_dsi1
) {
547 ret
= msm_dsi_host_power_off(msm_dsi1
->host
);
549 pr_err("%s: host1 power off failed, %d\n",
554 dsi_mgr_phy_disable(id
);
557 static void dsi_mgr_bridge_mode_set(struct drm_bridge
*bridge
,
558 const struct drm_display_mode
*mode
,
559 const struct drm_display_mode
*adjusted_mode
)
561 int id
= dsi_mgr_bridge_get_id(bridge
);
562 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
563 struct msm_dsi
*other_dsi
= dsi_mgr_get_other_dsi(id
);
564 struct mipi_dsi_host
*host
= msm_dsi
->host
;
565 bool is_dual_dsi
= IS_DUAL_DSI();
567 DBG("set mode: " DRM_MODE_FMT
, DRM_MODE_ARG(mode
));
569 if (is_dual_dsi
&& !IS_MASTER_DSI_LINK(id
))
572 msm_dsi_host_set_display_mode(host
, adjusted_mode
);
573 if (is_dual_dsi
&& other_dsi
)
574 msm_dsi_host_set_display_mode(other_dsi
->host
, adjusted_mode
);
577 static const struct drm_connector_funcs dsi_mgr_connector_funcs
= {
578 .detect
= dsi_mgr_connector_detect
,
579 .fill_modes
= drm_helper_probe_single_connector_modes
,
580 .destroy
= dsi_mgr_connector_destroy
,
581 .reset
= drm_atomic_helper_connector_reset
,
582 .atomic_duplicate_state
= drm_atomic_helper_connector_duplicate_state
,
583 .atomic_destroy_state
= drm_atomic_helper_connector_destroy_state
,
586 static const struct drm_connector_helper_funcs dsi_mgr_conn_helper_funcs
= {
587 .get_modes
= dsi_mgr_connector_get_modes
,
588 .mode_valid
= dsi_mgr_connector_mode_valid
,
589 .best_encoder
= dsi_mgr_connector_best_encoder
,
592 static const struct drm_bridge_funcs dsi_mgr_bridge_funcs
= {
593 .pre_enable
= dsi_mgr_bridge_pre_enable
,
594 .enable
= dsi_mgr_bridge_enable
,
595 .disable
= dsi_mgr_bridge_disable
,
596 .post_disable
= dsi_mgr_bridge_post_disable
,
597 .mode_set
= dsi_mgr_bridge_mode_set
,
600 /* initialize connector when we're connected to a drm_panel */
601 struct drm_connector
*msm_dsi_manager_connector_init(u8 id
)
603 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
604 struct drm_connector
*connector
= NULL
;
605 struct dsi_connector
*dsi_connector
;
608 dsi_connector
= kzalloc(sizeof(*dsi_connector
), GFP_KERNEL
);
610 return ERR_PTR(-ENOMEM
);
612 dsi_connector
->id
= id
;
614 connector
= &dsi_connector
->base
;
616 ret
= drm_connector_init(msm_dsi
->dev
, connector
,
617 &dsi_mgr_connector_funcs
, DRM_MODE_CONNECTOR_DSI
);
621 drm_connector_helper_add(connector
, &dsi_mgr_conn_helper_funcs
);
623 /* Enable HPD to let hpd event is handled
624 * when panel is attached to the host.
626 connector
->polled
= DRM_CONNECTOR_POLL_HPD
;
628 /* Display driver doesn't support interlace now. */
629 connector
->interlace_allowed
= 0;
630 connector
->doublescan_allowed
= 0;
632 drm_connector_attach_encoder(connector
, msm_dsi
->encoder
);
634 ret
= msm_dsi_manager_panel_init(connector
, id
);
636 DRM_DEV_ERROR(msm_dsi
->dev
->dev
, "init panel failed %d\n", ret
);
643 connector
->funcs
->destroy(msm_dsi
->connector
);
647 bool msm_dsi_manager_validate_current_config(u8 id
)
649 bool is_dual_dsi
= IS_DUAL_DSI();
652 * For dual DSI, we only have one drm panel. For this
653 * use case, we register only one bridge/connector.
654 * Skip bridge/connector initialisation if it is
655 * slave-DSI for dual DSI configuration.
657 if (is_dual_dsi
&& !IS_MASTER_DSI_LINK(id
)) {
658 DBG("Skip bridge registration for slave DSI->id: %d\n", id
);
664 /* initialize bridge */
665 struct drm_bridge
*msm_dsi_manager_bridge_init(u8 id
)
667 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
668 struct drm_bridge
*bridge
= NULL
;
669 struct dsi_bridge
*dsi_bridge
;
670 struct drm_encoder
*encoder
;
673 dsi_bridge
= devm_kzalloc(msm_dsi
->dev
->dev
,
674 sizeof(*dsi_bridge
), GFP_KERNEL
);
682 encoder
= msm_dsi
->encoder
;
684 bridge
= &dsi_bridge
->base
;
685 bridge
->funcs
= &dsi_mgr_bridge_funcs
;
687 ret
= drm_bridge_attach(encoder
, bridge
, NULL
);
695 msm_dsi_manager_bridge_destroy(bridge
);
700 struct drm_connector
*msm_dsi_manager_ext_bridge_init(u8 id
)
702 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
703 struct drm_device
*dev
= msm_dsi
->dev
;
704 struct drm_encoder
*encoder
;
705 struct drm_bridge
*int_bridge
, *ext_bridge
;
706 struct drm_connector
*connector
;
707 struct list_head
*connector_list
;
709 int_bridge
= msm_dsi
->bridge
;
710 ext_bridge
= msm_dsi
->external_bridge
=
711 msm_dsi_host_get_bridge(msm_dsi
->host
);
713 encoder
= msm_dsi
->encoder
;
715 /* link the internal dsi bridge to the external bridge */
716 drm_bridge_attach(encoder
, ext_bridge
, int_bridge
);
719 * we need the drm_connector created by the external bridge
720 * driver (or someone else) to feed it to our driver's
721 * priv->connector[] list, mainly for msm_fbdev_init()
723 connector_list
= &dev
->mode_config
.connector_list
;
725 list_for_each_entry(connector
, connector_list
, head
) {
726 if (drm_connector_has_possible_encoder(connector
, encoder
))
730 return ERR_PTR(-ENODEV
);
733 void msm_dsi_manager_bridge_destroy(struct drm_bridge
*bridge
)
737 int msm_dsi_manager_cmd_xfer(int id
, const struct mipi_dsi_msg
*msg
)
739 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
740 struct msm_dsi
*msm_dsi0
= dsi_mgr_get_dsi(DSI_0
);
741 struct mipi_dsi_host
*host
= msm_dsi
->host
;
742 bool is_read
= (msg
->rx_buf
&& msg
->rx_len
);
743 bool need_sync
= (IS_SYNC_NEEDED() && !is_read
);
746 if (!msg
->tx_buf
|| !msg
->tx_len
)
749 /* In dual master case, panel requires the same commands sent to
750 * both DSI links. Host issues the command trigger to both links
751 * when DSI_1 calls the cmd transfer function, no matter it happens
752 * before or after DSI_0 cmd transfer.
754 if (need_sync
&& (id
== DSI_0
))
755 return is_read
? msg
->rx_len
: msg
->tx_len
;
757 if (need_sync
&& msm_dsi0
) {
758 ret
= msm_dsi_host_xfer_prepare(msm_dsi0
->host
, msg
);
760 pr_err("%s: failed to prepare non-trigger host, %d\n",
765 ret
= msm_dsi_host_xfer_prepare(host
, msg
);
767 pr_err("%s: failed to prepare host, %d\n", __func__
, ret
);
771 ret
= is_read
? msm_dsi_host_cmd_rx(host
, msg
) :
772 msm_dsi_host_cmd_tx(host
, msg
);
774 msm_dsi_host_xfer_restore(host
, msg
);
777 if (need_sync
&& msm_dsi0
)
778 msm_dsi_host_xfer_restore(msm_dsi0
->host
, msg
);
783 bool msm_dsi_manager_cmd_xfer_trigger(int id
, u32 dma_base
, u32 len
)
785 struct msm_dsi
*msm_dsi
= dsi_mgr_get_dsi(id
);
786 struct msm_dsi
*msm_dsi0
= dsi_mgr_get_dsi(DSI_0
);
787 struct mipi_dsi_host
*host
= msm_dsi
->host
;
789 if (IS_SYNC_NEEDED() && (id
== DSI_0
))
792 if (IS_SYNC_NEEDED() && msm_dsi0
)
793 msm_dsi_host_cmd_xfer_commit(msm_dsi0
->host
, dma_base
, len
);
795 msm_dsi_host_cmd_xfer_commit(host
, dma_base
, len
);
800 int msm_dsi_manager_register(struct msm_dsi
*msm_dsi
)
802 struct msm_dsi_manager
*msm_dsim
= &msm_dsim_glb
;
803 int id
= msm_dsi
->id
;
807 pr_err("%s: invalid id %d\n", __func__
, id
);
811 if (msm_dsim
->dsi
[id
]) {
812 pr_err("%s: dsi%d already registered\n", __func__
, id
);
816 msm_dsim
->dsi
[id
] = msm_dsi
;
818 ret
= dsi_mgr_parse_dual_dsi(msm_dsi
->pdev
->dev
.of_node
, id
);
820 pr_err("%s: failed to parse dual DSI info\n", __func__
);
824 ret
= dsi_mgr_setup_components(id
);
826 pr_err("%s: failed to register mipi dsi host for DSI %d\n",
834 msm_dsim
->dsi
[id
] = NULL
;
838 void msm_dsi_manager_unregister(struct msm_dsi
*msm_dsi
)
840 struct msm_dsi_manager
*msm_dsim
= &msm_dsim_glb
;
843 msm_dsi_host_unregister(msm_dsi
->host
);
845 if (msm_dsi
->id
>= 0)
846 msm_dsim
->dsi
[msm_dsi
->id
] = NULL
;