2000-10-28 06:56:15 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2000 Michael Smith
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 6.3 : Scheduling services
|
|
|
|
*/
|
|
|
|
|
2005-07-22 23:10:02 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2001-12-22 16:05:41 +00:00
|
|
|
#include "opt_acpi.h"
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/interrupt.h>
|
2000-10-28 06:56:15 +00:00
|
|
|
#include <sys/kernel.h>
|
2001-12-22 16:05:41 +00:00
|
|
|
#include <sys/kthread.h>
|
2000-10-28 06:56:15 +00:00
|
|
|
#include <sys/malloc.h>
|
2001-05-30 05:34:10 +00:00
|
|
|
#include <sys/proc.h>
|
2000-10-28 06:56:15 +00:00
|
|
|
#include <sys/taskqueue.h>
|
|
|
|
|
2005-09-11 18:39:03 +00:00
|
|
|
#include <contrib/dev/acpica/acpi.h>
|
2001-12-22 16:05:41 +00:00
|
|
|
#include <dev/acpica/acpivar.h>
|
|
|
|
|
2001-05-29 20:13:42 +00:00
|
|
|
#define _COMPONENT ACPI_OS_SERVICES
|
2002-02-23 05:31:38 +00:00
|
|
|
ACPI_MODULE_NAME("SCHEDULE")
|
2001-01-31 09:34:54 +00:00
|
|
|
|
2005-04-21 06:13:48 +00:00
|
|
|
/*
|
|
|
|
* Allow the user to tune the number of task threads we start. It seems
|
|
|
|
* some systems have problems with increased parallelism.
|
|
|
|
*/
|
|
|
|
static int acpi_max_threads = ACPI_MAX_THREADS;
|
|
|
|
TUNABLE_INT("debug.acpi.max_threads", &acpi_max_threads);
|
|
|
|
|
2000-10-28 06:56:15 +00:00
|
|
|
MALLOC_DEFINE(M_ACPITASK, "acpitask", "ACPI deferred task");
|
|
|
|
|
2005-05-09 07:34:04 +00:00
|
|
|
struct acpi_task_ctx {
|
2000-10-28 06:56:15 +00:00
|
|
|
struct task at_task;
|
2004-12-02 00:25:35 +00:00
|
|
|
ACPI_OSD_EXEC_CALLBACK at_function;
|
2005-05-09 07:34:04 +00:00
|
|
|
void *at_context;
|
2001-12-22 16:05:41 +00:00
|
|
|
};
|
|
|
|
|
2005-05-09 07:34:04 +00:00
|
|
|
TASKQUEUE_DEFINE(acpi, taskqueue_thread_enqueue, &taskqueue_acpi,
|
2006-03-30 19:22:45 +00:00
|
|
|
taskqueue_start_threads(&taskqueue_acpi, acpi_max_threads, PWAIT,
|
|
|
|
"acpi_task"));
|
2005-05-09 07:34:04 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Bounce through this wrapper function since ACPI-CA doesn't understand
|
|
|
|
* the pending argument for its callbacks.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
acpi_task_execute(void *context, int pending)
|
|
|
|
{
|
|
|
|
struct acpi_task_ctx *at;
|
|
|
|
|
|
|
|
at = (struct acpi_task_ctx *)context;
|
|
|
|
at->at_function(at->at_context);
|
|
|
|
free(at, M_ACPITASK);
|
2001-12-22 16:05:41 +00:00
|
|
|
}
|
|
|
|
|
2005-05-09 07:34:04 +00:00
|
|
|
/*
|
|
|
|
* This function may be called in interrupt context, i.e. when a GPE fires.
|
|
|
|
* We allocate and queue a task for one of our taskqueue threads to process.
|
|
|
|
*/
|
2000-10-28 06:56:15 +00:00
|
|
|
ACPI_STATUS
|
2007-03-22 18:16:43 +00:00
|
|
|
AcpiOsExecute(ACPI_EXECUTE_TYPE Type, ACPI_OSD_EXEC_CALLBACK Function,
|
2004-04-14 03:45:20 +00:00
|
|
|
void *Context)
|
2000-10-28 06:56:15 +00:00
|
|
|
{
|
2005-05-09 07:34:04 +00:00
|
|
|
struct acpi_task_ctx *at;
|
2001-10-25 19:56:02 +00:00
|
|
|
int pri;
|
2000-10-28 06:56:15 +00:00
|
|
|
|
2002-05-19 06:16:47 +00:00
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
2001-01-31 09:34:54 +00:00
|
|
|
|
2000-10-28 06:56:15 +00:00
|
|
|
if (Function == NULL)
|
2004-04-14 03:45:20 +00:00
|
|
|
return_ACPI_STATUS (AE_BAD_PARAMETER);
|
2000-10-28 06:56:15 +00:00
|
|
|
|
2005-05-09 07:34:04 +00:00
|
|
|
at = malloc(sizeof(*at), M_ACPITASK, M_NOWAIT);
|
2001-01-23 09:43:23 +00:00
|
|
|
if (at == NULL)
|
2004-04-14 03:45:20 +00:00
|
|
|
return_ACPI_STATUS (AE_NO_MEMORY);
|
2000-10-28 06:56:15 +00:00
|
|
|
|
|
|
|
at->at_function = Function;
|
|
|
|
at->at_context = Context;
|
2007-03-22 18:16:43 +00:00
|
|
|
switch (Type) {
|
|
|
|
case OSL_GPE_HANDLER:
|
2008-01-12 22:13:12 +00:00
|
|
|
case OSL_NOTIFY_HANDLER:
|
|
|
|
/*
|
|
|
|
* Run GPEs and Notifies at the same priority. This allows
|
|
|
|
* Notifies that are generated by running a GPE's method (e.g., _L00)
|
|
|
|
* to not be pre-empted by a later GPE that arrives during the
|
|
|
|
* Notify handler execution.
|
|
|
|
*/
|
2007-03-22 18:16:43 +00:00
|
|
|
pri = 10;
|
2000-12-20 19:15:38 +00:00
|
|
|
break;
|
2007-03-22 18:16:43 +00:00
|
|
|
case OSL_GLOBAL_LOCK_HANDLER:
|
|
|
|
case OSL_EC_POLL_HANDLER:
|
|
|
|
case OSL_EC_BURST_HANDLER:
|
|
|
|
pri = 5;
|
2000-10-28 06:56:15 +00:00
|
|
|
break;
|
2007-03-22 18:16:43 +00:00
|
|
|
case OSL_DEBUGGER_THREAD:
|
|
|
|
pri = 0;
|
2000-10-28 06:56:15 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
free(at, M_ACPITASK);
|
2004-04-14 03:45:20 +00:00
|
|
|
return_ACPI_STATUS (AE_BAD_PARAMETER);
|
2000-10-28 06:56:15 +00:00
|
|
|
}
|
|
|
|
|
2005-05-09 07:34:04 +00:00
|
|
|
TASK_INIT(&at->at_task, pri, acpi_task_execute, at);
|
|
|
|
taskqueue_enqueue(taskqueue_acpi, &at->at_task);
|
2004-04-14 03:45:20 +00:00
|
|
|
|
|
|
|
return_ACPI_STATUS (AE_OK);
|
2000-10-28 06:56:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-12-02 00:25:35 +00:00
|
|
|
AcpiOsSleep(ACPI_INTEGER Milliseconds)
|
2000-10-28 06:56:15 +00:00
|
|
|
{
|
|
|
|
int timo;
|
|
|
|
|
2002-05-19 06:16:47 +00:00
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
2001-01-31 09:34:54 +00:00
|
|
|
|
2004-12-02 00:25:35 +00:00
|
|
|
timo = Milliseconds * hz / 1000;
|
2003-10-02 05:09:37 +00:00
|
|
|
|
2005-05-09 07:34:04 +00:00
|
|
|
/*
|
2003-10-02 05:09:37 +00:00
|
|
|
* If requested sleep time is less than our hz resolution, use
|
|
|
|
* DELAY instead for better granularity.
|
|
|
|
*/
|
|
|
|
if (timo > 0)
|
2007-02-23 16:25:08 +00:00
|
|
|
pause("acpislp", timo);
|
2003-10-02 05:09:37 +00:00
|
|
|
else
|
|
|
|
DELAY(Milliseconds * 1000);
|
|
|
|
|
2001-01-31 09:34:54 +00:00
|
|
|
return_VOID;
|
2000-10-28 06:56:15 +00:00
|
|
|
}
|
|
|
|
|
2004-12-02 00:25:35 +00:00
|
|
|
/*
|
|
|
|
* Return the current time in 100 nanosecond units
|
|
|
|
*/
|
|
|
|
UINT64
|
|
|
|
AcpiOsGetTimer(void)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
UINT64 t;
|
|
|
|
|
|
|
|
/* XXX During early boot there is no (decent) timer available yet. */
|
|
|
|
if (cold)
|
|
|
|
panic("acpi: timer op not yet supported during boot");
|
|
|
|
|
|
|
|
binuptime(&bt);
|
|
|
|
t = ((UINT64)10000000 * (uint32_t)(bt.frac >> 32)) >> 32;
|
|
|
|
t += bt.sec * 10000000;
|
|
|
|
|
|
|
|
return (t);
|
|
|
|
}
|
|
|
|
|
2000-10-28 06:56:15 +00:00
|
|
|
void
|
2003-10-02 05:09:37 +00:00
|
|
|
AcpiOsStall(UINT32 Microseconds)
|
2000-10-28 06:56:15 +00:00
|
|
|
{
|
2002-05-19 06:16:47 +00:00
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
2001-01-31 09:34:54 +00:00
|
|
|
|
2003-09-30 19:12:37 +00:00
|
|
|
DELAY(Microseconds);
|
2001-01-31 09:34:54 +00:00
|
|
|
return_VOID;
|
2000-10-28 06:56:15 +00:00
|
|
|
}
|
2001-05-29 20:13:42 +00:00
|
|
|
|
2007-03-22 18:16:43 +00:00
|
|
|
ACPI_THREAD_ID
|
2003-10-02 05:09:37 +00:00
|
|
|
AcpiOsGetThreadId(void)
|
2001-05-29 20:13:42 +00:00
|
|
|
{
|
2002-10-16 17:25:29 +00:00
|
|
|
struct proc *p;
|
2004-04-14 03:45:20 +00:00
|
|
|
|
|
|
|
/* XXX do not add ACPI_FUNCTION_TRACE here, results in recursive call. */
|
2001-05-29 20:13:42 +00:00
|
|
|
|
2002-10-16 17:25:29 +00:00
|
|
|
p = curproc;
|
|
|
|
KASSERT(p != NULL, ("%s: curproc is NULL!", __func__));
|
2004-04-14 03:45:20 +00:00
|
|
|
|
|
|
|
/* Returning 0 is not allowed. */
|
|
|
|
return (p->p_pid + 1);
|
2001-05-29 20:13:42 +00:00
|
|
|
}
|