DRM from FreeBSD current, tested for r600
[dragonfly.git] / sys / dev / drm / drm_subr_hash.c
blob5feb5f464519a6a9dee328b7246a58971ec152bb
1 /*-
2 * Copyright (c) 1982, 1986, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 4. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
34 * @(#)kern_subr.c 8.3 (Berkeley) 1/21/94
35 * __FBSDID("$FreeBSD: src/sys/kern/subr_hash.c,v 1.1 2010/02/21 19:53:33 ed Exp $");
38 #include "dev/drm/drmP.h"
39 #include "dev/drm/drm_priv_hash.h"
41 /* From FreeBSD's sys/systm.h */
42 #ifndef HASH_NOWAIT
43 #define HASH_NOWAIT 0x00000001
44 #endif
45 #ifndef HASH_WAITOK
46 #define HASH_WAITOK 0x00000002
47 #endif
50 * General routine to allocate a hash table with control of memory flags.
52 void *
53 drm_hashinit_flags(int elements, struct malloc_type *type, u_long *hashmask,
54 int flags)
56 long hashsize;
57 LIST_HEAD(generic, generic) *hashtbl;
58 int i;
60 if (elements <= 0)
61 panic("hashinit: bad elements");
63 /* Exactly one of HASH_WAITOK and HASH_NOWAIT must be set. */
64 KASSERT((flags & HASH_WAITOK) ^ (flags & HASH_NOWAIT),
65 ("Bad flags (0x%x) passed to hashinit_flags", flags));
67 for (hashsize = 1; hashsize <= elements; hashsize <<= 1)
68 continue;
69 hashsize >>= 1;
71 if (flags & HASH_NOWAIT)
72 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl),
73 type, M_NOWAIT);
74 else
75 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl),
76 type, M_WAITOK);
78 if (hashtbl != NULL) {
79 for (i = 0; i < hashsize; i++)
80 LIST_INIT(&hashtbl[i]);
81 *hashmask = hashsize - 1;
83 return (hashtbl);
87 * Allocate and initialize a hash table with default flag: may sleep.
89 void *
90 drm_hashinit(int elements, struct malloc_type *type, u_long *hashmask)
93 return (drm_hashinit_flags(elements, type, hashmask, HASH_WAITOK));
96 void
97 drm_hashdestroy(void *vhashtbl, struct malloc_type *type, u_long hashmask)
99 LIST_HEAD(generic, generic) *hashtbl, *hp;
101 hashtbl = vhashtbl;
102 for (hp = hashtbl; hp <= &hashtbl[hashmask]; hp++)
103 if (!LIST_EMPTY(hp))
104 panic("hashdestroy: hash not empty");
105 free(hashtbl, type);
108 static const int primes[] = { 1, 13, 31, 61, 127, 251, 509, 761, 1021, 1531,
109 2039, 2557, 3067, 3583, 4093, 4603, 5119, 5623, 6143,
110 6653, 7159, 7673, 8191, 12281, 16381, 24571, 32749 };
111 #define NPRIMES (sizeof(primes) / sizeof(primes[0]))
114 * General routine to allocate a prime number sized hash table.
116 void *
117 drm_phashinit(int elements, struct malloc_type *type, u_long *nentries)
119 long hashsize;
120 LIST_HEAD(generic, generic) *hashtbl;
121 int i;
123 if (elements <= 0)
124 panic("phashinit: bad elements");
125 for (i = 1, hashsize = primes[1]; hashsize <= elements;) {
126 i++;
127 if (i == NPRIMES)
128 break;
129 hashsize = primes[i];
131 hashsize = primes[i - 1];
132 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl), type, M_WAITOK);
133 for (i = 0; i < hashsize; i++)
134 LIST_INIT(&hashtbl[i]);
135 *nentries = hashsize;
136 return (hashtbl);