rcar_du_encoder.c 5.2 KB
Newer Older
1
/*
2
 * rcar_du_encoder.c  --  R-Car Display Unit Encoder
3
 *
4
 * Copyright (C) 2013-2014 Renesas Electronics Corporation
5 6 7 8 9 10 11 12 13
 *
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.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.
 */

14 15
#include <linux/export.h>

16 17 18 19 20
#include <drm/drmP.h>
#include <drm/drm_crtc.h>
#include <drm/drm_crtc_helper.h>

#include "rcar_du_drv.h"
21
#include "rcar_du_encoder.h"
22
#include "rcar_du_kms.h"
23
#include "rcar_du_lvdscon.h"
24
#include "rcar_du_lvdsenc.h"
25
#include "rcar_du_vgacon.h"
26

27 28 29 30 31 32
/* -----------------------------------------------------------------------------
 * Common connector functions
 */

struct drm_encoder *
rcar_du_connector_best_encoder(struct drm_connector *connector)
33
{
34 35
	struct rcar_du_connector *rcon = to_rcar_connector(connector);

36
	return rcar_encoder_to_drm_encoder(rcon->encoder);
37 38
}

39 40 41 42 43 44
/* -----------------------------------------------------------------------------
 * Encoder
 */

static void rcar_du_encoder_dpms(struct drm_encoder *encoder, int mode)
{
45 46 47 48
	struct rcar_du_encoder *renc = to_rcar_encoder(encoder);

	if (renc->lvds)
		rcar_du_lvdsenc_dpms(renc->lvds, encoder->crtc, mode);
49 50 51 52 53
}

static bool rcar_du_encoder_mode_fixup(struct drm_encoder *encoder,
				       const struct drm_display_mode *mode,
				       struct drm_display_mode *adjusted_mode)
54
{
55
	struct rcar_du_encoder *renc = to_rcar_encoder(encoder);
56 57 58 59 60
	const struct drm_display_mode *panel_mode;
	struct drm_device *dev = encoder->dev;
	struct drm_connector *connector;
	bool found = false;

61 62 63 64
	/* DAC encoders have currently no restriction on the mode. */
	if (encoder->encoder_type == DRM_MODE_ENCODER_DAC)
		return true;

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
		if (connector->encoder == encoder) {
			found = true;
			break;
		}
	}

	if (!found) {
		dev_dbg(dev->dev, "mode_fixup: no connector found\n");
		return false;
	}

	if (list_empty(&connector->modes)) {
		dev_dbg(dev->dev, "mode_fixup: empty modes list\n");
		return false;
	}

	panel_mode = list_first_entry(&connector->modes,
				      struct drm_display_mode, head);

	/* We're not allowed to modify the resolution. */
	if (mode->hdisplay != panel_mode->hdisplay ||
	    mode->vdisplay != panel_mode->vdisplay)
		return false;

	/* The flat panel mode is fixed, just copy it to the adjusted mode. */
	drm_mode_copy(adjusted_mode, panel_mode);

93 94 95 96 97 98 99
	/* The internal LVDS encoder has a clock frequency operating range of
	 * 30MHz to 150MHz. Clamp the clock accordingly.
	 */
	if (renc->lvds)
		adjusted_mode->clock = clamp(adjusted_mode->clock,
					     30000, 150000);

100 101 102
	return true;
}

103 104
static void rcar_du_encoder_mode_prepare(struct drm_encoder *encoder)
{
105 106 107 108 109
	struct rcar_du_encoder *renc = to_rcar_encoder(encoder);

	if (renc->lvds)
		rcar_du_lvdsenc_dpms(renc->lvds, encoder->crtc,
				     DRM_MODE_DPMS_OFF);
110 111 112 113
}

static void rcar_du_encoder_mode_commit(struct drm_encoder *encoder)
{
114 115 116 117 118
	struct rcar_du_encoder *renc = to_rcar_encoder(encoder);

	if (renc->lvds)
		rcar_du_lvdsenc_dpms(renc->lvds, encoder->crtc,
				     DRM_MODE_DPMS_ON);
119 120 121 122 123 124 125 126 127 128 129
}

static void rcar_du_encoder_mode_set(struct drm_encoder *encoder,
				     struct drm_display_mode *mode,
				     struct drm_display_mode *adjusted_mode)
{
	struct rcar_du_encoder *renc = to_rcar_encoder(encoder);

	rcar_du_crtc_route_output(encoder->crtc, renc->output);
}

130
static const struct drm_encoder_helper_funcs encoder_helper_funcs = {
131 132
	.dpms = rcar_du_encoder_dpms,
	.mode_fixup = rcar_du_encoder_mode_fixup,
133 134 135 136 137 138 139 140 141
	.prepare = rcar_du_encoder_mode_prepare,
	.commit = rcar_du_encoder_mode_commit,
	.mode_set = rcar_du_encoder_mode_set,
};

static const struct drm_encoder_funcs encoder_funcs = {
	.destroy = drm_encoder_cleanup,
};

142
int rcar_du_encoder_init(struct rcar_du_device *rcdu,
143 144
			 enum rcar_du_encoder_type type,
			 enum rcar_du_output output,
145 146
			 struct device_node *enc_node,
			 struct device_node *con_node)
147 148
{
	struct rcar_du_encoder *renc;
149
	struct drm_encoder *encoder;
150
	unsigned int encoder_type;
151 152 153 154 155 156 157
	int ret;

	renc = devm_kzalloc(rcdu->dev, sizeof(*renc), GFP_KERNEL);
	if (renc == NULL)
		return -ENOMEM;

	renc->output = output;
158
	encoder = rcar_encoder_to_drm_encoder(renc);
159

160 161 162 163 164 165 166 167 168 169 170 171 172
	switch (output) {
	case RCAR_DU_OUTPUT_LVDS0:
		renc->lvds = rcdu->lvds[0];
		break;

	case RCAR_DU_OUTPUT_LVDS1:
		renc->lvds = rcdu->lvds[1];
		break;

	default:
		break;
	}

173 174 175 176 177 178 179 180 181 182 183 184 185 186
	switch (type) {
	case RCAR_DU_ENCODER_VGA:
		encoder_type = DRM_MODE_ENCODER_DAC;
		break;
	case RCAR_DU_ENCODER_LVDS:
		encoder_type = DRM_MODE_ENCODER_LVDS;
		break;
	case RCAR_DU_ENCODER_NONE:
	default:
		/* No external encoder, use the internal encoder type. */
		encoder_type = rcdu->info->routes[output].encoder_type;
		break;
	}

187
	ret = drm_encoder_init(rcdu->ddev, encoder, &encoder_funcs,
188
			       encoder_type);
189 190 191
	if (ret < 0)
		return ret;

192
	drm_encoder_helper_add(encoder, &encoder_helper_funcs);
193

194
	switch (encoder_type) {
195
	case DRM_MODE_ENCODER_LVDS:
196
		return rcar_du_lvds_connector_init(rcdu, renc, con_node);
197

198
	case DRM_MODE_ENCODER_DAC:
199 200 201 202 203
		return rcar_du_vga_connector_init(rcdu, renc);

	default:
		return -EINVAL;
	}
204
}