mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 08:25:01 +07:00
drm/i915/uc: Include HuC firmware version in summary
After successful uC initialization we are reporting GuC firmware version and status of GuC submission and HuC. Add HuC fw version to this report to make it complete, but also skip all HuC info if HuC is not supported. v2: squeeze to one line (Chris) Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20190812073949.24076-1-michal.wajdeczko@intel.com
This commit is contained in:
parent
ae7a3166a7
commit
d8d6e5eb2b
@ -503,12 +503,20 @@ int intel_uc_init_hw(struct intel_uc *uc)
|
|||||||
goto err_communication;
|
goto err_communication;
|
||||||
}
|
}
|
||||||
|
|
||||||
dev_info(i915->drm.dev, "GuC firmware version %u.%u\n",
|
dev_info(i915->drm.dev, "%s firmware %s version %u.%u %s:%s\n",
|
||||||
guc->fw.major_ver_found, guc->fw.minor_ver_found);
|
intel_uc_fw_type_repr(INTEL_UC_FW_TYPE_GUC), guc->fw.path,
|
||||||
dev_info(i915->drm.dev, "GuC submission %s\n",
|
guc->fw.major_ver_found, guc->fw.minor_ver_found,
|
||||||
|
"submission",
|
||||||
enableddisabled(intel_uc_supports_guc_submission(uc)));
|
enableddisabled(intel_uc_supports_guc_submission(uc)));
|
||||||
dev_info(i915->drm.dev, "HuC %s\n",
|
|
||||||
enableddisabled(intel_huc_is_authenticated(huc)));
|
if (intel_uc_supports_huc(uc)) {
|
||||||
|
dev_info(i915->drm.dev, "%s firmware %s version %u.%u %s:%s\n",
|
||||||
|
intel_uc_fw_type_repr(INTEL_UC_FW_TYPE_HUC),
|
||||||
|
huc->fw.path,
|
||||||
|
huc->fw.major_ver_found, huc->fw.minor_ver_found,
|
||||||
|
"authenticated",
|
||||||
|
yesno(intel_huc_is_authenticated(huc)));
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user