exynos_dp.c 7.1 KB
Newer Older
J
Jingoo Han 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Samsung SoC DP (Display Port) interface driver.
 *
 * Copyright (C) 2012 Samsung Electronics Co., Ltd.
 * Author: Jingoo Han <jg1.han@samsung.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 */

#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/err.h>
#include <linux/clk.h>
A
Ajay Kumar 已提交
17
#include <linux/of_graph.h>
18
#include <linux/component.h>
19 20
#include <video/of_display_timing.h>
#include <video/of_videomode.h>
21
#include <video/videomode.h>
J
Jingoo Han 已提交
22

23
#include <drm/drmP.h>
24 25
#include <drm/drm_crtc.h>
#include <drm/drm_crtc_helper.h>
26
#include <drm/drm_of.h>
27
#include <drm/drm_panel.h>
28

29 30 31
#include <drm/bridge/analogix_dp.h>
#include <drm/exynos_drm.h>

32
#include "exynos_drm_crtc.h"
J
Jingoo Han 已提交
33

34
#define to_dp(nm)	container_of(nm, struct exynos_dp_device, nm)
35

36 37
struct exynos_dp_device {
	struct drm_encoder         encoder;
38
	struct drm_connector       *connector;
39 40 41
	struct drm_bridge          *ptn_bridge;
	struct drm_device          *drm_dev;
	struct device              *dev;
42

43 44
	struct videomode           vm;
	struct analogix_dp_plat_data plat_data;
45 46
};

47
static int exynos_dp_crtc_clock_enable(struct analogix_dp_plat_data *plat_data,
48
				bool enable)
J
Jingoo Han 已提交
49
{
50 51
	struct exynos_dp_device *dp = to_dp(plat_data);
	struct drm_encoder *encoder = &dp->encoder;
J
Jingoo Han 已提交
52

53 54
	if (!encoder->crtc)
		return -EPERM;
J
Jingoo Han 已提交
55

56
	exynos_drm_pipe_clk_enable(to_exynos_crtc(encoder->crtc), enable);
57

J
Jingoo Han 已提交
58 59 60
	return 0;
}

61
static int exynos_dp_poweron(struct analogix_dp_plat_data *plat_data)
J
Jingoo Han 已提交
62
{
63
	return exynos_dp_crtc_clock_enable(plat_data, true);
J
Jingoo Han 已提交
64 65
}

66
static int exynos_dp_poweroff(struct analogix_dp_plat_data *plat_data)
J
Jingoo Han 已提交
67
{
68
	return exynos_dp_crtc_clock_enable(plat_data, false);
J
Jingoo Han 已提交
69 70
}

71 72
static int exynos_dp_get_modes(struct analogix_dp_plat_data *plat_data,
			       struct drm_connector *connector)
J
Jingoo Han 已提交
73
{
74
	struct exynos_dp_device *dp = to_dp(plat_data);
75
	struct drm_display_mode *mode;
76
	int num_modes = 0;
77

78 79
	if (dp->plat_data.panel)
		return num_modes;
80

81 82 83
	mode = drm_mode_create(connector->dev);
	if (!mode) {
		DRM_ERROR("failed to create a new display mode.\n");
84
		return num_modes;
85 86
	}

87
	drm_display_mode_from_videomode(&dp->vm, mode);
88 89 90 91 92 93
	connector->display_info.width_mm = mode->width_mm;
	connector->display_info.height_mm = mode->height_mm;

	mode->type = DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED;
	drm_mode_set_name(mode);
	drm_mode_probed_add(connector, mode);
94

95
	return num_modes + 1;
96 97
}

98 99 100
static int exynos_dp_bridge_attach(struct analogix_dp_plat_data *plat_data,
				   struct drm_bridge *bridge,
				   struct drm_connector *connector)
101
{
102
	struct exynos_dp_device *dp = to_dp(plat_data);
103 104
	int ret;

105
	dp->connector = connector;
106

107 108
	/* Pre-empt DP connector creation if there's a bridge */
	if (dp->ptn_bridge) {
109
		ret = drm_bridge_attach(&dp->encoder, dp->ptn_bridge, bridge);
110 111 112 113
		if (ret) {
			DRM_ERROR("Failed to attach bridge to drm\n");
			bridge->next = NULL;
			return ret;
114 115 116
		}
	}

117 118 119 120 121 122 123 124 125
	return 0;
}

static void exynos_dp_mode_set(struct drm_encoder *encoder,
			       struct drm_display_mode *mode,
			       struct drm_display_mode *adjusted_mode)
{
}

126
static void exynos_dp_nop(struct drm_encoder *encoder)
127
{
128
	/* do nothing */
129 130
}

131
static const struct drm_encoder_helper_funcs exynos_dp_encoder_helper_funcs = {
132
	.mode_set = exynos_dp_mode_set,
133 134
	.enable = exynos_dp_nop,
	.disable = exynos_dp_nop,
135 136
};

137
static const struct drm_encoder_funcs exynos_dp_encoder_funcs = {
138 139 140
	.destroy = drm_encoder_cleanup,
};

141 142 143 144
static int exynos_dp_dt_parse_panel(struct exynos_dp_device *dp)
{
	int ret;

145
	ret = of_get_videomode(dp->dev->of_node, &dp->vm, OF_USE_NATIVE_MODE);
146 147 148 149 150 151 152
	if (ret) {
		DRM_ERROR("failed: of_get_videomode() : %d\n", ret);
		return ret;
	}
	return 0;
}

