Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
  3 *
  4 * This program is free software; you can redistribute it and/or modify
  5 * it under the terms of the GNU General Public License version 2 and
  6 * only version 2 as published by the Free Software Foundation.
  7 *
  8 * This program is distributed in the hope that it will be useful,
  9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 11 * GNU General Public License for more details.
 12 */
 13
 
 
 14#include "msm_kms.h"
 15#include "dsi.h"
 16
 17#define DSI_CLOCK_MASTER	DSI_0
 18#define DSI_CLOCK_SLAVE		DSI_1
 19
 20#define DSI_LEFT		DSI_0
 21#define DSI_RIGHT		DSI_1
 22
 23/* According to the current drm framework sequence, take the encoder of
 24 * DSI_1 as master encoder
 25 */
 26#define DSI_ENCODER_MASTER	DSI_1
 27#define DSI_ENCODER_SLAVE	DSI_0
 28
 29struct msm_dsi_manager {
 30	struct msm_dsi *dsi[DSI_MAX];
 31
 32	bool is_dual_dsi;
 33	bool is_sync_needed;
 34	int master_dsi_link_id;
 35};
 36
 37static struct msm_dsi_manager msm_dsim_glb;
 38
 39#define IS_DUAL_DSI()		(msm_dsim_glb.is_dual_dsi)
 40#define IS_SYNC_NEEDED()	(msm_dsim_glb.is_sync_needed)
 41#define IS_MASTER_DSI_LINK(id)	(msm_dsim_glb.master_dsi_link_id == id)
 42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 43static inline struct msm_dsi *dsi_mgr_get_dsi(int id)
 44{
 45	return msm_dsim_glb.dsi[id];
 46}
 47
 48static inline struct msm_dsi *dsi_mgr_get_other_dsi(int id)
 49{
 50	return msm_dsim_glb.dsi[(id + 1) % DSI_MAX];
 51}
 52
 53static int dsi_mgr_parse_dual_dsi(struct device_node *np, int id)
 54{
 55	struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
 56
 57	/* We assume 2 dsi nodes have the same information of dual-dsi and
 58	 * sync-mode, and only one node specifies master in case of dual mode.
 59	 */
 60	if (!msm_dsim->is_dual_dsi)
 61		msm_dsim->is_dual_dsi = of_property_read_bool(
 62						np, "qcom,dual-dsi-mode");
 63
 64	if (msm_dsim->is_dual_dsi) {
 65		if (of_property_read_bool(np, "qcom,master-dsi"))
 66			msm_dsim->master_dsi_link_id = id;
 67		if (!msm_dsim->is_sync_needed)
 68			msm_dsim->is_sync_needed = of_property_read_bool(
 69					np, "qcom,sync-dual-dsi");
 70	}
 71
 72	return 0;
 73}
 74
 75static int dsi_mgr_host_register(int id)
 76{
 77	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
 78	struct msm_dsi *other_dsi = dsi_mgr_get_other_dsi(id);
 79	struct msm_dsi *clk_master_dsi = dsi_mgr_get_dsi(DSI_CLOCK_MASTER);
 80	struct msm_dsi_pll *src_pll;
 81	int ret;
 82
 83	if (!IS_DUAL_DSI()) {
 84		ret = msm_dsi_host_register(msm_dsi->host, true);
 85		if (ret)
 86			return ret;
 87
 88		src_pll = msm_dsi_phy_get_pll(msm_dsi->phy);
 89		ret = msm_dsi_host_set_src_pll(msm_dsi->host, src_pll);
 90	} else if (!other_dsi) {
 91		ret = 0;
 92	} else {
 93		struct msm_dsi *mdsi = IS_MASTER_DSI_LINK(id) ?
 94					msm_dsi : other_dsi;
 95		struct msm_dsi *sdsi = IS_MASTER_DSI_LINK(id) ?
 96					other_dsi : msm_dsi;
 97		/* Register slave host first, so that slave DSI device
 98		 * has a chance to probe, and do not block the master
 99		 * DSI device's probe.
100		 * Also, do not check defer for the slave host,
101		 * because only master DSI device adds the panel to global
102		 * panel list. The panel's device is the master DSI device.
103		 */
104		ret = msm_dsi_host_register(sdsi->host, false);
105		if (ret)
106			return ret;
107		ret = msm_dsi_host_register(mdsi->host, true);
108		if (ret)
109			return ret;
110
111		/* PLL0 is to drive both 2 DSI link clocks in Dual DSI mode. */
112		src_pll = msm_dsi_phy_get_pll(clk_master_dsi->phy);
113		ret = msm_dsi_host_set_src_pll(msm_dsi->host, src_pll);
114		if (ret)
115			return ret;
116		ret = msm_dsi_host_set_src_pll(other_dsi->host, src_pll);
 
117	}
118
119	return ret;
120}
121
122struct dsi_connector {
123	struct drm_connector base;
124	int id;
125};
126
127struct dsi_bridge {
128	struct drm_bridge base;
129	int id;
130};
131
132#define to_dsi_connector(x) container_of(x, struct dsi_connector, base)
133#define to_dsi_bridge(x) container_of(x, struct dsi_bridge, base)
134
135static inline int dsi_mgr_connector_get_id(struct drm_connector *connector)
136{
137	struct dsi_connector *dsi_connector = to_dsi_connector(connector);
138	return dsi_connector->id;
139}
140
141static int dsi_mgr_bridge_get_id(struct drm_bridge *bridge)
142{
143	struct dsi_bridge *dsi_bridge = to_dsi_bridge(bridge);
144	return dsi_bridge->id;
145}
146
147static enum drm_connector_status dsi_mgr_connector_detect(
148		struct drm_connector *connector, bool force)
 
