parallel-display.c 8.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * i.MX drm driver - parallel display implementation
 *
 * Copyright (C) 2012 Sascha Hauer, Pengutronix
 *
 * 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.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

16
#include <linux/component.h>
17 18
#include <linux/module.h>
#include <drm/drmP.h>
19
#include <drm/drm_atomic_helper.h>
20 21
#include <drm/drm_fb_helper.h>
#include <drm/drm_crtc_helper.h>
22
#include <drm/drm_panel.h>
23
#include <linux/videodev2.h>
24
#include <video/of_display_timing.h>
25
#include <linux/of_graph.h>
26 27 28 29 30

#include "imx-drm.h"

struct imx_parallel_display {
	struct drm_connector connector;
31
	struct drm_encoder encoder;
32 33 34
	struct device *dev;
	void *edid;
	int edid_len;
35
	u32 bus_format;
36
	struct drm_display_mode mode;
37
	struct drm_panel *panel;
38 39
};

40 41 42 43 44
static inline struct imx_parallel_display *con_to_imxpd(struct drm_connector *c)
{
	return container_of(c, struct imx_parallel_display, connector);
}

45 46 47 48 49
static inline struct imx_parallel_display *enc_to_imxpd(struct drm_encoder *e)
{
	return container_of(e, struct imx_parallel_display, encoder);
}

50 51 52 53 54 55 56 57 58
static enum drm_connector_status imx_pd_connector_detect(
		struct drm_connector *connector, bool force)
{
	return connector_status_connected;
}

static int imx_pd_connector_get_modes(struct drm_connector *connector)
{
	struct imx_parallel_display *imxpd = con_to_imxpd(connector);
59
	struct device_node *np = imxpd->dev->of_node;
60 61
	int num_modes = 0;

62 63 64 65 66 67 68
	if (imxpd->panel && imxpd->panel->funcs &&
	    imxpd->panel->funcs->get_modes) {
		num_modes = imxpd->panel->funcs->get_modes(imxpd->panel);
		if (num_modes > 0)
			return num_modes;
	}

69 70 71 72 73
	if (imxpd->edid) {
		drm_mode_connector_update_edid_property(connector, imxpd->edid);
		num_modes = drm_add_edid_modes(connector, imxpd->edid);
	}

74 75
	if (np) {
		struct drm_display_mode *mode = drm_mode_create(connector->dev);
76
		int ret;
77

78 79
		if (!mode)
			return -EINVAL;
80 81 82 83 84 85

		ret = of_get_drm_display_mode(np, &imxpd->mode,
					      OF_USE_NATIVE_MODE);
		if (ret)
			return ret;

86 87
		drm_mode_copy(mode, &imxpd->mode);
		mode->type |= DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
88 89 90 91 92 93 94 95 96 97 98 99
		drm_mode_probed_add(connector, mode);
		num_modes++;
	}

	return num_modes;
}

static struct drm_encoder *imx_pd_connector_best_encoder(
		struct drm_connector *connector)
{
	struct imx_parallel_display *imxpd = con_to_imxpd(connector);

100
	return &imxpd->encoder;
101 102
}

103
static void imx_pd_encoder_enable(struct drm_encoder *encoder)
104
{
105
	struct imx_parallel_display *imxpd = enc_to_imxpd(encoder);
106 107 108

	drm_panel_prepare(imxpd->panel);
	drm_panel_enable(imxpd->panel);
109 110 111 112
}

static void imx_pd_encoder_disable(struct drm_encoder *encoder)
{
113
	struct imx_parallel_display *imxpd = enc_to_imxpd(encoder);
114 115 116

	drm_panel_disable(imxpd->panel);
	drm_panel_unprepare(imxpd->panel);
117 118
}

119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
static int imx_pd_encoder_atomic_check(struct drm_encoder *encoder,
				       struct drm_crtc_state *crtc_state,
				       struct drm_connector_state *conn_state)
{
	struct imx_crtc_state *imx_crtc_state = to_imx_crtc_state(crtc_state);
	struct drm_display_info *di = &conn_state->connector->display_info;
	struct imx_parallel_display *imxpd = enc_to_imxpd(encoder);

	imx_crtc_state->bus_flags = di->bus_flags;
	if (!imxpd->bus_format && di->num_bus_formats)
		imx_crtc_state->bus_format = di->bus_formats[0];
	else
		imx_crtc_state->bus_format = imxpd->bus_format;
	imx_crtc_state->di_hsync_pin = 2;
	imx_crtc_state->di_vsync_pin = 3;

	return 0;
}

138
static const struct drm_connector_funcs imx_pd_connector_funcs = {
139
	.dpms = drm_atomic_helper_connector_dpms,
140 141
	.fill_modes = drm_helper_probe_single_connector_modes,
	.detect = imx_pd_connector_detect,
142
	.destroy = imx_drm_connector_destroy,
143 144 145
	.reset = drm_atomic_helper_connector_reset,
	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
146 147
};

148
static const struct drm_connector_helper_funcs imx_pd_connector_helper_funcs = {
149 150 151 152
	.get_modes = imx_pd_connector_get_modes,
	.best_encoder = imx_pd_connector_best_encoder,
};

153
static const struct drm_encoder_funcs imx_pd_encoder_funcs = {
154
	.destroy = imx_drm_encoder_destroy,
155 156
};

157
static const struct drm_encoder_helper_funcs imx_pd_encoder_helper_funcs = {
158
	.enable = imx_pd_encoder_enable,
159
	.disable = imx_pd_encoder_disable,
160
	.atomic_check = imx_pd_encoder_atomic_check,
161 162
};

