rcar_du_lvdscon.c 3.5 KB
Newer Older
1 2 3
/*
 * rcar_du_lvdscon.c  --  R-Car Display Unit LVDS Connector
 *
4
 * Copyright (C) 2013-2014 Renesas Electronics Corporation
5 6 7 8 9 10 11 12 13 14
 *
 * 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.
 */

#include <drm/drmP.h>
15
#include <drm/drm_atomic_helper.h>
16 17 18
#include <drm/drm_crtc.h>
#include <drm/drm_crtc_helper.h>

L
Laurent Pinchart 已提交
19 20 21 22
#include <video/display_timing.h>
#include <video/of_display_timing.h>
#include <video/videomode.h>

23
#include "rcar_du_drv.h"
24
#include "rcar_du_encoder.h"
25 26 27 28 29 30
#include "rcar_du_kms.h"
#include "rcar_du_lvdscon.h"

struct rcar_du_lvds_connector {
	struct rcar_du_connector connector;

31 32 33 34 35
	struct {
		unsigned int width_mm;		/* Panel width in mm */
		unsigned int height_mm;		/* Panel height in mm */
		struct videomode mode;
	} panel;
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
};

#define to_rcar_lvds_connector(c) \
	container_of(c, struct rcar_du_lvds_connector, connector.connector)

static int rcar_du_lvds_connector_get_modes(struct drm_connector *connector)
{
	struct rcar_du_lvds_connector *lvdscon =
		to_rcar_lvds_connector(connector);
	struct drm_display_mode *mode;

	mode = drm_mode_create(connector->dev);
	if (mode == NULL)
		return 0;

	mode->type = DRM_MODE_TYPE_PREFERRED | DRM_MODE_TYPE_DRIVER;
52

L
Laurent Pinchart 已提交
53
	drm_display_mode_from_videomode(&lvdscon->panel.mode, mode);
54

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
	drm_mode_probed_add(connector, mode);

	return 1;
}

static const struct drm_connector_helper_funcs connector_helper_funcs = {
	.get_modes = rcar_du_lvds_connector_get_modes,
};

static enum drm_connector_status
rcar_du_lvds_connector_detect(struct drm_connector *connector, bool force)
{
	return connector_status_connected;
}

static const struct drm_connector_funcs connector_funcs = {
71
	.dpms = drm_atomic_helper_connector_dpms,
72
	.reset = drm_atomic_helper_connector_reset,
73 74
	.detect = rcar_du_lvds_connector_detect,
	.fill_modes = drm_helper_probe_single_connector_modes,
75
	.destroy = drm_connector_cleanup,
76 77
	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
78 79 80 81
};

int rcar_du_lvds_connector_init(struct rcar_du_device *rcdu,
				struct rcar_du_encoder *renc,
82
				const struct device_node *np)
83
{
84
	struct drm_encoder *encoder = rcar_encoder_to_drm_encoder(renc);
85 86
	struct rcar_du_lvds_connector *lvdscon;
	struct drm_connector *connector;
87
	struct display_timing timing;
88 89 90 91 92 93
	int ret;

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

94 95 96
	ret = of_get_display_timing(np, "panel-timing", &timing);
	if (ret < 0)
		return ret;
L
Laurent Pinchart 已提交
97

98
	videomode_from_timing(&timing, &lvdscon->panel.mode);
L
Laurent Pinchart 已提交
99

100 101
	of_property_read_u32(np, "width-mm", &lvdscon->panel.width_mm);
	of_property_read_u32(np, "height-mm", &lvdscon->panel.height_mm);
102 103

	connector = &lvdscon->connector.connector;
L
Laurent Pinchart 已提交
104 105
	connector->display_info.width_mm = lvdscon->panel.width_mm;
	connector->display_info.height_mm = lvdscon->panel.height_mm;
106 107 108 109 110 111 112 113

	ret = drm_connector_init(rcdu->ddev, connector, &connector_funcs,
				 DRM_MODE_CONNECTOR_LVDS);
	if (ret < 0)
		return ret;

	drm_connector_helper_add(connector, &connector_helper_funcs);

114
	connector->dpms = DRM_MODE_DPMS_OFF;
115 116 117
	drm_object_property_set_value(&connector->base,
		rcdu->ddev->mode_config.dpms_property, DRM_MODE_DPMS_OFF);

118
	ret = drm_mode_connector_attach_encoder(connector, encoder);
119 120 121 122 123 124 125
	if (ret < 0)
		return ret;

	lvdscon->connector.encoder = renc;

	return 0;
}