blob: dc3d322375e99cc3635688b8dc47821c7d6736ff [file] [log] [blame]
Hai Lia6895542015-03-31 14:36:33 -04001/*
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
Hai Li13351cd2015-06-10 13:18:17 -040017#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
Hai Lia6895542015-03-31 14:36:33 -040029struct msm_dsi_manager {
30 struct msm_dsi *dsi[DSI_MAX];
31
Hai Li678565c2015-06-10 13:18:18 -040032 bool is_dual_dsi;
Hai Lia6895542015-03-31 14:36:33 -040033 bool is_sync_needed;
Hai Li678565c2015-06-10 13:18:18 -040034 int master_dsi_link_id;
Hai Lia6895542015-03-31 14:36:33 -040035};
36
37static struct msm_dsi_manager msm_dsim_glb;
38
Hai Li678565c2015-06-10 13:18:18 -040039#define IS_DUAL_DSI() (msm_dsim_glb.is_dual_dsi)
Hai Lia6895542015-03-31 14:36:33 -040040#define IS_SYNC_NEEDED() (msm_dsim_glb.is_sync_needed)
Hai Li678565c2015-06-10 13:18:18 -040041#define IS_MASTER_DSI_LINK(id) (msm_dsim_glb.master_dsi_link_id == id)
Hai Lia6895542015-03-31 14:36:33 -040042
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
Hai Li678565c2015-06-10 13:18:18 -040053static int dsi_mgr_parse_dual_dsi(struct device_node *np, int id)
Hai Lia6895542015-03-31 14:36:33 -040054{
55 struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
56
Hai Li678565c2015-06-10 13:18:18 -040057 /* We assume 2 dsi nodes have the same information of dual-dsi and
Hai Lia6895542015-03-31 14:36:33 -040058 * sync-mode, and only one node specifies master in case of dual mode.
59 */
Hai Li678565c2015-06-10 13:18:18 -040060 if (!msm_dsim->is_dual_dsi)
61 msm_dsim->is_dual_dsi = of_property_read_bool(
62 np, "qcom,dual-dsi-mode");
Hai Lia6895542015-03-31 14:36:33 -040063
Hai Li678565c2015-06-10 13:18:18 -040064 if (msm_dsim->is_dual_dsi) {
65 if (of_property_read_bool(np, "qcom,master-dsi"))
66 msm_dsim->master_dsi_link_id = id;
Hai Lia6895542015-03-31 14:36:33 -040067 if (!msm_dsim->is_sync_needed)
68 msm_dsim->is_sync_needed = of_property_read_bool(
Hai Li678565c2015-06-10 13:18:18 -040069 np, "qcom,sync-dual-dsi");
Hai Lia6895542015-03-31 14:36:33 -040070 }
71
72 return 0;
73}
74
Hai Li9d32c4982015-05-15 13:04:05 -040075static 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
Hai Li678565c2015-06-10 13:18:18 -040083 if (!IS_DUAL_DSI()) {
Hai Li9d32c4982015-05-15 13:04:05 -040084 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 {
Hai Li678565c2015-06-10 13:18:18 -040093 struct msm_dsi *mdsi = IS_MASTER_DSI_LINK(id) ?
Hai Li9d32c4982015-05-15 13:04:05 -040094 msm_dsi : other_dsi;
Hai Li678565c2015-06-10 13:18:18 -040095 struct msm_dsi *sdsi = IS_MASTER_DSI_LINK(id) ?
Hai Li9d32c4982015-05-15 13:04:05 -040096 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
Hai Lia6895542015-03-31 14:36:33 -0400122struct 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,
Archit Tanejaa9ddac92015-08-03 14:05:45 +0530159 &msm_dsi->device_flags);
Hai Lia6895542015-03-31 14:36:33 -0400160
161 /* There is only 1 panel in the global panel list
Hai Li678565c2015-06-10 13:18:18 -0400162 * for dual DSI mode. Therefore slave dsi should get
Hai Lia6895542015-03-31 14:36:33 -0400163 * the drm_panel instance from master dsi, and
164 * keep using the panel flags got from the current DSI link.
165 */
Hai Li678565c2015-06-10 13:18:18 -0400166 if (!msm_dsi->panel && IS_DUAL_DSI() &&
167 !IS_MASTER_DSI_LINK(id) && other_dsi)
Hai Lia6895542015-03-31 14:36:33 -0400168 msm_dsi->panel = msm_dsi_host_get_panel(
169 other_dsi->host, NULL);
170
Hai Li678565c2015-06-10 13:18:18 -0400171 if (msm_dsi->panel && IS_DUAL_DSI())
Hai Lia6895542015-03-31 14:36:33 -0400172 drm_object_attach_property(&connector->base,
173 connector->dev->mode_config.tile_property, 0);
174
Hai Li678565c2015-06-10 13:18:18 -0400175 /* Set split display info to kms once dual DSI panel is
176 * connected to both hosts.
Hai Lia6895542015-03-31 14:36:33 -0400177 */
Hai Li678565c2015-06-10 13:18:18 -0400178 if (msm_dsi->panel && IS_DUAL_DSI() &&
Hai Lia6895542015-03-31 14:36:33 -0400179 other_dsi && other_dsi->panel) {
Archit Tanejaa9ddac92015-08-03 14:05:45 +0530180 bool cmd_mode = !(msm_dsi->device_flags &
Hai Lia6895542015-03-31 14:36:33 -0400181 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
Hai Li678565c2015-06-10 13:18:18 -0400191 pr_err("mdp does not support dual DSI\n");
Hai Lia6895542015-03-31 14:36:33 -0400192 }
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
Hai Li678565c2015-06-10 13:18:18 -0400288 if (IS_DUAL_DSI()) {
Hai Lia6895542015-03-31 14:36:33 -0400289 /* 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;
Hai Li678565c2015-06-10 13:18:18 -0400343 bool is_dual_dsi = IS_DUAL_DSI();
Hai Lia6895542015-03-31 14:36:33 -0400344 int ret;
345
346 DBG("id=%d", id);
Archit Taneja6f054ec2015-08-03 14:08:33 +0530347 if (!msm_dsi_device_connected(msm_dsi) ||
348 (is_dual_dsi && (DSI_1 == id)))
Hai Lia6895542015-03-31 14:36:33 -0400349 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
Hai Li678565c2015-06-10 13:18:18 -0400357 if (is_dual_dsi && msm_dsi1) {
Hai Lia6895542015-03-31 14:36:33 -0400358 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 ret = drm_panel_prepare(panel);
370 if (ret) {
371 pr_err("%s: prepare panel %d failed, %d\n", __func__, id, ret);
372 goto panel_prep_fail;
373 }
374
375 ret = msm_dsi_host_enable(host);
376 if (ret) {
377 pr_err("%s: enable host %d failed, %d\n", __func__, id, ret);
378 goto host_en_fail;
379 }
380
Hai Li678565c2015-06-10 13:18:18 -0400381 if (is_dual_dsi && msm_dsi1) {
Hai Lia6895542015-03-31 14:36:33 -0400382 ret = msm_dsi_host_enable(msm_dsi1->host);
383 if (ret) {
384 pr_err("%s: enable host1 failed, %d\n", __func__, ret);
385 goto host1_en_fail;
386 }
387 }
388
389 ret = drm_panel_enable(panel);
390 if (ret) {
391 pr_err("%s: enable panel %d failed, %d\n", __func__, id, ret);
392 goto panel_en_fail;
393 }
394
395 return;
396
397panel_en_fail:
Hai Li678565c2015-06-10 13:18:18 -0400398 if (is_dual_dsi && msm_dsi1)
Hai Lia6895542015-03-31 14:36:33 -0400399 msm_dsi_host_disable(msm_dsi1->host);
400host1_en_fail:
401 msm_dsi_host_disable(host);
402host_en_fail:
403 drm_panel_unprepare(panel);
404panel_prep_fail:
Hai Li678565c2015-06-10 13:18:18 -0400405 if (is_dual_dsi && msm_dsi1)
Hai Lia6895542015-03-31 14:36:33 -0400406 msm_dsi_host_power_off(msm_dsi1->host);
407host1_on_fail:
408 msm_dsi_host_power_off(host);
409host_on_fail:
410 return;
411}
412
413static void dsi_mgr_bridge_enable(struct drm_bridge *bridge)
414{
415 DBG("");
416}
417
418static void dsi_mgr_bridge_disable(struct drm_bridge *bridge)
419{
420 DBG("");
421}
422
423static void dsi_mgr_bridge_post_disable(struct drm_bridge *bridge)
424{
425 int id = dsi_mgr_bridge_get_id(bridge);
426 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
427 struct msm_dsi *msm_dsi1 = dsi_mgr_get_dsi(DSI_1);
428 struct mipi_dsi_host *host = msm_dsi->host;
429 struct drm_panel *panel = msm_dsi->panel;
Hai Li678565c2015-06-10 13:18:18 -0400430 bool is_dual_dsi = IS_DUAL_DSI();
Hai Lia6895542015-03-31 14:36:33 -0400431 int ret;
432
433 DBG("id=%d", id);
434
Archit Taneja6f054ec2015-08-03 14:08:33 +0530435 if (!msm_dsi_device_connected(msm_dsi) ||
436 (is_dual_dsi && (DSI_1 == id)))
Hai Lia6895542015-03-31 14:36:33 -0400437 return;
438
439 ret = drm_panel_disable(panel);
440 if (ret)
441 pr_err("%s: Panel %d OFF failed, %d\n", __func__, id, ret);
442
443 ret = msm_dsi_host_disable(host);
444 if (ret)
445 pr_err("%s: host %d disable failed, %d\n", __func__, id, ret);
446
Hai Li678565c2015-06-10 13:18:18 -0400447 if (is_dual_dsi && msm_dsi1) {
Hai Lia6895542015-03-31 14:36:33 -0400448 ret = msm_dsi_host_disable(msm_dsi1->host);
449 if (ret)
450 pr_err("%s: host1 disable failed, %d\n", __func__, ret);
451 }
452
453 ret = drm_panel_unprepare(panel);
454 if (ret)
455 pr_err("%s: Panel %d unprepare failed,%d\n", __func__, id, ret);
456
457 ret = msm_dsi_host_power_off(host);
458 if (ret)
459 pr_err("%s: host %d power off failed,%d\n", __func__, id, ret);
460
Hai Li678565c2015-06-10 13:18:18 -0400461 if (is_dual_dsi && msm_dsi1) {
Hai Lia6895542015-03-31 14:36:33 -0400462 ret = msm_dsi_host_power_off(msm_dsi1->host);
463 if (ret)
464 pr_err("%s: host1 power off failed, %d\n",
465 __func__, ret);
466 }
467}
468
469static void dsi_mgr_bridge_mode_set(struct drm_bridge *bridge,
470 struct drm_display_mode *mode,
471 struct drm_display_mode *adjusted_mode)
472{
473 int id = dsi_mgr_bridge_get_id(bridge);
474 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
475 struct msm_dsi *other_dsi = dsi_mgr_get_other_dsi(id);
476 struct mipi_dsi_host *host = msm_dsi->host;
Hai Li678565c2015-06-10 13:18:18 -0400477 bool is_dual_dsi = IS_DUAL_DSI();
Hai Lia6895542015-03-31 14:36:33 -0400478
479 DBG("set mode: %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x",
480 mode->base.id, mode->name,
481 mode->vrefresh, mode->clock,
482 mode->hdisplay, mode->hsync_start,
483 mode->hsync_end, mode->htotal,
484 mode->vdisplay, mode->vsync_start,
485 mode->vsync_end, mode->vtotal,
486 mode->type, mode->flags);
487
Hai Li678565c2015-06-10 13:18:18 -0400488 if (is_dual_dsi && (DSI_1 == id))
Hai Lia6895542015-03-31 14:36:33 -0400489 return;
490
491 msm_dsi_host_set_display_mode(host, adjusted_mode);
Hai Li678565c2015-06-10 13:18:18 -0400492 if (is_dual_dsi && other_dsi)
Hai Lia6895542015-03-31 14:36:33 -0400493 msm_dsi_host_set_display_mode(other_dsi->host, adjusted_mode);
494}
495
496static const struct drm_connector_funcs dsi_mgr_connector_funcs = {
497 .dpms = drm_atomic_helper_connector_dpms,
498 .detect = dsi_mgr_connector_detect,
499 .fill_modes = drm_helper_probe_single_connector_modes,
500 .destroy = dsi_mgr_connector_destroy,
501 .reset = drm_atomic_helper_connector_reset,
502 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
503 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
504};
505
506static const struct drm_connector_helper_funcs dsi_mgr_conn_helper_funcs = {
507 .get_modes = dsi_mgr_connector_get_modes,
508 .mode_valid = dsi_mgr_connector_mode_valid,
509 .best_encoder = dsi_mgr_connector_best_encoder,
510};
511
512static const struct drm_bridge_funcs dsi_mgr_bridge_funcs = {
513 .pre_enable = dsi_mgr_bridge_pre_enable,
514 .enable = dsi_mgr_bridge_enable,
515 .disable = dsi_mgr_bridge_disable,
516 .post_disable = dsi_mgr_bridge_post_disable,
517 .mode_set = dsi_mgr_bridge_mode_set,
518};
519
Archit Tanejac118e292015-07-31 14:06:10 +0530520/* initialize connector when we're connected to a drm_panel */
Hai Lia6895542015-03-31 14:36:33 -0400521struct drm_connector *msm_dsi_manager_connector_init(u8 id)
522{
523 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
524 struct drm_connector *connector = NULL;
525 struct dsi_connector *dsi_connector;
Hai Li6f6b2872015-04-23 14:13:21 -0400526 int ret, i;
Hai Lia6895542015-03-31 14:36:33 -0400527
528 dsi_connector = devm_kzalloc(msm_dsi->dev->dev,
529 sizeof(*dsi_connector), GFP_KERNEL);
530 if (!dsi_connector) {
531 ret = -ENOMEM;
532 goto fail;
533 }
534
535 dsi_connector->id = id;
536
537 connector = &dsi_connector->base;
538
539 ret = drm_connector_init(msm_dsi->dev, connector,
540 &dsi_mgr_connector_funcs, DRM_MODE_CONNECTOR_DSI);
541 if (ret)
542 goto fail;
543
544 drm_connector_helper_add(connector, &dsi_mgr_conn_helper_funcs);
545
546 /* Enable HPD to let hpd event is handled
547 * when panel is attached to the host.
548 */
549 connector->polled = DRM_CONNECTOR_POLL_HPD;
550
551 /* Display driver doesn't support interlace now. */
552 connector->interlace_allowed = 0;
553 connector->doublescan_allowed = 0;
554
555 ret = drm_connector_register(connector);
556 if (ret)
557 goto fail;
558
Hai Li6f6b2872015-04-23 14:13:21 -0400559 for (i = 0; i < MSM_DSI_ENCODER_NUM; i++)
560 drm_mode_connector_attach_encoder(connector,
561 msm_dsi->encoders[i]);
562
Hai Lia6895542015-03-31 14:36:33 -0400563 return connector;
564
565fail:
566 if (connector)
567 dsi_mgr_connector_destroy(connector);
568
569 return ERR_PTR(ret);
570}
571
572/* initialize bridge */
573struct drm_bridge *msm_dsi_manager_bridge_init(u8 id)
574{
575 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
576 struct drm_bridge *bridge = NULL;
577 struct dsi_bridge *dsi_bridge;
578 int ret;
579
580 dsi_bridge = devm_kzalloc(msm_dsi->dev->dev,
581 sizeof(*dsi_bridge), GFP_KERNEL);
582 if (!dsi_bridge) {
583 ret = -ENOMEM;
584 goto fail;
585 }
586
587 dsi_bridge->id = id;
588
589 bridge = &dsi_bridge->base;
590 bridge->funcs = &dsi_mgr_bridge_funcs;
591
592 ret = drm_bridge_attach(msm_dsi->dev, bridge);
593 if (ret)
594 goto fail;
595
596 return bridge;
597
598fail:
599 if (bridge)
600 msm_dsi_manager_bridge_destroy(bridge);
601
602 return ERR_PTR(ret);
603}
604
Archit Tanejac118e292015-07-31 14:06:10 +0530605struct drm_connector *msm_dsi_manager_ext_bridge_init(u8 id)
606{
607 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
608 struct drm_device *dev = msm_dsi->dev;
609 struct drm_encoder *encoder;
610 struct drm_bridge *int_bridge, *ext_bridge;
611 struct drm_connector *connector;
612 struct list_head *connector_list;
613
614 int_bridge = msm_dsi->bridge;
615 ext_bridge = msm_dsi->external_bridge =
616 msm_dsi_host_get_bridge(msm_dsi->host);
617
618 /*
619 * HACK: we may not know the external DSI bridge device's mode
620 * flags here. We'll get to know them only when the device
621 * attaches to the dsi host. For now, assume the bridge supports
622 * DSI video mode
623 */
624 encoder = msm_dsi->encoders[MSM_DSI_VIDEO_ENCODER_ID];
625
626 /* link the internal dsi bridge to the external bridge */
627 int_bridge->next = ext_bridge;
628 /* set the external bridge's encoder as dsi's encoder */
629 ext_bridge->encoder = encoder;
630
631 drm_bridge_attach(dev, ext_bridge);
632
633 /*
634 * we need the drm_connector created by the external bridge
635 * driver (or someone else) to feed it to our driver's
636 * priv->connector[] list, mainly for msm_fbdev_init()
637 */
638 connector_list = &dev->mode_config.connector_list;
639
640 list_for_each_entry(connector, connector_list, head) {
641 int i;
642
643 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
644 if (connector->encoder_ids[i] == encoder->base.id)
645 return connector;
646 }
647 }
648
649 return ERR_PTR(-ENODEV);
650}
651
Hai Lia6895542015-03-31 14:36:33 -0400652void msm_dsi_manager_bridge_destroy(struct drm_bridge *bridge)
653{
654}
655
656int msm_dsi_manager_phy_enable(int id,
657 const unsigned long bit_rate, const unsigned long esc_rate,
658 u32 *clk_pre, u32 *clk_post)
659{
660 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
661 struct msm_dsi_phy *phy = msm_dsi->phy;
Hai Li678565c2015-06-10 13:18:18 -0400662 int src_pll_id = IS_DUAL_DSI() ? DSI_CLOCK_MASTER : id;
Hai Li328e1a62015-07-03 10:09:46 -0400663 struct msm_dsi_pll *pll = msm_dsi_phy_get_pll(msm_dsi->phy);
Hai Lia6895542015-03-31 14:36:33 -0400664 int ret;
665
Hai Li13351cd2015-06-10 13:18:17 -0400666 ret = msm_dsi_phy_enable(phy, src_pll_id, bit_rate, esc_rate);
Hai Lia6895542015-03-31 14:36:33 -0400667 if (ret)
668 return ret;
669
Hai Li328e1a62015-07-03 10:09:46 -0400670 /*
671 * Reset DSI PHY silently changes its PLL registers to reset status,
672 * which will confuse clock driver and result in wrong output rate of
673 * link clocks. Restore PLL status if its PLL is being used as clock
674 * source.
675 */
676 if (!IS_DUAL_DSI() || (id == DSI_CLOCK_MASTER)) {
677 ret = msm_dsi_pll_restore_state(pll);
678 if (ret) {
679 pr_err("%s: failed to restore pll state\n", __func__);
680 msm_dsi_phy_disable(phy);
681 return ret;
682 }
683 }
684
Hai Lia6895542015-03-31 14:36:33 -0400685 msm_dsi->phy_enabled = true;
686 msm_dsi_phy_get_clk_pre_post(phy, clk_pre, clk_post);
687
688 return 0;
689}
690
691void msm_dsi_manager_phy_disable(int id)
692{
693 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
694 struct msm_dsi *mdsi = dsi_mgr_get_dsi(DSI_CLOCK_MASTER);
695 struct msm_dsi *sdsi = dsi_mgr_get_dsi(DSI_CLOCK_SLAVE);
696 struct msm_dsi_phy *phy = msm_dsi->phy;
Hai Li328e1a62015-07-03 10:09:46 -0400697 struct msm_dsi_pll *pll = msm_dsi_phy_get_pll(msm_dsi->phy);
698
699 /* Save PLL status if it is a clock source */
700 if (!IS_DUAL_DSI() || (id == DSI_CLOCK_MASTER))
701 msm_dsi_pll_save_state(pll);
Hai Lia6895542015-03-31 14:36:33 -0400702
703 /* disable DSI phy
704 * In dual-dsi configuration, the phy should be disabled for the
705 * first controller only when the second controller is disabled.
706 */
707 msm_dsi->phy_enabled = false;
Hai Li678565c2015-06-10 13:18:18 -0400708 if (IS_DUAL_DSI() && mdsi && sdsi) {
Hai Lia6895542015-03-31 14:36:33 -0400709 if (!mdsi->phy_enabled && !sdsi->phy_enabled) {
710 msm_dsi_phy_disable(sdsi->phy);
711 msm_dsi_phy_disable(mdsi->phy);
712 }
713 } else {
714 msm_dsi_phy_disable(phy);
715 }
716}
717
718int msm_dsi_manager_cmd_xfer(int id, const struct mipi_dsi_msg *msg)
719{
720 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
721 struct msm_dsi *msm_dsi0 = dsi_mgr_get_dsi(DSI_0);
722 struct mipi_dsi_host *host = msm_dsi->host;
723 bool is_read = (msg->rx_buf && msg->rx_len);
724 bool need_sync = (IS_SYNC_NEEDED() && !is_read);
725 int ret;
726
727 if (!msg->tx_buf || !msg->tx_len)
728 return 0;
729
730 /* In dual master case, panel requires the same commands sent to
731 * both DSI links. Host issues the command trigger to both links
732 * when DSI_1 calls the cmd transfer function, no matter it happens
733 * before or after DSI_0 cmd transfer.
734 */
735 if (need_sync && (id == DSI_0))
736 return is_read ? msg->rx_len : msg->tx_len;
737
738 if (need_sync && msm_dsi0) {
739 ret = msm_dsi_host_xfer_prepare(msm_dsi0->host, msg);
740 if (ret) {
741 pr_err("%s: failed to prepare non-trigger host, %d\n",
742 __func__, ret);
743 return ret;
744 }
745 }
746 ret = msm_dsi_host_xfer_prepare(host, msg);
747 if (ret) {
748 pr_err("%s: failed to prepare host, %d\n", __func__, ret);
749 goto restore_host0;
750 }
751
752 ret = is_read ? msm_dsi_host_cmd_rx(host, msg) :
753 msm_dsi_host_cmd_tx(host, msg);
754
755 msm_dsi_host_xfer_restore(host, msg);
756
757restore_host0:
758 if (need_sync && msm_dsi0)
759 msm_dsi_host_xfer_restore(msm_dsi0->host, msg);
760
761 return ret;
762}
763
764bool msm_dsi_manager_cmd_xfer_trigger(int id, u32 iova, u32 len)
765{
766 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
767 struct msm_dsi *msm_dsi0 = dsi_mgr_get_dsi(DSI_0);
768 struct mipi_dsi_host *host = msm_dsi->host;
769
770 if (IS_SYNC_NEEDED() && (id == DSI_0))
771 return false;
772
773 if (IS_SYNC_NEEDED() && msm_dsi0)
774 msm_dsi_host_cmd_xfer_commit(msm_dsi0->host, iova, len);
775
776 msm_dsi_host_cmd_xfer_commit(host, iova, len);
777
778 return true;
779}
780
781int msm_dsi_manager_register(struct msm_dsi *msm_dsi)
782{
783 struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
784 int id = msm_dsi->id;
Hai Lia6895542015-03-31 14:36:33 -0400785 int ret;
786
787 if (id > DSI_MAX) {
788 pr_err("%s: invalid id %d\n", __func__, id);
789 return -EINVAL;
790 }
791
792 if (msm_dsim->dsi[id]) {
793 pr_err("%s: dsi%d already registered\n", __func__, id);
794 return -EBUSY;
795 }
796
797 msm_dsim->dsi[id] = msm_dsi;
798
Hai Li678565c2015-06-10 13:18:18 -0400799 ret = dsi_mgr_parse_dual_dsi(msm_dsi->pdev->dev.of_node, id);
Hai Lia6895542015-03-31 14:36:33 -0400800 if (ret) {
Hai Li678565c2015-06-10 13:18:18 -0400801 pr_err("%s: failed to parse dual DSI info\n", __func__);
Hai Li9d32c4982015-05-15 13:04:05 -0400802 goto fail;
Hai Lia6895542015-03-31 14:36:33 -0400803 }
804
Hai Li9d32c4982015-05-15 13:04:05 -0400805 ret = dsi_mgr_host_register(id);
806 if (ret) {
807 pr_err("%s: failed to register mipi dsi host for DSI %d\n",
808 __func__, id);
809 goto fail;
Hai Lia6895542015-03-31 14:36:33 -0400810 }
811
Hai Li9d32c4982015-05-15 13:04:05 -0400812 return 0;
813
814fail:
815 msm_dsim->dsi[id] = NULL;
Hai Lia6895542015-03-31 14:36:33 -0400816 return ret;
817}
818
819void msm_dsi_manager_unregister(struct msm_dsi *msm_dsi)
820{
821 struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
822
823 if (msm_dsi->host)
824 msm_dsi_host_unregister(msm_dsi->host);
825 msm_dsim->dsi[msm_dsi->id] = NULL;
826}
827