From: Jan Kiszka <[email protected]> As found on Kontron mITX-BDW-U.
Signed-off-by: Jan Kiszka <[email protected]> --- drivers/watchdog/itco.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/watchdog/itco.c b/drivers/watchdog/itco.c index 58ec284..7c93afb 100644 --- a/drivers/watchdog/itco.c +++ b/drivers/watchdog/itco.c @@ -15,6 +15,7 @@ #include <pci/header.h> #define PCI_DEVICE_ID_INTEL_BAYTRAIL 0x0f1c +#define PCI_DEVICE_ID_INTEL_WPT_LP 0x9cc3 #define PMBASE_REG 0x40 # define PMBASE_ADDRMASK 0xff00 @@ -40,7 +41,8 @@ init(EFI_PCI_IO *pci_io, UINT16 pci_vendor_id, UINT16 pci_device_id, EFI_STATUS status; if (!pci_io || pci_vendor_id != PCI_VENDOR_ID_INTEL || - (pci_device_id != PCI_DEVICE_ID_INTEL_BAYTRAIL)) + (pci_device_id != PCI_DEVICE_ID_INTEL_BAYTRAIL && + pci_device_id != PCI_DEVICE_ID_INTEL_WPT_LP)) return EFI_UNSUPPORTED; Print(L"Detected Intel TCO watchdog\n"); -- 2.12.3 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/cc27b61b-67a7-999c-56c8-8c1e3554cf94%40siemens.com. For more options, visit https://groups.google.com/d/optout.