149{
150	int id = dsi_mgr_connector_get_id(connector);
151	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
152	struct msm_dsi *other_dsi = dsi_mgr_get_other_dsi(id);
153	struct msm_drm_private *priv = connector->dev->dev_private;
154	struct msm_kms *kms = priv->kms;
155
156	DBG("id=%d", id);
157	if (!msm_dsi->panel) {
158		msm_dsi->panel = msm_dsi_host_get_panel(msm_dsi->host,
159						&msm_dsi->device_flags);
160
161		/* There is only 1 panel in the global panel list
162		 * for dual DSI mode. Therefore slave dsi should get
163		 * the drm_panel instance from master dsi, and
164		 * keep using the panel flags got from the current DSI link.
165		 */
166		if (!msm_dsi->panel && IS_DUAL_DSI() &&
167			!IS_MASTER_DSI_LINK(id) && other_dsi)
168			msm_dsi->panel = msm_dsi_host_get_panel(
169					other_dsi->host, NULL);
170
171		if (msm_dsi->panel && IS_DUAL_DSI())
172			drm_object_attach_property(&connector->base,
173				connector->dev->mode_config.tile_property, 0);
174
175		/* Set split display info to kms once dual DSI panel is
176		 * connected to both hosts.
177		 */
178		if (msm_dsi->panel && IS_DUAL_DSI() &&
179			other_dsi && other_dsi->panel) {
180			bool cmd_mode = !(msm_dsi->device_flags &
181						MIPI_DSI_MODE_VIDEO);
182			struct drm_encoder *encoder = msm_dsi_get_encoder(
183					dsi_mgr_get_dsi(DSI_ENCODER_MASTER));
184			struct drm_encoder *slave_enc = msm_dsi_get_encoder(
185					dsi_mgr_get_dsi(DSI_ENCODER_SLAVE));
186
187			if (kms->funcs->set_split_display)
188				kms->funcs->set_split_display(kms, encoder,
189							slave_enc, cmd_mode);
190			else
191				pr_err("mdp does not support dual DSI\n");
192		}
 
 
 
 
 
193	}
194
195	return msm_dsi->panel ? connector_status_connected :
196		connector_status_disconnected;
197}
198
199static void dsi_mgr_connector_destroy(struct drm_connector *connector)
200{
201	DBG("");
202	drm_connector_unregister(connector);
203	drm_connector_cleanup(connector);
204}
205
206static void dsi_dual_connector_fix_modes(struct drm_connector *connector)
207{
208	struct drm_display_mode *mode, *m;
209
210	/* Only support left-right mode */
211	list_for_each_entry_safe(mode, m, &connector->probed_modes, head) {
212		mode->clock >>= 1;
213		mode->hdisplay >>= 1;
214		mode->hsync_start >>= 1;
215		mode->hsync_end >>= 1;
216		mode->htotal >>= 1;
217		drm_mode_set_name(mode);
218	}
219}
220
221static int dsi_dual_connector_tile_init(
222			struct drm_connector *connector, int id)
223{
224	struct drm_display_mode *mode;
225	/* Fake topology id */
226	char topo_id[8] = {'M', 'S', 'M', 'D', 'U', 'D', 'S', 'I'};
227
228	if (connector->tile_group) {
229		DBG("Tile property has been initialized");
230		return 0;
231	}
232
233	/* Use the first mode only for now */
234	mode = list_first_entry(&connector->probed_modes,
235				struct drm_display_mode,
236				head);
237	if (!mode)
238		return -EINVAL;
239
240	connector->tile_group = drm_mode_get_tile_group(
241					connector->dev, topo_id);
242	if (!connector->tile_group)
243		connector->tile_group = drm_mode_create_tile_group(
244					connector->dev, topo_id);
245	if (!connector->tile_group) {
246		pr_err("%s: failed to create tile group\n", __func__);
247		return -ENOMEM;
248	}
249
250	connector->has_tile = true;
251	connector->tile_is_single_monitor = true;
252
253	/* mode has been fixed */
254	connector->tile_h_size = mode->hdisplay;
255	connector->tile_v_size = mode->vdisplay;
256
257	/* Only support left-right mode */
258	connector->num_h_tile = 2;
259	connector->num_v_tile = 1;
260
261	connector->tile_v_loc = 0;
262	connector->tile_h_loc = (id == DSI_RIGHT) ? 1 : 0;
263
264	return 0;
265}
266
267static int dsi_mgr_connector_get_modes(struct drm_connector *connector)
268{
269	int id = dsi_mgr_connector_get_id(connector);
270	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
271	struct drm_panel *panel = msm_dsi->panel;
272	int ret, num;
273
274	if (!panel)
275		return 0;
276
277	/* Since we have 2 connectors, but only 1 drm_panel in dual DSI mode,
278	 * panel should not attach to any connector.
279	 * Only temporarily attach panel to the current connector here,
280	 * to let panel set mode to this connector.
281	 */
282	drm_panel_attach(panel, connector);
283	num = drm_panel_get_modes(panel);
284	drm_panel_detach(panel);
285	if (!num)
286		return 0;
287
288	if (IS_DUAL_DSI()) {
289		/* report half resolution to user */
290		dsi_dual_connector_fix_modes(connector);
291		ret = dsi_dual_connector_tile_init(connector, id);
292		if (ret)
293			return ret;
294		ret = drm_mode_connector_set_tile_property(connector);
295		if (ret) {
296			pr_err("%s: set tile property failed, %d\n",
297					__func__, ret);
298			return ret;
299		}
 
 
300	}
301
302	return num;
303}
304
305static int dsi_mgr_connector_mode_valid(struct drm_connector *connector,
306				struct drm_display_mode *mode)
307{
308	int id = dsi_mgr_connector_get_id(connector);
309	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
310	struct drm_encoder *encoder = msm_dsi_get_encoder(msm_dsi);
311	struct msm_drm_private *priv = connector->dev->dev_private;
312	struct msm_kms *kms = priv->kms;
313	long actual, requested;
314
315	DBG("");
316	requested = 1000 * mode->clock;
317	actual = kms->funcs->round_pixclk(kms, requested, encoder);
318
319	DBG("requested=%ld, actual=%ld", requested, actual);
320	if (actual != requested)
321		return MODE_CLOCK_RANGE;
322
323	return MODE_OK;
 
 
 
324}
325
326static struct drm_encoder *
327dsi_mgr_connector_best_encoder(struct drm_connector *connector)
328{
329	int id = dsi_mgr_connector_get_id(connector);
330	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
 
 
 
 
331
332	DBG("");
333	return msm_dsi_get_encoder(msm_dsi);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334}
335
336static void dsi_mgr_bridge_pre_enable(struct drm_bridge *bridge)
337{
338	int id = dsi_mgr_bridge_get_id(bridge);
339	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
340	struct msm_dsi *msm_dsi1 = dsi_mgr_get_dsi(DSI_1);
341	struct mipi_dsi_host *host = msm_dsi->host;
342	struct drm_panel *panel = msm_dsi->panel;
343	bool is_dual_dsi = IS_DUAL_DSI();
344	int ret;
345
346	DBG("id=%d", id);
347	if (!msm_dsi_device_connected(msm_dsi) ||
348			(is_dual_dsi && (DSI_1 == id)))
349		return;
350
351	ret = msm_dsi_host_power_on(host);
 
 
 
 
 
 
 
 
352	if (ret) {
353		pr_err("%s: power on host %d failed, %d\n", __func__, id, ret);
354		goto host_on_fail;
355	}
356
357	if (is_dual_dsi && msm_dsi1) {
358		ret = msm_dsi_host_power_on(msm_dsi1->host);
 
359		if (ret) {
360			pr_err("%s: power on host1 failed, %d\n",
361							__func__, ret);
362			goto host1_on_fail;
363		}
364	}
365
366	/* Always call panel functions once, because even for dual panels,
367	 * there is only one drm_panel instance.
 
368	 */
369	if (panel) {
370		ret = drm_panel_prepare(panel);
371		if (ret) {
372			pr_err("%s: prepare panel %d failed, %d\n", __func__,
373								id, ret);
374			goto panel_prep_fail;
375		}
376	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
378	ret = msm_dsi_host_enable(host);
379	if (ret) {
380		pr_err("%s: enable host %d failed, %d\n", __func__, id, ret);
381		goto host_en_fail;
382	}
383
384	if (is_dual_dsi && msm_dsi1) {
385		ret = msm_dsi_host_enable(msm_dsi1->host);
386		if (ret) {
387			pr_err("%s: enable host1 failed, %d\n", __func__, ret);
388			goto host1_en_fail;
389		}
390	}
391
392	if (panel) {
393		ret = drm_panel_enable(panel);
394		if (ret) {
395			pr_err("%s: enable panel %d failed, %d\n", __func__, id,
396									ret);
397			goto panel_en_fail;
398		}
399	}
400
401	return;
402
403panel_en_fail:
404	if (is_dual_dsi && msm_dsi1)
405		msm_dsi_host_disable(msm_dsi1->host);
406host1_en_fail:
407	msm_dsi_host_disable(host);
408host_en_fail:
409	if (panel)
410		drm_panel_unprepare(panel);
411panel_prep_fail:
412	if (is_dual_dsi && msm_dsi1)
413		msm_dsi_host_power_off(msm_dsi1->host);
414host1_on_fail:
415	msm_dsi_host_power_off(host);
416host_on_fail:
417	return;
418}
419
420static void dsi_mgr_bridge_enable(struct drm_bridge *bridge)
421{
422	DBG("");
423}
424
425static void dsi_mgr_bridge_disable(struct drm_bridge *bridge)
426{
427	DBG("");
 
 
 
428}
429
430static void dsi_mgr_bridge_post_disable(struct drm_bridge *bridge)
431{
432	int id = dsi_mgr_bridge_get_id(bridge);
433	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
434	struct msm_dsi *msm_dsi1 = dsi_mgr_get_dsi(DSI_1);
435	struct mipi_dsi_host *host = msm_dsi->host;
436	struct drm_panel *panel = msm_dsi->panel;
437	bool is_dual_dsi = IS_DUAL_DSI();
438	int ret;
439
440	DBG("id=%d", id);
441
442	if (!msm_dsi_device_connected(msm_dsi) ||
443			(is_dual_dsi && (DSI_1 == id)))
444		return;
445
446	if (panel) {
447		ret = drm_panel_disable(panel);
448		if (ret)
449			pr_err("%s: Panel %d OFF failed, %d\n", __func__, id,
450									ret);
451	}
 
452
453	ret = msm_dsi_host_disable(host);
454	if (ret)
455		pr_err("%s: host %d disable failed, %d\n", __func__, id, ret);
456
457	if (is_dual_dsi && msm_dsi1) {
458		ret = msm_dsi_host_disable(msm_dsi1->host);
459		if (ret)
460			pr_err("%s: host1 disable failed, %d\n", __func__, ret);
461	}
462
463	if (panel) {
464		ret = drm_panel_unprepare(panel);
465		if (ret)
466			pr_err("%s: Panel %d unprepare failed,%d\n", __func__,
467								id, ret);
468	}
469
470	ret = msm_dsi_host_power_off(host);
471	if (ret)
472		pr_err("%s: host %d power off failed,%d\n", __func__, id, ret);
473
474	if (is_dual_dsi && msm_dsi1) {
475		ret = msm_dsi_host_power_off(msm_dsi1->host);
476		if (ret)
477			pr_err("%s: host1 power off failed, %d\n",
478								__func__, ret);
479	}
 
 
 
480}
481
482static void dsi_mgr_bridge_mode_set(struct drm_bridge *bridge,
483		struct drm_display_mode *mode,
484		struct drm_display_mode *adjusted_mode)
485{
486	int id = dsi_mgr_bridge_get_id(bridge);
487	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
488	struct msm_dsi *other_dsi = dsi_mgr_get_other_dsi(id);
489	struct mipi_dsi_host *host = msm_dsi->host;
490	bool is_dual_dsi = IS_DUAL_DSI();
491
492	DBG("set mode: %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x",
493			mode->base.id, mode->name,
494			mode->vrefresh, mode->clock,
495			mode->hdisplay, mode->hsync_start,
496			mode->hsync_end, mode->htotal,
497			mode->vdisplay, mode->vsync_start,
498			mode->vsync_end, mode->vtotal,
499			mode->type, mode->flags);
500
501	if (is_dual_dsi && (DSI_1 == id))
502		return;
503
504	msm_dsi_host_set_display_mode(host, adjusted_mode);
505	if (is_dual_dsi && other_dsi)
506		msm_dsi_host_set_display_mode(other_dsi->host, adjusted_mode);
 
 
 
507}
508
509static const struct drm_connector_funcs dsi_mgr_connector_funcs = {
510	.dpms = drm_atomic_helper_connector_dpms,
511	.detect = dsi_mgr_connector_detect,
512	.fill_modes = drm_helper_probe_single_connector_modes,
513	.destroy = dsi_mgr_connector_destroy,
514	.reset = drm_atomic_helper_connector_reset,
515	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
516	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
517};
518
519static const struct drm_connector_helper_funcs dsi_mgr_conn_helper_funcs = {
520	.get_modes = dsi_mgr_connector_get_modes,
521	.mode_valid = dsi_mgr_connector_mode_valid,
522	.best_encoder = dsi_mgr_connector_best_encoder,
523};
524
525static const struct drm_bridge_funcs dsi_mgr_bridge_funcs = {
526	.pre_enable = dsi_mgr_bridge_pre_enable,
527	.enable = dsi_mgr_bridge_enable,
528	.disable = dsi_mgr_bridge_disable,
529	.post_disable = dsi_mgr_bridge_post_disable,
530	.mode_set = dsi_mgr_bridge_mode_set,
 
531};
532
533/* initialize connector when we're connected to a drm_panel */
534struct drm_connector *msm_dsi_manager_connector_init(u8 id)
535{
536	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
537	struct drm_connector *connector = NULL;
538	struct dsi_connector *dsi_connector;
539	int ret, i;
540
541	dsi_connector = devm_kzalloc(msm_dsi->dev->dev,
542				sizeof(*dsi_connector), GFP_KERNEL);
543	if (!dsi_connector) {
544		ret = -ENOMEM;
545		goto fail;
546	}
547
548	dsi_connector->id = id;
549
550	connector = &dsi_connector->base;
551
552	ret = drm_connector_init(msm_dsi->dev, connector,
553			&dsi_mgr_connector_funcs, DRM_MODE_CONNECTOR_DSI);
554	if (ret)
555		goto fail;
556
557	drm_connector_helper_add(connector, &dsi_mgr_conn_helper_funcs);
558
559	/* Enable HPD to let hpd event is handled
560	 * when panel is attached to the host.
561	 */
562	connector->polled = DRM_CONNECTOR_POLL_HPD;
563
564	/* Display driver doesn't support interlace now. */
565	connector->interlace_allowed = 0;
566	connector->doublescan_allowed = 0;
567
568	ret = drm_connector_register(connector);
569	if (ret)
570		goto fail;
571
572	for (i = 0; i < MSM_DSI_ENCODER_NUM; i++)
573		drm_mode_connector_attach_encoder(connector,
574						msm_dsi->encoders[i]);
575
576	return connector;
577
578fail:
579	if (connector)
580		dsi_mgr_connector_destroy(connector);
581
582	return ERR_PTR(ret);
583}
584
585/* initialize bridge */
586struct drm_bridge *msm_dsi_manager_bridge_init(u8 id)
587{
588	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
589	struct drm_bridge *bridge = NULL;
590	struct dsi_bridge *dsi_bridge;
 
591	int ret;
592
593	dsi_bridge = devm_kzalloc(msm_dsi->dev->dev,
594				sizeof(*dsi_bridge), GFP_KERNEL);
595	if (!dsi_bridge) {
596		ret = -ENOMEM;
597		goto fail;
598	}
599
600	dsi_bridge->id = id;
601
 
 
602	bridge = &dsi_bridge->base;
603	bridge->funcs = &dsi_mgr_bridge_funcs;
604
605	ret = drm_bridge_attach(msm_dsi->dev, bridge);
 
 
606	if (ret)
607		goto fail;
608
609	return bridge;
610
611fail:
612	if (bridge)
613		msm_dsi_manager_bridge_destroy(bridge);
614
615	return ERR_PTR(ret);
616}
617
618struct drm_connector *msm_dsi_manager_ext_bridge_init(u8 id)
619{
620	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
621	struct drm_device *dev = msm_dsi->dev;
622	struct drm_encoder *encoder;
623	struct drm_bridge *int_bridge, *ext_bridge;
624	struct drm_connector *connector;
625	struct list_head *connector_list;
626
627	int_bridge = msm_dsi->bridge;
628	ext_bridge = msm_dsi->external_bridge =
629			msm_dsi_host_get_bridge(msm_dsi->host);
630
631	/*
632	 * HACK: we may not know the external DSI bridge device's mode
633	 * flags here. We'll get to know them only when the device
634	 * attaches to the dsi host. For now, assume the bridge supports
635	 * DSI video mode
636	 */
637	encoder = msm_dsi->encoders[MSM_DSI_VIDEO_ENCODER_ID];
638
639	/* link the internal dsi bridge to the external bridge */
640	int_bridge->next = ext_bridge;
641	/* set the external bridge's encoder as dsi's encoder */
642	ext_bridge->encoder = encoder;
643
644	drm_bridge_attach(dev, ext_bridge);
645
646	/*
647	 * we need the drm_connector created by the external bridge
648	 * driver (or someone else) to feed it to our driver's
649	 * priv->connector[] list, mainly for msm_fbdev_init()
650	 */
651	connector_list = &dev->mode_config.connector_list;
652
653	list_for_each_entry(connector, connector_list, head) {
654		int i;
 
 
 
 
 
 
 
 
655
656		for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
657			if (connector->encoder_ids[i] == encoder->base.id)
658				return connector;
 
 
659		}
660	}
661
662	return ERR_PTR(-ENODEV);
663}
664
665void msm_dsi_manager_bridge_destroy(struct drm_bridge *bridge)
666{
667}
668
669int msm_dsi_manager_phy_enable(int id,
670		const unsigned long bit_rate, const unsigned long esc_rate,
671		u32 *clk_pre, u32 *clk_post)
672{
673	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
674	struct msm_dsi_phy *phy = msm_dsi->phy;
675	int src_pll_id = IS_DUAL_DSI() ? DSI_CLOCK_MASTER : id;
676	struct msm_dsi_pll *pll = msm_dsi_phy_get_pll(msm_dsi->phy);
677	int ret;
678
679	ret = msm_dsi_phy_enable(phy, src_pll_id, bit_rate, esc_rate);
680	if (ret)
681		return ret;
682
683	/*
684	 * Reset DSI PHY silently changes its PLL registers to reset status,
685	 * which will confuse clock driver and result in wrong output rate of
686	 * link clocks. Restore PLL status if its PLL is being used as clock
687	 * source.
688	 */
689	if (!IS_DUAL_DSI() || (id == DSI_CLOCK_MASTER)) {
690		ret = msm_dsi_pll_restore_state(pll);
691		if (ret) {
692			pr_err("%s: failed to restore pll state\n", __func__);
693			msm_dsi_phy_disable(phy);
694			return ret;
695		}
696	}
697
698	msm_dsi->phy_enabled = true;
699	msm_dsi_phy_get_clk_pre_post(phy, clk_pre, clk_post);
700
701	return 0;
702}
703
704void msm_dsi_manager_phy_disable(int id)
705{
706	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
707	struct msm_dsi *mdsi = dsi_mgr_get_dsi(DSI_CLOCK_MASTER);
708	struct msm_dsi *sdsi = dsi_mgr_get_dsi(DSI_CLOCK_SLAVE);
709	struct msm_dsi_phy *phy = msm_dsi->phy;
710	struct msm_dsi_pll *pll = msm_dsi_phy_get_pll(msm_dsi->phy);
711
712	/* Save PLL status if it is a clock source */
713	if (!IS_DUAL_DSI() || (id == DSI_CLOCK_MASTER))
714		msm_dsi_pll_save_state(pll);
715
716	/* disable DSI phy
717	 * In dual-dsi configuration, the phy should be disabled for the
718	 * first controller only when the second controller is disabled.
719	 */
720	msm_dsi->phy_enabled = false;
721	if (IS_DUAL_DSI() && mdsi && sdsi) {
722		if (!mdsi->phy_enabled && !sdsi->phy_enabled) {
723			msm_dsi_phy_disable(sdsi->phy);
724			msm_dsi_phy_disable(mdsi->phy);
725		}
726	} else {
727		msm_dsi_phy_disable(phy);
728	}
729}
730
731int msm_dsi_manager_cmd_xfer(int id, const struct mipi_dsi_msg *msg)
732{
733	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
734	struct msm_dsi *msm_dsi0 = dsi_mgr_get_dsi(DSI_0);
735	struct mipi_dsi_host *host = msm_dsi->host;
736	bool is_read = (msg->rx_buf && msg->rx_len);
737	bool need_sync = (IS_SYNC_NEEDED() && !is_read);
738	int ret;
739
740	if (!msg->tx_buf || !msg->tx_len)
741		return 0;
742
743	/* In dual master case, panel requires the same commands sent to
744	 * both DSI links. Host issues the command trigger to both links
745	 * when DSI_1 calls the cmd transfer function, no matter it happens
746	 * before or after DSI_0 cmd transfer.
747	 */
748	if (need_sync && (id == DSI_0))
749		return is_read ? msg->rx_len : msg->tx_len;
750
751	if (need_sync && msm_dsi0) {
752		ret = msm_dsi_host_xfer_prepare(msm_dsi0->host, msg);
753		if (ret) {
754			pr_err("%s: failed to prepare non-trigger host, %d\n",
755				__func__, ret);
756			return ret;
757		}
758	}
759	ret = msm_dsi_host_xfer_prepare(host, msg);
760	if (ret) {
761		pr_err("%s: failed to prepare host, %d\n", __func__, ret);
762		goto restore_host0;
763	}
764
765	ret = is_read ? msm_dsi_host_cmd_rx(host, msg) :
766			msm_dsi_host_cmd_tx(host, msg);
767
768	msm_dsi_host_xfer_restore(host, msg);
769
770restore_host0:
771	if (need_sync && msm_dsi0)
772		msm_dsi_host_xfer_restore(msm_dsi0->host, msg);
773
774	return ret;
775}
776
777bool msm_dsi_manager_cmd_xfer_trigger(int id, u32 dma_base, u32 len)
778{
779	struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
780	struct msm_dsi *msm_dsi0 = dsi_mgr_get_dsi(DSI_0);
781	struct mipi_dsi_host *host = msm_dsi->host;
782
783	if (IS_SYNC_NEEDED() && (id == DSI_0))
784		return false;
785
786	if (IS_SYNC_NEEDED() && msm_dsi0)
787		msm_dsi_host_cmd_xfer_commit(msm_dsi0->host, dma_base, len);
788
789	msm_dsi_host_cmd_xfer_commit(host, dma_base, len);
790
791	return true;
792}
793
794int msm_dsi_manager_register(struct msm_dsi *msm_dsi)
795{
796	struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
797	int id = msm_dsi->id;
798	int ret;
799
800	if (id > DSI_MAX) {
801		pr_err("%s: invalid id %d\n", __func__, id);
802		return -EINVAL;
803	}
804
805	if (msm_dsim->dsi[id]) {
806		pr_err("%s: dsi%d already registered\n", __func__, id);
807		return -EBUSY;
808	}
809
810	msm_dsim->dsi[id] = msm_dsi;
811
812	ret = dsi_mgr_parse_dual_dsi(msm_dsi->pdev->dev.of_node, id);
813	if (ret) {
814		pr_err("%s: failed to parse dual DSI info\n", __func__);
815		goto fail;
816	}
817
818	ret = dsi_mgr_host_register(id);
819	if (ret) {
820		pr_err("%s: failed to register mipi dsi host for DSI %d\n",
821			__func__, id);
822		goto fail;
823	}
824
825	return 0;
826
827fail:
828	msm_dsim->dsi[id] = NULL;
829	return ret;
830}
831
832void msm_dsi_manager_unregister(struct msm_dsi *msm_dsi)
833{
834	struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
835
836	if (msm_dsi->host)
837		msm_dsi_host_unregister(msm_dsi->host);
838	msm_dsim->dsi[msm_dsi->id] = NULL;
 
 
839}
840
v6.2
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
 
 
 
 
 
 
 
 
 
  4 */
  5
  6#include "drm/drm_bridge_connector.h"
  7
  8#include "msm_kms.h"
  9#include "dsi.h"
 10
 11#define DSI_CLOCK_MASTER	DSI_0
 12#define DSI_CLOCK_SLAVE		DSI_1
 13
 14#define DSI_LEFT		DSI_0
 15#define DSI_RIGHT		DSI_1
 16
 17/* According to the current drm framework sequence, take the encoder of
 18 * DSI_1 as master encoder
 19 */
 20#define DSI_ENCODER_MASTER	DSI_1
 21#define DSI_ENCODER_SLAVE	DSI_0
 22
 23struct msm_dsi_manager {
 24	struct msm_dsi *dsi[DSI_MAX];
 25
 26	bool is_bonded_dsi;
 27	bool is_sync_needed;
 28	int master_dsi_link_id;
 29};
 30
 31static struct msm_dsi_manager msm_dsim_glb;
 32
 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)
 36
 37#ifdef CONFIG_OF
 38static bool dsi_mgr_power_on_early(struct drm_bridge *bridge)
 39{
 40	struct drm_bridge *next_bridge = drm_bridge_get_next_bridge(bridge);
 41
 42	/*
 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.
 46	 *
 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.
 52	 */
 53	return !(next_bridge && next_bridge->of_node &&
 54		 of_device_is_compatible(next_bridge->of_node, "parade,ps8640"));
 55}
 56#else
 57static inline bool dsi_mgr_power_on_early(struct drm_bridge *bridge)
 58{
 59	return true;
 60}
 61#endif
 62
 63static inline struct msm_dsi *dsi_mgr_get_dsi(int id)
 64{
 65	return msm_dsim_glb.dsi[id];
 66}
 67
 68static inline struct msm_dsi *dsi_mgr_get_other_dsi(int id)
 69{
 70	return msm_dsim_glb.dsi[(id + 1) % DSI_MAX];
 71}
 72
 73static int dsi_mgr_parse_of(struct device_node *np, int id)
 74{
 75	struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
 76
 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.
 79	 */
 80	if (!msm_dsim->is_bonded_dsi)
 81		msm_dsim->is_bonded_dsi = of_property_read_bool(np, "qcom,dual-dsi-mode");
 
 82
 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");
 89	}
 90
 91	return 0;
 92}
 93
 94static int dsi_mgr_setup_components(int id)
 95{
 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);
