Add cpu transcoder attribute to intel dp

Also, used this attribute in the calculation of htotal and other registers
Added intel_dp_* functions for m,n registers and dimension register calculations

Change-Id: I99dd7156700d59b0b4c85e34c9aa1c6408c7f31a
Reviewed-on: https://gerrit.chromium.org/gerrit/64001
Reviewed-by: Ronald G. Minnich <rminnich@chromium.org>
Commit-Queue: Furquan Shaikh <furquan@chromium.org>
Tested-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: http://review.coreboot.org/4422
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
Furquan Shaikh 2013-07-31 16:47:31 -07:00 committed by Patrick Georgi
parent d0a81f7534
commit db3157cfee
6 changed files with 55 additions and 20 deletions

View File

@ -56,6 +56,13 @@ enum pipe {
I915_NUM_PIPES
};
enum transcoder {
TRANSCODER_A = 0,
TRANSCODER_B,
TRANSCODER_C,
TRANSCODER_EDP = 0xF,
};
/* debug enums. These are for printks that, due to their place in the
* middle of graphics device IO, might change timing. Use with care
* or not at all.
@ -160,6 +167,7 @@ struct intel_dp {
u32 stride;
struct intel_dp_m_n m_n;
u32 flags;
u32 transcoder;
};
/* we may yet need these. */
@ -221,3 +229,9 @@ u32 intel_ddi_calc_transcoder_flags(u32 pipe_bpp,
int type,
int lane_count,
int pf_sz);
enum transcoder intel_ddi_get_transcoder(enum port port,
enum pipe pipe);
void intel_dp_set_m_n_regs(struct intel_dp *intel_dp);
void intel_dp_set_resolution(struct intel_dp *intel_dp);

View File

@ -3839,6 +3839,9 @@
#define _TRANSACONF 0xf0008
#define _TRANSBCONF 0xf1008
#define TRANSCONF(plane) _PIPE(plane, _TRANSACONF, _TRANSBCONF)
#define _PCH_TRANSACONF 0xf0008
#define _PCH_TRANSBCONF 0xf1008
#define PCH_TRANSCONF(plane) _PIPE(plane, _PCH_TRANSACONF, _PCH_TRANSBCONF)
#define TRANS_DISABLE (0<<31)
#define TRANS_ENABLE (1<<31)
#define TRANS_STATE_MASK (1<<30)

View File

@ -223,3 +223,11 @@ u32 intel_ddi_calc_transcoder_flags(u32 pipe_bpp,
return temp;
}
enum transcoder intel_ddi_get_transcoder(enum port port,
enum pipe pipe)
{
if (port == PORT_A)
return TRANSCODER_EDP;
return (enum transcoder)pipe;
}

View File

@ -1739,3 +1739,25 @@ intel_dp_get_max_downspread(struct intel_dp *intel_dp, u8 *max_downspread)
return 1;
}
void intel_dp_set_m_n_regs(struct intel_dp *intel_dp)
{
io_i915_write32(0x7e4a0000, PIPE_DATA_M1(intel_dp->transcoder));
/* io_i915_write32(0x00800000,0x6f034); */
/* Write to 0x6f030 has to be 0x7e4ayyyy -- First four hex digits are important.
However, with our formula we always see values 0x7e43yyyy (1366 panel) and
0x7e42yyy (1280 panel) */
/* io_i915_write32(TU_SIZE(intel_dp->m_n.tu) | intel_dp->m_n.gmch_m,PIPE_DATA_M1(intel_dp->transcoder)); */
io_i915_write32(intel_dp->m_n.gmch_n, PIPE_DATA_N1(intel_dp->transcoder));
io_i915_write32(intel_dp->m_n.link_m, PIPE_LINK_M1(intel_dp->transcoder));
io_i915_write32(intel_dp->m_n.link_n, PIPE_LINK_N1(intel_dp->transcoder));
}
void intel_dp_set_resolution(struct intel_dp *intel_dp)
{
io_i915_write32(intel_dp->htotal, HTOTAL(intel_dp->transcoder));
io_i915_write32(intel_dp->hblank, HBLANK(intel_dp->transcoder));
io_i915_write32(intel_dp->hsync, HSYNC(intel_dp->transcoder));
io_i915_write32(intel_dp->vtotal, VTOTAL(intel_dp->transcoder));
io_i915_write32(intel_dp->vblank, VBLANK(intel_dp->transcoder));
io_i915_write32(intel_dp->vsync, VSYNC(intel_dp->transcoder));
}

View File

@ -295,6 +295,9 @@ void dp_init_dim_regs(struct intel_dp *dp)
dp->lane_count,
dp->pfa_sz);
dp->transcoder = intel_ddi_get_transcoder(dp->port,
dp->pipe);
intel_dp_compute_m_n(dp->bpp,
dp->lane_count,
dp->edid.pixel_clock,

View File

@ -115,27 +115,12 @@ printk(BIOS_SPEW, "DP_MAX_DOWNSPREAD");
unpack_aux(auxout, &msg[0], 4);
intel_dp_aux_ch(dp, msg, 4, auxin, 0);
/* undocumented. */
io_i915_write32(0x7e4a0000,0x6f030);
/* io_i915_write32(0x00800000,0x6f034); */
/* Write to 0x6f030 has to be 0x7e4ayyyy -- First four hex digits are important.
However, with our formula we always see values 0x7e43yyyy (1366 panel) and
0x7e42yyy (1280 panel) */
/* io_i915_write32(TU_SIZE(dp->m_n.tu) | dp->m_n.gmch_m,0x6f030); */
io_i915_write32(dp->m_n.gmch_n,0x6f034);
io_i915_write32(dp->m_n.link_m,0x6f040);
io_i915_write32(dp->m_n.link_n,0x6f044);
intel_dp_set_m_n_regs(dp);
/* leave as is for now. */
io_i915_write32(dp->htotal,0x6f000);
io_i915_write32(dp->hblank,0x6f004);
io_i915_write32(dp->hsync,0x6f008);
io_i915_write32(dp->vtotal,0x6f00c);
io_i915_write32(dp->vblank,0x6f010);
io_i915_write32(dp->vsync,0x6f014);
io_i915_write32(dp->pipesrc,_PIPEASRC);
io_i915_write32(0x00000000,0x7f008);
io_i915_write32(0x00000000,_TRANSACONF);
intel_dp_set_resolution(dp);
io_i915_write32(dp->pipesrc,PIPESRC(dp->pipe));
io_i915_write32(0x00000000, PIPECONF(dp->transcoder));
io_i915_write32(0x00000000, PCH_TRANSCONF(dp->pipe));
io_i915_write32(0x20000000,PORT_CLK_SEL_A);
io_i915_write32((/* DISPPLANE_SEL_PIPE(0=A,1=B) */0x0<<24)|0x14000000,_DSPACNTR);