forked from mirrors/linux
		
	Now that we can use atomic configurations, all the legacy callbacks of CRTCs, encoders and connectors can be switched to the atomic version. For the imx-ldb driver, there is a clock parent setting mismatch bewteen ->enable and ->disable after the switch, so a fixup is added. For the imx-tve driver, since the encoder's callback ->dpms is replaced by ->disable, we need to move the setting for the IPU_CLK_EN bit(in register TVE_COM_CONF_REG) from ->enable/->disable to ->mode_set, otherwise, the relevant CRTC cannot be disabled correctly with a warning on DC stop timeout. Signed-off-by: Liu Ying <gnuiyl@gmail.com> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
		
			
				
	
	
		
			288 lines
		
	
	
	
		
			7.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			288 lines
		
	
	
	
		
			7.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * 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.
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/component.h>
 | 
						|
#include <linux/module.h>
 | 
						|
#include <drm/drmP.h>
 | 
						|
#include <drm/drm_atomic_helper.h>
 | 
						|
#include <drm/drm_fb_helper.h>
 | 
						|
#include <drm/drm_crtc_helper.h>
 | 
						|
#include <drm/drm_panel.h>
 | 
						|
#include <linux/videodev2.h>
 | 
						|
#include <video/of_display_timing.h>
 | 
						|
#include <linux/of_graph.h>
 | 
						|
 | 
						|
#include "imx-drm.h"
 | 
						|
 | 
						|
#define con_to_imxpd(x) container_of(x, struct imx_parallel_display, connector)
 | 
						|
#define imx_enc_to_imxpd(x)	\
 | 
						|
		container_of(x, struct imx_parallel_display, imx_encoder)
 | 
						|
 | 
						|
struct imx_parallel_display {
 | 
						|
	struct drm_connector connector;
 | 
						|
	struct imx_drm_encoder imx_encoder;
 | 
						|
	struct device *dev;
 | 
						|
	void *edid;
 | 
						|
	int edid_len;
 | 
						|
	struct drm_display_mode mode;
 | 
						|
	struct drm_panel *panel;
 | 
						|
};
 | 
						|
 | 
						|
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);
 | 
						|
	struct device_node *np = imxpd->dev->of_node;
 | 
						|
	int num_modes = 0;
 | 
						|
 | 
						|
	if (imxpd->panel && imxpd->panel->funcs &&
 | 
						|
	    imxpd->panel->funcs->get_modes) {
 | 
						|
		struct drm_display_info *di = &connector->display_info;
 | 
						|
 | 
						|
		num_modes = imxpd->panel->funcs->get_modes(imxpd->panel);
 | 
						|
		if (!imxpd->imx_encoder.bus_format && di->num_bus_formats)
 | 
						|
			imxpd->imx_encoder.bus_format = di->bus_formats[0];
 | 
						|
		imxpd->imx_encoder.bus_flags = di->bus_flags;
 | 
						|
		if (num_modes > 0)
 | 
						|
			return num_modes;
 | 
						|
	}
 | 
						|
 | 
						|
	if (imxpd->edid) {
 | 
						|
		drm_mode_connector_update_edid_property(connector, imxpd->edid);
 | 
						|
		num_modes = drm_add_edid_modes(connector, imxpd->edid);
 | 
						|
	}
 | 
						|
 | 
						|
	if (np) {
 | 
						|
		struct drm_display_mode *mode = drm_mode_create(connector->dev);
 | 
						|
 | 
						|
		if (!mode)
 | 
						|
			return -EINVAL;
 | 
						|
		of_get_drm_display_mode(np, &imxpd->mode, OF_USE_NATIVE_MODE);
 | 
						|
		drm_mode_copy(mode, &imxpd->mode);
 | 
						|
		mode->type |= DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
 | 
						|
		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);
 | 
						|
 | 
						|
	return &imxpd->imx_encoder.encoder;
 | 
						|
}
 | 
						|
 | 
						|
static void imx_pd_encoder_enable(struct drm_encoder *encoder)
 | 
						|
{
 | 
						|
	struct imx_drm_encoder *imx_encoder = enc_to_imx_enc(encoder);
 | 
						|
	struct imx_parallel_display *imxpd = imx_enc_to_imxpd(imx_encoder);
 | 
						|
 | 
						|
	drm_panel_prepare(imxpd->panel);
 | 
						|
	drm_panel_enable(imxpd->panel);
 | 
						|
}
 | 
						|
 | 
						|
static void imx_pd_encoder_mode_set(struct drm_encoder *encoder,
 | 
						|
			 struct drm_display_mode *orig_mode,
 | 
						|
			 struct drm_display_mode *mode)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
static void imx_pd_encoder_disable(struct drm_encoder *encoder)
 | 
						|
{
 | 
						|
	struct imx_drm_encoder *imx_encoder = enc_to_imx_enc(encoder);
 | 
						|
	struct imx_parallel_display *imxpd = imx_enc_to_imxpd(imx_encoder);
 | 
						|
 | 
						|
	drm_panel_disable(imxpd->panel);
 | 
						|
	drm_panel_unprepare(imxpd->panel);
 | 
						|
}
 | 
						|
 | 
						|
static const struct drm_connector_funcs imx_pd_connector_funcs = {
 | 
						|
	.dpms = drm_atomic_helper_connector_dpms,
 | 
						|
	.fill_modes = drm_helper_probe_single_connector_modes,
 | 
						|
	.detect = imx_pd_connector_detect,
 | 
						|
	.destroy = imx_drm_connector_destroy,
 | 
						|
	.reset = drm_atomic_helper_connector_reset,
 | 
						|
	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
 | 
						|
	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
 | 
						|
};
 | 
						|
 | 
						|
