b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
| 2 | /* |
| 3 | * Samsung SoC DP (Display Port) interface driver. |
| 4 | * |
| 5 | * Copyright (C) 2012 Samsung Electronics Co., Ltd. |
| 6 | * Author: Jingoo Han <jg1.han@samsung.com> |
| 7 | */ |
| 8 | |
| 9 | #include <linux/clk.h> |
| 10 | #include <linux/component.h> |
| 11 | #include <linux/err.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/of_graph.h> |
| 14 | #include <linux/platform_device.h> |
| 15 | #include <linux/pm_runtime.h> |
| 16 | #include <video/of_display_timing.h> |
| 17 | #include <video/of_videomode.h> |
| 18 | #include <video/videomode.h> |
| 19 | |
| 20 | #include <drm/bridge/analogix_dp.h> |
| 21 | #include <drm/drm_atomic_helper.h> |
| 22 | #include <drm/drm_crtc.h> |
| 23 | #include <drm/drm_of.h> |
| 24 | #include <drm/drm_panel.h> |
| 25 | #include <drm/drm_print.h> |
| 26 | #include <drm/drm_probe_helper.h> |
| 27 | #include <drm/exynos_drm.h> |
| 28 | |
| 29 | #include "exynos_drm_crtc.h" |
| 30 | |
| 31 | #define to_dp(nm) container_of(nm, struct exynos_dp_device, nm) |
| 32 | |
| 33 | struct exynos_dp_device { |
| 34 | struct drm_encoder encoder; |
| 35 | struct drm_connector *connector; |
| 36 | struct drm_bridge *ptn_bridge; |
| 37 | struct drm_device *drm_dev; |
| 38 | struct device *dev; |
| 39 | |
| 40 | struct videomode vm; |
| 41 | struct analogix_dp_device *adp; |
| 42 | struct analogix_dp_plat_data plat_data; |
| 43 | }; |
| 44 | |
| 45 | static int exynos_dp_crtc_clock_enable(struct analogix_dp_plat_data *plat_data, |
| 46 | bool enable) |
| 47 | { |
| 48 | struct exynos_dp_device *dp = to_dp(plat_data); |
| 49 | struct drm_encoder *encoder = &dp->encoder; |
| 50 | |
| 51 | if (!encoder->crtc) |
| 52 | return -EPERM; |
| 53 | |
| 54 | exynos_drm_pipe_clk_enable(to_exynos_crtc(encoder->crtc), enable); |
| 55 | |
| 56 | return 0; |
| 57 | } |
| 58 | |
| 59 | static int exynos_dp_poweron(struct analogix_dp_plat_data *plat_data) |
| 60 | { |
| 61 | return exynos_dp_crtc_clock_enable(plat_data, true); |
| 62 | } |
| 63 | |
| 64 | static int exynos_dp_poweroff(struct analogix_dp_plat_data *plat_data) |
| 65 | { |
| 66 | return exynos_dp_crtc_clock_enable(plat_data, false); |
| 67 | } |
| 68 | |
| 69 | static int exynos_dp_get_modes(struct analogix_dp_plat_data *plat_data, |
| 70 | struct drm_connector *connector) |
| 71 | { |
| 72 | struct exynos_dp_device *dp = to_dp(plat_data); |
| 73 | struct drm_display_mode *mode; |
| 74 | int num_modes = 0; |
| 75 | |
| 76 | if (dp->plat_data.panel) |
| 77 | return num_modes; |
| 78 | |
| 79 | mode = drm_mode_create(connector->dev); |
| 80 | if (!mode) { |
| 81 | DRM_DEV_ERROR(dp->dev, |
| 82 | "failed to create a new display mode.\n"); |
| 83 | return num_modes; |
| 84 | } |
| 85 | |
| 86 | drm_display_mode_from_videomode(&dp->vm, mode); |
| 87 | connector->display_info.width_mm = mode->width_mm; |
| 88 | connector->display_info.height_mm = mode->height_mm; |
| 89 | |
| 90 | mode->type = DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED; |
| 91 | drm_mode_set_name(mode); |
| 92 | drm_mode_probed_add(connector, mode); |
| 93 | |
| 94 | return num_modes + 1; |
| 95 | } |
| 96 | |
| 97 | static int exynos_dp_bridge_attach(struct analogix_dp_plat_data *plat_data, |
| 98 | struct drm_bridge *bridge, |
| 99 | struct drm_connector *connector) |
| 100 | { |
| 101 | struct exynos_dp_device *dp = to_dp(plat_data); |
| 102 | int ret; |
| 103 | |
| 104 | dp->connector = connector; |
| 105 | |
| 106 | /* Pre-empt DP connector creation if there's a bridge */ |
| 107 | if (dp->ptn_bridge) { |
| 108 | ret = drm_bridge_attach(&dp->encoder, dp->ptn_bridge, bridge); |
| 109 | if (ret) { |
| 110 | DRM_DEV_ERROR(dp->dev, |
| 111 | "Failed to attach bridge to drm\n"); |
| 112 | return ret; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | static void exynos_dp_mode_set(struct drm_encoder *encoder, |
| 120 | struct drm_display_mode *mode, |
| 121 | struct drm_display_mode *adjusted_mode) |
| 122 | { |
| 123 | } |
| 124 | |
| 125 | static void exynos_dp_nop(struct drm_encoder *encoder) |
| 126 | { |
| 127 | /* do nothing */ |
| 128 | } |
| 129 | |
| 130 | static const struct drm_encoder_helper_funcs exynos_dp_encoder_helper_funcs = { |
| 131 | .mode_set = exynos_dp_mode_set, |
| 132 | .enable = exynos_dp_nop, |
| 133 | .disable = exynos_dp_nop, |
| 134 | }; |
| 135 | |
| 136 | static const struct drm_encoder_funcs exynos_dp_encoder_funcs = { |
| 137 | .destroy = drm_encoder_cleanup, |
| 138 | }; |
| 139 | |
| 140 | static int exynos_dp_dt_parse_panel(struct exynos_dp_device *dp) |
| 141 | { |
| 142 | int ret; |
| 143 | |
| 144 | ret = of_get_videomode(dp->dev->of_node, &dp->vm, OF_USE_NATIVE_MODE); |
| 145 | if (ret) { |
| 146 | DRM_DEV_ERROR(dp->dev, |
| 147 | "failed: of_get_videomode() : %d\n", ret); |
| 148 | return ret; |
| 149 | } |
| 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | static int exynos_dp_bind(struct device *dev, struct device *master, void *data) |
| 154 | { |
| 155 | struct exynos_dp_device *dp = dev_get_drvdata(dev); |
| 156 | struct drm_encoder *encoder = &dp->encoder; |
| 157 | struct drm_device *drm_dev = data; |
| 158 | int ret; |
| 159 | |
| 160 | dp->drm_dev = drm_dev; |
| 161 | |
| 162 | if (!dp->plat_data.panel && !dp->ptn_bridge) { |
| 163 | ret = exynos_dp_dt_parse_panel(dp); |
| 164 | if (ret) |
| 165 | return ret; |
| 166 | } |
| 167 | |
| 168 | drm_encoder_init(drm_dev, encoder, &exynos_dp_encoder_funcs, |
| 169 | DRM_MODE_ENCODER_TMDS, NULL); |
| 170 | |
| 171 | drm_encoder_helper_add(encoder, &exynos_dp_encoder_helper_funcs); |
| 172 | |
| 173 | ret = exynos_drm_set_possible_crtcs(encoder, EXYNOS_DISPLAY_TYPE_LCD); |
| 174 | if (ret < 0) |
| 175 | return ret; |
| 176 | |
| 177 | dp->plat_data.encoder = encoder; |
| 178 | |
| 179 | ret = analogix_dp_bind(dp->adp, dp->drm_dev); |
| 180 | if (ret) |
| 181 | dp->encoder.funcs->destroy(&dp->encoder); |
| 182 | |
| 183 | return ret; |
| 184 | } |
| 185 | |
| 186 | static void exynos_dp_unbind(struct device *dev, struct device *master, |
| 187 | void *data) |
| 188 | { |
| 189 | struct exynos_dp_device *dp = dev_get_drvdata(dev); |
| 190 | |
| 191 | analogix_dp_unbind(dp->adp); |
| 192 | dp->encoder.funcs->destroy(&dp->encoder); |
| 193 | } |
| 194 | |
| 195 | static const struct component_ops exynos_dp_ops = { |
| 196 | .bind = exynos_dp_bind, |
| 197 | .unbind = exynos_dp_unbind, |
| 198 | }; |
| 199 | |
| 200 | static int exynos_dp_probe(struct platform_device *pdev) |
| 201 | { |
| 202 | struct device *dev = &pdev->dev; |
| 203 | struct device_node *np; |
| 204 | struct exynos_dp_device *dp; |
| 205 | struct drm_panel *panel; |
| 206 | struct drm_bridge *bridge; |
| 207 | int ret; |
| 208 | |
| 209 | dp = devm_kzalloc(&pdev->dev, sizeof(struct exynos_dp_device), |
| 210 | GFP_KERNEL); |
| 211 | if (!dp) |
| 212 | return -ENOMEM; |
| 213 | |
| 214 | dp->dev = dev; |
| 215 | /* |
| 216 | * We just use the drvdata until driver run into component |
| 217 | * add function, and then we would set drvdata to null, so |
| 218 | * that analogix dp driver would take charge of the drvdata. |
| 219 | */ |
| 220 | platform_set_drvdata(pdev, dp); |
| 221 | |
| 222 | /* This is for the backward compatibility. */ |
| 223 | np = of_parse_phandle(dev->of_node, "panel", 0); |
| 224 | if (np) { |
| 225 | dp->plat_data.panel = of_drm_find_panel(np); |
| 226 | |
| 227 | of_node_put(np); |
| 228 | if (IS_ERR(dp->plat_data.panel)) |
| 229 | return PTR_ERR(dp->plat_data.panel); |
| 230 | |
| 231 | goto out; |
| 232 | } |
| 233 | |
| 234 | ret = drm_of_find_panel_or_bridge(dev->of_node, 0, 0, &panel, &bridge); |
| 235 | if (ret) |
| 236 | return ret; |
| 237 | |
| 238 | /* The remote port can be either a panel or a bridge */ |
| 239 | dp->plat_data.panel = panel; |
| 240 | dp->plat_data.dev_type = EXYNOS_DP; |
| 241 | dp->plat_data.power_on_start = exynos_dp_poweron; |
| 242 | dp->plat_data.power_off = exynos_dp_poweroff; |
| 243 | dp->plat_data.attach = exynos_dp_bridge_attach; |
| 244 | dp->plat_data.get_modes = exynos_dp_get_modes; |
| 245 | dp->plat_data.skip_connector = !!bridge; |
| 246 | |
| 247 | dp->ptn_bridge = bridge; |
| 248 | |
| 249 | out: |
| 250 | dp->adp = analogix_dp_probe(dev, &dp->plat_data); |
| 251 | if (IS_ERR(dp->adp)) |
| 252 | return PTR_ERR(dp->adp); |
| 253 | |
| 254 | return component_add(&pdev->dev, &exynos_dp_ops); |
| 255 | } |
| 256 | |
| 257 | static int exynos_dp_remove(struct platform_device *pdev) |
| 258 | { |
| 259 | struct exynos_dp_device *dp = platform_get_drvdata(pdev); |
| 260 | |
| 261 | component_del(&pdev->dev, &exynos_dp_ops); |
| 262 | analogix_dp_remove(dp->adp); |
| 263 | |
| 264 | return 0; |
| 265 | } |
| 266 | |
| 267 | #ifdef CONFIG_PM |
| 268 | static int exynos_dp_suspend(struct device *dev) |
| 269 | { |
| 270 | struct exynos_dp_device *dp = dev_get_drvdata(dev); |
| 271 | |
| 272 | return analogix_dp_suspend(dp->adp); |
| 273 | } |
| 274 | |
| 275 | static int exynos_dp_resume(struct device *dev) |
| 276 | { |
| 277 | struct exynos_dp_device *dp = dev_get_drvdata(dev); |
| 278 | |
| 279 | return analogix_dp_resume(dp->adp); |
| 280 | } |
| 281 | #endif |
| 282 | |
| 283 | static const struct dev_pm_ops exynos_dp_pm_ops = { |
| 284 | SET_RUNTIME_PM_OPS(exynos_dp_suspend, exynos_dp_resume, NULL) |
| 285 | SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, |
| 286 | pm_runtime_force_resume) |
| 287 | }; |
| 288 | |
| 289 | static const struct of_device_id exynos_dp_match[] = { |
| 290 | { .compatible = "samsung,exynos5-dp" }, |
| 291 | {}, |
| 292 | }; |
| 293 | MODULE_DEVICE_TABLE(of, exynos_dp_match); |
| 294 | |
| 295 | struct platform_driver dp_driver = { |
| 296 | .probe = exynos_dp_probe, |
| 297 | .remove = exynos_dp_remove, |
| 298 | .driver = { |
| 299 | .name = "exynos-dp", |
| 300 | .owner = THIS_MODULE, |
| 301 | .pm = &exynos_dp_pm_ops, |
| 302 | .of_match_table = exynos_dp_match, |
| 303 | }, |
| 304 | }; |
| 305 | |
| 306 | MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>"); |
| 307 | MODULE_DESCRIPTION("Samsung Specific Analogix-DP Driver Extension"); |
| 308 | MODULE_LICENSE("GPL v2"); |