From 5df2e54c42a2fd5c70e9498a2ecd482a69c71768 Mon Sep 17 00:00:00 2001 From: Justin Hibbits Date: Tue, 3 Mar 2020 22:23:56 +0000 Subject: [PATCH] Add Atom C3000 (Denverton) SMT PCI ID MFC after: 3 days Sponsored by: Juniper Networks, Inc --- sys/dev/ismt/ismt.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/dev/ismt/ismt.c b/sys/dev/ismt/ismt.c index 3fbcfed0af6..88cdaac2dfd 100644 --- a/sys/dev/ismt/ismt.c +++ b/sys/dev/ismt/ismt.c @@ -717,6 +717,7 @@ fail: #define ID_INTEL_S1200_SMT0 0x0c598086 #define ID_INTEL_S1200_SMT1 0x0c5a8086 #define ID_INTEL_C2000_SMT 0x1f158086 +#define ID_INTEL_C3000_SMT 0x19ac8086 static int ismt_probe(device_t dev) @@ -733,6 +734,9 @@ ismt_probe(device_t dev) case ID_INTEL_C2000_SMT: desc = "Atom Processor C2000 SMBus 2.0"; break; + case ID_INTEL_C3000_SMT: + desc = "Atom Processor C3000 SMBus 2.0"; + break; default: return (ENXIO); }