diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2013-09-10 17:02:54 +0300 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-09-13 14:53:21 +0200 |
commit | eb14cb747bc53465cbc93e54d9f19f49eed2c0c7 (patch) | |
tree | d1ce3127fa293a68d798f4d206924dbeb2183b8a /drivers/gpu/drm/i915/intel_dp.c | |
parent | 42571aefafb1d330ef84eb29418832f72e7dfb4c (diff) | |
download | lwn-eb14cb747bc53465cbc93e54d9f19f49eed2c0c7.tar.gz lwn-eb14cb747bc53465cbc93e54d9f19f49eed2c0c7.zip |
drm/i915: Add state readout and checking for has_dp_encoder and dp_m_n
Add functions to read out the CPU and PCH transcoder M/N values,
and use them to fill out the pipe config dp_m_n information. And
while at it populate has_dp_encoder too.
Also refactor ironlake_get_fdi_m_n_config() to simply call the new
intel_cpu_transcoder_get_m_n() function.
v2: Remember the DDI
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_dp.c')
-rw-r--r-- | drivers/gpu/drm/i915/intel_dp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c index 8c70a833950d..9ba697cc1499 100644 --- a/drivers/gpu/drm/i915/intel_dp.c +++ b/drivers/gpu/drm/i915/intel_dp.c @@ -1444,6 +1444,10 @@ static void intel_dp_get_config(struct intel_encoder *encoder, pipe_config->adjusted_mode.flags |= flags; + pipe_config->has_dp_encoder = true; + + intel_dp_get_m_n(crtc, pipe_config); + if (dp_to_dig_port(intel_dp)->port == PORT_A) { if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_160MHZ) pipe_config->port_clock = 162000; |