aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/wbwd
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2012-03-06 18:44:52 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2012-03-06 18:44:52 +0000
commit0566170f7088552a46f794edab10b14f195e1454 (patch)
treedc713fb0c46f8e869fc6b899fc87ee0617748c01 /sys/modules/wbwd
parent7412cb7ef3695566065d0db9831c12f3ba64f3b7 (diff)
downloadsrc-0566170f7088552a46f794edab10b14f195e1454.tar.gz
src-0566170f7088552a46f794edab10b14f195e1454.zip
Provide wbwd(4), a driver for the watchdog timer found on various
Winbond Super I/O chips. With minor efforts it should be possible the extend the driver to support further chips/revisions available from Winbond. In the simplest case only new IDs need to be added, while different chipsets might require their own function to enter extended function mode, etc. Sponsored by: Sandvine Incorporated ULC (in 2011) Reviewed by: emaste, brueffer MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=232614
Diffstat (limited to 'sys/modules/wbwd')
-rw-r--r--sys/modules/wbwd/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/modules/wbwd/Makefile b/sys/modules/wbwd/Makefile
new file mode 100644
index 000000000000..e727302e2d25
--- /dev/null
+++ b/sys/modules/wbwd/Makefile
@@ -0,0 +1,9 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/wbwd
+
+KMOD= wbwd
+SRCS= wbwd.c
+SRCS+= bus_if.h device_if.h isa_if.h
+
+.include <bsd.kmod.mk>