summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica/acpi_acad.c
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2003-08-11 15:34:43 +0000
committernjl <njl@FreeBSD.org>2003-08-11 15:34:43 +0000
commit913f59e5bd29583d447d856ebff9f64ecdf9297e (patch)
tree9483237ba1c800d6c52ddd78011cffb5e0e0ec97 /sys/dev/acpica/acpi_acad.c
parent581beee0a85a43275dca02bc412ddbbfecd3f6af (diff)
downloadFreeBSD-src-913f59e5bd29583d447d856ebff9f64ecdf9297e.zip
FreeBSD-src-913f59e5bd29583d447d856ebff9f64ecdf9297e.tar.gz
Style cleanups to match the rest of this directory. For acpi_battery.c,
remove unused includes.
Diffstat (limited to 'sys/dev/acpica/acpi_acad.c')
-rw-r--r--sys/dev/acpica/acpi_acad.c322
1 files changed, 156 insertions, 166 deletions
diff --git a/sys/dev/acpica/acpi_acad.c b/sys/dev/acpica/acpi_acad.c
index 09bb149..bc3ea38 100644
--- a/sys/dev/acpica/acpi_acad.c
+++ b/sys/dev/acpica/acpi_acad.c
@@ -43,240 +43,230 @@
#include <dev/acpica/acpivar.h>
#include <dev/acpica/acpiio.h>
-/*
- * Hooks for the ACPI CA debugging infrastructure
- */
+/* Hooks for the ACPI CA debugging infrastructure */
#define _COMPONENT ACPI_AC_ADAPTER
ACPI_MODULE_NAME("AC_ADAPTER")
+/* Number of times to retry initialization before giving up. */
+#define ACPI_ACAD_RETRY_MAX 6
+
#define ACPI_DEVICE_CHECK_PNP 0x00
#define ACPI_DEVICE_CHECK_EXISTENCE 0x01
#define ACPI_POWERSOURCE_STAT_CHANGE 0x80
-static void acpi_acad_get_status(void * );
-static void acpi_acad_notify_handler(ACPI_HANDLE , UINT32 ,void *);
-static int acpi_acad_probe(device_t);
-static int acpi_acad_attach(device_t);
-static int acpi_acad_ioctl(u_long, caddr_t, void *);
-static int acpi_acad_sysctl(SYSCTL_HANDLER_ARGS);
-static void acpi_acad_init_acline(void *arg);
+struct acpi_acad_softc {
+ int status;
+ int initializing;
+};
+
+static void acpi_acad_get_status(void *);
+static void acpi_acad_notify_handler(ACPI_HANDLE, UINT32, void *);
+static int acpi_acad_probe(device_t);
+static int acpi_acad_attach(device_t);
+static int acpi_acad_ioctl(u_long, caddr_t, void *);
+static int acpi_acad_sysctl(SYSCTL_HANDLER_ARGS);
+static void acpi_acad_init_acline(void *arg);
-struct acpi_acad_softc {
- int status;
+static device_method_t acpi_acad_methods[] = {
+ /* Device interface */
+ DEVMETHOD(device_probe, acpi_acad_probe),
+ DEVMETHOD(device_attach, acpi_acad_attach),
- int initializing;
+ {0, 0}
+};
+
+static driver_t acpi_acad_driver = {
+ "acpi_acad",
+ acpi_acad_methods,
+ sizeof(struct acpi_acad_softc),
};
+static devclass_t acpi_acad_devclass;
+DRIVER_MODULE(acpi_acad, acpi, acpi_acad_driver, acpi_acad_devclass, 0, 0);
+
static void
acpi_acad_get_status(void *context)
{
- int newstatus;
- device_t dev = context;
- struct acpi_acad_softc *sc = device_get_softc(dev);
- ACPI_HANDLE h = acpi_get_handle(dev);
-
- if (ACPI_FAILURE(acpi_EvaluateInteger(h, "_PSR", &newstatus))) {
- sc->status = -1;
- return;
- }
-
- if (sc->status != newstatus) {
- sc->status = newstatus;
- /* set system power profile based on AC adapter status */
- power_profile_set_state(sc->status ? POWER_PROFILE_PERFORMANCE : POWER_PROFILE_ECONOMY);
- ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
- "%s Line\n",(sc->status) ? "On" : "Off");
- }
+ struct acpi_acad_softc *sc;
+ device_t dev;
+ ACPI_HANDLE h;
+ int newstatus;
+
+ dev = context;
+ sc = device_get_softc(dev);
+ h = acpi_get_handle(dev);
+ if (ACPI_FAILURE(acpi_EvaluateInteger(h, "_PSR", &newstatus))) {
+ sc->status = -1;
+ return;
+ }
+
+ if (sc->status != newstatus) {
+ sc->status = newstatus;
+
+ /* Set system power profile based on AC adapter status */
+ power_profile_set_state(sc->status ? POWER_PROFILE_PERFORMANCE :
+ POWER_PROFILE_ECONOMY);
+ ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
+ "%s Line\n", sc->status ? "On" : "Off");
+ }
}
static void
acpi_acad_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
{
- device_t dev = context;
-
- ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
- "Notify %d\n", notify);
-
- switch (notify) {
- case ACPI_DEVICE_CHECK_PNP:
- case ACPI_DEVICE_CHECK_EXISTENCE:
- case ACPI_POWERSOURCE_STAT_CHANGE:
- /*Temporally. It is better to notify policy manager*/
- AcpiOsQueueForExecution(OSD_PRIORITY_LO,
- acpi_acad_get_status,context);
- break;
- default:
- break;
- }
+ device_t dev = context;
+
+ ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
+ "Notify %d\n", notify);
+
+ switch (notify) {
+ case ACPI_DEVICE_CHECK_PNP:
+ case ACPI_DEVICE_CHECK_EXISTENCE:
+ case ACPI_POWERSOURCE_STAT_CHANGE:
+ /* Temporarily. It is better to notify policy manager */
+ AcpiOsQueueForExecution(OSD_PRIORITY_LO, acpi_acad_get_status, context);
+ break;
+ default:
+ break;
+ }
}
static int
acpi_acad_probe(device_t dev)
{
-
- if ((acpi_get_type(dev) == ACPI_TYPE_DEVICE) &&
+ if (acpi_get_type(dev) == ACPI_TYPE_DEVICE &&
acpi_MatchHid(dev, "ACPI0003")) {
-
- /*
- * Set device description
- */
+
device_set_desc(dev, "AC adapter");
- return(0);
+ return (0);
}
- return(ENXIO);
+ return (ENXIO);
}
static int
acpi_acad_attach(device_t dev)
{
- int error;
- struct acpi_acad_softc *sc;
- struct acpi_softc *acpi_sc;
-
- ACPI_HANDLE handle = acpi_get_handle(dev);
- AcpiInstallNotifyHandler(handle,
- ACPI_DEVICE_NOTIFY,
- acpi_acad_notify_handler, dev);
- /*Installing system notify is not so good*/
- AcpiInstallNotifyHandler(handle,
- ACPI_SYSTEM_NOTIFY,
- acpi_acad_notify_handler, dev);
-
- if ((sc = device_get_softc(dev)) == NULL) {
- return (ENXIO);
- }
- if ((error = acpi_register_ioctl(ACPIIO_ACAD_GET_STATUS,
- acpi_acad_ioctl, dev)) != 0) {
- return (error);
- }
-
- if (device_get_unit(dev) == 0) {
- acpi_sc = acpi_device_get_parent_softc(dev);
- SYSCTL_ADD_PROC(&acpi_sc->acpi_sysctl_ctx,
+ struct acpi_acad_softc *sc;
+ struct acpi_softc *acpi_sc;
+ ACPI_HANDLE handle;
+ int error;
+
+ handle = acpi_get_handle(dev);
+ AcpiInstallNotifyHandler(handle, ACPI_DEVICE_NOTIFY,
+ acpi_acad_notify_handler, dev);
+ /* XXX Installing system notify is not so good */
+ AcpiInstallNotifyHandler(handle, ACPI_SYSTEM_NOTIFY,
+ acpi_acad_notify_handler, dev);
+
+ if ((sc = device_get_softc(dev)) == NULL)
+ return (ENXIO);
+
+ error = acpi_register_ioctl(ACPIIO_ACAD_GET_STATUS, acpi_acad_ioctl, dev);
+ if (error != 0)
+ return (error);
+
+ if (device_get_unit(dev) == 0) {
+ acpi_sc = acpi_device_get_parent_softc(dev);
+ SYSCTL_ADD_PROC(&acpi_sc->acpi_sysctl_ctx,
SYSCTL_CHILDREN(acpi_sc->acpi_sysctl_tree),
OID_AUTO, "acline", CTLTYPE_INT | CTLFLAG_RD,
&sc->status, 0, acpi_acad_sysctl, "I", "");
- }
+ }
- /* Get initial status after whole system is up. */
- sc->status = -1;
- sc->initializing = 0;
+ /* Get initial status after whole system is up. */
+ sc->status = -1;
+ sc->initializing = 0;
- AcpiOsQueueForExecution(OSD_PRIORITY_LO, acpi_acad_init_acline, dev);
+ AcpiOsQueueForExecution(OSD_PRIORITY_LO, acpi_acad_init_acline, dev);
- return(0);
+ return (0);
}
-static device_method_t acpi_acad_methods[] = {
- /* Device interface */
- DEVMETHOD(device_probe, acpi_acad_probe),
- DEVMETHOD(device_attach, acpi_acad_attach),
-
- {0, 0}
-};
-
-static driver_t acpi_acad_driver = {
- "acpi_acad",
- acpi_acad_methods,
- sizeof(struct acpi_acad_softc),
-};
-
-static devclass_t acpi_acad_devclass;
-DRIVER_MODULE(acpi_acad,acpi,acpi_acad_driver,acpi_acad_devclass,0,0);
-
static int
acpi_acad_ioctl(u_long cmd, caddr_t addr, void *arg)
{
- device_t dev;
- struct acpi_acad_softc *sc;
-
- dev = (device_t)arg;
- if ((sc = device_get_softc(dev)) == NULL) {
- return(ENXIO);
- }
-
- /*
- * No security check required: information retrieval only. If
- * new functions are added here, a check might be required.
- */
-
- switch (cmd) {
- case ACPIIO_ACAD_GET_STATUS:
- acpi_acad_get_status(dev);
- *(int *)addr = sc->status;
- break;
- }
-
- return(0);
+ struct acpi_acad_softc *sc;
+ device_t dev;
+
+ dev = (device_t)arg;
+ if ((sc = device_get_softc(dev)) == NULL)
+ return(ENXIO);
+
+ /*
+ * No security check required: information retrieval only. If
+ * new functions are added here, a check might be required.
+ */
+ switch (cmd) {
+ case ACPIIO_ACAD_GET_STATUS:
+ acpi_acad_get_status(dev);
+ *(int *)addr = sc->status;
+ break;
+ default:
+ break;
+ }
+
+ return (0);
}
static int
acpi_acad_sysctl(SYSCTL_HANDLER_ARGS)
{
- int val;
- int error;
+ int val, error;
- if (acpi_acad_get_acline(&val)) {
- return (ENXIO);
- }
+ if (acpi_acad_get_acline(&val) != 0)
+ return (ENXIO);
- val = *(u_int *)oidp->oid_arg1;
- error = sysctl_handle_int(oidp, &val, 0, req);
- return (error);
+ val = *(u_int *)oidp->oid_arg1;
+ error = sysctl_handle_int(oidp, &val, 0, req);
+ return (error);
}
static void
acpi_acad_init_acline(void *arg)
{
- int retry;
- int status;
- device_t dev = (device_t)arg;
- struct acpi_acad_softc *sc = device_get_softc(dev);
-#define ACPI_ACAD_RETRY_MAX 6
-
- if (sc->initializing) {
- return;
- }
+ struct acpi_acad_softc *sc;
+ device_t dev;
+ int retry, status;
- sc->initializing = 1;
-
- ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
- "acline initialization start\n");
+ dev = (device_t)arg;
+ sc = device_get_softc(dev);
+ if (sc->initializing)
+ return;
- status = 0;
- for (retry = 0; retry < ACPI_ACAD_RETRY_MAX; retry++, AcpiOsSleep(10, 0)) {
- acpi_acad_get_status(dev);
- if (status != sc->status)
- break;
- }
+ sc->initializing = 1;
+ ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
+ "acline initialization start\n");
- ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
- "acline initialization done, tried %d times\n", retry+1);
+ status = 0;
+ for (retry = 0; retry < ACPI_ACAD_RETRY_MAX; retry++, AcpiOsSleep(10, 0)) {
+ acpi_acad_get_status(dev);
+ if (status != sc->status)
+ break;
+ }
- sc->initializing = 0;
+ sc->initializing = 0;
+ ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
+ "acline initialization done, tried %d times\n", retry+1);
}
/*
* Public interfaces.
*/
-
int
acpi_acad_get_acline(int *status)
{
- device_t dev;
- struct acpi_acad_softc *sc;
+ struct acpi_acad_softc *sc;
+ device_t dev;
- if ((dev = devclass_get_device(acpi_acad_devclass, 0)) == NULL) {
- return (ENXIO);
- }
+ dev = devclass_get_device(acpi_acad_devclass, 0);
+ if (dev == NULL)
+ return (ENXIO);
+ sc = device_get_softc(dev);
+ if (sc == NULL)
+ return (ENXIO);
- if ((sc = device_get_softc(dev)) == NULL) {
- return (ENXIO);
- }
+ acpi_acad_get_status(dev);
+ *status = sc->status;
- acpi_acad_get_status(dev);
- *status = sc->status;
-
- return (0);
+ return (0);
}
-
OpenPOWER on IntegriCloud