1 // SPDX-License-Identifier: GPL-2.0 OR MIT
2 /**************************************************************************
4 * Copyright © 2018-2019 VMware, Inc., Palo Alto, CA., USA
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
22 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
23 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
25 * USE OR OTHER DEALINGS IN THE SOFTWARE.
27 **************************************************************************/
29 #include <drm/ttm/ttm_placement.h>
31 #include "vmwgfx_drv.h"
32 #include "vmwgfx_resource_priv.h"
33 #include "vmwgfx_binding.h"
36 * struct vmw_dx_streamoutput - Streamoutput resource metadata.
37 * @res: Base resource struct.
38 * @ctx: Non-refcounted context to which @res belong.
39 * @cotable: Refcounted cotable holding this Streamoutput.
40 * @cotable_head: List head for cotable-so_res list.
41 * @id: User-space provided identifier.
42 * @size: User-space provided mob size.
43 * @committed: Whether streamoutput is actually created or pending creation.
45 struct vmw_dx_streamoutput
{
46 struct vmw_resource res
;
47 struct vmw_resource
*ctx
;
48 struct vmw_resource
*cotable
;
49 struct list_head cotable_head
;
55 static int vmw_dx_streamoutput_create(struct vmw_resource
*res
);
56 static int vmw_dx_streamoutput_bind(struct vmw_resource
*res
,
57 struct ttm_validate_buffer
*val_buf
);
58 static int vmw_dx_streamoutput_unbind(struct vmw_resource
*res
, bool readback
,
59 struct ttm_validate_buffer
*val_buf
);
60 static void vmw_dx_streamoutput_commit_notify(struct vmw_resource
*res
,
61 enum vmw_cmdbuf_res_state state
);
63 static size_t vmw_streamoutput_size
;
65 static const struct vmw_res_func vmw_dx_streamoutput_func
= {
66 .res_type
= vmw_res_streamoutput
,
69 .type_name
= "DX streamoutput",
70 .backup_placement
= &vmw_mob_placement
,
71 .create
= vmw_dx_streamoutput_create
,
72 .destroy
= NULL
, /* Command buffer managed resource. */
73 .bind
= vmw_dx_streamoutput_bind
,
74 .unbind
= vmw_dx_streamoutput_unbind
,
75 .commit_notify
= vmw_dx_streamoutput_commit_notify
,
78 static inline struct vmw_dx_streamoutput
*
79 vmw_res_to_dx_streamoutput(struct vmw_resource
*res
)
81 return container_of(res
, struct vmw_dx_streamoutput
, res
);
85 * vmw_dx_streamoutput_unscrub - Reattach the MOB to streamoutput.
86 * @res: The streamoutput resource.
88 * Return: 0 on success, negative error code on failure.
90 static int vmw_dx_streamoutput_unscrub(struct vmw_resource
*res
)
92 struct vmw_dx_streamoutput
*so
= vmw_res_to_dx_streamoutput(res
);
93 struct vmw_private
*dev_priv
= res
->dev_priv
;
95 SVGA3dCmdHeader header
;
96 SVGA3dCmdDXBindStreamOutput body
;
99 if (!list_empty(&so
->cotable_head
) || !so
->committed
)
102 cmd
= VMW_FIFO_RESERVE_DX(dev_priv
, sizeof(*cmd
), so
->ctx
->id
);
106 cmd
->header
.id
= SVGA_3D_CMD_DX_BIND_STREAMOUTPUT
;
107 cmd
->header
.size
= sizeof(cmd
->body
);
108 cmd
->body
.soid
= so
->id
;
109 cmd
->body
.mobid
= res
->backup
->base
.mem
.start
;
110 cmd
->body
.offsetInBytes
= res
->backup_offset
;
111 cmd
->body
.sizeInBytes
= so
->size
;
112 vmw_fifo_commit(dev_priv
, sizeof(*cmd
));
114 vmw_cotable_add_resource(so
->cotable
, &so
->cotable_head
);
119 static int vmw_dx_streamoutput_create(struct vmw_resource
*res
)
121 struct vmw_private
*dev_priv
= res
->dev_priv
;
122 struct vmw_dx_streamoutput
*so
= vmw_res_to_dx_streamoutput(res
);
125 WARN_ON_ONCE(!so
->committed
);
127 if (vmw_resource_mob_attached(res
)) {
128 mutex_lock(&dev_priv
->binding_mutex
);
129 ret
= vmw_dx_streamoutput_unscrub(res
);
130 mutex_unlock(&dev_priv
->binding_mutex
);
138 static int vmw_dx_streamoutput_bind(struct vmw_resource
*res
,
139 struct ttm_validate_buffer
*val_buf
)
141 struct vmw_private
*dev_priv
= res
->dev_priv
;
142 struct ttm_buffer_object
*bo
= val_buf
->bo
;
145 if (WARN_ON(bo
->mem
.mem_type
!= VMW_PL_MOB
))
148 mutex_lock(&dev_priv
->binding_mutex
);
149 ret
= vmw_dx_streamoutput_unscrub(res
);
150 mutex_unlock(&dev_priv
->binding_mutex
);
156 * vmw_dx_streamoutput_scrub - Unbind the MOB from streamoutput.
157 * @res: The streamoutput resource.
159 * Return: 0 on success, negative error code on failure.
161 static int vmw_dx_streamoutput_scrub(struct vmw_resource
*res
)
163 struct vmw_private
*dev_priv
= res
->dev_priv
;
164 struct vmw_dx_streamoutput
*so
= vmw_res_to_dx_streamoutput(res
);
166 SVGA3dCmdHeader header
;
167 SVGA3dCmdDXBindStreamOutput body
;
170 if (list_empty(&so
->cotable_head
))
173 WARN_ON_ONCE(!so
->committed
);
175 cmd
= VMW_FIFO_RESERVE_DX(dev_priv
, sizeof(*cmd
), so
->ctx
->id
);
179 cmd
->header
.id
= SVGA_3D_CMD_DX_BIND_STREAMOUTPUT
;
180 cmd
->header
.size
= sizeof(cmd
->body
);
181 cmd
->body
.soid
= res
->id
;
182 cmd
->body
.mobid
= SVGA3D_INVALID_ID
;
183 cmd
->body
.offsetInBytes
= 0;
184 cmd
->body
.sizeInBytes
= so
->size
;
185 vmw_fifo_commit(dev_priv
, sizeof(*cmd
));
188 list_del_init(&so
->cotable_head
);
193 static int vmw_dx_streamoutput_unbind(struct vmw_resource
*res
, bool readback
,
194 struct ttm_validate_buffer
*val_buf
)
196 struct vmw_private
*dev_priv
= res
->dev_priv
;
197 struct vmw_fence_obj
*fence
;
200 if (WARN_ON(res
->backup
->base
.mem
.mem_type
!= VMW_PL_MOB
))
203 mutex_lock(&dev_priv
->binding_mutex
);
204 ret
= vmw_dx_streamoutput_scrub(res
);
205 mutex_unlock(&dev_priv
->binding_mutex
);
210 (void) vmw_execbuf_fence_commands(NULL
, dev_priv
, &fence
, NULL
);
211 vmw_bo_fence_single(val_buf
->bo
, fence
);
214 vmw_fence_obj_unreference(&fence
);
219 static void vmw_dx_streamoutput_commit_notify(struct vmw_resource
*res
,
220 enum vmw_cmdbuf_res_state state
)
222 struct vmw_private
*dev_priv
= res
->dev_priv
;
223 struct vmw_dx_streamoutput
*so
= vmw_res_to_dx_streamoutput(res
);
225 if (state
== VMW_CMDBUF_RES_ADD
) {
226 mutex_lock(&dev_priv
->binding_mutex
);
227 vmw_cotable_add_resource(so
->cotable
, &so
->cotable_head
);
228 so
->committed
= true;
230 mutex_unlock(&dev_priv
->binding_mutex
);
232 mutex_lock(&dev_priv
->binding_mutex
);
233 list_del_init(&so
->cotable_head
);
234 so
->committed
= false;
236 mutex_unlock(&dev_priv
->binding_mutex
);
241 * vmw_dx_streamoutput_lookup - Do a streamoutput resource lookup by user key.
242 * @man: Command buffer managed resource manager for current context.
243 * @user_key: User-space identifier for lookup.
245 * Return: Valid refcounted vmw_resource on success, error pointer on failure.
247 struct vmw_resource
*
248 vmw_dx_streamoutput_lookup(struct vmw_cmdbuf_res_manager
*man
,
251 return vmw_cmdbuf_res_lookup(man
, vmw_cmdbuf_res_streamoutput
,
255 static void vmw_dx_streamoutput_res_free(struct vmw_resource
*res
)
257 struct vmw_private
*dev_priv
= res
->dev_priv
;
258 struct vmw_dx_streamoutput
*so
= vmw_res_to_dx_streamoutput(res
);
260 vmw_resource_unreference(&so
->cotable
);
262 ttm_mem_global_free(vmw_mem_glob(dev_priv
), vmw_streamoutput_size
);
265 static void vmw_dx_streamoutput_hw_destroy(struct vmw_resource
*res
)
267 /* Destroyed by user-space cmd buf or as part of context takedown. */
272 * vmw_dx_streamoutput_add - Add a streamoutput as a cmd buf managed resource.
273 * @man: Command buffer managed resource manager for current context.
274 * @ctx: Pointer to context resource.
275 * @user_key: The identifier for this streamoutput.
276 * @list: The list of staged command buffer managed resources.
278 * Return: 0 on success, negative error code on failure.
280 int vmw_dx_streamoutput_add(struct vmw_cmdbuf_res_manager
*man
,
281 struct vmw_resource
*ctx
, u32 user_key
,
282 struct list_head
*list
)
284 struct vmw_dx_streamoutput
*so
;
285 struct vmw_resource
*res
;
286 struct vmw_private
*dev_priv
= ctx
->dev_priv
;
287 struct ttm_operation_ctx ttm_opt_ctx
= {
288 .interruptible
= true,
293 if (!vmw_streamoutput_size
)
294 vmw_streamoutput_size
= ttm_round_pot(sizeof(*so
));
296 ret
= ttm_mem_global_alloc(vmw_mem_glob(dev_priv
),
297 vmw_streamoutput_size
, &ttm_opt_ctx
);
299 if (ret
!= -ERESTARTSYS
)
300 DRM_ERROR("Out of graphics memory for streamout.\n");
304 so
= kmalloc(sizeof(*so
), GFP_KERNEL
);
306 ttm_mem_global_free(vmw_mem_glob(dev_priv
),
307 vmw_streamoutput_size
);
313 so
->cotable
= vmw_resource_reference
314 (vmw_context_cotable(ctx
, SVGA_COTABLE_STREAMOUTPUT
));
316 so
->committed
= false;
317 INIT_LIST_HEAD(&so
->cotable_head
);
318 ret
= vmw_resource_init(dev_priv
, res
, true,
319 vmw_dx_streamoutput_res_free
,
320 &vmw_dx_streamoutput_func
);
322 goto out_resource_init
;
324 ret
= vmw_cmdbuf_res_add(man
, vmw_cmdbuf_res_streamoutput
, user_key
,
327 goto out_resource_init
;
330 res
->hw_destroy
= vmw_dx_streamoutput_hw_destroy
;
333 vmw_resource_unreference(&res
);
339 * vmw_dx_streamoutput_set_size - Sets streamoutput mob size in res struct.
340 * @res: The streamoutput res for which need to set size.
341 * @size: The size provided by user-space to set.
343 void vmw_dx_streamoutput_set_size(struct vmw_resource
*res
, u32 size
)
345 struct vmw_dx_streamoutput
*so
= vmw_res_to_dx_streamoutput(res
);
351 * vmw_dx_streamoutput_remove - Stage streamoutput for removal.
352 * @man: Command buffer managed resource manager for current context.
353 * @user_key: The identifier for this streamoutput.
354 * @list: The list of staged command buffer managed resources.
356 * Return: 0 on success, negative error code on failure.
358 int vmw_dx_streamoutput_remove(struct vmw_cmdbuf_res_manager
*man
,
360 struct list_head
*list
)
362 struct vmw_resource
*r
;
364 return vmw_cmdbuf_res_remove(man
, vmw_cmdbuf_res_streamoutput
,
365 (u32
)user_key
, list
, &r
);
369 * vmw_dx_streamoutput_cotable_list_scrub - cotable unbind_func callback.
370 * @dev_priv: Device private.
371 * @list: The list of cotable resources.
372 * @readback: Whether the call was part of a readback unbind.
374 void vmw_dx_streamoutput_cotable_list_scrub(struct vmw_private
*dev_priv
,
375 struct list_head
*list
,
378 struct vmw_dx_streamoutput
*entry
, *next
;
380 lockdep_assert_held_once(&dev_priv
->binding_mutex
);
382 list_for_each_entry_safe(entry
, next
, list
, cotable_head
) {
383 WARN_ON(vmw_dx_streamoutput_scrub(&entry
->res
));
385 entry
->committed
=false;