2009-07-05 11:51:42 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Advanced Micro Devices, Inc.
|
|
|
|
* Copyright 2008 Red Hat Inc.
|
|
|
|
* Copyright 2009 Jerome Glisse.
|
|
|
|
*
|
|
|
|
* 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, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* 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 NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors: Dave Airlie
|
|
|
|
* Alex Deucher
|
|
|
|
* Jerome Glisse
|
|
|
|
*/
|
|
|
|
#ifndef __RADEON_OBJECT_H__
|
|
|
|
#define __RADEON_OBJECT_H__
|
|
|
|
|
2009-12-14 19:34:32 +01:00
|
|
|
#include <drm/radeon_drm.h>
|
|
|
|
#include "radeon.h"
|
2009-07-05 11:51:42 +02:00
|
|
|
|
2009-12-14 19:34:32 +01:00
|
|
|
/**
|
|
|
|
* radeon_mem_type_to_domain - return domain corresponding to mem_type
|
|
|
|
* @mem_type: ttm memory type
|
|
|
|
*
|
|
|
|
* Returns corresponding domain of the ttm mem_type
|
2009-07-05 11:51:42 +02:00
|
|
|
*/
|
2009-12-14 19:34:32 +01:00
|
|
|
static inline unsigned radeon_mem_type_to_domain(u32 mem_type)
|
|
|
|
{
|
|
|
|
switch (mem_type) {
|
|
|
|
case TTM_PL_VRAM:
|
|
|
|
return RADEON_GEM_DOMAIN_VRAM;
|
|
|
|
case TTM_PL_TT:
|
|
|
|
return RADEON_GEM_DOMAIN_GTT;
|
|
|
|
case TTM_PL_SYSTEM:
|
|
|
|
return RADEON_GEM_DOMAIN_CPU;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* radeon_bo_reserve - reserve bo
|
|
|
|
* @bo: bo structure
|
|
|
|
* @no_wait: don't sleep while trying to reserve (return -EBUSY)
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* -EBUSY: buffer is busy and @no_wait is true
|
2010-02-12 14:55:15 +01:00
|
|
|
* -ERESTARTSYS: A wait for the buffer to become unreserved was interrupted by
|
2009-12-14 19:34:32 +01:00
|
|
|
* a signal. Release all buffer reservations and return to user-space.
|
2010-02-12 14:55:15 +01:00
|
|
|
*/
|
2009-12-14 19:34:32 +01:00
|
|
|
|
|
|
|
static inline void radeon_bo_unreserve(struct radeon_bo *bo)
|
|
|
|
{
|
|
|
|
ttm_bo_unreserve(&bo->tbo);
|
|
|
|
}
|
2009-07-05 11:51:42 +02:00
|
|
|
|
2009-12-14 19:34:32 +01:00
|
|
|
/**
|
|
|
|
* radeon_bo_gpu_offset - return GPU offset of bo
|
|
|
|
* @bo: radeon object for which we query the offset
|
2010-02-12 14:55:15 +01:00
|
|
|
*
|
2009-12-14 19:34:32 +01:00
|
|
|
* Returns current GPU offset of the object.
|
2010-02-12 14:55:15 +01:00
|
|
|
*
|
2009-12-14 19:34:32 +01:00
|
|
|
* Note: object should either be pinned or reserved when calling this
|
2011-06-24 12:44:10 +02:00
|
|
|
* function, it might be useful to add check for this for debugging.
|
2010-02-12 14:55:15 +01:00
|
|
|
*/
|
2009-12-14 19:34:32 +01:00
|
|
|
static inline u64 radeon_bo_gpu_offset(struct radeon_bo *bo)
|
|
|
|
{
|
|
|
|
return bo->tbo.offset;
|
|
|
|
}
|
2009-07-05 11:51:42 +02:00
|
|
|
|
2009-12-14 19:34:32 +01:00
|
|
|
static inline unsigned long radeon_bo_size(struct radeon_bo *bo)
|
|
|
|
{
|
|
|
|
return bo->tbo.num_pages << PAGE_SHIFT;
|
|
|
|
}
|
2009-07-05 11:51:42 +02:00
|
|
|
|
2009-12-14 19:34:32 +01:00
|
|
|
static inline bool radeon_bo_is_reserved(struct radeon_bo *bo)
|
|
|
|
{
|
|
|
|
return !!atomic_read(&bo->tbo.reserved);
|
|
|
|
}
|
2009-07-05 11:51:42 +02:00
|
|
|
|
2009-12-14 19:34:32 +01:00
|
|
|
/**
|
|
|
|
* radeon_bo_mmap_offset - return mmap offset of bo
|
|
|
|
* @bo: radeon object for which we query the offset
|
2010-02-12 14:55:15 +01:00
|
|
|
*
|
2009-12-14 19:34:32 +01:00
|
|
|
* Returns mmap offset of the object.
|
2010-02-12 14:55:15 +01:00
|
|
|
*
|
2009-12-14 19:34:32 +01:00
|
|
|
* Note: addr_space_offset is constant after ttm bo init thus isn't protected
|
|
|
|
* by any lock.
|
2010-02-12 14:55:15 +01:00
|
|
|
*/
|
2009-12-14 19:34:32 +01:00
|
|
|
static inline u64 radeon_bo_mmap_offset(struct radeon_bo *bo)
|
2009-07-05 11:51:42 +02:00
|
|
|
{
|
2009-12-14 19:34:32 +01:00
|
|
|
return bo->tbo.addr_space_offset;
|
|
|
|
}
|
2009-07-05 11:51:42 +02:00
|
|
|
|
2009-12-14 19:34:32 +01:00
|
|
|
static inline int radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type,
|
|
|
|
bool no_wait)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, 0);
|
2011-06-24 12:44:10 +02:00
|
|
|
if (unlikely(r != 0))
|
2009-12-14 19:34:32 +01:00
|
|
|
return r;
|
2011-06-24 12:44:10 +02:00
|
|
|
// spin_lock(&bo->tbo.bdev->fence_lock);
|
2009-12-14 19:34:32 +01:00
|
|
|
if (mem_type)
|
|
|
|
*mem_type = bo->tbo.mem.mem_type;
|
|
|
|
if (bo->tbo.sync_obj)
|
|
|
|
r = ttm_bo_wait(&bo->tbo, true, true, no_wait);
|
2011-06-24 12:44:10 +02:00
|
|
|
// spin_unlock(&bo->tbo.bdev->fence_lock);
|
2009-12-14 19:34:32 +01:00
|
|
|
ttm_bo_unreserve(&bo->tbo);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern int radeon_bo_create(struct radeon_device *rdev,
|
2011-06-24 12:44:10 +02:00
|
|
|
unsigned long size, int byte_align,
|
2009-12-14 19:34:32 +01:00
|
|
|
bool kernel, u32 domain,
|
|
|
|
struct radeon_bo **bo_ptr);
|
|
|
|
extern int radeon_bo_kmap(struct radeon_bo *bo, void **ptr);
|
|
|
|
extern void radeon_bo_kunmap(struct radeon_bo *bo);
|
|
|
|
extern void radeon_bo_unref(struct radeon_bo **bo);
|
|
|
|
extern int radeon_bo_pin(struct radeon_bo *bo, u32 domain, u64 *gpu_addr);
|
|
|
|
extern int radeon_bo_unpin(struct radeon_bo *bo);
|
|
|
|
extern int radeon_bo_evict_vram(struct radeon_device *rdev);
|
|
|
|
extern void radeon_bo_force_delete(struct radeon_device *rdev);
|
|
|
|
extern int radeon_bo_init(struct radeon_device *rdev);
|
|
|
|
extern void radeon_bo_fini(struct radeon_device *rdev);
|
|
|
|
extern void radeon_bo_list_add_object(struct radeon_bo_list *lobj,
|
|
|
|
struct list_head *head);
|
2010-03-01 07:55:30 +01:00
|
|
|
extern int radeon_bo_list_validate(struct list_head *head);
|
2009-12-14 19:34:32 +01:00
|
|
|
extern int radeon_bo_fbdev_mmap(struct radeon_bo *bo,
|
|
|
|
struct vm_area_struct *vma);
|
|
|
|
extern int radeon_bo_set_tiling_flags(struct radeon_bo *bo,
|
|
|
|
u32 tiling_flags, u32 pitch);
|
|
|
|
extern void radeon_bo_get_tiling_flags(struct radeon_bo *bo,
|
|
|
|
u32 *tiling_flags, u32 *pitch);
|
|
|
|
extern int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
|
|
|
|
bool force_drop);
|
|
|
|
extern void radeon_bo_move_notify(struct ttm_buffer_object *bo,
|
|
|
|
struct ttm_mem_reg *mem);
|
2011-06-24 12:44:10 +02:00
|
|
|
extern int radeon_bo_fault_reserve_notify(struct ttm_buffer_object *bo);
|
2009-12-14 19:34:32 +01:00
|
|
|
extern int radeon_bo_get_surface_reg(struct radeon_bo *bo);
|
2009-07-05 11:51:42 +02:00
|
|
|
#endif
|