2000-10-28 06:59:48 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2000 Mitsaru IWASAKI <iwasaki@jp.freebsd.org>
|
|
|
|
* Copyright (c) 2000 Michael Smith <msmith@freebsd.org>
|
|
|
|
* Copyright (c) 2000 BSDi
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2005-03-02 09:22:34 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
#include "opt_acpi.h"
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
2004-05-30 20:08:47 +00:00
|
|
|
#include <sys/module.h>
|
2000-10-28 06:59:48 +00:00
|
|
|
#include <sys/bus.h>
|
|
|
|
|
2009-06-05 18:44:36 +00:00
|
|
|
#include <contrib/dev/acpica/include/acpi.h>
|
|
|
|
#include <contrib/dev/acpica/include/accommon.h>
|
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
#include <dev/acpica/acpivar.h>
|
|
|
|
|
2003-08-11 15:34:43 +00:00
|
|
|
/* Hooks for the ACPI CA debugging infrastructure */
|
2001-05-29 20:13:42 +00:00
|
|
|
#define _COMPONENT ACPI_BUTTON
|
2002-02-23 05:26:45 +00:00
|
|
|
ACPI_MODULE_NAME("BUTTON")
|
2000-12-08 09:16:20 +00:00
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
struct acpi_button_softc {
|
|
|
|
device_t button_dev;
|
|
|
|
ACPI_HANDLE button_handle;
|
2003-09-21 02:49:59 +00:00
|
|
|
boolean_t button_type;
|
2003-08-11 15:34:43 +00:00
|
|
|
#define ACPI_POWER_BUTTON 0
|
|
|
|
#define ACPI_SLEEP_BUTTON 1
|
2003-09-21 02:49:59 +00:00
|
|
|
boolean_t fixed;
|
2000-10-28 06:59:48 +00:00
|
|
|
};
|
|
|
|
|
2003-08-11 15:34:43 +00:00
|
|
|
#define ACPI_NOTIFY_BUTTON_PRESSED_FOR_SLEEP 0x80
|
|
|
|
#define ACPI_NOTIFY_BUTTON_PRESSED_FOR_WAKEUP 0x02
|
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
static int acpi_button_probe(device_t dev);
|
|
|
|
static int acpi_button_attach(device_t dev);
|
2002-07-22 12:52:54 +00:00
|
|
|
static int acpi_button_suspend(device_t dev);
|
|
|
|
static int acpi_button_resume(device_t dev);
|
2003-08-11 15:34:43 +00:00
|
|
|
static void acpi_button_notify_handler(ACPI_HANDLE h, UINT32 notify,
|
|
|
|
void *context);
|
2003-09-21 02:49:59 +00:00
|
|
|
static ACPI_STATUS
|
|
|
|
acpi_button_fixed_handler(void *context);
|
2004-02-11 02:57:33 +00:00
|
|
|
static void acpi_button_notify_sleep(void *arg);
|
|
|
|
static void acpi_button_notify_wakeup(void *arg);
|
2000-10-28 06:59:48 +00:00
|
|
|
|
2004-06-29 19:02:27 +00:00
|
|
|
static char *btn_ids[] = {
|
|
|
|
"PNP0C0C", "ACPI_FPB", "PNP0C0E", "ACPI_FSB",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
static device_method_t acpi_button_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, acpi_button_probe),
|
|
|
|
DEVMETHOD(device_attach, acpi_button_attach),
|
2002-07-22 12:52:54 +00:00
|
|
|
DEVMETHOD(device_suspend, acpi_button_suspend),
|
2003-07-26 09:54:17 +00:00
|
|
|
DEVMETHOD(device_shutdown, acpi_button_suspend),
|
2002-07-22 12:52:54 +00:00
|
|
|
DEVMETHOD(device_resume, acpi_button_resume),
|
2000-10-28 06:59:48 +00:00
|
|
|
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t acpi_button_driver = {
|
|
|
|
"acpi_button",
|
|
|
|
acpi_button_methods,
|
|
|
|
sizeof(struct acpi_button_softc),
|
|
|
|
};
|
|
|
|
|
2002-01-08 06:46:01 +00:00
|
|
|
static devclass_t acpi_button_devclass;
|
2003-08-11 15:34:43 +00:00
|
|
|
DRIVER_MODULE(acpi_button, acpi, acpi_button_driver, acpi_button_devclass,
|
|
|
|
0, 0);
|
2004-04-09 18:14:32 +00:00
|
|
|
MODULE_DEPEND(acpi_button, acpi, 1, 1, 1);
|
2000-10-28 06:59:48 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_button_probe(device_t dev)
|
|
|
|
{
|
2004-06-29 19:02:27 +00:00
|
|
|
struct acpi_button_softc *sc;
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
if (acpi_disabled("button") ||
|
|
|
|
(str = ACPI_ID_PROBE(device_get_parent(dev), dev, btn_ids)) == NULL)
|
|
|
|
return (ENXIO);
|
2000-10-28 06:59:48 +00:00
|
|
|
|
|
|
|
sc = device_get_softc(dev);
|
2004-06-29 19:02:27 +00:00
|
|
|
if (strcmp(str, "PNP0C0C") == 0) {
|
|
|
|
device_set_desc(dev, "Power Button");
|
|
|
|
sc->button_type = ACPI_POWER_BUTTON;
|
|
|
|
} else if (strcmp(str, "ACPI_FPB") == 0) {
|
|
|
|
device_set_desc(dev, "Power Button (fixed)");
|
|
|
|
sc->button_type = ACPI_POWER_BUTTON;
|
|
|
|
sc->fixed = 1;
|
|
|
|
} else if (strcmp(str, "PNP0C0E") == 0) {
|
|
|
|
device_set_desc(dev, "Sleep Button");
|
|
|
|
sc->button_type = ACPI_SLEEP_BUTTON;
|
|
|
|
} else if (strcmp(str, "ACPI_FSB") == 0) {
|
|
|
|
device_set_desc(dev, "Sleep Button (fixed)");
|
|
|
|
sc->button_type = ACPI_SLEEP_BUTTON;
|
|
|
|
sc->fixed = 1;
|
2000-10-28 06:59:48 +00:00
|
|
|
}
|
2004-06-29 19:02:27 +00:00
|
|
|
|
|
|
|
return (0);
|
2000-10-28 06:59:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_button_attach(device_t dev)
|
|
|
|
{
|
2010-07-06 20:57:28 +00:00
|
|
|
struct acpi_prw_data prw;
|
2000-10-28 06:59:48 +00:00
|
|
|
struct acpi_button_softc *sc;
|
|
|
|
ACPI_STATUS status;
|
2003-09-21 02:49:59 +00:00
|
|
|
int event;
|
2000-10-28 06:59:48 +00:00
|
|
|
|
2002-05-19 06:16:47 +00:00
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
2000-12-08 09:16:20 +00:00
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
sc = device_get_softc(dev);
|
|
|
|
sc->button_dev = dev;
|
|
|
|
sc->button_handle = acpi_get_handle(dev);
|
2004-02-11 02:57:33 +00:00
|
|
|
event = (sc->button_type == ACPI_SLEEP_BUTTON) ?
|
|
|
|
ACPI_EVENT_SLEEP_BUTTON : ACPI_EVENT_POWER_BUTTON;
|
2000-10-28 06:59:48 +00:00
|
|
|
|
2004-02-19 18:16:34 +00:00
|
|
|
/*
|
|
|
|
* Install the new handler. We could remove any fixed handlers added
|
|
|
|
* from the FADT once we have a duplicate from the AML but some systems
|
|
|
|
* only return events on one or the other so we have to keep both.
|
|
|
|
*/
|
2003-09-21 02:49:59 +00:00
|
|
|
if (sc->fixed) {
|
2004-02-11 02:57:33 +00:00
|
|
|
AcpiClearEvent(event);
|
2003-09-21 02:49:59 +00:00
|
|
|
status = AcpiInstallFixedEventHandler(event,
|
|
|
|
acpi_button_fixed_handler, sc);
|
|
|
|
} else {
|
2004-05-25 02:47:35 +00:00
|
|
|
/*
|
|
|
|
* If a system does not get lid events, it may make sense to change
|
|
|
|
* the type to ACPI_ALL_NOTIFY. Some systems generate both a wake
|
|
|
|
* and runtime notify in that case though.
|
|
|
|
*/
|
2003-09-21 02:49:59 +00:00
|
|
|
status = AcpiInstallNotifyHandler(sc->button_handle,
|
|
|
|
ACPI_DEVICE_NOTIFY, acpi_button_notify_handler, sc);
|
|
|
|
}
|
2003-08-11 15:34:43 +00:00
|
|
|
if (ACPI_FAILURE(status)) {
|
2003-09-21 02:49:59 +00:00
|
|
|
device_printf(sc->button_dev, "couldn't install notify handler - %s\n",
|
2003-08-11 15:34:43 +00:00
|
|
|
AcpiFormatException(status));
|
|
|
|
return_VALUE (ENXIO);
|
2000-10-28 06:59:48 +00:00
|
|
|
}
|
2004-02-11 02:57:33 +00:00
|
|
|
|
2004-05-27 18:38:45 +00:00
|
|
|
/* Enable the GPE for wake/runtime. */
|
|
|
|
acpi_wake_set_enable(dev, 1);
|
2010-07-06 20:57:28 +00:00
|
|
|
if (acpi_parse_prw(sc->button_handle, &prw) == 0)
|
|
|
|
AcpiEnableGpe(prw.gpe_handle, prw.gpe_bit);
|
2010-12-15 23:48:45 +00:00
|
|
|
|
2003-08-11 15:34:43 +00:00
|
|
|
return_VALUE (0);
|
2000-10-28 06:59:48 +00:00
|
|
|
}
|
|
|
|
|
2002-07-22 12:52:54 +00:00
|
|
|
static int
|
|
|
|
acpi_button_suspend(device_t dev)
|
|
|
|
{
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_button_resume(device_t dev)
|
|
|
|
{
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
static void
|
2004-02-11 02:57:33 +00:00
|
|
|
acpi_button_notify_sleep(void *arg)
|
2000-10-28 06:59:48 +00:00
|
|
|
{
|
|
|
|
struct acpi_button_softc *sc;
|
|
|
|
struct acpi_softc *acpi_sc;
|
|
|
|
|
2002-05-19 06:16:47 +00:00
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
2000-12-08 09:16:20 +00:00
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
sc = (struct acpi_button_softc *)arg;
|
|
|
|
acpi_sc = acpi_device_get_parent_softc(sc->button_dev);
|
2003-08-11 15:34:43 +00:00
|
|
|
if (acpi_sc == NULL)
|
2000-12-08 09:16:20 +00:00
|
|
|
return_VOID;
|
2000-10-28 06:59:48 +00:00
|
|
|
|
2003-10-25 05:03:25 +00:00
|
|
|
acpi_UserNotify("Button", sc->button_handle, sc->button_type);
|
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
switch (sc->button_type) {
|
|
|
|
case ACPI_POWER_BUTTON:
|
2002-05-25 11:18:03 +00:00
|
|
|
ACPI_VPRINT(sc->button_dev, acpi_sc, "power button pressed\n");
|
2004-02-11 02:57:33 +00:00
|
|
|
acpi_event_power_button_sleep(acpi_sc);
|
2000-10-28 06:59:48 +00:00
|
|
|
break;
|
|
|
|
case ACPI_SLEEP_BUTTON:
|
2002-05-25 11:18:03 +00:00
|
|
|
ACPI_VPRINT(sc->button_dev, acpi_sc, "sleep button pressed\n");
|
2004-02-11 02:57:33 +00:00
|
|
|
acpi_event_sleep_button_sleep(acpi_sc);
|
2000-10-28 06:59:48 +00:00
|
|
|
break;
|
|
|
|
default:
|
2000-12-08 09:16:20 +00:00
|
|
|
break; /* unknown button type */
|
2000-10-28 06:59:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-02-11 02:57:33 +00:00
|
|
|
acpi_button_notify_wakeup(void *arg)
|
2000-10-28 06:59:48 +00:00
|
|
|
{
|
|
|
|
struct acpi_button_softc *sc;
|
|
|
|
struct acpi_softc *acpi_sc;
|
|
|
|
|
2002-05-19 06:16:47 +00:00
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
2000-12-08 09:16:20 +00:00
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
sc = (struct acpi_button_softc *)arg;
|
|
|
|
acpi_sc = acpi_device_get_parent_softc(sc->button_dev);
|
2003-08-11 15:34:43 +00:00
|
|
|
if (acpi_sc == NULL)
|
2000-12-08 09:16:20 +00:00
|
|
|
return_VOID;
|
2000-10-28 06:59:48 +00:00
|
|
|
|
2003-10-25 05:03:25 +00:00
|
|
|
acpi_UserNotify("Button", sc->button_handle, sc->button_type);
|
|
|
|
|
2000-10-28 06:59:48 +00:00
|
|
|
switch (sc->button_type) {
|
|
|
|
case ACPI_POWER_BUTTON:
|
2002-05-25 11:18:03 +00:00
|
|
|
ACPI_VPRINT(sc->button_dev, acpi_sc, "wakeup by power button\n");
|
2004-02-11 02:57:33 +00:00
|
|
|
acpi_event_power_button_wake(acpi_sc);
|
2000-10-28 06:59:48 +00:00
|
|
|
break;
|
|
|
|
case ACPI_SLEEP_BUTTON:
|
2002-05-25 11:18:03 +00:00
|
|
|
ACPI_VPRINT(sc->button_dev, acpi_sc, "wakeup by sleep button\n");
|
2004-02-11 02:57:33 +00:00
|
|
|
acpi_event_sleep_button_wake(acpi_sc);
|
2000-10-28 06:59:48 +00:00
|
|
|
break;
|
|
|
|
default:
|
2000-12-08 09:16:20 +00:00
|
|
|
break; /* unknown button type */
|
2000-10-28 06:59:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
acpi_button_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
|
|
|
|
{
|
2004-05-25 02:47:35 +00:00
|
|
|
struct acpi_button_softc *sc;
|
2000-10-28 06:59:48 +00:00
|
|
|
|
2002-05-19 06:16:47 +00:00
|
|
|
ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify);
|
2000-12-08 09:16:20 +00:00
|
|
|
|
2004-05-25 02:47:35 +00:00
|
|
|
sc = (struct acpi_button_softc *)context;
|
2000-10-28 06:59:48 +00:00
|
|
|
switch (notify) {
|
|
|
|
case ACPI_NOTIFY_BUTTON_PRESSED_FOR_SLEEP:
|
2007-03-22 18:16:43 +00:00
|
|
|
AcpiOsExecute(OSL_NOTIFY_HANDLER, acpi_button_notify_sleep, sc);
|
2000-10-28 06:59:48 +00:00
|
|
|
break;
|
|
|
|
case ACPI_NOTIFY_BUTTON_PRESSED_FOR_WAKEUP:
|
2007-03-22 18:16:43 +00:00
|
|
|
AcpiOsExecute(OSL_NOTIFY_HANDLER, acpi_button_notify_wakeup, sc);
|
2000-10-28 06:59:48 +00:00
|
|
|
break;
|
|
|
|
default:
|
2004-05-25 02:47:35 +00:00
|
|
|
device_printf(sc->button_dev, "unknown notify %#x\n", notify);
|
|
|
|
break;
|
2000-10-28 06:59:48 +00:00
|
|
|
}
|
|
|
|
}
|
2003-09-21 02:49:59 +00:00
|
|
|
|
|
|
|
static ACPI_STATUS
|
|
|
|
acpi_button_fixed_handler(void *context)
|
|
|
|
{
|
|
|
|
struct acpi_button_softc *sc = (struct acpi_button_softc *)context;
|
|
|
|
|
2003-09-22 04:50:29 +00:00
|
|
|
ACPI_FUNCTION_TRACE_PTR((char *)(uintptr_t)__func__, context);
|
2003-09-21 18:54:52 +00:00
|
|
|
|
2003-09-21 02:49:59 +00:00
|
|
|
if (context == NULL)
|
|
|
|
return_ACPI_STATUS (AE_BAD_PARAMETER);
|
|
|
|
|
|
|
|
acpi_button_notify_handler(sc->button_handle,
|
|
|
|
ACPI_NOTIFY_BUTTON_PRESSED_FOR_SLEEP, sc);
|
2003-09-22 04:50:29 +00:00
|
|
|
return_ACPI_STATUS (AE_OK);
|
2003-09-21 02:49:59 +00:00
|
|
|
}
|