1 /*
2  * Copyright 2018 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  */
23 #ifndef __AMDGPU_BO_LIST_H__
24 #define __AMDGPU_BO_LIST_H__
25 
26 #include <drm/ttm/ttm_execbuf_util.h>
27 #include <drm/amdgpu_drm.h>
28 
29 struct amdgpu_device;
30 struct amdgpu_bo;
31 struct amdgpu_bo_va;
32 struct amdgpu_fpriv;
33 
34 struct amdgpu_bo_list_entry {
35 	struct amdgpu_bo		*robj;
36 	struct ttm_validate_buffer	tv;
37 	struct amdgpu_bo_va		*bo_va;
38 	uint32_t			priority;
39 	struct page			**user_pages;
40 	int				user_invalidated;
41 };
42 
43 struct amdgpu_bo_list {
44 	struct rcu_head rhead;
45 	struct kref refcount;
46 	struct amdgpu_bo *gds_obj;
47 	struct amdgpu_bo *gws_obj;
48 	struct amdgpu_bo *oa_obj;
49 	unsigned first_userptr;
50 	unsigned num_entries;
51 };
52 
53 int amdgpu_bo_list_get(struct amdgpu_fpriv *fpriv, int id,
54 		       struct amdgpu_bo_list **result);
55 void amdgpu_bo_list_get_list(struct amdgpu_bo_list *list,
56 			     struct list_head *validated);
57 void amdgpu_bo_list_put(struct amdgpu_bo_list *list);
58 int amdgpu_bo_create_list_entry_array(struct drm_amdgpu_bo_list_in *in,
59 				      struct drm_amdgpu_bo_list_entry **info_param);
60 
61 int amdgpu_bo_list_create(struct amdgpu_device *adev,
62 				 struct drm_file *filp,
63 				 struct drm_amdgpu_bo_list_entry *info,
64 				 unsigned num_entries,
65 				 struct amdgpu_bo_list **list);
66 
67 static inline struct amdgpu_bo_list_entry *
68 amdgpu_bo_list_array_entry(struct amdgpu_bo_list *list, unsigned index)
69 {
70 	struct amdgpu_bo_list_entry *array = (void *)&list[1];
71 
72 	return &array[index];
73 }
74 
75 #define amdgpu_bo_list_for_each_entry(e, list) \
76 	for (e = amdgpu_bo_list_array_entry(list, 0); \
77 	     e != amdgpu_bo_list_array_entry(list, (list)->num_entries); \
78 	     ++e)
79 
80 #define amdgpu_bo_list_for_each_userptr_entry(e, list) \
81 	for (e = amdgpu_bo_list_array_entry(list, (list)->first_userptr); \
82 	     e != amdgpu_bo_list_array_entry(list, (list)->num_entries); \
83 	     ++e)
84 
85 #endif
86