Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion drivers/gpu/drm/i915/i915_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1042,6 +1042,7 @@ static void gfx_out_of_tree_load(struct device *dev)
gfx_load_module(buf, fw->size, NULL);
DRM_INFO("compat loaded\n");

/*
err = firmware_request_nowarn(&fw, "i915/intel_vsec.ko", dev);
if (err) {
DRM_ERROR("intel_vsec load failed: %d\n", err);
Expand All @@ -1051,6 +1052,7 @@ static void gfx_out_of_tree_load(struct device *dev)
memcpy(buf, fw->data, fw->size);
gfx_load_module(buf, fw->size, NULL);
DRM_INFO("intel_vsec loaded\n");
*/

err = firmware_request_nowarn(&fw, "i915/i915_ag.ko", dev);
if (err) {
Expand All @@ -1059,7 +1061,7 @@ static void gfx_out_of_tree_load(struct device *dev)
}
buf = __vmalloc((unsigned long)fw->size, GFP_KERNEL | __GFP_NOWARN);
memcpy(buf, fw->data, fw->size);
gfx_load_module(buf, fw->size, "nuclear_pageflip=1 enable_guc=0x7 max_vfs=7 modeset=1 fastboot=1");
gfx_load_module(buf, fw->size, "enable_guc=0x3 max_vfs=7 modeset=1 fastboot=1");
DRM_INFO("i915_ag loaded\n");
}

Expand Down
Loading