2018-03-15 02:13:07 +03:00
/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
2005-04-17 02:20:36 +04:00
/******************************************************************************
*
2012-10-31 06:27:04 +04:00
* Name : acpiosxf . h - All interfaces to the OS Services Layer ( OSL ) . These
2005-04-17 02:20:36 +04:00
* interfaces must be implemented by OSL to interface the
* ACPI components to the host operating system .
*
2018-01-04 21:06:38 +03:00
* Copyright ( C ) 2000 - 2018 , Intel Corp .
2005-04-17 02:20:36 +04:00
*
2018-03-15 02:13:07 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-04-17 02:20:36 +04:00
# ifndef __ACPIOSXF_H__
# define __ACPIOSXF_H__
2012-10-02 21:01:25 +04:00
# include <acpi/platform/acenv.h>
# include <acpi/actypes.h>
2005-04-17 02:20:36 +04:00
2006-05-13 01:12:00 +04:00
/* Types for acpi_os_execute */
2005-04-17 02:20:36 +04:00
2006-05-13 01:12:00 +04:00
typedef enum {
OSL_GLOBAL_LOCK_HANDLER ,
OSL_NOTIFY_HANDLER ,
OSL_GPE_HANDLER ,
2015-10-19 05:25:50 +03:00
OSL_DEBUGGER_MAIN_THREAD ,
OSL_DEBUGGER_EXEC_THREAD ,
2006-05-13 01:12:00 +04:00
OSL_EC_POLL_HANDLER ,
2006-05-27 00:36:00 +04:00
OSL_EC_BURST_HANDLER
2006-05-13 01:12:00 +04:00
} acpi_execute_type ;
2005-04-17 02:20:36 +04: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 08:44:28 +04:00
struct acpi_signal_fatal_info {
u32 type ;
u32 code ;
u32 argument ;
2005-04-17 02:20:36 +04:00
} ;
/*
* OSL Initialization and shutdown primitives
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_initialize
2013-10-29 05:30:41 +04:00
acpi_status acpi_os_initialize ( void ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_terminate
2005-08-05 08:44:28 +04:00
acpi_status acpi_os_terminate ( void ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
/*
* ACPI Table interfaces
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_root_pointer
2007-02-02 19:48:18 +03:00
acpi_physical_address acpi_os_get_root_pointer ( void ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_predefined_override
2005-04-17 02:20:36 +04:00
acpi_status
2005-08-05 08:44:28 +04:00
acpi_os_predefined_override ( const struct acpi_predefined_names * init_val ,
2016-03-24 04:38:28 +03:00
acpi_string * new_val ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_table_override
2005-04-17 02:20:36 +04:00
acpi_status
2005-08-05 08:44:28 +04:00
acpi_os_table_override ( struct acpi_table_header * existing_table ,
struct acpi_table_header * * new_table ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_physical_table_override
2012-02-14 14:31:56 +04:00
acpi_status
acpi_os_physical_table_override ( struct acpi_table_header * existing_table ,
2016-05-05 07:57:53 +03:00
acpi_physical_address * new_address ,
2012-02-14 14:31:56 +04:00
u32 * new_table_length ) ;
2013-10-29 05:30:35 +04:00
# endif
2012-02-14 14:31:56 +04:00
2005-04-17 02:20:36 +04:00
/*
2006-06-24 01:04:00 +04:00
* Spinlock primitives
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_lock
2012-12-19 09:37:15 +04:00
acpi_status acpi_os_create_lock ( acpi_spinlock * out_handle ) ;
2011-07-06 22:44:25 +04:00
# endif
2011-03-23 12:26:34 +03:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_lock
2006-06-24 01:04:00 +04:00
void acpi_os_delete_lock ( acpi_spinlock handle ) ;
2013-10-29 05:30:35 +04:00
# endif
2006-06-24 01:04:00 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_acquire_lock
2006-06-24 01:04:00 +04:00
acpi_cpu_flags acpi_os_acquire_lock ( acpi_spinlock handle ) ;
2013-10-29 05:30:35 +04:00
# endif
2006-06-24 01:04:00 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_release_lock
2006-06-24 01:04:00 +04:00
void acpi_os_release_lock ( acpi_spinlock handle , acpi_cpu_flags flags ) ;
2013-10-29 05:30:35 +04:00
# endif
2006-06-24 01:04:00 +04:00
/*
* Semaphore primitives
2005-04-17 02:20:36 +04:00
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_semaphore
2005-04-17 02:20:36 +04:00
acpi_status
2005-08-05 08:44:28 +04:00
acpi_os_create_semaphore ( u32 max_units ,
2006-06-24 01:04:00 +04:00
u32 initial_units , acpi_semaphore * out_handle ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_semaphore
2006-06-24 01:04:00 +04:00
acpi_status acpi_os_delete_semaphore ( acpi_semaphore handle ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_wait_semaphore
2006-06-24 01:04:00 +04:00
acpi_status
acpi_os_wait_semaphore ( acpi_semaphore handle , u32 units , u16 timeout ) ;
2013-10-29 05:30:35 +04:00
# endif
2006-06-24 01:04:00 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_signal_semaphore
2006-06-24 01:04:00 +04:00
acpi_status acpi_os_signal_semaphore ( acpi_semaphore handle , u32 units ) ;
2013-10-29 05:30:35 +04:00
# endif
2006-06-24 01:04:00 +04:00
/*
2008-12-30 22:03:29 +03:00
* Mutex primitives . May be configured to use semaphores instead via
* ACPI_MUTEX_TYPE ( see platform / acenv . h )
2006-06-24 01:04:00 +04:00
*/
2008-12-30 22:03:29 +03:00
# if (ACPI_MUTEX_TYPE != ACPI_BINARY_SEMAPHORE)
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_mutex
2006-06-24 01:04:00 +04:00
acpi_status acpi_os_create_mutex ( acpi_mutex * out_handle ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_mutex
2006-06-24 01:04:00 +04:00
void acpi_os_delete_mutex ( acpi_mutex handle ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_acquire_mutex
2006-06-24 01:04:00 +04:00
acpi_status acpi_os_acquire_mutex ( acpi_mutex handle , u16 timeout ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_release_mutex
2006-06-24 01:04:00 +04:00
void acpi_os_release_mutex ( acpi_mutex handle ) ;
2008-12-30 22:03:29 +03:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
/*
* Memory allocation and mapping
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_allocate
2005-08-05 08:44:28 +04:00
void * acpi_os_allocate ( acpi_size size ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_allocate_zeroed
2013-10-29 05:29:27 +04:00
void * acpi_os_allocate_zeroed ( acpi_size size ) ;
2013-10-29 05:30:35 +04:00
# endif
2013-10-29 05:29:27 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_free
2012-12-20 05:07:26 +04:00
void acpi_os_free ( void * memory ) ;
2013-10-29 05:30:35 +04:00
# endif
2012-12-20 05:07:26 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_map_memory
2013-10-29 05:30:41 +04:00
void * acpi_os_map_memory ( acpi_physical_address where , acpi_size length ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_unmap_memory
2013-10-29 05:30:41 +04:00
void acpi_os_unmap_memory ( void * logical_address , acpi_size size ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_physical_address
2005-04-17 02:20:36 +04:00
acpi_status
2005-08-05 08:44:28 +04:00
acpi_os_get_physical_address ( void * logical_address ,
2016-05-05 07:57:53 +03:00
acpi_physical_address * physical_address ) ;
2005-04-17 02:20:36 +04: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 08:00:00 +04:00
/*
* Memory / Object Cache
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_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 08:00:00 +04:00
acpi_status
2005-08-05 08:44:28 +04:00
acpi_os_create_cache ( char * cache_name ,
u16 object_size ,
u16 max_depth , acpi_cache_t * * return_cache ) ;
2013-10-29 05:30:35 +04: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 08:00:00 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_cache
2005-08-05 08:44:28 +04:00
acpi_status acpi_os_delete_cache ( acpi_cache_t * cache ) ;
2013-10-29 05:30:35 +04: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 08:00:00 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_purge_cache
2005-08-05 08:44:28 +04:00
acpi_status acpi_os_purge_cache ( acpi_cache_t * cache ) ;
2013-10-29 05:30:35 +04: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 08:00:00 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_acquire_object
2005-08-05 08:44:28 +04:00
void * acpi_os_acquire_object ( acpi_cache_t * cache ) ;
2013-10-29 05:30:35 +04: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 08:00:00 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_release_object
2005-08-05 08:44:28 +04:00
acpi_status acpi_os_release_object ( acpi_cache_t * cache , void * object ) ;
2013-10-29 05:30:35 +04: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 08:00:00 +04:00
2005-04-17 02:20:36 +04:00
/*
* Interrupt handlers
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_install_interrupt_handler
2005-04-17 02:20:36 +04:00
acpi_status
2012-12-20 05:07:26 +04:00
acpi_os_install_interrupt_handler ( u32 interrupt_number ,
2005-08-05 08:44:28 +04:00
acpi_osd_handler service_routine ,
void * context ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_remove_interrupt_handler
2005-04-17 02:20:36 +04:00
acpi_status
2012-12-20 05:07:26 +04:00
acpi_os_remove_interrupt_handler ( u32 interrupt_number ,
acpi_osd_handler service_routine ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
/*
* Threads and Scheduling
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_thread_id
2006-10-03 08:00:00 +04:00
acpi_thread_id acpi_os_get_thread_id ( void ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_execute
2005-04-17 02:20:36 +04:00
acpi_status
2006-05-13 01:12:00 +04:00
acpi_os_execute ( acpi_execute_type type ,
acpi_osd_exec_callback function , void * context ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_wait_events_complete
2012-05-22 12:43:49 +04:00
void acpi_os_wait_events_complete ( void ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_sleep
2010-01-21 05:06:32 +03:00
void acpi_os_sleep ( u64 milliseconds ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_stall
2005-08-05 08:44:28 +04:00
void acpi_os_stall ( u32 microseconds ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
/*
* Platform and hardware - independent I / O interfaces
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_read_port
acpi_status acpi_os_read_port ( acpi_io_address address , u32 * value , u32 width ) ;
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_write_port
2005-08-05 08:44:28 +04:00
acpi_status acpi_os_write_port ( acpi_io_address address , u32 value , u32 width ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
/*
* Platform and hardware - independent physical memory interfaces
*/
2017-10-06 02:24:03 +03:00
int acpi_os_read_iomem ( void __iomem * virt_addr , u64 * value , u32 width ) ;
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_read_memory
2005-04-17 02:20:36 +04:00
acpi_status
2012-02-14 14:29:55 +04:00
acpi_os_read_memory ( acpi_physical_address address , u64 * value , u32 width ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_write_memory
2005-04-17 02:20:36 +04:00
acpi_status
2012-02-14 14:29:55 +04:00
acpi_os_write_memory ( acpi_physical_address address , u64 value , u32 width ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
/*
* Platform and hardware - independent PCI configuration space access
* Note : Can ' t use " Register " as a parameter , changed to " Reg " - -
* certain compilers complain .
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_read_pci_configuration
2005-04-17 02:20:36 +04:00
acpi_status
2005-08-05 08:44:28 +04:00
acpi_os_read_pci_configuration ( struct acpi_pci_id * pci_id ,
2010-08-06 04:57:53 +04:00
u32 reg , u64 * value , u32 width ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_write_pci_configuration
2005-04-17 02:20:36 +04:00
acpi_status
2005-08-05 08:44:28 +04:00
acpi_os_write_pci_configuration ( struct acpi_pci_id * pci_id ,
2010-01-21 05:06:32 +03:00
u32 reg , u64 value , u32 width ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
/*
* Miscellaneous
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_readable
u8 acpi_os_readable ( void * pointer , acpi_size length ) ;
# endif
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_writable
u8 acpi_os_writable ( void * pointer , acpi_size length ) ;
# endif
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_timer
2005-08-05 08:44:28 +04:00
u64 acpi_os_get_timer ( void ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_signal
2005-08-05 08:44:28 +04:00
acpi_status acpi_os_signal ( u32 function , void * info ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2016-12-28 10:28:49 +03:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_enter_sleep
acpi_status acpi_os_enter_sleep ( u8 sleep_state , u32 rega_value , u32 regb_value ) ;
# endif
2005-04-17 02:20:36 +04:00
/*
* Debug print routines
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_printf
2005-08-05 08:44:28 +04:00
void ACPI_INTERNAL_VAR_XFACE acpi_os_printf ( const char * format , . . . ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_vprintf
2005-08-05 08:44:28 +04:00
void acpi_os_vprintf ( const char * format , va_list args ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_redirect_output
2005-08-05 08:44:28 +04:00
void acpi_os_redirect_output ( void * destination ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
/*
2015-12-03 05:42:46 +03:00
* Debug IO
2005-04-17 02:20:36 +04:00
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_line
acpi_status acpi_os_get_line ( char * buffer , u32 buffer_length , u32 * bytes_read ) ;
# endif
2016-12-28 10:28:07 +03:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_initialize_debugger
acpi_status acpi_os_initialize_debugger ( void ) ;
2015-12-03 05:42:46 +03:00
# endif
2016-12-28 10:28:07 +03:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_terminate_debugger
void acpi_os_terminate_debugger ( void ) ;
2015-12-03 05:42:46 +03:00
# endif
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_wait_command_ready
acpi_status acpi_os_wait_command_ready ( void ) ;
# endif
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_notify_command_complete
acpi_status acpi_os_notify_command_complete ( void ) ;
# endif
2016-08-04 11:45:13 +03:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_trace_point
void
acpi_os_trace_point ( acpi_trace_event_type type ,
u8 begin , u8 * aml , char * pathname ) ;
# endif
2013-10-29 05:30:35 +04:00
/*
* Obtain ACPI table ( s )
*/
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_table_by_name
acpi_status
acpi_os_get_table_by_name ( char * signature ,
u32 instance ,
struct acpi_table_header * * table ,
2016-05-05 07:57:53 +03:00
acpi_physical_address * address ) ;
2013-10-29 05:30:35 +04:00
# endif
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_table_by_index
acpi_status
acpi_os_get_table_by_index ( u32 index ,
struct acpi_table_header * * table ,
2016-05-05 07:57:53 +03:00
u32 * instance , acpi_physical_address * address ) ;
2013-10-29 05:30:35 +04:00
# endif
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_table_by_address
acpi_status
acpi_os_get_table_by_address ( acpi_physical_address address ,
struct acpi_table_header * * table ) ;
2005-04-17 02:20:36 +04:00
# endif
/*
* Directory manipulation
*/
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_open_directory
2005-08-05 08:44:28 +04:00
void * acpi_os_open_directory ( char * pathname ,
char * wildcard_spec , char requested_file_type ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
/* requeste_file_type values */
# define REQUEST_FILE_ONLY 0
# define REQUEST_DIR_ONLY 1
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_next_filename
2005-08-05 08:44:28 +04:00
char * acpi_os_get_next_filename ( void * dir_handle ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2013-10-29 05:30:35 +04:00
# ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_close_directory
2005-08-05 08:44:28 +04:00
void acpi_os_close_directory ( void * dir_handle ) ;
2013-10-29 05:30:35 +04:00
# endif
2005-04-17 02:20:36 +04:00
2005-08-05 08:44:28 +04:00
# endif /* __ACPIOSXF_H__ */