summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Nagy <robert@cvs.openbsd.org>2008-02-12 10:12:15 +0000
committerRobert Nagy <robert@cvs.openbsd.org>2008-02-12 10:12:15 +0000
commit170ff7e32be5a383a8af75d60a00f5aa266149db (patch)
tree9f1706241b8eadcf85a4b8406acef1e56a992cca
parentfcc1f8f34fbcc1e14af42fb69c7e206c509c3d54 (diff)
tda(4) is a driver for Philips TDA8444 which can be found in
Sun Blade 1000/1500/2000/2500 machines. The driver controlls the speed of the ambient and cpu fans, based on the temperatures. not included in GENERIC yet; help and ok kettenis@
-rw-r--r--share/man/man4/iic.46
-rw-r--r--share/man/man4/man4.sparc64/tda.447
-rw-r--r--sys/arch/sparc64/conf/files.sparc647
-rw-r--r--sys/arch/sparc64/dev/tda.c210
4 files changed, 267 insertions, 3 deletions
diff --git a/share/man/man4/iic.4 b/share/man/man4/iic.4
index 91be4c3ffd1..894413c4b0a 100644
--- a/share/man/man4/iic.4
+++ b/share/man/man4/iic.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: iic.4,v 1.66 2007/11/17 10:19:20 jmc Exp $
+.\" $OpenBSD: iic.4,v 1.67 2008/02/12 10:12:14 robert Exp $
.\"
.\" Copyright (c) 2004, 2006 Alexander Yurchenko <grange@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: November 17 2007 $
+.Dd $Mdocdate: February 12 2008 $
.Dt IIC 4
.Os
.Sh NAME
@@ -154,6 +154,8 @@ Philips PCF8591 temperature sensor
Ricoh RS5C372 Real Time Clock
.It Xr spdmem 4
Serial Presence Detect memory
+.It Xr tda 4
+Philips TDA8444 fan controller
.It Xr thmc 4
TI THMC50, Analog ADM1022/1028 temperature sensor
.It Xr tsl 4
diff --git a/share/man/man4/man4.sparc64/tda.4 b/share/man/man4/man4.sparc64/tda.4
new file mode 100644
index 00000000000..aeddfde6750
--- /dev/null
+++ b/share/man/man4/man4.sparc64/tda.4
@@ -0,0 +1,47 @@
+.\" $OpenBSD: tda.4,v 1.1 2008/02/12 10:12:14 robert Exp $
+.\"
+.\" Copyright (c) 2008 <robert@openbsd.org>
+.\"
+.\" Permission to use, copy, modify, and distribute this software for any
+.\" purpose with or without fee is hereby granted, provided that the above
+.\" copyright notice and this permission notice appear in all copies.
+.\"
+.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+.\"
+.Dd $Mdocdate: February 12 2008 $
+.Dt TDA 4
+.Os
+.Sh NAME
+.Nm tda
+.Nd Philips TDA8444 fan controller
+.Sh SYNOPSIS
+.Cd "tda* at iic?"
+.Sh DESCRIPTION
+The
+.Nm
+driver supports the TDA8444 DAC to adjust the output voltage of fans
+available in the Sun Blade 1000/1500/2000/2500 machines.
+.Pp
+The driver watches the internal and external temperature provided by the
+sensors framework and adjusts the fan speeds accordingly.
+.Sh SEE ALSO
+.Xr iic 4
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 4.3 .
+.Sh AUTHORS
+.An -nosplit
+The
+.Nm
+driver was written by
+.An Robert Nagy Aq robert@openbsd.org
+and
+.An Mark Kettenis Aq kettenis@openbsd.org .
diff --git a/sys/arch/sparc64/conf/files.sparc64 b/sys/arch/sparc64/conf/files.sparc64
index 42e9c811ffd..d46e3b1e2f4 100644
--- a/sys/arch/sparc64/conf/files.sparc64
+++ b/sys/arch/sparc64/conf/files.sparc64
@@ -1,4 +1,4 @@
-# $OpenBSD: files.sparc64,v 1.93 2008/01/18 20:13:22 kettenis Exp $
+# $OpenBSD: files.sparc64,v 1.94 2008/02/12 10:12:14 robert Exp $
# $NetBSD: files.sparc64,v 1.50 2001/08/10 20:53:50 eeh Exp $
# maxpartitions must be first item in files.${ARCH}
@@ -311,6 +311,11 @@ device ecadc
attach ecadc at i2c
file arch/sparc64/dev/pcf8591_envctrl.c ecadc
+# TDA8444 (sparc64 only for now)
+device tda
+attach tda at i2c
+file arch/sparc64/dev/tda.c tda
+
#
# Machine-independent GPIO drivers
#
diff --git a/sys/arch/sparc64/dev/tda.c b/sys/arch/sparc64/dev/tda.c
new file mode 100644
index 00000000000..78483fe223f
--- /dev/null
+++ b/sys/arch/sparc64/dev/tda.c
@@ -0,0 +1,210 @@
+/* $OpenBSD: tda.c,v 1.1 2008/02/12 10:12:14 robert Exp $ */
+
+/*
+ * Copyright (c) 2008 Robert Nagy <robert@openbsd.org>
+ * Copyright (c) 2008 Mark Kettenis <kettenis@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/device.h>
+#include <sys/sensors.h>
+
+#include <dev/i2c/i2cvar.h>
+
+/* fan control registers */
+#define TDA_SYSFAN_REG 0xf0
+#define TDA_CPUFAN_REG 0xf2
+#define TDA_PSFAN_REG 0xf4
+
+#define TDA_FANSPEED_MIN 0x0c
+#define TDA_FANSPEED_MAX 0x3f
+
+#define TDA_PSFAN_ON 0x1f
+#define TDA_PSFAN_OFF 0x00
+
+/* Internal and External temperature senor numbers */
+#define SENSOR_TEMP_EXT 0
+#define SENSOR_TEMP_INT 1
+
+#define CPU_TEMP_MAX (67 * 1000000 + 273150000)
+#define CPU_TEMP_MIN (57 * 1000000 + 273150000)
+#define SYS_TEMP_MAX (30 * 1000000 + 273150000)
+#define SYS_TEMP_MIN (20 * 1000000 + 273150000)
+
+struct tda_softc {
+ struct device sc_dev;
+ i2c_tag_t sc_tag;
+ i2c_addr_t sc_addr;
+
+ u_int16_t sc_cfan_speed; /* current CPU fan speed */
+ u_int16_t sc_sfan_speed; /* current SYS fan speed */
+
+ int sc_nsensors;
+};
+#define DEVNAME(_s) ((_s)->sc_dev.dv_xname)
+
+int tda_match(struct device *, void *, void *);
+void tda_attach(struct device *, struct device *, void *);
+
+void tda_setspeed(struct tda_softc *);
+void tda_adjust(void *);
+
+struct cfattach tda_ca = {
+ sizeof(struct tda_softc), tda_match, tda_attach
+};
+
+struct cfdriver tda_cd = {
+ NULL, "tda", DV_DULL
+};
+
+int
+tda_match(struct device *parent, void *match, void *aux)
+{
+ struct i2c_attach_args *ia = aux;
+
+ if (strcmp(ia->ia_name, "tda8444") != 0)
+ return (0);
+
+ return (1);
+}
+
+void
+tda_attach(struct device *parent, struct device *self, void *aux)
+{
+ struct tda_softc *sc = (struct tda_softc *)self;
+ struct i2c_attach_args *ia = aux;
+ int i;
+
+ sc->sc_tag = ia->ia_tag;
+ sc->sc_addr = ia->ia_addr;
+
+ printf("\n");
+
+ /*
+ * Set the fans to maximum speed and save the power levels;
+ * the controller is write-only.
+ */
+ sc->sc_cfan_speed = sc->sc_sfan_speed = TDA_FANSPEED_MAX;
+ tda_setspeed(sc);
+
+ /* Get the number of sensor devices. */
+ for (i = 0; i < MAXSENSORDEVICES; i++) {
+ if (sensordev_get(i) == NULL)
+ break;
+ }
+ sc->sc_nsensors = i;
+
+ if (sensor_task_register(sc, tda_adjust, 10) == NULL) {
+ printf("%s: unable to register update task\n", DEVNAME(sc));
+ return;
+ }
+}
+
+void
+tda_setspeed(struct tda_softc *sc)
+{
+ u_int8_t cmd[2];
+
+ if (sc->sc_cfan_speed < TDA_FANSPEED_MIN)
+ sc->sc_cfan_speed = TDA_FANSPEED_MIN;
+ if (sc->sc_sfan_speed < TDA_FANSPEED_MIN)
+ sc->sc_sfan_speed = TDA_FANSPEED_MIN;
+ if (sc->sc_cfan_speed > TDA_FANSPEED_MAX)
+ sc->sc_cfan_speed = TDA_FANSPEED_MAX;
+ if (sc->sc_sfan_speed > TDA_FANSPEED_MAX)
+ sc->sc_sfan_speed = TDA_FANSPEED_MAX;
+
+ iic_acquire_bus(sc->sc_tag, 0);
+
+ cmd[0] = TDA_CPUFAN_REG;
+ cmd[1] = sc->sc_cfan_speed;
+ if (iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP,
+ sc->sc_addr, &cmd, sizeof(cmd), NULL, 0, 0)) {
+ printf("%s: cannot write cpu-fan register\n",
+ DEVNAME(sc));
+ iic_release_bus(sc->sc_tag, 0);
+ return;
+ }
+
+ cmd[0] = TDA_SYSFAN_REG;
+ cmd[1] = sc->sc_sfan_speed;
+ if (iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP,
+ sc->sc_addr, &cmd, sizeof(cmd), NULL, 0, 0)) {
+ printf("%s: cannot write system-fan register\n",
+ DEVNAME(sc));
+ iic_release_bus(sc->sc_tag, 0);
+ return;
+ }
+
+ iic_release_bus(sc->sc_tag, 0);
+
+#if 0
+ printf("%s: changed fan speed to cpu=%d system=%d\n",
+ DEVNAME(sc), sc->sc_cfan_speed, sc->sc_sfan_speed);
+#endif
+
+}
+
+void
+tda_adjust(void *v)
+{
+ struct tda_softc *sc = v;
+ struct ksensor *ks;
+ u_int64_t ctemp, stemp;
+ int i;
+
+ /* Default to running the fans at maximum speed. */
+ sc->sc_cfan_speed = sc->sc_sfan_speed = TDA_FANSPEED_MAX;
+
+ ctemp = stemp = 0;
+ for (i = 0; i < sc->sc_nsensors; i++) {
+ ks = sensor_find(i, SENSOR_TEMP, SENSOR_TEMP_EXT);
+ if (ks == NULL) {
+ printf("%s: failed to get external sensor\n",
+ DEVNAME(sc));
+ goto out;
+ }
+ ctemp = MAX(ctemp, ks->value);
+
+ ks = sensor_find(i, SENSOR_TEMP, SENSOR_TEMP_INT);
+ if (ks == NULL) {
+ printf("%s: failed to get internal sensors\n",
+ DEVNAME(sc));
+ goto out;
+ }
+ stemp = MAX(stemp, ks->value);
+ }
+
+ if (ctemp < CPU_TEMP_MIN)
+ sc->sc_cfan_speed = TDA_FANSPEED_MIN;
+ else if (ctemp < CPU_TEMP_MAX)
+ sc->sc_cfan_speed = TDA_FANSPEED_MIN +
+ (ctemp - CPU_TEMP_MIN) *
+ (TDA_FANSPEED_MAX - TDA_FANSPEED_MIN) /
+ (CPU_TEMP_MAX - CPU_TEMP_MIN);
+
+ if (stemp < SYS_TEMP_MIN)
+ sc->sc_sfan_speed = TDA_FANSPEED_MIN;
+ else if (stemp < SYS_TEMP_MAX)
+ sc->sc_sfan_speed = TDA_FANSPEED_MIN +
+ (stemp - SYS_TEMP_MIN) *
+ (TDA_FANSPEED_MAX - TDA_FANSPEED_MIN) /
+ (SYS_TEMP_MAX - SYS_TEMP_MIN);
+
+out:
+ tda_setspeed(sc);
+}