drm/nouveau: require reservations for nouveau_fence_sync and nouveau_bo_fence
[deliverable/linux.git] / drivers / gpu / drm / ttm / ttm_bo_manager.c
CommitLineData
d961db75
BS
1/**************************************************************************
2 *
d7a67cb1 3 * Copyright (c) 2007-2010 VMware, Inc., Palo Alto, CA., USA
d961db75
BS
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 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
29 */
30
760285e7
DH
31#include <drm/ttm/ttm_module.h>
32#include <drm/ttm/ttm_bo_driver.h>
33#include <drm/ttm/ttm_placement.h>
34#include <drm/drm_mm.h>
d961db75 35#include <linux/slab.h>
d7a67cb1 36#include <linux/spinlock.h>
d961db75
BS
37#include <linux/module.h>
38
d7a67cb1
TH
39/**
40 * Currently we use a spinlock for the lock, but a mutex *may* be
41 * more appropriate to reduce scheduling latency if the range manager
42 * ends up with very fragmented allocation patterns.
43 */
44
45struct ttm_range_manager {
46 struct drm_mm mm;
47 spinlock_t lock;
48};
49
d961db75
BS
50static int ttm_bo_man_get_node(struct ttm_mem_type_manager *man,
51 struct ttm_buffer_object *bo,
f1217ed0 52 const struct ttm_place *place,
d961db75
BS
53 struct ttm_mem_reg *mem)
54{
d7a67cb1
TH
55 struct ttm_range_manager *rman = (struct ttm_range_manager *) man->priv;
56 struct drm_mm *mm = &rman->mm;
d961db75 57 struct drm_mm_node *node = NULL;
62347f9e 58 enum drm_mm_allocator_flags aflags = DRM_MM_CREATE_DEFAULT;
d961db75
BS
59 unsigned long lpfn;
60 int ret;
61
f1217ed0 62 lpfn = place->lpfn;
d961db75
BS
63 if (!lpfn)
64 lpfn = man->size;
d961db75 65
78af329a
DH
66 node = kzalloc(sizeof(*node), GFP_KERNEL);
67 if (!node)
68 return -ENOMEM;
69
f1217ed0 70 if (place->flags & TTM_PL_FLAG_TOPDOWN)
62347f9e
LK
71 aflags = DRM_MM_CREATE_TOP;
72
78af329a 73 spin_lock(&rman->lock);
62347f9e
LK
74 ret = drm_mm_insert_node_in_range_generic(mm, node, mem->num_pages,
75 mem->page_alignment, 0,
f1217ed0 76 place->fpfn, lpfn,
62347f9e
LK
77 DRM_MM_SEARCH_BEST,
78 aflags);
78af329a
DH
79 spin_unlock(&rman->lock);
80
81 if (unlikely(ret)) {
82 kfree(node);
83 } else {
84 mem->mm_node = node;
85 mem->start = node->start;
86 }
d961db75 87
d961db75
BS
88 return 0;
89}
90
91static void ttm_bo_man_put_node(struct ttm_mem_type_manager *man,
92 struct ttm_mem_reg *mem)
93{
d7a67cb1 94 struct ttm_range_manager *rman = (struct ttm_range_manager *) man->priv;
d961db75
BS
95
96 if (mem->mm_node) {
d7a67cb1 97 spin_lock(&rman->lock);
78af329a 98 drm_mm_remove_node(mem->mm_node);
d7a67cb1 99 spin_unlock(&rman->lock);
78af329a
DH
100
101 kfree(mem->mm_node);
d961db75
BS
102 mem->mm_node = NULL;
103 }
104}
105
106static int ttm_bo_man_init(struct ttm_mem_type_manager *man,
107 unsigned long p_size)
108{
d7a67cb1 109 struct ttm_range_manager *rman;
d961db75 110
d7a67cb1
TH
111 rman = kzalloc(sizeof(*rman), GFP_KERNEL);
112 if (!rman)
d961db75
BS
113 return -ENOMEM;
114
77ef8bbc 115 drm_mm_init(&rman->mm, 0, p_size);
d7a67cb1
TH
116 spin_lock_init(&rman->lock);
117 man->priv = rman;
d961db75
BS
118 return 0;
119}
120
121static int ttm_bo_man_takedown(struct ttm_mem_type_manager *man)
122{
d7a67cb1
TH
123 struct ttm_range_manager *rman = (struct ttm_range_manager *) man->priv;
124 struct drm_mm *mm = &rman->mm;
d961db75 125
d7a67cb1 126 spin_lock(&rman->lock);
d961db75
BS
127 if (drm_mm_clean(mm)) {
128 drm_mm_takedown(mm);
d7a67cb1
TH
129 spin_unlock(&rman->lock);
130 kfree(rman);
d961db75 131 man->priv = NULL;
d7a67cb1
TH
132 return 0;
133 }
134 spin_unlock(&rman->lock);
135 return -EBUSY;
d961db75
BS
136}
137
138static void ttm_bo_man_debug(struct ttm_mem_type_manager *man,
139 const char *prefix)
140{
d7a67cb1 141 struct ttm_range_manager *rman = (struct ttm_range_manager *) man->priv;
d961db75 142
d7a67cb1
TH
143 spin_lock(&rman->lock);
144 drm_mm_debug_table(&rman->mm, prefix);
145 spin_unlock(&rman->lock);
d961db75
BS
146}
147
148const struct ttm_mem_type_manager_func ttm_bo_manager_func = {
149 ttm_bo_man_init,
150 ttm_bo_man_takedown,
151 ttm_bo_man_get_node,
152 ttm_bo_man_put_node,
153 ttm_bo_man_debug
154};
155EXPORT_SYMBOL(ttm_bo_manager_func);
This page took 0.24809 seconds and 5 git commands to generate.