1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #ifndef _ACSOLARIS_H_
27 #define	_ACSOLARIS_H_
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
33 #include <sys/types.h>
34 #include <sys/sunddi.h>
35 #include <sys/varargs.h>
36 #include <sys/cpu.h>
37 #include <sys/thread.h>
38 
39 #define	strtoul simple_strtoul
40 
41 uint32_t __acpi_acquire_global_lock(void *);
42 uint32_t __acpi_release_global_lock(void *);
43 void	 __acpi_wbinvd(void);
44 
45 #ifdef	_ILP32
46 #define	ACPI_MACHINE_WIDTH	32
47 #elif	defined(_LP64)
48 #define	ACPI_MACHINE_WIDTH	64
49 #endif
50 
51 #define	COMPILER_DEPENDENT_INT64	int64_t
52 #define	COMPILER_DEPENDENT_UINT64	uint64_t
53 
54 #define	ACPI_THREAD_ID		kthread_t *
55 
56 #define	ACPI_PRINTF_LIKE_FUNC
57 #define	ACPI_UNUSED_VAR
58 #define	ACPI_USE_NATIVE_DIVIDE
59 #define	ACPI_FLUSH_CPU_CACHE()	(__acpi_wbinvd())
60 
61 #define	ACPI_DISASSEMBLER
62 #define	ACPI_PACKED_POINTERS_NOT_SUPPORTED
63 
64 /*
65  * Calling conventions:
66  *
67  * ACPI_SYSTEM_XFACE        - Interfaces to host OS (handlers, threads)
68  * ACPI_EXTERNAL_XFACE      - External ACPI interfaces
69  * ACPI_INTERNAL_XFACE      - Internal ACPI interfaces
70  * ACPI_INTERNAL_VAR_XFACE  - Internal variable-parameter list interfaces
71  */
72 #define	ACPI_SYSTEM_XFACE
73 #define	ACPI_EXTERNAL_XFACE
74 #define	ACPI_INTERNAL_XFACE
75 #define	ACPI_INTERNAL_VAR_XFACE
76 
77 #define	ACPI_ASM_MACROS
78 #define	BREAKPOINT3
79 #define	ACPI_DISABLE_IRQS()	cli()
80 #define	ACPI_ENABLE_IRQS()	sti()
81 #define	ACPI_ACQUIRE_GLOBAL_LOCK(Facs, Acq)	\
82 	((Acq) = __acpi_acquire_global_lock(Facs))
83 
84 #define	ACPI_RELEASE_GLOBAL_LOCK(Facs, Acq)	\
85 	((Acq) = __acpi_release_global_lock(Facs))
86 
87 #ifdef __cplusplus
88 }
89 #endif
90 
91 #endif /* _ACSOLARIS_H_ */
92