The branch stable/15 has been updated by mav:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=d4ccbbce399b71c8b32e5eb379468d107a6d5964

commit d4ccbbce399b71c8b32e5eb379468d107a6d5964
Author:     Dmitry Luhtionov <[email protected]>
AuthorDate: 2025-09-08 16:28:24 +0000
Commit:     Alexander Motin <[email protected]>
CommitDate: 2025-10-20 14:11:22 +0000

    Add random Intel Elkhart Lake device IDs.
---
 sys/dev/ahci/ahci_pci.c           | 1 +
 sys/dev/ichsmb/ichsmb_pci.c       | 3 +++
 sys/dev/sound/pci/hda/hdac.c      | 1 +
 sys/dev/sound/pci/hda/hdac.h      | 1 +
 sys/dev/usb/controller/xhci_pci.c | 2 ++
 5 files changed, 8 insertions(+)

diff --git a/sys/dev/ahci/ahci_pci.c b/sys/dev/ahci/ahci_pci.c
index 9e7cfd4a9a33..2b4cb37275a6 100644
--- a/sys/dev/ahci/ahci_pci.c
+++ b/sys/dev/ahci/ahci_pci.c
@@ -195,6 +195,7 @@ static const struct {
        {0x1f3f8086, 0x00, "Intel Avoton (RAID)",       0},
        {0x23a38086, 0x00, "Intel Coleto Creek",        0},
        {0x31e38086, 0x00, "Intel Gemini Lake", 0},
+       {0x4b638086, 0x00, "Intel Elkhart Lake",        0},
        {0x5ae38086, 0x00, "Intel Apollo Lake", 0},
        {0x7ae28086, 0x00, "Intel Alder Lake",  0},
        {0x8c028086, 0x00, "Intel Lynx Point",  0},
diff --git a/sys/dev/ichsmb/ichsmb_pci.c b/sys/dev/ichsmb/ichsmb_pci.c
index 728bb942d503..e4d87fe1fed2 100644
--- a/sys/dev/ichsmb/ichsmb_pci.c
+++ b/sys/dev/ichsmb/ichsmb_pci.c
@@ -107,6 +107,7 @@
 #define        ID_COMETLAKE2                   0x06a3
 #define        ID_TIGERLAKE                    0xa0a3
 #define        ID_TIGERLAKE2                   0x43a3
+#define        ID_ELKHARTLAKE                  0x4b23
 #define        ID_GEMINILAKE                   0x31d4
 #define        ID_CEDARFORK                    0x18df
 #define        ID_ICELAKE                      0x34a3
@@ -206,6 +207,8 @@ static const struct pci_device_table ichsmb_devices[] = {
          PCI_DESCR("Intel Tiger Lake SMBus controller") },
        { PCI_DEV(PCI_VENDOR_INTEL, ID_TIGERLAKE2),
          PCI_DESCR("Intel Tiger Lake SMBus controller") },
+       { PCI_DEV(PCI_VENDOR_INTEL, ID_ELKHARTLAKE),
+         PCI_DESCR("Intel Elkhart Lake SMBus controller") },
        { PCI_DEV(PCI_VENDOR_INTEL, ID_GEMINILAKE),
          PCI_DESCR("Intel Gemini Lake SMBus controller") },
        { PCI_DEV(PCI_VENDOR_INTEL, ID_CEDARFORK),
diff --git a/sys/dev/sound/pci/hda/hdac.c b/sys/dev/sound/pci/hda/hdac.c
index 90cd74d28b3d..80028063bb0d 100644
--- a/sys/dev/sound/pci/hda/hdac.c
+++ b/sys/dev/sound/pci/hda/hdac.c
@@ -133,6 +133,7 @@ static const struct {
        { HDA_INTEL_PCH,     "Intel Ibex Peak", 0, 0 },
        { HDA_INTEL_PCH2,    "Intel Ibex Peak", 0, 0 },
        { HDA_INTEL_ELLK,    "Intel Elkhart Lake",      0, 0 },
+       { HDA_INTEL_ELLK2,   "Intel Elkhart Lake",      0, 0 },
        { HDA_INTEL_JLK2,    "Intel Jasper Lake",       0, 0 },
        { HDA_INTEL_BXTNP,   "Intel Broxton-P", 0, 0 },
        { HDA_INTEL_SCH,     "Intel SCH",       0, 0 },
diff --git a/sys/dev/sound/pci/hda/hdac.h b/sys/dev/sound/pci/hda/hdac.h
index ff3a1d0dcfb5..c11e6b2d6810 100644
--- a/sys/dev/sound/pci/hda/hdac.h
+++ b/sys/dev/sound/pci/hda/hdac.h
@@ -66,6 +66,7 @@
 #define HDA_INTEL_PCH          HDA_MODEL_CONSTRUCT(INTEL, 0x3b56)
 #define HDA_INTEL_PCH2         HDA_MODEL_CONSTRUCT(INTEL, 0x3b57)
 #define HDA_INTEL_ELLK         HDA_MODEL_CONSTRUCT(INTEL, 0x4b55)
+#define HDA_INTEL_ELLK2                HDA_MODEL_CONSTRUCT(INTEL, 0x4b58)
 #define HDA_INTEL_JLK2         HDA_MODEL_CONSTRUCT(INTEL, 0x4dc8)
 #define HDA_INTEL_BXTNP                HDA_MODEL_CONSTRUCT(INTEL, 0x5a98)
 #define HDA_INTEL_MACBOOKPRO92 HDA_MODEL_CONSTRUCT(INTEL, 0x7270)
diff --git a/sys/dev/usb/controller/xhci_pci.c 
b/sys/dev/usb/controller/xhci_pci.c
index d5cfd228a429..820fb2f738a1 100644
--- a/sys/dev/usb/controller/xhci_pci.c
+++ b/sys/dev/usb/controller/xhci_pci.c
@@ -178,6 +178,8 @@ xhci_pci_match(device_t self)
                return ("Intel Tiger Lake-H USB 3.2 controller");
        case 0x461e8086:
                return ("Intel Alder Lake-P Thunderbolt 4 USB controller");
+       case 0x4b7d8086:
+               return ("Intel Elkhart Lake USB 3.1 controller");
        case 0x51ed8086:
                return ("Intel Alder Lake USB 3.2 controller");
        case 0x5aa88086:

Reply via email to