blob: a110cf22f3b0a6e9a6a184e929053c87c9411361 [file] [log] [blame]
Laurent Pinchart9e8be272013-06-15 14:21:51 +02001/*
2 * rcar_du_vgacon.c -- R-Car Display Unit VGA Connector
3 *
Laurent Pinchart36d50462014-02-06 18:13:52 +01004 * Copyright (C) 2013-2014 Renesas Electronics Corporation
Laurent Pinchart9e8be272013-06-15 14:21:51 +02005 *
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <drm/drmP.h>
Laurent Pinchart3e8da872015-02-20 11:30:59 +020015#include <drm/drm_atomic_helper.h>
Laurent Pinchart9e8be272013-06-15 14:21:51 +020016#include <drm/drm_crtc.h>
17#include <drm/drm_crtc_helper.h>
18
19#include "rcar_du_drv.h"
Laurent Pinchart6978f122013-06-15 15:02:12 +020020#include "rcar_du_encoder.h"
Laurent Pinchart9e8be272013-06-15 14:21:51 +020021#include "rcar_du_kms.h"
22#include "rcar_du_vgacon.h"
23
24static int rcar_du_vga_connector_get_modes(struct drm_connector *connector)
25{
26 return 0;
27}
28
Laurent Pinchart9e8be272013-06-15 14:21:51 +020029static const struct drm_connector_helper_funcs connector_helper_funcs = {
30 .get_modes = rcar_du_vga_connector_get_modes,
Laurent Pinchart9e8be272013-06-15 14:21:51 +020031 .best_encoder = rcar_du_connector_best_encoder,
32};
33
34static void rcar_du_vga_connector_destroy(struct drm_connector *connector)
35{
Thomas Wood34ea3d32014-05-29 16:57:41 +010036 drm_connector_unregister(connector);
Laurent Pinchart9e8be272013-06-15 14:21:51 +020037 drm_connector_cleanup(connector);
38}
39
40static enum drm_connector_status
41rcar_du_vga_connector_detect(struct drm_connector *connector, bool force)
42{
Laurent Pinchart3864c6f2013-03-14 22:45:22 +010043 return connector_status_connected;
Laurent Pinchart9e8be272013-06-15 14:21:51 +020044}
45
46static const struct drm_connector_funcs connector_funcs = {
47 .dpms = drm_helper_connector_dpms,
Laurent Pinchart3e8da872015-02-20 11:30:59 +020048 .reset = drm_atomic_helper_connector_reset,
Laurent Pinchart9e8be272013-06-15 14:21:51 +020049 .detect = rcar_du_vga_connector_detect,
50 .fill_modes = drm_helper_probe_single_connector_modes,
51 .destroy = rcar_du_vga_connector_destroy,
Laurent Pinchart3e8da872015-02-20 11:30:59 +020052 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
53 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Laurent Pinchart9e8be272013-06-15 14:21:51 +020054};
55
56int rcar_du_vga_connector_init(struct rcar_du_device *rcdu,
57 struct rcar_du_encoder *renc)
58{
Laurent Pinchart4b96b702014-03-31 01:50:16 +020059 struct drm_encoder *encoder = rcar_encoder_to_drm_encoder(renc);
Laurent Pinchart9e8be272013-06-15 14:21:51 +020060 struct rcar_du_connector *rcon;
61 struct drm_connector *connector;
62 int ret;
63
64 rcon = devm_kzalloc(rcdu->dev, sizeof(*rcon), GFP_KERNEL);
65 if (rcon == NULL)
66 return -ENOMEM;
67
68 connector = &rcon->connector;
69 connector->display_info.width_mm = 0;
70 connector->display_info.height_mm = 0;
Laurent Pinchart906eff72014-12-09 19:11:18 +020071 connector->interlace_allowed = true;
Laurent Pinchart9e8be272013-06-15 14:21:51 +020072
73 ret = drm_connector_init(rcdu->ddev, connector, &connector_funcs,
74 DRM_MODE_CONNECTOR_VGA);
75 if (ret < 0)
76 return ret;
77
78 drm_connector_helper_add(connector, &connector_helper_funcs);
Thomas Wood34ea3d32014-05-29 16:57:41 +010079 ret = drm_connector_register(connector);
Laurent Pinchart9e8be272013-06-15 14:21:51 +020080 if (ret < 0)
81 return ret;
82
83 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
84 drm_object_property_set_value(&connector->base,
85 rcdu->ddev->mode_config.dpms_property, DRM_MODE_DPMS_OFF);
86
Laurent Pinchart4b96b702014-03-31 01:50:16 +020087 ret = drm_mode_connector_attach_encoder(connector, encoder);
Laurent Pinchart9e8be272013-06-15 14:21:51 +020088 if (ret < 0)
89 return ret;
90
Laurent Pinchart9e8be272013-06-15 14:21:51 +020091 rcon->encoder = renc;
92
93 return 0;
94}