mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00

Drop patches already merged: * 0002-Add-VASurfaceAttribMemoryType-for-ACM.patch * 0004-Set-sRGB-color-space-for-non-video-wall-and-no-backg.patch * 0005-XRGB-force-to-do-swizzle-for-AVC-HEVC.patch * 0006-Add-DG2-DIDs.patch Rebased patchess: * 0001-Disable-vp9-padding-on-mtl.patch * 0002-Force-ARGB-surface-to-tile4-for-ACM.patch Added new bug fixed: * 0004-Add-device-ID-for-ARL.patch * 0005-Add-XR24-support-to-DMABuf.patch * 0006-add-INTEL-MEDIA-ALLOC-refineE-to-specify-the-memory-.patch * 0007-Skip-report-keys.patch * 0008-Limit-INTEL-MEDIA-ALLOC-MODE-to-MTL-and-ARL-only.patch * 0009-Skip-cache-bucket-realloc-for-default-mode-0.patch * 0010-Fix-failed-4k-video-wall-test-case-and-color-corrupt.patch * 0011-Disable-422H-format-output.patch * 0012-Decode-Fix-AVC-decode-SFC-4K-hang-issue.patch Release notes: https://github.com/intel/media-driver/releases/tag/intel-media-23.4.3 Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
46 lines
1.7 KiB
Diff
46 lines
1.7 KiB
Diff
From bb860c0bfe53060925b1dce50da4e6e94cfc8cae Mon Sep 17 00:00:00 2001
|
|
From: huangli2018 <li.h.huang@intel.com>
|
|
Date: Wed, 20 Dec 2023 15:47:43 +0800
|
|
Subject: [PATCH 04/13] Add device ID for ARL
|
|
|
|
Add device ID for ARL
|
|
|
|
Upstream-Status: Backport [https://github.com/intel/media-driver/commit/95cbfce81cafa3c24d9d4601d41a855093bc51fb]
|
|
Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com>
|
|
---
|
|
.../linux/Xe_M_plus/ddi/media_sysinfo_mtl.cpp | 13 +++++++++++--
|
|
1 file changed, 11 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/media_softlet/linux/Xe_M_plus/ddi/media_sysinfo_mtl.cpp b/media_softlet/linux/Xe_M_plus/ddi/media_sysinfo_mtl.cpp
|
|
index 426bd795f..7b73dfaff 100644
|
|
--- a/media_softlet/linux/Xe_M_plus/ddi/media_sysinfo_mtl.cpp
|
|
+++ b/media_softlet/linux/Xe_M_plus/ddi/media_sysinfo_mtl.cpp
|
|
@@ -1,6 +1,6 @@
|
|
/*===================== begin_copyright_notice ==================================
|
|
|
|
-Copyright (c) 2022, Intel Corporation
|
|
+Copyright (c) 2023, Intel Corporation
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
copy of this software and associated documentation files (the "Software"),
|
|
@@ -218,4 +218,13 @@ static struct GfxDeviceInfo arlInfo = {
|
|
};
|
|
|
|
static bool arlsDevice7d67 = DeviceInfoFactory<GfxDeviceInfo>::
|
|
- RegisterDevice(0x7D67, &arlInfo);
|
|
\ No newline at end of file
|
|
+ RegisterDevice(0x7D67, &arlInfo);
|
|
+
|
|
+static bool arlhDevice7d51 = DeviceInfoFactory<GfxDeviceInfo>::
|
|
+ RegisterDevice(0x7D51, &arlInfo);
|
|
+
|
|
+static bool arlhDevice7dd1 = DeviceInfoFactory<GfxDeviceInfo>::
|
|
+ RegisterDevice(0x7DD1, &arlInfo);
|
|
+
|
|
+static bool arlhDevice7d41 = DeviceInfoFactory<GfxDeviceInfo>::
|
|
+ RegisterDevice(0x7D41, &arlInfo);
|
|
\ No newline at end of file
|
|
--
|
|
2.40.1
|
|
|