100	int ret;
101
102	if (!IS_BONDED_DSI()) {
103		ret = msm_dsi_host_register(msm_dsi->host);
104		if (ret)
105			return ret;
106
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) ?
111							msm_dsi : other_dsi;
112		struct msm_dsi *slave_link_dsi = IS_MASTER_DSI_LINK(id) ?
113							other_dsi : msm_dsi;
 
 
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.
120		 */
121		ret = msm_dsi_host_register(slave_link_dsi->host);
122		if (ret)
123			return ret;
124		ret = msm_dsi_host_register(master_link_dsi->host);
125		if (ret)
126			return ret;
127
128		/* PLL0 is to drive both 2 DSI link clocks in bonded DSI mode. */
129		msm_dsi_phy_set_usecase(clk_master_dsi->phy,
130					MSM_DSI_PHY_MASTER);
131		msm_dsi_phy_set_usecase(clk_slave_dsi->phy,
132					MSM_DSI_PHY_SLAVE);
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);
135	}
136
137	return 0;
138}
139
140static int enable_phy(struct msm_dsi *msm_dsi,
141		      struct msm_dsi_phy_shared_timings *shared_timings)
 
 
 
 
 
 
 
 
 
 
 
 
142{
143	struct msm_dsi_phy_clk_request clk_req;
144	bool is_bonded_dsi = IS_BONDED_DSI();
 
145
146	msm_dsi_host_get_phy_clk_req(msm_dsi->host, &clk_req, is_bonded_dsi);
147
148	return msm_dsi_phy_enable(msm_dsi->phy, &clk_req, shared_timings);
 
149}
150
151static int
152dsi_mgr_phy_enable(int id,
153		   struct msm_dsi_phy_shared_timings shared_timings[DSI_MAX])
154{
 
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);
158	int ret;
159
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.
164	 */
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);
 
 
 
 
 
 
 
 
 
