[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#927802: marked as done (unblock: intel-media-driver/18.4.1+dfsg1-1)



Your message dated Tue, 23 Apr 2019 17:40:00 +0000
with message-id <d877cb4e-d9c4-c1ab-66a4-11e1f548b265@thykier.net>
and subject line Re: Bug#927802: unblock: intel-media-driver/18.4.1+dfsg1-1
has caused the Debian Bug report #927802,
regarding unblock: intel-media-driver/18.4.1+dfsg1-1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
927802: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927802
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

Please unblock package intel-media-driver. The new upstream release only
adds more IDs to support more Intel GPUs.

Full debdiff is attached.

unblock intel-media-driver/18.4.1+dfsg1-1

Cheers

-- System Information:
Debian Release: 10.0
  APT prefers unstable-debug
  APT policy: (650, 'unstable-debug'), (650, 'buildd-unstable'), (650, 'unstable'), (601, 'testing'), (600, 'experimental-debug'), (600, 'experimental'), (500, 'testing-proposed-updates')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-4-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8), LANGUAGE=en_US:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-- 
Sebastian Ramacher
diff --git a/debian/changelog b/debian/changelog
index e0ca481..762d8a6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+intel-media-driver (18.4.1+dfsg1-1) unstable; urgency=medium
+
+  * New upstream release.
+  * debian/gbp.conf: Work in buster branch.
+
+ -- Sebastian Ramacher <sramacher@debian.org>  Sun, 07 Apr 2019 13:31:33 +0200
+
 intel-media-driver (18.4.0+dfsg1-1) unstable; urgency=medium
 
   * New upstream release.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..97fc827
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+debian-branch = buster
diff --git a/media_driver/linux/common/os/i915/include/intel_chipset.h b/media_driver/linux/common/os/i915/include/intel_chipset.h
index a185b3b..16ea97d 100644
--- a/media_driver/linux/common/os/i915/include/intel_chipset.h
+++ b/media_driver/linux/common/os/i915/include/intel_chipset.h
@@ -220,16 +220,27 @@
 
 #define PCI_CHIP_COFFEELAKE_S_GT1_1     0x3E90
 #define PCI_CHIP_COFFEELAKE_S_GT1_2     0x3E93
+#define PCI_CHIP_COFFEELAKE_S_GT1_3     0x3E99
 #define PCI_CHIP_COFFEELAKE_S_GT2_1     0x3E91
 #define PCI_CHIP_COFFEELAKE_S_GT2_2     0x3E92
 #define PCI_CHIP_COFFEELAKE_S_GT2_3     0x3E96
+#define PCI_CHIP_COFFEELAKE_S_GT2_4     0x3E98
+#define PCI_CHIP_COFFEELAKE_S_GT2_5     0x3E9A
+#define PCI_CHIP_COFFEELAKE_H_GT1_1     0x3E9C
 #define PCI_CHIP_COFFEELAKE_H_GT2_1     0x3E9B
 #define PCI_CHIP_COFFEELAKE_H_GT2_2     0x3E94
+#define PCI_CHIP_COFFEELAKE_U_GT2_1     0x3EA9
 #define PCI_CHIP_COFFEELAKE_U_GT3_1     0x3EA5
 #define PCI_CHIP_COFFEELAKE_U_GT3_2     0x3EA6
 #define PCI_CHIP_COFFEELAKE_U_GT3_3     0x3EA7
 #define PCI_CHIP_COFFEELAKE_U_GT3_4     0x3EA8
 
+#define PCI_CHIP_WHISKYLAKE_U_GT2_1     0x3EA0
+#define PCI_CHIP_WHISKYLAKE_U_GT1_1     0x3EA1
+#define PCI_CHIP_WHISKYLAKE_U_GT3_1     0x3EA2
+#define PCI_CHIP_WHISKYLAKE_U_GT2_2     0x3EA3
+#define PCI_CHIP_WHISKYLAKE_U_GT1_2     0x3EA4
+
 #define PCI_CHIP_CANNONLAKE_U_GT2_0    0x5A52
 #define PCI_CHIP_CANNONLAKE_U_GT2_1    0x5A5A
 #define PCI_CHIP_CANNONLAKE_U_GT2_2    0x5A42
@@ -471,20 +482,33 @@
 
 #define IS_COFFEELAKE(devid)    ((devid) == PCI_CHIP_COFFEELAKE_S_GT1_1 || \
                  (devid) == PCI_CHIP_COFFEELAKE_S_GT1_2 || \
+                 (devid) == PCI_CHIP_COFFEELAKE_S_GT1_3 || \
                  (devid) == PCI_CHIP_COFFEELAKE_S_GT2_1 || \
                  (devid) == PCI_CHIP_COFFEELAKE_S_GT2_2 || \
                  (devid) == PCI_CHIP_COFFEELAKE_S_GT2_3 || \
+                 (devid) == PCI_CHIP_COFFEELAKE_S_GT2_4 || \
+                 (devid) == PCI_CHIP_COFFEELAKE_S_GT2_5 || \
+                 (devid) == PCI_CHIP_COFFEELAKE_H_GT1_1 || \
                  (devid) == PCI_CHIP_COFFEELAKE_H_GT2_1 || \
                  (devid) == PCI_CHIP_COFFEELAKE_H_GT2_2 || \
