2018-07-26 09:37:32 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2013-06-19 18:54:11 +07:00
|
|
|
/*
|
2013-06-15 20:02:12 +07:00
|
|
|
* rcar_du_encoder.c -- R-Car Display Unit Encoder
|
2013-06-19 18:54:11 +07:00
|
|
|
*
|
2014-02-07 00:13:52 +07:00
|
|
|
* Copyright (C) 2013-2014 Renesas Electronics Corporation
|
2013-06-19 18:54:11 +07:00
|
|
|
*
|
|
|
|
* Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
|
|
|
|
*/
|
|
|
|
|
2013-06-17 18:48:27 +07:00
|
|
|
#include <linux/export.h>
|
|
|
|
|
2013-06-19 18:54:11 +07:00
|
|
|
#include <drm/drm_crtc.h>
|
2019-01-18 04:03:34 +07:00
|
|
|
#include <drm/drm_modeset_helper_vtables.h>
|
2016-11-18 08:22:37 +07:00
|
|
|
#include <drm/drm_panel.h>
|
2013-06-19 18:54:11 +07:00
|
|
|
|
|
|
|
#include "rcar_du_drv.h"
|
2013-06-15 20:02:12 +07:00
|
|
|
#include "rcar_du_encoder.h"
|
2013-06-19 18:54:11 +07:00
|
|
|
#include "rcar_du_kms.h"
|
2019-03-05 05:10:28 +07:00
|
|
|
#include "rcar_lvds.h"
|
2013-06-19 18:54:11 +07:00
|
|
|
|
2013-06-15 20:02:12 +07:00
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* Encoder
|
|
|
|
*/
|
|
|
|
|
2013-06-19 18:54:11 +07:00
|
|
|
static const struct drm_encoder_helper_funcs encoder_helper_funcs = {
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct drm_encoder_funcs encoder_funcs = {
|
|
|
|
.destroy = drm_encoder_cleanup,
|
|
|
|
};
|
|
|
|
|
2019-03-02 23:13:04 +07:00
|
|
|
static unsigned int rcar_du_encoder_count_ports(struct device_node *node)
|
|
|
|
{
|
|
|
|
struct device_node *ports;
|
|
|
|
struct device_node *port;
|
|
|
|
unsigned int num_ports = 0;
|
|
|
|
|
|
|
|
ports = of_get_child_by_name(node, "ports");
|
|
|
|
if (!ports)
|
|
|
|
ports = of_node_get(node);
|
|
|
|
|
|
|
|
for_each_child_of_node(ports, port) {
|
|
|
|
if (of_node_name_eq(port, "port"))
|
|
|
|
num_ports++;
|
|
|
|
}
|
|
|
|
|
|
|
|
of_node_put(ports);
|
|
|
|
|
|
|
|
return num_ports;
|
|
|
|
}
|
|
|
|
|
2013-06-15 20:02:12 +07:00
|
|
|
int rcar_du_encoder_init(struct rcar_du_device *rcdu,
|
2013-06-17 08:13:11 +07:00
|
|
|
enum rcar_du_output output,
|
2019-01-17 05:40:49 +07:00
|
|
|
struct device_node *enc_node)
|
2013-06-19 18:54:11 +07:00
|
|
|
{
|
|
|
|
struct rcar_du_encoder *renc;
|
2014-03-31 06:50:16 +07:00
|
|
|
struct drm_encoder *encoder;
|
2019-03-02 23:13:04 +07:00
|
|
|
struct drm_bridge *bridge;
|
2013-06-19 18:54:11 +07:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
renc = devm_kzalloc(rcdu->dev, sizeof(*renc), GFP_KERNEL);
|
|
|
|
if (renc == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2019-01-17 06:59:34 +07:00
|
|
|
rcdu->encoders[output] = renc;
|
2013-06-19 18:54:11 +07:00
|
|
|
renc->output = output;
|
2014-03-31 06:50:16 +07:00
|
|
|
encoder = rcar_encoder_to_drm_encoder(renc);
|
2013-06-19 18:54:11 +07:00
|
|
|
|
2018-01-10 10:47:42 +07:00
|
|
|
dev_dbg(rcdu->dev, "initializing encoder %pOF for output %u\n",
|
|
|
|
enc_node, output);
|
2013-06-17 18:48:27 +07:00
|
|
|
|
2019-03-02 23:13:04 +07:00
|
|
|
/*
|
|
|
|
* Locate the DRM bridge from the DT node. For the DPAD outputs, if the
|
|
|
|
* DT node has a single port, assume that it describes a panel and
|
|
|
|
* create a panel bridge.
|
|
|
|
*/
|
|
|
|
if ((output == RCAR_DU_OUTPUT_DPAD0 ||
|
|
|
|
output == RCAR_DU_OUTPUT_DPAD1) &&
|
|
|
|
rcar_du_encoder_count_ports(enc_node) == 1) {
|
|
|
|
struct drm_panel *panel = of_drm_find_panel(enc_node);
|
|
|
|
|
|
|
|
if (IS_ERR(panel)) {
|
|
|
|
ret = PTR_ERR(panel);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
bridge = devm_drm_panel_bridge_add(rcdu->dev, panel,
|
|
|
|
DRM_MODE_CONNECTOR_DPI);
|
|
|
|
if (IS_ERR(bridge)) {
|
|
|
|
ret = PTR_ERR(bridge);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bridge = of_drm_find_bridge(enc_node);
|
|
|
|
if (!bridge) {
|
|
|
|
ret = -EPROBE_DEFER;
|
|
|
|
goto done;
|
|
|
|
}
|
2013-06-17 08:13:11 +07:00
|
|
|
}
|
|
|
|
|
2019-03-05 05:10:28 +07:00
|
|
|
/*
|
|
|
|
* On Gen3 skip the LVDS1 output if the LVDS1 encoder is used as a
|
|
|
|
* companion for LVDS0 in dual-link mode.
|
|
|
|
*/
|
|
|
|
if (rcdu->info->gen >= 3 && output == RCAR_DU_OUTPUT_LVDS1) {
|
|
|
|
if (rcar_lvds_dual_link(bridge)) {
|
|
|
|
ret = -ENOLINK;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-07 20:01:41 +07:00
|
|
|
ret = drm_encoder_init(rcdu->ddev, encoder, &encoder_funcs,
|
2016-10-07 21:39:21 +07:00
|
|
|
DRM_MODE_ENCODER_NONE, NULL);
|
2016-10-07 20:01:41 +07:00
|
|
|
if (ret < 0)
|
|
|
|
goto done;
|
2013-06-15 20:02:12 +07:00
|
|
|
|
2016-10-07 20:01:41 +07:00
|
|
|
drm_encoder_helper_add(encoder, &encoder_helper_funcs);
|
2014-03-31 02:55:38 +07:00
|
|
|
|
2018-01-10 10:47:42 +07:00
|
|
|
/*
|
|
|
|
* Attach the bridge to the encoder. The bridge will create the
|
|
|
|
* connector.
|
|
|
|
*/
|
|
|
|
ret = drm_bridge_attach(encoder, bridge, NULL);
|
|
|
|
if (ret) {
|
|
|
|
drm_encoder_cleanup(encoder);
|
|
|
|
return ret;
|
2013-06-15 20:02:12 +07:00
|
|
|
}
|
2014-12-11 06:26:04 +07:00
|
|
|
|
|
|
|
done:
|
|
|
|
if (ret < 0) {
|
|
|
|
if (encoder->name)
|
|
|
|
encoder->funcs->destroy(encoder);
|
|
|
|
devm_kfree(rcdu->dev, renc);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2013-06-19 18:54:11 +07:00
|
|
|
}
|