media_softlet: register PTL device ID 0xB086 - #2035
Merged
intel-mediadev merged 1 commit intoSep 11, 2026
Merged
Conversation
0xB086 (Arc Pro B390, Panther Lake) is missing from the Panther Lake device table even though it sits in the middle of the already registered range (0xB080-0xB084, 0xB08F-0xB092, 0xB0A0-0xB0A2, 0xB0B0, 0xB0FF) and uses the same silicon/media family. Without this entry, DeviceInfoFactory has no match for the PCI ID and VAAPI init fails outright on hardware reporting this ID. Register it against the existing ptlInfo struct, same as its neighbors. Signed-off-by: Benjamin Beilharz <benjamin.beilharz@pm.me>
XinfengZhang
approved these changes
Sep 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
0xB086(Arc Pro B390, Panther Lake) is missing from the Panther Lake devicetable in
media_sysinfo_ptl.cpp, even though it falls in the middle of thealready-registered ID range (
0xB080-0xB084,0xB08F-0xB092,0xB0A0-0xB0A2,0xB0B0,0xB0FF) and is the same silicon/media family asits neighbors.
Without this entry,
DeviceInfoFactoryhas no match for the PCI ID, so VAAPIinitialization fails outright (
vaInitialize failed with error code 1) onany hardware reporting this ID.
Fix
Register
0xB086against the existingptlInfostruct, same as thesurrounding device IDs.
Test plan
lspci -nnreports8086:b086on the affected hardware(Panther Lake iGPU, kernel
xedriver, "Arc Pro B390").vainfonow succeeds and reports full decode/encode profile support(H.264, HEVC 8/10/12-bit incl. 4:2:2/4:4:4, VP8, VP9, AV1, VVC) where it
previously failed with
iHD_drv_video.so init failed.