Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 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: |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 32 | * Thomas Hellström <thomas-at-tungstengraphics-dot-com> |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 33 | */ |
| 34 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 35 | #include <drm/drmP.h> |
| 36 | #include <drm/drm_hashtab.h> |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 37 | #include <linux/hash.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 38 | #include <linux/slab.h> |
Paul Gortmaker | 2d1a8a4 | 2011-08-30 18:16:33 -0400 | [diff] [blame] | 39 | #include <linux/export.h> |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 40 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 41 | int drm_ht_create(struct drm_open_hash *ht, unsigned int order) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 42 | { |
Chris Wilson | 7811bdd | 2011-01-26 18:33:25 +0000 | [diff] [blame] | 43 | unsigned int size = 1 << order; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 44 | |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 45 | ht->order = order; |
Dave Airlie | c1185cc | 2007-02-18 18:23:11 +1100 | [diff] [blame] | 46 | ht->table = NULL; |
Chris Wilson | 7811bdd | 2011-01-26 18:33:25 +0000 | [diff] [blame] | 47 | if (size <= PAGE_SIZE / sizeof(*ht->table)) |
| 48 | ht->table = kcalloc(size, sizeof(*ht->table), GFP_KERNEL); |
| 49 | else |
| 50 | ht->table = vzalloc(size*sizeof(*ht->table)); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 51 | if (!ht->table) { |
| 52 | DRM_ERROR("Out of memory for hash table\n"); |
| 53 | return -ENOMEM; |
| 54 | } |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 55 | return 0; |
| 56 | } |
Jerome Glisse | f2cb5d8 | 2009-04-08 17:16:24 +0200 | [diff] [blame] | 57 | EXPORT_SYMBOL(drm_ht_create); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 58 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 59 | void drm_ht_verbose_list(struct drm_open_hash *ht, unsigned long key) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 60 | { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 61 | struct drm_hash_item *entry; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 62 | struct hlist_head *h_list; |
| 63 | struct hlist_node *list; |
| 64 | unsigned int hashed_key; |
| 65 | int count = 0; |
| 66 | |
| 67 | hashed_key = hash_long(key, ht->order); |
| 68 | DRM_DEBUG("Key is 0x%08lx, Hashed key is 0x%08x\n", key, hashed_key); |
| 69 | h_list = &ht->table[hashed_key]; |
Thomas Hellstrom | 384cc2f | 2012-11-20 12:16:47 +0000 | [diff] [blame] | 70 | hlist_for_each_entry(entry, list, h_list, head) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 71 | DRM_DEBUG("count %d, key: 0x%08lx\n", count++, entry->key); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 72 | } |
| 73 | |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 74 | static struct hlist_node *drm_ht_find_key(struct drm_open_hash *ht, |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 75 | unsigned long key) |
| 76 | { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 77 | struct drm_hash_item *entry; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 78 | struct hlist_head *h_list; |
| 79 | struct hlist_node *list; |
| 80 | unsigned int hashed_key; |
| 81 | |
| 82 | hashed_key = hash_long(key, ht->order); |
| 83 | h_list = &ht->table[hashed_key]; |
Thomas Hellstrom | 384cc2f | 2012-11-20 12:16:47 +0000 | [diff] [blame] | 84 | hlist_for_each_entry(entry, list, h_list, head) { |
| 85 | if (entry->key == key) |
| 86 | return list; |
| 87 | if (entry->key > key) |
| 88 | break; |
| 89 | } |
| 90 | return NULL; |
| 91 | } |
| 92 | |
| 93 | static struct hlist_node *drm_ht_find_key_rcu(struct drm_open_hash *ht, |
| 94 | unsigned long key) |
| 95 | { |
| 96 | struct drm_hash_item *entry; |
| 97 | struct hlist_head *h_list; |
| 98 | struct hlist_node *list; |
| 99 | unsigned int hashed_key; |
| 100 | |
| 101 | hashed_key = hash_long(key, ht->order); |
| 102 | h_list = &ht->table[hashed_key]; |
Thomas Hellstrom | d714455 | 2012-11-06 11:31:48 +0000 | [diff] [blame] | 103 | hlist_for_each_entry_rcu(entry, list, h_list, head) { |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 104 | if (entry->key == key) |
| 105 | return list; |
| 106 | if (entry->key > key) |
| 107 | break; |
| 108 | } |
| 109 | return NULL; |
| 110 | } |
| 111 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 112 | int drm_ht_insert_item(struct drm_open_hash *ht, struct drm_hash_item *item) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 113 | { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 114 | struct drm_hash_item *entry; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 115 | struct hlist_head *h_list; |
| 116 | struct hlist_node *list, *parent; |
| 117 | unsigned int hashed_key; |
| 118 | unsigned long key = item->key; |
| 119 | |
| 120 | hashed_key = hash_long(key, ht->order); |
| 121 | h_list = &ht->table[hashed_key]; |
| 122 | parent = NULL; |
Thomas Hellstrom | 384cc2f | 2012-11-20 12:16:47 +0000 | [diff] [blame] | 123 | hlist_for_each_entry(entry, list, h_list, head) { |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 124 | if (entry->key == key) |
Thomas Hellstrom | 47cc140 | 2006-09-22 04:04:18 +1000 | [diff] [blame] | 125 | return -EINVAL; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 126 | if (entry->key > key) |
| 127 | break; |
| 128 | parent = list; |
| 129 | } |
| 130 | if (parent) { |
Thomas Hellstrom | d714455 | 2012-11-06 11:31:48 +0000 | [diff] [blame] | 131 | hlist_add_after_rcu(parent, &item->head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 132 | } else { |
Thomas Hellstrom | d714455 | 2012-11-06 11:31:48 +0000 | [diff] [blame] | 133 | hlist_add_head_rcu(&item->head, h_list); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 134 | } |
| 135 | return 0; |
| 136 | } |
Jesse Barnes | a2c0a97 | 2008-11-05 10:31:53 -0800 | [diff] [blame] | 137 | EXPORT_SYMBOL(drm_ht_insert_item); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 138 | |
| 139 | /* |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 140 | * Just insert an item and return any "bits" bit key that hasn't been |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 141 | * used before. |
| 142 | */ |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 143 | int drm_ht_just_insert_please(struct drm_open_hash *ht, struct drm_hash_item *item, |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 144 | unsigned long seed, int bits, int shift, |
| 145 | unsigned long add) |
| 146 | { |
| 147 | int ret; |
| 148 | unsigned long mask = (1 << bits) - 1; |
| 149 | unsigned long first, unshifted_key; |
| 150 | |
| 151 | unshifted_key = hash_long(seed, bits); |
| 152 | first = unshifted_key; |
| 153 | do { |
| 154 | item->key = (unshifted_key << shift) + add; |
| 155 | ret = drm_ht_insert_item(ht, item); |
| 156 | if (ret) |
| 157 | unshifted_key = (unshifted_key + 1) & mask; |
| 158 | } while(ret && (unshifted_key != first)); |
| 159 | |
| 160 | if (ret) { |
| 161 | DRM_ERROR("Available key bit space exhausted\n"); |
| 162 | return -EINVAL; |
| 163 | } |
| 164 | return 0; |
| 165 | } |
Jerome Glisse | f2cb5d8 | 2009-04-08 17:16:24 +0200 | [diff] [blame] | 166 | EXPORT_SYMBOL(drm_ht_just_insert_please); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 167 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 168 | int drm_ht_find_item(struct drm_open_hash *ht, unsigned long key, |
| 169 | struct drm_hash_item **item) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 170 | { |
| 171 | struct hlist_node *list; |
| 172 | |
Thomas Hellstrom | 384cc2f | 2012-11-20 12:16:47 +0000 | [diff] [blame] | 173 | list = drm_ht_find_key_rcu(ht, key); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 174 | if (!list) |
Thomas Hellstrom | 47cc140 | 2006-09-22 04:04:18 +1000 | [diff] [blame] | 175 | return -EINVAL; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 176 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 177 | *item = hlist_entry(list, struct drm_hash_item, head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 178 | return 0; |
| 179 | } |
Jerome Glisse | f2cb5d8 | 2009-04-08 17:16:24 +0200 | [diff] [blame] | 180 | EXPORT_SYMBOL(drm_ht_find_item); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 181 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 182 | int drm_ht_remove_key(struct drm_open_hash *ht, unsigned long key) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 183 | { |
| 184 | struct hlist_node *list; |
| 185 | |
| 186 | list = drm_ht_find_key(ht, key); |
| 187 | if (list) { |
Thomas Hellstrom | d714455 | 2012-11-06 11:31:48 +0000 | [diff] [blame] | 188 | hlist_del_init_rcu(list); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 189 | return 0; |
| 190 | } |
Thomas Hellstrom | 47cc140 | 2006-09-22 04:04:18 +1000 | [diff] [blame] | 191 | return -EINVAL; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 192 | } |
| 193 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 194 | int drm_ht_remove_item(struct drm_open_hash *ht, struct drm_hash_item *item) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 195 | { |
Thomas Hellstrom | d714455 | 2012-11-06 11:31:48 +0000 | [diff] [blame] | 196 | hlist_del_init_rcu(&item->head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 197 | return 0; |
| 198 | } |
Jesse Barnes | a2c0a97 | 2008-11-05 10:31:53 -0800 | [diff] [blame] | 199 | EXPORT_SYMBOL(drm_ht_remove_item); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 200 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 201 | void drm_ht_remove(struct drm_open_hash *ht) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 202 | { |
| 203 | if (ht->table) { |
Chris Wilson | 7811bdd | 2011-01-26 18:33:25 +0000 | [diff] [blame] | 204 | if ((PAGE_SIZE / sizeof(*ht->table)) >> ht->order) |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 205 | kfree(ht->table); |
Chris Wilson | 7811bdd | 2011-01-26 18:33:25 +0000 | [diff] [blame] | 206 | else |
| 207 | vfree(ht->table); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 208 | ht->table = NULL; |
| 209 | } |
| 210 | } |
Jerome Glisse | f2cb5d8 | 2009-04-08 17:16:24 +0200 | [diff] [blame] | 211 | EXPORT_SYMBOL(drm_ht_remove); |