blob: 655d57f188d9a46deec503cc93b349f0ee3270ec [file] [log] [blame]
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +02001/**************************************************************************
2 *
3 * Copyright © 2011 VMware, Inc., Palo Alto, CA., 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
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/ttm/ttm_placement.h>
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +020029
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/drmP.h>
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +020031#include "vmwgfx_drv.h"
32
33
34/**
Thomas Hellstromb37a6b92011-10-04 20:13:28 +020035 * vmw_dmabuf_to_placement - Validate a buffer to placement.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +020036 *
Thomas Hellstromb37a6b92011-10-04 20:13:28 +020037 * @dev_priv: Driver private.
38 * @buf: DMA buffer to move.
39 * @pin: Pin buffer if true.
40 * @interruptible: Use interruptible wait.
41 *
42 * May only be called by the current master since it assumes that the
43 * master lock is the current master's lock.
44 * This function takes the master's lock in write mode.
Thomas Hellstrome2fa3a72011-10-04 20:13:30 +020045 * Flushes and unpins the query bo to avoid failures.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +020046 *
47 * Returns
48 * -ERESTARTSYS if interrupted by a signal.
49 */
50int vmw_dmabuf_to_placement(struct vmw_private *dev_priv,
51 struct vmw_dma_buffer *buf,
52 struct ttm_placement *placement,
53 bool interruptible)
54{
55 struct vmw_master *vmaster = dev_priv->active_master;
56 struct ttm_buffer_object *bo = &buf->base;
57 int ret;
58
59 ret = ttm_write_lock(&vmaster->lock, interruptible);
60 if (unlikely(ret != 0))
61 return ret;
62
Thomas Hellstromc0951b72012-11-20 12:19:35 +000063 vmw_execbuf_release_pinned_bo(dev_priv);
Thomas Hellstrome2fa3a72011-10-04 20:13:30 +020064
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +020065 ret = ttm_bo_reserve(bo, interruptible, false, false, 0);
66 if (unlikely(ret != 0))
67 goto err;
68
69 ret = ttm_bo_validate(bo, placement, interruptible, false, false);
70
71 ttm_bo_unreserve(bo);
72
73err:
74 ttm_write_unlock(&vmaster->lock);
75 return ret;
76}
77
78/**
Thomas Hellstromb37a6b92011-10-04 20:13:28 +020079 * vmw_dmabuf_to_vram_or_gmr - Move a buffer to vram or gmr.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +020080 *
Thomas Hellstromb37a6b92011-10-04 20:13:28 +020081 * May only be called by the current master since it assumes that the
82 * master lock is the current master's lock.
83 * This function takes the master's lock in write mode.
Thomas Hellstrome2fa3a72011-10-04 20:13:30 +020084 * Flushes and unpins the query bo if @pin == true to avoid failures.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +020085 *
86 * @dev_priv: Driver private.
87 * @buf: DMA buffer to move.
88 * @pin: Pin buffer if true.
89 * @interruptible: Use interruptible wait.
90 *
91 * Returns
92 * -ERESTARTSYS if interrupted by a signal.
93 */
94int vmw_dmabuf_to_vram_or_gmr(struct vmw_private *dev_priv,
95 struct vmw_dma_buffer *buf,
96 bool pin, bool interruptible)
97{
98 struct vmw_master *vmaster = dev_priv->active_master;
99 struct ttm_buffer_object *bo = &buf->base;
100 struct ttm_placement *placement;
101 int ret;
102
103 ret = ttm_write_lock(&vmaster->lock, interruptible);
104 if (unlikely(ret != 0))
105 return ret;
106
Thomas Hellstrome2fa3a72011-10-04 20:13:30 +0200107 if (pin)
Thomas Hellstromc0951b72012-11-20 12:19:35 +0000108 vmw_execbuf_release_pinned_bo(dev_priv);
Thomas Hellstrome2fa3a72011-10-04 20:13:30 +0200109
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200110 ret = ttm_bo_reserve(bo, interruptible, false, false, 0);
111 if (unlikely(ret != 0))
112 goto err;
113
114 /**
115 * Put BO in VRAM if there is space, otherwise as a GMR.
116 * If there is no space in VRAM and GMR ids are all used up,
117 * start evicting GMRs to make room. If the DMA buffer can't be
118 * used as a GMR, this will return -ENOMEM.
119 */
120
121 if (pin)
122 placement = &vmw_vram_gmr_ne_placement;
123 else
124 placement = &vmw_vram_gmr_placement;
125
126 ret = ttm_bo_validate(bo, placement, interruptible, false, false);
127 if (likely(ret == 0) || ret == -ERESTARTSYS)
128 goto err_unreserve;
129
130
131 /**
132 * If that failed, try VRAM again, this time evicting
133 * previous contents.
134 */
135
136 if (pin)
137 placement = &vmw_vram_ne_placement;
138 else
139 placement = &vmw_vram_placement;
140
141 ret = ttm_bo_validate(bo, placement, interruptible, false, false);
142
143err_unreserve:
144 ttm_bo_unreserve(bo);
145err:
146 ttm_write_unlock(&vmaster->lock);
147 return ret;
148}
149
150/**
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200151 * vmw_dmabuf_to_vram - Move a buffer to vram.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200152 *
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200153 * May only be called by the current master since it assumes that the
154 * master lock is the current master's lock.
155 * This function takes the master's lock in write mode.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200156 *
157 * @dev_priv: Driver private.
158 * @buf: DMA buffer to move.
159 * @pin: Pin buffer in vram if true.
160 * @interruptible: Use interruptible wait.
161 *
162 * Returns
163 * -ERESTARTSYS if interrupted by a signal.
164 */
165int vmw_dmabuf_to_vram(struct vmw_private *dev_priv,
166 struct vmw_dma_buffer *buf,
167 bool pin, bool interruptible)
168{
169 struct ttm_placement *placement;
170
171 if (pin)
172 placement = &vmw_vram_ne_placement;
173 else
174 placement = &vmw_vram_placement;
175
176 return vmw_dmabuf_to_placement(dev_priv, buf,
177 placement,
178 interruptible);
179}
180
181/**
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200182 * vmw_dmabuf_to_start_of_vram - Move a buffer to start of vram.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200183 *
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200184 * May only be called by the current master since it assumes that the
185 * master lock is the current master's lock.
186 * This function takes the master's lock in write mode.
Thomas Hellstrome2fa3a72011-10-04 20:13:30 +0200187 * Flushes and unpins the query bo if @pin == true to avoid failures.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200188 *
189 * @dev_priv: Driver private.
190 * @buf: DMA buffer to move.
191 * @pin: Pin buffer in vram if true.
192 * @interruptible: Use interruptible wait.
193 *
194 * Returns
195 * -ERESTARTSYS if interrupted by a signal.
196 */
197int vmw_dmabuf_to_start_of_vram(struct vmw_private *dev_priv,
198 struct vmw_dma_buffer *buf,
199 bool pin, bool interruptible)
200{
201 struct vmw_master *vmaster = dev_priv->active_master;
202 struct ttm_buffer_object *bo = &buf->base;
203 struct ttm_placement placement;
204 int ret = 0;
205
206 if (pin)
207 placement = vmw_vram_ne_placement;
208 else
209 placement = vmw_vram_placement;
210 placement.lpfn = bo->num_pages;
211
212 ret = ttm_write_lock(&vmaster->lock, interruptible);
213 if (unlikely(ret != 0))
214 return ret;
215
Thomas Hellstrome2fa3a72011-10-04 20:13:30 +0200216 if (pin)
Thomas Hellstromc0951b72012-11-20 12:19:35 +0000217 vmw_execbuf_release_pinned_bo(dev_priv);
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200218 ret = ttm_bo_reserve(bo, interruptible, false, false, 0);
219 if (unlikely(ret != 0))
220 goto err_unlock;
221
222 /* Is this buffer already in vram but not at the start of it? */
223 if (bo->mem.mem_type == TTM_PL_VRAM &&
224 bo->mem.start < bo->num_pages &&
225 bo->mem.start > 0)
226 (void) ttm_bo_validate(bo, &vmw_sys_placement, false,
227 false, false);
228
229 ret = ttm_bo_validate(bo, &placement, interruptible, false, false);
230
231 /* For some reason we didn't up at the start of vram */
232 WARN_ON(ret == 0 && bo->offset != 0);
233
234 ttm_bo_unreserve(bo);
235err_unlock:
236 ttm_write_unlock(&vmaster->lock);
237
238 return ret;
239}
240
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200241
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200242/**
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200243 * vmw_dmabuf_upin - Unpin the buffer given buffer, does not move the buffer.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200244 *
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200245 * May only be called by the current master since it assumes that the
246 * master lock is the current master's lock.
247 * This function takes the master's lock in write mode.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200248 *
249 * @dev_priv: Driver private.
250 * @buf: DMA buffer to unpin.
251 * @interruptible: Use interruptible wait.
252 *
253 * Returns
254 * -ERESTARTSYS if interrupted by a signal.
255 */
256int vmw_dmabuf_unpin(struct vmw_private *dev_priv,
257 struct vmw_dma_buffer *buf,
258 bool interruptible)
259{
260 /*
261 * We could in theory early out if the buffer is
262 * unpinned but we need to lock and reserve the buffer
263 * anyways so we don't gain much by that.
264 */
265 return vmw_dmabuf_to_placement(dev_priv, buf,
266 &vmw_evictable_placement,
267 interruptible);
268}
269
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200270
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200271/**
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200272 * vmw_bo_get_guest_ptr - Get the guest ptr representing the current placement
273 * of a buffer.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200274 *
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200275 * @bo: Pointer to a struct ttm_buffer_object. Must be pinned or reserved.
276 * @ptr: SVGAGuestPtr returning the result.
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200277 */
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200278void vmw_bo_get_guest_ptr(const struct ttm_buffer_object *bo,
279 SVGAGuestPtr *ptr)
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200280{
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200281 if (bo->mem.mem_type == TTM_PL_VRAM) {
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200282 ptr->gmrId = SVGA_GMR_FRAMEBUFFER;
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200283 ptr->offset = bo->offset;
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200284 } else {
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200285 ptr->gmrId = bo->mem.start;
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200286 ptr->offset = 0;
287 }
288}
Thomas Hellstrome2fa3a72011-10-04 20:13:30 +0200289
290
291/**
292 * vmw_bo_pin - Pin or unpin a buffer object without moving it.
293 *
294 * @bo: The buffer object. Must be reserved, and present either in VRAM
295 * or GMR memory.
296 * @pin: Whether to pin or unpin.
297 *
298 */
299void vmw_bo_pin(struct ttm_buffer_object *bo, bool pin)
300{
301 uint32_t pl_flags;
302 struct ttm_placement placement;
303 uint32_t old_mem_type = bo->mem.mem_type;
304 int ret;
305
Maarten Lankhorst94baf0e2012-10-12 14:59:50 +0000306 BUG_ON(!ttm_bo_is_reserved(bo));
Thomas Hellstrome2fa3a72011-10-04 20:13:30 +0200307 BUG_ON(old_mem_type != TTM_PL_VRAM &&
308 old_mem_type != VMW_PL_FLAG_GMR);
309
310 pl_flags = TTM_PL_FLAG_VRAM | VMW_PL_FLAG_GMR | TTM_PL_FLAG_CACHED;
311 if (pin)
312 pl_flags |= TTM_PL_FLAG_NO_EVICT;
313
314 memset(&placement, 0, sizeof(placement));
315 placement.num_placement = 1;
316 placement.placement = &pl_flags;
317
318 ret = ttm_bo_validate(bo, &placement, false, true, true);
319
320 BUG_ON(ret != 0 || bo->mem.mem_type != old_mem_type);
321}