169
170			ret = enable_phy(mdsi,
171					 &shared_timings[DSI_CLOCK_MASTER]);
172			if (ret)
173				return ret;
174			ret = enable_phy(sdsi,
175					 &shared_timings[DSI_CLOCK_SLAVE]);
176			if (ret) {
177				msm_dsi_phy_disable(mdsi->phy);
178				return ret;
179			}
 
 
 
 
 
 
 
180		}
181	} else {
182		msm_dsi_host_reset_phy(msm_dsi->host);
183		ret = enable_phy(msm_dsi, &shared_timings[id]);
184		if (ret)
185			return ret;
186	}
187
188	msm_dsi->phy_enabled = true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
190	return 0;
191}
192
193static void dsi_mgr_phy_disable(int id)
194{
 
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);
 
 
 
198
199	/* disable DSI phy
200	 * In bonded dsi configuration, the phy should be disabled for the
201	 * first controller only when the second controller is disabled.
 
202	 */
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);
 
 
 
 
 
 
 
 
 
 
 
 
208		}
209	} else {
210		msm_dsi_phy_disable(msm_dsi->phy);
211	}
 
 
212}
213
214struct dsi_bridge {
215	struct drm_bridge base;
216	int id;
217};
 
 
 
 
 
 
 
 
 
218
219#define to_dsi_bridge(x) container_of(x, struct dsi_bridge, base)
 
 
220
221static int dsi_mgr_bridge_get_id(struct drm_bridge *bridge)
222{
223	struct dsi_bridge *dsi_bridge = to_dsi_bridge(bridge);
224	return dsi_bridge->id;
225}
226
227static void msm_dsi_manager_set_split_display(u8 id)
 
