return i % SCALER_FILTER_NUM_TAPS;
}
-static u32 casf_coeff(const struct intel_crtc_state *crtc_state, int t)
+static u32 casf_coeff(const struct intel_crtc_state *crtc_state, int tap)
{
struct scaler_filter_coeff value;
u32 coeff;
- value = crtc_state->pch_pfit.casf.coeff[t];
+ value = crtc_state->pch_pfit.casf.coeff[tap];
value.sign = 0;
coeff = value.sign << 15 | value.exp << 12 | value.mantissa << 3;
for (i = 0; i < 17 * SCALER_FILTER_NUM_TAPS; i += 2) {
u32 tmp;
- int t;
+ int tap;
- t = casf_coeff_tap(i);
- tmp = casf_coeff(crtc_state, t);
+ tap = casf_coeff_tap(i);
+ tmp = casf_coeff(crtc_state, tap);
- t = casf_coeff_tap(i + 1);
- tmp |= casf_coeff(crtc_state, t) << 16;
+ tap = casf_coeff_tap(i + 1);
+ tmp |= casf_coeff(crtc_state, tap) << 16;
intel_de_write_fw(display, GLK_PS_COEF_DATA_SET(crtc->pipe, id, 0),
tmp);
return i % 7;
}
-static u16 glk_nearest_filter_coef(int t)
+static u16 glk_nearest_filter_coef(int tap)
{
- return t == 3 ? 0x0800 : 0x3000;
+ return tap == 3 ? 0x0800 : 0x3000;
}
/*
for (i = 0; i < 17 * 7; i += 2) {
u32 tmp;
- int t;
+ int tap;
- t = glk_coef_tap(i);
- tmp = glk_nearest_filter_coef(t);
+ tap = glk_coef_tap(i);
+ tmp = glk_nearest_filter_coef(tap);
- t = glk_coef_tap(i + 1);
- tmp |= glk_nearest_filter_coef(t) << 16;
+ tap = glk_coef_tap(i + 1);
+ tmp |= glk_nearest_filter_coef(tap) << 16;
intel_de_write_dsb(display, dsb,
GLK_PS_COEF_DATA_SET(pipe, id, set), tmp);