static const struct drm_connector_helper_funcs imx_pd_connector_helper_funcs = {
 | 
						|
	.get_modes = imx_pd_connector_get_modes,
 | 
						|
	.best_encoder = imx_pd_connector_best_encoder,
 | 
						|
};
 | 
						|
 | 
						|
static const struct drm_encoder_funcs imx_pd_encoder_funcs = {
 | 
						|
	.destroy = imx_drm_encoder_destroy,
 | 
						|
};
 | 
						|
 | 
						|
static const struct drm_encoder_helper_funcs imx_pd_encoder_helper_funcs = {
 | 
						|
	.mode_set = imx_pd_encoder_mode_set,
 | 
						|
	.enable = imx_pd_encoder_enable,
 | 
						|
	.disable = imx_pd_encoder_disable,
 | 
						|
};
 | 
						|
 | 
						|
static int imx_pd_register(struct drm_device *drm,
 | 
						|
	struct imx_parallel_display *imxpd)
 | 
						|
{
 | 
						|
	int ret;
 | 
						|
 | 
						|
	ret = imx_drm_encoder_parse_of(drm, &imxpd->imx_encoder.encoder,
 | 
						|
				       imxpd->dev->of_node);
 | 
						|
	if (ret)
 | 
						|
		return ret;
 | 
						|
 | 
						|
	/* 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;
 | 
						|
 | 
						|
	drm_encoder_helper_add(&imxpd->imx_encoder.encoder,
 | 
						|
			       &imx_pd_encoder_helper_funcs);
 | 
						|
	drm_encoder_init(drm, &imxpd->imx_encoder.encoder,
 | 
						|
			 &imx_pd_encoder_funcs, DRM_MODE_ENCODER_NONE, NULL);
 | 
						|
 | 
						|
	drm_connector_helper_add(&imxpd->connector,
 | 
						|
			&imx_pd_connector_helper_funcs);
 | 
						|
	drm_connector_init(drm, &imxpd->connector, &imx_pd_connector_funcs,
 | 
						|
			   DRM_MODE_CONNECTOR_VGA);
 | 
						|
 | 
						|
	if (imxpd->panel)
 | 
						|
		drm_panel_attach(imxpd->panel, &imxpd->connector);
 | 
						|
 | 
						|
	drm_mode_connector_attach_encoder(&imxpd->connector,
 | 
						|
					  &imxpd->imx_encoder.encoder);
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
static int imx_pd_bind(struct device *dev, struct device *master, void *data)
 | 
						|
{
 | 
						|
	struct drm_device *drm = data;
 | 
						|
	struct device_node *np = dev->of_node;
 | 
						|
	struct device_node *ep;
 | 
						|
	const u8 *edidp;
 | 
						|
	struct imx_parallel_display *imxpd;
 | 
						|
	int ret;
 | 
						|
	u32 bus_format = 0;
 | 
						|
	const char *fmt;
 | 
						|
 | 
						|
	imxpd = devm_kzalloc(dev, sizeof(*imxpd), GFP_KERNEL);
 | 
						|
	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"))
 | 
						|
			bus_format = MEDIA_BUS_FMT_RGB888_1X24;
 | 
						|
		else if (!strcmp(fmt, "rgb565"))
 | 
						|
			bus_format = MEDIA_BUS_FMT_RGB565_1X16;
 | 
						|
		else if (!strcmp(fmt, "bgr666"))
 | 
						|
			bus_format = MEDIA_BUS_FMT_RGB666_1X18;
 | 
						|
		else if (!strcmp(fmt, "lvds666"))
 | 
						|
			bus_format = MEDIA_BUS_FMT_RGB666_1X24_CPADHI;
 | 
						|
	}
 | 
						|
	imxpd->imx_encoder.bus_format = bus_format;
 | 
						|
	imxpd->imx_encoder.di_hsync_pin = 2;
 | 
						|
	imxpd->imx_encoder.di_vsync_pin = 3;
 | 
						|
 | 
						|
	/* port@1 is the output port */
 | 
						|
	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);
 | 
						|
		}
 | 
						|
		if (!imxpd->panel)
 | 
						|
			return -EPROBE_DEFER;
 | 
						|
	}
 | 
						|
 | 
						|
	imxpd->dev = dev;
 | 
						|
 | 
						|
	ret = imx_pd_register(drm, imxpd);
 | 
						|
	if (ret)
 | 
						|
		return ret;
 | 
						|
 | 
						|
	dev_set_drvdata(dev, imxpd);
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
static void imx_pd_unbind(struct device *dev, struct device *master,
 | 
						|
	void *data)
 | 
						|
{
 | 
						|
	struct imx_parallel_display *imxpd = dev_get_drvdata(dev);
 | 
						|
 | 
						|
	imxpd->imx_encoder.encoder.funcs->destroy(&imxpd->imx_encoder.encoder);
 | 
						|
	imxpd->connector.funcs->destroy(&imxpd->connector);
 | 
						|
 | 
						|
	kfree(imxpd->edid);
 | 
						|
}
 | 
						|
 | 
						|
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);
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
static const struct of_device_id imx_pd_dt_ids[] = {
 | 
						|
	{ .compatible = "fsl,imx-parallel-display", },
 | 
						|
	{ /* sentinel */ }
 | 
						|
};
 | 
						|
MODULE_DEVICE_TABLE(of, imx_pd_dt_ids);
 | 
						|
 | 
						|
static struct platform_driver imx_pd_driver = {
 | 
						|
	.probe		= imx_pd_probe,
 | 
						|
	.remove		= imx_pd_remove,
 | 
						|
	.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");
 | 
						|
MODULE_ALIAS("platform:imx-parallel-display");
 |