diff options
author | 2018-05-20 19:30:21 +0000 | |
---|---|---|
committer | 2018-05-20 19:30:21 +0000 | |
commit | ad7ce60aa9ffa9b1263d76b66f9f176221d764db (patch) | |
tree | 60260fb6dcff25f9e68b9cd967c1378bb28ee963 /sys/dev/acpi/files.acpi | |
parent | Stash the syscall number in tf_err so it can be reported by the SPL check (diff) | |
download | wireguard-openbsd-ad7ce60aa9ffa9b1263d76b66f9f176221d764db.tar.xz wireguard-openbsd-ad7ce60aa9ffa9b1263d76b66f9f176221d764db.zip |
Add tipmic(4), a driver for the "Intel" Dollar Cove TI PMIC. This is actually
a TI part (SND9039) but the datasheet is only available under NDA because it
contains "Intel proprietary information".
Initial implementation handles the thermal sensors, providing data to acpi(4)
which is used by acpitz(4). Power management functionality will be added
later. Disabled for now until some bugs in dwiic(4) are fixed.
Diffstat (limited to 'sys/dev/acpi/files.acpi')
-rw-r--r-- | sys/dev/acpi/files.acpi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/acpi/files.acpi b/sys/dev/acpi/files.acpi index 310a9a88850..31afd975601 100644 --- a/sys/dev/acpi/files.acpi +++ b/sys/dev/acpi/files.acpi @@ -1,4 +1,4 @@ -# $OpenBSD: files.acpi,v 1.40 2018/03/27 21:11:16 kettenis Exp $ +# $OpenBSD: files.acpi,v 1.41 2018/05/20 19:30:21 kettenis Exp $ # # Config file and device description for machine-independent ACPI code. # Included by ports that need it. @@ -127,6 +127,11 @@ device chvgpio attach chvgpio at acpi file dev/acpi/chvgpio.c chvgpio +# "Intel" Dollar Cove TI PMIC +device tipmic +attach tipmic at i2c +file dev/acpi/tipmic.c tipmic + # SD Host Controller attach sdhc at acpi with sdhc_acpi file dev/acpi/sdhc_acpi.c sdhc_acpi |