diff options
author | mav <mav@FreeBSD.org> | 2016-05-03 15:27:47 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2016-05-03 15:27:47 +0000 |
commit | c3175c64dafd12e981a01665a9422459847df20a (patch) | |
tree | 579eeba91d49661ea37090fdd89dbfb23dfddc77 /sys/dev | |
parent | 838f7d1304c723206899cd4965a1a8ba0761d68f (diff) | |
download | FreeBSD-src-c3175c64dafd12e981a01665a9422459847df20a.zip FreeBSD-src-c3175c64dafd12e981a01665a9422459847df20a.tar.gz |
Add some device IDs from Intel Sunrise Point chipsets.
MFC after: 2 weeks
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ahci/ahci_pci.c | 9 | ||||
-rw-r--r-- | sys/dev/sound/pci/hda/hdac.c | 2 | ||||
-rw-r--r-- | sys/dev/sound/pci/hda/hdac.h | 2 | ||||
-rw-r--r-- | sys/dev/usb/controller/xhci_pci.c | 2 |
4 files changed, 15 insertions, 0 deletions
diff --git a/sys/dev/ahci/ahci_pci.c b/sys/dev/ahci/ahci_pci.c index 11e89c5..6b6a1a6 100644 --- a/sys/dev/ahci/ahci_pci.c +++ b/sys/dev/ahci/ahci_pci.c @@ -176,6 +176,15 @@ static const struct { {0x9c078086, 0x00, "Intel Lynx Point-LP (RAID)", 0}, {0x9c0e8086, 0x00, "Intel Lynx Point-LP (RAID)", 0}, {0x9c0f8086, 0x00, "Intel Lynx Point-LP (RAID)", 0}, + {0x9d038086, 0x00, "Intel Sunrise Point-LP", 0}, + {0x9d058086, 0x00, "Intel Sunrise Point-LP (RAID)", 0}, + {0x9d078086, 0x00, "Intel Sunrise Point-LP (RAID)", 0}, + {0xa1028086, 0x00, "Intel Sunrise Point", 0}, + {0xa1038086, 0x00, "Intel Sunrise Point", 0}, + {0xa1058086, 0x00, "Intel Sunrise Point (RAID)", 0}, + {0xa1068086, 0x00, "Intel Sunrise Point (RAID)", 0}, + {0xa1078086, 0x00, "Intel Sunrise Point (RAID)", 0}, + {0xa10f8086, 0x00, "Intel Sunrise Point (RAID)", 0}, {0x23238086, 0x00, "Intel DH89xxCC", 0}, {0x2360197b, 0x00, "JMicron JMB360", 0}, {0x2361197b, 0x00, "JMicron JMB361", AHCI_Q_NOFORCE}, diff --git a/sys/dev/sound/pci/hda/hdac.c b/sys/dev/sound/pci/hda/hdac.c index c761acb..a63c730 100644 --- a/sys/dev/sound/pci/hda/hdac.c +++ b/sys/dev/sound/pci/hda/hdac.c @@ -93,6 +93,8 @@ static const struct { { HDA_INTEL_WELLS2, "Intel Wellsburg", 0, 0 }, { HDA_INTEL_LPTLP1, "Intel Lynx Point-LP", 0, 0 }, { HDA_INTEL_LPTLP2, "Intel Lynx Point-LP", 0, 0 }, + { HDA_INTEL_SRPTLP, "Intel Sunrise Point-LP", 0, 0 }, + { HDA_INTEL_SRPT, "Intel Sunrise Point", 0, 0 }, { HDA_INTEL_82801F, "Intel 82801F", 0, 0 }, { HDA_INTEL_63XXESB, "Intel 631x/632xESB", 0, 0 }, { HDA_INTEL_82801G, "Intel 82801G", 0, 0 }, diff --git a/sys/dev/sound/pci/hda/hdac.h b/sys/dev/sound/pci/hda/hdac.h index 1fc265a..71c9e08 100644 --- a/sys/dev/sound/pci/hda/hdac.h +++ b/sys/dev/sound/pci/hda/hdac.h @@ -69,6 +69,8 @@ #define HDA_INTEL_LPTLP1 HDA_MODEL_CONSTRUCT(INTEL, 0x9c20) #define HDA_INTEL_LPTLP2 HDA_MODEL_CONSTRUCT(INTEL, 0x9c21) #define HDA_INTEL_BDW2 HDA_MODEL_CONSTRUCT(INTEL, 0x9ca0) +#define HDA_INTEL_SRPTLP HDA_MODEL_CONSTRUCT(INTEL, 0x9d70) +#define HDA_INTEL_SRPT HDA_MODEL_CONSTRUCT(INTEL, 0xa170) #define HDA_INTEL_ALL HDA_MODEL_CONSTRUCT(INTEL, 0xffff) /* Nvidia */ diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c index d4355e9..09fab21 100644 --- a/sys/dev/usb/controller/xhci_pci.c +++ b/sys/dev/usb/controller/xhci_pci.c @@ -122,6 +122,8 @@ xhci_pci_match(device_t self) return ("Intel Wellsburg USB 3.0 controller"); case 0x9cb18086: return ("Broadwell Integrated PCH-LP chipset USB 3.0 controller"); + case 0xa12f8086: + return ("Intel Sunrise Point USB 3.0 controller"); case 0xa01b177d: return ("Cavium ThunderX USB 3.0 controller"); |