Fixed compatibility of output.
[AROS.git] / arch / all-pc / acpica / source / components / utilities / utalloc.c
blob51eee9719d66fe2181a314416df88a9efd06ef4c
1 /******************************************************************************
3 * Module Name: utalloc - local memory allocation routines
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2013, Intel Corp.
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 #define __UTALLOC_C__
46 #include "acpi.h"
47 #include "accommon.h"
48 #include "acdebug.h"
50 #define _COMPONENT ACPI_UTILITIES
51 ACPI_MODULE_NAME ("utalloc")
54 #if !defined (USE_NATIVE_ALLOCATE_ZEROED)
55 /*******************************************************************************
57 * FUNCTION: AcpiOsAllocateZeroed
59 * PARAMETERS: Size - Size of the allocation
61 * RETURN: Address of the allocated memory on success, NULL on failure.
63 * DESCRIPTION: Subsystem equivalent of calloc. Allocate and zero memory.
64 * This is the default implementation. Can be overridden via the
65 * USE_NATIVE_ALLOCATE_ZEROED flag.
67 ******************************************************************************/
69 void *
70 AcpiOsAllocateZeroed (
71 ACPI_SIZE Size)
73 void *Allocation;
76 ACPI_FUNCTION_ENTRY ();
79 Allocation = AcpiOsAllocate (Size);
80 if (Allocation)
82 /* Clear the memory block */
84 ACPI_MEMSET (Allocation, 0, Size);
87 return (Allocation);
90 #endif /* !USE_NATIVE_ALLOCATE_ZEROED */
93 /*******************************************************************************
95 * FUNCTION: AcpiUtCreateCaches
97 * PARAMETERS: None
99 * RETURN: Status
101 * DESCRIPTION: Create all local caches
103 ******************************************************************************/
105 ACPI_STATUS
106 AcpiUtCreateCaches (
107 void)
109 ACPI_STATUS Status;
112 /* Object Caches, for frequently used objects */
114 Status = AcpiOsCreateCache ("Acpi-Namespace", sizeof (ACPI_NAMESPACE_NODE),
115 ACPI_MAX_NAMESPACE_CACHE_DEPTH, &AcpiGbl_NamespaceCache);
116 if (ACPI_FAILURE (Status))
118 return (Status);
121 Status = AcpiOsCreateCache ("Acpi-State", sizeof (ACPI_GENERIC_STATE),
122 ACPI_MAX_STATE_CACHE_DEPTH, &AcpiGbl_StateCache);
123 if (ACPI_FAILURE (Status))
125 return (Status);
128 Status = AcpiOsCreateCache ("Acpi-Parse", sizeof (ACPI_PARSE_OBJ_COMMON),
129 ACPI_MAX_PARSE_CACHE_DEPTH, &AcpiGbl_PsNodeCache);
130 if (ACPI_FAILURE (Status))
132 return (Status);
135 Status = AcpiOsCreateCache ("Acpi-ParseExt", sizeof (ACPI_PARSE_OBJ_NAMED),
136 ACPI_MAX_EXTPARSE_CACHE_DEPTH, &AcpiGbl_PsNodeExtCache);
137 if (ACPI_FAILURE (Status))
139 return (Status);
142 Status = AcpiOsCreateCache ("Acpi-Operand", sizeof (ACPI_OPERAND_OBJECT),
143 ACPI_MAX_OBJECT_CACHE_DEPTH, &AcpiGbl_OperandCache);
144 if (ACPI_FAILURE (Status))
146 return (Status);
150 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
152 /* Memory allocation lists */
154 Status = AcpiUtCreateList ("Acpi-Global", 0,
155 &AcpiGbl_GlobalList);
156 if (ACPI_FAILURE (Status))
158 return (Status);
161 Status = AcpiUtCreateList ("Acpi-Namespace", sizeof (ACPI_NAMESPACE_NODE),
162 &AcpiGbl_NsNodeList);
163 if (ACPI_FAILURE (Status))
165 return (Status);
167 #endif
169 return (AE_OK);
173 /*******************************************************************************
175 * FUNCTION: AcpiUtDeleteCaches
177 * PARAMETERS: None
179 * RETURN: Status
181 * DESCRIPTION: Purge and delete all local caches
183 ******************************************************************************/
185 ACPI_STATUS
186 AcpiUtDeleteCaches (
187 void)
189 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
190 char Buffer[7];
192 if (AcpiGbl_DisplayFinalMemStats)
194 ACPI_STRCPY (Buffer, "MEMORY");
195 (void) AcpiDbDisplayStatistics (Buffer);
197 #endif
199 (void) AcpiOsDeleteCache (AcpiGbl_NamespaceCache);
200 AcpiGbl_NamespaceCache = NULL;
202 (void) AcpiOsDeleteCache (AcpiGbl_StateCache);
203 AcpiGbl_StateCache = NULL;
205 (void) AcpiOsDeleteCache (AcpiGbl_OperandCache);
206 AcpiGbl_OperandCache = NULL;
208 (void) AcpiOsDeleteCache (AcpiGbl_PsNodeCache);
209 AcpiGbl_PsNodeCache = NULL;
211 (void) AcpiOsDeleteCache (AcpiGbl_PsNodeExtCache);
212 AcpiGbl_PsNodeExtCache = NULL;
215 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
217 /* Debug only - display leftover memory allocation, if any */
219 AcpiUtDumpAllocations (ACPI_UINT32_MAX, NULL);
221 /* Free memory lists */
223 AcpiOsFree (AcpiGbl_GlobalList);
224 AcpiGbl_GlobalList = NULL;
226 AcpiOsFree (AcpiGbl_NsNodeList);
227 AcpiGbl_NsNodeList = NULL;
228 #endif
230 return (AE_OK);
234 /*******************************************************************************
236 * FUNCTION: AcpiUtValidateBuffer
238 * PARAMETERS: Buffer - Buffer descriptor to be validated
240 * RETURN: Status
242 * DESCRIPTION: Perform parameter validation checks on an ACPI_BUFFER
244 ******************************************************************************/
246 ACPI_STATUS
247 AcpiUtValidateBuffer (
248 ACPI_BUFFER *Buffer)
251 /* Obviously, the structure pointer must be valid */
253 if (!Buffer)
255 return (AE_BAD_PARAMETER);
258 /* Special semantics for the length */
260 if ((Buffer->Length == ACPI_NO_BUFFER) ||
261 (Buffer->Length == ACPI_ALLOCATE_BUFFER) ||
262 (Buffer->Length == ACPI_ALLOCATE_LOCAL_BUFFER))
264 return (AE_OK);
267 /* Length is valid, the buffer pointer must be also */
269 if (!Buffer->Pointer)
271 return (AE_BAD_PARAMETER);
274 return (AE_OK);
278 /*******************************************************************************
280 * FUNCTION: AcpiUtInitializeBuffer
282 * PARAMETERS: Buffer - Buffer to be validated
283 * RequiredLength - Length needed
285 * RETURN: Status
287 * DESCRIPTION: Validate that the buffer is of the required length or
288 * allocate a new buffer. Returned buffer is always zeroed.
290 ******************************************************************************/
292 ACPI_STATUS
293 AcpiUtInitializeBuffer (
294 ACPI_BUFFER *Buffer,
295 ACPI_SIZE RequiredLength)
297 ACPI_SIZE InputBufferLength;
300 /* Parameter validation */
302 if (!Buffer || !RequiredLength)
304 return (AE_BAD_PARAMETER);
308 * Buffer->Length is used as both an input and output parameter. Get the
309 * input actual length and set the output required buffer length.
311 InputBufferLength = Buffer->Length;
312 Buffer->Length = RequiredLength;
315 * The input buffer length contains the actual buffer length, or the type
316 * of buffer to be allocated by this routine.
318 switch (InputBufferLength)
320 case ACPI_NO_BUFFER:
322 /* Return the exception (and the required buffer length) */
324 return (AE_BUFFER_OVERFLOW);
326 case ACPI_ALLOCATE_BUFFER:
328 /* Allocate a new buffer */
330 Buffer->Pointer = AcpiOsAllocate (RequiredLength);
331 break;
333 case ACPI_ALLOCATE_LOCAL_BUFFER:
335 /* Allocate a new buffer with local interface to allow tracking */
337 Buffer->Pointer = ACPI_ALLOCATE (RequiredLength);
338 break;
340 default:
342 /* Existing buffer: Validate the size of the buffer */
344 if (InputBufferLength < RequiredLength)
346 return (AE_BUFFER_OVERFLOW);
348 break;
351 /* Validate allocation from above or input buffer pointer */
353 if (!Buffer->Pointer)
355 return (AE_NO_MEMORY);
358 /* Have a valid buffer, clear it */
360 ACPI_MEMSET (Buffer->Pointer, 0, RequiredLength);
361 return (AE_OK);