Deleted Added
full compact
acconfig.h (249663) acconfig.h (272444)
1/******************************************************************************
2 *
3 * Name: acconfig.h - Global configuration constants
4 *
5 *****************************************************************************/
6
7/*
1/******************************************************************************
2 *
3 * Name: acconfig.h - Global configuration constants
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2013, Intel Corp.
8 * Copyright (C) 2000 - 2014, 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.

--- 62 unchanged lines hidden (view full) ---

79#define ACPI_MAX_EXTPARSE_CACHE_DEPTH 96 /* Parse tree objects */
80#define ACPI_MAX_OBJECT_CACHE_DEPTH 96 /* Interpreter operand objects */
81#define ACPI_MAX_NAMESPACE_CACHE_DEPTH 96 /* Namespace objects */
82
83/*
84 * Should the subsystem abort the loading of an ACPI table if the
85 * table checksum is incorrect?
86 */
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.

--- 62 unchanged lines hidden (view full) ---

79#define ACPI_MAX_EXTPARSE_CACHE_DEPTH 96 /* Parse tree objects */
80#define ACPI_MAX_OBJECT_CACHE_DEPTH 96 /* Interpreter operand objects */
81#define ACPI_MAX_NAMESPACE_CACHE_DEPTH 96 /* Namespace objects */
82
83/*
84 * Should the subsystem abort the loading of an ACPI table if the
85 * table checksum is incorrect?
86 */
87#ifndef ACPI_CHECKSUM_ABORT
87#define ACPI_CHECKSUM_ABORT FALSE
88#define ACPI_CHECKSUM_ABORT FALSE
89#endif
88
89/*
90 * Generate a version of ACPICA that only supports "reduced hardware"
91 * platforms (as defined in ACPI 5.0). Set to TRUE to generate a specialized
92 * version of ACPICA that ONLY supports the ACPI 5.0 "reduced hardware"
93 * model. In other words, no ACPI hardware is supported.
94 *
95 * If TRUE, this means no support for the following:
96 * PM Event and Control registers
97 * SCI interrupt (and handler)
98 * Fixed Events
99 * General Purpose Events (GPEs)
100 * Global Lock
101 * ACPI PM timer
102 * FACS table (Waking vectors and Global Lock)
103 */
90
91/*
92 * Generate a version of ACPICA that only supports "reduced hardware"
93 * platforms (as defined in ACPI 5.0). Set to TRUE to generate a specialized
94 * version of ACPICA that ONLY supports the ACPI 5.0 "reduced hardware"
95 * model. In other words, no ACPI hardware is supported.
96 *
97 * If TRUE, this means no support for the following:
98 * PM Event and Control registers
99 * SCI interrupt (and handler)
100 * Fixed Events
101 * General Purpose Events (GPEs)
102 * Global Lock
103 * ACPI PM timer
104 * FACS table (Waking vectors and Global Lock)
105 */
106#ifndef ACPI_REDUCED_HARDWARE
104#define ACPI_REDUCED_HARDWARE FALSE
107#define ACPI_REDUCED_HARDWARE FALSE
108#endif
105
106
107/******************************************************************************
108 *
109 * Subsystem Constants
110 *
111 *****************************************************************************/
112

--- 101 unchanged lines hidden (view full) ---

214/* _SxD and _SxW control methods */
215
216#define ACPI_NUM_SxD_METHODS 4
217#define ACPI_NUM_SxW_METHODS 5
218
219
220/******************************************************************************
221 *
109
110
111/******************************************************************************
112 *
113 * Subsystem Constants
114 *
115 *****************************************************************************/
116

--- 101 unchanged lines hidden (view full) ---

218/* _SxD and _SxW control methods */
219
220#define ACPI_NUM_SxD_METHODS 4
221#define ACPI_NUM_SxW_METHODS 5
222
223
224/******************************************************************************
225 *
226 * Miscellaneous constants
227 *
228 *****************************************************************************/
229
230/* UUID constants */
231
232#define UUID_BUFFER_LENGTH 16 /* Length of UUID in memory */
233#define UUID_STRING_LENGTH 36 /* Total length of a UUID string */
234
235/* Positions for required hyphens (dashes) in UUID strings */
236
237#define UUID_HYPHEN1_OFFSET 8
238#define UUID_HYPHEN2_OFFSET 13
239#define UUID_HYPHEN3_OFFSET 18
240#define UUID_HYPHEN4_OFFSET 23
241
242
243/******************************************************************************
244 *
222 * ACPI AML Debugger
223 *
224 *****************************************************************************/
225
226#define ACPI_DEBUGGER_MAX_ARGS ACPI_METHOD_NUM_ARGS + 4 /* Max command line arguments */
227#define ACPI_DB_LINE_BUFFER_SIZE 512
228
229#define ACPI_DEBUGGER_COMMAND_PROMPT '-'
230#define ACPI_DEBUGGER_EXECUTE_PROMPT '%'
231
232
233#endif /* _ACCONFIG_H */
245 * ACPI AML Debugger
246 *
247 *****************************************************************************/
248
249#define ACPI_DEBUGGER_MAX_ARGS ACPI_METHOD_NUM_ARGS + 4 /* Max command line arguments */
250#define ACPI_DB_LINE_BUFFER_SIZE 512
251
252#define ACPI_DEBUGGER_COMMAND_PROMPT '-'
253#define ACPI_DEBUGGER_EXECUTE_PROMPT '%'
254
255
256#endif /* _ACCONFIG_H */