blob: 5d2f4b2802a5643cd80d8951ab091a5b38f6ef03 [file] [log] [blame]
Robert Moore73459f72005-06-24 00:00:00 -04001/******************************************************************************
2 *
3 * Module Name: utcache - local cache allocation routines
4 *
5 *****************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
Robert Moore73459f72005-06-24 00:00:00 -04009 * 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
Robert Moore73459f72005-06-24 00:00:00 -040044#include <acpi/acpi.h>
45
46#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040047ACPI_MODULE_NAME("utcache")
Robert Moore73459f72005-06-24 00:00:00 -040048
49#ifdef ACPI_USE_LOCAL_CACHE
50/*******************************************************************************
51 *
52 * FUNCTION: acpi_os_create_cache
53 *
54 * PARAMETERS: cache_name - Ascii name for the cache
55 * object_size - Size of each cached object
56 * max_depth - Maximum depth of the cache (in objects)
57 * return_cache - Where the new cache object is returned
58 *
59 * RETURN: Status
60 *
61 * DESCRIPTION: Create a cache object
62 *
63 ******************************************************************************/
Robert Moore73459f72005-06-24 00:00:00 -040064acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040065acpi_os_create_cache(char *cache_name,
66 u16 object_size,
67 u16 max_depth, struct acpi_memory_list **return_cache)
Robert Moore73459f72005-06-24 00:00:00 -040068{
Len Brown4be44fc2005-08-05 00:44:28 -040069 struct acpi_memory_list *cache;
Robert Moore73459f72005-06-24 00:00:00 -040070
Len Brown4be44fc2005-08-05 00:44:28 -040071 ACPI_FUNCTION_ENTRY();
Robert Mooref9f46012005-07-08 00:00:00 -040072
Robert Moore73459f72005-06-24 00:00:00 -040073 if (!cache_name || !return_cache || (object_size < 16)) {
74 return (AE_BAD_PARAMETER);
75 }
76
77 /* Create the cache object */
78
Len Brown4be44fc2005-08-05 00:44:28 -040079 cache = acpi_os_allocate(sizeof(struct acpi_memory_list));
Robert Moore73459f72005-06-24 00:00:00 -040080 if (!cache) {
81 return (AE_NO_MEMORY);
82 }
83
84 /* Populate the cache object and return it */
85
Len Brown4be44fc2005-08-05 00:44:28 -040086 ACPI_MEMSET(cache, 0, sizeof(struct acpi_memory_list));
Robert Moore73459f72005-06-24 00:00:00 -040087 cache->link_offset = 8;
Len Brown4be44fc2005-08-05 00:44:28 -040088 cache->list_name = cache_name;
Robert Moore73459f72005-06-24 00:00:00 -040089 cache->object_size = object_size;
Len Brown4be44fc2005-08-05 00:44:28 -040090 cache->max_depth = max_depth;
Robert Moore73459f72005-06-24 00:00:00 -040091
92 *return_cache = cache;
93 return (AE_OK);
94}
95
Robert Moore73459f72005-06-24 00:00:00 -040096/*******************************************************************************
97 *
98 * FUNCTION: acpi_os_purge_cache
99 *
100 * PARAMETERS: Cache - Handle to cache object
101 *
102 * RETURN: Status
103 *
104 * DESCRIPTION: Free all objects within the requested cache.
105 *
106 ******************************************************************************/
107
Len Brown4be44fc2005-08-05 00:44:28 -0400108acpi_status acpi_os_purge_cache(struct acpi_memory_list * cache)
Robert Moore73459f72005-06-24 00:00:00 -0400109{
Len Brown4be44fc2005-08-05 00:44:28 -0400110 char *next;
Robert Moore73459f72005-06-24 00:00:00 -0400111
Len Brown4be44fc2005-08-05 00:44:28 -0400112 ACPI_FUNCTION_ENTRY();
Robert Moore73459f72005-06-24 00:00:00 -0400113
114 if (!cache) {
115 return (AE_BAD_PARAMETER);
116 }
117
118 /* Walk the list of objects in this cache */
119
120 while (cache->list_head) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400121
Robert Moore73459f72005-06-24 00:00:00 -0400122 /* Delete and unlink one cached state object */
123
Len Brown4be44fc2005-08-05 00:44:28 -0400124 next = *(ACPI_CAST_INDIRECT_PTR(char,
125 &(((char *)cache->
126 list_head)[cache->
127 link_offset])));
Bob Moore83135242006-10-03 00:00:00 -0400128 ACPI_FREE(cache->list_head);
Robert Moore73459f72005-06-24 00:00:00 -0400129
130 cache->list_head = next;
131 cache->current_depth--;
132 }
133
134 return (AE_OK);
135}
136
Robert Moore73459f72005-06-24 00:00:00 -0400137/*******************************************************************************
138 *
139 * FUNCTION: acpi_os_delete_cache
140 *
141 * PARAMETERS: Cache - Handle to cache object
142 *
143 * RETURN: Status
144 *
145 * DESCRIPTION: Free all objects within the requested cache and delete the
146 * cache object.
147 *
148 ******************************************************************************/
149
Len Brown4be44fc2005-08-05 00:44:28 -0400150acpi_status acpi_os_delete_cache(struct acpi_memory_list * cache)
Robert Moore73459f72005-06-24 00:00:00 -0400151{
Len Brown4be44fc2005-08-05 00:44:28 -0400152 acpi_status status;
Robert Moore73459f72005-06-24 00:00:00 -0400153
Len Brown4be44fc2005-08-05 00:44:28 -0400154 ACPI_FUNCTION_ENTRY();
Robert Moore73459f72005-06-24 00:00:00 -0400155
Len Brown4be44fc2005-08-05 00:44:28 -0400156 /* Purge all objects in the cache */
Robert Mooref9f46012005-07-08 00:00:00 -0400157
Len Brown4be44fc2005-08-05 00:44:28 -0400158 status = acpi_os_purge_cache(cache);
159 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400160 return (status);
161 }
162
163 /* Now we can delete the cache object */
164
Len Brown4be44fc2005-08-05 00:44:28 -0400165 acpi_os_free(cache);
Robert Moore73459f72005-06-24 00:00:00 -0400166 return (AE_OK);
167}
168
Robert Moore73459f72005-06-24 00:00:00 -0400169/*******************************************************************************
170 *
171 * FUNCTION: acpi_os_release_object
172 *
173 * PARAMETERS: Cache - Handle to cache object
174 * Object - The object to be released
175 *
176 * RETURN: None
177 *
178 * DESCRIPTION: Release an object to the specified cache. If cache is full,
179 * the object is deleted.
180 *
181 ******************************************************************************/
182
183acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400184acpi_os_release_object(struct acpi_memory_list * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -0400185{
Len Brown4be44fc2005-08-05 00:44:28 -0400186 acpi_status status;
Robert Moore73459f72005-06-24 00:00:00 -0400187
Len Brown4be44fc2005-08-05 00:44:28 -0400188 ACPI_FUNCTION_ENTRY();
Robert Moore73459f72005-06-24 00:00:00 -0400189
190 if (!cache || !object) {
191 return (AE_BAD_PARAMETER);
192 }
193
194 /* If cache is full, just free this object */
195
196 if (cache->current_depth >= cache->max_depth) {
Bob Moore83135242006-10-03 00:00:00 -0400197 ACPI_FREE(object);
Len Brown4be44fc2005-08-05 00:44:28 -0400198 ACPI_MEM_TRACKING(cache->total_freed++);
Robert Moore73459f72005-06-24 00:00:00 -0400199 }
200
201 /* Otherwise put this object back into the cache */
202
203 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400204 status = acpi_ut_acquire_mutex(ACPI_MTX_CACHES);
205 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400206 return (status);
207 }
208
209 /* Mark the object as cached */
210
Len Brown4be44fc2005-08-05 00:44:28 -0400211 ACPI_MEMSET(object, 0xCA, cache->object_size);
212 ACPI_SET_DESCRIPTOR_TYPE(object, ACPI_DESC_TYPE_CACHED);
Robert Moore73459f72005-06-24 00:00:00 -0400213
214 /* Put the object at the head of the cache list */
215
Len Brown4be44fc2005-08-05 00:44:28 -0400216 *(ACPI_CAST_INDIRECT_PTR(char,
217 &(((char *)object)[cache->
218 link_offset]))) =
219 cache->list_head;
Robert Moore73459f72005-06-24 00:00:00 -0400220 cache->list_head = object;
221 cache->current_depth++;
222
Len Brown4be44fc2005-08-05 00:44:28 -0400223 (void)acpi_ut_release_mutex(ACPI_MTX_CACHES);
Robert Moore73459f72005-06-24 00:00:00 -0400224 }
225
226 return (AE_OK);
227}
228
Robert Moore73459f72005-06-24 00:00:00 -0400229/*******************************************************************************
230 *
231 * FUNCTION: acpi_os_acquire_object
232 *
233 * PARAMETERS: Cache - Handle to cache object
234 *
235 * RETURN: the acquired object. NULL on error
236 *
237 * DESCRIPTION: Get an object from the specified cache. If cache is empty,
238 * the object is allocated.
239 *
240 ******************************************************************************/
241
Len Brown4be44fc2005-08-05 00:44:28 -0400242void *acpi_os_acquire_object(struct acpi_memory_list *cache)
Robert Moore73459f72005-06-24 00:00:00 -0400243{
Len Brown4be44fc2005-08-05 00:44:28 -0400244 acpi_status status;
245 void *object;
Robert Moore73459f72005-06-24 00:00:00 -0400246
Len Brown4be44fc2005-08-05 00:44:28 -0400247 ACPI_FUNCTION_NAME("os_acquire_object");
Robert Moore73459f72005-06-24 00:00:00 -0400248
249 if (!cache) {
250 return (NULL);
251 }
252
Len Brown4be44fc2005-08-05 00:44:28 -0400253 status = acpi_ut_acquire_mutex(ACPI_MTX_CACHES);
254 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400255 return (NULL);
256 }
257
Len Brown4be44fc2005-08-05 00:44:28 -0400258 ACPI_MEM_TRACKING(cache->requests++);
Robert Moore73459f72005-06-24 00:00:00 -0400259
260 /* Check the cache first */
261
262 if (cache->list_head) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400263
Robert Moore73459f72005-06-24 00:00:00 -0400264 /* There is an object available, use it */
265
266 object = cache->list_head;
Len Brown4be44fc2005-08-05 00:44:28 -0400267 cache->list_head = *(ACPI_CAST_INDIRECT_PTR(char,
268 &(((char *)
269 object)[cache->
270 link_offset])));
Robert Moore73459f72005-06-24 00:00:00 -0400271
272 cache->current_depth--;
273
Len Brown4be44fc2005-08-05 00:44:28 -0400274 ACPI_MEM_TRACKING(cache->hits++);
275 ACPI_MEM_TRACKING(ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
276 "Object %p from %s cache\n",
277 object, cache->list_name)));
Robert Moore73459f72005-06-24 00:00:00 -0400278
Len Brown4be44fc2005-08-05 00:44:28 -0400279 status = acpi_ut_release_mutex(ACPI_MTX_CACHES);
280 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400281 return (NULL);
282 }
283
284 /* Clear (zero) the previously used Object */
285
Len Brown4be44fc2005-08-05 00:44:28 -0400286 ACPI_MEMSET(object, 0, cache->object_size);
287 } else {
Robert Moore73459f72005-06-24 00:00:00 -0400288 /* The cache is empty, create a new object */
289
Len Brown4be44fc2005-08-05 00:44:28 -0400290 ACPI_MEM_TRACKING(cache->total_allocated++);
Robert Moore73459f72005-06-24 00:00:00 -0400291
Bob Moore83135242006-10-03 00:00:00 -0400292 /* Avoid deadlock with ACPI_ALLOCATE_ZEROED */
Robert Moore73459f72005-06-24 00:00:00 -0400293
Len Brown4be44fc2005-08-05 00:44:28 -0400294 status = acpi_ut_release_mutex(ACPI_MTX_CACHES);
295 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400296 return (NULL);
297 }
298
Bob Moore83135242006-10-03 00:00:00 -0400299 object = ACPI_ALLOCATE_ZEROED(cache->object_size);
Robert Moore73459f72005-06-24 00:00:00 -0400300 if (!object) {
301 return (NULL);
302 }
303 }
304
305 return (object);
306}
Len Brown4be44fc2005-08-05 00:44:28 -0400307#endif /* ACPI_USE_LOCAL_CACHE */