[PRINTING]
[reactos.git] / reactos / drivers / bus / acpi / acpica / include / platform / acwin.h
1 /******************************************************************************
2 *
3 * Name: acwin.h - OS specific defines, etc.
4 *
5 *****************************************************************************/
6
7 /*
8 * Copyright (C) 2000 - 2016, Intel Corp.
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44 #ifndef __ACWIN_H__
45 #define __ACWIN_H__
46
47 /*! [Begin] no source code translation (Keep the include) */
48
49 /* Windows uses VC */
50 #ifdef _MSC_VER
51 #include "acmsvc.h"
52 #endif
53 #ifdef __REACTOS__
54 #if !defined(_MSC_VER) && defined(__GNUC__)
55 #include "acgcc.h"
56 #endif
57
58 #define ACPI_USE_SYSTEM_INTTYPES
59 #endif /* __REACTOS __ */
60 /*! [End] no source code translation !*/
61
62 #define ACPI_MACHINE_WIDTH 32
63
64 #define ACPI_USE_STANDARD_HEADERS
65
66 #ifdef ACPI_DEFINE_ALTERNATE_TYPES
67 /*
68 * Types used only in (Linux) translated source, defined here to enable
69 * cross-platform compilation (i.e., generate the Linux code on Windows,
70 * for test purposes only)
71 */
72 typedef int s32;
73 typedef unsigned char u8;
74 typedef unsigned short u16;
75 typedef unsigned int u32;
76 typedef COMPILER_DEPENDENT_UINT64 u64;
77 #endif
78
79
80 /*
81 * Handle platform- and compiler-specific assembly language differences.
82 *
83 * Notes:
84 * 1) Interrupt 3 is used to break into a debugger
85 * 2) Interrupts are turned off during ACPI register setup
86 */
87
88 /*! [Begin] no source code translation */
89
90 #ifndef __REACTOS__
91 #ifdef ACPI_APPLICATION
92 #define ACPI_FLUSH_CPU_CACHE()
93 #else
94 #define ACPI_FLUSH_CPU_CACHE() __asm {WBINVD}
95 #endif
96 #endif /* __REACTOS__ */
97
98 #ifdef _DEBUG
99 #define ACPI_SIMPLE_RETURN_MACROS
100 #endif
101
102 /*! [End] no source code translation !*/
103
104 #ifndef __REACTOS__
105 /*
106 * Global Lock acquire/release code
107 *
108 * Note: Handles case where the FACS pointer is null
109 */
110 #define ACPI_ACQUIRE_GLOBAL_LOCK(FacsPtr, Acq) __asm \
111 { \
112 __asm mov eax, 0xFF \
113 __asm mov ecx, FacsPtr \
114 __asm or ecx, ecx \
115 __asm jz exit_acq \
116 __asm lea ecx, [ecx].GlobalLock \
117 \
118 __asm acq10: \
119 __asm mov eax, [ecx] \
120 __asm mov edx, eax \
121 __asm and edx, 0xFFFFFFFE \
122 __asm bts edx, 1 \
123 __asm adc edx, 0 \
124 __asm lock cmpxchg dword ptr [ecx], edx \
125 __asm jnz acq10 \
126 \
127 __asm cmp dl, 3 \
128 __asm sbb eax, eax \
129 \
130 __asm exit_acq: \
131 __asm mov Acq, al \
132 }
133
134 #define ACPI_RELEASE_GLOBAL_LOCK(FacsPtr, Pnd) __asm \
135 { \
136 __asm xor eax, eax \
137 __asm mov ecx, FacsPtr \
138 __asm or ecx, ecx \
139 __asm jz exit_rel \
140 __asm lea ecx, [ecx].GlobalLock \
141 \
142 __asm Rel10: \
143 __asm mov eax, [ecx] \
144 __asm mov edx, eax \
145 __asm and edx, 0xFFFFFFFC \
146 __asm lock cmpxchg dword ptr [ecx], edx \
147 __asm jnz Rel10 \
148 \
149 __asm cmp dl, 3 \
150 __asm and eax, 1 \
151 \
152 __asm exit_rel: \
153 __asm mov Pnd, al \
154 }
155 #endif /* __REACTOS__ */
156
157 #endif /* __ACWIN_H__ */