2015-10-29 16:37:32 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Free Electrons
|
|
|
|
* Copyright (C) 2015 NextThing Co
|
|
|
|
*
|
|
|
|
* Maxime Ripard <maxime.ripard@free-electrons.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 <linux/clk.h>
|
|
|
|
|
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/drm_atomic_helper.h>
|
|
|
|
#include <drm/drm_crtc_helper.h>
|
2017-03-30 02:55:46 +08:00
|
|
|
#include <drm/drm_of.h>
|
2015-10-29 16:37:32 +08:00
|
|
|
#include <drm/drm_panel.h>
|
|
|
|
|
2017-02-23 16:05:39 +08:00
|
|
|
#include "sun4i_crtc.h"
|
2015-10-29 16:37:32 +08:00
|
|
|
#include "sun4i_tcon.h"
|
2016-09-08 18:59:22 +08:00
|
|
|
#include "sun4i_rgb.h"
|
2015-10-29 16:37:32 +08:00
|
|
|
|
|
|
|
struct sun4i_rgb {
|
|
|
|
struct drm_connector connector;
|
|
|
|
struct drm_encoder encoder;
|
|
|
|
|
2017-02-23 16:05:41 +08:00
|
|
|
struct sun4i_tcon *tcon;
|
2015-10-29 16:37:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct sun4i_rgb *
|
|
|
|
drm_connector_to_sun4i_rgb(struct drm_connector *connector)
|
|
|
|
{
|
|
|
|
return container_of(connector, struct sun4i_rgb,
|
|
|
|
connector);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct sun4i_rgb *
|
|
|
|
drm_encoder_to_sun4i_rgb(struct drm_encoder *encoder)
|
|
|
|
{
|
|
|
|
return container_of(encoder, struct sun4i_rgb,
|
|
|
|
encoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sun4i_rgb_get_modes(struct drm_connector *connector)
|
|
|
|
{
|
|
|
|
struct sun4i_rgb *rgb =
|
|
|
|
drm_connector_to_sun4i_rgb(connector);
|
2017-02-23 16:05:41 +08:00
|
|
|
struct sun4i_tcon *tcon = rgb->tcon;
|
2015-10-29 16:37:32 +08:00
|
|
|
|
|
|
|
return drm_panel_get_modes(tcon->panel);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sun4i_rgb_mode_valid(struct drm_connector *connector,
|
|
|
|
struct drm_display_mode *mode)
|
|
|
|
{
|
2016-04-21 17:25:26 +08:00
|
|
|
struct sun4i_rgb *rgb = drm_connector_to_sun4i_rgb(connector);
|
2017-02-23 16:05:41 +08:00
|
|
|
struct sun4i_tcon *tcon = rgb->tcon;
|
2015-10-29 16:37:32 +08:00
|
|
|
u32 hsync = mode->hsync_end - mode->hsync_start;
|
|
|
|
u32 vsync = mode->vsync_end - mode->vsync_start;
|
2016-04-21 17:25:26 +08:00
|
|
|
unsigned long rate = mode->clock * 1000;
|
|
|
|
long rounded_rate;
|
2015-10-29 16:37:32 +08:00
|
|
|
|
|
|
|
DRM_DEBUG_DRIVER("Validating modes...\n");
|
|
|
|
|
|
|
|
if (hsync < 1)
|
|
|
|
return MODE_HSYNC_NARROW;
|
|
|
|
|
|
|
|
if (hsync > 0x3ff)
|
|
|
|
return MODE_HSYNC_WIDE;
|
|
|
|
|
|
|
|
if ((mode->hdisplay < 1) || (mode->htotal < 1))
|
|
|
|
return MODE_H_ILLEGAL;
|
|
|
|
|
|
|
|
if ((mode->hdisplay > 0x7ff) || (mode->htotal > 0xfff))
|
|
|
|
return MODE_BAD_HVALUE;
|
|
|
|
|
|
|
|
DRM_DEBUG_DRIVER("Horizontal parameters OK\n");
|
|
|
|
|
|
|
|
if (vsync < 1)
|
|
|
|
return MODE_VSYNC_NARROW;
|
|
|
|
|
|
|
|
if (vsync > 0x3ff)
|
|
|
|
return MODE_VSYNC_WIDE;
|
|
|
|
|
|
|
|
if ((mode->vdisplay < 1) || (mode->vtotal < 1))
|
|
|
|
return MODE_V_ILLEGAL;
|
|
|
|
|
|
|
|
if ((mode->vdisplay > 0x7ff) || (mode->vtotal > 0xfff))
|
|
|
|
return MODE_BAD_VVALUE;
|
|
|
|
|
|
|
|
DRM_DEBUG_DRIVER("Vertical parameters OK\n");
|
|
|
|
|
2016-04-21 17:25:26 +08:00
|
|
|
rounded_rate = clk_round_rate(tcon->dclk, rate);
|
|
|
|
if (rounded_rate < rate)
|
|
|
|
return MODE_CLOCK_LOW;
|
|
|
|
|
|
|
|
if (rounded_rate > rate)
|
|
|
|
return MODE_CLOCK_HIGH;
|
|
|
|
|
|
|
|
DRM_DEBUG_DRIVER("Clock rate OK\n");
|
|
|
|
|
2015-10-29 16:37:32 +08:00
|
|
|
return MODE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct drm_connector_helper_funcs sun4i_rgb_con_helper_funcs = {
|
|
|
|
.get_modes = sun4i_rgb_get_modes,
|
|
|
|
.mode_valid = sun4i_rgb_mode_valid,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
sun4i_rgb_connector_destroy(struct drm_connector *connector)
|
|
|
|
{
|
|
|
|
struct sun4i_rgb *rgb = drm_connector_to_sun4i_rgb(connector);
|
2017-02-23 16:05:41 +08:00
|
|
|
struct sun4i_tcon *tcon = rgb->tcon;
|
2015-10-29 16:37:32 +08:00
|
|
|
|
|
|
|
drm_panel_detach(tcon->panel);
|
|
|
|
drm_connector_cleanup(connector);
|
|
|
|
}
|
|
|
|
|
2017-08-08 19:28:31 +08:00
|
|
|
static const struct drm_connector_funcs sun4i_rgb_con_funcs = {
|
2015-10-29 16:37:32 +08:00
|
|
|
.fill_modes = drm_helper_probe_single_connector_modes,
|
|
|
|
.destroy = sun4i_rgb_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 void sun4i_rgb_encoder_enable(struct drm_encoder *encoder)
|
|
|
|
{
|
|
|
|
struct sun4i_rgb *rgb = drm_encoder_to_sun4i_rgb(encoder);
|
2017-02-23 16:05:41 +08:00
|
|
|
struct sun4i_tcon *tcon = rgb->tcon;
|
2015-10-29 16:37:32 +08:00
|
|
|
|
|
|
|
DRM_DEBUG_DRIVER("Enabling RGB output\n");
|
|
|
|
|
drm/sun4i: tcon: Don't rely on encoders to enable the TCON
So far, we've required all the TCON-connected encoders to call the TCON
enable and disable functions.
This was made this way because in the RGB/LVDS case, the TCON is the CRTC
and the encoder. However, in all the other cases (HDMI, TV, DSI, etc.), we
have another encoder down the road that needs to be programmed.
We also needed to know which channel the encoder is connected to, which is
encoder-specific.
The CRTC's enable and disable callbacks can work just fine for our use
case, and we can get the channel to use just by looking at the type of
encoder, since that is fixed. Implement those callbacks, which will
remove some of the encoder boilerplate.
Reviewed-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Link: https://patchwork.freedesktop.org/patch/msgid/90b4396e19b3eca61b2ebfdae0672074b88ad74d.1508231063.git-series.maxime.ripard@free-electrons.com
2017-10-17 17:06:12 +08:00
|
|
|
if (!IS_ERR(tcon->panel)) {
|
2016-08-30 14:55:00 +08:00
|
|
|
drm_panel_prepare(tcon->panel);
|
2016-09-26 18:21:45 +08:00
|
|
|
drm_panel_enable(tcon->panel);
|
drm/sun4i: tcon: Don't rely on encoders to enable the TCON
So far, we've required all the TCON-connected encoders to call the TCON
enable and disable functions.
This was made this way because in the RGB/LVDS case, the TCON is the CRTC
and the encoder. However, in all the other cases (HDMI, TV, DSI, etc.), we
have another encoder down the road that needs to be programmed.
We also needed to know which channel the encoder is connected to, which is
encoder-specific.
The CRTC's enable and disable callbacks can work just fine for our use
case, and we can get the channel to use just by looking at the type of
encoder, since that is fixed. Implement those callbacks, which will
remove some of the encoder boilerplate.
Reviewed-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Link: https://patchwork.freedesktop.org/patch/msgid/90b4396e19b3eca61b2ebfdae0672074b88ad74d.1508231063.git-series.maxime.ripard@free-electrons.com
2017-10-17 17:06:12 +08:00
|
|
|
}
|
2015-10-29 16:37:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sun4i_rgb_encoder_disable(struct drm_encoder *encoder)
|
|
|
|
{
|
|
|
|
struct sun4i_rgb *rgb = drm_encoder_to_sun4i_rgb(encoder);
|
2017-02-23 16:05:41 +08:00
|
|
|
struct sun4i_tcon *tcon = rgb->tcon;
|
2015-10-29 16:37:32 +08:00
|
|
|
|
|
|
|
DRM_DEBUG_DRIVER("Disabling RGB output\n");
|
|
|
|
|
drm/sun4i: tcon: Don't rely on encoders to enable the TCON
So far, we've required all the TCON-connected encoders to call the TCON
enable and disable functions.
This was made this way because in the RGB/LVDS case, the TCON is the CRTC
and the encoder. However, in all the other cases (HDMI, TV, DSI, etc.), we
have another encoder down the road that needs to be programmed.
We also needed to know which channel the encoder is connected to, which is
encoder-specific.
The CRTC's enable and disable callbacks can work just fine for our use
case, and we can get the channel to use just by looking at the type of
encoder, since that is fixed. Implement those callbacks, which will
remove some of the encoder boilerplate.
Reviewed-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Link: https://patchwork.freedesktop.org/patch/msgid/90b4396e19b3eca61b2ebfdae0672074b88ad74d.1508231063.git-series.maxime.ripard@free-electrons.com
2017-10-17 17:06:12 +08:00
|
|
|
if (!IS_ERR(tcon->panel)) {
|
2016-09-26 18:21:45 +08:00
|
|
|
drm_panel_disable(tcon->panel);
|
2016-08-30 14:55:00 +08:00
|
|
|
drm_panel_unprepare(tcon->panel);
|
drm/sun4i: tcon: Don't rely on encoders to enable the TCON
So far, we've required all the TCON-connected encoders to call the TCON
enable and disable functions.
This was made this way because in the RGB/LVDS case, the TCON is the CRTC
and the encoder. However, in all the other cases (HDMI, TV, DSI, etc.), we
have another encoder down the road that needs to be programmed.
We also needed to know which channel the encoder is connected to, which is
encoder-specific.
The CRTC's enable and disable callbacks can work just fine for our use
case, and we can get the channel to use just by looking at the type of
encoder, since that is fixed. Implement those callbacks, which will
remove some of the encoder boilerplate.
Reviewed-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Link: https://patchwork.freedesktop.org/patch/msgid/90b4396e19b3eca61b2ebfdae0672074b88ad74d.1508231063.git-series.maxime.ripard@free-electrons.com
2017-10-17 17:06:12 +08:00
|
|
|
}
|
2015-10-29 16:37:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct drm_encoder_helper_funcs sun4i_rgb_enc_helper_funcs = {
|
|
|
|
.disable = sun4i_rgb_encoder_disable,
|
|
|
|
.enable = sun4i_rgb_encoder_enable,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void sun4i_rgb_enc_destroy(struct drm_encoder *encoder)
|
|
|
|
{
|
|
|
|
drm_encoder_cleanup(encoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct drm_encoder_funcs sun4i_rgb_enc_funcs = {
|
|
|
|
.destroy = sun4i_rgb_enc_destroy,
|
|
|
|
};
|
|
|
|
|
2017-02-23 16:05:41 +08:00
|
|
|
int sun4i_rgb_init(struct drm_device *drm, struct sun4i_tcon *tcon)
|
2015-10-29 16:37:32 +08:00
|
|
|
{
|
2016-04-11 18:16:33 +08:00
|
|
|
struct drm_encoder *encoder;
|
2016-11-28 23:59:08 +08:00
|
|
|
struct drm_bridge *bridge;
|
2015-10-29 16:37:32 +08:00
|
|
|
struct sun4i_rgb *rgb;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
rgb = devm_kzalloc(drm->dev, sizeof(*rgb), GFP_KERNEL);
|
|
|
|
if (!rgb)
|
|
|
|
return -ENOMEM;
|
2017-02-23 16:05:41 +08:00
|
|
|
rgb->tcon = tcon;
|
2016-04-11 18:16:33 +08:00
|
|
|
encoder = &rgb->encoder;
|
2015-10-29 16:37:32 +08:00
|
|
|
|
2017-03-30 02:55:46 +08:00
|
|
|
ret = drm_of_find_panel_or_bridge(tcon->dev->of_node, 1, 0,
|
|
|
|
&tcon->panel, &bridge);
|
|
|
|
if (ret) {
|
2016-04-11 18:16:33 +08:00
|
|
|
dev_info(drm->dev, "No panel or bridge found... RGB output disabled\n");
|
2016-07-20 16:35:06 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-10-29 16:37:32 +08:00
|
|
|
drm_encoder_helper_add(&rgb->encoder,
|
|
|
|
&sun4i_rgb_enc_helper_funcs);
|
|
|
|
ret = drm_encoder_init(drm,
|
|
|
|
&rgb->encoder,
|
|
|
|
&sun4i_rgb_enc_funcs,
|
|
|
|
DRM_MODE_ENCODER_NONE,
|
|
|
|
NULL);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(drm->dev, "Couldn't initialise the rgb encoder\n");
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The RGB encoder can only work with the TCON channel 0 */
|
2017-02-23 16:05:39 +08:00
|
|
|
rgb->encoder.possible_crtcs = BIT(drm_crtc_index(&tcon->crtc->crtc));
|
2015-10-29 16:37:32 +08:00
|
|
|
|
2017-03-30 02:55:46 +08:00
|
|
|
if (tcon->panel) {
|
2016-04-11 18:16:33 +08:00
|
|
|
drm_connector_helper_add(&rgb->connector,
|
|
|
|
&sun4i_rgb_con_helper_funcs);
|
|
|
|
ret = drm_connector_init(drm, &rgb->connector,
|
|
|
|
&sun4i_rgb_con_funcs,
|
|
|
|
DRM_MODE_CONNECTOR_Unknown);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(drm->dev, "Couldn't initialise the rgb connector\n");
|
|
|
|
goto err_cleanup_connector;
|
|
|
|
}
|
|
|
|
|
|
|
|
drm_mode_connector_attach_encoder(&rgb->connector,
|
|
|
|
&rgb->encoder);
|
|
|
|
|
|
|
|
ret = drm_panel_attach(tcon->panel, &rgb->connector);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(drm->dev, "Couldn't attach our panel\n");
|
|
|
|
goto err_cleanup_connector;
|
|
|
|
}
|
2015-10-29 16:37:32 +08:00
|
|
|
}
|
|
|
|
|
2017-03-30 02:55:46 +08:00
|
|
|
if (bridge) {
|
2016-11-28 23:59:08 +08:00
|
|
|
ret = drm_bridge_attach(encoder, bridge, NULL);
|
2016-04-11 18:16:33 +08:00
|
|
|
if (ret) {
|
|
|
|
dev_err(drm->dev, "Couldn't attach our bridge\n");
|
|
|
|
goto err_cleanup_connector;
|
|
|
|
}
|
|
|
|
}
|
2015-10-29 16:37:32 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_cleanup_connector:
|
|
|
|
drm_encoder_cleanup(&rgb->encoder);
|
|
|
|
err_out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(sun4i_rgb_init);
|