exynos_dp.c 7.7 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_panel.h>
27

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

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

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

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

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

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

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

56 57 58
	crtc = to_exynos_crtc(encoder->crtc);
	if (crtc && crtc->ops && crtc->ops->clock_enable)
		crtc->ops->clock_enable(crtc, enable);
59

J
Jingoo Han 已提交
60 61 62
	return 0;
}

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

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

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

80 81
	if (dp->plat_data.panel)
		return num_modes;
82

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

89
	drm_display_mode_from_videomode(&dp->vm, mode);
90 91 92 93 94 95
	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);
96

97
	return num_modes + 1;
98 99
}

100 101 102
static int exynos_dp_bridge_attach(struct analogix_dp_plat_data *plat_data,
				   struct drm_bridge *bridge,
				   struct drm_connector *connector)
103
{
104
	struct exynos_dp_device *dp = to_dp(plat_data);
105
	struct drm_encoder *encoder = &dp->encoder;
106 107
	int ret;

108
	drm_connector_register(connector);
109

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

122 123 124 125 126 127 128 129 130
	return 0;
}

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

131
static void exynos_dp_nop(struct drm_encoder *encoder)
132
{
133
	/* do nothing */
134 135
}

136
static const struct drm_encoder_helper_funcs exynos_dp_encoder_helper_funcs = {
137
	.mode_set = exynos_dp_mode_set,
138 139
	.enable = exynos_dp_nop,
	.disable = exynos_dp_nop,
140 141
};

142
static const struct drm_encoder_funcs exynos_dp_encoder_funcs = {
143 144 145
	.destroy = drm_encoder_cleanup,
};

146 147 148 149
static int exynos_dp_dt_parse_panel(struct exynos_dp_device *dp)
{
	int ret;

150
	ret = of_get_videomode(dp->dev->of_node, &dp->vm, OF_USE_NATIVE_MODE);
151 152 153 154 155 156 157
	if (ret) {
		DRM_ERROR("failed: of_get_videomode() : %d\n", ret);
		return ret;
	}
	return 0;
}

158
static int exynos_dp_bind(struct device *dev, struct device *master, void *data)
J
Jingoo Han 已提交
159
{
160
	struct exynos_dp_device *dp = dev_get_drvdata(dev);
161
	struct drm_encoder *encoder = &dp->encoder;
162 163
	struct drm_device *drm_dev = data;
	int pipe, ret;
J
Jingoo Han 已提交
164

165 166 167 168 169 170
	/*
	 * 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 已提交
171

172 173
	dp->dev = dev;
	dp->drm_dev = drm_dev;
174

175 176 177 178 179
	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;
180

181
	if (!dp->plat_data.panel && !dp->ptn_bridge) {
182 183 184 185
		ret = exynos_dp_dt_parse_panel(dp);
		if (ret)
			return ret;
	}
186

187 188 189 190 191 192 193 194 195 196
	pipe = exynos_drm_crtc_get_pipe_from_type(drm_dev,
						  EXYNOS_DISPLAY_TYPE_LCD);
	if (pipe < 0)
		return pipe;

	encoder->possible_crtcs = 1 << pipe;

	DRM_DEBUG_KMS("possible_crtcs = 0x%x\n", encoder->possible_crtcs);

	drm_encoder_init(drm_dev, encoder, &exynos_dp_encoder_funcs,
197
			 DRM_MODE_ENCODER_TMDS, NULL);
198 199

	drm_encoder_helper_add(encoder, &exynos_dp_encoder_helper_funcs);
200

201
	dp->plat_data.encoder = encoder;
202

203
	return analogix_dp_bind(dev, dp->drm_dev, &dp->plat_data);
J
Jingoo Han 已提交
204 205
}

206 207
static void exynos_dp_unbind(struct device *dev, struct device *master,
				void *data)
J
Jingoo Han 已提交
208
{
209
	return analogix_dp_unbind(dev, master, data);
210 211 212 213 214 215 216 217 218
}

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)
{
219
	struct device *dev = &pdev->dev;
220
	struct device_node *np = NULL, *endpoint = NULL;
221
	struct exynos_dp_device *dp;
222

223 224 225 226 227
	dp = devm_kzalloc(&pdev->dev, sizeof(struct exynos_dp_device),
				GFP_KERNEL);
	if (!dp)
		return -ENOMEM;

228 229 230 231 232
	/*
	 * 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.
	 */
233 234
	platform_set_drvdata(pdev, dp);

235
	/* This is for the backward compatibility. */
236 237
	np = of_parse_phandle(dev->of_node, "panel", 0);
	if (np) {
238
		dp->plat_data.panel = of_drm_find_panel(np);
239
		of_node_put(np);
240
		if (!dp->plat_data.panel)
241
			return -EPROBE_DEFER;
242
		goto out;
243
	}
244

A
Ajay Kumar 已提交
245 246
	endpoint = of_graph_get_next_endpoint(dev->of_node, NULL);
	if (endpoint) {
247 248 249
		np = of_graph_get_remote_port_parent(endpoint);
		if (np) {
			/* The remote port can be either a panel or a bridge */
250 251
			dp->plat_data.panel = of_drm_find_panel(np);
			if (!dp->plat_data.panel) {
252 253 254 255 256 257 258 259 260 261 262 263 264 265
				dp->ptn_bridge = of_drm_find_bridge(np);
				if (!dp->ptn_bridge) {
					of_node_put(np);
					return -EPROBE_DEFER;
				}
			}
			of_node_put(np);
		} else {
			DRM_ERROR("no remote endpoint device node found.\n");
			return -EINVAL;
		}
	} else {
		DRM_ERROR("no port endpoint subnode found.\n");
		return -EINVAL;
A
Ajay Kumar 已提交
266 267
	}

268
out:
269
	return component_add(&pdev->dev, &exynos_dp_ops);
270 271 272 273
}

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

J
Jingoo Han 已提交
276 277 278
	return 0;
}

G
Gustavo Padovan 已提交
279 280 281
#ifdef CONFIG_PM
static int exynos_dp_suspend(struct device *dev)
{
282
	return analogix_dp_suspend(dev);
G
Gustavo Padovan 已提交
283 284 285 286
}

static int exynos_dp_resume(struct device *dev)
{
287
	return analogix_dp_resume(dev);
G
Gustavo Padovan 已提交
288 289 290 291 292 293 294
}
#endif

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

295 296 297 298
static const struct of_device_id exynos_dp_match[] = {
	{ .compatible = "samsung,exynos5-dp" },
	{},
};
299
MODULE_DEVICE_TABLE(of, exynos_dp_match);
300

301
struct platform_driver dp_driver = {
J
Jingoo Han 已提交
302
	.probe		= exynos_dp_probe,
303
	.remove		= exynos_dp_remove,
J
Jingoo Han 已提交
304 305 306
	.driver		= {
		.name	= "exynos-dp",
		.owner	= THIS_MODULE,
G
Gustavo Padovan 已提交
307
		.pm	= &exynos_dp_pm_ops,
308
		.of_match_table = exynos_dp_match,
J
Jingoo Han 已提交
309 310 311 312
	},
};

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