2 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
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.
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.
16 struct drm_encoder *msm_dsi_get_encoder(struct msm_dsi *msm_dsi)
18 if (!msm_dsi || !msm_dsi_device_connected(msm_dsi))
21 return msm_dsi->encoder;
24 static int dsi_get_phy(struct msm_dsi *msm_dsi)
26 struct platform_device *pdev = msm_dsi->pdev;
27 struct platform_device *phy_pdev;
28 struct device_node *phy_node;
30 phy_node = of_parse_phandle(pdev->dev.of_node, "phys", 0);
32 dev_err(&pdev->dev, "cannot find phy device\n");
36 phy_pdev = of_find_device_by_node(phy_node);
38 msm_dsi->phy = platform_get_drvdata(phy_pdev);
40 of_node_put(phy_node);
42 if (!phy_pdev || !msm_dsi->phy) {
43 dev_err(&pdev->dev, "%s: phy driver is not ready\n", __func__);
47 msm_dsi->phy_dev = get_device(&phy_pdev->dev);
52 static void dsi_destroy(struct msm_dsi *msm_dsi)
57 msm_dsi_manager_unregister(msm_dsi);
59 if (msm_dsi->phy_dev) {
60 put_device(msm_dsi->phy_dev);
62 msm_dsi->phy_dev = NULL;
66 msm_dsi_host_destroy(msm_dsi->host);
70 platform_set_drvdata(msm_dsi->pdev, NULL);
73 static struct msm_dsi *dsi_init(struct platform_device *pdev)
75 struct msm_dsi *msm_dsi;
79 return ERR_PTR(-ENXIO);
81 msm_dsi = devm_kzalloc(&pdev->dev, sizeof(*msm_dsi), GFP_KERNEL);
83 return ERR_PTR(-ENOMEM);
84 DBG("dsi probed=%p", msm_dsi);
87 platform_set_drvdata(pdev, msm_dsi);
90 ret = msm_dsi_host_init(msm_dsi);
95 ret = dsi_get_phy(msm_dsi);
99 /* Register to dsi manager */
100 ret = msm_dsi_manager_register(msm_dsi);
107 dsi_destroy(msm_dsi);
111 static int dsi_bind(struct device *dev, struct device *master, void *data)
113 struct drm_device *drm = dev_get_drvdata(master);
114 struct msm_drm_private *priv = drm->dev_private;
115 struct platform_device *pdev = to_platform_device(dev);
116 struct msm_dsi *msm_dsi;
119 msm_dsi = dsi_init(pdev);
121 return PTR_ERR(msm_dsi);
123 priv->dsi[msm_dsi->id] = msm_dsi;
128 static void dsi_unbind(struct device *dev, struct device *master,
131 struct drm_device *drm = dev_get_drvdata(master);
132 struct msm_drm_private *priv = drm->dev_private;
133 struct msm_dsi *msm_dsi = dev_get_drvdata(dev);
134 int id = msm_dsi->id;
137 dsi_destroy(msm_dsi);
138 priv->dsi[id] = NULL;
142 static const struct component_ops dsi_ops = {
144 .unbind = dsi_unbind,
147 static int dsi_dev_probe(struct platform_device *pdev)
149 return component_add(&pdev->dev, &dsi_ops);
152 static int dsi_dev_remove(struct platform_device *pdev)
155 component_del(&pdev->dev, &dsi_ops);
159 static const struct of_device_id dt_match[] = {
160 { .compatible = "qcom,mdss-dsi-ctrl" },
164 static const struct dev_pm_ops dsi_pm_ops = {
165 SET_RUNTIME_PM_OPS(msm_dsi_runtime_suspend, msm_dsi_runtime_resume, NULL)
168 static struct platform_driver dsi_driver = {
169 .probe = dsi_dev_probe,
170 .remove = dsi_dev_remove,
173 .of_match_table = dt_match,
178 void __init msm_dsi_register(void)
181 msm_dsi_phy_driver_register();
182 platform_driver_register(&dsi_driver);
185 void __exit msm_dsi_unregister(void)
188 msm_dsi_phy_driver_unregister();
189 platform_driver_unregister(&dsi_driver);
192 int msm_dsi_modeset_init(struct msm_dsi *msm_dsi, struct drm_device *dev,
193 struct drm_encoder *encoder)
195 struct msm_drm_private *priv;
196 struct drm_bridge *ext_bridge;
199 if (WARN_ON(!encoder) || WARN_ON(!msm_dsi) || WARN_ON(!dev))
202 priv = dev->dev_private;
205 ret = msm_dsi_host_modeset_init(msm_dsi->host, dev);
207 dev_err(dev->dev, "failed to modeset init host: %d\n", ret);
211 msm_dsi->encoder = encoder;
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;
222 * check if the dsi encoder output is connected to a panel or an
223 * external bridge. We create a connector only if we're connected to a
224 * drm_panel device. When we're connected to an external bridge, we
225 * assume that the drm_bridge driver will create the connector itself.
227 ext_bridge = msm_dsi_host_get_bridge(msm_dsi->host);
231 msm_dsi_manager_ext_bridge_init(msm_dsi->id);
234 msm_dsi_manager_connector_init(msm_dsi->id);
236 if (IS_ERR(msm_dsi->connector)) {
237 ret = PTR_ERR(msm_dsi->connector);
239 "failed to create dsi connector: %d\n", ret);
240 msm_dsi->connector = NULL;
244 priv->bridges[priv->num_bridges++] = msm_dsi->bridge;
245 priv->connectors[priv->num_connectors++] = msm_dsi->connector;
249 /* bridge/connector are normally destroyed by drm: */
250 if (msm_dsi->bridge) {
251 msm_dsi_manager_bridge_destroy(msm_dsi->bridge);
252 msm_dsi->bridge = NULL;
255 /* don't destroy connector if we didn't make it */
256 if (msm_dsi->connector && !msm_dsi->external_bridge)
257 msm_dsi->connector->funcs->destroy(msm_dsi->connector);
259 msm_dsi->connector = NULL;