2006-08-22 03:19:53 -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-22 03:19:53 -06:00
|
|
|
|
* All Rights Reserved.
|
2007-03-18 15:23:43 -06:00
|
|
|
|
*
|
2006-08-22 03:19:53 -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-03-18 15:23:43 -06:00
|
|
|
|
*
|
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.
|
|
|
|
|
*
|
2006-08-22 03:19:53 -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-22 03:19:53 -06:00
|
|
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
/*
|
|
|
|
|
* Authors: Thomas Hellstr<EFBFBD>m <thomas-at-tungstengraphics-dot-com>
|
|
|
|
|
*/
|
|
|
|
|
|
2007-02-14 06:10:10 -07:00
|
|
|
|
#ifndef _DRM_OBJECTS_H
|
2007-05-06 10:09:59 -06:00
|
|
|
|
#define _DRM_OBJECTS_H
|
2006-08-22 01:47:33 -06:00
|
|
|
|
|
2007-02-14 06:05:40 -07:00
|
|
|
|
struct drm_device;
|
2007-09-22 05:34:33 -06:00
|
|
|
|
struct drm_bo_mem_reg;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
/***************************************************
|
|
|
|
|
* User space objects. (drm_object.c)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define drm_user_object_entry(_ptr, _type, _member) container_of(_ptr, _type, _member)
|
|
|
|
|
|
2007-07-15 20:48:44 -06:00
|
|
|
|
enum drm_object_type {
|
2007-02-14 06:05:40 -07:00
|
|
|
|
drm_fence_type,
|
|
|
|
|
drm_buffer_type,
|
2007-10-20 08:49:43 -06:00
|
|
|
|
drm_lock_type,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
/*
|
|
|
|
|
* Add other user space object types here.
|
|
|
|
|
*/
|
2007-09-22 05:34:33 -06:00
|
|
|
|
drm_driver_type0 = 256,
|
|
|
|
|
drm_driver_type1,
|
|
|
|
|
drm_driver_type2,
|
|
|
|
|
drm_driver_type3,
|
|
|
|
|
drm_driver_type4
|
2007-07-15 20:48:44 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* A user object is a structure that helps the drm give out user handles
|
|
|
|
|
* to kernel internal objects and to keep track of these objects so that
|
|
|
|
|
* they can be destroyed, for example when the user space process exits.
|
|
|
|
|
* Designed to be accessible using a user space 32-bit handle.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_user_object {
|
|
|
|
|
struct drm_hash_item hash;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
struct list_head list;
|
2007-07-15 20:48:44 -06:00
|
|
|
|
enum drm_object_type type;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
atomic_t refcount;
|
|
|
|
|
int shareable;
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_file *owner;
|
|
|
|
|
void (*ref_struct_locked) (struct drm_file * priv,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
struct drm_user_object * obj,
|
2007-07-15 21:45:39 -06:00
|
|
|
|
enum drm_ref_type ref_action);
|
2007-07-15 20:32:51 -06:00
|
|
|
|
void (*unref) (struct drm_file * priv, struct drm_user_object * obj,
|
2007-07-15 21:45:39 -06:00
|
|
|
|
enum drm_ref_type unref_action);
|
2007-07-15 20:32:51 -06:00
|
|
|
|
void (*remove) (struct drm_file * priv, struct drm_user_object * obj);
|
2007-07-15 20:48:44 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* A ref object is a structure which is used to
|
|
|
|
|
* keep track of references to user objects and to keep track of these
|
|
|
|
|
* references so that they can be destroyed for example when the user space
|
|
|
|
|
* process exits. Designed to be accessible using a pointer to the _user_ object.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_ref_object {
|
|
|
|
|
struct drm_hash_item hash;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
struct list_head list;
|
|
|
|
|
atomic_t refcount;
|
2007-07-15 21:45:39 -06:00
|
|
|
|
enum drm_ref_type unref_action;
|
2007-07-15 20:48:44 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Must be called with the struct_mutex held.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:48:44 -06:00
|
|
|
|
extern int drm_add_user_object(struct drm_file * priv, struct drm_user_object * item,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
int shareable);
|
|
|
|
|
/**
|
|
|
|
|
* Must be called with the struct_mutex held.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:48:44 -06:00
|
|
|
|
extern struct drm_user_object *drm_lookup_user_object(struct drm_file * priv,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
uint32_t key);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Must be called with the struct_mutex held. May temporarily release it.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:32:51 -06:00
|
|
|
|
extern int drm_add_ref_object(struct drm_file * priv,
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_user_object * referenced_object,
|
2007-07-15 21:45:39 -06:00
|
|
|
|
enum drm_ref_type ref_action);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
2006-08-22 01:47:33 -06:00
|
|
|
|
/*
|
2007-02-14 06:05:40 -07:00
|
|
|
|
* Must be called with the struct_mutex held.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_ref_object *drm_lookup_ref_object(struct drm_file * priv,
|
|
|
|
|
struct drm_user_object * referenced_object,
|
2007-07-15 21:45:39 -06:00
|
|
|
|
enum drm_ref_type ref_action);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
/*
|
|
|
|
|
* Must be called with the struct_mutex held.
|
|
|
|
|
* If "item" has been obtained by a call to drm_lookup_ref_object. You may not
|
|
|
|
|
* release the struct_mutex before calling drm_remove_ref_object.
|
|
|
|
|
* This function may temporarily release the struct_mutex.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 20:48:44 -06:00
|
|
|
|
extern void drm_remove_ref_object(struct drm_file * priv, struct drm_ref_object * item);
|
2007-07-15 20:32:51 -06:00
|
|
|
|
extern int drm_user_object_ref(struct drm_file * priv, uint32_t user_token,
|
2007-07-15 20:48:44 -06:00
|
|
|
|
enum drm_object_type type,
|
|
|
|
|
struct drm_user_object ** object);
|
2007-07-15 20:32:51 -06:00
|
|
|
|
extern int drm_user_object_unref(struct drm_file * priv, uint32_t user_token,
|
2007-07-15 20:48:44 -06:00
|
|
|
|
enum drm_object_type type);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
/***************************************************
|
|
|
|
|
* Fence objects. (drm_fence.c)
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_fence_object {
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_user_object base;
|
2007-06-29 04:50:12 -06:00
|
|
|
|
struct drm_device *dev;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
atomic_t usage;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The below three fields are protected by the fence manager spinlock.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
struct list_head ring;
|
2007-09-12 07:50:38 -06:00
|
|
|
|
int fence_class;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
uint32_t native_type;
|
|
|
|
|
uint32_t type;
|
|
|
|
|
uint32_t signaled;
|
|
|
|
|
uint32_t sequence;
|
|
|
|
|
uint32_t flush_mask;
|
|
|
|
|
uint32_t submitted_flush;
|
2007-09-22 05:34:33 -06:00
|
|
|
|
uint32_t error;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
2007-02-15 04:10:33 -07:00
|
|
|
|
#define _DRM_FENCE_CLASSES 8
|
2007-02-14 06:05:40 -07:00
|
|
|
|
#define _DRM_FENCE_TYPE_EXE 0x00
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_fence_class_manager {
|
2007-02-14 06:05:40 -07:00
|
|
|
|
struct list_head ring;
|
2007-02-15 04:10:33 -07:00
|
|
|
|
uint32_t pending_flush;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
wait_queue_head_t fence_queue;
|
|
|
|
|
int pending_exe_flush;
|
|
|
|
|
uint32_t last_exe_flush;
|
|
|
|
|
uint32_t exe_flush_sequence;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2007-02-15 04:10:33 -07:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_fence_manager {
|
2007-02-15 04:10:33 -07:00
|
|
|
|
int initialized;
|
|
|
|
|
rwlock_t lock;
|
2007-09-12 07:50:38 -06:00
|
|
|
|
struct drm_fence_class_manager fence_class[_DRM_FENCE_CLASSES];
|
2007-02-15 04:10:33 -07:00
|
|
|
|
uint32_t num_classes;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
atomic_t count;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_fence_driver {
|
2007-02-15 04:10:33 -07:00
|
|
|
|
uint32_t num_classes;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
uint32_t wrap_diff;
|
|
|
|
|
uint32_t flush_diff;
|
|
|
|
|
uint32_t sequence_mask;
|
|
|
|
|
int lazy_capable;
|
2007-09-12 07:50:38 -06:00
|
|
|
|
int (*has_irq) (struct drm_device * dev, uint32_t fence_class,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
uint32_t flags);
|
2007-09-12 07:50:38 -06:00
|
|
|
|
int (*emit) (struct drm_device * dev, uint32_t fence_class, uint32_t flags,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
uint32_t * breadcrumb, uint32_t * native_type);
|
2007-09-12 07:50:38 -06:00
|
|
|
|
void (*poke_flush) (struct drm_device * dev, uint32_t fence_class);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
2007-09-12 07:50:38 -06:00
|
|
|
|
extern void drm_fence_handler(struct drm_device *dev, uint32_t fence_class,
|
2007-09-22 05:34:33 -06:00
|
|
|
|
uint32_t sequence, uint32_t type, uint32_t error);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
extern void drm_fence_manager_init(struct drm_device *dev);
|
|
|
|
|
extern void drm_fence_manager_takedown(struct drm_device *dev);
|
2007-09-12 07:50:38 -06:00
|
|
|
|
extern void drm_fence_flush_old(struct drm_device *dev, uint32_t fence_class,
|
2007-02-15 04:10:33 -07:00
|
|
|
|
uint32_t sequence);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern int drm_fence_object_flush(struct drm_fence_object * fence, uint32_t type);
|
|
|
|
|
extern int drm_fence_object_signaled(struct drm_fence_object * fence,
|
2007-06-13 07:38:59 -06:00
|
|
|
|
uint32_t type, int flush);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern void drm_fence_usage_deref_locked(struct drm_fence_object ** fence);
|
|
|
|
|
extern void drm_fence_usage_deref_unlocked(struct drm_fence_object ** fence);
|
2007-06-29 04:50:12 -06:00
|
|
|
|
extern struct drm_fence_object *drm_fence_reference_locked(struct drm_fence_object *src);
|
|
|
|
|
extern void drm_fence_reference_unlocked(struct drm_fence_object **dst,
|
|
|
|
|
struct drm_fence_object *src);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern int drm_fence_object_wait(struct drm_fence_object * fence,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
int lazy, int ignore_signals, uint32_t mask);
|
|
|
|
|
extern int drm_fence_object_create(struct drm_device *dev, uint32_t type,
|
2007-09-12 07:50:38 -06:00
|
|
|
|
uint32_t fence_flags, uint32_t fence_class,
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_fence_object ** c_fence);
|
2007-09-22 05:34:33 -06:00
|
|
|
|
extern int drm_fence_object_emit(struct drm_fence_object * fence,
|
|
|
|
|
uint32_t fence_flags, uint32_t class,
|
|
|
|
|
uint32_t type);
|
|
|
|
|
extern void drm_fence_fill_arg(struct drm_fence_object *fence,
|
|
|
|
|
struct drm_fence_arg *arg);
|
|
|
|
|
|
2007-10-16 07:10:08 -06:00
|
|
|
|
extern int drm_fence_add_user_object(struct drm_file * priv,
|
|
|
|
|
struct drm_fence_object * fence, int shareable);
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
extern int drm_fence_create_ioctl(struct drm_device *dev, void *data,
|
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
extern int drm_fence_destroy_ioctl(struct drm_device *dev, void *data,
|
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
extern int drm_fence_reference_ioctl(struct drm_device *dev, void *data,
|
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
extern int drm_fence_unreference_ioctl(struct drm_device *dev, void *data,
|
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
extern int drm_fence_signaled_ioctl(struct drm_device *dev, void *data,
|
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
extern int drm_fence_flush_ioctl(struct drm_device *dev, void *data,
|
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
extern int drm_fence_wait_ioctl(struct drm_device *dev, void *data,
|
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
extern int drm_fence_emit_ioctl(struct drm_device *dev, void *data,
|
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
extern int drm_fence_buffers_ioctl(struct drm_device *dev, void *data,
|
|
|
|
|
struct drm_file *file_priv);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
/**************************************************
|
|
|
|
|
*TTMs
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The ttm backend GTT interface. (In our case AGP).
|
|
|
|
|
* Any similar type of device (PCIE?)
|
2006-08-22 01:47:33 -06:00
|
|
|
|
* needs only to implement these functions to be usable with the "TTM" interface.
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* The AGP backend implementation lives in drm_agpsupport.c
|
2007-02-14 06:05:40 -07:00
|
|
|
|
* basically maps these calls to available functions in agpgart.
|
|
|
|
|
* Each drm device driver gets an
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* additional function pointer that creates these types,
|
2006-08-22 01:47:33 -06:00
|
|
|
|
* so that the device can choose the correct aperture.
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* (Multiple AGP apertures, etc.)
|
2006-08-22 01:47:33 -06:00
|
|
|
|
* Most device drivers will let this point to the standard AGP implementation.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-10-12 04:09:16 -06:00
|
|
|
|
#define DRM_BE_FLAG_NEEDS_FREE 0x00000001
|
|
|
|
|
#define DRM_BE_FLAG_BOUND_CACHED 0x00000002
|
|
|
|
|
|
2007-04-18 08:33:28 -06:00
|
|
|
|
struct drm_ttm_backend;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_ttm_backend_func {
|
2006-10-12 04:09:16 -06:00
|
|
|
|
int (*needs_ub_cache_adjust) (struct drm_ttm_backend * backend);
|
2006-08-22 01:47:33 -06:00
|
|
|
|
int (*populate) (struct drm_ttm_backend * backend,
|
|
|
|
|
unsigned long num_pages, struct page ** pages);
|
|
|
|
|
void (*clear) (struct drm_ttm_backend * backend);
|
2006-10-17 11:57:06 -06:00
|
|
|
|
int (*bind) (struct drm_ttm_backend * backend,
|
2007-09-22 05:34:33 -06:00
|
|
|
|
struct drm_bo_mem_reg * bo_mem);
|
2006-08-22 01:47:33 -06:00
|
|
|
|
int (*unbind) (struct drm_ttm_backend * backend);
|
|
|
|
|
void (*destroy) (struct drm_ttm_backend * backend);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2007-04-18 08:33:28 -06:00
|
|
|
|
|
|
|
|
|
|
2007-09-22 05:34:33 -06:00
|
|
|
|
typedef struct drm_ttm_backend {
|
|
|
|
|
struct drm_device *dev;
|
|
|
|
|
uint32_t flags;
|
|
|
|
|
struct drm_ttm_backend_func *func;
|
|
|
|
|
} drm_ttm_backend_t;
|
2006-08-22 01:47:33 -06:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_ttm {
|
2006-08-22 01:47:33 -06:00
|
|
|
|
struct page **pages;
|
2006-10-11 05:40:35 -06:00
|
|
|
|
uint32_t page_flags;
|
2006-08-22 01:47:33 -06:00
|
|
|
|
unsigned long num_pages;
|
2006-10-17 11:57:06 -06:00
|
|
|
|
atomic_t vma_count;
|
2006-08-22 01:47:33 -06:00
|
|
|
|
struct drm_device *dev;
|
2006-08-30 01:57:35 -06:00
|
|
|
|
int destroy;
|
2006-10-17 11:57:06 -06:00
|
|
|
|
uint32_t mapping_offset;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_ttm_backend *be;
|
2006-10-11 05:40:35 -06:00
|
|
|
|
enum {
|
|
|
|
|
ttm_bound,
|
|
|
|
|
ttm_evicted,
|
|
|
|
|
ttm_unbound,
|
|
|
|
|
ttm_unpopulated,
|
|
|
|
|
} state;
|
2006-10-11 14:21:01 -06:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2006-08-22 01:47:33 -06:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern struct drm_ttm *drm_ttm_init(struct drm_device *dev, unsigned long size);
|
2007-09-22 05:34:33 -06:00
|
|
|
|
extern int drm_bind_ttm(struct drm_ttm * ttm, struct drm_bo_mem_reg *bo_mem);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern void drm_ttm_unbind(struct drm_ttm * ttm);
|
|
|
|
|
extern void drm_ttm_evict(struct drm_ttm * ttm);
|
|
|
|
|
extern void drm_ttm_fixup_caching(struct drm_ttm * ttm);
|
|
|
|
|
extern struct page *drm_ttm_get_page(struct drm_ttm * ttm, int index);
|
2007-09-22 05:34:33 -06:00
|
|
|
|
extern void drm_ttm_cache_flush(void);
|
|
|
|
|
extern int drm_ttm_populate(struct drm_ttm * ttm);
|
2006-08-22 01:47:33 -06:00
|
|
|
|
|
|
|
|
|
/*
|
2007-03-18 15:23:43 -06:00
|
|
|
|
* Destroy a ttm. The user normally calls drmRmMap or a similar IOCTL to do this,
|
2006-08-22 01:47:33 -06:00
|
|
|
|
* which calls this function iff there are no vmas referencing it anymore. Otherwise it is called
|
|
|
|
|
* when the last vma exits.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern int drm_destroy_ttm(struct drm_ttm * ttm);
|
2006-08-29 02:45:34 -06:00
|
|
|
|
|
2007-02-07 09:25:13 -07:00
|
|
|
|
#define DRM_FLAG_MASKED(_old, _new, _mask) {\
|
|
|
|
|
(_old) ^= (((_old) ^ (_new)) & (_mask)); \
|
|
|
|
|
}
|
2006-08-22 01:47:33 -06:00
|
|
|
|
|
|
|
|
|
#define DRM_TTM_MASK_FLAGS ((1 << PAGE_SHIFT) - 1)
|
|
|
|
|
#define DRM_TTM_MASK_PFN (0xFFFFFFFFU - DRM_TTM_MASK_FLAGS)
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Page flags.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define DRM_TTM_PAGE_UNCACHED 0x01
|
|
|
|
|
#define DRM_TTM_PAGE_USED 0x02
|
|
|
|
|
#define DRM_TTM_PAGE_BOUND 0x04
|
|
|
|
|
#define DRM_TTM_PAGE_PRESENT 0x08
|
2007-01-08 21:51:29 -07:00
|
|
|
|
#define DRM_TTM_PAGE_VMALLOC 0x10
|
2006-08-22 01:47:33 -06:00
|
|
|
|
|
2007-02-14 06:05:40 -07:00
|
|
|
|
/***************************************************
|
|
|
|
|
* Buffer objects. (drm_bo.c, drm_bo_move.c)
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_mem_reg {
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_mm_node *mm_node;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
unsigned long size;
|
|
|
|
|
unsigned long num_pages;
|
|
|
|
|
uint32_t page_alignment;
|
|
|
|
|
uint32_t mem_type;
|
2007-06-12 04:21:38 -06:00
|
|
|
|
uint64_t flags;
|
|
|
|
|
uint64_t mask;
|
2007-09-22 05:34:33 -06:00
|
|
|
|
uint32_t desired_tile_stride;
|
|
|
|
|
uint32_t hw_tile_stride;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
2007-10-09 19:09:30 -06:00
|
|
|
|
enum drm_bo_type {
|
|
|
|
|
drm_bo_type_dc,
|
|
|
|
|
drm_bo_type_user,
|
|
|
|
|
drm_bo_type_kernel, /* for initial kernel allocations */
|
|
|
|
|
};
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_object {
|
2007-02-14 06:05:40 -07:00
|
|
|
|
struct drm_device *dev;
|
2007-07-15 20:48:44 -06:00
|
|
|
|
struct drm_user_object base;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* If there is a possibility that the usage variable is zero,
|
|
|
|
|
* then dev->struct_mutext should be locked before incrementing it.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
atomic_t usage;
|
|
|
|
|
unsigned long buffer_start;
|
2007-07-15 19:30:53 -06:00
|
|
|
|
enum drm_bo_type type;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
unsigned long offset;
|
|
|
|
|
atomic_t mapped;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_mem_reg mem;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
struct list_head lru;
|
|
|
|
|
struct list_head ddestroy;
|
|
|
|
|
|
|
|
|
|
uint32_t fence_type;
|
|
|
|
|
uint32_t fence_class;
|
2007-09-22 05:34:33 -06:00
|
|
|
|
uint32_t new_fence_type;
|
|
|
|
|
uint32_t new_fence_class;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_fence_object *fence;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
uint32_t priv_flags;
|
|
|
|
|
wait_queue_head_t event_queue;
|
|
|
|
|
struct mutex mutex;
|
2007-09-22 05:34:33 -06:00
|
|
|
|
unsigned long num_pages;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
/* For pinned buffers */
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_mm_node *pinned_node;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
uint32_t pinned_mem_type;
|
|
|
|
|
struct list_head pinned_lru;
|
|
|
|
|
|
|
|
|
|
/* For vm */
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_ttm *ttm;
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_map_list map_list;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
uint32_t memory_type;
|
|
|
|
|
unsigned long bus_offset;
|
|
|
|
|
uint32_t vm_flags;
|
|
|
|
|
void *iomap;
|
|
|
|
|
|
|
|
|
|
#ifdef DRM_ODD_MM_COMPAT
|
|
|
|
|
/* dev->struct_mutex only protected. */
|
|
|
|
|
struct list_head vma_list;
|
|
|
|
|
struct list_head p_mm_list;
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
#define _DRM_BO_FLAG_UNFENCED 0x00000001
|
|
|
|
|
#define _DRM_BO_FLAG_EVICTED 0x00000002
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_mem_type_manager {
|
2007-02-14 06:05:40 -07:00
|
|
|
|
int has_type;
|
|
|
|
|
int use_type;
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_mm manager;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
struct list_head lru;
|
|
|
|
|
struct list_head pinned;
|
|
|
|
|
uint32_t flags;
|
|
|
|
|
uint32_t drm_bus_maptype;
|
2007-09-22 05:34:33 -06:00
|
|
|
|
unsigned long gpu_offset;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
unsigned long io_offset;
|
|
|
|
|
unsigned long io_size;
|
|
|
|
|
void *io_addr;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
2007-10-20 08:49:43 -06:00
|
|
|
|
struct drm_bo_lock {
|
|
|
|
|
struct drm_user_object base;
|
|
|
|
|
wait_queue_head_t queue;
|
|
|
|
|
atomic_t write_lock_pending;
|
|
|
|
|
atomic_t readers;
|
|
|
|
|
};
|
|
|
|
|
|
2007-02-14 06:05:40 -07:00
|
|
|
|
#define _DRM_FLAG_MEMTYPE_FIXED 0x00000001 /* Fixed (on-card) PCI memory */
|
|
|
|
|
#define _DRM_FLAG_MEMTYPE_MAPPABLE 0x00000002 /* Memory mappable */
|
|
|
|
|
#define _DRM_FLAG_MEMTYPE_CACHED 0x00000004 /* Cached binding */
|
|
|
|
|
#define _DRM_FLAG_NEEDS_IOREMAP 0x00000008 /* Fixed memory needs ioremap
|
|
|
|
|
before kernel access. */
|
|
|
|
|
#define _DRM_FLAG_MEMTYPE_CMA 0x00000010 /* Can't map aperture */
|
|
|
|
|
#define _DRM_FLAG_MEMTYPE_CSELECT 0x00000020 /* Select caching */
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_buffer_manager {
|
2007-10-20 08:49:43 -06:00
|
|
|
|
struct drm_bo_lock bm_lock;
|
|
|
|
|
struct mutex evict_mutex;
|
2007-02-14 06:05:40 -07:00
|
|
|
|
int nice_mode;
|
|
|
|
|
int initialized;
|
2007-07-15 20:32:51 -06:00
|
|
|
|
struct drm_file *last_to_validate;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_mem_type_manager man[DRM_BO_MEM_TYPES];
|
2007-02-14 06:05:40 -07:00
|
|
|
|
struct list_head unfenced;
|
|
|
|
|
struct list_head ddestroy;
|
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20)
|
|
|
|
|
struct work_struct wq;
|
|
|
|
|
#else
|
|
|
|
|
struct delayed_work wq;
|
|
|
|
|
#endif
|
|
|
|
|
uint32_t fence_type;
|
|
|
|
|
unsigned long cur_pages;
|
|
|
|
|
atomic_t count;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_driver {
|
2007-02-14 06:05:40 -07:00
|
|
|
|
const uint32_t *mem_type_prio;
|
|
|
|
|
const uint32_t *mem_busy_prio;
|
|
|
|
|
uint32_t num_mem_type_prio;
|
|
|
|
|
uint32_t num_mem_busy_prio;
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_ttm_backend *(*create_ttm_backend_entry)
|
2007-02-14 06:05:40 -07:00
|
|
|
|
(struct drm_device * dev);
|
2007-09-22 05:34:33 -06:00
|
|
|
|
int (*fence_type) (struct drm_buffer_object *bo, uint32_t *fclass,
|
|
|
|
|
uint32_t * type);
|
2007-06-12 04:21:38 -06:00
|
|
|
|
int (*invalidate_caches) (struct drm_device * dev, uint64_t flags);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
int (*init_mem_type) (struct drm_device * dev, uint32_t type,
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_mem_type_manager * man);
|
2007-02-16 12:22:24 -07:00
|
|
|
|
uint32_t(*evict_mask) (struct drm_buffer_object *bo);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
int (*move) (struct drm_buffer_object * bo,
|
|
|
|
|
int evict, int no_wait, struct drm_bo_mem_reg * new_mem);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
};
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* buffer objects (drm_bo.c)
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
|
extern int drm_bo_create_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
|
|
|
|
extern int drm_bo_destroy_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
|
|
|
|
extern int drm_bo_map_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
|
|
|
|
extern int drm_bo_unmap_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
|
|
|
|
extern int drm_bo_reference_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
|
|
|
|
extern int drm_bo_unreference_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
|
|
|
|
extern int drm_bo_wait_idle_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
|
|
|
|
extern int drm_bo_info_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
2007-10-17 02:55:21 -06:00
|
|
|
|
extern int drm_bo_setstatus_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
2007-07-19 18:11:11 -06:00
|
|
|
|
extern int drm_mm_init_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
|
|
|
|
extern int drm_mm_takedown_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
|
|
|
|
extern int drm_mm_lock_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
|
|
|
|
extern int drm_mm_unlock_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
2007-10-25 02:12:21 -06:00
|
|
|
|
extern int drm_bo_version_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
extern int drm_bo_driver_finish(struct drm_device *dev);
|
|
|
|
|
extern int drm_bo_driver_init(struct drm_device *dev);
|
|
|
|
|
extern int drm_bo_pci_offset(struct drm_device *dev,
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_mem_reg * mem,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
unsigned long *bus_base,
|
|
|
|
|
unsigned long *bus_offset,
|
|
|
|
|
unsigned long *bus_size);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern int drm_mem_reg_is_pci(struct drm_device *dev, struct drm_bo_mem_reg * mem);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern void drm_bo_usage_deref_locked(struct drm_buffer_object ** bo);
|
2007-09-22 05:34:33 -06:00
|
|
|
|
extern void drm_bo_usage_deref_unlocked(struct drm_buffer_object ** bo);
|
|
|
|
|
extern void drm_putback_buffer_objects(struct drm_device *dev);
|
|
|
|
|
extern int drm_fence_buffer_objects(struct drm_device * dev,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
struct list_head *list,
|
|
|
|
|
uint32_t fence_flags,
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_fence_object * fence,
|
|
|
|
|
struct drm_fence_object ** used_fence);
|
|
|
|
|
extern void drm_bo_add_to_lru(struct drm_buffer_object * bo);
|
2007-09-22 05:34:33 -06:00
|
|
|
|
extern int drm_buffer_object_create(struct drm_device *dev, unsigned long size,
|
|
|
|
|
enum drm_bo_type type, uint64_t mask,
|
|
|
|
|
uint32_t hint, uint32_t page_alignment,
|
|
|
|
|
unsigned long buffer_start,
|
|
|
|
|
struct drm_buffer_object **bo);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern int drm_bo_wait(struct drm_buffer_object * bo, int lazy, int ignore_signals,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
int no_wait);
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern int drm_bo_mem_space(struct drm_buffer_object * bo,
|
|
|
|
|
struct drm_bo_mem_reg * mem, int no_wait);
|
|
|
|
|
extern int drm_bo_move_buffer(struct drm_buffer_object * bo, uint32_t new_mem_flags,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
int no_wait, int move_unfenced);
|
2007-09-22 05:34:33 -06:00
|
|
|
|
extern int drm_bo_clean_mm(struct drm_device * dev, unsigned mem_type);
|
|
|
|
|
extern int drm_bo_init_mm(struct drm_device * dev, unsigned type,
|
2007-08-06 06:11:18 -06:00
|
|
|
|
unsigned long p_offset, unsigned long p_size);
|
2007-09-22 05:34:33 -06:00
|
|
|
|
extern int drm_bo_handle_validate(struct drm_file * file_priv, uint32_t handle,
|
|
|
|
|
uint32_t fence_class, uint64_t flags,
|
|
|
|
|
uint64_t mask, uint32_t hint,
|
2007-10-19 08:28:47 -06:00
|
|
|
|
int use_old_fence_class,
|
2007-09-22 05:34:33 -06:00
|
|
|
|
struct drm_bo_info_rep * rep,
|
|
|
|
|
struct drm_buffer_object **bo_rep);
|
|
|
|
|
extern struct drm_buffer_object *drm_lookup_buffer_object(struct drm_file * file_priv,
|
|
|
|
|
uint32_t handle,
|
|
|
|
|
int check_owner);
|
|
|
|
|
extern int drm_bo_do_validate(struct drm_buffer_object *bo,
|
|
|
|
|
uint64_t flags, uint64_t mask, uint32_t hint,
|
|
|
|
|
uint32_t fence_class,
|
|
|
|
|
int no_wait,
|
|
|
|
|
struct drm_bo_info_rep *rep);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
|
|
|
|
/*
|
2007-09-22 05:34:33 -06:00
|
|
|
|
* Buffer object memory move- and map helpers.
|
2007-02-14 06:05:40 -07:00
|
|
|
|
* drm_bo_move.c
|
|
|
|
|
*/
|
|
|
|
|
|
2007-07-15 21:37:02 -06:00
|
|
|
|
extern int drm_bo_move_ttm(struct drm_buffer_object * bo,
|
|
|
|
|
int evict, int no_wait, struct drm_bo_mem_reg * new_mem);
|
|
|
|
|
extern int drm_bo_move_memcpy(struct drm_buffer_object * bo,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
int evict,
|
2007-07-15 21:37:02 -06:00
|
|
|
|
int no_wait, struct drm_bo_mem_reg * new_mem);
|
|
|
|
|
extern int drm_bo_move_accel_cleanup(struct drm_buffer_object * bo,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
int evict,
|
|
|
|
|
int no_wait,
|
2007-02-15 04:10:33 -07:00
|
|
|
|
uint32_t fence_class,
|
2007-02-14 06:05:40 -07:00
|
|
|
|
uint32_t fence_type,
|
|
|
|
|
uint32_t fence_flags,
|
2007-07-15 21:37:02 -06:00
|
|
|
|
struct drm_bo_mem_reg * new_mem);
|
2007-09-22 05:34:33 -06:00
|
|
|
|
extern int drm_bo_same_page(unsigned long offset, unsigned long offset2);
|
|
|
|
|
extern unsigned long drm_bo_offset_end(unsigned long offset,
|
|
|
|
|
unsigned long end);
|
2007-02-14 06:05:40 -07:00
|
|
|
|
|
2007-09-22 05:34:33 -06:00
|
|
|
|
struct drm_bo_kmap_obj {
|
|
|
|
|
void *virtual;
|
|
|
|
|
struct page *page;
|
|
|
|
|
enum {
|
|
|
|
|
bo_map_iomap,
|
|
|
|
|
bo_map_vmap,
|
|
|
|
|
bo_map_kmap,
|
|
|
|
|
bo_map_premapped,
|
|
|
|
|
} bo_kmap_type;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static inline void *drm_bmo_virtual(struct drm_bo_kmap_obj *map, int *is_iomem)
|
|
|
|
|
{
|
|
|
|
|
*is_iomem = (map->bo_kmap_type == bo_map_iomap ||
|
|
|
|
|
map->bo_kmap_type == bo_map_premapped);
|
|
|
|
|
return map->virtual;
|
|
|
|
|
}
|
|
|
|
|
extern void drm_bo_kunmap(struct drm_bo_kmap_obj *map);
|
|
|
|
|
extern int drm_bo_kmap(struct drm_buffer_object *bo, unsigned long start_page,
|
|
|
|
|
unsigned long num_pages, struct drm_bo_kmap_obj *map);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* drm_regman.c
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
struct drm_reg {
|
|
|
|
|
struct list_head head;
|
|
|
|
|
struct drm_fence_object *fence;
|
|
|
|
|
uint32_t fence_type;
|
|
|
|
|
uint32_t new_fence_type;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct drm_reg_manager {
|
|
|
|
|
struct list_head free;
|
|
|
|
|
struct list_head lru;
|
|
|
|
|
struct list_head unfenced;
|
|
|
|
|
|
|
|
|
|
int (*reg_reusable)(const struct drm_reg *reg, const void *data);
|
|
|
|
|
void (*reg_destroy)(struct drm_reg *reg);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern int drm_regs_alloc(struct drm_reg_manager *manager,
|
|
|
|
|
const void *data,
|
|
|
|
|
uint32_t fence_class,
|
|
|
|
|
uint32_t fence_type,
|
|
|
|
|
int interruptible,
|
|
|
|
|
int no_wait,
|
|
|
|
|
struct drm_reg **reg);
|
|
|
|
|
|
|
|
|
|
extern void drm_regs_fence(struct drm_reg_manager *regs,
|
|
|
|
|
struct drm_fence_object *fence);
|
|
|
|
|
|
|
|
|
|
extern void drm_regs_free(struct drm_reg_manager *manager);
|
|
|
|
|
extern void drm_regs_add(struct drm_reg_manager *manager, struct drm_reg *reg);
|
|
|
|
|
extern void drm_regs_init(struct drm_reg_manager *manager,
|
|
|
|
|
int (*reg_reusable)(const struct drm_reg *,
|
|
|
|
|
const void *),
|
|
|
|
|
void (*reg_destroy)(struct drm_reg *));
|
2007-08-06 06:11:18 -06:00
|
|
|
|
|
2007-10-20 08:49:43 -06:00
|
|
|
|
/*
|
|
|
|
|
* drm_bo_lock.c
|
|
|
|
|
* Simple replacement for the hardware lock on buffer manager init and clean.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern void drm_bo_init_lock(struct drm_bo_lock *lock);
|
|
|
|
|
extern void drm_bo_read_unlock(struct drm_bo_lock *lock);
|
|
|
|
|
extern int drm_bo_read_lock(struct drm_bo_lock *lock);
|
|
|
|
|
extern int drm_bo_write_lock(struct drm_bo_lock *lock,
|
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
|
|
|
|
|
extern int drm_bo_write_unlock(struct drm_bo_lock *lock,
|
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
|
2007-06-14 03:52:38 -06:00
|
|
|
|
#ifdef CONFIG_DEBUG_MUTEXES
|
|
|
|
|
#define DRM_ASSERT_LOCKED(_mutex) \
|
|
|
|
|
BUG_ON(!mutex_is_locked(_mutex) || \
|
|
|
|
|
((_mutex)->owner != current_thread_info()))
|
|
|
|
|
#else
|
|
|
|
|
#define DRM_ASSERT_LOCKED(_mutex)
|
|
|
|
|
#endif
|
2006-08-22 01:47:33 -06:00
|
|
|
|
#endif
|