Commit 4381bbd8 authored by Jani Nikula's avatar Jani Nikula

drm/i915/uc: prefer struct drm_device based logging

Prefer struct drm_device based logging over struct device based logging.

No functional changes.

Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: default avatarWambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200402114819.17232-17-jani.nikula@intel.com
parent dc483ba5
...@@ -63,25 +63,25 @@ static void __confirm_options(struct intel_uc *uc) ...@@ -63,25 +63,25 @@ static void __confirm_options(struct intel_uc *uc)
} }
if (!intel_uc_supports_guc(uc)) if (!intel_uc_supports_guc(uc))
dev_info(i915->drm.dev, drm_info(&i915->drm,
"Incompatible option enable_guc=%d - %s\n", "Incompatible option enable_guc=%d - %s\n",
i915_modparams.enable_guc, "GuC is not supported!"); i915_modparams.enable_guc, "GuC is not supported!");
if (i915_modparams.enable_guc & ENABLE_GUC_LOAD_HUC && if (i915_modparams.enable_guc & ENABLE_GUC_LOAD_HUC &&
!intel_uc_supports_huc(uc)) !intel_uc_supports_huc(uc))
dev_info(i915->drm.dev, drm_info(&i915->drm,
"Incompatible option enable_guc=%d - %s\n", "Incompatible option enable_guc=%d - %s\n",
i915_modparams.enable_guc, "HuC is not supported!"); i915_modparams.enable_guc, "HuC is not supported!");
if (i915_modparams.enable_guc & ENABLE_GUC_SUBMISSION && if (i915_modparams.enable_guc & ENABLE_GUC_SUBMISSION &&
!intel_uc_supports_guc_submission(uc)) !intel_uc_supports_guc_submission(uc))
dev_info(i915->drm.dev, drm_info(&i915->drm,
"Incompatible option enable_guc=%d - %s\n", "Incompatible option enable_guc=%d - %s\n",
i915_modparams.enable_guc, "GuC submission is N/A"); i915_modparams.enable_guc, "GuC submission is N/A");
if (i915_modparams.enable_guc & ~(ENABLE_GUC_SUBMISSION | if (i915_modparams.enable_guc & ~(ENABLE_GUC_SUBMISSION |
ENABLE_GUC_LOAD_HUC)) ENABLE_GUC_LOAD_HUC))
dev_info(i915->drm.dev, drm_info(&i915->drm,
"Incompatible option enable_guc=%d - %s\n", "Incompatible option enable_guc=%d - %s\n",
i915_modparams.enable_guc, "undocumented flag"); i915_modparams.enable_guc, "undocumented flag");
} }
...@@ -480,14 +480,14 @@ static int __uc_init_hw(struct intel_uc *uc) ...@@ -480,14 +480,14 @@ static int __uc_init_hw(struct intel_uc *uc)
if (intel_uc_uses_guc_submission(uc)) if (intel_uc_uses_guc_submission(uc))
intel_guc_submission_enable(guc); intel_guc_submission_enable(guc);
dev_info(i915->drm.dev, "%s firmware %s version %u.%u %s:%s\n", drm_info(&i915->drm, "%s firmware %s version %u.%u %s:%s\n",
intel_uc_fw_type_repr(INTEL_UC_FW_TYPE_GUC), guc->fw.path, intel_uc_fw_type_repr(INTEL_UC_FW_TYPE_GUC), guc->fw.path,
guc->fw.major_ver_found, guc->fw.minor_ver_found, guc->fw.major_ver_found, guc->fw.minor_ver_found,
"submission", "submission",
enableddisabled(intel_uc_uses_guc_submission(uc))); enableddisabled(intel_uc_uses_guc_submission(uc)));
if (intel_uc_uses_huc(uc)) { if (intel_uc_uses_huc(uc)) {
dev_info(i915->drm.dev, "%s firmware %s version %u.%u %s:%s\n", drm_info(&i915->drm, "%s firmware %s version %u.%u %s:%s\n",
intel_uc_fw_type_repr(INTEL_UC_FW_TYPE_HUC), intel_uc_fw_type_repr(INTEL_UC_FW_TYPE_HUC),
huc->fw.path, huc->fw.path,
huc->fw.major_ver_found, huc->fw.minor_ver_found, huc->fw.major_ver_found, huc->fw.minor_ver_found,
...@@ -508,7 +508,7 @@ static int __uc_init_hw(struct intel_uc *uc) ...@@ -508,7 +508,7 @@ static int __uc_init_hw(struct intel_uc *uc)
__uc_sanitize(uc); __uc_sanitize(uc);
if (!ret) { if (!ret) {
dev_notice(i915->drm.dev, "GuC is uninitialized\n"); drm_notice(&i915->drm, "GuC is uninitialized\n");
/* We want to run without GuC submission */ /* We want to run without GuC submission */
return 0; return 0;
} }
......
...@@ -296,7 +296,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw) ...@@ -296,7 +296,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw)
/* Check the size of the blob before examining buffer contents */ /* Check the size of the blob before examining buffer contents */
if (unlikely(fw->size < sizeof(struct uc_css_header))) { if (unlikely(fw->size < sizeof(struct uc_css_header))) {
dev_warn(dev, "%s firmware %s: invalid size: %zu < %zu\n", drm_warn(&i915->drm, "%s firmware %s: invalid size: %zu < %zu\n",
intel_uc_fw_type_repr(uc_fw->type), uc_fw->path, intel_uc_fw_type_repr(uc_fw->type), uc_fw->path,
fw->size, sizeof(struct uc_css_header)); fw->size, sizeof(struct uc_css_header));
err = -ENODATA; err = -ENODATA;
...@@ -309,7 +309,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw) ...@@ -309,7 +309,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw)
size = (css->header_size_dw - css->key_size_dw - css->modulus_size_dw - size = (css->header_size_dw - css->key_size_dw - css->modulus_size_dw -
css->exponent_size_dw) * sizeof(u32); css->exponent_size_dw) * sizeof(u32);
if (unlikely(size != sizeof(struct uc_css_header))) { if (unlikely(size != sizeof(struct uc_css_header))) {
dev_warn(dev, drm_warn(&i915->drm,
"%s firmware %s: unexpected header size: %zu != %zu\n", "%s firmware %s: unexpected header size: %zu != %zu\n",
intel_uc_fw_type_repr(uc_fw->type), uc_fw->path, intel_uc_fw_type_repr(uc_fw->type), uc_fw->path,
fw->size, sizeof(struct uc_css_header)); fw->size, sizeof(struct uc_css_header));
...@@ -322,7 +322,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw) ...@@ -322,7 +322,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw)
/* now RSA */ /* now RSA */
if (unlikely(css->key_size_dw != UOS_RSA_SCRATCH_COUNT)) { if (unlikely(css->key_size_dw != UOS_RSA_SCRATCH_COUNT)) {
dev_warn(dev, "%s firmware %s: unexpected key size: %u != %u\n", drm_warn(&i915->drm, "%s firmware %s: unexpected key size: %u != %u\n",
intel_uc_fw_type_repr(uc_fw->type), uc_fw->path, intel_uc_fw_type_repr(uc_fw->type), uc_fw->path,
css->key_size_dw, UOS_RSA_SCRATCH_COUNT); css->key_size_dw, UOS_RSA_SCRATCH_COUNT);
err = -EPROTO; err = -EPROTO;
...@@ -333,7 +333,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw) ...@@ -333,7 +333,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw)
/* At least, it should have header, uCode and RSA. Size of all three. */ /* At least, it should have header, uCode and RSA. Size of all three. */
size = sizeof(struct uc_css_header) + uc_fw->ucode_size + uc_fw->rsa_size; size = sizeof(struct uc_css_header) + uc_fw->ucode_size + uc_fw->rsa_size;
if (unlikely(fw->size < size)) { if (unlikely(fw->size < size)) {
dev_warn(dev, "%s firmware %s: invalid size: %zu < %zu\n", drm_warn(&i915->drm, "%s firmware %s: invalid size: %zu < %zu\n",
intel_uc_fw_type_repr(uc_fw->type), uc_fw->path, intel_uc_fw_type_repr(uc_fw->type), uc_fw->path,
fw->size, size); fw->size, size);
err = -ENOEXEC; err = -ENOEXEC;
...@@ -343,7 +343,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw) ...@@ -343,7 +343,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw)
/* Sanity check whether this fw is not larger than whole WOPCM memory */ /* Sanity check whether this fw is not larger than whole WOPCM memory */
size = __intel_uc_fw_get_upload_size(uc_fw); size = __intel_uc_fw_get_upload_size(uc_fw);
if (unlikely(size >= i915->wopcm.size)) { if (unlikely(size >= i915->wopcm.size)) {
dev_warn(dev, "%s firmware %s: invalid size: %zu > %zu\n", drm_warn(&i915->drm, "%s firmware %s: invalid size: %zu > %zu\n",
intel_uc_fw_type_repr(uc_fw->type), uc_fw->path, intel_uc_fw_type_repr(uc_fw->type), uc_fw->path,
size, (size_t)i915->wopcm.size); size, (size_t)i915->wopcm.size);
err = -E2BIG; err = -E2BIG;
...@@ -358,7 +358,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw) ...@@ -358,7 +358,7 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw)
if (uc_fw->major_ver_found != uc_fw->major_ver_wanted || if (uc_fw->major_ver_found != uc_fw->major_ver_wanted ||
uc_fw->minor_ver_found < uc_fw->minor_ver_wanted) { uc_fw->minor_ver_found < uc_fw->minor_ver_wanted) {
dev_notice(dev, "%s firmware %s: unexpected version: %u.%u != %u.%u\n", drm_notice(&i915->drm, "%s firmware %s: unexpected version: %u.%u != %u.%u\n",
intel_uc_fw_type_repr(uc_fw->type), uc_fw->path, intel_uc_fw_type_repr(uc_fw->type), uc_fw->path,
uc_fw->major_ver_found, uc_fw->minor_ver_found, uc_fw->major_ver_found, uc_fw->minor_ver_found,
uc_fw->major_ver_wanted, uc_fw->minor_ver_wanted); uc_fw->major_ver_wanted, uc_fw->minor_ver_wanted);
...@@ -386,9 +386,9 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw) ...@@ -386,9 +386,9 @@ int intel_uc_fw_fetch(struct intel_uc_fw *uc_fw)
INTEL_UC_FIRMWARE_MISSING : INTEL_UC_FIRMWARE_MISSING :
INTEL_UC_FIRMWARE_ERROR); INTEL_UC_FIRMWARE_ERROR);
dev_notice(dev, "%s firmware %s: fetch failed with error %d\n", drm_notice(&i915->drm, "%s firmware %s: fetch failed with error %d\n",
intel_uc_fw_type_repr(uc_fw->type), uc_fw->path, err); intel_uc_fw_type_repr(uc_fw->type), uc_fw->path, err);
dev_info(dev, "%s firmware(s) can be downloaded from %s\n", drm_info(&i915->drm, "%s firmware(s) can be downloaded from %s\n",
intel_uc_fw_type_repr(uc_fw->type), INTEL_UC_FIRMWARE_URL); intel_uc_fw_type_repr(uc_fw->type), INTEL_UC_FIRMWARE_URL);
release_firmware(fw); /* OK even if fw is NULL */ release_firmware(fw); /* OK even if fw is NULL */
...@@ -473,7 +473,7 @@ static int uc_fw_xfer(struct intel_uc_fw *uc_fw, u32 dst_offset, u32 dma_flags) ...@@ -473,7 +473,7 @@ static int uc_fw_xfer(struct intel_uc_fw *uc_fw, u32 dst_offset, u32 dma_flags)
/* Wait for DMA to finish */ /* Wait for DMA to finish */
ret = intel_wait_for_register_fw(uncore, DMA_CTRL, START_DMA, 0, 100); ret = intel_wait_for_register_fw(uncore, DMA_CTRL, START_DMA, 0, 100);
if (ret) if (ret)
dev_err(gt->i915->drm.dev, "DMA for %s fw failed, DMA_CTRL=%u\n", drm_err(&gt->i915->drm, "DMA for %s fw failed, DMA_CTRL=%u\n",
intel_uc_fw_type_repr(uc_fw->type), intel_uc_fw_type_repr(uc_fw->type),
intel_uncore_read_fw(uncore, DMA_CTRL)); intel_uncore_read_fw(uncore, DMA_CTRL));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment