1 /**************************************************************************
3 * Copyright © 2012 VMware, Inc., Palo Alto, CA., USA
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
28 #ifndef _VMWGFX_RESOURCE_PRIV_H_
29 #define _VMWGFX_RESOURCE_PRIV_H_
31 #include "vmwgfx_drv.h"
34 * struct vmw_user_resource_conv - Identify a derived user-exported resource
35 * type and provide a function to convert its ttm_base_object pointer to
36 * a struct vmw_resource
38 struct vmw_user_resource_conv
{
39 enum ttm_object_type object_type
;
40 struct vmw_resource
*(*base_obj_to_res
)(struct ttm_base_object
*base
);
41 void (*res_free
) (struct vmw_resource
*res
);
45 * struct vmw_res_func - members and functions common for a resource type
47 * @res_type: Enum that identifies the lru list to use for eviction.
48 * @needs_backup: Whether the resource is guest-backed and needs
49 * persistent buffer storage.
50 * @type_name: String that identifies the resource type.
51 * @backup_placement: TTM placement for backup buffers.
52 * @may_evict Whether the resource may be evicted.
53 * @create: Create a hardware resource.
54 * @destroy: Destroy a hardware resource.
55 * @bind: Bind a hardware resource to persistent buffer storage.
56 * @unbind: Unbind a hardware resource from persistent
61 enum vmw_res_type res_type
;
63 const char *type_name
;
64 struct ttm_placement
*backup_placement
;
67 int (*create
) (struct vmw_resource
*res
);
68 int (*destroy
) (struct vmw_resource
*res
);
69 int (*bind
) (struct vmw_resource
*res
,
70 struct ttm_validate_buffer
*val_buf
);
71 int (*unbind
) (struct vmw_resource
*res
,
73 struct ttm_validate_buffer
*val_buf
);
76 int vmw_resource_alloc_id(struct vmw_resource
*res
);
77 void vmw_resource_release_id(struct vmw_resource
*res
);
78 int vmw_resource_init(struct vmw_private
*dev_priv
, struct vmw_resource
*res
,
80 void (*res_free
) (struct vmw_resource
*res
),
81 const struct vmw_res_func
*func
);
82 void vmw_resource_activate(struct vmw_resource
*res
,
83 void (*hw_destroy
) (struct vmw_resource
*));