Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
namedb.h
Go to the documentation of this file.
1 #ifndef __NOUVEAU_NAMEDB_H__
2 #define __NOUVEAU_NAMEDB_H__
3 
4 #include <core/parent.h>
5 
6 struct nouveau_handle;
7 
8 struct nouveau_namedb {
11  struct list_head list;
12 };
13 
14 static inline struct nouveau_namedb *
15 nv_namedb(void *obj)
16 {
17 #if CONFIG_NOUVEAU_DEBUG >= NV_DBG_PARANOIA
19  nv_assert("BAD CAST -> NvNameDB, %08x", nv_hclass(obj));
20 #endif
21  return obj;
22 }
23 
24 #define nouveau_namedb_create(p,e,c,v,s,m,d) \
25  nouveau_namedb_create_((p), (e), (c), (v), (s), (m), \
26  sizeof(**d), (void **)d)
27 #define nouveau_namedb_init(p) \
28  nouveau_parent_init(&(p)->base)
29 #define nouveau_namedb_fini(p,s) \
30  nouveau_parent_fini(&(p)->base, (s))
31 #define nouveau_namedb_destroy(p) \
32  nouveau_parent_destroy(&(p)->base)
33 
35  struct nouveau_oclass *, u32 pclass,
36  struct nouveau_oclass *, u32 engcls,
37  int size, void **);
38 
40  struct nouveau_oclass *, void *, u32,
41  struct nouveau_object **);
42 #define _nouveau_namedb_dtor _nouveau_parent_dtor
43 #define _nouveau_namedb_init _nouveau_parent_init
44 #define _nouveau_namedb_fini _nouveau_parent_fini
45 
47  struct nouveau_object *, struct nouveau_handle *);
49 
54 void nouveau_namedb_put(struct nouveau_handle *);
55 
56 #endif