Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1120 serge 1
/**************************************************************************
2
 *
3
 * Copyright 2006-2008 Tungsten Graphics, Inc., Cedar Park, TX. 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
 * Authors:
30
 * Thomas Hellstrom 
31
 */
32
 
33
#ifndef _DRM_MM_H_
34
#define _DRM_MM_H_
35
 
36
/*
37
 * Generic range manager structs
38
 */
39
#include 
40
#include 
41
#include 
42
 
43
#define spin_lock_init(x)
44
#define spin_lock(x)
45
#define spin_unlock(x)
46
 
47
struct drm_mm_node {
48
	struct list_head fl_entry;
49
	struct list_head ml_entry;
50
	int free;
51
	unsigned long start;
52
	unsigned long size;
53
	struct drm_mm *mm;
54
	void *private;
55
};
56
 
57
struct drm_mm {
58
	struct list_head fl_entry;
59
	struct list_head ml_entry;
60
	struct list_head unused_nodes;
61
	int num_unused;
62
//   spinlock_t unused_lock;
63
};
64
 
65
/*
66
 * Basic range manager support (drm_mm.c)
67
 */
68
extern struct drm_mm_node *drm_mm_get_block_generic(struct drm_mm_node *node,
69
						    unsigned long size,
70
						    unsigned alignment,
71
						    int atomic);
72
static inline struct drm_mm_node *drm_mm_get_block(struct drm_mm_node *parent,
73
						   unsigned long size,
74
						   unsigned alignment)
75
{
76
	return drm_mm_get_block_generic(parent, size, alignment, 0);
77
}
78
static inline struct drm_mm_node *drm_mm_get_block_atomic(struct drm_mm_node *parent,
79
							  unsigned long size,
80
							  unsigned alignment)
81
{
82
	return drm_mm_get_block_generic(parent, size, alignment, 1);
83
}
84
extern void drm_mm_put_block(struct drm_mm_node *cur);
85
extern struct drm_mm_node *drm_mm_search_free(const struct drm_mm *mm,
86
					      unsigned long size,
87
					      unsigned alignment,
88
					      int best_match);
89
extern int drm_mm_init(struct drm_mm *mm, unsigned long start,
90
		       unsigned long size);
91
extern void drm_mm_takedown(struct drm_mm *mm);
92
extern int drm_mm_clean(struct drm_mm *mm);
93
extern unsigned long drm_mm_tail_space(struct drm_mm *mm);
94
extern int drm_mm_remove_space_from_tail(struct drm_mm *mm,
95
					 unsigned long size);
96
extern int drm_mm_add_space_to_tail(struct drm_mm *mm,
97
				    unsigned long size, int atomic);
98
extern int drm_mm_pre_get(struct drm_mm *mm);
99
 
100
static inline struct drm_mm *drm_get_mm(struct drm_mm_node *block)
101
{
102
	return block->mm;
103
}
104
 
105
#endif