2 /******************************************************************************
4 * Name: acpiosxf.h - All interfaces to the OS Services Layer (OSL). These
5 * interfaces must be implemented by OSL to interface the
6 * ACPI components to the host operating system.
8 *****************************************************************************/
12 * Copyright (C) 2000 - 2005, R. Byron Moore
13 * All rights reserved.
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions, and the following disclaimer,
20 * without modification.
21 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
22 * substantially similar to the "NO WARRANTY" disclaimer below
23 * ("Disclaimer") and any redistribution must be conditioned upon
24 * including a substantially similar Disclaimer requirement for further
25 * binary redistribution.
26 * 3. Neither the names of the above-listed copyright holders nor the names
27 * of any contributors may be used to endorse or promote products derived
28 * from this software without specific prior written permission.
30 * Alternatively, this software may be distributed under the terms of the
31 * GNU General Public License ("GPL") version 2 as published by the Free
32 * Software Foundation.
35 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
38 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
40 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
41 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
42 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
43 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
44 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
45 * POSSIBILITY OF SUCH DAMAGES.
48 #ifndef __ACPIOSXF_H__
49 #define __ACPIOSXF_H__
51 #include "platform/acenv.h"
55 /* Priorities for acpi_os_queue_for_execution */
57 #define OSD_PRIORITY_GPE 1
58 #define OSD_PRIORITY_HIGH 2
59 #define OSD_PRIORITY_MED 3
60 #define OSD_PRIORITY_LO 4
62 #define ACPI_NO_UNIT_LIMIT ((u32) -1)
63 #define ACPI_MUTEX_SEM 1
66 /* Functions for acpi_os_signal */
68 #define ACPI_SIGNAL_FATAL 0
69 #define ACPI_SIGNAL_BREAKPOINT 1
71 struct acpi_signal_fatal_info
80 * OSL Initialization and shutdown primitives
93 * ACPI Table interfaces
97 acpi_os_get_root_pointer (
99 struct acpi_pointer
*address
);
102 acpi_os_predefined_override (
103 const struct acpi_predefined_names
*init_val
,
104 acpi_string
*new_val
);
107 acpi_os_table_override (
108 struct acpi_table_header
*existing_table
,
109 struct acpi_table_header
**new_table
);
113 * Synchronization primitives
117 acpi_os_create_semaphore (
120 acpi_handle
*out_handle
);
123 acpi_os_delete_semaphore (
127 acpi_os_wait_semaphore (
133 acpi_os_signal_semaphore (
138 acpi_os_create_lock (
139 acpi_handle
*out_handle
);
142 acpi_os_delete_lock (
146 acpi_os_acquire_lock (
151 acpi_os_release_lock (
157 * Memory allocation and mapping
170 acpi_physical_address physical_address
,
172 void __iomem
**logical_address
);
175 acpi_os_unmap_memory (
176 void __iomem
*logical_address
,
179 #ifdef ACPI_FUTURE_USAGE
181 acpi_os_get_physical_address (
182 void *logical_address
,
183 acpi_physical_address
*physical_address
);
192 acpi_os_install_interrupt_handler (
194 acpi_osd_handler service_routine
,
198 acpi_os_remove_interrupt_handler (
200 acpi_osd_handler service_routine
);
204 * Threads and Scheduling
208 acpi_os_get_thread_id (
212 acpi_os_queue_for_execution (
214 acpi_osd_exec_callback function
,
218 acpi_os_wait_events_complete(
222 acpi_os_wait_events_complete (
227 acpi_integer milliseconds
);
235 * Platform and hardware-independent I/O interfaces
240 acpi_io_address address
,
246 acpi_io_address address
,
252 * Platform and hardware-independent physical memory interfaces
256 acpi_os_read_memory (
257 acpi_physical_address address
,
262 acpi_os_write_memory (
263 acpi_physical_address address
,
269 * Platform and hardware-independent PCI configuration space access
270 * Note: Can't use "Register" as a parameter, changed to "Reg" --
271 * certain compilers complain.
275 acpi_os_read_pci_configuration (
276 struct acpi_pci_id
*pci_id
,
282 acpi_os_write_pci_configuration (
283 struct acpi_pci_id
*pci_id
,
289 * Interim function needed for PCI IRQ routing
293 acpi_os_derive_pci_id(
296 struct acpi_pci_id
**pci_id
);
307 #ifdef ACPI_FUTURE_USAGE
324 * Debug print routines
327 void ACPI_INTERNAL_VAR_XFACE
338 acpi_os_redirect_output (
346 #ifdef ACPI_FUTURE_USAGE
354 * Directory manipulation
358 acpi_os_open_directory (
361 char requested_file_type
);
363 /* requeste_file_type values */
365 #define REQUEST_FILE_ONLY 0
366 #define REQUEST_DIR_ONLY 1
370 acpi_os_get_next_filename (
374 acpi_os_close_directory (
383 void *failed_assertion
,
389 #endif /* __ACPIOSXF_H__ */