228{
 
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;
234
235	if (IS_BONDED_DSI() && !IS_MASTER_DSI_LINK(id)) {
236		master_dsi = other_dsi;
237		slave_dsi = msm_dsi;
238	} else {
239		master_dsi = msm_dsi;
240		slave_dsi = other_dsi;
241	}
242
243	if (!msm_dsi->external_bridge || !IS_BONDED_DSI())
244		return;
245
246	/*
247	 * Set split display info to kms once bonded DSI panel is connected to
248	 * both hosts.
249	 */
250	if (other_dsi && other_dsi->external_bridge && kms->funcs->set_split_display) {
251		kms->funcs->set_split_display(kms, master_dsi->encoder,
252					      slave_dsi->encoder,
253					      msm_dsi_is_cmd_mode(msm_dsi));
254	}
255}
256
257static void dsi_mgr_bridge_power_on(struct drm_bridge *bridge)
258{
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();
265	int ret;
266
267	DBG("id=%d", id);
268	if (!msm_dsi_device_connected(msm_dsi))
 
269		return;
270
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))
273		return;
274
275	ret = dsi_mgr_phy_enable(id, phy_shared_timings);
276	if (ret)
277		goto phy_en_fail;
278
279	ret = msm_dsi_host_power_on(host, &phy_shared_timings[id], is_bonded_dsi, msm_dsi->phy);
280	if (ret) {
281		pr_err("%s: power on host %d failed, %d\n", __func__, id, ret);
282		goto host_on_fail;
283	}
284
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);
288		if (ret) {
289			pr_err("%s: power on host1 failed, %d\n",
290							__func__, ret);
291			goto host1_on_fail;
292		}
293	}
294
295	/*
296	 * Enable before preparing the panel, disable after unpreparing, so
297	 * that the panel can communicate over the DSI link.
298	 */
299	msm_dsi_host_enable_irq(host);
300	if (is_bonded_dsi && msm_dsi1)
301		msm_dsi_host_enable_irq(msm_dsi1->host);
302
303	return;
304
305host1_on_fail:
306	msm_dsi_host_power_off(host);
307host_on_fail:
308	dsi_mgr_phy_disable(id);
309phy_en_fail:
310	return;
311}
312
313static void dsi_mgr_bridge_pre_enable(struct drm_bridge *bridge)
314{
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();
320	int ret;
321
322	DBG("id=%d", id);
323	if (!msm_dsi_device_connected(msm_dsi))
324		return;
325
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))
328		return;
329
330	if (!dsi_mgr_power_on_early(bridge))
331		dsi_mgr_bridge_power_on(bridge);
332
333	ret = msm_dsi_host_enable(host);
334	if (ret) {
335		pr_err("%s: enable host %d failed, %d\n", __func__, id, ret);
336		goto host_en_fail;
337	}
338
339	if (is_bonded_dsi && msm_dsi1) {
340		ret = msm_dsi_host_enable(msm_dsi1->host);
341		if (ret) {
342			pr_err("%s: enable host1 failed, %d\n", __func__, ret);
343			goto host1_en_fail;
344		}
345	}
346
 
 
 
 
 
 
 
 
 
