[PATCH v2] drm/i915/cx0_phy: Update HDMI TMDS C20 algorithm value
kernel test robot
lkp at intel.com
Tue Dec 10 03:55:37 UTC 2024
Hi Dnyaneshwar,
kernel test robot noticed the following build errors:
[auto build test ERROR on next-20241209]
[also build test ERROR on linus/master v6.13-rc2]
[cannot apply to drm-intel/for-linux-next drm-intel/for-linux-next-fixes drm-tip/drm-tip v6.13-rc2 v6.13-rc1 v6.12]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Dnyaneshwar-Bhadane/drm-i915-cx0_phy-Update-HDMI-TMDS-C20-algorithm-value/20241209-233928
base: next-20241209
patch link: https://lore.kernel.org/r/20241209153418.49580-1-dnyaneshwar.bhadane%40intel.com
patch subject: [PATCH v2] drm/i915/cx0_phy: Update HDMI TMDS C20 algorithm value
config: sparc-allmodconfig (https://download.01.org/0day-ci/archive/20241210/202412101146.DQgw8n8S-lkp@intel.com/config)
compiler: sparc64-linux-gcc (GCC) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241210/202412101146.DQgw8n8S-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp at intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202412101146.DQgw8n8S-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/gpu/drm/i915/display/intel_cx0_phy.c: In function 'intel_c20_hdmi_tmds_tx_cgf_1':
>> drivers/gpu/drm/i915/display/intel_cx0_phy.c:2201:21: error: implicit declaration of function 'IS_METEORLAKE_U'; did you mean 'IS_METEORLAKE'? [-Wimplicit-function-declaration]
2201 | if (IS_METEORLAKE_U(to_i915(display->drm)) ||
| ^~~~~~~~~~~~~~~
| IS_METEORLAKE
>> drivers/gpu/drm/i915/display/intel_cx0_phy.c:2202:21: error: implicit declaration of function 'IS_ARROWLAKE_U'; did you mean 'IS_RAPTORLAKE_U'? [-Wimplicit-function-declaration]
2202 | IS_ARROWLAKE_U(to_i915(display->drm)) ||
| ^~~~~~~~~~~~~~
| IS_RAPTORLAKE_U
vim +2201 drivers/gpu/drm/i915/display/intel_cx0_phy.c
2177
2178 static u16 intel_c20_hdmi_tmds_tx_cgf_1(struct intel_crtc_state *crtc_state)
2179 {
2180 struct intel_display *display = to_intel_display(crtc_state);
2181 struct pci_dev *pdev = NULL;
2182 u16 tx_misc;
2183 u16 tx_dcc_cal_dac_ctrl_range = 8;
2184 u16 tx_term_ctrl;
2185 u16 host_bridge_pci_dev_id;
2186
2187 if (IS_BATTLEMAGE(to_i915(display->drm))) {
2188 tx_misc = 0;
2189 tx_term_ctrl = 2;
2190 } else if (DISPLAY_VER(display) >= 20) {
2191 tx_misc = 5;
2192 tx_term_ctrl = 4;
2193 } else if (IS_METEORLAKE(to_i915(display->drm))) {
2194 /*
2195 * Some SoCs have the same drm PCI IDs, so differentiate based
2196 * on the host bridge device ID to use the correct txx_mics value.
2197 */
2198 while ((pdev = pci_get_class(PCI_CLASS_BRIDGE_HOST << 8, pdev)))
2199 host_bridge_pci_dev_id = pdev->device;
2200
> 2201 if (IS_METEORLAKE_U(to_i915(display->drm)) ||
> 2202 IS_ARROWLAKE_U(to_i915(display->drm)) ||
2203 (pdev && IS_ARROWLAKE_S_BY_HOST_BRIDGE_ID(host_bridge_pci_dev_id))) {
2204 tx_misc = 3;
2205 } else {
2206 tx_misc = 7;
2207 }
2208
2209 tx_term_ctrl = 2;
2210 }
2211 return (C20_PHY_TX_MISC(tx_misc) |
2212 C20_PHY_TX_DCC_CAL_RANGE(tx_dcc_cal_dac_ctrl_range) |
2213 C20_PHY_TX_DCC_BYPASS | C20_PHY_TX_TERM_CTL(tx_term_ctrl));
2214 }
2215
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
More information about the Intel-gfx
mailing list