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