2006-08-25 10:05:35 -06:00
|
|
|
|
/**************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* 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 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.
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
|
* of the Software.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
/*
|
|
|
|
|
* Authors: Thomas Hellstr<EFBFBD>m <thomas-at-tungstengraphics-dot-com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "drmP.h"
|
|
|
|
|
|
2006-08-25 12:03:39 -06:00
|
|
|
|
/*
|
|
|
|
|
* Buffer object locking policy:
|
|
|
|
|
* Lock dev->struct_mutex;
|
|
|
|
|
* Increase usage
|
|
|
|
|
* Unlock dev->struct_mutex;
|
|
|
|
|
* Lock buffer->mutex;
|
|
|
|
|
* Do whatever you want;
|
|
|
|
|
* Unlock buffer->mutex;
|
|
|
|
|
* Decrease usage. Call destruction if zero.
|
|
|
|
|
*
|
|
|
|
|
* User object visibility ups usage just once, since it has its own
|
|
|
|
|
* refcounting.
|
|
|
|
|
*
|
|
|
|
|
* Destruction:
|
|
|
|
|
* lock dev->struct_mutex;
|
|
|
|
|
* Verify that usage is zero. Otherwise unlock and continue.
|
|
|
|
|
* Destroy object.
|
|
|
|
|
* unlock dev->struct_mutex;
|
|
|
|
|
*
|
|
|
|
|
* Mutex and spinlock locking orders:
|
|
|
|
|
* 1.) Buffer mutex
|
|
|
|
|
* 2.) Refer to ttm locking orders.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-08-30 09:40:07 -06:00
|
|
|
|
#define DRM_FLAG_MASKED(_old, _new, _mask) {\
|
|
|
|
|
(_old) ^= (((_old) ^ (_new)) & (_mask)); \
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
/*
|
2006-08-30 12:23:40 -06:00
|
|
|
|
* bo locked.
|
2006-08-25 10:05:35 -06:00
|
|
|
|
*/
|
|
|
|
|
|
2006-08-30 12:23:40 -06:00
|
|
|
|
static int drm_move_tt_to_local(drm_buffer_object_t * buf)
|
2006-08-25 10:05:35 -06:00
|
|
|
|
{
|
|
|
|
|
drm_device_t *dev = buf->dev;
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
BUG_ON(!buf->tt);
|
|
|
|
|
|
2006-08-30 12:23:40 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-08-25 10:05:35 -06:00
|
|
|
|
drm_unbind_ttm_region(buf->ttm_region);
|
|
|
|
|
drm_mm_put_block(&bm->tt_manager, buf->tt);
|
|
|
|
|
buf->tt = NULL;
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
buf->flags &= ~DRM_BO_MASK_MEM;
|
|
|
|
|
buf->flags |= DRM_BO_FLAG_MEM_LOCAL | DRM_BO_FLAG_CACHED;
|
2006-09-01 03:23:21 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-31 07:36:40 -06:00
|
|
|
|
/*
|
|
|
|
|
* Lock dev->struct_mutex
|
|
|
|
|
*/
|
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
static void drm_bo_destroy_locked(drm_device_t * dev, drm_buffer_object_t * bo)
|
2006-08-25 10:05:35 -06:00
|
|
|
|
{
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
|
|
|
|
|
2006-09-04 08:57:20 -06:00
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, 0, _DRM_BO_FLAG_UNFENCED);
|
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
if (bo->fence) {
|
|
|
|
|
if (!drm_fence_object_signaled(bo->fence, bo->fence_flags)) {
|
2006-09-12 04:01:00 -06:00
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
drm_fence_object_flush(dev, bo->fence, bo->fence_flags);
|
|
|
|
|
list_add_tail(&bo->ddestroy, &bm->ddestroy);
|
2006-09-12 04:01:00 -06:00
|
|
|
|
schedule_delayed_work(&bm->wq,
|
|
|
|
|
((DRM_HZ/100) < 1) ? 1 : DRM_HZ/100);
|
2006-08-25 10:05:35 -06:00
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
drm_fence_usage_deref_locked(dev, bo->fence);
|
|
|
|
|
bo->fence = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* Take away from lru lists.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
|
list_del_init(&bo->head);
|
2006-08-25 10:05:35 -06:00
|
|
|
|
|
|
|
|
|
if (bo->tt) {
|
2006-09-12 04:01:00 -06:00
|
|
|
|
drm_unbind_ttm_region(bo->ttm_region);
|
2006-09-01 03:23:21 -06:00
|
|
|
|
drm_mm_put_block(&bm->tt_manager, bo->tt);
|
|
|
|
|
bo->tt = NULL;
|
2006-08-25 10:05:35 -06:00
|
|
|
|
}
|
|
|
|
|
if (bo->vram) {
|
|
|
|
|
drm_mm_put_block(&bm->vram_manager, bo->vram);
|
|
|
|
|
bo->vram = NULL;
|
|
|
|
|
}
|
2006-08-30 05:04:08 -06:00
|
|
|
|
if (bo->ttm_region) {
|
|
|
|
|
drm_destroy_ttm_region(bo->ttm_region);
|
|
|
|
|
}
|
|
|
|
|
if (bo->ttm_object) {
|
|
|
|
|
drm_ttm_object_deref_locked(dev, bo->ttm_object);
|
|
|
|
|
}
|
2006-08-25 10:05:35 -06:00
|
|
|
|
drm_free(bo, sizeof(*bo), DRM_MEM_BUFOBJ);
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
static void drm_bo_delayed_delete(drm_device_t * dev)
|
2006-08-31 07:36:40 -06:00
|
|
|
|
{
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2006-08-31 07:36:40 -06:00
|
|
|
|
drm_buffer_object_t *entry, *next;
|
|
|
|
|
drm_fence_object_t *fence;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
list_for_each_entry_safe(entry, next, &bm->ddestroy, ddestroy) {
|
|
|
|
|
fence = entry->fence;
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (fence && drm_fence_object_signaled(fence,
|
2006-08-31 07:36:40 -06:00
|
|
|
|
entry->fence_flags)) {
|
|
|
|
|
drm_fence_usage_deref_locked(dev, fence);
|
|
|
|
|
entry->fence = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (!entry->fence) {
|
2006-09-08 09:24:38 -06:00
|
|
|
|
#ifdef BODEBUG
|
|
|
|
|
DRM_ERROR("Destroying delayed buffer object\n");
|
|
|
|
|
#endif
|
2006-08-31 07:36:40 -06:00
|
|
|
|
list_del(&entry->ddestroy);
|
|
|
|
|
drm_bo_destroy_locked(dev, entry);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
|
static void drm_bo_delayed_workqueue(void *data)
|
2006-08-31 07:36:40 -06:00
|
|
|
|
{
|
2006-08-31 13:42:29 -06:00
|
|
|
|
drm_device_t *dev = (drm_device_t *) data;
|
2006-08-31 07:36:40 -06:00
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
|
#ifdef BODEBUG
|
|
|
|
|
DRM_ERROR("Delayed delete Worker\n");
|
|
|
|
|
#endif
|
2006-08-31 07:36:40 -06:00
|
|
|
|
drm_bo_delayed_delete(dev);
|
2006-09-08 09:24:38 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
if (!list_empty(&bm->ddestroy)) {
|
2006-09-12 04:01:00 -06:00
|
|
|
|
schedule_delayed_work(&bm->wq, ((DRM_HZ/100) < 1) ? 1 : DRM_HZ/100);
|
2006-08-31 07:36:40 -06:00
|
|
|
|
}
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
void drm_bo_usage_deref_locked(drm_device_t * dev, drm_buffer_object_t * bo)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
|
|
|
|
if (atomic_dec_and_test(&bo->usage)) {
|
|
|
|
|
drm_bo_destroy_locked(dev, bo);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-30 13:30:47 -06:00
|
|
|
|
static void drm_bo_base_deref_locked(drm_file_t * priv, drm_user_object_t * uo)
|
|
|
|
|
{
|
|
|
|
|
drm_bo_usage_deref_locked(priv->head->dev,
|
|
|
|
|
drm_user_object_entry(uo, drm_buffer_object_t,
|
|
|
|
|
base));
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
void drm_bo_usage_deref_unlocked(drm_device_t * dev, drm_buffer_object_t * bo)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
|
|
|
|
if (atomic_dec_and_test(&bo->usage)) {
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
if (atomic_read(&bo->usage) == 0)
|
|
|
|
|
drm_bo_destroy_locked(dev, bo);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-05 10:00:25 -06:00
|
|
|
|
/*
|
|
|
|
|
* Note. The caller has to register (if applicable)
|
|
|
|
|
* and deregister fence object usage.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
int drm_fence_buffer_objects(drm_file_t * priv,
|
2006-09-05 10:00:25 -06:00
|
|
|
|
struct list_head *list,
|
|
|
|
|
drm_fence_object_t *fence,
|
|
|
|
|
drm_fence_object_t **used_fence)
|
2006-08-31 13:42:29 -06:00
|
|
|
|
{
|
|
|
|
|
drm_device_t *dev = priv->head->dev;
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
|
|
|
|
|
|
|
|
|
drm_buffer_object_t *entry;
|
|
|
|
|
uint32_t fence_flags = 0;
|
|
|
|
|
int count = 0;
|
|
|
|
|
int ret = 0;
|
|
|
|
|
struct list_head f_list, *l;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
|
if (!list)
|
|
|
|
|
list = &bm->unfenced;
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
list_for_each_entry(entry, list, head) {
|
|
|
|
|
BUG_ON(!(entry->priv_flags & _DRM_BO_FLAG_UNFENCED));
|
|
|
|
|
fence_flags |= entry->fence_flags;
|
|
|
|
|
count++;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
|
if (!count) {
|
|
|
|
|
DRM_ERROR("No buffers to fence\n");
|
|
|
|
|
ret = -EINVAL;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
goto out;
|
2006-09-08 09:24:38 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Transfer to a local list before we release the dev->struct_mutex;
|
|
|
|
|
* This is so we don't get any new unfenced objects while fencing
|
|
|
|
|
* these.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
list_add_tail(&f_list, list);
|
|
|
|
|
list_del_init(list);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
|
|
|
|
if (fence) {
|
|
|
|
|
if ((fence_flags & fence->type) != fence_flags) {
|
|
|
|
|
DRM_ERROR("Given fence doesn't match buffers "
|
|
|
|
|
"on unfenced list.\n");
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2006-09-08 09:24:38 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-09-05 10:00:25 -06:00
|
|
|
|
ret = drm_fence_object_create(dev, fence_flags, 1, &fence);
|
2006-09-08 09:24:38 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-09-05 10:00:25 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
|
l = f_list.next;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
while (l != &f_list) {
|
2006-08-31 13:42:29 -06:00
|
|
|
|
entry = list_entry(l, drm_buffer_object_t, head);
|
|
|
|
|
atomic_inc(&entry->usage);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
mutex_lock(&entry->mutex);
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-09-08 09:24:38 -06:00
|
|
|
|
list_del_init(l);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (entry->priv_flags & _DRM_BO_FLAG_UNFENCED) {
|
|
|
|
|
count++;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
if (entry->fence)
|
2006-08-31 13:42:29 -06:00
|
|
|
|
drm_fence_usage_deref_locked(dev, entry->fence);
|
|
|
|
|
entry->fence = fence;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
DRM_FLAG_MASKED(entry->priv_flags, 0,
|
2006-08-31 13:42:29 -06:00
|
|
|
|
_DRM_BO_FLAG_UNFENCED);
|
|
|
|
|
DRM_WAKEUP(&entry->event_queue);
|
|
|
|
|
if (entry->flags & DRM_BO_FLAG_NO_EVICT)
|
|
|
|
|
list_add_tail(&entry->head, &bm->other);
|
|
|
|
|
else if (entry->flags & DRM_BO_FLAG_MEM_TT)
|
|
|
|
|
list_add_tail(&entry->head, &bm->tt_lru);
|
|
|
|
|
else if (entry->flags & DRM_BO_FLAG_MEM_VRAM)
|
|
|
|
|
list_add_tail(&entry->head, &bm->vram_lru);
|
|
|
|
|
else
|
|
|
|
|
list_add_tail(&entry->head, &bm->other);
|
2006-09-08 09:24:38 -06:00
|
|
|
|
} else {
|
|
|
|
|
#ifdef BODEBUG
|
|
|
|
|
DRM_ERROR("Huh? Fenced object on unfenced list\n");
|
|
|
|
|
#endif
|
2006-08-31 13:42:29 -06:00
|
|
|
|
}
|
|
|
|
|
mutex_unlock(&entry->mutex);
|
|
|
|
|
drm_bo_usage_deref_locked(dev, entry);
|
|
|
|
|
l = f_list.next;
|
|
|
|
|
}
|
2006-09-05 10:00:25 -06:00
|
|
|
|
atomic_add(count, &fence->usage);
|
2006-09-08 09:24:38 -06:00
|
|
|
|
#ifdef BODEBUG
|
|
|
|
|
DRM_ERROR("Fenced %d buffers\n", count);
|
|
|
|
|
#endif
|
2006-08-31 13:42:29 -06:00
|
|
|
|
out:
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-09-05 10:00:25 -06:00
|
|
|
|
*used_fence = fence;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
2006-09-05 10:00:25 -06:00
|
|
|
|
EXPORT_SYMBOL(drm_fence_buffer_objects);
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2006-08-30 13:30:47 -06:00
|
|
|
|
/*
|
|
|
|
|
* Call bo->mutex locked.
|
|
|
|
|
* Wait until the buffer is idle.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-09-04 13:50:12 -06:00
|
|
|
|
static int drm_bo_wait(drm_buffer_object_t * bo, int lazy, int ignore_signals,
|
|
|
|
|
int no_wait)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
2006-08-30 13:30:47 -06:00
|
|
|
|
|
|
|
|
|
drm_fence_object_t *fence = bo->fence;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if (fence) {
|
|
|
|
|
drm_device_t *dev = bo->dev;
|
|
|
|
|
if (drm_fence_object_signaled(fence, bo->fence_flags)) {
|
|
|
|
|
drm_fence_usage_deref_unlocked(dev, fence);
|
|
|
|
|
bo->fence = NULL;
|
|
|
|
|
return 0;
|
2006-08-30 13:31:38 -06:00
|
|
|
|
}
|
2006-08-30 13:30:47 -06:00
|
|
|
|
if (no_wait)
|
|
|
|
|
return -EBUSY;
|
|
|
|
|
|
|
|
|
|
ret =
|
2006-09-04 13:50:12 -06:00
|
|
|
|
drm_fence_object_wait(dev, fence, lazy, ignore_signals,
|
2006-08-30 13:30:47 -06:00
|
|
|
|
bo->fence_flags);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-30 13:30:47 -06:00
|
|
|
|
drm_fence_usage_deref_unlocked(dev, fence);
|
|
|
|
|
bo->fence = NULL;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* No locking required.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static int drm_bo_evict(drm_buffer_object_t * bo, int tt, int no_wait)
|
|
|
|
|
{
|
|
|
|
|
int ret = 0;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
drm_device_t *dev = bo->dev;
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
2006-08-30 13:30:47 -06:00
|
|
|
|
/*
|
2006-08-31 06:10:13 -06:00
|
|
|
|
* Someone might have modified the buffer before we took the buffer mutex.
|
2006-08-30 13:30:47 -06:00
|
|
|
|
*/
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-30 13:30:47 -06:00
|
|
|
|
mutex_lock(&bo->mutex);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if ((bo->priv_flags & _DRM_BO_FLAG_UNFENCED)
|
|
|
|
|
|| (bo->flags & DRM_BO_FLAG_NO_EVICT))
|
2006-08-30 13:30:47 -06:00
|
|
|
|
goto out;
|
2006-08-30 13:31:38 -06:00
|
|
|
|
if (tt && !bo->tt)
|
2006-08-30 13:30:47 -06:00
|
|
|
|
goto out;
|
|
|
|
|
if (!tt && !bo->vram)
|
|
|
|
|
goto out;
|
|
|
|
|
|
2006-09-04 13:50:12 -06:00
|
|
|
|
ret = drm_bo_wait(bo, 0, 0, no_wait);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
if (tt) {
|
|
|
|
|
ret = drm_move_tt_to_local(bo);
|
|
|
|
|
}
|
|
|
|
|
#if 0
|
|
|
|
|
else {
|
|
|
|
|
ret = drm_move_vram_to_local(bo);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2006-08-31 13:42:29 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
list_del(&bo->head);
|
|
|
|
|
list_add_tail(&bo->head, &bm->other);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, _DRM_BO_FLAG_EVICTED,
|
|
|
|
|
_DRM_BO_FLAG_EVICTED);
|
2006-08-30 13:31:38 -06:00
|
|
|
|
out:
|
2006-08-30 13:30:47 -06:00
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* buf->mutex locked.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
int drm_bo_alloc_space(drm_buffer_object_t * buf, int tt, int no_wait)
|
|
|
|
|
{
|
|
|
|
|
drm_device_t *dev = buf->dev;
|
|
|
|
|
drm_mm_node_t *node;
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
|
|
|
|
drm_buffer_object_t *bo;
|
|
|
|
|
drm_mm_t *mm = (tt) ? &bm->tt_manager : &bm->vram_manager;
|
|
|
|
|
struct list_head *lru;
|
|
|
|
|
unsigned long size = buf->num_pages;
|
|
|
|
|
int ret;
|
|
|
|
|
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
do {
|
|
|
|
|
node = drm_mm_search_free(mm, size, 0, 1);
|
|
|
|
|
if (node)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
lru = (tt) ? &bm->tt_lru : &bm->vram_lru;
|
|
|
|
|
if (lru->next == lru)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
bo = list_entry(lru->next, drm_buffer_object_t, head);
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-30 13:30:47 -06:00
|
|
|
|
atomic_inc(&bo->usage);
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
ret = drm_bo_evict(bo, tt, no_wait);
|
|
|
|
|
drm_bo_usage_deref_unlocked(dev, bo);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
} while (1);
|
|
|
|
|
|
|
|
|
|
if (!node) {
|
|
|
|
|
DRM_ERROR("Out of aperture space\n");
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
node = drm_mm_get_block(node, size, 0);
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
BUG_ON(!node);
|
|
|
|
|
node->private = (void *)buf;
|
|
|
|
|
|
|
|
|
|
if (tt) {
|
|
|
|
|
buf->tt = node;
|
|
|
|
|
} else {
|
|
|
|
|
buf->vram = node;
|
|
|
|
|
}
|
2006-09-08 09:24:38 -06:00
|
|
|
|
buf->offset = node->start * PAGE_SIZE;
|
2006-08-30 13:30:47 -06:00
|
|
|
|
return 0;
|
2006-08-28 08:36:37 -06:00
|
|
|
|
}
|
|
|
|
|
|
2006-08-30 13:31:38 -06:00
|
|
|
|
static int drm_move_local_to_tt(drm_buffer_object_t * bo, int no_wait)
|
2006-08-30 13:30:47 -06:00
|
|
|
|
{
|
|
|
|
|
drm_device_t *dev = bo->dev;
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
2006-09-08 09:24:38 -06:00
|
|
|
|
drm_ttm_backend_t *be;
|
2006-08-30 13:30:47 -06:00
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
BUG_ON(bo->tt);
|
|
|
|
|
ret = drm_bo_alloc_space(bo, 1, no_wait);
|
|
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2006-09-01 10:11:05 -06:00
|
|
|
|
#ifdef BODEBUG
|
2006-09-01 03:23:21 -06:00
|
|
|
|
DRM_ERROR("Flipping in to AGP 0x%08lx\n", bo->tt->start);
|
2006-09-01 10:11:05 -06:00
|
|
|
|
#endif
|
2006-08-30 13:30:47 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
ret = drm_bind_ttm_region(bo->ttm_region, bo->tt->start);
|
|
|
|
|
if (ret) {
|
|
|
|
|
drm_mm_put_block(&bm->tt_manager, bo->tt);
|
|
|
|
|
}
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
|
be = bo->ttm_region->be;
|
|
|
|
|
if (be->needs_cache_adjust(be))
|
2006-08-31 13:42:29 -06:00
|
|
|
|
bo->flags &= ~DRM_BO_FLAG_CACHED;
|
|
|
|
|
bo->flags &= ~DRM_BO_MASK_MEM;
|
|
|
|
|
bo->flags |= DRM_BO_FLAG_MEM_TT;
|
|
|
|
|
|
|
|
|
|
if (bo->priv_flags & _DRM_BO_FLAG_EVICTED) {
|
|
|
|
|
ret = dev->driver->bo_driver->invalidate_caches(dev, bo->flags);
|
2006-09-01 10:11:05 -06:00
|
|
|
|
if (ret)
|
2006-09-08 09:24:38 -06:00
|
|
|
|
DRM_ERROR("Could not flush read caches\n");
|
2006-08-31 13:42:29 -06:00
|
|
|
|
}
|
2006-09-01 03:23:21 -06:00
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, 0, _DRM_BO_FLAG_EVICTED);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
|
|
|
|
return 0;
|
2006-08-30 13:30:47 -06:00
|
|
|
|
}
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
static int drm_bo_new_flags(drm_device_t * dev,
|
2006-08-29 10:40:08 -06:00
|
|
|
|
uint32_t flags, uint32_t new_mask, uint32_t hint,
|
2006-08-31 13:42:29 -06:00
|
|
|
|
int init, uint32_t * n_flags, uint32_t * n_mask)
|
2006-08-25 10:05:35 -06:00
|
|
|
|
{
|
2006-08-31 06:10:13 -06:00
|
|
|
|
uint32_t new_flags = 0;
|
2006-08-25 10:05:35 -06:00
|
|
|
|
uint32_t new_props;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
drm_bo_driver_t *driver = dev->driver->bo_driver;
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
2006-08-31 06:10:13 -06:00
|
|
|
|
/*
|
2006-09-01 07:41:55 -06:00
|
|
|
|
* First adjust the mask.
|
2006-08-31 06:10:13 -06:00
|
|
|
|
*/
|
2006-08-25 10:05:35 -06:00
|
|
|
|
|
2006-09-01 07:41:55 -06:00
|
|
|
|
if (!bm->use_vram)
|
|
|
|
|
new_mask &= ~DRM_BO_FLAG_MEM_VRAM;
|
|
|
|
|
if (!bm->use_tt)
|
|
|
|
|
new_mask &= ~DRM_BO_FLAG_MEM_TT;
|
|
|
|
|
|
2006-08-31 06:10:13 -06:00
|
|
|
|
if (new_mask & DRM_BO_FLAG_BIND_CACHED) {
|
|
|
|
|
if (((new_mask & DRM_BO_FLAG_MEM_TT) && !driver->cached_tt) &&
|
2006-08-31 13:42:29 -06:00
|
|
|
|
((new_mask & DRM_BO_FLAG_MEM_VRAM)
|
|
|
|
|
&& !driver->cached_vram)) {
|
2006-08-31 06:10:13 -06:00
|
|
|
|
new_mask &= ~DRM_BO_FLAG_BIND_CACHED;
|
|
|
|
|
} else {
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (!driver->cached_tt)
|
2006-08-31 06:10:13 -06:00
|
|
|
|
new_flags &= DRM_BO_FLAG_MEM_TT;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (!driver->cached_vram)
|
2006-08-31 06:10:13 -06:00
|
|
|
|
new_flags &= DRM_BO_FLAG_MEM_VRAM;
|
|
|
|
|
}
|
|
|
|
|
}
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
|
|
|
|
if ((new_mask & DRM_BO_FLAG_READ_CACHED) &&
|
2006-08-31 06:10:13 -06:00
|
|
|
|
!(new_mask & DRM_BO_FLAG_BIND_CACHED)) {
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if ((new_mask & DRM_BO_FLAG_NO_EVICT) &&
|
2006-08-31 06:10:13 -06:00
|
|
|
|
!(new_mask & DRM_BO_FLAG_MEM_LOCAL)) {
|
2006-08-31 13:42:29 -06:00
|
|
|
|
DRM_ERROR
|
|
|
|
|
("Cannot read cached from a pinned VRAM / TT buffer\n");
|
2006-08-31 06:10:13 -06:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Determine new memory location:
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!(flags & new_mask & DRM_BO_MASK_MEM) || init) {
|
2006-08-25 10:05:35 -06:00
|
|
|
|
|
|
|
|
|
new_flags = new_mask & DRM_BO_MASK_MEM;
|
|
|
|
|
|
|
|
|
|
if (!new_flags) {
|
|
|
|
|
DRM_ERROR("Invalid buffer object memory flags\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
if (new_flags & DRM_BO_FLAG_MEM_LOCAL) {
|
2006-08-30 01:57:35 -06:00
|
|
|
|
if ((hint & DRM_BO_HINT_AVOID_LOCAL) &&
|
|
|
|
|
new_flags & (DRM_BO_FLAG_MEM_VRAM |
|
|
|
|
|
DRM_BO_FLAG_MEM_TT)) {
|
2006-08-25 10:05:35 -06:00
|
|
|
|
new_flags &= ~DRM_BO_FLAG_MEM_LOCAL;
|
|
|
|
|
} else {
|
|
|
|
|
new_flags = DRM_BO_FLAG_MEM_LOCAL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (new_flags & DRM_BO_FLAG_MEM_TT) {
|
2006-08-30 09:40:07 -06:00
|
|
|
|
if ((new_mask & DRM_BO_FLAG_PREFER_VRAM) &&
|
2006-08-25 10:05:35 -06:00
|
|
|
|
new_flags & DRM_BO_FLAG_MEM_VRAM) {
|
|
|
|
|
new_flags = DRM_BO_FLAG_MEM_VRAM;
|
|
|
|
|
} else {
|
|
|
|
|
new_flags = DRM_BO_FLAG_MEM_TT;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
new_flags = flags & DRM_BO_MASK_MEM;
|
|
|
|
|
}
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
new_props = new_mask & (DRM_BO_FLAG_EXE | DRM_BO_FLAG_WRITE |
|
|
|
|
|
DRM_BO_FLAG_READ);
|
|
|
|
|
|
|
|
|
|
if (!new_props) {
|
|
|
|
|
DRM_ERROR("Invalid buffer object rwx properties\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
new_flags |= new_mask & ~DRM_BO_MASK_MEM;
|
2006-08-29 10:40:08 -06:00
|
|
|
|
|
2006-08-31 06:10:13 -06:00
|
|
|
|
if (((flags ^ new_flags) & DRM_BO_FLAG_BIND_CACHED) &&
|
|
|
|
|
(new_flags & DRM_BO_FLAG_NO_EVICT) &&
|
|
|
|
|
(flags & (DRM_BO_FLAG_MEM_TT | DRM_BO_FLAG_MEM_VRAM))) {
|
|
|
|
|
if (!(flags & DRM_BO_FLAG_CACHED)) {
|
2006-08-30 01:57:35 -06:00
|
|
|
|
DRM_ERROR
|
|
|
|
|
("Cannot change caching policy of pinned buffer\n");
|
2006-08-29 10:40:08 -06:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
} else {
|
|
|
|
|
new_flags &= ~DRM_BO_FLAG_CACHED;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
*n_flags = new_flags;
|
2006-08-31 06:10:13 -06:00
|
|
|
|
*n_mask = new_mask;
|
2006-08-25 10:05:35 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-28 05:51:39 -06:00
|
|
|
|
/*
|
|
|
|
|
* Call dev->struct_mutex locked.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
drm_buffer_object_t *drm_lookup_buffer_object(drm_file_t * priv,
|
|
|
|
|
uint32_t handle, int check_owner)
|
2006-08-28 05:51:39 -06:00
|
|
|
|
{
|
|
|
|
|
drm_user_object_t *uo;
|
|
|
|
|
drm_buffer_object_t *bo;
|
|
|
|
|
|
|
|
|
|
uo = drm_lookup_user_object(priv, handle);
|
|
|
|
|
|
2006-08-30 05:04:08 -06:00
|
|
|
|
if (!uo || (uo->type != drm_buffer_type)) {
|
2006-08-30 13:31:38 -06:00
|
|
|
|
DRM_ERROR("Could not find buffer object 0x%08x\n", handle);
|
2006-08-28 05:51:39 -06:00
|
|
|
|
return NULL;
|
2006-08-30 05:04:08 -06:00
|
|
|
|
}
|
2006-08-28 05:51:39 -06:00
|
|
|
|
|
|
|
|
|
if (check_owner && priv != uo->owner) {
|
|
|
|
|
if (!drm_lookup_ref_object(priv, uo, _DRM_REF_USE))
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bo = drm_user_object_entry(uo, drm_buffer_object_t, base);
|
|
|
|
|
atomic_inc(&bo->usage);
|
|
|
|
|
return bo;
|
|
|
|
|
}
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
2006-09-01 08:38:06 -06:00
|
|
|
|
/*
|
|
|
|
|
* Call bo->mutex locked.
|
|
|
|
|
* Returns 1 if the buffer is currently rendered to or from. 0 otherwise.
|
|
|
|
|
* Doesn't do any fence flushing as opposed to the drm_bo_busy function.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
static int drm_bo_quick_busy(drm_buffer_object_t * bo)
|
2006-09-01 08:38:06 -06:00
|
|
|
|
{
|
|
|
|
|
drm_fence_object_t *fence = bo->fence;
|
|
|
|
|
|
|
|
|
|
BUG_ON(bo->priv_flags & _DRM_BO_FLAG_UNFENCED);
|
|
|
|
|
if (fence) {
|
|
|
|
|
drm_device_t *dev = bo->dev;
|
|
|
|
|
if (drm_fence_object_signaled(fence, bo->fence_flags)) {
|
|
|
|
|
drm_fence_usage_deref_unlocked(dev, fence);
|
|
|
|
|
bo->fence = NULL;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-28 05:51:39 -06:00
|
|
|
|
/*
|
|
|
|
|
* Call bo->mutex locked.
|
|
|
|
|
* Returns 1 if the buffer is currently rendered to or from. 0 otherwise.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-08-30 12:23:40 -06:00
|
|
|
|
static int drm_bo_busy(drm_buffer_object_t * bo)
|
2006-08-28 05:51:39 -06:00
|
|
|
|
{
|
|
|
|
|
drm_fence_object_t *fence = bo->fence;
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
BUG_ON(bo->priv_flags & _DRM_BO_FLAG_UNFENCED);
|
2006-08-28 05:51:39 -06:00
|
|
|
|
if (fence) {
|
2006-08-30 12:23:40 -06:00
|
|
|
|
drm_device_t *dev = bo->dev;
|
2006-08-28 05:51:39 -06:00
|
|
|
|
if (drm_fence_object_signaled(fence, bo->fence_flags)) {
|
|
|
|
|
drm_fence_usage_deref_unlocked(dev, fence);
|
|
|
|
|
bo->fence = NULL;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
drm_fence_object_flush(dev, fence, DRM_FENCE_EXE);
|
|
|
|
|
if (drm_fence_object_signaled(fence, bo->fence_flags)) {
|
|
|
|
|
drm_fence_usage_deref_unlocked(dev, fence);
|
|
|
|
|
bo->fence = NULL;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
static int drm_bo_read_cached(drm_buffer_object_t * bo)
|
|
|
|
|
{
|
2006-09-01 03:23:21 -06:00
|
|
|
|
drm_device_t *dev = bo->dev;
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
BUG_ON(bo->priv_flags & _DRM_BO_FLAG_UNFENCED);
|
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, _DRM_BO_FLAG_EVICTED,
|
|
|
|
|
_DRM_BO_FLAG_EVICTED);
|
2006-09-01 03:23:21 -06:00
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
list_del(&bo->head);
|
|
|
|
|
list_add_tail(&bo->head, &bm->other);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
return drm_move_tt_to_local(bo);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Wait until a buffer is unmapped.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
static int drm_bo_wait_unmapped(drm_buffer_object_t * bo, int no_wait)
|
2006-08-31 13:42:29 -06:00
|
|
|
|
{
|
2006-09-01 10:11:34 -06:00
|
|
|
|
int ret = 0;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
|
|
|
|
if ((atomic_read(&bo->mapped) >= 0) && no_wait)
|
|
|
|
|
return -EBUSY;
|
|
|
|
|
|
|
|
|
|
DRM_WAIT_ON(ret, bo->event_queue, 3 * DRM_HZ,
|
|
|
|
|
atomic_read(&bo->mapped) == -1);
|
|
|
|
|
|
|
|
|
|
if (ret == -EINTR)
|
|
|
|
|
ret = -EAGAIN;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
static int drm_bo_check_unfenced(drm_buffer_object_t * bo)
|
2006-08-31 13:42:29 -06:00
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&bo->mutex);
|
|
|
|
|
ret = (bo->priv_flags & _DRM_BO_FLAG_UNFENCED);
|
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Wait until a buffer, scheduled to be fenced moves off the unfenced list.
|
|
|
|
|
* Until then, we cannot really do anything with it except delete it.
|
|
|
|
|
* The unfenced list is a PITA, and the operations
|
|
|
|
|
* 1) validating
|
|
|
|
|
* 2) submitting commands
|
|
|
|
|
* 3) fencing
|
|
|
|
|
* Should really be an atomic operation.
|
|
|
|
|
* We now "solve" this problem by keeping
|
|
|
|
|
* the buffer "unfenced" after validating, but before fencing.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
static int drm_bo_wait_unfenced(drm_buffer_object_t * bo, int no_wait,
|
2006-08-31 13:42:29 -06:00
|
|
|
|
int eagain_if_wait)
|
|
|
|
|
{
|
|
|
|
|
int ret = (bo->priv_flags & _DRM_BO_FLAG_UNFENCED);
|
2006-09-01 10:11:34 -06:00
|
|
|
|
unsigned long _end = jiffies + 3 * DRM_HZ;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
|
|
|
|
if (ret && no_wait)
|
|
|
|
|
return -EBUSY;
|
|
|
|
|
else if (!ret)
|
|
|
|
|
return 0;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
do {
|
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
DRM_WAIT_ON(ret, bo->event_queue, 3 * DRM_HZ,
|
|
|
|
|
!drm_bo_check_unfenced(bo));
|
|
|
|
|
mutex_lock(&bo->mutex);
|
|
|
|
|
if (ret == -EINTR)
|
|
|
|
|
return -EAGAIN;
|
|
|
|
|
if (ret) {
|
2006-09-01 10:11:34 -06:00
|
|
|
|
DRM_ERROR
|
|
|
|
|
("Error waiting for buffer to become fenced\n");
|
2006-08-31 13:42:29 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
ret = (bo->priv_flags & _DRM_BO_FLAG_UNFENCED);
|
|
|
|
|
} while (ret && !time_after_eq(jiffies, _end));
|
|
|
|
|
if (ret) {
|
|
|
|
|
DRM_ERROR("Timeout waiting for buffer to become fenced\n");
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
if (eagain_if_wait)
|
|
|
|
|
return -EAGAIN;
|
2006-08-31 06:10:13 -06:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-01 08:38:06 -06:00
|
|
|
|
/*
|
|
|
|
|
* Fill in the ioctl reply argument with buffer info.
|
|
|
|
|
* Bo locked.
|
|
|
|
|
*/
|
2006-08-31 06:10:13 -06:00
|
|
|
|
|
2006-09-01 08:38:06 -06:00
|
|
|
|
static void drm_bo_fill_rep_arg(drm_buffer_object_t * bo,
|
|
|
|
|
drm_bo_arg_reply_t * rep)
|
|
|
|
|
{
|
|
|
|
|
rep->handle = bo->base.hash.key;
|
|
|
|
|
rep->flags = bo->flags;
|
|
|
|
|
rep->size = bo->num_pages * PAGE_SIZE;
|
|
|
|
|
rep->offset = bo->offset;
|
|
|
|
|
|
|
|
|
|
if (bo->ttm_object) {
|
|
|
|
|
rep->arg_handle = bo->ttm_object->map_list.user_token;
|
|
|
|
|
} else {
|
|
|
|
|
rep->arg_handle = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rep->mask = bo->mask;
|
|
|
|
|
rep->buffer_start = bo->buffer_start;
|
|
|
|
|
rep->fence_flags = bo->fence_flags;
|
|
|
|
|
rep->rep_flags = 0;
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
if ((bo->priv_flags & _DRM_BO_FLAG_UNFENCED) || drm_bo_quick_busy(bo)) {
|
|
|
|
|
DRM_FLAG_MASKED(rep->rep_flags, DRM_BO_REP_BUSY,
|
|
|
|
|
DRM_BO_REP_BUSY);
|
2006-09-01 08:38:06 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2006-08-28 05:51:39 -06:00
|
|
|
|
/*
|
|
|
|
|
* Wait for buffer idle and register that we've mapped the buffer.
|
2006-08-28 08:36:37 -06:00
|
|
|
|
* Mapping is registered as a drm_ref_object with type _DRM_REF_TYPE1,
|
|
|
|
|
* so that if the client dies, the mapping is automatically
|
|
|
|
|
* unregistered.
|
2006-08-28 05:51:39 -06:00
|
|
|
|
*/
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
static int drm_buffer_object_map(drm_file_t * priv, uint32_t handle,
|
2006-09-08 09:24:38 -06:00
|
|
|
|
uint32_t map_flags, unsigned hint,
|
2006-09-01 10:11:34 -06:00
|
|
|
|
drm_bo_arg_reply_t * rep)
|
2006-08-28 05:51:39 -06:00
|
|
|
|
{
|
|
|
|
|
drm_buffer_object_t *bo;
|
|
|
|
|
drm_device_t *dev = priv->head->dev;
|
2006-08-31 06:10:13 -06:00
|
|
|
|
int ret = 0;
|
2006-09-08 09:24:38 -06:00
|
|
|
|
int no_wait = hint & DRM_BO_HINT_DONT_BLOCK;
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
2006-08-28 05:51:39 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
bo = drm_lookup_buffer_object(priv, handle, 1);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
if (!bo)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&bo->mutex);
|
2006-09-08 09:24:38 -06:00
|
|
|
|
if (!(hint & DRM_BO_HINT_ALLOW_UNFENCED_MAP)) {
|
|
|
|
|
ret = drm_bo_wait_unfenced(bo, no_wait, 0);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
2006-08-28 05:51:39 -06:00
|
|
|
|
|
2006-08-30 12:23:40 -06:00
|
|
|
|
/*
|
|
|
|
|
* If this returns true, we are currently unmapped.
|
|
|
|
|
* We need to do this test, because unmapping can
|
|
|
|
|
* be done without the bo->mutex held.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
while (1) {
|
2006-08-31 06:10:13 -06:00
|
|
|
|
if (atomic_inc_and_test(&bo->mapped)) {
|
2006-09-12 04:01:00 -06:00
|
|
|
|
if (no_wait && drm_bo_busy(bo)) {
|
|
|
|
|
atomic_dec(&bo->mapped);
|
|
|
|
|
ret = -EBUSY;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
2006-09-04 13:50:12 -06:00
|
|
|
|
ret = drm_bo_wait(bo, 0, 0, no_wait);
|
2006-08-31 06:10:13 -06:00
|
|
|
|
if (ret) {
|
|
|
|
|
atomic_dec(&bo->mapped);
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((map_flags & DRM_BO_FLAG_READ) &&
|
|
|
|
|
(bo->flags & DRM_BO_FLAG_READ_CACHED) &&
|
|
|
|
|
(!(bo->flags & DRM_BO_FLAG_CACHED))) {
|
|
|
|
|
drm_bo_read_cached(bo);
|
|
|
|
|
}
|
|
|
|
|
break;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
} else if ((map_flags & DRM_BO_FLAG_READ) &&
|
|
|
|
|
(bo->flags & DRM_BO_FLAG_READ_CACHED) &&
|
|
|
|
|
(!(bo->flags & DRM_BO_FLAG_CACHED))) {
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
/*
|
|
|
|
|
* We are already mapped with different flags.
|
|
|
|
|
* need to wait for unmap.
|
|
|
|
|
*/
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
ret = drm_bo_wait_unmapped(bo, no_wait);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
2006-08-31 06:10:13 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
continue;
|
2006-08-28 05:51:39 -06:00
|
|
|
|
}
|
2006-08-31 13:42:29 -06:00
|
|
|
|
break;
|
2006-08-28 05:51:39 -06:00
|
|
|
|
}
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2006-08-28 05:51:39 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
ret = drm_add_ref_object(priv, &bo->base, _DRM_REF_TYPE1);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-30 12:23:40 -06:00
|
|
|
|
if (ret) {
|
|
|
|
|
if (atomic_add_negative(-1, &bo->mapped))
|
2006-08-31 13:42:29 -06:00
|
|
|
|
DRM_WAKEUP(&bo->event_queue);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
} else
|
2006-09-01 08:38:06 -06:00
|
|
|
|
drm_bo_fill_rep_arg(bo, rep);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
out:
|
2006-08-30 12:23:40 -06:00
|
|
|
|
mutex_unlock(&bo->mutex);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
drm_bo_usage_deref_unlocked(dev, bo);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
static int drm_buffer_object_unmap(drm_file_t * priv, uint32_t handle)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
|
|
|
|
drm_device_t *dev = priv->head->dev;
|
|
|
|
|
drm_buffer_object_t *bo;
|
|
|
|
|
drm_ref_object_t *ro;
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
bo = drm_lookup_buffer_object(priv, handle, 1);
|
|
|
|
|
if (!bo) {
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ro = drm_lookup_ref_object(priv, &bo->base, _DRM_REF_TYPE1);
|
|
|
|
|
if (!ro) {
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
drm_remove_ref_object(priv, ro);
|
|
|
|
|
drm_bo_usage_deref_locked(dev, bo);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
out:
|
2006-08-28 08:36:37 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-28 05:51:39 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-28 08:36:37 -06:00
|
|
|
|
/*
|
|
|
|
|
* Call struct-sem locked.
|
|
|
|
|
*/
|
2006-08-28 05:51:39 -06:00
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
static void drm_buffer_user_object_unmap(drm_file_t * priv,
|
|
|
|
|
drm_user_object_t * uo,
|
2006-08-28 09:51:53 -06:00
|
|
|
|
drm_ref_t action)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
2006-08-30 01:57:35 -06:00
|
|
|
|
drm_buffer_object_t *bo =
|
2006-08-30 13:31:38 -06:00
|
|
|
|
drm_user_object_entry(uo, drm_buffer_object_t, base);
|
2006-08-30 12:23:40 -06:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* We DON'T want to take the bo->lock here, because we want to
|
|
|
|
|
* hold it when we wait for unmapped buffer.
|
|
|
|
|
*/
|
2006-08-28 08:36:37 -06:00
|
|
|
|
|
2006-08-28 09:51:53 -06:00
|
|
|
|
BUG_ON(action != _DRM_REF_TYPE1);
|
|
|
|
|
|
2006-08-30 12:23:40 -06:00
|
|
|
|
if (atomic_add_negative(-1, &bo->mapped))
|
2006-08-31 13:42:29 -06:00
|
|
|
|
DRM_WAKEUP(&bo->event_queue);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
}
|
|
|
|
|
|
2006-08-30 12:23:40 -06:00
|
|
|
|
/*
|
2006-09-01 03:23:21 -06:00
|
|
|
|
* bo->mutex locked.
|
2006-08-30 12:23:40 -06:00
|
|
|
|
*/
|
|
|
|
|
|
2006-08-30 13:31:38 -06:00
|
|
|
|
static int drm_bo_move_buffer(drm_buffer_object_t * bo, uint32_t new_flags,
|
2006-08-30 09:40:07 -06:00
|
|
|
|
int no_wait)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
2006-08-30 12:23:40 -06:00
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Flush outstanding fences.
|
|
|
|
|
*/
|
|
|
|
|
drm_bo_busy(bo);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Make sure we're not mapped.
|
|
|
|
|
*/
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
ret = drm_bo_wait_unmapped(bo, no_wait);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2006-08-30 12:23:40 -06:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Wait for outstanding fences.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-09-04 13:50:12 -06:00
|
|
|
|
ret = drm_bo_wait(bo, 0, 0, no_wait);
|
2006-08-30 12:23:40 -06:00
|
|
|
|
|
|
|
|
|
if (ret == -EINTR)
|
|
|
|
|
return -EAGAIN;
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
if (new_flags & DRM_BO_FLAG_MEM_TT) {
|
2006-08-30 13:30:47 -06:00
|
|
|
|
ret = drm_move_local_to_tt(bo, no_wait);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2006-08-30 12:23:40 -06:00
|
|
|
|
} else {
|
|
|
|
|
drm_move_tt_to_local(bo);
|
|
|
|
|
}
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-28 08:36:37 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-30 09:40:07 -06:00
|
|
|
|
/*
|
|
|
|
|
* bo locked.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static int drm_buffer_object_validate(drm_buffer_object_t * bo,
|
|
|
|
|
uint32_t new_flags,
|
2006-08-30 13:31:38 -06:00
|
|
|
|
int move_unfenced, int no_wait)
|
2006-08-30 09:40:07 -06:00
|
|
|
|
{
|
|
|
|
|
drm_device_t *dev = bo->dev;
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
|
|
|
|
uint32_t flag_diff = (new_flags ^ bo->flags);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
drm_bo_driver_t *driver = dev->driver->bo_driver;
|
2006-08-30 09:40:07 -06:00
|
|
|
|
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if (new_flags & DRM_BO_FLAG_MEM_VRAM) {
|
|
|
|
|
DRM_ERROR("Vram support not implemented yet\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
if ((new_flags & (DRM_BO_FLAG_MEM_TT | DRM_BO_FLAG_MEM_VRAM)) &&
|
|
|
|
|
(new_flags & DRM_BO_FLAG_CACHED)) {
|
|
|
|
|
DRM_ERROR("Cached binding not implemented yet\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2006-09-01 10:11:05 -06:00
|
|
|
|
#ifdef BODEBUG
|
2006-09-01 10:11:34 -06:00
|
|
|
|
DRM_ERROR("New flags 0x%08x, Old flags 0x%08x\n", new_flags, bo->flags);
|
2006-09-01 10:11:05 -06:00
|
|
|
|
#endif
|
2006-09-01 03:23:21 -06:00
|
|
|
|
ret = driver->fence_type(new_flags, &bo->fence_class, &bo->fence_flags);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (ret) {
|
|
|
|
|
DRM_ERROR("Driver did not support given buffer permissions\n");
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-01 10:11:05 -06:00
|
|
|
|
/*
|
|
|
|
|
* Check whether we need to move buffer.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
|
if ((bo->type != drm_bo_type_fake) && (flag_diff & DRM_BO_MASK_MEM)) {
|
|
|
|
|
if (bo->type == drm_bo_type_user) {
|
|
|
|
|
DRM_ERROR("User buffers are not implemented yet.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2006-08-30 09:40:07 -06:00
|
|
|
|
ret = drm_bo_move_buffer(bo, new_flags, no_wait);
|
2006-08-30 13:31:38 -06:00
|
|
|
|
if (ret)
|
2006-08-30 09:40:07 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-30 09:40:07 -06:00
|
|
|
|
if (move_unfenced) {
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Place on unfenced list.
|
|
|
|
|
*/
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, _DRM_BO_FLAG_UNFENCED,
|
|
|
|
|
_DRM_BO_FLAG_UNFENCED);
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
list_del(&bo->head);
|
2006-08-30 09:40:07 -06:00
|
|
|
|
list_add_tail(&bo->head, &bm->unfenced);
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
} else {
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
list_del(&bo->head);
|
|
|
|
|
if (new_flags & DRM_BO_FLAG_NO_EVICT)
|
|
|
|
|
list_add_tail(&bo->head, &bm->other);
|
|
|
|
|
else if (new_flags & DRM_BO_FLAG_MEM_TT)
|
|
|
|
|
list_add_tail(&bo->head, &bm->tt_lru);
|
|
|
|
|
else if (new_flags & DRM_BO_FLAG_MEM_VRAM)
|
|
|
|
|
list_add_tail(&bo->head, &bm->vram_lru);
|
|
|
|
|
else
|
|
|
|
|
list_add_tail(&bo->head, &bm->other);
|
2006-09-01 03:23:21 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
DRM_FLAG_MASKED(bo->flags, new_flags, DRM_BO_FLAG_NO_EVICT);
|
2006-08-30 09:40:07 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bo->flags = new_flags;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
static int drm_bo_handle_validate(drm_file_t * priv, uint32_t handle,
|
2006-09-01 08:38:06 -06:00
|
|
|
|
uint32_t flags, uint32_t mask, uint32_t hint,
|
2006-09-01 10:11:34 -06:00
|
|
|
|
drm_bo_arg_reply_t * rep)
|
2006-08-31 13:42:29 -06:00
|
|
|
|
{
|
|
|
|
|
drm_buffer_object_t *bo;
|
|
|
|
|
drm_device_t *dev = priv->head->dev;
|
|
|
|
|
int ret;
|
|
|
|
|
int no_wait = hint & DRM_BO_HINT_DONT_BLOCK;
|
|
|
|
|
uint32_t new_flags;
|
|
|
|
|
|
|
|
|
|
bo = drm_lookup_buffer_object(priv, handle, 1);
|
|
|
|
|
if (!bo) {
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mutex_lock(&bo->mutex);
|
|
|
|
|
ret = drm_bo_wait_unfenced(bo, no_wait, 0);
|
|
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
ret = drm_bo_new_flags(dev, bo->flags,
|
2006-09-01 10:11:05 -06:00
|
|
|
|
(flags & mask) | (bo->mask & ~mask), hint,
|
2006-08-31 13:42:29 -06:00
|
|
|
|
0, &new_flags, &bo->mask);
|
|
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
ret =
|
|
|
|
|
drm_buffer_object_validate(bo, new_flags,
|
|
|
|
|
!(hint & DRM_BO_HINT_DONT_FENCE),
|
|
|
|
|
no_wait);
|
2006-09-01 08:38:06 -06:00
|
|
|
|
drm_bo_fill_rep_arg(bo, rep);
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
drm_bo_usage_deref_unlocked(dev, bo);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-01 08:38:06 -06:00
|
|
|
|
static int drm_bo_handle_info(drm_file_t * priv, uint32_t handle,
|
2006-09-01 10:11:34 -06:00
|
|
|
|
drm_bo_arg_reply_t * rep)
|
2006-09-01 08:38:06 -06:00
|
|
|
|
{
|
|
|
|
|
drm_buffer_object_t *bo;
|
|
|
|
|
|
|
|
|
|
bo = drm_lookup_buffer_object(priv, handle, 1);
|
|
|
|
|
if (!bo) {
|
|
|
|
|
return -EINVAL;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
}
|
2006-09-01 08:38:06 -06:00
|
|
|
|
mutex_lock(&bo->mutex);
|
2006-09-01 10:11:34 -06:00
|
|
|
|
if (!(bo->priv_flags & _DRM_BO_FLAG_UNFENCED))
|
|
|
|
|
(void)drm_bo_busy(bo);
|
2006-09-01 08:38:06 -06:00
|
|
|
|
drm_bo_fill_rep_arg(bo, rep);
|
|
|
|
|
mutex_unlock(&bo->mutex);
|
2006-09-04 13:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_unlocked(bo->dev, bo);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int drm_bo_handle_wait(drm_file_t * priv, uint32_t handle,
|
|
|
|
|
uint32_t hint, drm_bo_arg_reply_t * rep)
|
|
|
|
|
{
|
|
|
|
|
drm_buffer_object_t *bo;
|
|
|
|
|
int no_wait = hint & DRM_BO_HINT_DONT_BLOCK;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
bo = drm_lookup_buffer_object(priv, handle, 1);
|
|
|
|
|
if (!bo) {
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
mutex_lock(&bo->mutex);
|
|
|
|
|
ret = drm_bo_wait_unfenced(bo, no_wait, 0);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
ret = drm_bo_wait(bo, hint & DRM_BO_HINT_WAIT_LAZY,
|
|
|
|
|
0, no_wait);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
drm_bo_fill_rep_arg(bo, rep);
|
|
|
|
|
out:
|
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
drm_bo_usage_deref_unlocked(bo->dev, bo);
|
2006-09-01 08:38:06 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-29 06:52:02 -06:00
|
|
|
|
/*
|
|
|
|
|
* Call bo->mutex locked.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
static int drm_bo_add_ttm(drm_file_t * priv, drm_buffer_object_t * bo,
|
2006-08-31 06:10:13 -06:00
|
|
|
|
uint32_t ttm_handle)
|
2006-08-29 06:52:02 -06:00
|
|
|
|
{
|
|
|
|
|
drm_device_t *dev = bo->dev;
|
|
|
|
|
drm_ttm_object_t *to = NULL;
|
|
|
|
|
drm_ttm_t *ttm;
|
2006-08-30 01:57:35 -06:00
|
|
|
|
int ret = 0;
|
2006-08-29 06:52:02 -06:00
|
|
|
|
uint32_t ttm_flags = 0;
|
|
|
|
|
|
|
|
|
|
bo->ttm_object = NULL;
|
|
|
|
|
bo->ttm_region = NULL;
|
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
switch (bo->type) {
|
2006-08-29 06:52:02 -06:00
|
|
|
|
case drm_bo_type_dc:
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
ret = drm_ttm_object_create(dev, bo->num_pages * PAGE_SIZE,
|
2006-08-29 06:52:02 -06:00
|
|
|
|
ttm_flags, &to);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
break;
|
|
|
|
|
case drm_bo_type_ttm:
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
to = drm_lookup_ttm_object(priv, ttm_handle, 1);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-30 05:04:08 -06:00
|
|
|
|
if (!to) {
|
|
|
|
|
DRM_ERROR("Could not find TTM object\n");
|
2006-08-29 06:52:02 -06:00
|
|
|
|
ret = -EINVAL;
|
2006-08-30 05:04:08 -06:00
|
|
|
|
}
|
2006-08-29 06:52:02 -06:00
|
|
|
|
break;
|
|
|
|
|
case drm_bo_type_user:
|
2006-08-30 01:57:35 -06:00
|
|
|
|
case drm_bo_type_fake:
|
2006-08-29 06:52:02 -06:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2006-08-30 05:04:08 -06:00
|
|
|
|
DRM_ERROR("Illegal buffer object type\n");
|
2006-08-29 06:52:02 -06:00
|
|
|
|
ret = -EINVAL;
|
2006-08-30 05:04:08 -06:00
|
|
|
|
break;
|
2006-08-29 06:52:02 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (to) {
|
|
|
|
|
bo->ttm_object = to;
|
|
|
|
|
ttm = drm_ttm_from_object(to);
|
|
|
|
|
ret = drm_create_ttm_region(ttm, bo->buffer_start >> PAGE_SHIFT,
|
2006-09-12 04:01:00 -06:00
|
|
|
|
bo->num_pages,
|
|
|
|
|
bo->mask & DRM_BO_FLAG_BIND_CACHED,
|
2006-08-29 06:52:02 -06:00
|
|
|
|
&bo->ttm_region);
|
|
|
|
|
if (ret) {
|
|
|
|
|
drm_ttm_object_deref_unlocked(dev, to);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2006-08-29 02:45:34 -06:00
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
int drm_buffer_object_create(drm_file_t * priv,
|
2006-08-29 06:52:02 -06:00
|
|
|
|
unsigned long size,
|
2006-08-28 08:36:37 -06:00
|
|
|
|
drm_bo_type_t type,
|
|
|
|
|
uint32_t ttm_handle,
|
|
|
|
|
uint32_t mask,
|
|
|
|
|
uint32_t hint,
|
2006-08-28 09:51:53 -06:00
|
|
|
|
unsigned long buffer_start,
|
2006-08-30 01:57:35 -06:00
|
|
|
|
drm_buffer_object_t ** buf_obj)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
|
|
|
|
drm_device_t *dev = priv->head->dev;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
2006-08-28 08:36:37 -06:00
|
|
|
|
drm_buffer_object_t *bo;
|
|
|
|
|
int ret = 0;
|
2006-08-29 06:52:02 -06:00
|
|
|
|
uint32_t new_flags;
|
|
|
|
|
unsigned long num_pages;
|
2006-09-08 09:24:38 -06:00
|
|
|
|
|
2006-08-31 07:36:40 -06:00
|
|
|
|
drm_bo_delayed_delete(dev);
|
2006-09-08 09:24:38 -06:00
|
|
|
|
|
|
|
|
|
if ((buffer_start & ~PAGE_MASK) &&
|
|
|
|
|
(type != drm_bo_type_fake)) {
|
2006-08-29 06:52:02 -06:00
|
|
|
|
DRM_ERROR("Invalid buffer object start.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2006-08-30 01:57:35 -06:00
|
|
|
|
num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
|
2006-08-29 06:52:02 -06:00
|
|
|
|
if (num_pages == 0) {
|
|
|
|
|
DRM_ERROR("Illegal buffer object size.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2006-08-28 08:36:37 -06:00
|
|
|
|
|
|
|
|
|
bo = drm_calloc(1, sizeof(*bo), DRM_MEM_BUFOBJ);
|
|
|
|
|
|
|
|
|
|
if (!bo)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
mutex_init(&bo->mutex);
|
|
|
|
|
mutex_lock(&bo->mutex);
|
|
|
|
|
|
|
|
|
|
atomic_set(&bo->usage, 1);
|
2006-08-30 12:23:40 -06:00
|
|
|
|
atomic_set(&bo->mapped, -1);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
DRM_INIT_WAITQUEUE(&bo->event_queue);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
INIT_LIST_HEAD(&bo->head);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
list_add_tail(&bo->head, &bm->other);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
INIT_LIST_HEAD(&bo->ddestroy);
|
|
|
|
|
bo->dev = dev;
|
2006-08-29 06:52:02 -06:00
|
|
|
|
bo->type = type;
|
|
|
|
|
bo->num_pages = num_pages;
|
2006-09-08 09:24:38 -06:00
|
|
|
|
if (bo->type == drm_bo_type_fake) {
|
|
|
|
|
bo->offset = buffer_start;
|
|
|
|
|
bo->buffer_start = 0;
|
|
|
|
|
} else {
|
|
|
|
|
bo->buffer_start = buffer_start;
|
|
|
|
|
}
|
2006-08-31 13:42:29 -06:00
|
|
|
|
bo->priv_flags = 0;
|
2006-09-01 03:23:21 -06:00
|
|
|
|
bo->flags = DRM_BO_FLAG_MEM_LOCAL | DRM_BO_FLAG_CACHED;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
ret = drm_bo_new_flags(dev, bo->flags, mask, hint,
|
2006-08-31 06:10:13 -06:00
|
|
|
|
1, &new_flags, &bo->mask);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
if (ret)
|
2006-08-29 10:40:08 -06:00
|
|
|
|
goto out_err;
|
2006-08-31 06:10:13 -06:00
|
|
|
|
ret = drm_bo_add_ttm(priv, bo, ttm_handle);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
if (ret)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
goto out_err;
|
2006-08-29 06:52:02 -06:00
|
|
|
|
|
2006-08-30 13:31:38 -06:00
|
|
|
|
ret = drm_buffer_object_validate(bo, new_flags, 0,
|
2006-08-30 09:40:07 -06:00
|
|
|
|
hint & DRM_BO_HINT_DONT_BLOCK);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
goto out_err;
|
|
|
|
|
|
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
*buf_obj = bo;
|
|
|
|
|
return 0;
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
|
|
|
|
out_err:
|
2006-08-28 08:36:37 -06:00
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
drm_free(bo, sizeof(*bo), DRM_MEM_BUFOBJ);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
return ret;
|
2006-08-28 08:36:37 -06:00
|
|
|
|
}
|
2006-08-28 09:51:53 -06:00
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
static int drm_bo_add_user_object(drm_file_t * priv, drm_buffer_object_t * bo,
|
2006-08-28 09:51:53 -06:00
|
|
|
|
int shareable)
|
|
|
|
|
{
|
|
|
|
|
drm_device_t *dev = priv->head->dev;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
ret = drm_add_user_object(priv, &bo->base, shareable);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
bo->base.remove = drm_bo_base_deref_locked;
|
|
|
|
|
bo->base.type = drm_buffer_type;
|
|
|
|
|
bo->base.ref_struct_locked = NULL;
|
|
|
|
|
bo->base.unref = drm_buffer_user_object_unmap;
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
|
|
|
|
out:
|
2006-08-28 09:51:53 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2006-08-30 01:57:35 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
static int drm_bo_lock_test(drm_device_t * dev, struct file *filp)
|
|
|
|
|
{
|
|
|
|
|
LOCK_TEST_WITH_RETURN(dev, filp);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-25 11:03:42 -06:00
|
|
|
|
int drm_bo_ioctl(DRM_IOCTL_ARGS)
|
|
|
|
|
{
|
|
|
|
|
DRM_DEVICE;
|
|
|
|
|
drm_bo_arg_t arg;
|
2006-09-08 09:24:38 -06:00
|
|
|
|
drm_bo_arg_request_t *req = &arg.d.req;
|
2006-08-28 02:58:21 -06:00
|
|
|
|
drm_bo_arg_reply_t rep;
|
|
|
|
|
unsigned long next;
|
|
|
|
|
drm_user_object_t *uo;
|
|
|
|
|
drm_buffer_object_t *entry;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
|
|
|
|
|
if (!dev->bm.initialized) {
|
|
|
|
|
DRM_ERROR("Buffer object manager is not initialized.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-28 02:58:21 -06:00
|
|
|
|
do {
|
2006-08-31 13:42:29 -06:00
|
|
|
|
DRM_COPY_FROM_USER_IOCTL(arg, (void __user *)data, sizeof(arg));
|
|
|
|
|
|
2006-08-31 06:10:13 -06:00
|
|
|
|
if (arg.handled) {
|
2006-08-31 13:42:29 -06:00
|
|
|
|
data = req->next;
|
|
|
|
|
continue;
|
2006-08-31 06:10:13 -06:00
|
|
|
|
}
|
|
|
|
|
|
2006-08-28 02:58:21 -06:00
|
|
|
|
rep.ret = 0;
|
|
|
|
|
switch (req->op) {
|
2006-08-31 13:42:29 -06:00
|
|
|
|
case drm_bo_create:
|
|
|
|
|
rep.ret =
|
|
|
|
|
drm_buffer_object_create(priv, req->size,
|
|
|
|
|
req->type,
|
|
|
|
|
req->arg_handle,
|
|
|
|
|
req->mask,
|
|
|
|
|
req->hint,
|
|
|
|
|
req->buffer_start, &entry);
|
|
|
|
|
if (rep.ret)
|
2006-08-28 09:51:53 -06:00
|
|
|
|
break;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
|
|
|
|
rep.ret =
|
|
|
|
|
drm_bo_add_user_object(priv, entry,
|
|
|
|
|
req->
|
|
|
|
|
mask &
|
|
|
|
|
DRM_BO_FLAG_SHAREABLE);
|
|
|
|
|
if (rep.ret)
|
|
|
|
|
drm_bo_usage_deref_unlocked(dev, entry);
|
|
|
|
|
|
|
|
|
|
if (rep.ret)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&entry->mutex);
|
|
|
|
|
drm_bo_fill_rep_arg(entry, &rep);
|
|
|
|
|
mutex_unlock(&entry->mutex);
|
|
|
|
|
break;
|
2006-08-28 08:36:37 -06:00
|
|
|
|
case drm_bo_unmap:
|
|
|
|
|
rep.ret = drm_buffer_object_unmap(priv, req->handle);
|
|
|
|
|
break;
|
2006-08-28 05:51:39 -06:00
|
|
|
|
case drm_bo_map:
|
2006-08-30 01:57:35 -06:00
|
|
|
|
rep.ret = drm_buffer_object_map(priv, req->handle,
|
2006-08-31 06:10:13 -06:00
|
|
|
|
req->mask,
|
2006-09-08 09:24:38 -06:00
|
|
|
|
req->hint,
|
2006-09-01 08:38:06 -06:00
|
|
|
|
&rep);
|
2006-08-28 05:51:39 -06:00
|
|
|
|
break;
|
2006-08-28 02:58:21 -06:00
|
|
|
|
case drm_bo_destroy:
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
uo = drm_lookup_user_object(priv, req->handle);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
if (!uo || (uo->type != drm_buffer_type)
|
|
|
|
|
|| uo->owner != priv) {
|
2006-08-28 02:58:21 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
rep.ret = -EINVAL;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
rep.ret = drm_remove_user_object(priv, uo);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
break;
|
2006-08-30 01:57:35 -06:00
|
|
|
|
case drm_bo_reference:
|
|
|
|
|
rep.ret = drm_user_object_ref(priv, req->handle,
|
2006-08-28 02:58:21 -06:00
|
|
|
|
drm_buffer_type, &uo);
|
|
|
|
|
if (rep.ret)
|
|
|
|
|
break;
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
uo = drm_lookup_user_object(priv, req->handle);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
entry =
|
|
|
|
|
drm_user_object_entry(uo, drm_buffer_object_t,
|
|
|
|
|
base);
|
2006-08-28 02:58:21 -06:00
|
|
|
|
atomic_dec(&entry->usage);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-30 01:57:35 -06:00
|
|
|
|
mutex_lock(&entry->mutex);
|
|
|
|
|
drm_bo_fill_rep_arg(entry, &rep);
|
|
|
|
|
mutex_unlock(&entry->mutex);
|
2006-08-28 02:58:21 -06:00
|
|
|
|
break;
|
|
|
|
|
case drm_bo_unreference:
|
2006-08-30 01:57:35 -06:00
|
|
|
|
rep.ret = drm_user_object_unref(priv, req->handle,
|
2006-08-28 02:58:21 -06:00
|
|
|
|
drm_buffer_type);
|
|
|
|
|
break;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
case drm_bo_validate:
|
|
|
|
|
rep.ret = drm_bo_lock_test(dev, filp);
|
2006-09-12 04:01:00 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (rep.ret)
|
|
|
|
|
break;
|
|
|
|
|
rep.ret =
|
|
|
|
|
drm_bo_handle_validate(priv, req->handle, req->mask,
|
2006-09-01 08:38:06 -06:00
|
|
|
|
req->arg_handle, req->hint,
|
|
|
|
|
&rep);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
break;
|
|
|
|
|
case drm_bo_fence:
|
|
|
|
|
rep.ret = drm_bo_lock_test(dev, filp);
|
|
|
|
|
if (rep.ret)
|
|
|
|
|
break;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
/**/ break;
|
2006-09-01 08:38:06 -06:00
|
|
|
|
case drm_bo_info:
|
|
|
|
|
rep.ret = drm_bo_handle_info(priv, req->handle, &rep);
|
|
|
|
|
break;
|
2006-09-04 13:50:12 -06:00
|
|
|
|
case drm_bo_wait_idle:
|
|
|
|
|
rep.ret = drm_bo_handle_wait(priv, req->handle,
|
|
|
|
|
req->hint, &rep);
|
|
|
|
|
break;
|
|
|
|
|
case drm_bo_ref_fence:
|
|
|
|
|
rep.ret = -EINVAL;
|
|
|
|
|
DRM_ERROR("Function is not implemented yet.\n");
|
2006-08-28 02:58:21 -06:00
|
|
|
|
default:
|
|
|
|
|
rep.ret = -EINVAL;
|
|
|
|
|
}
|
2006-08-29 02:45:34 -06:00
|
|
|
|
next = req->next;
|
2006-08-31 06:10:13 -06:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* A signal interrupted us. Make sure the ioctl is restartable.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (rep.ret == -EAGAIN)
|
|
|
|
|
return -EAGAIN;
|
|
|
|
|
|
|
|
|
|
arg.handled = 1;
|
2006-09-08 09:24:38 -06:00
|
|
|
|
arg.d.rep = rep;
|
2006-08-28 02:58:21 -06:00
|
|
|
|
DRM_COPY_TO_USER_IOCTL((void __user *)data, arg, sizeof(arg));
|
|
|
|
|
data = next;
|
|
|
|
|
} while (data);
|
2006-08-25 11:03:42 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2006-08-30 05:04:08 -06:00
|
|
|
|
|
2006-09-01 07:41:55 -06:00
|
|
|
|
/*
|
|
|
|
|
* dev->struct_sem locked.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static void drm_bo_force_clean(drm_device_t * dev)
|
2006-08-30 05:04:08 -06:00
|
|
|
|
{
|
2006-09-01 07:41:55 -06:00
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
2006-09-08 09:24:38 -06:00
|
|
|
|
struct list_head *l;
|
|
|
|
|
drm_buffer_object_t *entry;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
int nice_mode = 1;
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
|
l = bm->ddestroy.next;
|
|
|
|
|
while(l != &bm->ddestroy) {
|
|
|
|
|
entry = list_entry(l, drm_buffer_object_t, ddestroy);
|
|
|
|
|
list_del(l);
|
2006-09-01 07:41:55 -06:00
|
|
|
|
if (entry->fence) {
|
|
|
|
|
if (nice_mode) {
|
2006-09-01 10:11:34 -06:00
|
|
|
|
unsigned long _end = jiffies + 3 * DRM_HZ;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
do {
|
2006-09-08 09:24:38 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-09-04 13:50:12 -06:00
|
|
|
|
ret = drm_bo_wait(entry, 0, 1, 0);
|
2006-09-08 09:24:38 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-09-01 10:11:34 -06:00
|
|
|
|
} while ((ret == -EINTR) &&
|
|
|
|
|
!time_after_eq(jiffies, _end));
|
2006-09-01 07:41:55 -06:00
|
|
|
|
} else {
|
|
|
|
|
drm_fence_usage_deref_locked(dev, entry->fence);
|
|
|
|
|
entry->fence = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (entry->fence) {
|
|
|
|
|
DRM_ERROR("Detected GPU hang. "
|
|
|
|
|
"Removing waiting buffers.\n");
|
|
|
|
|
nice_mode = 0;
|
|
|
|
|
drm_fence_usage_deref_locked(dev, entry->fence);
|
|
|
|
|
entry->fence = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
DRM_DEBUG("Destroying delayed buffer object\n");
|
|
|
|
|
drm_bo_destroy_locked(dev, entry);
|
2006-09-08 09:24:38 -06:00
|
|
|
|
l = bm->ddestroy.next;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
int drm_bo_clean_mm(drm_device_t * dev)
|
2006-09-01 07:41:55 -06:00
|
|
|
|
{
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
if (!bm->initialized)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
drm_bo_force_clean(dev);
|
|
|
|
|
bm->use_vram = 0;
|
|
|
|
|
bm->use_tt = 0;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2006-09-01 07:41:55 -06:00
|
|
|
|
if (bm->has_vram) {
|
|
|
|
|
if (drm_mm_clean(&bm->vram_manager)) {
|
|
|
|
|
drm_mm_takedown(&bm->vram_manager);
|
|
|
|
|
bm->has_vram = 0;
|
|
|
|
|
} else
|
|
|
|
|
ret = -EBUSY;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bm->has_tt) {
|
|
|
|
|
if (drm_mm_clean(&bm->tt_manager)) {
|
|
|
|
|
drm_mm_takedown(&bm->tt_manager);
|
|
|
|
|
bm->has_tt = 0;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
} else
|
2006-09-01 07:41:55 -06:00
|
|
|
|
ret = -EBUSY;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2006-09-01 07:41:55 -06:00
|
|
|
|
if (!ret)
|
|
|
|
|
bm->initialized = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
out:
|
2006-09-01 07:41:55 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
return ret;
|
2006-08-30 05:04:08 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int drm_mm_init_ioctl(DRM_IOCTL_ARGS)
|
|
|
|
|
{
|
|
|
|
|
DRM_DEVICE;
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-30 05:04:08 -06:00
|
|
|
|
int ret = 0;
|
|
|
|
|
drm_mm_init_arg_t arg;
|
|
|
|
|
drm_buffer_manager_t *bm = &dev->bm;
|
|
|
|
|
drm_bo_driver_t *driver = dev->driver->bo_driver;
|
|
|
|
|
|
|
|
|
|
if (!driver) {
|
2006-09-01 03:23:21 -06:00
|
|
|
|
DRM_ERROR("Buffer objects are not supported by this driver\n");
|
2006-08-30 05:04:08 -06:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DRM_COPY_FROM_USER_IOCTL(arg, (void __user *)data, sizeof(arg));
|
|
|
|
|
|
2006-08-30 13:31:38 -06:00
|
|
|
|
switch (arg.req.op) {
|
2006-08-30 05:04:08 -06:00
|
|
|
|
case mm_init:
|
|
|
|
|
if (bm->initialized) {
|
|
|
|
|
DRM_ERROR("Memory manager already initialized\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-08-30 05:04:08 -06:00
|
|
|
|
bm->has_vram = 0;
|
|
|
|
|
bm->has_tt = 0;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2006-08-30 05:04:08 -06:00
|
|
|
|
if (arg.req.vr_p_size) {
|
2006-08-30 13:31:38 -06:00
|
|
|
|
ret = drm_mm_init(&bm->vram_manager,
|
|
|
|
|
arg.req.vr_p_offset,
|
2006-08-30 05:04:08 -06:00
|
|
|
|
arg.req.vr_p_size);
|
|
|
|
|
bm->has_vram = 1;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
/*
|
|
|
|
|
* VRAM not supported yet.
|
|
|
|
|
*/
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2006-09-01 07:41:55 -06:00
|
|
|
|
bm->use_vram = 0;
|
2006-08-30 05:04:08 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (arg.req.tt_p_size) {
|
2006-08-30 13:31:38 -06:00
|
|
|
|
ret = drm_mm_init(&bm->tt_manager,
|
|
|
|
|
arg.req.tt_p_offset,
|
2006-08-30 05:04:08 -06:00
|
|
|
|
arg.req.tt_p_size);
|
|
|
|
|
bm->has_tt = 1;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
bm->use_tt = 1;
|
|
|
|
|
|
2006-08-30 05:04:08 -06:00
|
|
|
|
if (ret) {
|
|
|
|
|
if (bm->has_vram)
|
|
|
|
|
drm_mm_takedown(&bm->vram_manager);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
arg.rep.mm_sarea = 0;
|
|
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&bm->vram_lru);
|
|
|
|
|
INIT_LIST_HEAD(&bm->tt_lru);
|
|
|
|
|
INIT_LIST_HEAD(&bm->unfenced);
|
|
|
|
|
INIT_LIST_HEAD(&bm->ddestroy);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
INIT_LIST_HEAD(&bm->other);
|
2006-08-30 05:04:08 -06:00
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
|
INIT_WORK(&bm->wq, &drm_bo_delayed_workqueue, dev);
|
2006-08-30 05:04:08 -06:00
|
|
|
|
bm->initialized = 1;
|
2006-09-12 04:01:00 -06:00
|
|
|
|
bm->cur_pages = 0;
|
|
|
|
|
bm->max_pages = arg.req.max_locked_pages;
|
2006-08-30 05:04:08 -06:00
|
|
|
|
break;
|
|
|
|
|
case mm_takedown:
|
2006-09-01 07:41:55 -06:00
|
|
|
|
if (drm_bo_clean_mm(dev)) {
|
|
|
|
|
DRM_ERROR("Memory manager not clean. "
|
|
|
|
|
"Delaying takedown\n");
|
2006-08-30 05:04:08 -06:00
|
|
|
|
}
|
2006-09-12 04:01:00 -06:00
|
|
|
|
DRM_DEBUG("We have %ld still locked pages\n",
|
|
|
|
|
bm->cur_pages);
|
2006-08-30 05:04:08 -06:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2006-08-31 13:42:29 -06:00
|
|
|
|
DRM_ERROR("Function not implemented yet\n");
|
2006-08-30 05:04:08 -06:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-30 05:04:08 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-08-30 05:04:08 -06:00
|
|
|
|
DRM_COPY_TO_USER_IOCTL((void __user *)data, arg, sizeof(arg));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|