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);
88 platform_set_drvdata(pdev, msm_dsi);
91 ret = msm_dsi_host_init(msm_dsi);
96 ret = dsi_get_phy(msm_dsi);
100 /* Register to dsi manager */
101 ret = msm_dsi_manager_register(msm_dsi);
108 dsi_destroy(msm_dsi);
112 static int dsi_bind(struct device *dev, struct device *master, void *data)
114 struct drm_device *drm = dev_get_drvdata(master);
115 struct msm_drm_private *priv = drm->dev_private;
116 struct platform_device *pdev = to_platform_device(dev);
117 struct msm_dsi *msm_dsi;
120 msm_dsi = dsi_init(pdev);
121 if (IS_ERR(msm_dsi)) {
122 /* Don't fail the bind if the dsi port is not connected */
123 if (PTR_ERR(msm_dsi) == -ENODEV)
126 return PTR_ERR(msm_dsi);
129 priv->dsi[msm_dsi->id] = msm_dsi;
134 static void dsi_unbind(struct device *dev, struct device *master,
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;
143 dsi_destroy(msm_dsi);
144 priv->dsi[id] = NULL;
148 static const struct component_ops dsi_ops = {
150 .unbind = dsi_unbind,
153 static int dsi_dev_probe(struct platform_device *pdev)
155 return component_add(&pdev->dev, &dsi_ops);
158 static int dsi_dev_remove(struct platform_device *pdev)
161 component_del(&pdev->dev, &dsi_ops);
165 static const struct of_device_id dt_match[] = {
166 { .compatible = "qcom,mdss-dsi-ctrl" },
170 static const struct dev_pm_ops dsi_pm_ops = {
171 SET_RUNTIME_PM_OPS(msm_dsi_runtime_suspend, msm_dsi_runtime_resume, NULL)
174 static struct platform_driver dsi_driver = {
175 .probe = dsi_dev_probe,
176 .remove = dsi_dev_remove,
179 .of_match_table = dt_match,
184 void __init msm_dsi_register(void)
187 msm_dsi_phy_driver_register();
188 platform_driver_register(&dsi_driver);
191 void __exit msm_dsi_unregister(void)
194 msm_dsi_phy_driver_unregister();
195 platform_driver_unregister(&dsi_driver);
198 int msm_dsi_modeset_init(struct msm_dsi *msm_dsi, struct drm_device *dev,
199 struct drm_encoder *encoder)
201 struct msm_drm_private *priv;
202 struct drm_bridge *ext_bridge;
205 if (WARN_ON(!encoder) || WARN_ON(!msm_dsi) || WARN_ON(!dev))
208 priv = dev->dev_private;
211 ret = msm_dsi_host_modeset_init(msm_dsi->host, dev);
213 dev_err(dev->dev, "failed to modeset init host: %d\n", ret);
217 if (!msm_dsi_manager_validate_current_config(msm_dsi->id))
220 msm_dsi->encoder = encoder;
222 msm_dsi->bridge = msm_dsi_manager_bridge_init(msm_dsi->id);
223 if (IS_ERR(msm_dsi->bridge)) {
224 ret = PTR_ERR(msm_dsi->bridge);
225 dev_err(dev->dev, "failed to create dsi bridge: %d\n", ret);
226 msm_dsi->bridge = NULL;
231 * check if the dsi encoder output is connected to a panel or an
232 * external bridge. We create a connector only if we're connected to a
233 * drm_panel device. When we're connected to an external bridge, we
234 * assume that the drm_bridge driver will create the connector itself.
236 ext_bridge = msm_dsi_host_get_bridge(msm_dsi->host);
240 msm_dsi_manager_ext_bridge_init(msm_dsi->id);
243 msm_dsi_manager_connector_init(msm_dsi->id);
245 if (IS_ERR(msm_dsi->connector)) {
246 ret = PTR_ERR(msm_dsi->connector);
248 "failed to create dsi connector: %d\n", ret);
249 msm_dsi->connector = NULL;
253 priv->bridges[priv->num_bridges++] = msm_dsi->bridge;
254 priv->connectors[priv->num_connectors++] = msm_dsi->connector;
258 /* bridge/connector are normally destroyed by drm: */
259 if (msm_dsi->bridge) {
260 msm_dsi_manager_bridge_destroy(msm_dsi->bridge);
261 msm_dsi->bridge = NULL;
264 /* don't destroy connector if we didn't make it */
265 if (msm_dsi->connector && !msm_dsi->external_bridge)
266 msm_dsi->connector->funcs->destroy(msm_dsi->connector);
268 msm_dsi->connector = NULL;