• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (c) 2015, The Linux Foundation. All rights reserved.
4  */
5 
6 #include "dsi.h"
7 
msm_dsi_get_encoder(struct msm_dsi * msm_dsi)8 struct drm_encoder *msm_dsi_get_encoder(struct msm_dsi *msm_dsi)
9 {
10 	if (!msm_dsi || !msm_dsi_device_connected(msm_dsi))
11 		return NULL;
12 
13 	return msm_dsi->encoder;
14 }
15 
msm_dsi_is_cmd_mode(struct msm_dsi * msm_dsi)16 bool msm_dsi_is_cmd_mode(struct msm_dsi *msm_dsi)
17 {
18 	unsigned long host_flags = msm_dsi_host_get_mode_flags(msm_dsi->host);
19 
20 	return !(host_flags & MIPI_DSI_MODE_VIDEO);
21 }
22 
dsi_get_phy(struct msm_dsi * msm_dsi)23 static int dsi_get_phy(struct msm_dsi *msm_dsi)
24 {
25 	struct platform_device *pdev = msm_dsi->pdev;
26 	struct platform_device *phy_pdev;
27 	struct device_node *phy_node;
28 
29 	phy_node = of_parse_phandle(pdev->dev.of_node, "phys", 0);
30 	if (!phy_node) {
31 		DRM_DEV_ERROR(&pdev->dev, "cannot find phy device\n");
32 		return -ENXIO;
33 	}
34 
35 	phy_pdev = of_find_device_by_node(phy_node);
36 	if (phy_pdev) {
37 		msm_dsi->phy = platform_get_drvdata(phy_pdev);
38 		msm_dsi->phy_dev = &phy_pdev->dev;
39 	}
40 
41 	of_node_put(phy_node);
42 
43 	if (!phy_pdev) {
44 		DRM_DEV_ERROR(&pdev->dev, "%s: phy driver is not ready\n", __func__);
45 		return -EPROBE_DEFER;
46 	}
47 	if (!msm_dsi->phy) {
48 		put_device(&phy_pdev->dev);
49 		DRM_DEV_ERROR(&pdev->dev, "%s: phy driver is not ready\n", __func__);
50 		return -EPROBE_DEFER;
51 	}
52 
53 	return 0;
54 }
55 
dsi_destroy(struct msm_dsi * msm_dsi)56 static void dsi_destroy(struct msm_dsi *msm_dsi)
57 {
58 	if (!msm_dsi)
59 		return;
60 
61 	msm_dsi_manager_unregister(msm_dsi);
62 
63 	if (msm_dsi->phy_dev) {
64 		put_device(msm_dsi->phy_dev);
65 		msm_dsi->phy = NULL;
66 		msm_dsi->phy_dev = NULL;
67 	}
68 
69 	if (msm_dsi->host) {
70 		msm_dsi_host_destroy(msm_dsi->host);
71 		msm_dsi->host = NULL;
72 	}
73 
74 	platform_set_drvdata(msm_dsi->pdev, NULL);
75 }
76 
dsi_init(struct platform_device * pdev)77 static struct msm_dsi *dsi_init(struct platform_device *pdev)
78 {
79 	struct msm_dsi *msm_dsi;
80 	int ret;
81 
82 	if (!pdev)
83 		return ERR_PTR(-ENXIO);
84 
85 	msm_dsi = devm_kzalloc(&pdev->dev, sizeof(*msm_dsi), GFP_KERNEL);
86 	if (!msm_dsi)
87 		return ERR_PTR(-ENOMEM);
88 	DBG("dsi probed=%p", msm_dsi);
89 
90 	msm_dsi->id = -1;
91 	msm_dsi->pdev = pdev;
92 	platform_set_drvdata(pdev, msm_dsi);
93 
94 	/* Init dsi host */
95 	ret = msm_dsi_host_init(msm_dsi);
96 	if (ret)
97 		goto destroy_dsi;
98 
99 	/* GET dsi PHY */
100 	ret = dsi_get_phy(msm_dsi);
101 	if (ret)
102 		goto destroy_dsi;
103 
104 	/* Register to dsi manager */
105 	ret = msm_dsi_manager_register(msm_dsi);
106 	if (ret)
107 		goto destroy_dsi;
108 
109 	return msm_dsi;
110 
111 destroy_dsi:
112 	dsi_destroy(msm_dsi);
113 	return ERR_PTR(ret);
114 }
115 
dsi_bind(struct device * dev,struct device * master,void * data)116 static int dsi_bind(struct device *dev, struct device *master, void *data)
117 {
118 	struct drm_device *drm = dev_get_drvdata(master);
119 	struct msm_drm_private *priv = drm->dev_private;
120 	struct platform_device *pdev = to_platform_device(dev);
121 	struct msm_dsi *msm_dsi;
122 
123 	DBG("");
124 	msm_dsi = dsi_init(pdev);
125 	if (IS_ERR(msm_dsi)) {
126 		/* Don't fail the bind if the dsi port is not connected */
127 		if (PTR_ERR(msm_dsi) == -ENODEV)
128 			return 0;
129 		else
130 			return PTR_ERR(msm_dsi);
131 	}
132 
133 	priv->dsi[msm_dsi->id] = msm_dsi;
134 
135 	return 0;
136 }
137 
dsi_unbind(struct device * dev,struct device * master,void * data)138 static void dsi_unbind(struct device *dev, struct device *master,
139 		void *data)
140 {
141 	struct drm_device *drm = dev_get_drvdata(master);
142 	struct msm_drm_private *priv = drm->dev_private;
143 	struct msm_dsi *msm_dsi = dev_get_drvdata(dev);
144 	int id = msm_dsi->id;
145 
146 	if (priv->dsi[id]) {
147 		dsi_destroy(msm_dsi);
148 		priv->dsi[id] = NULL;
149 	}
150 }
151 
152 static const struct component_ops dsi_ops = {
153 	.bind   = dsi_bind,
154 	.unbind = dsi_unbind,
155 };
156 
dsi_dev_probe(struct platform_device * pdev)157 static int dsi_dev_probe(struct platform_device *pdev)
158 {
159 	return component_add(&pdev->dev, &dsi_ops);
160 }
161 
dsi_dev_remove(struct platform_device * pdev)162 static int dsi_dev_remove(struct platform_device *pdev)
163 {
164 	DBG("");
165 	component_del(&pdev->dev, &dsi_ops);
166 	return 0;
167 }
168 
169 static const struct of_device_id dt_match[] = {
170 	{ .compatible = "qcom,mdss-dsi-ctrl" },
171 	{}
172 };
173 
174 static const struct dev_pm_ops dsi_pm_ops = {
175 	SET_RUNTIME_PM_OPS(msm_dsi_runtime_suspend, msm_dsi_runtime_resume, NULL)
176 	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
177 				pm_runtime_force_resume)
178 };
179 
180 static struct platform_driver dsi_driver = {
181 	.probe = dsi_dev_probe,
182 	.remove = dsi_dev_remove,
183 	.driver = {
184 		.name = "msm_dsi",
185 		.of_match_table = dt_match,
186 		.pm = &dsi_pm_ops,
187 	},
188 };
189 
msm_dsi_register(void)190 void __init msm_dsi_register(void)
191 {
192 	DBG("");
193 	msm_dsi_phy_driver_register();
194 	platform_driver_register(&dsi_driver);
195 }
196 
msm_dsi_unregister(void)197 void __exit msm_dsi_unregister(void)
198 {
199 	DBG("");
200 	msm_dsi_phy_driver_unregister();
201 	platform_driver_unregister(&dsi_driver);
202 }
203 
msm_dsi_modeset_init(struct msm_dsi * msm_dsi,struct drm_device * dev,struct drm_encoder * encoder)204 int msm_dsi_modeset_init(struct msm_dsi *msm_dsi, struct drm_device *dev,
205 			 struct drm_encoder *encoder)
206 {
207 	struct msm_drm_private *priv;
208 	struct drm_bridge *ext_bridge;
209 	int ret;
210 
211 	if (WARN_ON(!encoder) || WARN_ON(!msm_dsi) || WARN_ON(!dev))
212 		return -EINVAL;
213 
214 	priv = dev->dev_private;
215 
216 	if (priv->num_bridges == ARRAY_SIZE(priv->bridges)) {
217 		DRM_DEV_ERROR(dev->dev, "too many bridges\n");
218 		return -ENOSPC;
219 	}
220 
221 	msm_dsi->dev = dev;
222 
223 	ret = msm_dsi_host_modeset_init(msm_dsi->host, dev);
224 	if (ret) {
225 		DRM_DEV_ERROR(dev->dev, "failed to modeset init host: %d\n", ret);
226 		goto fail;
227 	}
228 
229 	if (msm_dsi_is_bonded_dsi(msm_dsi) &&
230 	    !msm_dsi_is_master_dsi(msm_dsi)) {
231 		/*
232 		 * Do not return an eror here,
233 		 * Just skip creating encoder/connector for the slave-DSI.
234 		 */
235 		return 0;
236 	}
237 
238 	msm_dsi->encoder = encoder;
239 
240 	msm_dsi->bridge = msm_dsi_manager_bridge_init(msm_dsi->id);
241 	if (IS_ERR(msm_dsi->bridge)) {
242 		ret = PTR_ERR(msm_dsi->bridge);
243 		DRM_DEV_ERROR(dev->dev, "failed to create dsi bridge: %d\n", ret);
244 		msm_dsi->bridge = NULL;
245 		goto fail;
246 	}
247 
248 	/*
249 	 * check if the dsi encoder output is connected to a panel or an
250 	 * external bridge. We create a connector only if we're connected to a
251 	 * drm_panel device. When we're connected to an external bridge, we
252 	 * assume that the drm_bridge driver will create the connector itself.
253 	 */
254 	ext_bridge = msm_dsi_host_get_bridge(msm_dsi->host);
255 
256 	if (ext_bridge)
257 		msm_dsi->connector =
258 			msm_dsi_manager_ext_bridge_init(msm_dsi->id);
259 	else
260 		msm_dsi->connector =
261 			msm_dsi_manager_connector_init(msm_dsi->id);
262 
263 	if (IS_ERR(msm_dsi->connector)) {
264 		ret = PTR_ERR(msm_dsi->connector);
265 		DRM_DEV_ERROR(dev->dev,
266 			"failed to create dsi connector: %d\n", ret);
267 		msm_dsi->connector = NULL;
268 		goto fail;
269 	}
270 
271 	priv->bridges[priv->num_bridges++]       = msm_dsi->bridge;
272 	priv->connectors[priv->num_connectors++] = msm_dsi->connector;
273 
274 	return 0;
275 fail:
276 	/* bridge/connector are normally destroyed by drm: */
277 	if (msm_dsi->bridge) {
278 		msm_dsi_manager_bridge_destroy(msm_dsi->bridge);
279 		msm_dsi->bridge = NULL;
280 	}
281 
282 	/* don't destroy connector if we didn't make it */
283 	if (msm_dsi->connector && !msm_dsi->external_bridge)
284 		msm_dsi->connector->funcs->destroy(msm_dsi->connector);
285 
286 	msm_dsi->connector = NULL;
287 
288 	return ret;
289 }
290 
msm_dsi_snapshot(struct msm_disp_state * disp_state,struct msm_dsi * msm_dsi)291 void msm_dsi_snapshot(struct msm_disp_state *disp_state, struct msm_dsi *msm_dsi)
292 {
293 	msm_dsi_host_snapshot(disp_state, msm_dsi->host);
294 	msm_dsi_phy_snapshot(disp_state, msm_dsi->phy);
295 }
296 
297