163 164
static int imx_pd_register(struct drm_device *drm,
	struct imx_parallel_display *imxpd)
165
{
166
	struct drm_encoder *encoder = &imxpd->encoder;
167 168
	int ret;

169
	ret = imx_drm_encoder_parse_of(drm, encoder, imxpd->dev->of_node);
170 171
	if (ret)
		return ret;
172

173 174 175 176 177 178 179
	/* set the connector's dpms to OFF so that
	 * drm_helper_connector_dpms() won't return
	 * immediately since the current state is ON
	 * at this point.
	 */
	imxpd->connector.dpms = DRM_MODE_DPMS_OFF;

180 181 182
	drm_encoder_helper_add(encoder, &imx_pd_encoder_helper_funcs);
	drm_encoder_init(drm, encoder, &imx_pd_encoder_funcs,
			 DRM_MODE_ENCODER_NONE, NULL);
183 184 185

	drm_connector_helper_add(&imxpd->connector,
			&imx_pd_connector_helper_funcs);
186 187
	drm_connector_init(drm, &imxpd->connector, &imx_pd_connector_funcs,
			   DRM_MODE_CONNECTOR_VGA);
188

189 190 191
	if (imxpd->panel)
		drm_panel_attach(imxpd->panel, &imxpd->connector);

192
	drm_mode_connector_attach_encoder(&imxpd->connector, encoder);
193 194 195 196

	return 0;
}

197
static int imx_pd_bind(struct device *dev, struct device *master, void *data)
198
{
199
	struct drm_device *drm = data;
200
	struct device_node *np = dev->of_node;
201
	struct device_node *ep;
202 203 204
	const u8 *edidp;
	struct imx_parallel_display *imxpd;
	int ret;
205
	u32 bus_format = 0;
206 207
	const char *fmt;

208
	imxpd = devm_kzalloc(dev, sizeof(*imxpd), GFP_KERNEL);
209 210 211 212 213 214 215 216 217 218
	if (!imxpd)
		return -ENOMEM;

	edidp = of_get_property(np, "edid", &imxpd->edid_len);
	if (edidp)
		imxpd->edid = kmemdup(edidp, imxpd->edid_len, GFP_KERNEL);

	ret = of_property_read_string(np, "interface-pix-fmt", &fmt);
	if (!ret) {
		if (!strcmp(fmt, "rgb24"))
219
			bus_format = MEDIA_BUS_FMT_RGB888_1X24;
220
		else if (!strcmp(fmt, "rgb565"))
221
			bus_format = MEDIA_BUS_FMT_RGB565_1X16;
222
		else if (!strcmp(fmt, "bgr666"))
223
			bus_format = MEDIA_BUS_FMT_RGB666_1X18;
224
		else if (!strcmp(fmt, "lvds666"))
225
			bus_format = MEDIA_BUS_FMT_RGB666_1X24_CPADHI;
226
	}
227
	imxpd->bus_format = bus_format;
228

229
	/* port@1 is the output port */
230 231 232 233 234 235 236 237 238
	ep = of_graph_get_endpoint_by_regs(np, 1, -1);
	if (ep) {
		struct device_node *remote;

		remote = of_graph_get_remote_port_parent(ep);
		of_node_put(ep);
		if (remote) {
			imxpd->panel = of_drm_find_panel(remote);
			of_node_put(remote);
239
		}
240 241
		if (!imxpd->panel)
			return -EPROBE_DEFER;
242
	}
243

244
	imxpd->dev = dev;
245

246
	ret = imx_pd_register(drm, imxpd);
247 248 249
	if (ret)
		return ret;

250
	dev_set_drvdata(dev, imxpd);
251 252 253 254

	return 0;
}

255 256
static void imx_pd_unbind(struct device *dev, struct device *master,
	void *data)
257
{
258
	struct imx_parallel_display *imxpd = dev_get_drvdata(dev);
259

260
	imxpd->encoder.funcs->destroy(&imxpd->encoder);
261
	imxpd->connector.funcs->destroy(&imxpd->connector);
262 263

	kfree(imxpd->edid);
264
}
265

266 267 268 269 270 271 272 273 274 275 276 277 278
static const struct component_ops imx_pd_ops = {
	.bind	= imx_pd_bind,
	.unbind	= imx_pd_unbind,
};

static int imx_pd_probe(struct platform_device *pdev)
{
	return component_add(&pdev->dev, &imx_pd_ops);
}

static int imx_pd_remove(struct platform_device *pdev)
{
	component_del(&pdev->dev, &imx_pd_ops);
279

280 281 282 283 284 285 286
	return 0;
}

static const struct of_device_id imx_pd_dt_ids[] = {
	{ .compatible = "fsl,imx-parallel-display", },
	{ /* sentinel */ }
};
287
MODULE_DEVICE_TABLE(of, imx_pd_dt_ids);
288 289 290

static struct platform_driver imx_pd_driver = {
	.probe		= imx_pd_probe,
291
	.remove		= imx_pd_remove,
292 293 294 295 296 297 298 299 300 301 302
	.driver		= {
		.of_match_table = imx_pd_dt_ids,
		.name	= "imx-parallel-display",
	},
};

module_platform_driver(imx_pd_driver);

MODULE_DESCRIPTION("i.MX parallel display driver");
MODULE_AUTHOR("Sascha Hauer, Pengutronix");
MODULE_LICENSE("GPL");
303
MODULE_ALIAS("platform:imx-parallel-display");