ACPI: ACPICA 20060421
[linux-2.6-block.git] / drivers / acpi / utilities / utalloc.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
73459f73 3 * Module Name: utalloc - local memory allocation routines
1da177e4
LT
4 *
5 *****************************************************************************/
6
7/*
4a90c7e8 8 * Copyright (C) 2000 - 2006, R. Byron Moore
1da177e4
LT
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
1da177e4
LT
44#include <acpi/acpi.h>
45
46#define _COMPONENT ACPI_UTILITIES
4be44fcd 47ACPI_MODULE_NAME("utalloc")
1da177e4 48
44f6c012 49/*******************************************************************************
1da177e4 50 *
73459f73 51 * FUNCTION: acpi_ut_create_caches
1da177e4 52 *
73459f73 53 * PARAMETERS: None
1da177e4 54 *
73459f73 55 * RETURN: Status
1da177e4 56 *
73459f73 57 * DESCRIPTION: Create all local caches
1da177e4
LT
58 *
59 ******************************************************************************/
4be44fcd 60acpi_status acpi_ut_create_caches(void)
1da177e4 61{
4be44fcd 62 acpi_status status;
1da177e4 63
73459f73 64#ifdef ACPI_DBG_TRACK_ALLOCATIONS
1da177e4 65
73459f73 66 /* Memory allocation lists */
1da177e4 67
4be44fcd
LB
68 status = acpi_ut_create_list("Acpi-Global", 0, &acpi_gbl_global_list);
69 if (ACPI_FAILURE(status)) {
73459f73 70 return (status);
1da177e4
LT
71 }
72
4be44fcd
LB
73 status =
74 acpi_ut_create_list("Acpi-Namespace",
75 sizeof(struct acpi_namespace_node),
76 &acpi_gbl_ns_node_list);
77 if (ACPI_FAILURE(status)) {
73459f73
RM
78 return (status);
79 }
1da177e4
LT
80#endif
81
73459f73 82 /* Object Caches, for frequently used objects */
1da177e4 83
4be44fcd 84 status =
61686124
BM
85 acpi_os_create_cache("Acpi-Namespace",
86 sizeof(struct acpi_namespace_node),
87 ACPI_MAX_NAMESPACE_CACHE_DEPTH,
88 &acpi_gbl_namespace_cache);
89 if (ACPI_FAILURE(status)) {
90 return (status);
91 }
92
93 status =
94 acpi_os_create_cache("Acpi-State", sizeof(union acpi_generic_state),
4be44fcd
LB
95 ACPI_MAX_STATE_CACHE_DEPTH,
96 &acpi_gbl_state_cache);
97 if (ACPI_FAILURE(status)) {
73459f73 98 return (status);
1da177e4
LT
99 }
100
4be44fcd 101 status =
61686124 102 acpi_os_create_cache("Acpi-Parse",
4be44fcd
LB
103 sizeof(struct acpi_parse_obj_common),
104 ACPI_MAX_PARSE_CACHE_DEPTH,
105 &acpi_gbl_ps_node_cache);
106 if (ACPI_FAILURE(status)) {
73459f73 107 return (status);
1da177e4
LT
108 }
109
4be44fcd 110 status =
b229cf92 111 acpi_os_create_cache("Acpi-ParseExt",
4be44fcd
LB
112 sizeof(struct acpi_parse_obj_named),
113 ACPI_MAX_EXTPARSE_CACHE_DEPTH,
114 &acpi_gbl_ps_node_ext_cache);
115 if (ACPI_FAILURE(status)) {
73459f73
RM
116 return (status);
117 }
1da177e4 118
4be44fcd 119 status =
61686124 120 acpi_os_create_cache("Acpi-Operand",
4be44fcd
LB
121 sizeof(union acpi_operand_object),
122 ACPI_MAX_OBJECT_CACHE_DEPTH,
123 &acpi_gbl_operand_cache);
124 if (ACPI_FAILURE(status)) {
73459f73
RM
125 return (status);
126 }
1da177e4 127
73459f73 128 return (AE_OK);
1da177e4
LT
129}
130
44f6c012 131/*******************************************************************************
1da177e4 132 *
73459f73 133 * FUNCTION: acpi_ut_delete_caches
1da177e4 134 *
73459f73 135 * PARAMETERS: None
1da177e4 136 *
73459f73 137 * RETURN: Status
1da177e4 138 *
73459f73 139 * DESCRIPTION: Purge and delete all local caches
1da177e4
LT
140 *
141 ******************************************************************************/
142
4be44fcd 143acpi_status acpi_ut_delete_caches(void)
1da177e4 144{
1da177e4 145
61686124
BM
146 (void)acpi_os_delete_cache(acpi_gbl_namespace_cache);
147 acpi_gbl_namespace_cache = NULL;
148
4be44fcd 149 (void)acpi_os_delete_cache(acpi_gbl_state_cache);
73459f73 150 acpi_gbl_state_cache = NULL;
1da177e4 151
4be44fcd 152 (void)acpi_os_delete_cache(acpi_gbl_operand_cache);
73459f73 153 acpi_gbl_operand_cache = NULL;
1da177e4 154
4be44fcd 155 (void)acpi_os_delete_cache(acpi_gbl_ps_node_cache);
73459f73 156 acpi_gbl_ps_node_cache = NULL;
1da177e4 157
4be44fcd 158 (void)acpi_os_delete_cache(acpi_gbl_ps_node_ext_cache);
73459f73 159 acpi_gbl_ps_node_ext_cache = NULL;
1da177e4 160
73459f73 161 return (AE_OK);
1da177e4 162}
1da177e4
LT
163
164/*******************************************************************************
165 *
166 * FUNCTION: acpi_ut_validate_buffer
167 *
168 * PARAMETERS: Buffer - Buffer descriptor to be validated
169 *
170 * RETURN: Status
171 *
172 * DESCRIPTION: Perform parameter validation checks on an struct acpi_buffer
173 *
174 ******************************************************************************/
175
4be44fcd 176acpi_status acpi_ut_validate_buffer(struct acpi_buffer * buffer)
1da177e4
LT
177{
178
179 /* Obviously, the structure pointer must be valid */
180
181 if (!buffer) {
182 return (AE_BAD_PARAMETER);
183 }
184
185 /* Special semantics for the length */
186
4be44fcd
LB
187 if ((buffer->length == ACPI_NO_BUFFER) ||
188 (buffer->length == ACPI_ALLOCATE_BUFFER) ||
189 (buffer->length == ACPI_ALLOCATE_LOCAL_BUFFER)) {
1da177e4
LT
190 return (AE_OK);
191 }
192
193 /* Length is valid, the buffer pointer must be also */
194
195 if (!buffer->pointer) {
196 return (AE_BAD_PARAMETER);
197 }
198
199 return (AE_OK);
200}
201
1da177e4
LT
202/*******************************************************************************
203 *
204 * FUNCTION: acpi_ut_initialize_buffer
205 *
206 * PARAMETERS: Buffer - Buffer to be validated
207 * required_length - Length needed
208 *
209 * RETURN: Status
210 *
211 * DESCRIPTION: Validate that the buffer is of the required length or
212 * allocate a new buffer. Returned buffer is always zeroed.
213 *
214 ******************************************************************************/
215
216acpi_status
4be44fcd
LB
217acpi_ut_initialize_buffer(struct acpi_buffer * buffer,
218 acpi_size required_length)
1da177e4 219{
4be44fcd 220 acpi_status status = AE_OK;
1da177e4
LT
221
222 switch (buffer->length) {
223 case ACPI_NO_BUFFER:
224
225 /* Set the exception and returned the required length */
226
227 status = AE_BUFFER_OVERFLOW;
228 break;
229
1da177e4
LT
230 case ACPI_ALLOCATE_BUFFER:
231
232 /* Allocate a new buffer */
233
4be44fcd 234 buffer->pointer = acpi_os_allocate(required_length);
1da177e4
LT
235 if (!buffer->pointer) {
236 return (AE_NO_MEMORY);
237 }
238
239 /* Clear the buffer */
240
4be44fcd 241 ACPI_MEMSET(buffer->pointer, 0, required_length);
1da177e4
LT
242 break;
243
1da177e4
LT
244 case ACPI_ALLOCATE_LOCAL_BUFFER:
245
246 /* Allocate a new buffer with local interface to allow tracking */
247
8313524a 248 buffer->pointer = ACPI_ALLOCATE_ZEROED(required_length);
1da177e4
LT
249 if (!buffer->pointer) {
250 return (AE_NO_MEMORY);
251 }
252 break;
253
1da177e4
LT
254 default:
255
256 /* Existing buffer: Validate the size of the buffer */
257
258 if (buffer->length < required_length) {
259 status = AE_BUFFER_OVERFLOW;
260 break;
261 }
262
263 /* Clear the buffer */
264
4be44fcd 265 ACPI_MEMSET(buffer->pointer, 0, required_length);
1da177e4
LT
266 break;
267 }
268
269 buffer->length = required_length;
270 return (status);
271}
272
1da177e4
LT
273/*******************************************************************************
274 *
275 * FUNCTION: acpi_ut_allocate
276 *
277 * PARAMETERS: Size - Size of the allocation
278 * Component - Component type of caller
279 * Module - Source file name of caller
280 * Line - Line number of caller
281 *
282 * RETURN: Address of the allocated memory on success, NULL on failure.
283 *
61686124 284 * DESCRIPTION: Subsystem equivalent of malloc.
1da177e4
LT
285 *
286 ******************************************************************************/
287
4be44fcd 288void *acpi_ut_allocate(acpi_size size, u32 component, char *module, u32 line)
1da177e4 289{
4be44fcd 290 void *allocation;
1da177e4 291
b229cf92 292 ACPI_FUNCTION_TRACE_U32(ut_allocate, size);
1da177e4
LT
293
294 /* Check for an inadvertent size of zero bytes */
295
296 if (!size) {
61686124
BM
297 ACPI_WARNING((module, line,
298 "Attempt to allocate zero bytes, allocating 1 byte"));
1da177e4
LT
299 size = 1;
300 }
301
4be44fcd 302 allocation = acpi_os_allocate(size);
1da177e4 303 if (!allocation) {
52fc0b02 304
1da177e4
LT
305 /* Report allocation error */
306
61686124
BM
307 ACPI_WARNING((module, line,
308 "Could not allocate size %X", (u32) size));
1da177e4 309
4be44fcd 310 return_PTR(NULL);
1da177e4
LT
311 }
312
4be44fcd 313 return_PTR(allocation);
1da177e4
LT
314}
315
1da177e4
LT
316/*******************************************************************************
317 *
61686124 318 * FUNCTION: acpi_ut_allocate_zeroed
1da177e4
LT
319 *
320 * PARAMETERS: Size - Size of the allocation
321 * Component - Component type of caller
322 * Module - Source file name of caller
323 * Line - Line number of caller
324 *
325 * RETURN: Address of the allocated memory on success, NULL on failure.
326 *
61686124 327 * DESCRIPTION: Subsystem equivalent of calloc. Allocate and zero memory.
1da177e4
LT
328 *
329 ******************************************************************************/
330
61686124
BM
331void *acpi_ut_allocate_zeroed(acpi_size size,
332 u32 component, char *module, u32 line)
1da177e4 333{
4be44fcd 334 void *allocation;
1da177e4 335
4be44fcd 336 ACPI_FUNCTION_ENTRY();
1da177e4 337
61686124
BM
338 allocation = acpi_ut_allocate(size, component, module, line);
339 if (allocation) {
1da177e4 340
61686124 341 /* Clear the memory block */
1da177e4 342
61686124 343 ACPI_MEMSET(allocation, 0, size);
1da177e4
LT
344 }
345
61686124 346 return (allocation);
1da177e4 347}