Blame view

include/drm/drm_sman.h 5.83 KB
3a1bd924f   Thomas Hellstrom   drm: add simple D...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  /**************************************************************************
   *
   * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND., USA.
   * All Rights Reserved.
   *
   * Permission is hereby granted, free of charge, to any person obtaining a
   * copy of this software and associated documentation files (the
   * "Software"), to deal in the Software without restriction, including
   * without limitation the rights to use, copy, modify, merge, publish,
   * distribute, sub license, and/or sell copies of the Software, and to
   * permit persons to whom the Software is furnished to do so, subject to
   * the following conditions:
   *
   * The above copyright notice and this permission notice (including the
   * next paragraph) shall be included in all copies or substantial portions
   * of the Software.
   *
   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
   * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
   * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
   * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
   * USE OR OTHER DEALINGS IN THE SOFTWARE.
   *
   *
   **************************************************************************/
  /*
   * Simple memory MANager interface that keeps track on allocate regions on a
   * per "owner" basis. All regions associated with an "owner" can be released
   * with a simple call. Typically if the "owner" exists. The owner is any
   * "unsigned long" identifier. Can typically be a pointer to a file private
   * struct or a context identifier.
   *
   * Authors:
96de0e252   Jan Engelhardt   Convert files to ...
36
   * Thomas Hellström <thomas-at-tungstengraphics-dot-com>
3a1bd924f   Thomas Hellstrom   drm: add simple D...
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
   */
  
  #ifndef DRM_SMAN_H
  #define DRM_SMAN_H
  
  #include "drmP.h"
  #include "drm_hashtab.h"
  
  /*
   * A class that is an abstration of a simple memory allocator.
   * The sman implementation provides a default such allocator
   * using the drm_mm.c implementation. But the user can replace it.
   * See the SiS implementation, which may use the SiS FB kernel module
   * for memory management.
   */
9698b4dba   Dave Airlie   drm: de-typedef sman
52
  struct drm_sman_mm {
3a1bd924f   Thomas Hellstrom   drm: add simple D...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  	/* private info. If allocated, needs to be destroyed by the destroy
  	   function */
  	void *private;
  
  	/* Allocate a memory block with given size and alignment.
  	   Return an opaque reference to the memory block */
  
  	void *(*allocate) (void *private, unsigned long size,
  			   unsigned alignment);
  
  	/* Free a memory block. "ref" is the opaque reference that we got from
  	   the "alloc" function */
  
  	void (*free) (void *private, void *ref);
  
  	/* Free all resources associated with this allocator */
  
  	void (*destroy) (void *private);
  
  	/* Return a memory offset from the opaque reference returned from the
  	   "alloc" function */
  
  	unsigned long (*offset) (void *private, void *ref);
9698b4dba   Dave Airlie   drm: de-typedef sman
76
  };
3a1bd924f   Thomas Hellstrom   drm: add simple D...
77

9698b4dba   Dave Airlie   drm: de-typedef sman
78
  struct drm_memblock_item {
3a1bd924f   Thomas Hellstrom   drm: add simple D...
79
  	struct list_head owner_list;
e0be428e6   Dave Airlie   drm: detypedef th...
80
  	struct drm_hash_item user_hash;
3a1bd924f   Thomas Hellstrom   drm: add simple D...
81
  	void *mm_info;
9698b4dba   Dave Airlie   drm: de-typedef sman
82
  	struct drm_sman_mm *mm;
3a1bd924f   Thomas Hellstrom   drm: add simple D...
83
  	struct drm_sman *sman;
9698b4dba   Dave Airlie   drm: de-typedef sman
84
  };
3a1bd924f   Thomas Hellstrom   drm: add simple D...
85

9698b4dba   Dave Airlie   drm: de-typedef sman
86
87
  struct drm_sman {
  	struct drm_sman_mm *mm;
3a1bd924f   Thomas Hellstrom   drm: add simple D...
88
  	int num_managers;
e0be428e6   Dave Airlie   drm: detypedef th...
89
90
  	struct drm_open_hash owner_hash_tab;
  	struct drm_open_hash user_hash_tab;
3a1bd924f   Thomas Hellstrom   drm: add simple D...
91
  	struct list_head owner_items;
9698b4dba   Dave Airlie   drm: de-typedef sman
92
  };
3a1bd924f   Thomas Hellstrom   drm: add simple D...
93
94
95
96
97
  
  /*
   * Take down a memory manager. This function should only be called after a
   * successful init and after a call to drm_sman_cleanup.
   */
