diff options
author | 2009-01-23 20:32:22 +0000 | |
---|---|---|
committer | 2009-01-23 20:32:22 +0000 | |
commit | 8ed96e7fde187ff0488ff8620adcbe81ac5cd543 (patch) | |
tree | 9d809d0d2cc3f69690d246b391c6dd5f49b28f24 /sys/dev/isa/files.isa | |
parent | Make write_user_windows() do what the name suggests: flush user windows instead (diff) | |
download | wireguard-openbsd-8ed96e7fde187ff0488ff8620adcbe81ac5cd543.tar.xz wireguard-openbsd-8ed96e7fde187ff0488ff8620adcbe81ac5cd543.zip |
Add schsio(4), a driver for SMSC SCH311x LPC Super I/O ICs providing
environment sensors. These are found at least on VIA Epia SN18000G
boards.
Not enabled at 0x162e and 0x164e because probing these may not be
safe according to kettenis (guess where my schsio is).
Much help from kettenis. Input from const and fgs.
ok kettenis
Diffstat (limited to 'sys/dev/isa/files.isa')
-rw-r--r-- | sys/dev/isa/files.isa | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/isa/files.isa b/sys/dev/isa/files.isa index e9051b11971..1489c93ac09 100644 --- a/sys/dev/isa/files.isa +++ b/sys/dev/isa/files.isa @@ -1,4 +1,4 @@ -# $OpenBSD: files.isa,v 1.104 2008/04/23 13:28:59 jsg Exp $ +# $OpenBSD: files.isa,v 1.105 2009/01/23 20:32:22 mk Exp $ # $NetBSD: files.isa,v 1.21 1996/05/16 03:45:55 mycroft Exp $ # # Config file and device description for machine-independent ISA code. @@ -337,6 +337,11 @@ device wbsio {} attach wbsio at isa file dev/isa/wbsio.c wbsio +# SMSC SCH311x Super I/O +device schsio {} +attach schsio at isa +file dev/isa/sch311x.c schsio + # National Semiconductor LM78/79/81 and compatible hardware monitors attach lm at isa with lm_isa attach lm at wbsio with lm_wbsio |