|
@@ -119,7 +119,6 @@ struct hdmi_context {
|
|
|
bool powered;
|
|
|
bool dvi_mode;
|
|
|
struct delayed_work hotplug_work;
|
|
|
- struct drm_display_mode current_mode;
|
|
|
struct cec_notifier *notifier;
|
|
|
const struct hdmi_driver_data *drv_data;
|
|
|
|
|
@@ -770,6 +769,7 @@ static int hdmi_clk_set_parents(struct hdmi_context *hdata, bool to_phy)
|
|
|
|
|
|
static void hdmi_reg_infoframes(struct hdmi_context *hdata)
|
|
|
{
|
|
|
+ struct drm_display_mode *m = &hdata->encoder.crtc->state->mode;
|
|
|
union hdmi_infoframe frm;
|
|
|
u8 buf[25];
|
|
|
int ret;
|
|
@@ -783,8 +783,7 @@ static void hdmi_reg_infoframes(struct hdmi_context *hdata)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- ret = drm_hdmi_avi_infoframe_from_display_mode(&frm.avi,
|
|
|
- &hdata->current_mode, false);
|
|
|
+ ret = drm_hdmi_avi_infoframe_from_display_mode(&frm.avi, m, false);
|
|
|
if (!ret)
|
|
|
ret = hdmi_avi_infoframe_pack(&frm.avi, buf, sizeof(buf));
|
|
|
if (ret > 0) {
|
|
@@ -794,8 +793,7 @@ static void hdmi_reg_infoframes(struct hdmi_context *hdata)
|
|
|
DRM_INFO("%s: invalid AVI infoframe (%d)\n", __func__, ret);
|
|
|
}
|
|
|
|
|
|
- ret = drm_hdmi_vendor_infoframe_from_display_mode(&frm.vendor.hdmi,
|
|
|
- &hdata->current_mode);
|
|
|
+ ret = drm_hdmi_vendor_infoframe_from_display_mode(&frm.vendor.hdmi, m);
|
|
|
if (!ret)
|
|
|
ret = hdmi_vendor_infoframe_pack(&frm.vendor.hdmi, buf,
|
|
|
sizeof(buf));
|
|
@@ -1096,9 +1094,10 @@ static void hdmi_audio_control(struct hdmi_context *hdata, bool onoff)
|
|
|
|
|
|
static void hdmi_start(struct hdmi_context *hdata, bool start)
|
|
|
{
|
|
|
+ struct drm_display_mode *m = &hdata->encoder.crtc->state->mode;
|
|
|
u32 val = start ? HDMI_TG_EN : 0;
|
|
|
|
|
|
- if (hdata->current_mode.flags & DRM_MODE_FLAG_INTERLACE)
|
|
|
+ if (m->flags & DRM_MODE_FLAG_INTERLACE)
|
|
|
val |= HDMI_FIELD_EN;
|
|
|
|
|
|
hdmi_reg_writemask(hdata, HDMI_CON_0, val, HDMI_EN);
|
|
@@ -1168,7 +1167,7 @@ static void hdmiphy_wait_for_pll(struct hdmi_context *hdata)
|
|
|
|
|
|
static void hdmi_v13_mode_apply(struct hdmi_context *hdata)
|
|
|
{
|
|
|
- struct drm_display_mode *m = &hdata->current_mode;
|
|
|
+ struct drm_display_mode *m = &hdata->encoder.crtc->state->mode;
|
|
|
unsigned int val;
|
|
|
|
|
|
hdmi_reg_writev(hdata, HDMI_H_BLANK_0, 2, m->htotal - m->hdisplay);
|
|
@@ -1247,7 +1246,7 @@ static void hdmi_v13_mode_apply(struct hdmi_context *hdata)
|
|
|
|
|
|
static void hdmi_v14_mode_apply(struct hdmi_context *hdata)
|
|
|
{
|
|
|
- struct drm_display_mode *m = &hdata->current_mode;
|
|
|
+ struct drm_display_mode *m = &hdata->encoder.crtc->state->mode;
|
|
|
|
|
|
hdmi_reg_writev(hdata, HDMI_H_BLANK_0, 2, m->htotal - m->hdisplay);
|
|
|
hdmi_reg_writev(hdata, HDMI_V_LINE_0, 2, m->vtotal);
|
|
@@ -1380,10 +1379,11 @@ static void hdmiphy_enable_mode_set(struct hdmi_context *hdata, bool enable)
|
|
|
|
|
|
static void hdmiphy_conf_apply(struct hdmi_context *hdata)
|
|
|
{
|
|
|
+ struct drm_display_mode *m = &hdata->encoder.crtc->state->mode;
|
|
|
int ret;
|
|
|
const u8 *phy_conf;
|
|
|
|
|
|
- ret = hdmi_find_phy_conf(hdata, hdata->current_mode.clock * 1000);
|
|
|
+ ret = hdmi_find_phy_conf(hdata, m->clock * 1000);
|
|
|
if (ret < 0) {
|
|
|
DRM_ERROR("failed to find hdmiphy conf\n");
|
|
|
return;
|
|
@@ -1415,21 +1415,6 @@ static void hdmi_conf_apply(struct hdmi_context *hdata)
|
|
|
hdmi_audio_control(hdata, true);
|
|
|
}
|
|
|
|
|
|
-static void hdmi_mode_set(struct drm_encoder *encoder,
|
|
|
- struct drm_display_mode *mode,
|
|
|
- struct drm_display_mode *adjusted_mode)
|
|
|
-{
|
|
|
- struct hdmi_context *hdata = encoder_to_hdmi(encoder);
|
|
|
- struct drm_display_mode *m = adjusted_mode;
|
|
|
-
|
|
|
- DRM_DEBUG_KMS("xres=%d, yres=%d, refresh=%d, intl=%s\n",
|
|
|
- m->hdisplay, m->vdisplay,
|
|
|
- m->vrefresh, (m->flags & DRM_MODE_FLAG_INTERLACE) ?
|
|
|
- "INTERLACED" : "PROGRESSIVE");
|
|
|
-
|
|
|
- drm_mode_copy(&hdata->current_mode, m);
|
|
|
-}
|
|
|
-
|
|
|
static void hdmi_set_refclk(struct hdmi_context *hdata, bool on)
|
|
|
{
|
|
|
if (!hdata->sysreg)
|
|
@@ -1512,7 +1497,6 @@ static void hdmi_disable(struct drm_encoder *encoder)
|
|
|
|
|
|
static const struct drm_encoder_helper_funcs exynos_hdmi_encoder_helper_funcs = {
|
|
|
.mode_fixup = hdmi_mode_fixup,
|
|
|
- .mode_set = hdmi_mode_set,
|
|
|
.enable = hdmi_enable,
|
|
|
.disable = hdmi_disable,
|
|
|
};
|