diff options
author | John Harrison <[email protected]> | 2024-02-02 12:00:16 -0800 |
---|---|---|
committer | Lucas De Marchi <[email protected]> | 2024-02-02 22:12:27 -0800 |
commit | db0adab049120e2df92420139538a22c8ee6faa0 (patch) | |
tree | 3f7b8fcdcca2d75b932a82dc3c5f4e0668314a2f | |
parent | 32ca46bf294462acad91235ab15e37f1cb3ca73b (diff) |
drm/xe/guc: Add support for LNL firmware
First release of GuC firmware for LNL is now available, so start
using it.
v2: Actually use xe directory. Doh! (review feedback from Lucas)
Signed-off-by: John Harrison <[email protected]>
Reviewed-by: Lucas De Marchi <[email protected]>
Signed-off-by: Lucas De Marchi <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/xe/xe_uc_fw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/xe/xe_uc_fw.c b/drivers/gpu/drm/xe/xe_uc_fw.c index d896c98dd0bb..4714f2c8d2ba 100644 --- a/drivers/gpu/drm/xe/xe_uc_fw.c +++ b/drivers/gpu/drm/xe/xe_uc_fw.c @@ -103,6 +103,7 @@ struct fw_blobs_by_type { }; #define XE_GUC_FIRMWARE_DEFS(fw_def, mmp_ver, major_ver) \ + fw_def(LUNARLAKE, major_ver(xe, guc, lnl, 70, 19, 2)) \ fw_def(METEORLAKE, major_ver(i915, guc, mtl, 70, 19, 2)) \ fw_def(DG2, major_ver(i915, guc, dg2, 70, 19, 2)) \ fw_def(DG1, major_ver(i915, guc, dg1, 70, 19, 2)) \ |