347	return;
348
 
 
 
349host1_en_fail:
350	msm_dsi_host_disable(host);
351host_en_fail:
352
 
 
 
 
 
 
 
353	return;
354}
355
356void msm_dsi_manager_tpg_enable(void)
357{
358	struct msm_dsi *m_dsi = dsi_mgr_get_dsi(DSI_0);
359	struct msm_dsi *s_dsi = dsi_mgr_get_dsi(DSI_1);
360
361	/* if dual dsi, trigger tpg on master first then slave */
362	if (m_dsi) {
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);
366	}
367}
368
369static void dsi_mgr_bridge_post_disable(struct drm_bridge *bridge)
370{
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();
 
376	int ret;
377
378	DBG("id=%d", id);
379
380	if (!msm_dsi_device_connected(msm_dsi))
 
381		return;
382
383	/*
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.
387	 */
388	if (is_bonded_dsi && !IS_MASTER_DSI_LINK(id))
389		goto disable_phy;
390
391	ret = msm_dsi_host_disable(host);
392	if (ret)
393		pr_err("%s: host %d disable failed, %d\n", __func__, id, ret);
394
395	if (is_bonded_dsi && msm_dsi1) {
396		ret = msm_dsi_host_disable(msm_dsi1->host);
397		if (ret)
398			pr_err("%s: host1 disable failed, %d\n", __func__, ret);
399	}
400
401	msm_dsi_host_disable_irq(host);
402	if (is_bonded_dsi && msm_dsi1)
403		msm_dsi_host_disable_irq(msm_dsi1->host);
404
405	/* Save PHY status if it is a clock source */
406	msm_dsi_phy_pll_save_state(msm_dsi->phy);
407
408	ret = msm_dsi_host_power_off(host);
409	if (ret)
410		pr_err("%s: host %d power off failed,%d\n", __func__, id, ret);
411
412	if (is_bonded_dsi && msm_dsi1) {
413		ret = msm_dsi_host_power_off(msm_dsi1->host);
414		if (ret)
415			pr_err("%s: host1 power off failed, %d\n",
416								__func__, ret);
417	}
418
419disable_phy:
420	dsi_mgr_phy_disable(id);
421}
422
423static 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)
426{
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();
432
433	DBG("set mode: " DRM_MODE_FMT, DRM_MODE_ARG(mode));
 
 
 
 
 
 
 
434
435	if (is_bonded_dsi && !IS_MASTER_DSI_LINK(id))
436		return;
437
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);
441
442	if (dsi_mgr_power_on_early(bridge))
443		dsi_mgr_bridge_power_on(bridge);
444}
445
446static 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)
449{
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;
 
 
453
454	return msm_dsi_host_check_dsc(host, mode);
455}
 
 
 
