git: b07a48d4f3a1 - main - vmd: Add 8086:A77F PCI ID for all Intel Raptor Lake SKUs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 29 Jul 2022 18:17:24 UTC
The branch main has been updated by nc (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=b07a48d4f3a175db53ba21a40f27ef0c1a6d0a11
commit b07a48d4f3a175db53ba21a40f27ef0c1a6d0a11
Author: Neel Chauhan <nc@FreeBSD.org>
AuthorDate: 2022-07-29 18:06:06 +0000
Commit: Neel Chauhan <nc@FreeBSD.org>
CommitDate: 2022-07-29 18:17:20 +0000
vmd: Add 8086:A77F PCI ID for all Intel Raptor Lake SKUs
Summary:
This is based on the Linux kernel commit
922bfd001d1ac02111ebbe0524aaab6ca7925521.
Reviewed by: mav (src)
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D35996
---
sys/dev/vmd/vmd.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/dev/vmd/vmd.c b/sys/dev/vmd/vmd.c
index 23aeeb6cdd68..208ea8a865f8 100644
--- a/sys/dev/vmd/vmd.c
+++ b/sys/dev/vmd/vmd.c
@@ -101,6 +101,7 @@ static struct vmd_type vmd_devs[] = {
{ 0x8086, 0x467f, "Intel Volume Management Device", BUS_RESTRICT | VECTOR_OFFSET },
{ 0x8086, 0x4c3d, "Intel Volume Management Device", BUS_RESTRICT | VECTOR_OFFSET },
{ 0x8086, 0x9a0b, "Intel Volume Management Device", BUS_RESTRICT | VECTOR_OFFSET },
+ { 0x8086, 0xa77f, "Intel Volume Management Device", BUS_RESTRICT | VECTOR_OFFSET },
{ 0, 0, NULL, 0 }
};