projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
45cfade
)
drm/xe/guc: Fix missing topology init
author
Zhanjun Dong
<zhanjun.dong@intel.com>
Tue, 27 Feb 2024 16:49:22 +0000
(08:49 -0800)
committer
Lucas De Marchi
<lucas.demarchi@intel.com>
Mon, 4 Mar 2024 14:41:17 +0000
(08:41 -0600)
init_steering_dss need topology dss mask to be init ahead.
Fixed by moving xe_gt_topology_init ahead of xe_gt_mcr_init
Fixes:
bf8ec3c3e82c
("drm/xe: Initialize GuC earlier during probe")
Cc: MichaĆ Winiarski <michal.winiarski@intel.com>
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/20240227164922.281346-2-zhanjun.dong@intel.com
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
(cherry picked from commit
4c47049d93b7a7fc2230cded84a6aec6bbd3d61e
)
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
drivers/gpu/drm/xe/xe_gt.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/xe/xe_gt.c
b/drivers/gpu/drm/xe/xe_gt.c
index
b75f0bf
..
a0afe1b
100644
(file)
--- a/
drivers/gpu/drm/xe/xe_gt.c
+++ b/
drivers/gpu/drm/xe/xe_gt.c
@@
-314,8
+314,6
@@
int xe_gt_init_early(struct xe_gt *gt)
if (err)
return err;
- xe_gt_topology_init(gt);
-
err = xe_force_wake_put(gt_to_fw(gt), XE_FW_GT);
if (err)
return err;
@@
-502,6
+500,7
@@
int xe_gt_init_hwconfig(struct xe_gt *gt)
if (err)
goto out;
+ xe_gt_topology_init(gt);
xe_gt_mcr_init(gt);
xe_pat_init(gt);