Commit 3ed34c65 authored by Michal Wajdeczko's avatar Michal Wajdeczko

drm/xe/vf: Don't check if LMEM is initialized if VF

It is PF driver responsibility to verify that LMEM was correctly
initialized, also VF drivers don't have access to GU_CNTL register.
Signed-off-by: default avatarMichal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: default avatarMatt Roper <matthew.d.roper@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240213154355.1221-6-michal.wajdeczko@intel.com
parent 60da62fb
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include "xe_gt_mcr.h" #include "xe_gt_mcr.h"
#include "xe_macros.h" #include "xe_macros.h"
#include "xe_module.h" #include "xe_module.h"
#include "xe_sriov.h"
#include "xe_tile.h" #include "xe_tile.h"
#define XEHP_MTCFG_ADDR XE_REG(0x101800) #define XEHP_MTCFG_ADDR XE_REG(0x101800)
...@@ -363,13 +364,19 @@ static int xe_verify_lmem_ready(struct xe_device *xe) ...@@ -363,13 +364,19 @@ static int xe_verify_lmem_ready(struct xe_device *xe)
{ {
struct xe_gt *gt = xe_root_mmio_gt(xe); struct xe_gt *gt = xe_root_mmio_gt(xe);
if (!IS_DGFX(xe))
return 0;
if (IS_SRIOV_VF(xe))
return 0;
/* /*
* The boot firmware initializes local memory and assesses its health. * The boot firmware initializes local memory and assesses its health.
* If memory training fails, the punit will have been instructed to * If memory training fails, the punit will have been instructed to
* keep the GT powered down; we won't be able to communicate with it * keep the GT powered down; we won't be able to communicate with it
* and we should not continue with driver initialization. * and we should not continue with driver initialization.
*/ */
if (IS_DGFX(xe) && !(xe_mmio_read32(gt, GU_CNTL) & LMEM_INIT)) { if (!(xe_mmio_read32(gt, GU_CNTL) & LMEM_INIT)) {
drm_err(&xe->drm, "VRAM not initialized by firmware\n"); drm_err(&xe->drm, "VRAM not initialized by firmware\n");
return -ENODEV; return -ENODEV;
} }
......
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