Skip to content

Commit ab6dea0

Browse files
tk-wfischerWim Van Sebroeck
authored andcommitted
watchdog: it87_wdt: Add IT8659 ID
This patch adds watchdog support for the ITE IT8659 watchdog. IT8659 watchdog works in the same way as the other watchdogs supported by it87_wdt. Before this patch, IT8659 watchdog is not supported. After a modprobe, dmesg reports: it87_wdt: Unknown Chip found, Chip 8659 Revision 0007 With this patch, modprobe it87_wdt recognizes the watchdog as the dmesg output shows: it87_wdt: Chip IT8659 revision 7 initialized. timeout=60 sec (nowayout=0 testmode=0) Watchdog tests on a YANLING YL-ALP3L2C-1235U system have been successful, the watchdog works as expected with this patch. Signed-off-by: Werner Fischer <devlists@wefi.net> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/20231213094525.11849-3-devlists@wefi.net Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
1 parent 133530a commit ab6dea0

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

drivers/watchdog/it87_wdt.c

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
* http://www.ite.com.tw/
1414
*
1515
* Support of the watchdog timers, which are available on
16-
* IT8607, IT8613, IT8620, IT8622, IT8625, IT8628, IT8655, IT8665,
17-
* IT8686, IT8702, IT8712, IT8716, IT8718, IT8720, IT8721, IT8726,
18-
* IT8728, IT8772, IT8783 and IT8784.
16+
* IT8607, IT8613, IT8620, IT8622, IT8625, IT8628, IT8655, IT8659,
17+
* IT8665, IT8686, IT8702, IT8712, IT8716, IT8718, IT8720, IT8721,
18+
* IT8726, IT8728, IT8772, IT8783, IT8784 and IT8786.
1919
*/
2020

2121
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
@@ -56,6 +56,7 @@
5656
#define IT8625_ID 0x8625
5757
#define IT8628_ID 0x8628
5858
#define IT8655_ID 0x8655
59+
#define IT8659_ID 0x8659
5960
#define IT8665_ID 0x8665
6061
#define IT8686_ID 0x8686
6162
#define IT8702_ID 0x8702
@@ -281,6 +282,7 @@ static int __init it87_wdt_init(void)
281282
case IT8625_ID:
282283
case IT8628_ID:
283284
case IT8655_ID:
285+
case IT8659_ID:
284286
case IT8665_ID:
285287
case IT8686_ID:
286288
case IT8716_ID:

0 commit comments

Comments
 (0)