9698b4dba   Dave Airlie   drm: de-typedef sman
98
  extern void drm_sman_takedown(struct drm_sman * sman);
3a1bd924f   Thomas Hellstrom   drm: add simple D...
99
100
101
102
103
104
105
106
107
108
109
110
111
  
  /*
   * Allocate structures for a manager.
   * num_managers are the number of memory pools to manage. (VRAM, AGP, ....)
   * user_order is the log2 of the number of buckets in the user hash table.
   *	    set this to approximately log2 of the max number of memory regions
   *	    that will be allocated for _all_ pools together.
   * owner_order is the log2 of the number of buckets in the owner hash table.
   *	    set this to approximately log2 of
   *	    the number of client file connections that will
   *	    be using the manager.
   *
   */
9698b4dba   Dave Airlie   drm: de-typedef sman
112
  extern int drm_sman_init(struct drm_sman * sman, unsigned int num_managers,
3a1bd924f   Thomas Hellstrom   drm: add simple D...
113
114
115
116
117
118
  			 unsigned int user_order, unsigned int owner_order);
  
  /*
   * Initialize a drm_mm.c allocator. Should be called only once for each
   * manager unless a customized allogator is used.
   */
9698b4dba   Dave Airlie   drm: de-typedef sman
119
  extern int drm_sman_set_range(struct drm_sman * sman, unsigned int manager,
3a1bd924f   Thomas Hellstrom   drm: add simple D...
120
121
122
123
124
125
126
  			      unsigned long start, unsigned long size);
  
  /*
   * Initialize a customized allocator for one of the managers.
   * (See the SiS module). The object pointed to by "allocator" is copied,
   * so it can be destroyed after this call.
   */
9698b4dba   Dave Airlie   drm: de-typedef sman
127
128
  extern int drm_sman_set_manager(struct drm_sman * sman, unsigned int mananger,
  				struct drm_sman_mm * allocator);
3a1bd924f   Thomas Hellstrom   drm: add simple D...
129
130
131
132
  
  /*
   * Allocate a memory block. Aligment is not implemented yet.
   */
9698b4dba   Dave Airlie   drm: de-typedef sman
133
134
135
136
137
  extern struct drm_memblock_item *drm_sman_alloc(struct drm_sman * sman,
  						unsigned int manager,
  						unsigned long size,
  						unsigned alignment,
  						unsigned long owner);
3a1bd924f   Thomas Hellstrom   drm: add simple D...
138
139
140
  /*
   * Free a memory block identified by its user hash key.
   */
9698b4dba   Dave Airlie   drm: de-typedef sman
141
  extern int drm_sman_free_key(struct drm_sman * sman, unsigned int key);
3a1bd924f   Thomas Hellstrom   drm: add simple D...
142
143
  
  /*
a1d0fcf5a   Andrew Morton   drm: remove FALSE...
144
   * returns 1 iff there are no stale memory blocks associated with this owner.
3a1bd924f   Thomas Hellstrom   drm: add simple D...
145
146
147
148
   * Typically called to determine if we need to idle the hardware and call
   * drm_sman_owner_cleanup. If there are no stale memory blocks, it removes all
   * resources associated with owner.
   */
9698b4dba   Dave Airlie   drm: de-typedef sman
149
  extern int drm_sman_owner_clean(struct drm_sman * sman, unsigned long owner);
3a1bd924f   Thomas Hellstrom   drm: add simple D...
150
151
152
153
154
155
156
157
  
  /*
   * Frees all stale memory blocks associated with this owner. Note that this
   * requires that the hardware is finished with all blocks, so the graphics engine
   * should be idled before this call is made. This function also frees
   * any resources associated with "owner" and should be called when owner
   * is not going to be referenced anymore.
   */
9698b4dba   Dave Airlie   drm: de-typedef sman
158
  extern void drm_sman_owner_cleanup(struct drm_sman * sman, unsigned long owner);
3a1bd924f   Thomas Hellstrom   drm: add simple D...
159
160
161
162
163
  
  /*
   * Frees all stale memory blocks associated with the memory manager.
   * See idling above.
   */
9698b4dba   Dave Airlie   drm: de-typedef sman
164
  extern void drm_sman_cleanup(struct drm_sman * sman);
3a1bd924f   Thomas Hellstrom   drm: add simple D...
165
166
  
  #endif