blob: 1f2561e2ff718f2f305b2a1891a26ab6cf1e3623 [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:
113 if (msm_dsi)
114 dsi_destroy(msm_dsi);
115
116 return ERR_PTR(ret);
117}
118
119static int dsi_bind(struct device *dev, struct device *master, void *data)
120{
121 struct drm_device *drm = dev_get_drvdata(master);
122 struct msm_drm_private *priv = drm->dev_private;
123 struct platform_device *pdev = to_platform_device(dev);
124 struct msm_dsi *msm_dsi;
125
126 DBG("");
127 msm_dsi = dsi_init(pdev);
128 if (IS_ERR(msm_dsi))
129 return PTR_ERR(msm_dsi);
130
131 priv->dsi[msm_dsi->id] = msm_dsi;
132
133 return 0;
134}
135
136static void dsi_unbind(struct device *dev, struct device *master,
137 void *data)
138{
139 struct drm_device *drm = dev_get_drvdata(master);
140 struct msm_drm_private *priv = drm->dev_private;
141 struct msm_dsi *msm_dsi = dev_get_drvdata(dev);
142 int id = msm_dsi->id;
143
144 if (priv->dsi[id]) {
145 dsi_destroy(msm_dsi);
146 priv->dsi[id] = NULL;
147 }
148}
149
150static const struct component_ops dsi_ops = {
151 .bind = dsi_bind,
152 .unbind = dsi_unbind,
153};
154
155static int dsi_dev_probe(struct platform_device *pdev)
156{
157 return component_add(&pdev->dev, &dsi_ops);
158}
159
160static int dsi_dev_remove(struct platform_device *pdev)
161{
162 DBG("");
163 component_del(&pdev->dev, &dsi_ops);
164 return 0;
165}
166
167static const struct of_device_id dt_match[] = {
168 { .compatible = "qcom,mdss-dsi-ctrl" },
169 {}
170};
171
172static struct platform_driver dsi_driver = {
173 .probe = dsi_dev_probe,
174 .remove = dsi_dev_remove,
175 .driver = {
176 .name = "msm_dsi",
177 .of_match_table = dt_match,
178 },
179};
180
181void __init msm_dsi_register(void)
182{
183 DBG("");
Hai Liec31abf2015-05-15 13:04:06 -0400184 msm_dsi_phy_driver_register();
Hai Lia6895542015-03-31 14:36:33 -0400185 platform_driver_register(&dsi_driver);
186}
187
188void __exit msm_dsi_unregister(void)
189{
190 DBG("");
Hai Liec31abf2015-05-15 13:04:06 -0400191 msm_dsi_phy_driver_unregister();
Hai Lia6895542015-03-31 14:36:33 -0400192 platform_driver_unregister(&dsi_driver);
193}
194
195int msm_dsi_modeset_init(struct msm_dsi *msm_dsi, struct drm_device *dev,
196 struct drm_encoder *encoders[MSM_DSI_ENCODER_NUM])
197{
198 struct msm_drm_private *priv = dev->dev_private;
199 int ret, i;
200
201 if (WARN_ON(!encoders[MSM_DSI_VIDEO_ENCODER_ID] ||
202 !encoders[MSM_DSI_CMD_ENCODER_ID]))
203 return -EINVAL;
204
205 msm_dsi->dev = dev;
206
207 ret = msm_dsi_host_modeset_init(msm_dsi->host, dev);
208 if (ret) {
209 dev_err(dev->dev, "failed to modeset init host: %d\n", ret);
210 goto fail;
211 }
212
213 msm_dsi->bridge = msm_dsi_manager_bridge_init(msm_dsi->id);
214 if (IS_ERR(msm_dsi->bridge)) {
215 ret = PTR_ERR(msm_dsi->bridge);
216 dev_err(dev->dev, "failed to create dsi bridge: %d\n", ret);
217 msm_dsi->bridge = NULL;
218 goto fail;
219 }
220
Hai Li6f6b2872015-04-23 14:13:21 -0400221 for (i = 0; i < MSM_DSI_ENCODER_NUM; i++) {
222 encoders[i]->bridge = msm_dsi->bridge;
223 msm_dsi->encoders[i] = encoders[i];
224 }
225
Hai Lia6895542015-03-31 14:36:33 -0400226 msm_dsi->connector = msm_dsi_manager_connector_init(msm_dsi->id);
227 if (IS_ERR(msm_dsi->connector)) {
228 ret = PTR_ERR(msm_dsi->connector);
229 dev_err(dev->dev, "failed to create dsi connector: %d\n", ret);
230 msm_dsi->connector = NULL;
231 goto fail;
232 }
233
Hai Lia6895542015-03-31 14:36:33 -0400234 priv->bridges[priv->num_bridges++] = msm_dsi->bridge;
235 priv->connectors[priv->num_connectors++] = msm_dsi->connector;
236
237 return 0;
238fail:
239 if (msm_dsi) {
240 /* bridge/connector are normally destroyed by drm: */
241 if (msm_dsi->bridge) {
242 msm_dsi_manager_bridge_destroy(msm_dsi->bridge);
243 msm_dsi->bridge = NULL;
244 }
245 if (msm_dsi->connector) {
246 msm_dsi->connector->funcs->destroy(msm_dsi->connector);
247 msm_dsi->connector = NULL;
248 }
249 }
250
251 return ret;
252}
253