blob: dc4f38f7028652ea466a5d780b7a6f5002e2d53d [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 "dsi.h"
15
16struct drm_encoder *msm_dsi_get_encoder(struct msm_dsi *msm_dsi)
17{
18 if (!msm_dsi || !msm_dsi->panel)
19 return NULL;
20
21 return (msm_dsi->panel_flags & MIPI_DSI_MODE_VIDEO) ?
22 msm_dsi->encoders[MSM_DSI_VIDEO_ENCODER_ID] :
23 msm_dsi->encoders[MSM_DSI_CMD_ENCODER_ID];
24}
25
Hai Liec31abf2015-05-15 13:04:06 -040026static int dsi_get_phy(struct msm_dsi *msm_dsi)
27{
28 struct platform_device *pdev = msm_dsi->pdev;
29 struct platform_device *phy_pdev;
30 struct device_node *phy_node;
31
32 phy_node = of_parse_phandle(pdev->dev.of_node, "qcom,dsi-phy", 0);
33 if (!phy_node) {
34 dev_err(&pdev->dev, "cannot find phy device\n");
35 return -ENXIO;
36 }
37
38 phy_pdev = of_find_device_by_node(phy_node);
39 if (phy_pdev)
40 msm_dsi->phy = platform_get_drvdata(phy_pdev);
41
42 of_node_put(phy_node);
43
44 if (!phy_pdev || !msm_dsi->phy) {
45 dev_err(&pdev->dev, "%s: phy driver is not ready\n", __func__);
46 return -EPROBE_DEFER;
47 }
48
49 msm_dsi->phy_dev = get_device(&phy_pdev->dev);
50
51 return 0;
52}
53
Hai Lia6895542015-03-31 14:36:33 -040054static void dsi_destroy(struct msm_dsi *msm_dsi)
55{
56 if (!msm_dsi)
57 return;
58
59 msm_dsi_manager_unregister(msm_dsi);
Hai Li9d32c4982015-05-15 13:04:05 -040060
Hai Liec31abf2015-05-15 13:04:06 -040061 if (msm_dsi->phy_dev) {
62 put_device(msm_dsi->phy_dev);
Hai Li9d32c4982015-05-15 13:04:05 -040063 msm_dsi->phy = NULL;
Hai Liec31abf2015-05-15 13:04:06 -040064 msm_dsi->phy_dev = NULL;
Hai Li9d32c4982015-05-15 13:04:05 -040065 }
66
Hai Lia6895542015-03-31 14:36:33 -040067 if (msm_dsi->host) {
68 msm_dsi_host_destroy(msm_dsi->host);
69 msm_dsi->host = NULL;
70 }
71
72 platform_set_drvdata(msm_dsi->pdev, NULL);
73}
74
75static struct msm_dsi *dsi_init(struct platform_device *pdev)
76{
77 struct msm_dsi *msm_dsi = NULL;
78 int ret;
79
80 if (!pdev) {
Hai Lia6895542015-03-31 14:36:33 -040081 ret = -ENXIO;
82 goto fail;
83 }
84
85 msm_dsi = devm_kzalloc(&pdev->dev, sizeof(*msm_dsi), GFP_KERNEL);
86 if (!msm_dsi) {
87 ret = -ENOMEM;
88 goto fail;
89 }
90 DBG("dsi probed=%p", msm_dsi);
91
92 msm_dsi->pdev = pdev;
93 platform_set_drvdata(pdev, msm_dsi);
94
95 /* Init dsi host */
96 ret = msm_dsi_host_init(msm_dsi);
97 if (ret)
98 goto fail;
99
Hai Liec31abf2015-05-15 13:04:06 -0400100 /* GET dsi PHY */
101 ret = dsi_get_phy(msm_dsi);
102 if (ret)
Hai Li9d32c4982015-05-15 13:04:05 -0400103 goto fail;
Hai Li9d32c4982015-05-15 13:04:05 -0400104
Hai Lia6895542015-03-31 14:36:33 -0400105 /* Register to dsi manager */
106 ret = msm_dsi_manager_register(msm_dsi);
107 if (ret)
108 goto fail;
109
110 return msm_dsi;
111
112fail:
Markus Elfringa60bbb22015-06-27 22:05:31 +0200113 dsi_destroy(msm_dsi);
Hai Lia6895542015-03-31 14:36:33 -0400114 return ERR_PTR(ret);
115}
116
117static int dsi_bind(struct device *dev, struct device *master, void *data)
118{
119 struct drm_device *drm = dev_get_drvdata(master);
120 struct msm_drm_private *priv = drm->dev_private;
121 struct platform_device *pdev = to_platform_device(dev);
122 struct msm_dsi *msm_dsi;
123
124 DBG("");
125 msm_dsi = dsi_init(pdev);
126 if (IS_ERR(msm_dsi))
127 return PTR_ERR(msm_dsi);
128
129 priv->dsi[msm_dsi->id] = msm_dsi;
130
131 return 0;
132}
133
134static void dsi_unbind(struct device *dev, struct device *master,
135 void *data)
136{
137 struct drm_device *drm = dev_get_drvdata(master);
138 struct msm_drm_private *priv = drm->dev_private;
139 struct msm_dsi *msm_dsi = dev_get_drvdata(dev);
140 int id = msm_dsi->id;
141
142 if (priv->dsi[id]) {
143 dsi_destroy(msm_dsi);
144 priv->dsi[id] = NULL;
145 }
146}
147
148static const struct component_ops dsi_ops = {
149 .bind = dsi_bind,
150 .unbind = dsi_unbind,
151};
152
153static int dsi_dev_probe(struct platform_device *pdev)
154{
155 return component_add(&pdev->dev, &dsi_ops);
156}
157
158static int dsi_dev_remove(struct platform_device *pdev)
159{
160 DBG("");
161 component_del(&pdev->dev, &dsi_ops);
162 return 0;
163}
164
165static const struct of_device_id dt_match[] = {
166 { .compatible = "qcom,mdss-dsi-ctrl" },
167 {}
168};
169
170static struct platform_driver dsi_driver = {
171 .probe = dsi_dev_probe,
172 .remove = dsi_dev_remove,
173 .driver = {
174 .name = "msm_dsi",
175 .of_match_table = dt_match,
176 },
177};
178
179void __init msm_dsi_register(void)
180{
181 DBG("");
Hai Liec31abf2015-05-15 13:04:06 -0400182 msm_dsi_phy_driver_register();
Hai Lia6895542015-03-31 14:36:33 -0400183 platform_driver_register(&dsi_driver);
184}
185
186void __exit msm_dsi_unregister(void)
187{
188 DBG("");
Hai Liec31abf2015-05-15 13:04:06 -0400189 msm_dsi_phy_driver_unregister();
Hai Lia6895542015-03-31 14:36:33 -0400190 platform_driver_unregister(&dsi_driver);
191}
192
193int msm_dsi_modeset_init(struct msm_dsi *msm_dsi, struct drm_device *dev,
194 struct drm_encoder *encoders[MSM_DSI_ENCODER_NUM])
195{
196 struct msm_drm_private *priv = dev->dev_private;
197 int ret, i;
198
199 if (WARN_ON(!encoders[MSM_DSI_VIDEO_ENCODER_ID] ||
200 !encoders[MSM_DSI_CMD_ENCODER_ID]))
201 return -EINVAL;
202
203 msm_dsi->dev = dev;
204
205 ret = msm_dsi_host_modeset_init(msm_dsi->host, dev);
206 if (ret) {
207 dev_err(dev->dev, "failed to modeset init host: %d\n", ret);
208 goto fail;
209 }
210
211 msm_dsi->bridge = msm_dsi_manager_bridge_init(msm_dsi->id);
212 if (IS_ERR(msm_dsi->bridge)) {
213 ret = PTR_ERR(msm_dsi->bridge);
214 dev_err(dev->dev, "failed to create dsi bridge: %d\n", ret);
215 msm_dsi->bridge = NULL;
216 goto fail;
217 }
218
Hai Li6f6b2872015-04-23 14:13:21 -0400219 for (i = 0; i < MSM_DSI_ENCODER_NUM; i++) {
220 encoders[i]->bridge = msm_dsi->bridge;
221 msm_dsi->encoders[i] = encoders[i];
222 }
223
Hai Lia6895542015-03-31 14:36:33 -0400224 msm_dsi->connector = msm_dsi_manager_connector_init(msm_dsi->id);
225 if (IS_ERR(msm_dsi->connector)) {
226 ret = PTR_ERR(msm_dsi->connector);
227 dev_err(dev->dev, "failed to create dsi connector: %d\n", ret);
228 msm_dsi->connector = NULL;
229 goto fail;
230 }
231
Hai Lia6895542015-03-31 14:36:33 -0400232 priv->bridges[priv->num_bridges++] = msm_dsi->bridge;
233 priv->connectors[priv->num_connectors++] = msm_dsi->connector;
234
235 return 0;
236fail:
237 if (msm_dsi) {
238 /* bridge/connector are normally destroyed by drm: */
239 if (msm_dsi->bridge) {
240 msm_dsi_manager_bridge_destroy(msm_dsi->bridge);
241 msm_dsi->bridge = NULL;
242 }
243 if (msm_dsi->connector) {
244 msm_dsi->connector->funcs->destroy(msm_dsi->connector);
245 msm_dsi->connector = NULL;
246 }
247 }
248
249 return ret;
250}
251