2006-08-25 10:05:35 -06:00
|
|
|
|
/**************************************************************************
|
2007-03-18 15:23:43 -06:00
|
|
|
|
*
|
2007-02-08 16:07:29 -07:00
|
|
|
|
* Copyright (c) 2006-2007 Tungsten Graphics, Inc., Cedar Park, TX., USA
|
2006-08-25 10:05:35 -06:00
|
|
|
|
* All Rights Reserved.
|
2007-03-18 15:23:43 -06:00
|
|
|
|
*
|
2006-08-25 10:05:35 -06:00
|
|
|
|
* 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:
|
2007-02-08 16:07:29 -07:00
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
|
* of the Software.
|
2007-03-18 15:23:43 -06:00
|
|
|
|
*
|
2006-08-25 10:05:35 -06:00
|
|
|
|
* 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,
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* 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
|
2006-08-25 10:05:35 -06:00
|
|
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2007-03-18 15:23:43 -06:00
|
|
|
|
*
|
2006-08-25 10:05:35 -06:00
|
|
|
|
**************************************************************************/
|
|
|
|
|
/*
|
|
|
|
|
* Authors: Thomas Hellstr<EFBFBD>m <thomas-at-tungstengraphics-dot-com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "drmP.h"
|
|
|
|
|
|
2006-08-25 12:03:39 -06:00
|
|
|
|
/*
|
2007-02-02 06:47:44 -07:00
|
|
|
|
* Locking may look a bit complicated but isn't really:
|
2006-08-25 12:03:39 -06:00
|
|
|
|
*
|
2007-02-02 06:47:44 -07:00
|
|
|
|
* The buffer usage atomic_t needs to be protected by dev->struct_mutex
|
|
|
|
|
* when there is a chance that it can be zero before or after the operation.
|
2007-03-18 15:23:43 -06:00
|
|
|
|
*
|
2007-02-02 06:47:44 -07:00
|
|
|
|
* dev->struct_mutex also protects all lists and list heads. Hash tables and hash
|
|
|
|
|
* heads.
|
|
|
|
|
*
|
|
|
|
|
* bo->mutex protects the buffer object itself excluding the usage field.
|
|
|
|
|
* bo->mutex does also protect the buffer list heads, so to manipulate those, we need
|
|
|
|
|
* both the bo->mutex and the dev->struct_mutex.
|
2006-08-25 12:03:39 -06:00
|
|
|
|
*
|
2007-02-02 06:47:44 -07:00
|
|
|
|
* Locking order is bo->mutex, dev->struct_mutex. Therefore list traversal is a bit
|
|
|
|
|
* complicated. When dev->struct_mutex is released to grab bo->mutex, the list
|
|
|
|
|
* traversal will, in general, need to be restarted.
|
2006-08-25 12:03:39 -06:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static void drm_bo_destroy_locked(struct drm_buffer_object * bo);
|
|
|
|
|
static int drm_bo_setup_vm_locked(struct drm_buffer_object * bo);
|
|
|
|
|
static void drm_bo_takedown_vm_locked(struct drm_buffer_object * bo);
|
|
|
|
|
static void drm_bo_unmap_virtual(struct drm_buffer_object * bo);
|
2007-01-30 04:33:46 -07:00
|
|
|
|
|
2006-10-17 03:05:37 -06:00
|
|
|
|
static inline uint32_t drm_bo_type_flags(unsigned type)
|
|
|
|
|
{
|
|
|
|
|
return (1 << (24 + type));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* bo locked. dev->struct_mutex locked.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
void drm_bo_add_to_pinned_lru(struct drm_buffer_object * bo)
|
2006-10-17 03:05:37 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_mem_type_manager *man;
|
2007-01-29 05:11:55 -07:00
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
DRM_ASSERT_LOCKED(&bo->dev->struct_mutex);
|
|
|
|
|
DRM_ASSERT_LOCKED(&bo->mutex);
|
|
|
|
|
|
2007-02-12 09:47:57 -07:00
|
|
|
|
man = &bo->dev->bm.man[bo->pinned_mem_type];
|
|
|
|
|
list_add_tail(&bo->pinned_lru, &man->pinned);
|
2006-10-17 03:05:37 -06:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
void drm_bo_add_to_lru(struct drm_buffer_object * bo)
|
2007-02-12 09:47:57 -07:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_mem_type_manager *man;
|
2007-02-12 09:47:57 -07:00
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
DRM_ASSERT_LOCKED(&bo->dev->struct_mutex);
|
|
|
|
|
|
2007-07-26 11:14:17 -06:00
|
|
|
|
if (!bo->pinned || bo->mem.mem_type != bo->pinned_mem_type) {
|
2007-02-12 09:47:57 -07:00
|
|
|
|
man = &bo->dev->bm.man[bo->mem.mem_type];
|
|
|
|
|
list_add_tail(&bo->lru, &man->lru);
|
2007-02-13 12:05:32 -07:00
|
|
|
|
} else {
|
2007-02-12 09:47:57 -07:00
|
|
|
|
INIT_LIST_HEAD(&bo->lru);
|
2007-02-13 12:05:32 -07:00
|
|
|
|
}
|
2007-02-12 09:47:57 -07:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_vm_pre_move(struct drm_buffer_object * bo, int old_is_pci)
|
2007-02-07 04:52:23 -07:00
|
|
|
|
{
|
|
|
|
|
#ifdef DRM_ODD_MM_COMPAT
|
|
|
|
|
int ret;
|
|
|
|
|
|
2007-04-11 13:51:52 -06:00
|
|
|
|
if (!bo->map_list.map)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
ret = drm_bo_lock_kmm(bo);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (ret)
|
2007-02-07 04:52:23 -07:00
|
|
|
|
return ret;
|
|
|
|
|
drm_bo_unmap_virtual(bo);
|
|
|
|
|
if (old_is_pci)
|
|
|
|
|
drm_bo_finish_unmap(bo);
|
|
|
|
|
#else
|
2007-04-11 13:51:52 -06:00
|
|
|
|
if (!bo->map_list.map)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
drm_bo_unmap_virtual(bo);
|
|
|
|
|
#endif
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static void drm_bo_vm_post_move(struct drm_buffer_object * bo)
|
2007-02-07 04:52:23 -07:00
|
|
|
|
{
|
|
|
|
|
#ifdef DRM_ODD_MM_COMPAT
|
|
|
|
|
int ret;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-04-11 13:51:52 -06:00
|
|
|
|
if (!bo->map_list.map)
|
|
|
|
|
return;
|
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
ret = drm_bo_remap_bound(bo);
|
|
|
|
|
if (ret) {
|
|
|
|
|
DRM_ERROR("Failed to remap a bound buffer object.\n"
|
|
|
|
|
"\tThis might cause a sigbus later.\n");
|
|
|
|
|
}
|
|
|
|
|
drm_bo_unlock_kmm(bo);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
/*
|
2007-02-07 04:52:23 -07:00
|
|
|
|
* Call bo->mutex locked.
|
2006-08-25 10:05:35 -06:00
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_add_ttm(struct drm_buffer_object * bo)
|
2006-08-25 10:05:35 -06:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-02-02 11:49:11 -07:00
|
|
|
|
int ret = 0;
|
2007-02-07 04:52:23 -07:00
|
|
|
|
bo->ttm = NULL;
|
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
DRM_ASSERT_LOCKED(&bo->mutex);
|
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
switch (bo->type) {
|
|
|
|
|
case drm_bo_type_dc:
|
2007-02-12 12:34:50 -07:00
|
|
|
|
bo->ttm = drm_ttm_init(dev, bo->mem.num_pages << PAGE_SHIFT);
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (!bo->ttm)
|
|
|
|
|
ret = -ENOMEM;
|
|
|
|
|
break;
|
2007-04-11 13:51:52 -06:00
|
|
|
|
case drm_bo_type_kernel:
|
|
|
|
|
bo->ttm = drm_ttm_init(dev, bo->mem.num_pages << PAGE_SHIFT);
|
|
|
|
|
if (!bo->ttm)
|
|
|
|
|
ret = -ENOMEM;
|
|
|
|
|
break;
|
2007-02-07 04:52:23 -07:00
|
|
|
|
case drm_bo_type_user:
|
|
|
|
|
case drm_bo_type_fake:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
DRM_ERROR("Illegal buffer object type\n");
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_handle_move_mem(struct drm_buffer_object * bo,
|
|
|
|
|
struct drm_bo_mem_reg * mem,
|
2007-02-12 12:34:50 -07:00
|
|
|
|
int evict, int no_wait)
|
2007-02-07 04:52:23 -07:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2007-02-07 04:52:23 -07:00
|
|
|
|
int old_is_pci = drm_mem_reg_is_pci(dev, &bo->mem);
|
|
|
|
|
int new_is_pci = drm_mem_reg_is_pci(dev, mem);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_mem_type_manager *old_man = &bm->man[bo->mem.mem_type];
|
|
|
|
|
struct drm_mem_type_manager *new_man = &bm->man[mem->mem_type];
|
2007-02-07 04:52:23 -07:00
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
|
|
if (old_is_pci || new_is_pci)
|
|
|
|
|
ret = drm_bo_vm_pre_move(bo, old_is_pci);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
2007-02-10 04:06:36 -07:00
|
|
|
|
/*
|
|
|
|
|
* Create and bind a ttm if required.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (!(new_man->flags & _DRM_FLAG_MEMTYPE_FIXED) && (bo->ttm == NULL)) {
|
2007-02-07 04:52:23 -07:00
|
|
|
|
ret = drm_bo_add_ttm(bo);
|
2007-02-10 04:06:36 -07:00
|
|
|
|
if (ret)
|
|
|
|
|
goto out_err;
|
|
|
|
|
|
|
|
|
|
if (mem->mem_type != DRM_BO_MEM_LOCAL) {
|
|
|
|
|
ret = drm_bind_ttm(bo->ttm, new_man->flags &
|
|
|
|
|
DRM_BO_FLAG_CACHED,
|
|
|
|
|
mem->mm_node->start);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out_err;
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-10 04:06:36 -07:00
|
|
|
|
if ((bo->mem.mem_type == DRM_BO_MEM_LOCAL) && bo->ttm == NULL) {
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_mem_reg *old_mem = &bo->mem;
|
2007-06-12 04:21:38 -06:00
|
|
|
|
uint64_t save_flags = old_mem->flags;
|
|
|
|
|
uint64_t save_mask = old_mem->mask;
|
2007-02-10 04:06:36 -07:00
|
|
|
|
|
|
|
|
|
*old_mem = *mem;
|
|
|
|
|
mem->mm_node = NULL;
|
|
|
|
|
old_mem->mask = save_mask;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
DRM_FLAG_MASKED(save_flags, mem->flags, DRM_BO_MASK_MEMTYPE);
|
2007-02-07 04:52:23 -07:00
|
|
|
|
|
2007-02-10 04:06:36 -07:00
|
|
|
|
} else if (!(old_man->flags & _DRM_FLAG_MEMTYPE_FIXED) &&
|
2007-02-12 12:34:50 -07:00
|
|
|
|
!(new_man->flags & _DRM_FLAG_MEMTYPE_FIXED)) {
|
2007-02-10 04:06:36 -07:00
|
|
|
|
|
2007-02-08 08:21:38 -07:00
|
|
|
|
ret = drm_bo_move_ttm(bo, evict, no_wait, mem);
|
2007-02-10 04:06:36 -07:00
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
} else if (dev->driver->bo_driver->move) {
|
2007-02-08 08:21:38 -07:00
|
|
|
|
ret = dev->driver->bo_driver->move(bo, evict, no_wait, mem);
|
2007-02-10 04:06:36 -07:00
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
} else {
|
2007-02-10 04:06:36 -07:00
|
|
|
|
|
2007-02-08 08:21:38 -07:00
|
|
|
|
ret = drm_bo_move_memcpy(bo, evict, no_wait, mem);
|
2007-02-10 04:06:36 -07:00
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
}
|
2006-10-17 11:57:06 -06:00
|
|
|
|
|
2007-02-10 04:06:36 -07:00
|
|
|
|
if (ret)
|
|
|
|
|
goto out_err;
|
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (old_is_pci || new_is_pci)
|
|
|
|
|
drm_bo_vm_post_move(bo);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (bo->priv_flags & _DRM_BO_FLAG_EVICTED) {
|
2007-02-12 12:34:50 -07:00
|
|
|
|
ret =
|
|
|
|
|
dev->driver->bo_driver->invalidate_caches(dev,
|
|
|
|
|
bo->mem.flags);
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (ret)
|
|
|
|
|
DRM_ERROR("Can not flush read caches\n");
|
2006-10-11 14:21:01 -06:00
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags,
|
|
|
|
|
(evict) ? _DRM_BO_FLAG_EVICTED : 0,
|
|
|
|
|
_DRM_BO_FLAG_EVICTED);
|
2006-08-25 10:05:35 -06:00
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (bo->mem.mm_node)
|
|
|
|
|
bo->offset = bo->mem.mm_node->start << PAGE_SHIFT;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2006-08-25 10:05:35 -06:00
|
|
|
|
return 0;
|
2007-02-10 04:06:36 -07:00
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
out_err:
|
2007-02-10 04:06:36 -07:00
|
|
|
|
if (old_is_pci || new_is_pci)
|
|
|
|
|
drm_bo_vm_post_move(bo);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-10 04:06:36 -07:00
|
|
|
|
new_man = &bm->man[bo->mem.mem_type];
|
|
|
|
|
if ((new_man->flags & _DRM_FLAG_MEMTYPE_FIXED) && bo->ttm) {
|
|
|
|
|
drm_ttm_unbind(bo->ttm);
|
|
|
|
|
drm_destroy_ttm(bo->ttm);
|
|
|
|
|
bo->ttm = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ret;
|
2006-08-25 10:05:35 -06:00
|
|
|
|
}
|
|
|
|
|
|
2006-10-19 08:58:00 -06:00
|
|
|
|
/*
|
|
|
|
|
* Call bo->mutex locked.
|
|
|
|
|
* Wait until the buffer is idle.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
int drm_bo_wait(struct drm_buffer_object * bo, int lazy, int ignore_signals,
|
2007-02-08 13:28:33 -07:00
|
|
|
|
int no_wait)
|
2006-10-19 08:58:00 -06:00
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
DRM_ASSERT_LOCKED(&bo->mutex);
|
|
|
|
|
|
2007-06-29 04:50:12 -06:00
|
|
|
|
if (bo->fence) {
|
|
|
|
|
if (drm_fence_object_signaled(bo->fence, bo->fence_type, 0)) {
|
|
|
|
|
drm_fence_usage_deref_unlocked(&bo->fence);
|
2006-10-19 08:58:00 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (no_wait) {
|
|
|
|
|
return -EBUSY;
|
|
|
|
|
}
|
|
|
|
|
ret =
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_fence_object_wait(bo->fence, lazy, ignore_signals,
|
2006-10-19 08:58:00 -06:00
|
|
|
|
bo->fence_type);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_fence_usage_deref_unlocked(&bo->fence);
|
2006-10-19 08:58:00 -06:00
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_expire_fence(struct drm_buffer_object * bo, int allow_errors)
|
2007-02-12 09:47:57 -07:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2007-02-12 09:47:57 -07:00
|
|
|
|
|
|
|
|
|
if (bo->fence) {
|
|
|
|
|
if (bm->nice_mode) {
|
|
|
|
|
unsigned long _end = jiffies + 3 * DRM_HZ;
|
|
|
|
|
int ret;
|
|
|
|
|
do {
|
|
|
|
|
ret = drm_bo_wait(bo, 0, 1, 0);
|
|
|
|
|
if (ret && allow_errors)
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
} while (ret && !time_after_eq(jiffies, _end));
|
|
|
|
|
|
|
|
|
|
if (bo->fence) {
|
|
|
|
|
bm->nice_mode = 0;
|
|
|
|
|
DRM_ERROR("Detected GPU lockup or "
|
|
|
|
|
"fence driver was taken down. "
|
|
|
|
|
"Evicting buffer.\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-06-29 04:50:12 -06:00
|
|
|
|
if (bo->fence)
|
|
|
|
|
drm_fence_usage_deref_unlocked(&bo->fence);
|
2007-02-12 09:47:57 -07:00
|
|
|
|
}
|
|
|
|
|
return 0;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
}
|
2007-02-12 09:47:57 -07:00
|
|
|
|
|
2007-01-30 04:33:46 -07:00
|
|
|
|
/*
|
|
|
|
|
* Call dev->struct_mutex locked.
|
|
|
|
|
* Attempts to remove all private references to a buffer by expiring its
|
|
|
|
|
* fence object and removing from lru lists and memory managers.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static void drm_bo_cleanup_refs(struct drm_buffer_object * bo, int remove_all)
|
2007-01-30 04:33:46 -07:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2007-01-30 04:33:46 -07:00
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
DRM_ASSERT_LOCKED(&dev->struct_mutex);
|
|
|
|
|
|
2007-01-30 04:33:46 -07:00
|
|
|
|
atomic_inc(&bo->usage);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
mutex_lock(&bo->mutex);
|
|
|
|
|
|
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, 0, _DRM_BO_FLAG_UNFENCED);
|
|
|
|
|
|
2007-06-29 04:50:12 -06:00
|
|
|
|
if (bo->fence && drm_fence_object_signaled(bo->fence,
|
|
|
|
|
bo->fence_type, 0))
|
|
|
|
|
drm_fence_usage_deref_unlocked(&bo->fence);
|
2007-01-30 04:33:46 -07:00
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (bo->fence && remove_all)
|
|
|
|
|
(void)drm_bo_expire_fence(bo, 0);
|
2007-01-30 04:33:46 -07:00
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
if (!atomic_dec_and_test(&bo->usage)) {
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!bo->fence) {
|
|
|
|
|
list_del_init(&bo->lru);
|
2007-02-06 07:56:43 -07:00
|
|
|
|
if (bo->mem.mm_node) {
|
|
|
|
|
drm_mm_put_block(bo->mem.mm_node);
|
2007-02-13 12:05:32 -07:00
|
|
|
|
if (bo->pinned_node == bo->mem.mm_node)
|
|
|
|
|
bo->pinned_node = NULL;
|
2007-02-06 07:56:43 -07:00
|
|
|
|
bo->mem.mm_node = NULL;
|
2007-01-30 04:33:46 -07:00
|
|
|
|
}
|
2007-02-12 09:47:57 -07:00
|
|
|
|
list_del_init(&bo->pinned_lru);
|
|
|
|
|
if (bo->pinned_node) {
|
|
|
|
|
drm_mm_put_block(bo->pinned_node);
|
|
|
|
|
bo->pinned_node = NULL;
|
|
|
|
|
}
|
2007-01-30 04:33:46 -07:00
|
|
|
|
list_del_init(&bo->ddestroy);
|
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
drm_bo_destroy_locked(bo);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (list_empty(&bo->ddestroy)) {
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_fence_object_flush(bo->fence, bo->fence_type);
|
2007-01-30 04:33:46 -07:00
|
|
|
|
list_add_tail(&bo->ddestroy, &bm->ddestroy);
|
|
|
|
|
schedule_delayed_work(&bm->wq,
|
2007-02-12 12:34:50 -07:00
|
|
|
|
((DRM_HZ / 100) < 1) ? 1 : DRM_HZ / 100);
|
2007-01-30 04:33:46 -07:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
out:
|
2007-01-30 04:33:46 -07:00
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Verify that refcount is 0 and that there are no internal references
|
|
|
|
|
* to the buffer object. Then destroy it.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static void drm_bo_destroy_locked(struct drm_buffer_object * bo)
|
2007-01-30 04:33:46 -07:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2007-01-30 04:33:46 -07:00
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
DRM_ASSERT_LOCKED(&dev->struct_mutex);
|
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (list_empty(&bo->lru) && bo->mem.mm_node == NULL &&
|
2007-02-12 09:47:57 -07:00
|
|
|
|
list_empty(&bo->pinned_lru) && bo->pinned_node == NULL &&
|
2007-02-12 12:34:50 -07:00
|
|
|
|
list_empty(&bo->ddestroy) && atomic_read(&bo->usage) == 0) {
|
2007-02-13 12:05:32 -07:00
|
|
|
|
if (bo->fence != NULL) {
|
|
|
|
|
DRM_ERROR("Fence was non-zero.\n");
|
|
|
|
|
drm_bo_cleanup_refs(bo, 0);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-01-30 04:33:46 -07:00
|
|
|
|
|
2007-02-02 11:49:11 -07:00
|
|
|
|
#ifdef DRM_ODD_MM_COMPAT
|
|
|
|
|
BUG_ON(!list_empty(&bo->vma_list));
|
|
|
|
|
BUG_ON(!list_empty(&bo->p_mm_list));
|
|
|
|
|
#endif
|
2007-01-30 04:33:46 -07:00
|
|
|
|
|
2007-02-02 11:49:11 -07:00
|
|
|
|
if (bo->ttm) {
|
|
|
|
|
drm_ttm_unbind(bo->ttm);
|
2007-02-02 06:47:44 -07:00
|
|
|
|
drm_destroy_ttm(bo->ttm);
|
|
|
|
|
bo->ttm = NULL;
|
2007-01-30 04:33:46 -07:00
|
|
|
|
}
|
2007-02-08 03:55:24 -07:00
|
|
|
|
|
2007-01-30 04:33:46 -07:00
|
|
|
|
atomic_dec(&bm->count);
|
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
BUG_ON(!list_empty(&bo->base.list));
|
2007-01-30 04:33:46 -07:00
|
|
|
|
drm_ctl_free(bo, sizeof(*bo), DRM_MEM_BUFOBJ);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Some stuff is still trying to reference the buffer object.
|
|
|
|
|
* Get rid of those references.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
drm_bo_cleanup_refs(bo, 0);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2006-10-19 08:58:00 -06:00
|
|
|
|
/*
|
|
|
|
|
* Call dev->struct_mutex locked.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:32:51 -06:00
|
|
|
|
static void drm_bo_delayed_delete(struct drm_device * dev, int remove_all)
|
2006-08-31 07:36:40 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *entry, *nentry;
|
2006-09-27 11:07:55 -06:00
|
|
|
|
struct list_head *list, *next;
|
2006-08-31 07:36:40 -06:00
|
|
|
|
|
2006-09-27 11:07:55 -06:00
|
|
|
|
list_for_each_safe(list, next, &bm->ddestroy) {
|
2007-07-15 21:37:02 -06:00
|
|
|
|
entry = list_entry(list, struct drm_buffer_object, ddestroy);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2006-10-19 08:58:00 -06:00
|
|
|
|
nentry = NULL;
|
|
|
|
|
if (next != &bm->ddestroy) {
|
2007-07-15 21:37:02 -06:00
|
|
|
|
nentry = list_entry(next, struct drm_buffer_object,
|
2006-10-19 08:58:00 -06:00
|
|
|
|
ddestroy);
|
|
|
|
|
atomic_inc(&nentry->usage);
|
|
|
|
|
}
|
2006-08-31 07:36:40 -06:00
|
|
|
|
|
2007-01-30 04:33:46 -07:00
|
|
|
|
drm_bo_cleanup_refs(entry, remove_all);
|
2006-10-17 11:57:06 -06:00
|
|
|
|
|
2006-10-19 08:58:00 -06:00
|
|
|
|
if (nentry) {
|
|
|
|
|
atomic_dec(&nentry->usage);
|
2006-10-17 11:57:06 -06:00
|
|
|
|
}
|
2006-08-31 07:36:40 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-31 17:30:38 -07:00
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20)
|
2006-09-08 09:24:38 -06:00
|
|
|
|
static void drm_bo_delayed_workqueue(void *data)
|
2006-12-31 17:30:38 -07:00
|
|
|
|
#else
|
|
|
|
|
static void drm_bo_delayed_workqueue(struct work_struct *work)
|
|
|
|
|
#endif
|
2006-08-31 07:36:40 -06:00
|
|
|
|
{
|
2006-12-31 17:30:38 -07:00
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20)
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = (struct drm_device *) data;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2006-12-31 17:30:38 -07:00
|
|
|
|
#else
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm =
|
|
|
|
|
container_of(work, struct drm_buffer_manager, wq.work);
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = container_of(bm, struct drm_device, bm);
|
2006-12-31 17:30:38 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2006-09-12 09:39:44 -06:00
|
|
|
|
DRM_DEBUG("Delayed delete Worker\n");
|
|
|
|
|
|
2006-09-12 08:28:34 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-10-19 08:58:00 -06:00
|
|
|
|
if (!bm->initialized) {
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
drm_bo_delayed_delete(dev, 0);
|
2006-10-17 03:05:37 -06:00
|
|
|
|
if (bm->initialized && !list_empty(&bm->ddestroy)) {
|
2006-09-12 08:28:34 -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);
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
void drm_bo_usage_deref_locked(struct drm_buffer_object ** bo)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
2007-06-29 04:50:12 -06:00
|
|
|
|
struct drm_buffer_object *tmp_bo = *bo;
|
|
|
|
|
bo = NULL;
|
2007-06-14 03:52:38 -06:00
|
|
|
|
|
2007-06-29 04:50:12 -06:00
|
|
|
|
DRM_ASSERT_LOCKED(&tmp_bo->dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
if (atomic_dec_and_test(&tmp_bo->usage)) {
|
|
|
|
|
drm_bo_destroy_locked(tmp_bo);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
static void drm_bo_base_deref_locked(struct drm_file * file_priv,
|
|
|
|
|
struct drm_user_object * uo)
|
2006-08-30 13:30:47 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *bo =
|
|
|
|
|
drm_user_object_entry(uo, struct drm_buffer_object, base);
|
2007-02-02 06:47:44 -07:00
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
DRM_ASSERT_LOCKED(&bo->dev->struct_mutex);
|
|
|
|
|
|
2007-02-02 06:47:44 -07:00
|
|
|
|
drm_bo_takedown_vm_locked(bo);
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_locked(&bo);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static void drm_bo_usage_deref_unlocked(struct drm_buffer_object ** bo)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
2007-06-29 04:50:12 -06:00
|
|
|
|
struct drm_buffer_object *tmp_bo = *bo;
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = tmp_bo->dev;
|
2007-01-31 03:03:53 -07:00
|
|
|
|
|
2007-06-29 04:50:12 -06:00
|
|
|
|
*bo = NULL;
|
|
|
|
|
if (atomic_dec_and_test(&tmp_bo->usage)) {
|
2007-01-31 03:03:53 -07:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2007-06-29 04:50:12 -06:00
|
|
|
|
if (atomic_read(&tmp_bo->usage) == 0)
|
|
|
|
|
drm_bo_destroy_locked(tmp_bo);
|
2007-01-31 03:03:53 -07:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-05 10:00:25 -06:00
|
|
|
|
/*
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* Note. The caller has to register (if applicable)
|
2006-09-05 10:00:25 -06:00
|
|
|
|
* and deregister fence object usage.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
int drm_fence_buffer_objects(struct drm_file * file_priv,
|
2006-09-12 08:28:34 -06:00
|
|
|
|
struct list_head *list,
|
2006-09-15 08:47:09 -06:00
|
|
|
|
uint32_t fence_flags,
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_fence_object * fence,
|
|
|
|
|
struct drm_fence_object ** used_fence)
|
2006-08-31 13:42:29 -06:00
|
|
|
|
{
|
2007-07-20 07:39:25 -06:00
|
|
|
|
struct drm_device *dev = file_priv->head->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *entry;
|
2006-09-15 08:47:09 -06:00
|
|
|
|
uint32_t fence_type = 0;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
int count = 0;
|
|
|
|
|
int ret = 0;
|
2007-01-29 05:36:17 -07:00
|
|
|
|
struct list_head *l;
|
|
|
|
|
LIST_HEAD(f_list);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
2007-01-29 05:11:55 -07:00
|
|
|
|
list_for_each_entry(entry, list, lru) {
|
2006-08-31 13:42:29 -06:00
|
|
|
|
BUG_ON(!(entry->priv_flags & _DRM_BO_FLAG_UNFENCED));
|
2006-09-15 08:47:09 -06:00
|
|
|
|
fence_type |= entry->fence_type;
|
2006-09-12 08:28:34 -06:00
|
|
|
|
if (entry->fence_class != 0) {
|
|
|
|
|
DRM_ERROR("Fence class %d is not implemented yet.\n",
|
|
|
|
|
entry->fence_class);
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
2006-08-31 13:42:29 -06:00
|
|
|
|
count++;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
|
if (!count) {
|
|
|
|
|
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;
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* This is so we don't get any new unfenced objects while fencing
|
2006-09-12 08:28:34 -06:00
|
|
|
|
* the ones we already have..
|
2006-09-08 09:24:38 -06:00
|
|
|
|
*/
|
|
|
|
|
|
2007-01-29 05:36:17 -07:00
|
|
|
|
list_splice_init(list, &f_list);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
|
|
|
|
if (fence) {
|
2006-09-15 08:47:09 -06:00
|
|
|
|
if ((fence_type & fence->type) != fence_type) {
|
2006-08-31 13:42:29 -06:00
|
|
|
|
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);
|
2007-02-15 04:10:33 -07:00
|
|
|
|
ret = drm_fence_object_create(dev, 0, fence_type,
|
2006-10-17 11:57:06 -06:00
|
|
|
|
fence_flags | DRM_FENCE_FLAG_EMIT,
|
2006-09-15 08:47:09 -06:00
|
|
|
|
&fence);
|
2006-09-08 09:24:38 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-09-05 10:00:25 -06:00
|
|
|
|
if (ret)
|
2006-09-12 08:28:34 -06:00
|
|
|
|
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) {
|
2007-02-13 12:05:32 -07:00
|
|
|
|
prefetch(l->next);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
entry = list_entry(l, struct drm_buffer_object, lru);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
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)
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_fence_usage_deref_locked(&entry->fence);
|
|
|
|
|
entry->fence = drm_fence_reference_locked(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);
|
2007-02-12 09:47:57 -07:00
|
|
|
|
drm_bo_add_to_lru(entry);
|
2006-09-29 03:15:59 -06:00
|
|
|
|
}
|
|
|
|
|
mutex_unlock(&entry->mutex);
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_locked(&entry);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
l = f_list.next;
|
|
|
|
|
}
|
2006-09-12 09:39:44 -06:00
|
|
|
|
DRM_DEBUG("Fenced %d buffers\n", count);
|
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
|
|
|
|
|
2006-09-12 08:28:34 -06:00
|
|
|
|
EXPORT_SYMBOL(drm_fence_buffer_objects);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2006-08-30 13:30:47 -06:00
|
|
|
|
/*
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* bo->mutex locked
|
2006-08-30 13:30:47 -06:00
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_evict(struct drm_buffer_object * bo, unsigned mem_type,
|
2007-02-12 09:47:57 -07:00
|
|
|
|
int no_wait)
|
2006-08-30 13:30:47 -06:00
|
|
|
|
{
|
|
|
|
|
int ret = 0;
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_mem_reg evict_mem;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
|
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.
|
2007-02-07 09:25:13 -07:00
|
|
|
|
*/
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2006-10-17 11:57:06 -06:00
|
|
|
|
if (bo->priv_flags & _DRM_BO_FLAG_UNFENCED)
|
2006-08-30 13:30:47 -06:00
|
|
|
|
goto out;
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (bo->mem.mem_type != mem_type)
|
2007-02-08 03:55:24 -07:00
|
|
|
|
goto out;
|
2006-08-30 13:30:47 -06:00
|
|
|
|
|
2006-09-04 13:50:12 -06:00
|
|
|
|
ret = drm_bo_wait(bo, 0, 0, no_wait);
|
2006-10-17 03:05:37 -06:00
|
|
|
|
|
2007-02-06 06:20:33 -07:00
|
|
|
|
if (ret && ret != -EAGAIN) {
|
|
|
|
|
DRM_ERROR("Failed to expire fence before "
|
|
|
|
|
"buffer eviction.\n");
|
2006-08-30 13:30:47 -06:00
|
|
|
|
goto out;
|
2006-09-15 03:18:35 -06:00
|
|
|
|
}
|
2006-08-30 13:30:47 -06:00
|
|
|
|
|
2007-02-12 09:47:57 -07:00
|
|
|
|
evict_mem = bo->mem;
|
|
|
|
|
evict_mem.mm_node = NULL;
|
|
|
|
|
|
|
|
|
|
if (bo->type == drm_bo_type_fake) {
|
|
|
|
|
bo->mem.mem_type = DRM_BO_MEM_LOCAL;
|
|
|
|
|
bo->mem.mm_node = NULL;
|
2007-02-08 03:55:24 -07:00
|
|
|
|
goto out1;
|
2007-02-12 09:47:57 -07:00
|
|
|
|
}
|
2007-02-08 03:55:24 -07:00
|
|
|
|
|
2007-02-06 07:56:43 -07:00
|
|
|
|
evict_mem = bo->mem;
|
2007-02-16 12:22:24 -07:00
|
|
|
|
evict_mem.mask = dev->driver->bo_driver->evict_mask(bo);
|
2007-02-12 09:47:57 -07:00
|
|
|
|
ret = drm_bo_mem_space(bo, &evict_mem, no_wait);
|
2007-02-06 06:20:33 -07:00
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (ret) {
|
|
|
|
|
if (ret != -EAGAIN)
|
|
|
|
|
DRM_ERROR("Failed to find memory space for "
|
2007-02-13 12:05:32 -07:00
|
|
|
|
"buffer 0x%p eviction.\n", bo);
|
2007-02-06 06:20:33 -07:00
|
|
|
|
goto out;
|
2006-08-30 13:30:47 -06:00
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
ret = drm_bo_handle_move_mem(bo, &evict_mem, 1, no_wait);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (ret) {
|
|
|
|
|
if (ret != -EAGAIN)
|
|
|
|
|
DRM_ERROR("Buffer eviction failed\n");
|
2007-02-06 06:20:33 -07:00
|
|
|
|
goto out;
|
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
|
|
|
|
out1:
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (evict_mem.mm_node) {
|
2007-02-13 12:05:32 -07:00
|
|
|
|
if (evict_mem.mm_node != bo->pinned_node)
|
|
|
|
|
drm_mm_put_block(evict_mem.mm_node);
|
2007-02-07 04:52:23 -07:00
|
|
|
|
evict_mem.mm_node = NULL;
|
|
|
|
|
}
|
|
|
|
|
list_del(&bo->lru);
|
2007-02-12 09:47:57 -07:00
|
|
|
|
drm_bo_add_to_lru(bo);
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2007-01-29 05:11:55 -07:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, _DRM_BO_FLAG_EVICTED,
|
|
|
|
|
_DRM_BO_FLAG_EVICTED);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
|
|
|
|
out:
|
2006-08-30 13:30:47 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-02 14:51:55 -06:00
|
|
|
|
/**
|
|
|
|
|
* Repeatedly evict memory from the LRU for @mem_type until we create enough
|
|
|
|
|
* space, or we've evicted everything and there isn't enough space.
|
|
|
|
|
*/
|
2007-07-15 20:32:51 -06:00
|
|
|
|
static int drm_bo_mem_force_space(struct drm_device * dev,
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_mem_reg * mem,
|
2007-02-12 12:34:50 -07:00
|
|
|
|
uint32_t mem_type, int no_wait)
|
2006-08-30 13:30:47 -06:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_mm_node *node;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_buffer_object *entry;
|
|
|
|
|
struct drm_mem_type_manager *man = &bm->man[mem_type];
|
2006-08-30 13:30:47 -06:00
|
|
|
|
struct list_head *lru;
|
2007-02-06 06:20:33 -07:00
|
|
|
|
unsigned long num_pages = mem->num_pages;
|
2006-08-30 13:30:47 -06:00
|
|
|
|
int ret;
|
|
|
|
|
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
do {
|
2007-02-12 12:34:50 -07:00
|
|
|
|
node = drm_mm_search_free(&man->manager, num_pages,
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mem->page_alignment, 1);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
if (node)
|
|
|
|
|
break;
|
|
|
|
|
|
2007-01-31 06:50:57 -07:00
|
|
|
|
lru = &man->lru;
|
2006-08-30 13:30:47 -06:00
|
|
|
|
if (lru->next == lru)
|
|
|
|
|
break;
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
entry = list_entry(lru->next, struct drm_buffer_object, lru);
|
2007-01-29 05:19:20 -07:00
|
|
|
|
atomic_inc(&entry->usage);
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2007-01-29 05:19:20 -07:00
|
|
|
|
mutex_lock(&entry->mutex);
|
2007-07-26 11:14:17 -06:00
|
|
|
|
BUG_ON(entry->pinned);
|
2007-02-06 06:20:33 -07:00
|
|
|
|
|
2007-02-12 09:47:57 -07:00
|
|
|
|
ret = drm_bo_evict(entry, mem_type, no_wait);
|
2007-01-29 05:19:20 -07:00
|
|
|
|
mutex_unlock(&entry->mutex);
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_unlocked(&entry);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
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) {
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-30 13:30:47 -06:00
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-06 06:20:33 -07:00
|
|
|
|
node = drm_mm_get_block(node, num_pages, mem->page_alignment);
|
2006-08-31 07:36:40 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mem->mm_node = node;
|
|
|
|
|
mem->mem_type = mem_type;
|
2006-08-30 13:30:47 -06:00
|
|
|
|
return 0;
|
2006-08-28 08:36:37 -06:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_mt_compatible(struct drm_mem_type_manager * man,
|
2007-02-07 09:25:13 -07:00
|
|
|
|
uint32_t mem_type,
|
2007-02-12 12:34:50 -07:00
|
|
|
|
uint32_t mask, uint32_t * res_mask)
|
2007-02-07 09:25:13 -07:00
|
|
|
|
{
|
|
|
|
|
uint32_t cur_flags = drm_bo_type_flags(mem_type);
|
2007-02-08 03:55:24 -07:00
|
|
|
|
uint32_t flag_diff;
|
2007-02-07 09:25:13 -07:00
|
|
|
|
|
|
|
|
|
if (man->flags & _DRM_FLAG_MEMTYPE_CACHED)
|
|
|
|
|
cur_flags |= DRM_BO_FLAG_CACHED;
|
|
|
|
|
if (man->flags & _DRM_FLAG_MEMTYPE_MAPPABLE)
|
|
|
|
|
cur_flags |= DRM_BO_FLAG_MAPPABLE;
|
|
|
|
|
if (man->flags & _DRM_FLAG_MEMTYPE_CSELECT)
|
|
|
|
|
DRM_FLAG_MASKED(cur_flags, mask, DRM_BO_FLAG_CACHED);
|
|
|
|
|
|
2007-02-13 12:05:32 -07:00
|
|
|
|
if ((cur_flags & mask & DRM_BO_MASK_MEM) == 0)
|
2007-02-08 03:55:24 -07:00
|
|
|
|
return 0;
|
2007-02-13 12:05:32 -07:00
|
|
|
|
|
|
|
|
|
if (mem_type == DRM_BO_MEM_LOCAL) {
|
|
|
|
|
*res_mask = cur_flags;
|
|
|
|
|
return 1;
|
2007-02-08 03:55:24 -07:00
|
|
|
|
}
|
2007-02-13 12:05:32 -07:00
|
|
|
|
|
2007-02-08 03:55:24 -07:00
|
|
|
|
flag_diff = (mask ^ cur_flags);
|
|
|
|
|
if ((flag_diff & DRM_BO_FLAG_CACHED) &&
|
2007-02-13 12:05:32 -07:00
|
|
|
|
(!(mask & DRM_BO_FLAG_CACHED) ||
|
|
|
|
|
(mask & DRM_BO_FLAG_FORCE_CACHING)))
|
2007-02-08 03:55:24 -07:00
|
|
|
|
return 0;
|
2007-02-13 12:05:32 -07:00
|
|
|
|
|
2007-02-08 03:55:24 -07:00
|
|
|
|
if ((flag_diff & DRM_BO_FLAG_MAPPABLE) &&
|
2007-02-13 12:05:32 -07:00
|
|
|
|
((mask & DRM_BO_FLAG_MAPPABLE) ||
|
|
|
|
|
(mask & DRM_BO_FLAG_FORCE_MAPPABLE)) )
|
2007-02-08 03:55:24 -07:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
*res_mask = cur_flags;
|
|
|
|
|
return 1;
|
2007-02-07 09:25:13 -07:00
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-08-02 14:51:55 -06:00
|
|
|
|
/**
|
|
|
|
|
* Creates space for memory region @mem according to its type.
|
|
|
|
|
*
|
|
|
|
|
* This function first searches for free space in compatible memory types in
|
|
|
|
|
* the priority order defined by the driver. If free space isn't found, then
|
|
|
|
|
* drm_bo_mem_force_space is attempted in priority order to evict and find
|
|
|
|
|
* space.
|
|
|
|
|
*/
|
2007-07-15 21:37:02 -06:00
|
|
|
|
int drm_bo_mem_space(struct drm_buffer_object * bo,
|
|
|
|
|
struct drm_bo_mem_reg * mem, int no_wait)
|
2006-08-30 13:30:47 -06:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_mem_type_manager *man;
|
2007-02-06 06:20:33 -07:00
|
|
|
|
|
|
|
|
|
uint32_t num_prios = dev->driver->bo_driver->num_mem_type_prio;
|
|
|
|
|
const uint32_t *prios = dev->driver->bo_driver->mem_type_prio;
|
|
|
|
|
uint32_t i;
|
|
|
|
|
uint32_t mem_type = DRM_BO_MEM_LOCAL;
|
2007-02-07 09:25:13 -07:00
|
|
|
|
uint32_t cur_flags;
|
2007-02-06 06:20:33 -07:00
|
|
|
|
int type_found = 0;
|
|
|
|
|
int type_ok = 0;
|
|
|
|
|
int has_eagain = 0;
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_mm_node *node = NULL;
|
2007-02-06 06:20:33 -07:00
|
|
|
|
int ret;
|
2006-08-30 13:30:47 -06:00
|
|
|
|
|
2007-02-13 12:05:32 -07:00
|
|
|
|
mem->mm_node = NULL;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
for (i = 0; i < num_prios; ++i) {
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mem_type = prios[i];
|
2007-02-07 09:25:13 -07:00
|
|
|
|
man = &bm->man[mem_type];
|
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
type_ok = drm_bo_mt_compatible(man, mem_type, mem->mask,
|
|
|
|
|
&cur_flags);
|
2007-02-07 09:25:13 -07:00
|
|
|
|
|
2007-02-06 06:20:33 -07:00
|
|
|
|
if (!type_ok)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (mem_type == DRM_BO_MEM_LOCAL)
|
|
|
|
|
break;
|
|
|
|
|
|
2007-02-12 09:47:57 -07:00
|
|
|
|
if ((mem_type == bo->pinned_mem_type) &&
|
|
|
|
|
(bo->pinned_node != NULL)) {
|
|
|
|
|
node = bo->pinned_node;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
if (man->has_type && man->use_type) {
|
|
|
|
|
type_found = 1;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
node = drm_mm_search_free(&man->manager, mem->num_pages,
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mem->page_alignment, 1);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (node)
|
|
|
|
|
node = drm_mm_get_block(node, mem->num_pages,
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mem->page_alignment);
|
|
|
|
|
}
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
if (node)
|
|
|
|
|
break;
|
2006-10-17 03:28:48 -06:00
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-06 06:20:33 -07:00
|
|
|
|
if ((type_ok && (mem_type == DRM_BO_MEM_LOCAL)) || node) {
|
|
|
|
|
mem->mm_node = node;
|
|
|
|
|
mem->mem_type = mem_type;
|
2007-02-07 09:25:13 -07:00
|
|
|
|
mem->flags = cur_flags;
|
2007-02-06 06:20:33 -07:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (!type_found)
|
2007-02-06 06:20:33 -07:00
|
|
|
|
return -EINVAL;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-06 06:20:33 -07:00
|
|
|
|
num_prios = dev->driver->bo_driver->num_mem_busy_prio;
|
|
|
|
|
prios = dev->driver->bo_driver->mem_busy_prio;
|
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
for (i = 0; i < num_prios; ++i) {
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mem_type = prios[i];
|
2007-02-07 09:25:13 -07:00
|
|
|
|
man = &bm->man[mem_type];
|
|
|
|
|
|
2007-03-28 17:25:04 -06:00
|
|
|
|
if (!man->has_type)
|
|
|
|
|
continue;
|
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (!drm_bo_mt_compatible(man, mem_type, mem->mask, &cur_flags))
|
2007-02-06 06:20:33 -07:00
|
|
|
|
continue;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-06 06:20:33 -07:00
|
|
|
|
ret = drm_bo_mem_force_space(dev, mem, mem_type, no_wait);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-07 09:25:13 -07:00
|
|
|
|
if (ret == 0) {
|
|
|
|
|
mem->flags = cur_flags;
|
2007-02-06 06:20:33 -07:00
|
|
|
|
return 0;
|
2007-02-07 09:25:13 -07:00
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-06 06:20:33 -07:00
|
|
|
|
if (ret == -EAGAIN)
|
|
|
|
|
has_eagain = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = (has_eagain) ? -EAGAIN : -ENOMEM;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2007-02-08 13:28:33 -07:00
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
EXPORT_SYMBOL(drm_bo_mem_space);
|
2007-02-06 06:20:33 -07:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_new_mask(struct drm_buffer_object * bo,
|
2007-06-12 04:21:38 -06:00
|
|
|
|
uint64_t new_mask, uint32_t hint)
|
2006-08-25 10:05:35 -06:00
|
|
|
|
{
|
|
|
|
|
uint32_t new_props;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
|
2007-02-08 03:55:24 -07:00
|
|
|
|
if (bo->type == drm_bo_type_user) {
|
|
|
|
|
DRM_ERROR("User buffers are not supported yet\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-07 09:25:13 -07:00
|
|
|
|
bo->mem.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.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
struct drm_buffer_object *drm_lookup_buffer_object(struct drm_file *file_priv,
|
2006-08-30 01:57:35 -06:00
|
|
|
|
uint32_t handle, int check_owner)
|
2006-08-28 05:51:39 -06:00
|
|
|
|
{
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_user_object *uo;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *bo;
|
2006-08-28 05:51:39 -06:00
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
uo = drm_lookup_user_object(file_priv, handle);
|
2006-08-28 05:51:39 -06:00
|
|
|
|
|
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
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
if (check_owner && file_priv != uo->owner) {
|
|
|
|
|
if (!drm_lookup_ref_object(file_priv, uo, _DRM_REF_USE))
|
2006-08-28 05:51:39 -06:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
bo = drm_user_object_entry(uo, struct drm_buffer_object, base);
|
2006-08-28 05:51:39 -06:00
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_quick_busy(struct drm_buffer_object * bo)
|
2006-09-01 08:38:06 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_fence_object *fence = bo->fence;
|
2006-09-01 08:38:06 -06:00
|
|
|
|
|
|
|
|
|
BUG_ON(bo->priv_flags & _DRM_BO_FLAG_UNFENCED);
|
|
|
|
|
if (fence) {
|
2007-06-29 04:50:12 -06:00
|
|
|
|
if (drm_fence_object_signaled(fence, bo->fence_type, 0)) {
|
|
|
|
|
drm_fence_usage_deref_unlocked(&bo->fence);
|
2006-09-01 08:38:06 -06:00
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_busy(struct drm_buffer_object * bo)
|
2006-08-28 05:51:39 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_fence_object *fence = bo->fence;
|
2006-08-28 05:51:39 -06:00
|
|
|
|
|
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) {
|
2007-06-29 04:50:12 -06:00
|
|
|
|
if (drm_fence_object_signaled(fence, bo->fence_type, 0)) {
|
|
|
|
|
drm_fence_usage_deref_unlocked(&bo->fence);
|
2006-08-28 05:51:39 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_fence_object_flush(fence, DRM_FENCE_TYPE_EXE);
|
|
|
|
|
if (drm_fence_object_signaled(fence, bo->fence_type, 0)) {
|
|
|
|
|
drm_fence_usage_deref_unlocked(&bo->fence);
|
2006-08-28 05:51:39 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_read_cached(struct drm_buffer_object * bo)
|
2006-08-31 13:42:29 -06:00
|
|
|
|
{
|
2006-09-29 03:15:59 -06:00
|
|
|
|
int ret = 0;
|
2006-09-01 03:23:21 -06:00
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
BUG_ON(bo->priv_flags & _DRM_BO_FLAG_UNFENCED);
|
2007-02-06 07:56:43 -07:00
|
|
|
|
if (bo->mem.mm_node)
|
2007-02-12 09:47:57 -07:00
|
|
|
|
ret = drm_bo_evict(bo, DRM_BO_MEM_TT, 1);
|
2006-09-29 03:15:59 -06:00
|
|
|
|
return ret;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Wait until a buffer is unmapped.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_wait_unmapped(struct drm_buffer_object * 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;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_check_unfenced(struct drm_buffer_object * 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
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* Should really be an atomic operation.
|
2006-08-31 13:42:29 -06:00
|
|
|
|
* We now "solve" this problem by keeping
|
|
|
|
|
* the buffer "unfenced" after validating, but before fencing.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_wait_unfenced(struct drm_buffer_object * 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);
|
|
|
|
|
|
|
|
|
|
if (ret && no_wait)
|
|
|
|
|
return -EBUSY;
|
|
|
|
|
else if (!ret)
|
|
|
|
|
return 0;
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2007-04-16 08:23:05 -06:00
|
|
|
|
ret = 0;
|
|
|
|
|
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;
|
|
|
|
|
ret = (bo->priv_flags & _DRM_BO_FLAG_UNFENCED);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (ret) {
|
|
|
|
|
DRM_ERROR("Timeout waiting for buffer to become fenced\n");
|
2007-04-16 08:23:05 -06:00
|
|
|
|
return -EBUSY;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
}
|
|
|
|
|
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.
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* Bo locked.
|
2006-09-01 08:38:06 -06:00
|
|
|
|
*/
|
2006-08-31 06:10:13 -06:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static void drm_bo_fill_rep_arg(struct drm_buffer_object * bo,
|
2007-05-08 02:25:15 -06:00
|
|
|
|
struct drm_bo_info_rep *rep)
|
2006-09-01 08:38:06 -06:00
|
|
|
|
{
|
|
|
|
|
rep->handle = bo->base.hash.key;
|
2007-02-06 07:56:43 -07:00
|
|
|
|
rep->flags = bo->mem.flags;
|
|
|
|
|
rep->size = bo->mem.num_pages * PAGE_SIZE;
|
2006-09-01 08:38:06 -06:00
|
|
|
|
rep->offset = bo->offset;
|
2007-02-02 06:47:44 -07:00
|
|
|
|
rep->arg_handle = bo->map_list.user_token;
|
2007-02-06 07:56:43 -07:00
|
|
|
|
rep->mask = bo->mem.mask;
|
2006-09-01 08:38:06 -06:00
|
|
|
|
rep->buffer_start = bo->buffer_start;
|
2006-09-15 08:47:09 -06:00
|
|
|
|
rep->fence_flags = bo->fence_type;
|
2006-09-01 08:38:06 -06:00
|
|
|
|
rep->rep_flags = 0;
|
2007-02-06 07:56:43 -07:00
|
|
|
|
rep->page_alignment = bo->mem.page_alignment;
|
2006-09-01 08:38:06 -06:00
|
|
|
|
|
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.
|
2007-03-18 15:23:43 -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
|
2006-08-28 08:36:37 -06:00
|
|
|
|
* unregistered.
|
2006-08-28 05:51:39 -06:00
|
|
|
|
*/
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
static int drm_buffer_object_map(struct drm_file *file_priv, uint32_t handle,
|
2006-09-08 09:24:38 -06:00
|
|
|
|
uint32_t map_flags, unsigned hint,
|
2007-05-08 02:25:15 -06:00
|
|
|
|
struct drm_bo_info_rep *rep)
|
2006-08-28 05:51:39 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *bo;
|
2007-07-20 07:39:25 -06:00
|
|
|
|
struct drm_device *dev = file_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);
|
2007-07-20 07:39:25 -06:00
|
|
|
|
bo = drm_lookup_buffer_object(file_priv, handle, 1);
|
2006-08-28 05:51:39 -06:00
|
|
|
|
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 08:28:34 -06:00
|
|
|
|
if (no_wait && drm_bo_busy(bo)) {
|
2006-09-12 04:01:00 -06:00
|
|
|
|
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) &&
|
2007-02-06 07:56:43 -07:00
|
|
|
|
(bo->mem.flags & DRM_BO_FLAG_READ_CACHED) &&
|
|
|
|
|
(!(bo->mem.flags & DRM_BO_FLAG_CACHED))) {
|
2006-08-31 06:10:13 -06:00
|
|
|
|
drm_bo_read_cached(bo);
|
|
|
|
|
}
|
|
|
|
|
break;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
} else if ((map_flags & DRM_BO_FLAG_READ) &&
|
2007-02-06 07:56:43 -07:00
|
|
|
|
(bo->mem.flags & DRM_BO_FLAG_READ_CACHED) &&
|
|
|
|
|
(!(bo->mem.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);
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_add_ref_object(file_priv, &bo->base, _DRM_REF_TYPE1);
|
2006-08-28 05:51:39 -06:00
|
|
|
|
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);
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_unlocked(&bo);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
static int drm_buffer_object_unmap(struct drm_file *file_priv, uint32_t handle)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
2007-07-20 07:39:25 -06:00
|
|
|
|
struct drm_device *dev = file_priv->head->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *bo;
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_ref_object *ro;
|
2006-08-28 08:36:37 -06:00
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
bo = drm_lookup_buffer_object(file_priv, handle, 1);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
if (!bo) {
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ro = drm_lookup_ref_object(file_priv, &bo->base, _DRM_REF_TYPE1);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
if (!ro) {
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
drm_remove_ref_object(file_priv, ro);
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_locked(&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
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
static void drm_buffer_user_object_unmap(struct drm_file *file_priv,
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_user_object * uo,
|
2007-07-15 21:45:39 -06:00
|
|
|
|
enum drm_ref_type action)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *bo =
|
|
|
|
|
drm_user_object_entry(uo, struct drm_buffer_object, 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
|
|
|
|
/*
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* bo->mutex locked.
|
2007-02-09 04:43:18 -07:00
|
|
|
|
* Note that new_mem_flags are NOT transferred to the bo->mem.mask.
|
2006-08-30 12:23:40 -06:00
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
int drm_bo_move_buffer(struct drm_buffer_object * bo, uint32_t new_mem_flags,
|
2007-02-12 09:47:57 -07:00
|
|
|
|
int no_wait, int move_unfenced)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2006-08-30 12:23:40 -06:00
|
|
|
|
int ret = 0;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_mem_reg mem;
|
2006-08-30 12:23:40 -06:00
|
|
|
|
/*
|
|
|
|
|
* Flush outstanding fences.
|
|
|
|
|
*/
|
2007-02-06 06:20:33 -07:00
|
|
|
|
|
2006-08-30 12:23:40 -06:00
|
|
|
|
drm_bo_busy(bo);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Wait for outstanding fences.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-09-04 13:50:12 -06:00
|
|
|
|
ret = drm_bo_wait(bo, 0, 0, no_wait);
|
2007-02-06 06:20:33 -07:00
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2006-08-30 12:23:40 -06:00
|
|
|
|
|
2007-02-06 07:56:43 -07:00
|
|
|
|
mem.num_pages = bo->mem.num_pages;
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mem.size = mem.num_pages << PAGE_SHIFT;
|
|
|
|
|
mem.mask = new_mem_flags;
|
2007-02-06 07:56:43 -07:00
|
|
|
|
mem.page_alignment = bo->mem.page_alignment;
|
2007-02-06 06:20:33 -07:00
|
|
|
|
|
|
|
|
|
mutex_lock(&bm->evict_mutex);
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
list_del(&bo->lru);
|
2007-02-07 09:25:13 -07:00
|
|
|
|
list_add_tail(&bo->lru, &bm->unfenced);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, _DRM_BO_FLAG_UNFENCED,
|
2007-02-06 07:56:43 -07:00
|
|
|
|
_DRM_BO_FLAG_UNFENCED);
|
2007-02-06 06:20:33 -07:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
2007-02-06 07:56:43 -07:00
|
|
|
|
/*
|
|
|
|
|
* Determine where to move the buffer.
|
|
|
|
|
*/
|
2007-02-12 09:47:57 -07:00
|
|
|
|
ret = drm_bo_mem_space(bo, &mem, no_wait);
|
2006-08-30 12:23:40 -06:00
|
|
|
|
if (ret)
|
2007-02-08 16:02:02 -07:00
|
|
|
|
goto out_unlock;
|
2006-08-30 12:23:40 -06:00
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
ret = drm_bo_handle_move_mem(bo, &mem, 0, no_wait);
|
|
|
|
|
|
2007-02-13 12:05:32 -07:00
|
|
|
|
out_unlock:
|
2007-02-08 16:02:02 -07:00
|
|
|
|
if (ret || !move_unfenced) {
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (mem.mm_node) {
|
2007-02-13 12:05:32 -07:00
|
|
|
|
if (mem.mm_node != bo->pinned_node)
|
|
|
|
|
drm_mm_put_block(mem.mm_node);
|
2007-02-07 04:52:23 -07:00
|
|
|
|
mem.mm_node = NULL;
|
2007-02-06 06:20:33 -07:00
|
|
|
|
}
|
2007-02-07 04:52:23 -07:00
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, 0, _DRM_BO_FLAG_UNFENCED);
|
2007-02-09 04:43:18 -07:00
|
|
|
|
DRM_WAKEUP(&bo->event_queue);
|
2007-02-07 09:25:13 -07:00
|
|
|
|
list_del(&bo->lru);
|
2007-02-12 09:47:57 -07:00
|
|
|
|
drm_bo_add_to_lru(bo);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-30 12:23:40 -06:00
|
|
|
|
}
|
2007-02-07 04:52:23 -07:00
|
|
|
|
|
2007-02-08 16:02:02 -07:00
|
|
|
|
mutex_unlock(&bm->evict_mutex);
|
2007-02-07 09:25:13 -07:00
|
|
|
|
return ret;
|
2006-08-28 08:36:37 -06:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_mem_compat(struct drm_bo_mem_reg * mem)
|
2007-02-07 09:25:13 -07:00
|
|
|
|
{
|
2007-02-12 12:34:50 -07:00
|
|
|
|
uint32_t flag_diff = (mem->mask ^ mem->flags);
|
2007-02-07 09:25:13 -07:00
|
|
|
|
|
|
|
|
|
if ((mem->mask & mem->flags & DRM_BO_MASK_MEM) == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
if ((flag_diff & DRM_BO_FLAG_CACHED) &&
|
2007-02-13 12:05:32 -07:00
|
|
|
|
(!(mem->mask & DRM_BO_FLAG_CACHED) ||
|
|
|
|
|
(mem->mask & DRM_BO_FLAG_FORCE_CACHING))) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-02-07 09:25:13 -07:00
|
|
|
|
if ((flag_diff & DRM_BO_FLAG_MAPPABLE) &&
|
2007-02-13 12:05:32 -07:00
|
|
|
|
((mem->mask & DRM_BO_FLAG_MAPPABLE) ||
|
|
|
|
|
(mem->mask & DRM_BO_FLAG_FORCE_MAPPABLE)))
|
2007-02-07 09:25:13 -07:00
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_check_fake(struct drm_device * dev, struct drm_bo_mem_reg * mem)
|
2007-02-08 03:55:24 -07:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_mem_type_manager *man;
|
2007-02-08 03:55:24 -07:00
|
|
|
|
uint32_t num_prios = dev->driver->bo_driver->num_mem_type_prio;
|
|
|
|
|
const uint32_t *prios = dev->driver->bo_driver->mem_type_prio;
|
|
|
|
|
uint32_t i;
|
|
|
|
|
int type_ok = 0;
|
|
|
|
|
uint32_t mem_type = 0;
|
|
|
|
|
uint32_t cur_flags;
|
|
|
|
|
|
|
|
|
|
if (drm_bo_mem_compat(mem))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
BUG_ON(mem->mm_node);
|
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
for (i = 0; i < num_prios; ++i) {
|
2007-02-08 03:55:24 -07:00
|
|
|
|
mem_type = prios[i];
|
|
|
|
|
man = &bm->man[mem_type];
|
2007-02-12 12:34:50 -07:00
|
|
|
|
type_ok = drm_bo_mt_compatible(man, mem_type, mem->mask,
|
|
|
|
|
&cur_flags);
|
2007-02-08 03:55:24 -07:00
|
|
|
|
if (type_ok)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (type_ok) {
|
|
|
|
|
mem->mm_node = NULL;
|
|
|
|
|
mem->mem_type = mem_type;
|
|
|
|
|
mem->flags = cur_flags;
|
|
|
|
|
DRM_FLAG_MASKED(mem->flags, mem->mask, ~DRM_BO_MASK_MEMTYPE);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-12 04:21:38 -06:00
|
|
|
|
DRM_ERROR("Illegal fake buffer flags 0x%016llx\n",
|
|
|
|
|
(unsigned long long) mem->mask);
|
2007-02-08 03:55:24 -07:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2006-08-30 09:40:07 -06:00
|
|
|
|
/*
|
|
|
|
|
* bo locked.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_buffer_object_validate(struct drm_buffer_object * bo,
|
2007-06-12 04:21:38 -06:00
|
|
|
|
uint32_t fence_class,
|
2006-08-30 13:31:38 -06:00
|
|
|
|
int move_unfenced, int no_wait)
|
2006-08-30 09:40:07 -06:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_bo_driver *driver = dev->driver->bo_driver;
|
2007-06-12 04:21:38 -06:00
|
|
|
|
uint32_t ftype;
|
2006-08-30 09:40:07 -06:00
|
|
|
|
int ret;
|
|
|
|
|
|
2007-06-12 04:21:38 -06:00
|
|
|
|
DRM_DEBUG("New flags 0x%016llx, Old flags 0x%016llx\n",
|
|
|
|
|
(unsigned long long) bo->mem.mask,
|
|
|
|
|
(unsigned long long) bo->mem.flags);
|
|
|
|
|
|
|
|
|
|
ret = driver->fence_type(bo, &ftype);
|
|
|
|
|
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (ret) {
|
|
|
|
|
DRM_ERROR("Driver did not support given buffer permissions\n");
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2006-10-17 11:57:06 -06:00
|
|
|
|
|
2007-07-26 11:14:17 -06:00
|
|
|
|
if (bo->pinned && bo->pinned_mem_type != bo->mem.mem_type) {
|
|
|
|
|
DRM_ERROR("Attempt to validate pinned buffer into different memory "
|
|
|
|
|
"type\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-12 04:21:38 -06:00
|
|
|
|
/*
|
|
|
|
|
* We're switching command submission mechanism,
|
|
|
|
|
* or cannot simply rely on the hardware serializing for us.
|
|
|
|
|
*
|
|
|
|
|
* Wait for buffer idle.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if ((fence_class != bo->fence_class) ||
|
|
|
|
|
((ftype ^ bo->fence_type) & bo->fence_type)) {
|
|
|
|
|
|
|
|
|
|
ret = drm_bo_wait(bo, 0, 0, no_wait);
|
|
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bo->fence_class = fence_class;
|
|
|
|
|
bo->fence_type = ftype;
|
2007-02-08 16:02:02 -07:00
|
|
|
|
ret = drm_bo_wait_unmapped(bo, no_wait);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
2007-02-08 03:55:24 -07:00
|
|
|
|
if (bo->type == drm_bo_type_fake) {
|
|
|
|
|
ret = drm_bo_check_fake(dev, &bo->mem);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-01 10:11:05 -06:00
|
|
|
|
/*
|
|
|
|
|
* Check whether we need to move buffer.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-02-07 09:25:13 -07:00
|
|
|
|
if (!drm_bo_mem_compat(&bo->mem)) {
|
2007-02-13 12:05:32 -07:00
|
|
|
|
ret = drm_bo_move_buffer(bo, bo->mem.mask, no_wait,
|
|
|
|
|
move_unfenced);
|
2006-09-15 03:18:35 -06:00
|
|
|
|
if (ret) {
|
|
|
|
|
if (ret != -EAGAIN)
|
|
|
|
|
DRM_ERROR("Failed moving buffer.\n");
|
2006-08-30 09:40:07 -06:00
|
|
|
|
return ret;
|
2006-09-15 03:18:35 -06:00
|
|
|
|
}
|
2006-08-30 09:40:07 -06:00
|
|
|
|
}
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2007-02-07 09:25:13 -07:00
|
|
|
|
/*
|
|
|
|
|
* We might need to add a TTM.
|
|
|
|
|
*/
|
2007-02-07 04:52:23 -07:00
|
|
|
|
|
|
|
|
|
if (bo->mem.mem_type == DRM_BO_MEM_LOCAL && bo->ttm == NULL) {
|
|
|
|
|
ret = drm_bo_add_ttm(bo);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (ret)
|
2007-02-07 04:52:23 -07:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
2007-02-12 09:47:57 -07:00
|
|
|
|
DRM_FLAG_MASKED(bo->mem.flags, bo->mem.mask, ~DRM_BO_MASK_MEMTYPE);
|
2007-02-07 04:52:23 -07:00
|
|
|
|
|
2007-02-09 04:43:18 -07:00
|
|
|
|
/*
|
2007-02-12 09:47:57 -07:00
|
|
|
|
* Finally, adjust lru to be sure.
|
2007-02-09 04:43:18 -07:00
|
|
|
|
*/
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-09 04:43:18 -07:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
list_del(&bo->lru);
|
|
|
|
|
if (move_unfenced) {
|
|
|
|
|
list_add_tail(&bo->lru, &bm->unfenced);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, _DRM_BO_FLAG_UNFENCED,
|
2007-02-09 04:43:18 -07:00
|
|
|
|
_DRM_BO_FLAG_UNFENCED);
|
|
|
|
|
} else {
|
2007-02-12 09:47:57 -07:00
|
|
|
|
drm_bo_add_to_lru(bo);
|
2007-02-09 04:43:18 -07:00
|
|
|
|
if (bo->priv_flags & _DRM_BO_FLAG_UNFENCED) {
|
|
|
|
|
DRM_WAKEUP(&bo->event_queue);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
DRM_FLAG_MASKED(bo->priv_flags, 0,
|
|
|
|
|
_DRM_BO_FLAG_UNFENCED);
|
2007-02-09 04:43:18 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
2006-08-30 09:40:07 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
static int drm_bo_handle_validate(struct drm_file *file_priv,
|
2007-06-12 04:21:38 -06:00
|
|
|
|
uint32_t handle,
|
|
|
|
|
uint32_t fence_class,
|
|
|
|
|
uint64_t flags, uint64_t mask, uint32_t hint,
|
2007-05-08 02:25:15 -06:00
|
|
|
|
struct drm_bo_info_rep *rep)
|
2006-08-31 13:42:29 -06:00
|
|
|
|
{
|
2007-07-20 07:39:25 -06:00
|
|
|
|
struct drm_device *dev = file_priv->head->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *bo;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
int ret;
|
|
|
|
|
int no_wait = hint & DRM_BO_HINT_DONT_BLOCK;
|
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2007-07-20 07:39:25 -06:00
|
|
|
|
bo = drm_lookup_buffer_object(file_priv, handle, 1);
|
2007-06-14 03:52:38 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (!bo) {
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mutex_lock(&bo->mutex);
|
|
|
|
|
ret = drm_bo_wait_unfenced(bo, no_wait, 0);
|
|
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
2007-02-07 09:25:13 -07:00
|
|
|
|
DRM_FLAG_MASKED(flags, bo->mem.mask, ~mask);
|
|
|
|
|
ret = drm_bo_new_mask(bo, flags, hint);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
2006-09-01 10:11:34 -06:00
|
|
|
|
ret =
|
2007-06-12 04:21:38 -06:00
|
|
|
|
drm_buffer_object_validate(bo, fence_class,
|
|
|
|
|
!(hint & DRM_BO_HINT_DONT_FENCE),
|
2006-09-01 10:11:34 -06:00
|
|
|
|
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);
|
2007-02-10 04:06:36 -07:00
|
|
|
|
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_unlocked(&bo);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-26 11:14:17 -06:00
|
|
|
|
/**
|
|
|
|
|
* Fills out the generic buffer object ioctl reply with the information for
|
|
|
|
|
* the BO with id of handle.
|
|
|
|
|
*/
|
2007-07-20 07:39:25 -06:00
|
|
|
|
static int drm_bo_handle_info(struct drm_file *file_priv, uint32_t handle,
|
2007-05-08 02:25:15 -06:00
|
|
|
|
struct drm_bo_info_rep *rep)
|
2006-09-01 08:38:06 -06:00
|
|
|
|
{
|
2007-07-20 07:39:25 -06:00
|
|
|
|
struct drm_device *dev = file_priv->head->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *bo;
|
2006-09-01 08:38:06 -06:00
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2007-07-20 07:39:25 -06:00
|
|
|
|
bo = drm_lookup_buffer_object(file_priv, handle, 1);
|
2007-06-14 03:52:38 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
2006-09-01 08:38:06 -06:00
|
|
|
|
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);
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_unlocked(&bo);
|
2006-09-04 13:50:12 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
static int drm_bo_handle_wait(struct drm_file *file_priv, uint32_t handle,
|
2007-05-08 02:25:15 -06:00
|
|
|
|
uint32_t hint,
|
|
|
|
|
struct drm_bo_info_rep *rep)
|
2006-09-04 13:50:12 -06:00
|
|
|
|
{
|
2007-07-20 07:39:25 -06:00
|
|
|
|
struct drm_device *dev = file_priv->head->dev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *bo;
|
2006-09-04 13:50:12 -06:00
|
|
|
|
int no_wait = hint & DRM_BO_HINT_DONT_BLOCK;
|
|
|
|
|
int ret;
|
2006-09-12 08:28:34 -06:00
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2007-07-20 07:39:25 -06:00
|
|
|
|
bo = drm_lookup_buffer_object(file_priv, handle, 1);
|
2007-06-14 03:52:38 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
2006-09-04 13:50:12 -06:00
|
|
|
|
if (!bo) {
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2006-09-18 12:43:31 -06:00
|
|
|
|
|
2006-09-04 13:50:12 -06:00
|
|
|
|
mutex_lock(&bo->mutex);
|
|
|
|
|
ret = drm_bo_wait_unfenced(bo, no_wait, 0);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
2006-09-12 08:28:34 -06:00
|
|
|
|
ret = drm_bo_wait(bo, hint & DRM_BO_HINT_WAIT_LAZY, 0, no_wait);
|
2006-09-04 13:50:12 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
drm_bo_fill_rep_arg(bo, rep);
|
2006-09-18 12:43:31 -06:00
|
|
|
|
|
2006-09-12 08:28:34 -06:00
|
|
|
|
out:
|
2006-09-04 13:50:12 -06:00
|
|
|
|
mutex_unlock(&bo->mutex);
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_unlocked(&bo);
|
2006-09-18 12:43:31 -06:00
|
|
|
|
return ret;
|
2006-09-01 08:38:06 -06:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 20:32:51 -06:00
|
|
|
|
int drm_buffer_object_create(struct drm_device *dev,
|
2006-08-29 06:52:02 -06:00
|
|
|
|
unsigned long size,
|
2007-07-15 19:30:53 -06:00
|
|
|
|
enum drm_bo_type type,
|
2007-06-12 04:21:38 -06:00
|
|
|
|
uint64_t mask,
|
2006-08-28 08:36:37 -06:00
|
|
|
|
uint32_t hint,
|
2006-10-27 03:28:37 -06:00
|
|
|
|
uint32_t page_alignment,
|
2006-08-28 09:51:53 -06:00
|
|
|
|
unsigned long buffer_start,
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object ** buf_obj)
|
2006-08-28 08:36:37 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_buffer_object *bo;
|
2007-07-26 12:17:41 -06:00
|
|
|
|
struct drm_bo_driver *driver = dev->driver->bo_driver;
|
2006-08-28 08:36:37 -06:00
|
|
|
|
int ret = 0;
|
2006-08-29 06:52:02 -06:00
|
|
|
|
unsigned long num_pages;
|
2006-09-12 08:28:34 -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
|
|
|
|
|
2006-10-17 11:40:57 -06:00
|
|
|
|
bo = drm_ctl_calloc(1, sizeof(*bo), DRM_MEM_BUFOBJ);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
|
|
|
|
|
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);
|
2007-01-29 05:11:55 -07:00
|
|
|
|
INIT_LIST_HEAD(&bo->lru);
|
2007-02-12 09:47:57 -07:00
|
|
|
|
INIT_LIST_HEAD(&bo->pinned_lru);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
INIT_LIST_HEAD(&bo->ddestroy);
|
2007-02-02 11:49:11 -07:00
|
|
|
|
#ifdef DRM_ODD_MM_COMPAT
|
|
|
|
|
INIT_LIST_HEAD(&bo->p_mm_list);
|
|
|
|
|
INIT_LIST_HEAD(&bo->vma_list);
|
|
|
|
|
#endif
|
2006-08-28 08:36:37 -06:00
|
|
|
|
bo->dev = dev;
|
2006-08-29 06:52:02 -06:00
|
|
|
|
bo->type = type;
|
2007-02-10 04:06:36 -07:00
|
|
|
|
bo->mem.mem_type = DRM_BO_MEM_LOCAL;
|
2007-02-06 07:56:43 -07:00
|
|
|
|
bo->mem.num_pages = num_pages;
|
|
|
|
|
bo->mem.mm_node = NULL;
|
|
|
|
|
bo->mem.page_alignment = page_alignment;
|
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;
|
2007-06-12 04:21:38 -06:00
|
|
|
|
bo->mem.flags = 0ULL;
|
|
|
|
|
bo->mem.mask = 0ULL;
|
2006-10-11 14:21:01 -06:00
|
|
|
|
atomic_inc(&bm->count);
|
2007-02-07 09:25:13 -07:00
|
|
|
|
ret = drm_bo_new_mask(bo, mask, hint);
|
|
|
|
|
|
2006-08-30 01:57:35 -06:00
|
|
|
|
if (ret)
|
2006-08-29 10:40:08 -06:00
|
|
|
|
goto out_err;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-07 04:52:23 -07:00
|
|
|
|
if (bo->type == drm_bo_type_dc) {
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
ret = drm_bo_setup_vm_locked(bo);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out_err;
|
|
|
|
|
}
|
2007-07-26 12:17:41 -06:00
|
|
|
|
|
|
|
|
|
bo->fence_class = 0;
|
|
|
|
|
ret = driver->fence_type(bo, &bo->fence_type);
|
|
|
|
|
if (ret) {
|
|
|
|
|
DRM_ERROR("Driver did not support given buffer permissions\n");
|
|
|
|
|
goto out_err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bo->type == drm_bo_type_fake) {
|
|
|
|
|
ret = drm_bo_check_fake(dev, &bo->mem);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out_err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = drm_bo_add_ttm(bo);
|
2006-08-28 08:36:37 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
goto out_err;
|
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
drm_bo_add_to_lru(bo);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
2006-08-28 08:36:37 -06:00
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
*buf_obj = bo;
|
|
|
|
|
return 0;
|
2006-10-17 11:57:06 -06:00
|
|
|
|
|
|
|
|
|
out_err:
|
2006-08-28 08:36:37 -06:00
|
|
|
|
mutex_unlock(&bo->mutex);
|
2007-02-10 04:06:36 -07:00
|
|
|
|
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_unlocked(&bo);
|
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
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
static int drm_bo_add_user_object(struct drm_file *file_priv,
|
|
|
|
|
struct drm_buffer_object *bo,
|
2006-08-28 09:51:53 -06:00
|
|
|
|
int shareable)
|
|
|
|
|
{
|
2007-07-20 07:39:25 -06:00
|
|
|
|
struct drm_device *dev = file_priv->head->dev;
|
2006-08-28 09:51:53 -06:00
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_add_user_object(file_priv, &bo->base, shareable);
|
2006-08-28 09:51:53 -06:00
|
|
|
|
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
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
static int drm_bo_lock_test(struct drm_device * dev, struct drm_file *file_priv)
|
2006-08-31 13:42:29 -06:00
|
|
|
|
{
|
2007-07-20 07:39:25 -06:00
|
|
|
|
LOCK_TEST_WITH_RETURN(dev, file_priv);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_bo_op_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2006-08-25 11:03:42 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_bo_op_arg curarg;
|
|
|
|
|
struct drm_bo_op_arg *arg = data;
|
|
|
|
|
struct drm_bo_op_req *req = &arg->d.req;
|
2007-05-08 02:25:15 -06:00
|
|
|
|
struct drm_bo_info_rep rep;
|
2007-07-19 18:11:11 -06:00
|
|
|
|
unsigned long next = 0;
|
|
|
|
|
void __user *curuserarg = NULL;
|
2007-05-08 02:25:15 -06:00
|
|
|
|
int ret;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_bo_op_ioctl\n");
|
|
|
|
|
|
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 {
|
2007-07-19 18:11:11 -06:00
|
|
|
|
if (next != 0) {
|
|
|
|
|
curuserarg = (void __user *)next;
|
|
|
|
|
if (copy_from_user(&curarg, curuserarg,
|
|
|
|
|
sizeof(arg)) != 0)
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
arg = &curarg;
|
|
|
|
|
}
|
2006-08-31 13:42:29 -06:00
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
if (arg->handled) {
|
|
|
|
|
next = arg->next;
|
2006-08-31 13:42:29 -06:00
|
|
|
|
continue;
|
2006-08-31 06:10:13 -06:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
ret = 0;
|
2006-08-28 02:58:21 -06:00
|
|
|
|
switch (req->op) {
|
2006-08-31 13:42:29 -06:00
|
|
|
|
case drm_bo_validate:
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_bo_lock_test(dev, file_priv);
|
2007-05-08 02:25:15 -06:00
|
|
|
|
if (ret)
|
2006-08-31 13:42:29 -06:00
|
|
|
|
break;
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_bo_handle_validate(file_priv, req->bo_req.handle,
|
2007-06-12 04:21:38 -06:00
|
|
|
|
req->bo_req.fence_class,
|
|
|
|
|
req->bo_req.flags,
|
2007-05-08 02:25:15 -06:00
|
|
|
|
req->bo_req.mask,
|
|
|
|
|
req->bo_req.hint,
|
|
|
|
|
&rep);
|
2006-08-31 13:42:29 -06:00
|
|
|
|
break;
|
|
|
|
|
case drm_bo_fence:
|
2007-06-12 04:30:33 -06:00
|
|
|
|
ret = -EINVAL;
|
|
|
|
|
DRM_ERROR("Function is not implemented yet.\n");
|
2006-09-04 13:50:12 -06:00
|
|
|
|
break;
|
|
|
|
|
case drm_bo_ref_fence:
|
2007-05-08 02:25:15 -06:00
|
|
|
|
ret = -EINVAL;
|
2006-09-04 13:50:12 -06:00
|
|
|
|
DRM_ERROR("Function is not implemented yet.\n");
|
2007-06-12 04:30:33 -06:00
|
|
|
|
break;
|
2006-08-28 02:58:21 -06:00
|
|
|
|
default:
|
2007-05-08 02:25:15 -06:00
|
|
|
|
ret = -EINVAL;
|
2006-08-28 02:58:21 -06:00
|
|
|
|
}
|
2007-07-19 18:11:11 -06:00
|
|
|
|
next = arg->next;
|
2006-08-31 06:10:13 -06:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* A signal interrupted us. Make sure the ioctl is restartable.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
if (ret == -EAGAIN)
|
2006-08-31 06:10:13 -06:00
|
|
|
|
return -EAGAIN;
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
arg->handled = 1;
|
|
|
|
|
arg->d.rep.ret = ret;
|
|
|
|
|
arg->d.rep.bo_info = rep;
|
|
|
|
|
if (arg != data) {
|
|
|
|
|
if (copy_to_user(curuserarg, &curarg,
|
|
|
|
|
sizeof(arg)) != 0)
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
}
|
|
|
|
|
} while (next != 0);
|
2006-08-25 11:03:42 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2006-08-30 05:04:08 -06:00
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_bo_create_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-08 01:53:58 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_bo_create_arg *arg = data;
|
|
|
|
|
struct drm_bo_create_req *req = &arg->d.req;
|
|
|
|
|
struct drm_bo_info_rep *rep = &arg->d.rep;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *entry;
|
2007-05-08 01:53:58 -06:00
|
|
|
|
int ret = 0;
|
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_bo_create_ioctl: %dkb, %dkb align, %d type\n",
|
|
|
|
|
(int)(req->size / 1024), req->page_alignment * 4, req->type);
|
|
|
|
|
|
2007-05-08 01:53:58 -06:00
|
|
|
|
if (!dev->bm.initialized) {
|
|
|
|
|
DRM_ERROR("Buffer object manager is not initialized.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2007-07-26 12:17:41 -06:00
|
|
|
|
if (req->type == drm_bo_type_fake)
|
|
|
|
|
LOCK_TEST_WITH_RETURN(dev, file_priv);
|
2007-05-08 01:53:58 -06:00
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_buffer_object_create(file_priv->head->dev,
|
2007-05-08 01:53:58 -06:00
|
|
|
|
req->size, req->type, req->mask,
|
|
|
|
|
req->hint, req->page_alignment,
|
|
|
|
|
req->buffer_start, &entry);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_bo_add_user_object(file_priv, entry,
|
2007-05-08 01:53:58 -06:00
|
|
|
|
req->mask & DRM_BO_FLAG_SHAREABLE);
|
|
|
|
|
if (ret) {
|
2007-07-10 19:23:41 -06:00
|
|
|
|
drm_bo_usage_deref_unlocked(&entry);
|
2007-05-08 01:53:58 -06:00
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mutex_lock(&entry->mutex);
|
2007-05-08 02:25:15 -06:00
|
|
|
|
drm_bo_fill_rep_arg(entry, rep);
|
2007-05-08 01:53:58 -06:00
|
|
|
|
mutex_unlock(&entry->mutex);
|
|
|
|
|
|
|
|
|
|
out:
|
2007-05-08 02:25:15 -06:00
|
|
|
|
return ret;
|
2007-05-08 01:53:58 -06:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_bo_destroy_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-08 01:53:58 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_bo_handle_arg *arg = data;
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_user_object *uo;
|
2007-05-08 02:25:15 -06:00
|
|
|
|
int ret = 0;
|
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_bo_destroy_ioctl: buffer %d\n", arg->handle);
|
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
if (!dev->bm.initialized) {
|
|
|
|
|
DRM_ERROR("Buffer object manager is not initialized.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2007-05-08 01:53:58 -06:00
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2007-07-19 18:11:11 -06:00
|
|
|
|
uo = drm_lookup_user_object(file_priv, arg->handle);
|
2007-07-20 07:39:25 -06:00
|
|
|
|
if (!uo || (uo->type != drm_buffer_type) || uo->owner != file_priv) {
|
2007-05-08 02:25:15 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_remove_user_object(file_priv, uo);
|
2007-05-08 02:25:15 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_bo_map_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-08 02:25:15 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_bo_map_wait_idle_arg *arg = data;
|
|
|
|
|
struct drm_bo_info_req *req = &arg->d.req;
|
|
|
|
|
struct drm_bo_info_rep *rep = &arg->d.rep;
|
2007-05-08 02:25:15 -06:00
|
|
|
|
int ret;
|
2007-07-26 12:17:41 -06:00
|
|
|
|
|
|
|
|
|
DRM_DEBUG("drm_bo_map_ioctl: buffer %d\n", req->handle);
|
|
|
|
|
|
2007-05-08 01:53:58 -06:00
|
|
|
|
if (!dev->bm.initialized) {
|
|
|
|
|
DRM_ERROR("Buffer object manager is not initialized.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_buffer_object_map(file_priv, req->handle, req->mask,
|
2007-05-08 02:25:15 -06:00
|
|
|
|
req->hint, rep);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2007-05-08 01:53:58 -06:00
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-05-08 01:53:58 -06:00
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_bo_unmap_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-08 02:25:15 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_bo_handle_arg *arg = data;
|
2007-05-08 02:25:15 -06:00
|
|
|
|
int ret;
|
2007-07-26 12:17:41 -06:00
|
|
|
|
|
|
|
|
|
DRM_DEBUG("drm_bo_unmap_ioctl: buffer %d\n", arg->handle);
|
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
if (!dev->bm.initialized) {
|
|
|
|
|
DRM_ERROR("Buffer object manager is not initialized.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
ret = drm_buffer_object_unmap(file_priv, arg->handle);
|
2007-05-08 02:25:15 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
2007-05-08 01:53:58 -06:00
|
|
|
|
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_bo_reference_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-08 02:25:15 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_bo_reference_info_arg *arg = data;
|
|
|
|
|
struct drm_bo_handle_arg *req = &arg->d.req;
|
|
|
|
|
struct drm_bo_info_rep *rep = &arg->d.rep;
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_user_object *uo;
|
2007-05-08 02:25:15 -06:00
|
|
|
|
int ret;
|
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_bo_reference_ioctl: buffer %d\n", req->handle);
|
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
if (!dev->bm.initialized) {
|
|
|
|
|
DRM_ERROR("Buffer object manager is not initialized.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_user_object_ref(file_priv, req->handle,
|
2007-05-08 02:25:15 -06:00
|
|
|
|
drm_buffer_type, &uo);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2007-05-08 01:53:58 -06:00
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_bo_handle_info(file_priv, req->handle, rep);
|
2007-05-08 02:25:15 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_bo_unreference_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-08 02:25:15 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_bo_handle_arg *arg = data;
|
2007-05-08 02:25:15 -06:00
|
|
|
|
int ret = 0;
|
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_bo_unreference_ioctl: buffer %d\n", arg->handle);
|
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
if (!dev->bm.initialized) {
|
|
|
|
|
DRM_ERROR("Buffer object manager is not initialized.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
ret = drm_user_object_unref(file_priv, arg->handle, drm_buffer_type);
|
2007-05-08 02:25:15 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_bo_info_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-08 02:25:15 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_bo_reference_info_arg *arg = data;
|
|
|
|
|
struct drm_bo_handle_arg *req = &arg->d.req;
|
|
|
|
|
struct drm_bo_info_rep *rep = &arg->d.rep;
|
2007-05-08 02:25:15 -06:00
|
|
|
|
int ret;
|
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_bo_info_ioctl: buffer %d\n", req->handle);
|
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
if (!dev->bm.initialized) {
|
|
|
|
|
DRM_ERROR("Buffer object manager is not initialized.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_bo_handle_info(file_priv, req->handle, rep);
|
2007-05-08 02:25:15 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2007-07-19 18:11:11 -06:00
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_bo_wait_idle_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-08 02:25:15 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_bo_map_wait_idle_arg *arg = data;
|
|
|
|
|
struct drm_bo_info_req *req = &arg->d.req;
|
|
|
|
|
struct drm_bo_info_rep *rep = &arg->d.rep;
|
2007-05-08 02:25:15 -06:00
|
|
|
|
int ret;
|
2007-07-26 12:17:41 -06:00
|
|
|
|
|
|
|
|
|
DRM_DEBUG("drm_bo_wait_idle_ioctl: buffer %d\n", req->handle);
|
|
|
|
|
|
2007-05-08 02:25:15 -06:00
|
|
|
|
if (!dev->bm.initialized) {
|
|
|
|
|
DRM_ERROR("Buffer object manager is not initialized.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2007-05-08 01:53:58 -06:00
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
ret = drm_bo_handle_wait(file_priv, req->handle,
|
2007-05-08 02:25:15 -06:00
|
|
|
|
req->hint, rep);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
2007-05-08 01:53:58 -06:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-26 11:14:17 -06:00
|
|
|
|
/**
|
|
|
|
|
* Pins or unpins the given buffer object in the given memory area.
|
|
|
|
|
*
|
|
|
|
|
* Pinned buffers will not be evicted from or move within their memory area.
|
|
|
|
|
* Must be called with the hardware lock held for pinning.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
drm_bo_set_pin(struct drm_device *dev, struct drm_buffer_object *bo,
|
|
|
|
|
int pin)
|
|
|
|
|
{
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&bo->mutex);
|
|
|
|
|
if (bo->pinned == pin) {
|
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pin) {
|
|
|
|
|
ret = drm_bo_wait_unfenced(bo, 0, 0);
|
|
|
|
|
if (ret) {
|
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Validate the buffer into its pinned location, with no pending
|
|
|
|
|
* fence.
|
|
|
|
|
*/
|
|
|
|
|
ret = drm_buffer_object_validate(bo, 0, 0, 0);
|
|
|
|
|
if (ret) {
|
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add our buffer to the pinned list */
|
|
|
|
|
bo->pinned_mem_type = bo->mem.mem_type;
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
list_del_init(&bo->pinned_lru);
|
|
|
|
|
drm_bo_add_to_pinned_lru(bo);
|
|
|
|
|
|
|
|
|
|
if (bo->pinned_node != bo->mem.mm_node) {
|
|
|
|
|
if (bo->pinned_node != NULL)
|
|
|
|
|
drm_mm_put_block(bo->pinned_node);
|
|
|
|
|
bo->pinned_node = bo->mem.mm_node;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
/* Remove our buffer from the pinned list */
|
|
|
|
|
if (bo->pinned_node != bo->mem.mm_node)
|
|
|
|
|
drm_mm_put_block(bo->pinned_node);
|
|
|
|
|
|
|
|
|
|
list_del_init(&bo->pinned_lru);
|
|
|
|
|
bo->pinned_node = NULL;
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
}
|
|
|
|
|
bo->pinned = pin;
|
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int drm_bo_set_pin_ioctl(struct drm_device *dev, void *data,
|
|
|
|
|
struct drm_file *file_priv)
|
|
|
|
|
{
|
|
|
|
|
struct drm_bo_set_pin_arg *arg = data;
|
|
|
|
|
struct drm_bo_set_pin_req *req = &arg->d.req;
|
|
|
|
|
struct drm_bo_info_rep *rep = &arg->d.rep;
|
|
|
|
|
struct drm_buffer_object *bo;
|
|
|
|
|
int ret;
|
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_bo_set_pin_ioctl: buffer %d, pin %d\n",
|
|
|
|
|
req->handle, req->pin);
|
|
|
|
|
|
2007-07-26 11:14:17 -06:00
|
|
|
|
if (!dev->bm.initialized) {
|
|
|
|
|
DRM_ERROR("Buffer object manager is not initialized.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (req->pin < 0 || req->pin > 1) {
|
|
|
|
|
DRM_ERROR("Bad arguments to set_pin\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (req->pin)
|
|
|
|
|
LOCK_TEST_WITH_RETURN(dev, file_priv);
|
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
bo = drm_lookup_buffer_object(file_priv, req->handle, 1);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
if (!bo) {
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = drm_bo_set_pin(dev, bo, req->pin);
|
|
|
|
|
if (ret) {
|
|
|
|
|
drm_bo_usage_deref_unlocked(&bo);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
drm_bo_fill_rep_arg(bo, rep);
|
|
|
|
|
drm_bo_usage_deref_unlocked(&bo);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-05-08 02:25:15 -06:00
|
|
|
|
|
|
|
|
|
|
2007-02-13 12:05:32 -07:00
|
|
|
|
/**
|
|
|
|
|
*Clean the unfenced list and put on regular LRU.
|
|
|
|
|
*This is part of the memory manager cleanup and should only be
|
|
|
|
|
*called with the DRI lock held.
|
|
|
|
|
*Call dev->struct_sem locked.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:32:51 -06:00
|
|
|
|
static void drm_bo_clean_unfenced(struct drm_device *dev)
|
2007-02-13 12:05:32 -07:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2007-02-13 12:05:32 -07:00
|
|
|
|
struct list_head *head, *list;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *entry;
|
2007-02-13 12:05:32 -07:00
|
|
|
|
|
|
|
|
|
head = &bm->unfenced;
|
|
|
|
|
|
|
|
|
|
list = head->next;
|
|
|
|
|
while(list != head) {
|
|
|
|
|
prefetch(list->next);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
entry = list_entry(list, struct drm_buffer_object, lru);
|
2007-02-13 12:05:32 -07:00
|
|
|
|
|
|
|
|
|
atomic_inc(&entry->usage);
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
mutex_lock(&entry->mutex);
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
|
|
list_del(&entry->lru);
|
|
|
|
|
DRM_FLAG_MASKED(entry->priv_flags, 0, _DRM_BO_FLAG_UNFENCED);
|
|
|
|
|
drm_bo_add_to_lru(entry);
|
|
|
|
|
mutex_unlock(&entry->mutex);
|
|
|
|
|
list = head->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_leave_list(struct drm_buffer_object * bo,
|
2007-02-12 09:47:57 -07:00
|
|
|
|
uint32_t mem_type,
|
2007-02-12 12:34:50 -07:00
|
|
|
|
int free_pinned, int allow_errors)
|
2007-02-12 09:47:57 -07:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-02-12 09:47:57 -07:00
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
|
|
mutex_lock(&bo->mutex);
|
|
|
|
|
|
|
|
|
|
ret = drm_bo_expire_fence(bo, allow_errors);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
if (free_pinned) {
|
|
|
|
|
DRM_FLAG_MASKED(bo->mem.flags, 0, DRM_BO_FLAG_NO_MOVE);
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
list_del_init(&bo->pinned_lru);
|
|
|
|
|
if (bo->pinned_node == bo->mem.mm_node)
|
|
|
|
|
bo->pinned_node = NULL;
|
|
|
|
|
if (bo->pinned_node != NULL) {
|
|
|
|
|
drm_mm_put_block(bo->pinned_node);
|
|
|
|
|
bo->pinned_node = NULL;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
}
|
2007-02-12 09:47:57 -07:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-26 11:14:17 -06:00
|
|
|
|
if (bo->pinned) {
|
|
|
|
|
DRM_ERROR("A pinned buffer was present at "
|
2007-02-12 09:47:57 -07:00
|
|
|
|
"cleanup. Removing flag and evicting.\n");
|
2007-07-26 11:14:17 -06:00
|
|
|
|
bo->pinned = 0;
|
2007-02-12 09:47:57 -07:00
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-12 12:32:03 -07:00
|
|
|
|
if (bo->mem.mem_type == mem_type)
|
|
|
|
|
ret = drm_bo_evict(bo, mem_type, 0);
|
2007-02-12 09:47:57 -07:00
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (ret) {
|
|
|
|
|
if (allow_errors) {
|
2007-02-12 09:47:57 -07:00
|
|
|
|
goto out;
|
|
|
|
|
} else {
|
|
|
|
|
ret = 0;
|
|
|
|
|
DRM_ERROR("Cleanup eviction failed\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
|
|
|
|
out:
|
2007-02-12 09:47:57 -07:00
|
|
|
|
mutex_unlock(&bo->mutex);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-13 12:05:32 -07:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static struct drm_buffer_object *drm_bo_entry(struct list_head *list,
|
2007-02-13 12:05:32 -07:00
|
|
|
|
int pinned_list)
|
|
|
|
|
{
|
|
|
|
|
if (pinned_list)
|
2007-07-15 21:37:02 -06:00
|
|
|
|
return list_entry(list, struct drm_buffer_object, pinned_lru);
|
2007-02-13 12:05:32 -07:00
|
|
|
|
else
|
2007-07-15 21:37:02 -06:00
|
|
|
|
return list_entry(list, struct drm_buffer_object, lru);
|
2007-02-13 12:05:32 -07:00
|
|
|
|
}
|
|
|
|
|
|
2006-09-01 07:41:55 -06:00
|
|
|
|
/*
|
2007-02-13 12:05:32 -07:00
|
|
|
|
* dev->struct_mutex locked.
|
2006-09-01 07:41:55 -06:00
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:32:51 -06:00
|
|
|
|
static int drm_bo_force_list_clean(struct drm_device * dev,
|
2006-10-17 11:57:06 -06:00
|
|
|
|
struct list_head *head,
|
2006-10-17 08:00:25 -06:00
|
|
|
|
unsigned mem_type,
|
2007-02-12 12:34:50 -07:00
|
|
|
|
int free_pinned,
|
2007-02-13 12:05:32 -07:00
|
|
|
|
int allow_errors,
|
|
|
|
|
int pinned_list)
|
2006-08-30 05:04:08 -06:00
|
|
|
|
{
|
2007-02-13 12:05:32 -07:00
|
|
|
|
struct list_head *list, *next, *prev;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object *entry, *nentry;
|
2006-09-29 03:15:59 -06:00
|
|
|
|
int ret;
|
2007-02-13 12:05:32 -07:00
|
|
|
|
int do_restart;
|
2007-02-12 12:32:03 -07:00
|
|
|
|
|
|
|
|
|
/*
|
2007-02-13 12:05:32 -07:00
|
|
|
|
* The list traversal is a bit odd here, because an item may
|
|
|
|
|
* disappear from the list when we release the struct_mutex or
|
|
|
|
|
* when we decrease the usage count. Also we're not guaranteed
|
|
|
|
|
* to drain pinned lists, so we can't always restart.
|
2007-02-12 12:32:03 -07:00
|
|
|
|
*/
|
2006-10-17 08:00:25 -06:00
|
|
|
|
|
2007-02-13 12:05:32 -07:00
|
|
|
|
restart:
|
|
|
|
|
nentry = NULL;
|
2007-02-12 12:32:03 -07:00
|
|
|
|
list_for_each_safe(list, next, head) {
|
2007-02-13 12:05:32 -07:00
|
|
|
|
prev = list->prev;
|
|
|
|
|
|
|
|
|
|
entry = (nentry != NULL) ? nentry: drm_bo_entry(list, pinned_list);
|
2007-02-12 12:32:03 -07:00
|
|
|
|
atomic_inc(&entry->usage);
|
2007-02-13 12:05:32 -07:00
|
|
|
|
if (nentry) {
|
|
|
|
|
atomic_dec(&nentry->usage);
|
|
|
|
|
nentry = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Protect the next item from destruction, so we can check
|
|
|
|
|
* its list pointers later on.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (next != head) {
|
|
|
|
|
nentry = drm_bo_entry(next, pinned_list);
|
|
|
|
|
atomic_inc(&nentry->usage);
|
|
|
|
|
}
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
2007-02-12 12:34:50 -07:00
|
|
|
|
ret = drm_bo_leave_list(entry, mem_type, free_pinned,
|
2007-02-12 09:47:57 -07:00
|
|
|
|
allow_errors);
|
2007-02-13 12:05:32 -07:00
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2007-02-12 12:32:03 -07:00
|
|
|
|
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_locked(&entry);
|
2007-02-12 09:47:57 -07:00
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2007-02-12 12:32:03 -07:00
|
|
|
|
|
2007-02-13 12:05:32 -07:00
|
|
|
|
/*
|
|
|
|
|
* Has the next item disappeared from the list?
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
do_restart = ((next->prev != list) && (next->prev != prev));
|
|
|
|
|
|
2007-06-29 04:50:12 -06:00
|
|
|
|
if (nentry != NULL && do_restart)
|
|
|
|
|
drm_bo_usage_deref_locked(&nentry);
|
2007-02-13 12:05:32 -07:00
|
|
|
|
|
|
|
|
|
if (do_restart)
|
|
|
|
|
goto restart;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
return 0;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 20:32:51 -06:00
|
|
|
|
int drm_bo_clean_mm(struct drm_device * dev, unsigned mem_type)
|
2006-09-01 07:41:55 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_mem_type_manager *man = &bm->man[mem_type];
|
2006-10-17 03:05:37 -06:00
|
|
|
|
int ret = -EINVAL;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
|
2006-10-17 03:05:37 -06:00
|
|
|
|
if (mem_type >= DRM_BO_MEM_TYPES) {
|
|
|
|
|
DRM_ERROR("Illegal memory type %d\n", mem_type);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2006-09-01 07:41:55 -06:00
|
|
|
|
|
2007-01-31 06:50:57 -07:00
|
|
|
|
if (!man->has_type) {
|
2006-10-17 03:05:37 -06:00
|
|
|
|
DRM_ERROR("Trying to take down uninitialized "
|
|
|
|
|
"memory manager type\n");
|
2006-10-17 11:57:06 -06:00
|
|
|
|
return ret;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
}
|
2007-01-31 06:50:57 -07:00
|
|
|
|
man->use_type = 0;
|
|
|
|
|
man->has_type = 0;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
|
2006-10-17 03:05:37 -06:00
|
|
|
|
ret = 0;
|
|
|
|
|
if (mem_type > 0) {
|
2006-10-17 08:00:25 -06:00
|
|
|
|
|
2007-02-13 12:05:32 -07:00
|
|
|
|
drm_bo_clean_unfenced(dev);
|
2007-02-12 09:47:57 -07:00
|
|
|
|
drm_bo_force_list_clean(dev, &man->lru, mem_type, 1, 0, 0);
|
|
|
|
|
drm_bo_force_list_clean(dev, &man->pinned, mem_type, 1, 0, 1);
|
2006-09-01 10:11:34 -06:00
|
|
|
|
|
2007-01-31 06:50:57 -07:00
|
|
|
|
if (drm_mm_clean(&man->manager)) {
|
|
|
|
|
drm_mm_takedown(&man->manager);
|
2006-10-17 03:05:37 -06:00
|
|
|
|
} else {
|
|
|
|
|
ret = -EBUSY;
|
|
|
|
|
}
|
|
|
|
|
}
|
2006-09-29 03:15:59 -06:00
|
|
|
|
|
2006-10-17 03:05:37 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
2006-09-29 03:15:59 -06:00
|
|
|
|
|
2007-02-12 12:32:03 -07:00
|
|
|
|
/**
|
|
|
|
|
*Evict all buffers of a particular mem_type, but leave memory manager
|
|
|
|
|
*regions for NO_MOVE buffers intact. New buffers cannot be added at this
|
|
|
|
|
*point since we have the hardware lock.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:32:51 -06:00
|
|
|
|
static int drm_bo_lock_mm(struct drm_device * dev, unsigned mem_type)
|
2006-10-17 08:00:25 -06:00
|
|
|
|
{
|
|
|
|
|
int ret;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_mem_type_manager *man = &bm->man[mem_type];
|
2006-10-17 11:40:57 -06:00
|
|
|
|
|
|
|
|
|
if (mem_type == 0 || mem_type >= DRM_BO_MEM_TYPES) {
|
2007-03-30 04:23:22 -06:00
|
|
|
|
DRM_ERROR("Illegal memory manager memory type %u.\n", mem_type);
|
2006-10-17 11:40:57 -06:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2006-10-17 11:57:06 -06:00
|
|
|
|
|
2007-03-30 04:23:22 -06:00
|
|
|
|
if (!man->has_type) {
|
|
|
|
|
DRM_ERROR("Memory type %u has not been initialized.\n",
|
|
|
|
|
mem_type);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-13 12:05:32 -07:00
|
|
|
|
drm_bo_clean_unfenced(dev);
|
|
|
|
|
ret = drm_bo_force_list_clean(dev, &man->lru, mem_type, 0, 1, 0);
|
2006-10-17 11:57:06 -06:00
|
|
|
|
if (ret)
|
2006-10-17 08:00:25 -06:00
|
|
|
|
return ret;
|
2007-02-13 12:05:32 -07:00
|
|
|
|
ret = drm_bo_force_list_clean(dev, &man->pinned, mem_type, 0, 1, 1);
|
2007-02-12 12:32:03 -07:00
|
|
|
|
|
2006-10-17 08:00:25 -06:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 20:32:51 -06:00
|
|
|
|
int drm_bo_init_mm(struct drm_device * dev,
|
2007-02-16 12:22:24 -07:00
|
|
|
|
unsigned type,
|
|
|
|
|
unsigned long p_offset, unsigned long p_size)
|
2006-10-17 03:05:37 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
int ret = -EINVAL;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_mem_type_manager *man;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
|
|
|
|
|
if (type >= DRM_BO_MEM_TYPES) {
|
|
|
|
|
DRM_ERROR("Illegal memory type %d\n", type);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-01-31 06:50:57 -07:00
|
|
|
|
man = &bm->man[type];
|
|
|
|
|
if (man->has_type) {
|
2006-10-17 03:05:37 -06:00
|
|
|
|
DRM_ERROR("Memory manager already initialized for type %d\n",
|
|
|
|
|
type);
|
|
|
|
|
return ret;
|
2006-09-01 07:41:55 -06:00
|
|
|
|
}
|
|
|
|
|
|
2007-01-31 06:50:57 -07:00
|
|
|
|
ret = dev->driver->bo_driver->init_mem_type(dev, type, man);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (ret)
|
2007-01-31 06:50:57 -07:00
|
|
|
|
return ret;
|
|
|
|
|
|
2006-10-17 03:05:37 -06:00
|
|
|
|
ret = 0;
|
|
|
|
|
if (type != DRM_BO_MEM_LOCAL) {
|
|
|
|
|
if (!p_size) {
|
|
|
|
|
DRM_ERROR("Zero size memory manager type %d\n", type);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2007-01-31 06:50:57 -07:00
|
|
|
|
ret = drm_mm_init(&man->manager, p_offset, p_size);
|
2006-10-17 03:05:37 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2007-01-31 06:50:57 -07:00
|
|
|
|
man->has_type = 1;
|
|
|
|
|
man->use_type = 1;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
|
2007-01-31 06:50:57 -07:00
|
|
|
|
INIT_LIST_HEAD(&man->lru);
|
|
|
|
|
INIT_LIST_HEAD(&man->pinned);
|
2006-10-17 03:05:37 -06:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-02-16 12:22:24 -07:00
|
|
|
|
EXPORT_SYMBOL(drm_bo_init_mm);
|
2006-10-17 03:05:37 -06:00
|
|
|
|
|
2006-10-19 08:58:00 -06:00
|
|
|
|
/*
|
|
|
|
|
* This is called from lastclose, so we don't need to bother about
|
|
|
|
|
* any clients still running when we set the initialized flag to zero.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:32:51 -06:00
|
|
|
|
int drm_bo_driver_finish(struct drm_device * dev)
|
2006-10-17 03:05:37 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
int ret = 0;
|
|
|
|
|
unsigned i = DRM_BO_MEM_TYPES;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_mem_type_manager *man;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
|
|
|
|
|
mutex_lock(&dev->bm.init_mutex);
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
2006-10-17 11:57:06 -06:00
|
|
|
|
if (!bm->initialized)
|
2006-10-17 03:05:37 -06:00
|
|
|
|
goto out;
|
2006-10-19 08:58:00 -06:00
|
|
|
|
bm->initialized = 0;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
|
2006-10-17 11:57:06 -06:00
|
|
|
|
while (i--) {
|
2007-01-31 06:50:57 -07:00
|
|
|
|
man = &bm->man[i];
|
|
|
|
|
if (man->has_type) {
|
|
|
|
|
man->use_type = 0;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
if ((i != DRM_BO_MEM_LOCAL) && drm_bo_clean_mm(dev, i)) {
|
|
|
|
|
ret = -EBUSY;
|
|
|
|
|
DRM_ERROR("DRM memory manager type %d "
|
|
|
|
|
"is not clean.\n", i);
|
|
|
|
|
}
|
2007-01-31 06:50:57 -07:00
|
|
|
|
man->has_type = 0;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2006-09-01 07:41:55 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2007-02-12 09:47:57 -07:00
|
|
|
|
|
2006-10-17 03:05:37 -06:00
|
|
|
|
if (!cancel_delayed_work(&bm->wq)) {
|
|
|
|
|
flush_scheduled_work();
|
|
|
|
|
}
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2006-10-19 08:58:00 -06:00
|
|
|
|
drm_bo_delayed_delete(dev, 1);
|
|
|
|
|
if (list_empty(&bm->ddestroy)) {
|
|
|
|
|
DRM_DEBUG("Delayed destroy list was clean\n");
|
|
|
|
|
}
|
2007-01-31 06:50:57 -07:00
|
|
|
|
if (list_empty(&bm->man[0].lru)) {
|
2006-10-19 08:58:00 -06:00
|
|
|
|
DRM_DEBUG("Swap list was clean\n");
|
|
|
|
|
}
|
2007-01-31 06:50:57 -07:00
|
|
|
|
if (list_empty(&bm->man[0].pinned)) {
|
2006-10-19 08:58:00 -06:00
|
|
|
|
DRM_DEBUG("NO_MOVE list was clean\n");
|
|
|
|
|
}
|
|
|
|
|
if (list_empty(&bm->unfenced)) {
|
|
|
|
|
DRM_DEBUG("Unfenced list was clean\n");
|
|
|
|
|
}
|
2006-10-17 11:57:06 -06:00
|
|
|
|
out:
|
2006-10-17 03:05:37 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
mutex_unlock(&dev->bm.init_mutex);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 20:32:51 -06:00
|
|
|
|
int drm_bo_driver_init(struct drm_device * dev)
|
2006-10-17 03:05:37 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_driver *driver = dev->driver->bo_driver;
|
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
2006-10-17 03:05:37 -06:00
|
|
|
|
int ret = -EINVAL;
|
2006-10-17 11:57:06 -06:00
|
|
|
|
|
2006-10-17 03:05:37 -06:00
|
|
|
|
mutex_lock(&dev->bm.init_mutex);
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
if (!driver)
|
|
|
|
|
goto out_unlock;
|
2006-10-17 11:57:06 -06:00
|
|
|
|
|
2006-10-17 03:05:37 -06:00
|
|
|
|
/*
|
|
|
|
|
* Initialize the system memory buffer type.
|
|
|
|
|
* Other types need to be driver / IOCTL initialized.
|
|
|
|
|
*/
|
2007-08-02 14:51:55 -06:00
|
|
|
|
ret = drm_bo_init_mm(dev, DRM_BO_MEM_LOCAL, 0, 0);
|
2006-10-17 03:05:37 -06:00
|
|
|
|
if (ret)
|
|
|
|
|
goto out_unlock;
|
|
|
|
|
|
2006-12-31 17:30:38 -07:00
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20)
|
2006-10-17 03:05:37 -06:00
|
|
|
|
INIT_WORK(&bm->wq, &drm_bo_delayed_workqueue, dev);
|
2006-12-31 17:30:38 -07:00
|
|
|
|
#else
|
|
|
|
|
INIT_DELAYED_WORK(&bm->wq, drm_bo_delayed_workqueue);
|
|
|
|
|
#endif
|
2006-10-17 03:05:37 -06:00
|
|
|
|
bm->initialized = 1;
|
|
|
|
|
bm->nice_mode = 1;
|
|
|
|
|
atomic_set(&bm->count, 0);
|
|
|
|
|
bm->cur_pages = 0;
|
|
|
|
|
INIT_LIST_HEAD(&bm->unfenced);
|
2006-10-17 11:57:06 -06:00
|
|
|
|
INIT_LIST_HEAD(&bm->ddestroy);
|
|
|
|
|
out_unlock:
|
2006-10-17 03:05:37 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
mutex_unlock(&dev->bm.init_mutex);
|
2006-09-01 07:41:55 -06:00
|
|
|
|
return ret;
|
2006-08-30 05:04:08 -06:00
|
|
|
|
}
|
2006-10-17 03:05:37 -06:00
|
|
|
|
|
2006-10-17 11:57:06 -06:00
|
|
|
|
EXPORT_SYMBOL(drm_bo_driver_init);
|
2006-08-30 05:04:08 -06:00
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_mm_init_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2006-08-30 05:04:08 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_mm_init_arg *arg = data;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_bo_driver *driver = dev->driver->bo_driver;
|
2007-05-05 19:17:30 -06:00
|
|
|
|
int ret;
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_mm_init_ioctl: type %d, 0x%08llx offset, %dkb\n",
|
|
|
|
|
arg->mem_type, arg->p_offset * PAGE_SIZE, (int)(arg->p_size * 4));
|
|
|
|
|
|
2007-05-05 19:17:30 -06:00
|
|
|
|
if (!driver) {
|
|
|
|
|
DRM_ERROR("Buffer objects are not supported by this driver\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = -EINVAL;
|
2007-07-19 18:11:11 -06:00
|
|
|
|
if (arg->magic != DRM_BO_INIT_MAGIC) {
|
2007-06-12 04:21:38 -06:00
|
|
|
|
DRM_ERROR("You are using an old libdrm that is not compatible with\n"
|
|
|
|
|
"\tthe kernel DRM module. Please upgrade your libdrm.\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2007-07-19 18:11:11 -06:00
|
|
|
|
if (arg->major != DRM_BO_INIT_MAJOR) {
|
2007-06-12 04:21:38 -06:00
|
|
|
|
DRM_ERROR("libdrm and kernel DRM buffer object interface major\n"
|
|
|
|
|
"\tversion don't match. Got %d, expected %d,\n",
|
2007-07-19 18:11:11 -06:00
|
|
|
|
arg->major, DRM_BO_INIT_MAJOR);
|
2007-06-12 04:21:38 -06:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2007-07-19 18:11:11 -06:00
|
|
|
|
if (arg->minor > DRM_BO_INIT_MINOR) {
|
2007-06-12 04:21:38 -06:00
|
|
|
|
DRM_ERROR("libdrm expects a newer DRM buffer object interface.\n"
|
|
|
|
|
"\tlibdrm buffer object interface version is %d.%d.\n"
|
|
|
|
|
"\tkernel DRM buffer object interface version is %d.%d\n",
|
2007-07-19 18:11:11 -06:00
|
|
|
|
arg->major, arg->minor, DRM_BO_INIT_MAJOR, DRM_BO_INIT_MINOR);
|
2007-06-12 04:21:38 -06:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-05 19:17:30 -06:00
|
|
|
|
mutex_lock(&dev->bm.init_mutex);
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
if (!bm->initialized) {
|
|
|
|
|
DRM_ERROR("DRM memory manager was not initialized.\n");
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
2007-07-19 18:11:11 -06:00
|
|
|
|
if (arg->mem_type == 0) {
|
2007-05-05 19:17:30 -06:00
|
|
|
|
DRM_ERROR("System memory buffers already initialized.\n");
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
2007-07-19 18:11:11 -06:00
|
|
|
|
ret = drm_bo_init_mm(dev, arg->mem_type,
|
|
|
|
|
arg->p_offset, arg->p_size);
|
2007-05-05 19:17:30 -06:00
|
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
mutex_unlock(&dev->bm.init_mutex);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_mm_takedown_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-05 19:17:30 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_mm_type_arg *arg = data;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_bo_driver *driver = dev->driver->bo_driver;
|
2007-05-05 19:17:30 -06:00
|
|
|
|
int ret;
|
2006-08-30 05:04:08 -06:00
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_mm_takedown_ioctl: %d type\n", arg->mem_type);
|
|
|
|
|
|
2006-08-30 05:04:08 -06:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
LOCK_TEST_WITH_RETURN(dev, file_priv);
|
2007-05-05 19:17:30 -06:00
|
|
|
|
mutex_lock(&dev->bm.init_mutex);
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
|
if (!bm->initialized) {
|
|
|
|
|
DRM_ERROR("DRM memory manager was not initialized\n");
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
2007-07-19 18:11:11 -06:00
|
|
|
|
if (arg->mem_type == 0) {
|
2007-05-05 19:17:30 -06:00
|
|
|
|
DRM_ERROR("No takedown for System memory buffers.\n");
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
ret = 0;
|
2007-07-19 18:11:11 -06:00
|
|
|
|
if (drm_bo_clean_mm(dev, arg->mem_type)) {
|
2007-05-05 19:17:30 -06:00
|
|
|
|
DRM_ERROR("Memory manager type %d not clean. "
|
2007-07-19 18:11:11 -06:00
|
|
|
|
"Delaying takedown\n", arg->mem_type);
|
2007-05-05 19:17:30 -06:00
|
|
|
|
}
|
|
|
|
|
out:
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
mutex_unlock(&dev->bm.init_mutex);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_mm_lock_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-05 19:17:30 -06:00
|
|
|
|
{
|
2007-07-19 18:11:11 -06:00
|
|
|
|
struct drm_mm_type_arg *arg = data;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_driver *driver = dev->driver->bo_driver;
|
2007-05-05 19:17:30 -06:00
|
|
|
|
int ret;
|
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_mm_lock_ioctl: %d type\n", arg->mem_type);
|
|
|
|
|
|
2007-05-05 19:17:30 -06:00
|
|
|
|
if (!driver) {
|
|
|
|
|
DRM_ERROR("Buffer objects are not supported by this driver\n");
|
2006-08-30 05:04:08 -06:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2006-08-30 13:31:38 -06:00
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
LOCK_TEST_WITH_RETURN(dev, file_priv);
|
2007-05-05 19:17:30 -06:00
|
|
|
|
mutex_lock(&dev->bm.init_mutex);
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
2007-07-19 18:11:11 -06:00
|
|
|
|
ret = drm_bo_lock_mm(dev, arg->mem_type);
|
2007-05-05 19:17:30 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
mutex_unlock(&dev->bm.init_mutex);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
int drm_mm_unlock_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2007-05-05 19:17:30 -06:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_driver *driver = dev->driver->bo_driver;
|
2007-05-05 19:17:30 -06:00
|
|
|
|
int ret;
|
|
|
|
|
|
2007-07-26 12:17:41 -06:00
|
|
|
|
DRM_DEBUG("drm_mm_unlock_ioctl\n");
|
|
|
|
|
|
2007-05-05 19:17:30 -06:00
|
|
|
|
if (!driver) {
|
|
|
|
|
DRM_ERROR("Buffer objects are not supported by this driver\n");
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
|
LOCK_TEST_WITH_RETURN(dev, file_priv);
|
2007-05-05 19:17:30 -06:00
|
|
|
|
mutex_lock(&dev->bm.init_mutex);
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
2006-10-17 03:05:37 -06:00
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
mutex_unlock(&dev->bm.init_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
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-02-02 06:47:44 -07:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* buffer object vm functions.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
int drm_mem_reg_is_pci(struct drm_device * dev, struct drm_bo_mem_reg * mem)
|
2007-02-06 08:59:45 -07:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_mem_type_manager *man = &bm->man[mem->mem_type];
|
2007-02-06 08:59:45 -07:00
|
|
|
|
|
|
|
|
|
if (!(man->flags & _DRM_FLAG_MEMTYPE_FIXED)) {
|
|
|
|
|
if (mem->mem_type == DRM_BO_MEM_LOCAL)
|
|
|
|
|
return 0;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-06 08:59:45 -07:00
|
|
|
|
if (man->flags & _DRM_FLAG_MEMTYPE_CMA)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2007-02-07 09:25:13 -07:00
|
|
|
|
if (mem->flags & DRM_BO_FLAG_CACHED)
|
2007-02-06 08:59:45 -07:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-02-06 08:59:45 -07:00
|
|
|
|
EXPORT_SYMBOL(drm_mem_reg_is_pci);
|
|
|
|
|
|
2007-02-02 06:47:44 -07:00
|
|
|
|
/**
|
|
|
|
|
* \c Get the PCI offset for the buffer object memory.
|
|
|
|
|
*
|
|
|
|
|
* \param bo The buffer object.
|
|
|
|
|
* \param bus_base On return the base of the PCI region
|
|
|
|
|
* \param bus_offset On return the byte offset into the PCI region
|
|
|
|
|
* \param bus_size On return the byte size of the buffer object or zero if
|
|
|
|
|
* the buffer object memory is not accessible through a PCI region.
|
|
|
|
|
* \return Failure indication.
|
2007-03-18 15:23:43 -06:00
|
|
|
|
*
|
2007-02-02 06:47:44 -07:00
|
|
|
|
* Returns -EINVAL if the buffer object is currently not mappable.
|
2007-02-06 08:59:45 -07:00
|
|
|
|
* Otherwise returns zero.
|
2007-02-02 06:47:44 -07:00
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
int drm_bo_pci_offset(struct drm_device *dev,
|
|
|
|
|
struct drm_bo_mem_reg *mem,
|
2007-02-02 06:47:44 -07:00
|
|
|
|
unsigned long *bus_base,
|
2007-02-12 12:34:50 -07:00
|
|
|
|
unsigned long *bus_offset, unsigned long *bus_size)
|
2007-02-02 06:47:44 -07:00
|
|
|
|
{
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager *bm = &dev->bm;
|
|
|
|
|
struct drm_mem_type_manager *man = &bm->man[mem->mem_type];
|
2007-02-02 06:47:44 -07:00
|
|
|
|
|
|
|
|
|
*bus_size = 0;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
if (!(man->flags & _DRM_FLAG_MEMTYPE_MAPPABLE))
|
2007-02-02 06:47:44 -07:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
2007-02-06 08:59:45 -07:00
|
|
|
|
if (drm_mem_reg_is_pci(dev, mem)) {
|
|
|
|
|
*bus_offset = mem->mm_node->start << PAGE_SHIFT;
|
|
|
|
|
*bus_size = mem->num_pages << PAGE_SHIFT;
|
2007-02-02 06:47:44 -07:00
|
|
|
|
*bus_base = man->io_offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \c Kill all user-space virtual mappings of this buffer object.
|
|
|
|
|
*
|
|
|
|
|
* \param bo The buffer object.
|
|
|
|
|
*
|
|
|
|
|
* Call bo->mutex locked.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
void drm_bo_unmap_virtual(struct drm_buffer_object * bo)
|
2007-02-02 06:47:44 -07:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-02-02 06:47:44 -07:00
|
|
|
|
loff_t offset = ((loff_t) bo->map_list.hash.key) << PAGE_SHIFT;
|
2007-02-06 07:56:43 -07:00
|
|
|
|
loff_t holelen = ((loff_t) bo->mem.num_pages) << PAGE_SHIFT;
|
2007-02-02 06:47:44 -07:00
|
|
|
|
|
2007-04-26 00:09:24 -06:00
|
|
|
|
if (!dev->dev_mapping)
|
|
|
|
|
return;
|
|
|
|
|
|
2007-02-02 06:47:44 -07:00
|
|
|
|
unmap_mapping_range(dev->dev_mapping, offset, holelen, 1);
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static void drm_bo_takedown_vm_locked(struct drm_buffer_object * bo)
|
2007-02-02 06:47:44 -07:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_map_list *list = &bo->map_list;
|
2007-02-02 06:47:44 -07:00
|
|
|
|
drm_local_map_t *map;
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
DRM_ASSERT_LOCKED(&dev->struct_mutex);
|
2007-02-02 06:47:44 -07:00
|
|
|
|
if (list->user_token) {
|
|
|
|
|
drm_ht_remove_item(&dev->map_hash, &list->hash);
|
|
|
|
|
list->user_token = 0;
|
|
|
|
|
}
|
|
|
|
|
if (list->file_offset_node) {
|
|
|
|
|
drm_mm_put_block(list->file_offset_node);
|
|
|
|
|
list->file_offset_node = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
map = list->map;
|
|
|
|
|
if (!map)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
drm_ctl_free(map, sizeof(*map), DRM_MEM_BUFOBJ);
|
|
|
|
|
list->map = NULL;
|
|
|
|
|
list->user_token = 0ULL;
|
2007-06-29 04:50:12 -06:00
|
|
|
|
drm_bo_usage_deref_locked(&bo);
|
2007-02-02 06:47:44 -07:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
static int drm_bo_setup_vm_locked(struct drm_buffer_object * bo)
|
2007-02-02 06:47:44 -07:00
|
|
|
|
{
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_map_list *list = &bo->map_list;
|
2007-02-02 06:47:44 -07:00
|
|
|
|
drm_local_map_t *map;
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_device *dev = bo->dev;
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
DRM_ASSERT_LOCKED(&dev->struct_mutex);
|
2007-02-02 06:47:44 -07:00
|
|
|
|
list->map = drm_ctl_calloc(1, sizeof(*map), DRM_MEM_BUFOBJ);
|
|
|
|
|
if (!list->map)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
map = list->map;
|
|
|
|
|
map->offset = 0;
|
|
|
|
|
map->type = _DRM_TTM;
|
|
|
|
|
map->flags = _DRM_REMOVABLE;
|
2007-02-06 07:56:43 -07:00
|
|
|
|
map->size = bo->mem.num_pages * PAGE_SIZE;
|
2007-02-02 06:47:44 -07:00
|
|
|
|
atomic_inc(&bo->usage);
|
2007-02-12 12:34:50 -07:00
|
|
|
|
map->handle = (void *)bo;
|
|
|
|
|
|
2007-02-02 06:47:44 -07:00
|
|
|
|
list->file_offset_node = drm_mm_search_free(&dev->offset_manager,
|
2007-02-06 07:56:43 -07:00
|
|
|
|
bo->mem.num_pages, 0, 0);
|
2007-02-02 06:47:44 -07:00
|
|
|
|
|
|
|
|
|
if (!list->file_offset_node) {
|
|
|
|
|
drm_bo_takedown_vm_locked(bo);
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
list->file_offset_node = drm_mm_get_block(list->file_offset_node,
|
2007-02-06 07:56:43 -07:00
|
|
|
|
bo->mem.num_pages, 0);
|
2007-02-02 06:47:44 -07:00
|
|
|
|
|
|
|
|
|
list->hash.key = list->file_offset_node->start;
|
|
|
|
|
if (drm_ht_insert_item(&dev->map_hash, &list->hash)) {
|
|
|
|
|
drm_bo_takedown_vm_locked(bo);
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
2007-02-12 12:34:50 -07:00
|
|
|
|
|
2007-07-17 17:42:06 -06:00
|
|
|
|
list->user_token = ((uint64_t) list->hash.key) << PAGE_SHIFT;
|
2007-02-02 06:47:44 -07:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|