mirror of https://gitee.com/openkylin/linux.git
drm/exynos/hdmi: remove redundant configuration fields
The patch removes redundant fields from hdmi_conf_regs. Their values can be calculated from current_mode. This patch is the first step to remove whole hdmi_conf_regs structure. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Reviewed-by: Joonyoung Shim <jy0922.shim@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
This commit is contained in:
parent
cd240cde91
commit
c93aaebfd1
|
@ -169,14 +169,9 @@ struct hdmi_v14_conf {
|
|||
struct hdmi_tg_regs tg;
|
||||
};
|
||||
|
||||
struct hdmi_conf_regs {
|
||||
int pixel_clock;
|
||||
int cea_video_id;
|
||||
enum hdmi_picture_aspect aspect_ratio;
|
||||
union {
|
||||
struct hdmi_v13_conf v13_conf;
|
||||
struct hdmi_v14_conf v14_conf;
|
||||
} conf;
|
||||
union hdmi_conf_regs {
|
||||
struct hdmi_v13_conf v13_conf;
|
||||
struct hdmi_v14_conf v14_conf;
|
||||
};
|
||||
|
||||
struct hdmi_context {
|
||||
|
@ -197,7 +192,8 @@ struct hdmi_context {
|
|||
|
||||
/* current hdmiphy conf regs */
|
||||
struct drm_display_mode current_mode;
|
||||
struct hdmi_conf_regs mode_conf;
|
||||
u8 cea_video_id;
|
||||
union hdmi_conf_regs mode_conf;
|
||||
|
||||
struct hdmi_resources res;
|
||||
const struct hdmi_driver_data *drv_data;
|
||||
|
@ -951,7 +947,7 @@ static void hdmi_reg_infoframe(struct hdmi_context *hdata,
|
|||
u32 hdr_sum;
|
||||
u8 chksum;
|
||||
u32 mod;
|
||||
u32 vic;
|
||||
u8 ar;
|
||||
|
||||
mod = hdmi_reg_read(hdata, HDMI_MODE_SEL);
|
||||
if (hdata->dvi_mode) {
|
||||
|
@ -982,27 +978,22 @@ static void hdmi_reg_infoframe(struct hdmi_context *hdata,
|
|||
* Set the aspect ratio as per the mode, mentioned in
|
||||
* Table 9 AVI InfoFrame Data Byte 2 of CEA-861-D Standard
|
||||
*/
|
||||
switch (hdata->mode_conf.aspect_ratio) {
|
||||
ar = hdata->current_mode.picture_aspect_ratio;
|
||||
switch (ar) {
|
||||
case HDMI_PICTURE_ASPECT_4_3:
|
||||
hdmi_reg_writeb(hdata, HDMI_AVI_BYTE(2),
|
||||
hdata->mode_conf.aspect_ratio |
|
||||
AVI_4_3_CENTER_RATIO);
|
||||
ar |= AVI_4_3_CENTER_RATIO;
|
||||
break;
|
||||
case HDMI_PICTURE_ASPECT_16_9:
|
||||
hdmi_reg_writeb(hdata, HDMI_AVI_BYTE(2),
|
||||
hdata->mode_conf.aspect_ratio |
|
||||
AVI_16_9_CENTER_RATIO);
|
||||
ar |= AVI_16_9_CENTER_RATIO;
|
||||
break;
|
||||
case HDMI_PICTURE_ASPECT_NONE:
|
||||
default:
|
||||
hdmi_reg_writeb(hdata, HDMI_AVI_BYTE(2),
|
||||
hdata->mode_conf.aspect_ratio |
|
||||
AVI_SAME_AS_PIC_ASPECT_RATIO);
|
||||
ar |= AVI_SAME_AS_PIC_ASPECT_RATIO;
|
||||
break;
|
||||
}
|
||||
hdmi_reg_writeb(hdata, HDMI_AVI_BYTE(2), ar);
|
||||
|
||||
vic = hdata->mode_conf.cea_video_id;
|
||||
hdmi_reg_writeb(hdata, HDMI_AVI_BYTE(4), vic);
|
||||
hdmi_reg_writeb(hdata, HDMI_AVI_BYTE(4), hdata->cea_video_id);
|
||||
|
||||
chksum = hdmi_chksum(hdata, HDMI_AVI_BYTE(1),
|
||||
infoframe->any.length, hdr_sum);
|
||||
|
@ -1418,9 +1409,8 @@ static void hdmi_conf_init(struct hdmi_context *hdata)
|
|||
|
||||
static void hdmi_v13_mode_apply(struct hdmi_context *hdata)
|
||||
{
|
||||
const struct hdmi_tg_regs *tg = &hdata->mode_conf.conf.v13_conf.tg;
|
||||
const struct hdmi_v13_core_regs *core =
|
||||
&hdata->mode_conf.conf.v13_conf.core;
|
||||
const struct hdmi_tg_regs *tg = &hdata->mode_conf.v13_conf.tg;
|
||||
const struct hdmi_v13_core_regs *core = &hdata->mode_conf.v13_conf.core;
|
||||
int tries;
|
||||
|
||||
/* setting core registers */
|
||||
|
@ -1502,9 +1492,8 @@ static void hdmi_v13_mode_apply(struct hdmi_context *hdata)
|
|||
|
||||
static void hdmi_v14_mode_apply(struct hdmi_context *hdata)
|
||||
{
|
||||
const struct hdmi_tg_regs *tg = &hdata->mode_conf.conf.v14_conf.tg;
|
||||
const struct hdmi_v14_core_regs *core =
|
||||
&hdata->mode_conf.conf.v14_conf.core;
|
||||
const struct hdmi_tg_regs *tg = &hdata->mode_conf.v14_conf.tg;
|
||||
const struct hdmi_v14_core_regs *core = &hdata->mode_conf.v14_conf.core;
|
||||
int tries;
|
||||
|
||||
/* setting core registers */
|
||||
|
@ -1742,7 +1731,7 @@ static void hdmiphy_conf_apply(struct hdmi_context *hdata)
|
|||
int i;
|
||||
|
||||
/* pixel clock */
|
||||
i = hdmi_find_phy_conf(hdata, hdata->mode_conf.pixel_clock);
|
||||
i = hdmi_find_phy_conf(hdata, hdata->current_mode.clock * 1000);
|
||||
if (i < 0) {
|
||||
DRM_ERROR("failed to find hdmiphy conf\n");
|
||||
return;
|
||||
|
@ -1794,15 +1783,10 @@ static void hdmi_set_reg(u8 *reg_pair, int num_bytes, u32 value)
|
|||
static void hdmi_v13_mode_set(struct hdmi_context *hdata,
|
||||
struct drm_display_mode *m)
|
||||
{
|
||||
struct hdmi_v13_core_regs *core = &hdata->mode_conf.conf.v13_conf.core;
|
||||
struct hdmi_tg_regs *tg = &hdata->mode_conf.conf.v13_conf.tg;
|
||||
struct hdmi_v13_core_regs *core = &hdata->mode_conf.v13_conf.core;
|
||||
struct hdmi_tg_regs *tg = &hdata->mode_conf.v13_conf.tg;
|
||||
unsigned int val;
|
||||
|
||||
hdata->mode_conf.cea_video_id =
|
||||
drm_match_cea_mode((struct drm_display_mode *)m);
|
||||
hdata->mode_conf.pixel_clock = m->clock * 1000;
|
||||
hdata->mode_conf.aspect_ratio = m->picture_aspect_ratio;
|
||||
|
||||
hdmi_set_reg(core->h_blank, 2, m->htotal - m->hdisplay);
|
||||
hdmi_set_reg(core->h_v_line, 3, (m->htotal << 12) | m->vtotal);
|
||||
|
||||
|
@ -1891,14 +1875,8 @@ static void hdmi_v13_mode_set(struct hdmi_context *hdata,
|
|||
static void hdmi_v14_mode_set(struct hdmi_context *hdata,
|
||||
struct drm_display_mode *m)
|
||||
{
|
||||
struct hdmi_tg_regs *tg = &hdata->mode_conf.conf.v14_conf.tg;
|
||||
struct hdmi_v14_core_regs *core =
|
||||
&hdata->mode_conf.conf.v14_conf.core;
|
||||
|
||||
hdata->mode_conf.cea_video_id =
|
||||
drm_match_cea_mode((struct drm_display_mode *)m);
|
||||
hdata->mode_conf.pixel_clock = m->clock * 1000;
|
||||
hdata->mode_conf.aspect_ratio = m->picture_aspect_ratio;
|
||||
struct hdmi_tg_regs *tg = &hdata->mode_conf.v14_conf.tg;
|
||||
struct hdmi_v14_core_regs *core = &hdata->mode_conf.v14_conf.core;
|
||||
|
||||
hdmi_set_reg(core->h_blank, 2, m->htotal - m->hdisplay);
|
||||
hdmi_set_reg(core->v_line, 2, m->vtotal);
|
||||
|
@ -2014,6 +1992,8 @@ static void hdmi_mode_set(struct exynos_drm_display *display,
|
|||
/* preserve mode information for later use. */
|
||||
drm_mode_copy(&hdata->current_mode, mode);
|
||||
|
||||
hdata->cea_video_id = drm_match_cea_mode(mode);
|
||||
|
||||
if (hdata->drv_data->type == HDMI_TYPE13)
|
||||
hdmi_v13_mode_set(hdata, mode);
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue