More cleaning ...
[linux-2.6/linux-mips.git] / include / acpi / acconfig.h
blob329cdaafe22cfbe80a006adf99d6502187c3c4cd
1 /******************************************************************************
3 * Name: acconfig.h - Global configuration constants
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2003, R. Byron Moore
9 * All rights reserved.
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.
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.
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.
44 #ifndef _ACCONFIG_H
45 #define _ACCONFIG_H
48 /******************************************************************************
50 * Configuration options
52 *****************************************************************************/
55 * ACPI_DEBUG_OUTPUT - This switch enables all the debug facilities of the
56 * ACPI subsystem. This includes the DEBUG_PRINT output
57 * statements. When disabled, all DEBUG_PRINT
58 * statements are compiled out.
60 * ACPI_APPLICATION - Use this switch if the subsystem is going to be run
61 * at the application level.
65 /* Version string */
67 #define ACPI_CA_VERSION 0x20030619
69 /* Maximum objects in the various object caches */
71 #define ACPI_MAX_STATE_CACHE_DEPTH 64 /* State objects for stacks */
72 #define ACPI_MAX_PARSE_CACHE_DEPTH 96 /* Parse tree objects */
73 #define ACPI_MAX_EXTPARSE_CACHE_DEPTH 64 /* Parse tree objects */
74 #define ACPI_MAX_OBJECT_CACHE_DEPTH 64 /* Interpreter operand objects */
75 #define ACPI_MAX_WALK_CACHE_DEPTH 4 /* Objects for parse tree walks */
78 * Should the subystem abort the loading of an ACPI table if the
79 * table checksum is incorrect?
81 #define ACPI_CHECKSUM_ABORT FALSE
84 /******************************************************************************
86 * Subsystem Constants
88 *****************************************************************************/
90 /* Version of ACPI supported */
92 #define ACPI_CA_SUPPORT_LEVEL 2
94 /* String size constants */
96 #define ACPI_MAX_STRING_LENGTH 512
97 #define ACPI_PATHNAME_MAX 256 /* A full namespace pathname */
99 /* Maximum count for a semaphore object */
101 #define ACPI_MAX_SEMAPHORE_COUNT 256
103 /* Max reference count (for debug only) */
105 #define ACPI_MAX_REFERENCE_COUNT 0x400
107 /* Size of cached memory mapping for system memory operation region */
109 #define ACPI_SYSMEM_REGION_WINDOW_SIZE 4096
112 /******************************************************************************
114 * ACPI Specification constants (Do not change unless the specification changes)
116 *****************************************************************************/
118 /* Number of distinct GPE register blocks and register width */
120 #define ACPI_MAX_GPE_BLOCKS 2
121 #define ACPI_GPE_REGISTER_WIDTH 8
124 * Method info (in WALK_STATE), containing local variables and argumetns
126 #define ACPI_METHOD_NUM_LOCALS 8
127 #define ACPI_METHOD_MAX_LOCAL 7
129 #define ACPI_METHOD_NUM_ARGS 7
130 #define ACPI_METHOD_MAX_ARG 6
132 /* Maximum length of resulting string when converting from a buffer */
134 #define ACPI_MAX_STRING_CONVERSION 200
136 /* Length of _HID, _UID, and _CID values */
138 #define ACPI_DEVICE_ID_LENGTH 0x09
139 #define ACPI_MAX_CID_LENGTH 48
142 * Operand Stack (in WALK_STATE), Must be large enough to contain METHOD_MAX_ARG
144 #define ACPI_OBJ_NUM_OPERANDS 8
145 #define ACPI_OBJ_MAX_OPERAND 7
147 /* Names within the namespace are 4 bytes long */
149 #define ACPI_NAME_SIZE 4
150 #define ACPI_PATH_SEGMENT_LENGTH 5 /* 4 chars for name + 1 char for separator */
151 #define ACPI_PATH_SEPARATOR '.'
153 /* Constants used in searching for the RSDP in low memory */
155 #define ACPI_LO_RSDP_WINDOW_BASE 0 /* Physical Address */
156 #define ACPI_HI_RSDP_WINDOW_BASE 0xE0000 /* Physical Address */
157 #define ACPI_LO_RSDP_WINDOW_SIZE 0x400
158 #define ACPI_HI_RSDP_WINDOW_SIZE 0x20000
159 #define ACPI_RSDP_SCAN_STEP 16
161 /* Operation regions */
163 #define ACPI_NUM_PREDEFINED_REGIONS 8
164 #define ACPI_USER_REGION_BEGIN 0x80
166 /* Maximum space_ids for Operation Regions */
168 #define ACPI_MAX_ADDRESS_SPACE 255
170 /* Array sizes. Used for range checking also */
172 #define ACPI_NUM_ACCESS_TYPES 6
173 #define ACPI_NUM_UPDATE_RULES 3
174 #define ACPI_NUM_LOCK_RULES 2
175 #define ACPI_NUM_MATCH_OPS 6
176 #define ACPI_NUM_OPCODES 256
177 #define ACPI_NUM_FIELD_NAMES 2
179 /* RSDP checksums */
181 #define ACPI_RSDP_CHECKSUM_LENGTH 20
182 #define ACPI_RSDP_XCHECKSUM_LENGTH 36
184 /* SMBus bidirectional buffer size */
186 #define ACPI_SMBUS_BUFFER_SIZE 34
189 /******************************************************************************
191 * ACPI AML Debugger
193 *****************************************************************************/
195 #define ACPI_DEBUGGER_MAX_ARGS 8 /* Must be max method args + 1 */
197 #define ACPI_DEBUGGER_COMMAND_PROMPT '-'
198 #define ACPI_DEBUGGER_EXECUTE_PROMPT '%'
201 #endif /* _ACCONFIG_H */