2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Name: acpiosxf.h - All interfaces to the OS Services Layer (OSL). These
|
|
|
|
* interfaces must be implemented by OSL to interface the
|
|
|
|
* ACPI components to the host operating system.
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2010-01-22 12:07:36 +01:00
|
|
|
* Copyright (C) 2000 - 2010, Intel Corp.
|
2005-04-17 00:20:36 +02:00
|
|
|
* 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,
|
|
|
|
* without modification.
|
|
|
|
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
|
|
|
* substantially similar to the "NO WARRANTY" disclaimer below
|
|
|
|
* ("Disclaimer") and any redistribution must be conditioned upon
|
|
|
|
* including a substantially similar Disclaimer requirement for further
|
|
|
|
* binary redistribution.
|
|
|
|
* 3. Neither the names of the above-listed copyright holders nor the names
|
|
|
|
* of any contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*
|
|
|
|
* NO WARRANTY
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ACPIOSXF_H__
|
|
|
|
#define __ACPIOSXF_H__
|
|
|
|
|
|
|
|
#include "platform/acenv.h"
|
|
|
|
#include "actypes.h"
|
|
|
|
|
2006-05-12 23:12:00 +02:00
|
|
|
/* Types for acpi_os_execute */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-05-12 23:12:00 +02:00
|
|
|
typedef enum {
|
|
|
|
OSL_GLOBAL_LOCK_HANDLER,
|
|
|
|
OSL_NOTIFY_HANDLER,
|
|
|
|
OSL_GPE_HANDLER,
|
|
|
|
OSL_DEBUGGER_THREAD,
|
|
|
|
OSL_EC_POLL_HANDLER,
|
2006-05-26 22:36:00 +02:00
|
|
|
OSL_EC_BURST_HANDLER
|
2006-05-12 23:12:00 +02:00
|
|
|
} acpi_execute_type;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define ACPI_NO_UNIT_LIMIT ((u32) -1)
|
|
|
|
#define ACPI_MUTEX_SEM 1
|
|
|
|
|
|
|
|
/* Functions for acpi_os_signal */
|
|
|
|
|
|
|
|
#define ACPI_SIGNAL_FATAL 0
|
|
|
|
#define ACPI_SIGNAL_BREAKPOINT 1
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
struct acpi_signal_fatal_info {
|
|
|
|
u32 type;
|
|
|
|
u32 code;
|
|
|
|
u32 argument;
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OSL Initialization and shutdown primitives
|
|
|
|
*/
|
2007-05-30 06:26:11 +02:00
|
|
|
acpi_status __initdata acpi_os_initialize(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_os_terminate(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ACPI Table interfaces
|
|
|
|
*/
|
2007-02-02 17:48:18 +01:00
|
|
|
acpi_physical_address acpi_os_get_root_pointer(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
|
|
|
|
acpi_string * new_val);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_table_override(struct acpi_table_header *existing_table,
|
|
|
|
struct acpi_table_header **new_table);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2006-06-23 23:04:00 +02:00
|
|
|
* Spinlock primitives
|
|
|
|
*/
|
|
|
|
acpi_status acpi_os_create_lock(acpi_spinlock * out_handle);
|
|
|
|
|
|
|
|
void acpi_os_delete_lock(acpi_spinlock handle);
|
|
|
|
|
|
|
|
acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock handle);
|
|
|
|
|
|
|
|
void acpi_os_release_lock(acpi_spinlock handle, acpi_cpu_flags flags);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Semaphore primitives
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_create_semaphore(u32 max_units,
|
2006-06-23 23:04:00 +02:00
|
|
|
u32 initial_units, acpi_semaphore * out_handle);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-06-23 23:04:00 +02:00
|
|
|
acpi_status acpi_os_delete_semaphore(acpi_semaphore handle);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-06-23 23:04:00 +02:00
|
|
|
acpi_status
|
|
|
|
acpi_os_wait_semaphore(acpi_semaphore handle, u32 units, u16 timeout);
|
|
|
|
|
|
|
|
acpi_status acpi_os_signal_semaphore(acpi_semaphore handle, u32 units);
|
|
|
|
|
|
|
|
/*
|
2008-12-30 20:03:29 +01:00
|
|
|
* Mutex primitives. May be configured to use semaphores instead via
|
|
|
|
* ACPI_MUTEX_TYPE (see platform/acenv.h)
|
2006-06-23 23:04:00 +02:00
|
|
|
*/
|
2008-12-30 20:03:29 +01:00
|
|
|
#if (ACPI_MUTEX_TYPE != ACPI_BINARY_SEMAPHORE)
|
|
|
|
|
2006-06-23 23:04:00 +02:00
|
|
|
acpi_status acpi_os_create_mutex(acpi_mutex * out_handle);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-06-23 23:04:00 +02:00
|
|
|
void acpi_os_delete_mutex(acpi_mutex handle);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-06-23 23:04:00 +02:00
|
|
|
acpi_status acpi_os_acquire_mutex(acpi_mutex handle, u16 timeout);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-06-23 23:04:00 +02:00
|
|
|
void acpi_os_release_mutex(acpi_mutex handle);
|
2008-12-30 20:03:29 +01:00
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Memory allocation and mapping
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
void *acpi_os_allocate(acpi_size size);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-05-10 05:34:35 +02:00
|
|
|
void __iomem *acpi_os_map_memory(acpi_physical_address where,
|
2008-06-10 07:42:13 +02:00
|
|
|
acpi_size length);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_os_unmap_memory(void __iomem * logical_address, acpi_size size);
|
2009-02-08 00:39:41 +01:00
|
|
|
void early_acpi_os_unmap_memory(void __iomem * virt, acpi_size size);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#ifdef ACPI_FUTURE_USAGE
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_get_physical_address(void *logical_address,
|
|
|
|
acpi_physical_address * physical_address);
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
|
|
|
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
/*
|
|
|
|
* Memory/Object Cache
|
|
|
|
*/
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_create_cache(char *cache_name,
|
|
|
|
u16 object_size,
|
|
|
|
u16 max_depth, acpi_cache_t ** return_cache);
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_os_delete_cache(acpi_cache_t * cache);
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_os_purge_cache(acpi_cache_t * cache);
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void *acpi_os_acquire_object(acpi_cache_t * cache);
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object);
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Interrupt handlers
|
|
|
|
*/
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_install_interrupt_handler(u32 gsi,
|
|
|
|
acpi_osd_handler service_routine,
|
|
|
|
void *context);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_remove_interrupt_handler(u32 gsi, acpi_osd_handler service_routine);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-02-06 07:26:55 +01:00
|
|
|
void acpi_os_gpe_count(u32 gpe_number);
|
|
|
|
void acpi_os_fixed_event_count(u32 fixed_event_number);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Threads and Scheduling
|
|
|
|
*/
|
2006-10-03 06:00:00 +02:00
|
|
|
acpi_thread_id acpi_os_get_thread_id(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2006-05-12 23:12:00 +02:00
|
|
|
acpi_os_execute(acpi_execute_type type,
|
|
|
|
acpi_osd_exec_callback function, void *context);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-08-28 04:05:06 +02:00
|
|
|
acpi_status
|
|
|
|
acpi_os_hotplug_execute(acpi_osd_exec_callback function, void *context);
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_os_wait_events_complete(void *context);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2010-01-21 03:06:32 +01:00
|
|
|
void acpi_os_sleep(u64 milliseconds);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_os_stall(u32 microseconds);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Platform and hardware-independent I/O interfaces
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_os_read_port(acpi_io_address address, u32 * value, u32 width);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_os_write_port(acpi_io_address address, u32 value, u32 width);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Platform and hardware-independent physical memory interfaces
|
|
|
|
*/
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_read_memory(acpi_physical_address address, u32 * value, u32 width);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_write_memory(acpi_physical_address address, u32 value, u32 width);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Platform and hardware-independent PCI configuration space access
|
|
|
|
* Note: Can't use "Register" as a parameter, changed to "Reg" --
|
|
|
|
* certain compilers complain.
|
|
|
|
*/
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_read_pci_configuration(struct acpi_pci_id *pci_id,
|
2008-02-13 18:56:14 +01:00
|
|
|
u32 reg, u32 *value, u32 width);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_write_pci_configuration(struct acpi_pci_id *pci_id,
|
2010-01-21 03:06:32 +01:00
|
|
|
u32 reg, u64 value, u32 width);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Interim function needed for PCI IRQ routing
|
|
|
|
*/
|
|
|
|
void
|
2010-04-27 05:54:40 +02:00
|
|
|
acpi_os_derive_pci_id(acpi_handle device,
|
|
|
|
acpi_handle region, struct acpi_pci_id **pci_id);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Miscellaneous
|
|
|
|
*/
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
acpi_status acpi_os_validate_interface(char *interface);
|
2007-05-30 00:43:33 +02:00
|
|
|
acpi_status acpi_osi_invalidate(char* interface);
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
|
2009-07-28 00:42:38 +02:00
|
|
|
acpi_status
|
|
|
|
acpi_os_validate_address(u8 space_id, acpi_physical_address address,
|
|
|
|
acpi_size length, char *name);
|
ACPICA: fix leak of acpi_os_validate_address
http://bugzilla.kernel.org/show_bug.cgi?id=13620
If the dynamic region is created and added to resource list over and over again,
it has the potential to be a memory leak by growing the list every time.
This patch fixes the memory leak, as below
1) add a new field "count" to struct acpi_res_list.
When inserting, if the region(addr, len) is already in the resource
list, we just increase "count", otherwise, the region is inserted
with count=1.
When deleting, the "count" is decreased, if it's decreased to 0,
the region is deleted from the resource list.
With "count", the region with same address and length can only be
inserted to the resource list once, so prevent potential memory leak.
2) add a new function acpi_os_invalidate_address, which is called when
region is deleted.
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2009-08-13 04:43:27 +02:00
|
|
|
acpi_status
|
|
|
|
acpi_os_invalidate_address(u8 space_id, acpi_physical_address address,
|
|
|
|
acpi_size length);
|
2009-07-28 00:42:38 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
u64 acpi_os_get_timer(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_os_signal(u32 function, void *info);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Debug print routines
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
void ACPI_INTERNAL_VAR_XFACE acpi_os_printf(const char *format, ...);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_os_vprintf(const char *format, va_list args);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_os_redirect_output(void *destination);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
#ifdef ACPI_FUTURE_USAGE
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Debug input
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 acpi_os_get_line(char *buffer);
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Directory manipulation
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
void *acpi_os_open_directory(char *pathname,
|
|
|
|
char *wildcard_spec, char requested_file_type);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* requeste_file_type values */
|
|
|
|
|
|
|
|
#define REQUEST_FILE_ONLY 0
|
|
|
|
#define REQUEST_DIR_ONLY 1
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
char *acpi_os_get_next_filename(void *dir_handle);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_os_close_directory(void *dir_handle);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
#endif /* __ACPIOSXF_H__ */
|