blob: 2bd8dad761056ccec772883a0089fb4ef081c0a8 [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{
Archit Taneja8208ed92016-05-02 11:05:53 +0530201 struct dsi_connector *dsi_connector = to_dsi_connector(connector);
202
Hai Lia6895542015-03-31 14:36:33 -0400203 DBG("");
Archit Taneja8208ed92016-05-02 11:05:53 +0530204
Hai Lia6895542015-03-31 14:36:33 -0400205 drm_connector_cleanup(connector);
Archit Taneja8208ed92016-05-02 11:05:53 +0530206
207 kfree(dsi_connector);
Hai Lia6895542015-03-31 14:36:33 -0400208}
209
210static void dsi_dual_connector_fix_modes(struct drm_connector *connector)
211{
212 struct drm_display_mode *mode, *m;
213
214 /* Only support left-right mode */
215 list_for_each_entry_safe(mode, m, &connector->probed_modes, head) {
216 mode->clock >>= 1;
217 mode->hdisplay >>= 1;
218 mode->hsync_start >>= 1;
219 mode->hsync_end >>= 1;
220 mode->htotal >>= 1;
221 drm_mode_set_name(mode);
222 }
223}
224
225static int dsi_dual_connector_tile_init(
226 struct drm_connector *connector, int id)
227{
228 struct drm_display_mode *mode;
229 /* Fake topology id */
230 char topo_id[8] = {'M', 'S', 'M', 'D', 'U', 'D', 'S', 'I'};
231
232 if (connector->tile_group) {
233 DBG("Tile property has been initialized");
234 return 0;
235 }
236
237 /* Use the first mode only for now */
238 mode = list_first_entry(&connector->probed_modes,
239 struct drm_display_mode,
240 head);
241 if (!mode)
242 return -EINVAL;
243
244 connector->tile_group = drm_mode_get_tile_group(
245 connector->dev, topo_id);
246 if (!connector->tile_group)
247 connector->tile_group = drm_mode_create_tile_group(
248 connector->dev, topo_id);
249 if (!connector->tile_group) {
250 pr_err("%s: failed to create tile group\n", __func__);
251 return -ENOMEM;
252 }
253
254 connector->has_tile = true;
255 connector->tile_is_single_monitor = true;
256
257 /* mode has been fixed */
258 connector->tile_h_size = mode->hdisplay;
259 connector->tile_v_size = mode->vdisplay;
260
261 /* Only support left-right mode */
262 connector->num_h_tile = 2;
263 connector->num_v_tile = 1;
264
265 connector->tile_v_loc = 0;
266 connector->tile_h_loc = (id == DSI_RIGHT) ? 1 : 0;
267
268 return 0;
269}
270
271static int dsi_mgr_connector_get_modes(struct drm_connector *connector)
272{
273 int id = dsi_mgr_connector_get_id(connector);
274 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
275 struct drm_panel *panel = msm_dsi->panel;
276 int ret, num;
277
278 if (!panel)
279 return 0;
280
281 /* Since we have 2 connectors, but only 1 drm_panel in dual DSI mode,
282 * panel should not attach to any connector.
283 * Only temporarily attach panel to the current connector here,
284 * to let panel set mode to this connector.
285 */
286 drm_panel_attach(panel, connector);
287 num = drm_panel_get_modes(panel);
288 drm_panel_detach(panel);
289 if (!num)
290 return 0;
291
Hai Li678565c2015-06-10 13:18:18 -0400292 if (IS_DUAL_DSI()) {
Hai Lia6895542015-03-31 14:36:33 -0400293 /* report half resolution to user */
294 dsi_dual_connector_fix_modes(connector);
295 ret = dsi_dual_connector_tile_init(connector, id);
296 if (ret)
297 return ret;
298 ret = drm_mode_connector_set_tile_property(connector);
299 if (ret) {
300 pr_err("%s: set tile property failed, %d\n",
301 __func__, ret);
302 return ret;
303 }
304 }
305
306 return num;
307}
308
309static int dsi_mgr_connector_mode_valid(struct drm_connector *connector,
310 struct drm_display_mode *mode)
311{
312 int id = dsi_mgr_connector_get_id(connector);
313 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
314 struct drm_encoder *encoder = msm_dsi_get_encoder(msm_dsi);
315 struct msm_drm_private *priv = connector->dev->dev_private;
316 struct msm_kms *kms = priv->kms;
317 long actual, requested;
318
319 DBG("");
320 requested = 1000 * mode->clock;
321 actual = kms->funcs->round_pixclk(kms, requested, encoder);
322
323 DBG("requested=%ld, actual=%ld", requested, actual);
324 if (actual != requested)
325 return MODE_CLOCK_RANGE;
326
327 return MODE_OK;
328}
329
330static struct drm_encoder *
331dsi_mgr_connector_best_encoder(struct drm_connector *connector)
332{
333 int id = dsi_mgr_connector_get_id(connector);
334 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
335
336 DBG("");
337 return msm_dsi_get_encoder(msm_dsi);
338}
339
340static void dsi_mgr_bridge_pre_enable(struct drm_bridge *bridge)
341{
342 int id = dsi_mgr_bridge_get_id(bridge);
343 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
344 struct msm_dsi *msm_dsi1 = dsi_mgr_get_dsi(DSI_1);
345 struct mipi_dsi_host *host = msm_dsi->host;
346 struct drm_panel *panel = msm_dsi->panel;
Hai Li678565c2015-06-10 13:18:18 -0400347 bool is_dual_dsi = IS_DUAL_DSI();
Hai Lia6895542015-03-31 14:36:33 -0400348 int ret;
349
350 DBG("id=%d", id);
Archit Taneja6f054ec2015-08-03 14:08:33 +0530351 if (!msm_dsi_device_connected(msm_dsi) ||
352 (is_dual_dsi && (DSI_1 == id)))
Hai Lia6895542015-03-31 14:36:33 -0400353 return;
354
355 ret = msm_dsi_host_power_on(host);
356 if (ret) {
357 pr_err("%s: power on host %d failed, %d\n", __func__, id, ret);
358 goto host_on_fail;
359 }
360
Hai Li678565c2015-06-10 13:18:18 -0400361 if (is_dual_dsi && msm_dsi1) {
Hai Lia6895542015-03-31 14:36:33 -0400362 ret = msm_dsi_host_power_on(msm_dsi1->host);
363 if (ret) {
364 pr_err("%s: power on host1 failed, %d\n",
365 __func__, ret);
366 goto host1_on_fail;
367 }
368 }
369
370 /* Always call panel functions once, because even for dual panels,
371 * there is only one drm_panel instance.
372 */
Archit Taneja09992e4d2015-08-03 14:09:36 +0530373 if (panel) {
374 ret = drm_panel_prepare(panel);
375 if (ret) {
376 pr_err("%s: prepare panel %d failed, %d\n", __func__,
377 id, ret);
378 goto panel_prep_fail;
379 }
Hai Lia6895542015-03-31 14:36:33 -0400380 }
381
382 ret = msm_dsi_host_enable(host);
383 if (ret) {
384 pr_err("%s: enable host %d failed, %d\n", __func__, id, ret);
385 goto host_en_fail;
386 }
387
Hai Li678565c2015-06-10 13:18:18 -0400388 if (is_dual_dsi && msm_dsi1) {
Hai Lia6895542015-03-31 14:36:33 -0400389 ret = msm_dsi_host_enable(msm_dsi1->host);
390 if (ret) {
391 pr_err("%s: enable host1 failed, %d\n", __func__, ret);
392 goto host1_en_fail;
393 }
394 }
395
Archit Taneja09992e4d2015-08-03 14:09:36 +0530396 if (panel) {
397 ret = drm_panel_enable(panel);
398 if (ret) {
399 pr_err("%s: enable panel %d failed, %d\n", __func__, id,
400 ret);
401 goto panel_en_fail;
402 }
Hai Lia6895542015-03-31 14:36:33 -0400403 }
404
405 return;
406
407panel_en_fail:
Hai Li678565c2015-06-10 13:18:18 -0400408 if (is_dual_dsi && msm_dsi1)
Hai Lia6895542015-03-31 14:36:33 -0400409 msm_dsi_host_disable(msm_dsi1->host);
410host1_en_fail:
411 msm_dsi_host_disable(host);
412host_en_fail:
Archit Taneja09992e4d2015-08-03 14:09:36 +0530413 if (panel)
414 drm_panel_unprepare(panel);
Hai Lia6895542015-03-31 14:36:33 -0400415panel_prep_fail:
Hai Li678565c2015-06-10 13:18:18 -0400416 if (is_dual_dsi && msm_dsi1)
Hai Lia6895542015-03-31 14:36:33 -0400417 msm_dsi_host_power_off(msm_dsi1->host);
418host1_on_fail:
419 msm_dsi_host_power_off(host);
420host_on_fail:
421 return;
422}
423
424static void dsi_mgr_bridge_enable(struct drm_bridge *bridge)
425{
426 DBG("");
427}
428
429static void dsi_mgr_bridge_disable(struct drm_bridge *bridge)
430{
431 DBG("");
432}
433
434static void dsi_mgr_bridge_post_disable(struct drm_bridge *bridge)
435{
436 int id = dsi_mgr_bridge_get_id(bridge);
437 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
438 struct msm_dsi *msm_dsi1 = dsi_mgr_get_dsi(DSI_1);
439 struct mipi_dsi_host *host = msm_dsi->host;
440 struct drm_panel *panel = msm_dsi->panel;
Hai Li678565c2015-06-10 13:18:18 -0400441 bool is_dual_dsi = IS_DUAL_DSI();
Hai Lia6895542015-03-31 14:36:33 -0400442 int ret;
443
444 DBG("id=%d", id);
445
Archit Taneja6f054ec2015-08-03 14:08:33 +0530446 if (!msm_dsi_device_connected(msm_dsi) ||
447 (is_dual_dsi && (DSI_1 == id)))
Hai Lia6895542015-03-31 14:36:33 -0400448 return;
449
Archit Taneja09992e4d2015-08-03 14:09:36 +0530450 if (panel) {
451 ret = drm_panel_disable(panel);
452 if (ret)
453 pr_err("%s: Panel %d OFF failed, %d\n", __func__, id,
454 ret);
455 }
Hai Lia6895542015-03-31 14:36:33 -0400456
457 ret = msm_dsi_host_disable(host);
458 if (ret)
459 pr_err("%s: host %d disable 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_disable(msm_dsi1->host);
463 if (ret)
464 pr_err("%s: host1 disable failed, %d\n", __func__, ret);
465 }
466
Archit Taneja09992e4d2015-08-03 14:09:36 +0530467 if (panel) {
468 ret = drm_panel_unprepare(panel);
469 if (ret)
470 pr_err("%s: Panel %d unprepare failed,%d\n", __func__,
471 id, ret);
472 }
Hai Lia6895542015-03-31 14:36:33 -0400473
474 ret = msm_dsi_host_power_off(host);
475 if (ret)
476 pr_err("%s: host %d power off failed,%d\n", __func__, id, ret);
477
Hai Li678565c2015-06-10 13:18:18 -0400478 if (is_dual_dsi && msm_dsi1) {
Hai Lia6895542015-03-31 14:36:33 -0400479 ret = msm_dsi_host_power_off(msm_dsi1->host);
480 if (ret)
481 pr_err("%s: host1 power off failed, %d\n",
482 __func__, ret);
483 }
484}
485
486static void dsi_mgr_bridge_mode_set(struct drm_bridge *bridge,
487 struct drm_display_mode *mode,
488 struct drm_display_mode *adjusted_mode)
489{
490 int id = dsi_mgr_bridge_get_id(bridge);
491 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
492 struct msm_dsi *other_dsi = dsi_mgr_get_other_dsi(id);
493 struct mipi_dsi_host *host = msm_dsi->host;
Hai Li678565c2015-06-10 13:18:18 -0400494 bool is_dual_dsi = IS_DUAL_DSI();
Hai Lia6895542015-03-31 14:36:33 -0400495
496 DBG("set mode: %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x",
497 mode->base.id, mode->name,
498 mode->vrefresh, mode->clock,
499 mode->hdisplay, mode->hsync_start,
500 mode->hsync_end, mode->htotal,
501 mode->vdisplay, mode->vsync_start,
502 mode->vsync_end, mode->vtotal,
503 mode->type, mode->flags);
504
Hai Li678565c2015-06-10 13:18:18 -0400505 if (is_dual_dsi && (DSI_1 == id))
Hai Lia6895542015-03-31 14:36:33 -0400506 return;
507
508 msm_dsi_host_set_display_mode(host, adjusted_mode);
Hai Li678565c2015-06-10 13:18:18 -0400509 if (is_dual_dsi && other_dsi)
Hai Lia6895542015-03-31 14:36:33 -0400510 msm_dsi_host_set_display_mode(other_dsi->host, adjusted_mode);
511}
512
513static const struct drm_connector_funcs dsi_mgr_connector_funcs = {
514 .dpms = drm_atomic_helper_connector_dpms,
515 .detect = dsi_mgr_connector_detect,
516 .fill_modes = drm_helper_probe_single_connector_modes,
517 .destroy = dsi_mgr_connector_destroy,
518 .reset = drm_atomic_helper_connector_reset,
519 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
520 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
521};
522
523static const struct drm_connector_helper_funcs dsi_mgr_conn_helper_funcs = {
524 .get_modes = dsi_mgr_connector_get_modes,
525 .mode_valid = dsi_mgr_connector_mode_valid,
526 .best_encoder = dsi_mgr_connector_best_encoder,
527};
528
529static const struct drm_bridge_funcs dsi_mgr_bridge_funcs = {
530 .pre_enable = dsi_mgr_bridge_pre_enable,
531 .enable = dsi_mgr_bridge_enable,
532 .disable = dsi_mgr_bridge_disable,
533 .post_disable = dsi_mgr_bridge_post_disable,
534 .mode_set = dsi_mgr_bridge_mode_set,
535};
536
Archit Tanejac118e292015-07-31 14:06:10 +0530537/* initialize connector when we're connected to a drm_panel */
Hai Lia6895542015-03-31 14:36:33 -0400538struct drm_connector *msm_dsi_manager_connector_init(u8 id)
539{
540 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
541 struct drm_connector *connector = NULL;
542 struct dsi_connector *dsi_connector;
Hai Li6f6b2872015-04-23 14:13:21 -0400543 int ret, i;
Hai Lia6895542015-03-31 14:36:33 -0400544
Archit Taneja8208ed92016-05-02 11:05:53 +0530545 dsi_connector = kzalloc(sizeof(*dsi_connector), GFP_KERNEL);
546 if (!dsi_connector)
547 return ERR_PTR(-ENOMEM);
Hai Lia6895542015-03-31 14:36:33 -0400548
549 dsi_connector->id = id;
550
551 connector = &dsi_connector->base;
552
553 ret = drm_connector_init(msm_dsi->dev, connector,
554 &dsi_mgr_connector_funcs, DRM_MODE_CONNECTOR_DSI);
555 if (ret)
Archit Taneja8208ed92016-05-02 11:05:53 +0530556 return ERR_PTR(ret);
Hai Lia6895542015-03-31 14:36:33 -0400557
558 drm_connector_helper_add(connector, &dsi_mgr_conn_helper_funcs);
559
560 /* Enable HPD to let hpd event is handled
561 * when panel is attached to the host.
562 */
563 connector->polled = DRM_CONNECTOR_POLL_HPD;
564
565 /* Display driver doesn't support interlace now. */
566 connector->interlace_allowed = 0;
567 connector->doublescan_allowed = 0;
568
Hai Li6f6b2872015-04-23 14:13:21 -0400569 for (i = 0; i < MSM_DSI_ENCODER_NUM; i++)
570 drm_mode_connector_attach_encoder(connector,
571 msm_dsi->encoders[i]);
572
Hai Lia6895542015-03-31 14:36:33 -0400573 return connector;
Hai Lia6895542015-03-31 14:36:33 -0400574}
575
576/* initialize bridge */
577struct drm_bridge *msm_dsi_manager_bridge_init(u8 id)
578{
579 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
580 struct drm_bridge *bridge = NULL;
581 struct dsi_bridge *dsi_bridge;
Laurent Pinchart3bb80f22016-11-28 17:59:08 +0200582 struct drm_encoder *encoder;
Hai Lia6895542015-03-31 14:36:33 -0400583 int ret;
584
585 dsi_bridge = devm_kzalloc(msm_dsi->dev->dev,
586 sizeof(*dsi_bridge), GFP_KERNEL);
587 if (!dsi_bridge) {
588 ret = -ENOMEM;
589 goto fail;
590 }
591
592 dsi_bridge->id = id;
593
Laurent Pinchart3bb80f22016-11-28 17:59:08 +0200594 /*
595 * HACK: we may not know the external DSI bridge device's mode
596 * flags here. We'll get to know them only when the device
597 * attaches to the dsi host. For now, assume the bridge supports
598 * DSI video mode
599 */
600 encoder = msm_dsi->encoders[MSM_DSI_VIDEO_ENCODER_ID];
601
Hai Lia6895542015-03-31 14:36:33 -0400602 bridge = &dsi_bridge->base;
603 bridge->funcs = &dsi_mgr_bridge_funcs;
604
Laurent Pinchart3bb80f22016-11-28 17:59:08 +0200605 ret = drm_bridge_attach(encoder, bridge, NULL);
Hai Lia6895542015-03-31 14:36:33 -0400606 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
Archit Tanejac118e292015-07-31 14:06:10 +0530618struct 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 */
Laurent Pinchart3bb80f22016-11-28 17:59:08 +0200640 drm_bridge_attach(encoder, ext_bridge, int_bridge);
Archit Tanejac118e292015-07-31 14:06:10 +0530641
642 /*
643 * we need the drm_connector created by the external bridge
644 * driver (or someone else) to feed it to our driver's
645 * priv->connector[] list, mainly for msm_fbdev_init()
646 */
647 connector_list = &dev->mode_config.connector_list;
648
649 list_for_each_entry(connector, connector_list, head) {
650 int i;
651
652 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
653 if (connector->encoder_ids[i] == encoder->base.id)
654 return connector;
655 }
656 }
657
658 return ERR_PTR(-ENODEV);
659}
660
Hai Lia6895542015-03-31 14:36:33 -0400661void msm_dsi_manager_bridge_destroy(struct drm_bridge *bridge)
662{
663}
664
665int msm_dsi_manager_phy_enable(int id,
666 const unsigned long bit_rate, const unsigned long esc_rate,
667 u32 *clk_pre, u32 *clk_post)
668{
669 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
670 struct msm_dsi_phy *phy = msm_dsi->phy;
Hai Li678565c2015-06-10 13:18:18 -0400671 int src_pll_id = IS_DUAL_DSI() ? DSI_CLOCK_MASTER : id;
Hai Li328e1a62015-07-03 10:09:46 -0400672 struct msm_dsi_pll *pll = msm_dsi_phy_get_pll(msm_dsi->phy);
Hai Lia6895542015-03-31 14:36:33 -0400673 int ret;
674
Hai Li13351cd2015-06-10 13:18:17 -0400675 ret = msm_dsi_phy_enable(phy, src_pll_id, bit_rate, esc_rate);
Hai Lia6895542015-03-31 14:36:33 -0400676 if (ret)
677 return ret;
678
Hai Li328e1a62015-07-03 10:09:46 -0400679 /*
680 * Reset DSI PHY silently changes its PLL registers to reset status,
681 * which will confuse clock driver and result in wrong output rate of
682 * link clocks. Restore PLL status if its PLL is being used as clock
683 * source.
684 */
685 if (!IS_DUAL_DSI() || (id == DSI_CLOCK_MASTER)) {
686 ret = msm_dsi_pll_restore_state(pll);
687 if (ret) {
688 pr_err("%s: failed to restore pll state\n", __func__);
689 msm_dsi_phy_disable(phy);
690 return ret;
691 }
692 }
693
Hai Lia6895542015-03-31 14:36:33 -0400694 msm_dsi->phy_enabled = true;
695 msm_dsi_phy_get_clk_pre_post(phy, clk_pre, clk_post);
696
697 return 0;
698}
699
700void msm_dsi_manager_phy_disable(int id)
701{
702 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
703 struct msm_dsi *mdsi = dsi_mgr_get_dsi(DSI_CLOCK_MASTER);
704 struct msm_dsi *sdsi = dsi_mgr_get_dsi(DSI_CLOCK_SLAVE);
705 struct msm_dsi_phy *phy = msm_dsi->phy;
Hai Li328e1a62015-07-03 10:09:46 -0400706 struct msm_dsi_pll *pll = msm_dsi_phy_get_pll(msm_dsi->phy);
707
708 /* Save PLL status if it is a clock source */
709 if (!IS_DUAL_DSI() || (id == DSI_CLOCK_MASTER))
710 msm_dsi_pll_save_state(pll);
Hai Lia6895542015-03-31 14:36:33 -0400711
712 /* disable DSI phy
713 * In dual-dsi configuration, the phy should be disabled for the
714 * first controller only when the second controller is disabled.
715 */
716 msm_dsi->phy_enabled = false;
Hai Li678565c2015-06-10 13:18:18 -0400717 if (IS_DUAL_DSI() && mdsi && sdsi) {
Hai Lia6895542015-03-31 14:36:33 -0400718 if (!mdsi->phy_enabled && !sdsi->phy_enabled) {
719 msm_dsi_phy_disable(sdsi->phy);
720 msm_dsi_phy_disable(mdsi->phy);
721 }
722 } else {
723 msm_dsi_phy_disable(phy);
724 }
725}
726
727int msm_dsi_manager_cmd_xfer(int id, const struct mipi_dsi_msg *msg)
728{
729 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
730 struct msm_dsi *msm_dsi0 = dsi_mgr_get_dsi(DSI_0);
731 struct mipi_dsi_host *host = msm_dsi->host;
732 bool is_read = (msg->rx_buf && msg->rx_len);
733 bool need_sync = (IS_SYNC_NEEDED() && !is_read);
734 int ret;
735
736 if (!msg->tx_buf || !msg->tx_len)
737 return 0;
738
739 /* In dual master case, panel requires the same commands sent to
740 * both DSI links. Host issues the command trigger to both links
741 * when DSI_1 calls the cmd transfer function, no matter it happens
742 * before or after DSI_0 cmd transfer.
743 */
744 if (need_sync && (id == DSI_0))
745 return is_read ? msg->rx_len : msg->tx_len;
746
747 if (need_sync && msm_dsi0) {
748 ret = msm_dsi_host_xfer_prepare(msm_dsi0->host, msg);
749 if (ret) {
750 pr_err("%s: failed to prepare non-trigger host, %d\n",
751 __func__, ret);
752 return ret;
753 }
754 }
755 ret = msm_dsi_host_xfer_prepare(host, msg);
756 if (ret) {
757 pr_err("%s: failed to prepare host, %d\n", __func__, ret);
758 goto restore_host0;
759 }
760
761 ret = is_read ? msm_dsi_host_cmd_rx(host, msg) :
762 msm_dsi_host_cmd_tx(host, msg);
763
764 msm_dsi_host_xfer_restore(host, msg);
765
766restore_host0:
767 if (need_sync && msm_dsi0)
768 msm_dsi_host_xfer_restore(msm_dsi0->host, msg);
769
770 return ret;
771}
772
Archit Taneja4ff9d4c2015-10-13 12:20:47 +0530773bool msm_dsi_manager_cmd_xfer_trigger(int id, u32 dma_base, u32 len)
Hai Lia6895542015-03-31 14:36:33 -0400774{
775 struct msm_dsi *msm_dsi = dsi_mgr_get_dsi(id);
776 struct msm_dsi *msm_dsi0 = dsi_mgr_get_dsi(DSI_0);
777 struct mipi_dsi_host *host = msm_dsi->host;
778
779 if (IS_SYNC_NEEDED() && (id == DSI_0))
780 return false;
781
782 if (IS_SYNC_NEEDED() && msm_dsi0)
Archit Taneja4ff9d4c2015-10-13 12:20:47 +0530783 msm_dsi_host_cmd_xfer_commit(msm_dsi0->host, dma_base, len);
Hai Lia6895542015-03-31 14:36:33 -0400784
Archit Taneja4ff9d4c2015-10-13 12:20:47 +0530785 msm_dsi_host_cmd_xfer_commit(host, dma_base, len);
Hai Lia6895542015-03-31 14:36:33 -0400786
787 return true;
788}
789
790int msm_dsi_manager_register(struct msm_dsi *msm_dsi)
791{
792 struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
793 int id = msm_dsi->id;
Hai Lia6895542015-03-31 14:36:33 -0400794 int ret;
795
796 if (id > DSI_MAX) {
797 pr_err("%s: invalid id %d\n", __func__, id);
798 return -EINVAL;
799 }
800
801 if (msm_dsim->dsi[id]) {
802 pr_err("%s: dsi%d already registered\n", __func__, id);
803 return -EBUSY;
804 }
805
806 msm_dsim->dsi[id] = msm_dsi;
807
Hai Li678565c2015-06-10 13:18:18 -0400808 ret = dsi_mgr_parse_dual_dsi(msm_dsi->pdev->dev.of_node, id);
Hai Lia6895542015-03-31 14:36:33 -0400809 if (ret) {
Hai Li678565c2015-06-10 13:18:18 -0400810 pr_err("%s: failed to parse dual DSI info\n", __func__);
Hai Li9d32c4982015-05-15 13:04:05 -0400811 goto fail;
Hai Lia6895542015-03-31 14:36:33 -0400812 }
813
Hai Li9d32c4982015-05-15 13:04:05 -0400814 ret = dsi_mgr_host_register(id);
815 if (ret) {
816 pr_err("%s: failed to register mipi dsi host for DSI %d\n",
817 __func__, id);
818 goto fail;
Hai Lia6895542015-03-31 14:36:33 -0400819 }
820
Hai Li9d32c4982015-05-15 13:04:05 -0400821 return 0;
822
823fail:
824 msm_dsim->dsi[id] = NULL;
Hai Lia6895542015-03-31 14:36:33 -0400825 return ret;
826}
827
828void msm_dsi_manager_unregister(struct msm_dsi *msm_dsi)
829{
830 struct msm_dsi_manager *msm_dsim = &msm_dsim_glb;
831
832 if (msm_dsi->host)
833 msm_dsi_host_unregister(msm_dsi->host);
834 msm_dsim->dsi[msm_dsi->id] = NULL;
835}
836