drm: Remove memory debugging infrastructure.
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / gpu / drm / drm_hashtab.c
CommitLineData
3a1bd924
TH
1/**************************************************************************
2 *
3 * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND. USA.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 *
27 **************************************************************************/
28/*
29 * Simple open hash tab implementation.
30 *
31 * Authors:
96de0e25 32 * Thomas Hellström <thomas-at-tungstengraphics-dot-com>
3a1bd924
TH
33 */
34
35#include "drmP.h"
36#include "drm_hashtab.h"
37#include <linux/hash.h>
38
e0be428e 39int drm_ht_create(struct drm_open_hash *ht, unsigned int order)
3a1bd924
TH
40{
41 unsigned int i;
42
43 ht->size = 1 << order;
44 ht->order = order;
45 ht->fill = 0;
c1185ccd 46 ht->table = NULL;
cd839d00
DA
47 ht->use_vmalloc = ((ht->size * sizeof(*ht->table)) > PAGE_SIZE);
48 if (!ht->use_vmalloc) {
9a298b2a 49 ht->table = kcalloc(ht->size, sizeof(*ht->table), GFP_KERNEL);
cd839d00
DA
50 }
51 if (!ht->table) {
52 ht->use_vmalloc = 1;
53 ht->table = vmalloc(ht->size*sizeof(*ht->table));
54 }
3a1bd924
TH
55 if (!ht->table) {
56 DRM_ERROR("Out of memory for hash table\n");
57 return -ENOMEM;
58 }
59 for (i=0; i< ht->size; ++i) {
60 INIT_HLIST_HEAD(&ht->table[i]);
61 }
62 return 0;
63}
f2cb5d86 64EXPORT_SYMBOL(drm_ht_create);
3a1bd924 65
e0be428e 66void drm_ht_verbose_list(struct drm_open_hash *ht, unsigned long key)
3a1bd924 67{
e0be428e 68 struct drm_hash_item *entry;
3a1bd924
TH
69 struct hlist_head *h_list;
70 struct hlist_node *list;
71 unsigned int hashed_key;
72 int count = 0;
73
74 hashed_key = hash_long(key, ht->order);
75 DRM_DEBUG("Key is 0x%08lx, Hashed key is 0x%08x\n", key, hashed_key);
76 h_list = &ht->table[hashed_key];
77 hlist_for_each(list, h_list) {
e0be428e 78 entry = hlist_entry(list, struct drm_hash_item, head);
3a1bd924
TH
79 DRM_DEBUG("count %d, key: 0x%08lx\n", count++, entry->key);
80 }
81}
82
bc5f4523 83static struct hlist_node *drm_ht_find_key(struct drm_open_hash *ht,
3a1bd924
TH
84 unsigned long key)
85{
e0be428e 86 struct drm_hash_item *entry;
3a1bd924
TH
87 struct hlist_head *h_list;
88 struct hlist_node *list;
89 unsigned int hashed_key;
90
91 hashed_key = hash_long(key, ht->order);
92 h_list = &ht->table[hashed_key];
93 hlist_for_each(list, h_list) {
e0be428e 94 entry = hlist_entry(list, struct drm_hash_item, head);
3a1bd924
TH
95 if (entry->key == key)
96 return list;
97 if (entry->key > key)
98 break;
99 }
100 return NULL;
101}
102
103
e0be428e 104int drm_ht_insert_item(struct drm_open_hash *ht, struct drm_hash_item *item)
3a1bd924 105{
e0be428e 106 struct drm_hash_item *entry;
3a1bd924
TH
107 struct hlist_head *h_list;
108 struct hlist_node *list, *parent;
109 unsigned int hashed_key;
110 unsigned long key = item->key;
111
112 hashed_key = hash_long(key, ht->order);
113 h_list = &ht->table[hashed_key];
114 parent = NULL;
115 hlist_for_each(list, h_list) {
e0be428e 116 entry = hlist_entry(list, struct drm_hash_item, head);
3a1bd924 117 if (entry->key == key)
47cc1409 118 return -EINVAL;
3a1bd924
TH
119 if (entry->key > key)
120 break;
121 parent = list;
122 }
123 if (parent) {
124 hlist_add_after(parent, &item->head);
125 } else {
126 hlist_add_head(&item->head, h_list);
127 }
128 return 0;
129}
a2c0a97b 130EXPORT_SYMBOL(drm_ht_insert_item);
3a1bd924
TH
131
132/*
bc5f4523 133 * Just insert an item and return any "bits" bit key that hasn't been
3a1bd924
TH
134 * used before.
135 */
e0be428e 136int drm_ht_just_insert_please(struct drm_open_hash *ht, struct drm_hash_item *item,
3a1bd924
TH
137 unsigned long seed, int bits, int shift,
138 unsigned long add)
139{
140 int ret;
141 unsigned long mask = (1 << bits) - 1;
142 unsigned long first, unshifted_key;
143
144 unshifted_key = hash_long(seed, bits);
145 first = unshifted_key;
146 do {
147 item->key = (unshifted_key << shift) + add;
148 ret = drm_ht_insert_item(ht, item);
149 if (ret)
150 unshifted_key = (unshifted_key + 1) & mask;
151 } while(ret && (unshifted_key != first));
152
153 if (ret) {
154 DRM_ERROR("Available key bit space exhausted\n");
155 return -EINVAL;
156 }
157 return 0;
158}
f2cb5d86 159EXPORT_SYMBOL(drm_ht_just_insert_please);
3a1bd924 160
e0be428e
DA
161int drm_ht_find_item(struct drm_open_hash *ht, unsigned long key,
162 struct drm_hash_item **item)
3a1bd924
TH
163{
164 struct hlist_node *list;
165
166 list = drm_ht_find_key(ht, key);
167 if (!list)
47cc1409 168 return -EINVAL;
3a1bd924 169
e0be428e 170 *item = hlist_entry(list, struct drm_hash_item, head);
3a1bd924
TH
171 return 0;
172}
f2cb5d86 173EXPORT_SYMBOL(drm_ht_find_item);
3a1bd924 174
e0be428e 175int drm_ht_remove_key(struct drm_open_hash *ht, unsigned long key)
3a1bd924
TH
176{
177 struct hlist_node *list;
178
179 list = drm_ht_find_key(ht, key);
180 if (list) {
181 hlist_del_init(list);
182 ht->fill--;
183 return 0;
184 }
47cc1409 185 return -EINVAL;
3a1bd924
TH
186}
187
e0be428e 188int drm_ht_remove_item(struct drm_open_hash *ht, struct drm_hash_item *item)
3a1bd924
TH
189{
190 hlist_del_init(&item->head);
191 ht->fill--;
192 return 0;
193}
a2c0a97b 194EXPORT_SYMBOL(drm_ht_remove_item);
3a1bd924 195
e0be428e 196void drm_ht_remove(struct drm_open_hash *ht)
3a1bd924
TH
197{
198 if (ht->table) {
cd839d00
DA
199 if (ht->use_vmalloc)
200 vfree(ht->table);
201 else
9a298b2a 202 kfree(ht->table);
3a1bd924
TH
203 ht->table = NULL;
204 }
205}
f2cb5d86 206EXPORT_SYMBOL(drm_ht_remove);