456
457static 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,
462};
463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464/* initialize bridge */
465struct drm_bridge *msm_dsi_manager_bridge_init(u8 id)
466{
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;
471	int ret;
472
473	dsi_bridge = devm_kzalloc(msm_dsi->dev->dev,
474				sizeof(*dsi_bridge), GFP_KERNEL);
475	if (!dsi_bridge) {
476		ret = -ENOMEM;
477		goto fail;
478	}
479
480	dsi_bridge->id = id;
481
482	encoder = msm_dsi->encoder;
483
484	bridge = &dsi_bridge->base;
485	bridge->funcs = &dsi_mgr_bridge_funcs;
486
487	drm_bridge_add(bridge);
488
489	ret = drm_bridge_attach(encoder, bridge, NULL, 0);
490	if (ret)
491		goto fail;
492
493	return bridge;
494
495fail:
496	if (bridge)
497		msm_dsi_manager_bridge_destroy(bridge);
498
499	return ERR_PTR(ret);
500}
501
502int msm_dsi_manager_ext_bridge_init(u8 id)
503{
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;
508	int ret;
 
509
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);
 
 
 
 
 
 
515
516	msm_dsi->external_bridge = ext_bridge;
 
 
 
517
518	encoder = msm_dsi->encoder;
519
520	/*
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)
524	 */
525	ret = drm_bridge_attach(encoder, ext_bridge, int_bridge,
526			DRM_BRIDGE_ATTACH_NO_CONNECTOR);
527	if (ret == -EINVAL) {
528		/*
529		 * link the internal dsi bridge to the external bridge,
530		 * connector is created by the next bridge.
531		 */
532		ret = drm_bridge_attach(encoder, ext_bridge, int_bridge, 0);
533		if (ret < 0)
534			return ret;
535	} else {
536		struct drm_connector *connector;
537
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);
543		}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
544
545		ret = drm_connector_attach_encoder(connector, encoder);
546		if (ret < 0)
 
 
 
 
 
 
 
 
 
 
 
 
 
