Skip to content

Commit

Permalink
drm/i915/dp: Use auxch precharge value of 5 everywhere
Browse files Browse the repository at this point in the history
The default in the Sandybridge docs is 5, as on Ironlake, and I have no
reason to believe 3 would work any better.

Signed-off-by: Adam Jackson <ajax@redhat.com>
Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Adam Jackson authored and Daniel Vetter committed Jan 17, 2012
1 parent 6919132 commit 092945e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions drivers/gpu/drm/i915/intel_dp.c
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ intel_dp_aux_ch(struct intel_dp *intel_dp,
int recv_bytes;
uint32_t status;
uint32_t aux_clock_divider;
int try, precharge;
int try, precharge = 5;

intel_dp_check_edp(intel_dp);
/* The clock divider is based off the hrawclk,
Expand All @@ -382,11 +382,6 @@ intel_dp_aux_ch(struct intel_dp *intel_dp,
else
aux_clock_divider = intel_hrawclk(dev) / 2;

if (IS_GEN6(dev))
precharge = 3;
else
precharge = 5;

/* Try to wait for any previous AUX channel activity */
for (try = 0; try < 3; try++) {
status = I915_READ(ch_ctl);
Expand Down

0 comments on commit 092945e

Please sign in to comment.