Add watchdog support for Intel Braswell SoC. This has been tested on a
generic mini PC containing an Intel Celeron N3150 which is a Braswell SoC.
Signed-off-by: Christopher Obbard <
chris....@collabora.com>
---
drivers/watchdog/itco.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/watchdog/itco.c b/drivers/watchdog/itco.c
index f268a35..3d077e5 100644
--- a/drivers/watchdog/itco.c
+++ b/drivers/watchdog/itco.c
@@ -33,6 +33,7 @@
enum iTCO_chipsets {
ITCO_INTEL_APL = 0,
ITCO_INTEL_BAYTRAIL,
+ ITCO_INTEL_BRASWELL,
ITCO_INTEL_WPT_LP,
ITCO_INTEL_ICH9,
ITCO_INTEL_LPC_NM10,
@@ -131,6 +132,12 @@ static const iTCO_info iTCO_chipset_info[] = {
.pci_id = 0x0f1c,
.itco_version = ITCO_V3,
},
+ [ITCO_INTEL_BRASWELL] =
+ {
+ .name = L"Braswell SoC",
+ .pci_id = 0x229c,
+ .itco_version = ITCO_V3,
+ },
[ITCO_INTEL_WPT_LP] =
{
.name = L"Wildcat Point_LP",
--
2.45.1