match another two Alder Lake-N DesignWare I2C ids
authorjsg <jsg@openbsd.org>
Sun, 7 Apr 2024 01:04:58 +0000 (01:04 +0000)
committerjsg <jsg@openbsd.org>
Sun, 7 Apr 2024 01:04:58 +0000 (01:04 +0000)
Not in the Intel datasheet but are matched by their Windows driver.
ok mglocker@ who tested on Surface Go 4.

sys/dev/pci/dwiic_pci.c

index 3d0a00a..76a39b6 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dwiic_pci.c,v 1.25 2024/03/06 00:11:25 jsg Exp $ */
+/* $OpenBSD: dwiic_pci.c,v 1.26 2024/04/07 01:04:58 jsg Exp $ */
 /*
  * Synopsys DesignWare I2C controller
  * PCI attachment
@@ -172,6 +172,8 @@ const struct pci_matchid dwiic_pci_ids[] = {
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_ADL_N_I2C_3 },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_ADL_N_I2C_4 },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_ADL_N_I2C_5 },
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_ADL_N_I2C_6 },
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_ADL_N_I2C_7 },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_MTL_I2C_0 },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_MTL_I2C_1 },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_MTL_I2C_2 },