153
static int exynos_dp_bind(struct device *dev, struct device *master, void *data)
J
Jingoo Han 已提交
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;
J
Jingoo Han 已提交
159

160 161 162 163 164 165
	/*
	 * Just like the probe function said, we don't need the
	 * device drvrate anymore, we should leave the charge to
	 * analogix dp driver, set the device drvdata to NULL.
	 */
	dev_set_drvdata(dev, NULL);
J
Jingoo Han 已提交
166

167 168
	dp->dev = dev;
	dp->drm_dev = drm_dev;
169

170 171 172 173 174
	dp->plat_data.dev_type = EXYNOS_DP;
	dp->plat_data.power_on = exynos_dp_poweron;
	dp->plat_data.power_off = exynos_dp_poweroff;
	dp->plat_data.attach = exynos_dp_bridge_attach;
	dp->plat_data.get_modes = exynos_dp_get_modes;
175

176
	if (!dp->plat_data.panel && !dp->ptn_bridge) {
177 178 179 180
		ret = exynos_dp_dt_parse_panel(dp);
		if (ret)
			return ret;
	}
181

182
	drm_encoder_init(drm_dev, encoder, &exynos_dp_encoder_funcs,
183
			 DRM_MODE_ENCODER_TMDS, NULL);
184 185

	drm_encoder_helper_add(encoder, &exynos_dp_encoder_helper_funcs);
186

187 188 189 190
	ret = exynos_drm_set_possible_crtcs(encoder, EXYNOS_DISPLAY_TYPE_LCD);
	if (ret < 0)
		return ret;

191
	dp->plat_data.encoder = encoder;
192

193
	return analogix_dp_bind(dev, dp->drm_dev, &dp->plat_data);
J
Jingoo Han 已提交
194 195
}

196
static void exynos_dp_unbind(struct device *dev, struct device *master,
197
			     void *data)
J
Jingoo Han 已提交
198
{
199
	return analogix_dp_unbind(dev, master, data);
200 201 202 203 204 205 206 207 208
}

static const struct component_ops exynos_dp_ops = {
	.bind	= exynos_dp_bind,
	.unbind	= exynos_dp_unbind,
};

static int exynos_dp_probe(struct platform_device *pdev)
{
209
	struct device *dev = &pdev->dev;
210
	struct device_node *np;
211
	struct exynos_dp_device *dp;
212 213 214
	struct drm_panel *panel;
	struct drm_bridge *bridge;
	int ret;
215

216
	dp = devm_kzalloc(&pdev->dev, sizeof(struct exynos_dp_device),
217
			  GFP_KERNEL);
218 219 220
	if (!dp)
		return -ENOMEM;

221 222 223 224 225
	/*
	 * We just use the drvdata until driver run into component
	 * add function, and then we would set drvdata to null, so
	 * that analogix dp driver would take charge of the drvdata.
	 */
226 227
	platform_set_drvdata(pdev, dp);

228
	/* This is for the backward compatibility. */
229 230
	np = of_parse_phandle(dev->of_node, "panel", 0);
	if (np) {
231
		dp->plat_data.panel = of_drm_find_panel(np);
232
		of_node_put(np);
233
		if (!dp->plat_data.panel)
234
			return -EPROBE_DEFER;
235
		goto out;
236
	}
237

238 239 240 241 242 243 244
	ret = drm_of_find_panel_or_bridge(dev->of_node, 0, 0, &panel, &bridge);
	if (ret)
		return ret;

	/* The remote port can be either a panel or a bridge */
	dp->plat_data.panel = panel;
	dp->ptn_bridge = bridge;
A
Ajay Kumar 已提交
245

246
out:
247
	return component_add(&pdev->dev, &exynos_dp_ops);
248 249 250 251
}

static int exynos_dp_remove(struct platform_device *pdev)
{
252 253
	component_del(&pdev->dev, &exynos_dp_ops);

J
Jingoo Han 已提交
254 255 256
	return 0;
}

G
Gustavo Padovan 已提交
257 258 259
#ifdef CONFIG_PM
static int exynos_dp_suspend(struct device *dev)
{
260
	return analogix_dp_suspend(dev);
G
Gustavo Padovan 已提交
261 262 263 264
}

static int exynos_dp_resume(struct device *dev)
{
265
	return analogix_dp_resume(dev);
G
Gustavo Padovan 已提交
266 267 268 269 270 271 272
}
#endif

static const struct dev_pm_ops exynos_dp_pm_ops = {
	SET_RUNTIME_PM_OPS(exynos_dp_suspend, exynos_dp_resume, NULL)
};

273 274 275 276
static const struct of_device_id exynos_dp_match[] = {
	{ .compatible = "samsung,exynos5-dp" },
	{},
};
277
MODULE_DEVICE_TABLE(of, exynos_dp_match);
278

279
struct platform_driver dp_driver = {
J
Jingoo Han 已提交
280
	.probe		= exynos_dp_probe,
281
	.remove		= exynos_dp_remove,
J
Jingoo Han 已提交
282 283 284
	.driver		= {
		.name	= "exynos-dp",
		.owner	= THIS_MODULE,
G
Gustavo Padovan 已提交
285
		.pm	= &exynos_dp_pm_ops,
286
		.of_match_table = exynos_dp_match,
J
Jingoo Han 已提交
287 288 289 290
	},
};

MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
291
MODULE_DESCRIPTION("Samsung Specific Analogix-DP Driver Extension");
292
MODULE_LICENSE("GPL v2");