547			return ret;
 
548	}
549
550	/* The pipeline is ready, ping encoders if necessary */
551	msm_dsi_manager_set_split_display(id);
552
553	return 0;
554}
555
556void msm_dsi_manager_bridge_destroy(struct drm_bridge *bridge)
557{
558	drm_bridge_remove(bridge);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
559}
560
561int msm_dsi_manager_cmd_xfer(int id, const struct mipi_dsi_msg *msg)
562{
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);
568	int ret;
569
570	if (!msg->tx_buf || !msg->tx_len)
571		return 0;
572
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.
577	 */
578	if (need_sync && (id == DSI_0))
579		return is_read ? msg->rx_len : msg->tx_len;
580
581	if (need_sync && msm_dsi0) {
582		ret = msm_dsi_host_xfer_prepare(msm_dsi0->host, msg);
583		if (ret) {
584			pr_err("%s: failed to prepare non-trigger host, %d\n",
585				__func__, ret);
586			return ret;
587		}
588	}
589	ret = msm_dsi_host_xfer_prepare(host, msg);
590	if (ret) {
591		pr_err("%s: failed to prepare host, %d\n", __func__, ret);
592		goto restore_host0;
593	}
594
595	ret = is_read ? msm_dsi_host_cmd_rx(host, msg) :
596			msm_dsi_host_cmd_tx(host, msg);
597
598	msm_dsi_host_xfer_restore(host, msg);
599
600restore_host0:
601	if (need_sync && msm_dsi0)
602		msm_dsi_host_xfer_restore(msm_dsi0->host, msg);
603
604	return ret;
605}
606
607bool msm_dsi_manager_cmd_xfer_trigger(int id, u32 dma_base, u32 len)
608{
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;
612
613	if (IS_SYNC_NEEDED() && (id == DSI_0))
614		return false;
615
616	if (IS_SYNC_NEEDED() && msm_dsi0)
617		msm_dsi_host_cmd_xfer_commit(msm_dsi0->host, dma_base, len);
618
619	msm_dsi_host_cmd_xfer_commit(host, dma_base, len);
620
621	return true;
622}
623
624int msm_dsi_manager_register(struct msm_dsi *msm_dsi)
625{
626	struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
627	int id = msm_dsi->id;
628	int ret;
629
630	if (id >= DSI_MAX) {
631		pr_err("%s: invalid id %d\n", __func__, id);
632		return -EINVAL;
633	}
634
635	if (msm_dsim->dsi[id]) {
636		pr_err("%s: dsi%d already registered\n", __func__, id);
637		return -EBUSY;
638	}
639
640	msm_dsim->dsi[id] = msm_dsi;
641
642	ret = dsi_mgr_parse_of(msm_dsi->pdev->dev.of_node, id);
643	if (ret) {
644		pr_err("%s: failed to parse OF DSI info\n", __func__);
645		goto fail;
646	}
647
648	ret = dsi_mgr_setup_components(id);
649	if (ret) {
650		pr_err("%s: failed to register mipi dsi host for DSI %d: %d\n",
651			__func__, id, ret);
652		goto fail;
653	}
654
655	return 0;
656
657fail:
658	msm_dsim->dsi[id] = NULL;
659	return ret;
660}
661
662void msm_dsi_manager_unregister(struct msm_dsi *msm_dsi)
663{
664	struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
665
666	if (msm_dsi->host)
667		msm_dsi_host_unregister(msm_dsi->host);
668
669	if (msm_dsi->id >= 0)
670		msm_dsim->dsi[msm_dsi->id] = NULL;
671}
672
673bool msm_dsi_is_bonded_dsi(struct msm_dsi *msm_dsi)
674{
675	return IS_BONDED_DSI();
676}
677
678bool msm_dsi_is_master_dsi(struct msm_dsi *msm_dsi)
679{
680	return IS_MASTER_DSI_LINK(msm_dsi->id);
681}