+                 (devid) == PCI_CHIP_COFFEELAKE_U_GT2_1 || \
                  (devid) == PCI_CHIP_COFFEELAKE_U_GT3_1 || \
                  (devid) == PCI_CHIP_COFFEELAKE_U_GT3_2 || \
                  (devid) == PCI_CHIP_COFFEELAKE_U_GT3_3 || \
                  (devid) == PCI_CHIP_COFFEELAKE_U_GT3_4)
 
+#define IS_WHISKYLAKE(devid)    ((devid) == PCI_CHIP_WHISKYLAKE_U_GT1_1 || \
+                 (devid) == PCI_CHIP_WHISKYLAKE_U_GT1_2 || \
+                 (devid) == PCI_CHIP_WHISKYLAKE_U_GT2_1 || \
+                 (devid) == PCI_CHIP_WHISKYLAKE_U_GT2_2 || \
+                 (devid) == PCI_CHIP_WHISKYLAKE_U_GT3_1
+
+
 #define IS_GEN9(devid)        (IS_SKYLAKE(devid) || \
                  IS_BROXTON(devid) || \
                  IS_KABYLAKE(devid) || \
-                 IS_COFFEELAKE(devid))
+                 IS_COFFEELAKE(devid) || \
+                 IS_WHISKYLAKE(devid))
 
 #define IS_CNL_Y(devid)        ((devid) == PCI_CHIP_CANNONLAKE_Y_GT2_0 || \
                  (devid) == PCI_CHIP_CANNONLAKE_Y_GT2_1 || \
diff --git a/media_driver/linux/gen9/ddi/media_sysinfo_g9.cpp b/media_driver/linux/gen9/ddi/media_sysinfo_g9.cpp
index 10c33fc..4c94a1f 100644
--- a/media_driver/linux/gen9/ddi/media_sysinfo_g9.cpp
+++ b/media_driver/linux/gen9/ddi/media_sysinfo_g9.cpp
@@ -801,6 +801,9 @@ static bool kblDevice592a = DeviceInfoFactory<GfxDeviceInfo>::
 static bool cflDevice3e93 = DeviceInfoFactory<GfxDeviceInfo>::
     RegisterDevice(0x3e93, &cflGt1Info);
 
+static bool cflDevice3e99 = DeviceInfoFactory<GfxDeviceInfo>::
+    RegisterDevice(0x3e99, &cflGt1Info);
+
 static bool cflDevice3e90 = DeviceInfoFactory<GfxDeviceInfo>::
     RegisterDevice(0x3e90, &cflGt1Info);
 
@@ -811,14 +814,23 @@ static bool cflDevice3e94 = DeviceInfoFactory<GfxDeviceInfo>::
     RegisterDevice(0x3e94, &cflGt2Info);
 
 static bool cflDevice3e91 = DeviceInfoFactory<GfxDeviceInfo>::
-    RegisterDevice(0x3e91, &cflGt1Info);
+    RegisterDevice(0x3e91, &cflGt2Info);
 
 static bool cflDevice3e96 = DeviceInfoFactory<GfxDeviceInfo>::
     RegisterDevice(0x3e96, &cflGt2Info);
 
+static bool cflDevice3e98 = DeviceInfoFactory<GfxDeviceInfo>::
+    RegisterDevice(0x3e98, &cflGt2Info);
+
+static bool cflDevice3e9a = DeviceInfoFactory<GfxDeviceInfo>::
+    RegisterDevice(0x3e9a, &cflGt2Info);
+
 static bool cflDevice3e9b = DeviceInfoFactory<GfxDeviceInfo>::
     RegisterDevice(0x3e9b, &cflGt2Info);
 
+static bool cflDevice3e9c = DeviceInfoFactory<GfxDeviceInfo>::
+    RegisterDevice(0x3e9c, &cflGt1Info);
+
 static bool cflDevice3ea5 = DeviceInfoFactory<GfxDeviceInfo>::
     RegisterDevice(0x3ea5, &cflGt3eInfo);
 
@@ -831,6 +843,9 @@ static bool cflDevice3ea7 = DeviceInfoFactory<GfxDeviceInfo>::
 static bool cflDevice3ea8 = DeviceInfoFactory<GfxDeviceInfo>::
     RegisterDevice(0x3ea8, &cflGt3eInfo);
 
+static bool cflDevice3ea9 = DeviceInfoFactory<GfxDeviceInfo>::
+    RegisterDevice(0x3ea9, &cflGt2Info);
+
 static bool cflDevice3ea1 = DeviceInfoFactory<GfxDeviceInfo>::
     RegisterDevice(0x3ea1, &cflGt1Info);
 

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message ---
Sebastian Ramacher:
> Package: release.debian.org
> Severity: normal
> User: release.debian.org@packages.debian.org
> Usertags: unblock
> 
> Please unblock package intel-media-driver. The new upstream release only
> adds more IDs to support more Intel GPUs.
> 
> Full debdiff is attached.
> 
> unblock intel-media-driver/18.4.1+dfsg1-1
> 
> Cheers
> 
> [...]
Unblocked, thanks.
~Niels

--- End Message ---

Reply to: