dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / uts / intel / io / acpica / utilities / utalloc.c
blobbb29586e89dd0ec3c5de190d4a5cce0d8409007c
1 /******************************************************************************
3 * Module Name: utalloc - local memory allocation routines
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2016, 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 #include "acpi.h"
45 #include "accommon.h"
46 #include "acdebug.h"
48 #define _COMPONENT ACPI_UTILITIES
49 ACPI_MODULE_NAME ("utalloc")
52 #if !defined (USE_NATIVE_ALLOCATE_ZEROED)
53 /*******************************************************************************
55 * FUNCTION: AcpiOsAllocateZeroed
57 * PARAMETERS: Size - Size of the allocation
59 * RETURN: Address of the allocated memory on success, NULL on failure.
61 * DESCRIPTION: Subsystem equivalent of calloc. Allocate and zero memory.
62 * This is the default implementation. Can be overridden via the
63 * USE_NATIVE_ALLOCATE_ZEROED flag.
65 ******************************************************************************/
67 void *
68 AcpiOsAllocateZeroed (
69 ACPI_SIZE Size)
71 void *Allocation;
74 ACPI_FUNCTION_ENTRY ();
77 Allocation = AcpiOsAllocate (Size);
78 if (Allocation)
80 /* Clear the memory block */
82 memset (Allocation, 0, Size);
85 return (Allocation);
88 #endif /* !USE_NATIVE_ALLOCATE_ZEROED */
91 /*******************************************************************************
93 * FUNCTION: AcpiUtCreateCaches
95 * PARAMETERS: None
97 * RETURN: Status
99 * DESCRIPTION: Create all local caches
101 ******************************************************************************/
103 ACPI_STATUS
104 AcpiUtCreateCaches (
105 void)
107 ACPI_STATUS Status;
110 /* Object Caches, for frequently used objects */
112 Status = AcpiOsCreateCache ("Acpi-Namespace", sizeof (ACPI_NAMESPACE_NODE),
113 ACPI_MAX_NAMESPACE_CACHE_DEPTH, &AcpiGbl_NamespaceCache);
114 if (ACPI_FAILURE (Status))
116 return (Status);
119 Status = AcpiOsCreateCache ("Acpi-State", sizeof (ACPI_GENERIC_STATE),
120 ACPI_MAX_STATE_CACHE_DEPTH, &AcpiGbl_StateCache);
121 if (ACPI_FAILURE (Status))
123 return (Status);
126 Status = AcpiOsCreateCache ("Acpi-Parse", sizeof (ACPI_PARSE_OBJ_COMMON),
127 ACPI_MAX_PARSE_CACHE_DEPTH, &AcpiGbl_PsNodeCache);
128 if (ACPI_FAILURE (Status))
130 return (Status);
133 Status = AcpiOsCreateCache ("Acpi-ParseExt", sizeof (ACPI_PARSE_OBJ_NAMED),
134 ACPI_MAX_EXTPARSE_CACHE_DEPTH, &AcpiGbl_PsNodeExtCache);
135 if (ACPI_FAILURE (Status))
137 return (Status);
140 Status = AcpiOsCreateCache ("Acpi-Operand", sizeof (ACPI_OPERAND_OBJECT),
141 ACPI_MAX_OBJECT_CACHE_DEPTH, &AcpiGbl_OperandCache);
142 if (ACPI_FAILURE (Status))
144 return (Status);
148 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
150 /* Memory allocation lists */
152 Status = AcpiUtCreateList ("Acpi-Global", 0,
153 &AcpiGbl_GlobalList);
154 if (ACPI_FAILURE (Status))
156 return (Status);
159 Status = AcpiUtCreateList ("Acpi-Namespace", sizeof (ACPI_NAMESPACE_NODE),
160 &AcpiGbl_NsNodeList);
161 if (ACPI_FAILURE (Status))
163 return (Status);
165 #endif
167 return (AE_OK);
171 /*******************************************************************************
173 * FUNCTION: AcpiUtDeleteCaches
175 * PARAMETERS: None
177 * RETURN: Status
179 * DESCRIPTION: Purge and delete all local caches
181 ******************************************************************************/
183 ACPI_STATUS
184 AcpiUtDeleteCaches (
185 void)
187 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
188 char Buffer[7];
191 if (AcpiGbl_DisplayFinalMemStats)
193 strcpy (Buffer, "MEMORY");
194 (void) AcpiDbDisplayStatistics (Buffer);
196 #endif
198 (void) AcpiOsDeleteCache (AcpiGbl_NamespaceCache);
199 AcpiGbl_NamespaceCache = NULL;
201 (void) AcpiOsDeleteCache (AcpiGbl_StateCache);
202 AcpiGbl_StateCache = NULL;
204 (void) AcpiOsDeleteCache (AcpiGbl_OperandCache);
205 AcpiGbl_OperandCache = NULL;
207 (void) AcpiOsDeleteCache (AcpiGbl_PsNodeCache);
208 AcpiGbl_PsNodeCache = NULL;
210 (void) AcpiOsDeleteCache (AcpiGbl_PsNodeExtCache);
211 AcpiGbl_PsNodeExtCache = NULL;
214 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
216 /* Debug only - display leftover memory allocation, if any */
218 AcpiUtDumpAllocations (ACPI_UINT32_MAX, NULL);
220 /* Free memory lists */
222 AcpiOsFree (AcpiGbl_GlobalList);
223 AcpiGbl_GlobalList = NULL;
225 AcpiOsFree (AcpiGbl_NsNodeList);
226 AcpiGbl_NsNodeList = NULL;
227 #endif
229 return (AE_OK);
233 /*******************************************************************************
235 * FUNCTION: AcpiUtValidateBuffer
237 * PARAMETERS: Buffer - Buffer descriptor to be validated
239 * RETURN: Status
241 * DESCRIPTION: Perform parameter validation checks on an ACPI_BUFFER
243 ******************************************************************************/
245 ACPI_STATUS
246 AcpiUtValidateBuffer (
247 ACPI_BUFFER *Buffer)
250 /* Obviously, the structure pointer must be valid */
252 if (!Buffer)
254 return (AE_BAD_PARAMETER);
257 /* Special semantics for the length */
259 if ((Buffer->Length == ACPI_NO_BUFFER) ||
260 (Buffer->Length == ACPI_ALLOCATE_BUFFER) ||
261 (Buffer->Length == ACPI_ALLOCATE_LOCAL_BUFFER))
263 return (AE_OK);
266 /* Length is valid, the buffer pointer must be also */
268 if (!Buffer->Pointer)
270 return (AE_BAD_PARAMETER);
273 return (AE_OK);
277 /*******************************************************************************
279 * FUNCTION: AcpiUtInitializeBuffer
281 * PARAMETERS: Buffer - Buffer to be validated
282 * RequiredLength - Length needed
284 * RETURN: Status
286 * DESCRIPTION: Validate that the buffer is of the required length or
287 * allocate a new buffer. Returned buffer is always zeroed.
289 ******************************************************************************/
291 ACPI_STATUS
292 AcpiUtInitializeBuffer (
293 ACPI_BUFFER *Buffer,
294 ACPI_SIZE RequiredLength)
296 ACPI_SIZE InputBufferLength;
299 /* Parameter validation */
301 if (!Buffer || !RequiredLength)
303 return (AE_BAD_PARAMETER);
307 * Buffer->Length is used as both an input and output parameter. Get the
308 * input actual length and set the output required buffer length.
310 InputBufferLength = Buffer->Length;
311 Buffer->Length = RequiredLength;
314 * The input buffer length contains the actual buffer length, or the type
315 * of buffer to be allocated by this routine.
317 switch (InputBufferLength)
319 case ACPI_NO_BUFFER:
321 /* Return the exception (and the required buffer length) */
323 return (AE_BUFFER_OVERFLOW);
325 case ACPI_ALLOCATE_BUFFER:
327 * Allocate a new buffer. We directectly call AcpiOsAllocate here to
328 * purposefully bypass the (optionally enabled) internal allocation
329 * tracking mechanism since we only want to track internal
330 * allocations. Note: The caller should use AcpiOsFree to free this
331 * buffer created via ACPI_ALLOCATE_BUFFER.
333 Buffer->Pointer = AcpiOsAllocate (RequiredLength);
334 break;
336 case ACPI_ALLOCATE_LOCAL_BUFFER:
338 /* Allocate a new buffer with local interface to allow tracking */
340 Buffer->Pointer = ACPI_ALLOCATE (RequiredLength);
341 break;
343 default:
345 /* Existing buffer: Validate the size of the buffer */
347 if (InputBufferLength < RequiredLength)
349 return (AE_BUFFER_OVERFLOW);
351 break;
354 /* Validate allocation from above or input buffer pointer */
356 if (!Buffer->Pointer)
358 return (AE_NO_MEMORY);
361 /* Have a valid buffer, clear it */
363 memset (Buffer->Pointer, 0, RequiredLength);
364 return (AE_OK);