blob: 4238f8d8541d919ff43ab10a78e8ce4a68b6e284 [file] [log] [blame]
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001/*
2 * Copyright (C) 2015 Etnaviv Project
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published by
6 * the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#ifndef __ETNAVIV_GEM_H__
18#define __ETNAVIV_GEM_H__
19
20#include <linux/reservation.h>
21#include "etnaviv_drv.h"
22
Lucas Stach6e2b98c2017-03-22 13:00:53 +010023struct dma_fence;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +010024struct etnaviv_gem_ops;
25struct etnaviv_gem_object;
26
27struct etnaviv_gem_userptr {
28 uintptr_t ptr;
Lucas Stachb2295c22017-11-17 14:16:10 +010029 struct mm_struct *mm;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +010030 bool ro;
31};
32
33struct etnaviv_vram_mapping {
34 struct list_head obj_node;
35 struct list_head scan_node;
36 struct list_head mmu_node;
37 struct etnaviv_gem_object *object;
38 struct etnaviv_iommu *mmu;
39 struct drm_mm_node vram_node;
40 unsigned int use;
41 u32 iova;
42};
43
44struct etnaviv_gem_object {
45 struct drm_gem_object base;
46 const struct etnaviv_gem_ops *ops;
47 struct mutex lock;
48
49 u32 flags;
50
51 struct list_head gem_node;
52 struct etnaviv_gpu *gpu; /* non-null if active */
53 atomic_t gpu_active;
54 u32 access;
55
56 struct page **pages;
57 struct sg_table *sgt;
58 void *vaddr;
59
60 /* normally (resv == &_resv) except for imported bo's */
61 struct reservation_object *resv;
62 struct reservation_object _resv;
63
64 struct list_head vram_list;
65
66 /* cache maintenance */
67 u32 last_cpu_prep_op;
68
69 struct etnaviv_gem_userptr userptr;
70};
71
72static inline
73struct etnaviv_gem_object *to_etnaviv_bo(struct drm_gem_object *obj)
74{
75 return container_of(obj, struct etnaviv_gem_object, base);
76}
77
78struct etnaviv_gem_ops {
79 int (*get_pages)(struct etnaviv_gem_object *);
80 void (*release)(struct etnaviv_gem_object *);
Lucas Stacha0a5ab32016-01-25 15:47:28 +010081 void *(*vmap)(struct etnaviv_gem_object *);
Lucas Stacha10e2bde2016-04-27 12:27:02 +020082 int (*mmap)(struct etnaviv_gem_object *, struct vm_area_struct *);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +010083};
84
85static inline bool is_active(struct etnaviv_gem_object *etnaviv_obj)
86{
87 return atomic_read(&etnaviv_obj->gpu_active) != 0;
88}
89
90#define MAX_CMDS 4
91
Russell King8779aa82016-01-21 15:20:55 +000092struct etnaviv_gem_submit_bo {
93 u32 flags;
94 struct etnaviv_gem_object *obj;
95 struct etnaviv_vram_mapping *mapping;
96};
97
The etnaviv authorsa8c21a52015-12-03 18:21:29 +010098/* Created per submit-ioctl, to track bo's and cmdstream bufs, etc,
99 * associated with the cmdstream submission for synchronization (and
100 * make it easier to unwind when things go wrong, etc). This only
101 * lasts for the duration of the submit-ioctl.
102 */
103struct etnaviv_gem_submit {
Lucas Stache0329e62017-11-24 11:36:03 +0100104 struct kref refcount;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100105 struct etnaviv_gpu *gpu;
Lucas Stach9efabd72017-11-23 18:02:43 +0100106 struct dma_fence *out_fence, *in_fence;
Lucas Stachf4a43812017-06-27 16:02:51 +0200107 u32 flags;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100108 unsigned int nr_bos;
Russell King8779aa82016-01-21 15:20:55 +0000109 struct etnaviv_gem_submit_bo bos[0];
Lucas Stachf4a43812017-06-27 16:02:51 +0200110 /* No new members here, the previous one is variable-length! */
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100111};
112
Lucas Stache0329e62017-11-24 11:36:03 +0100113void etnaviv_submit_put(struct etnaviv_gem_submit * submit);
114
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100115int etnaviv_gem_wait_bo(struct etnaviv_gpu *gpu, struct drm_gem_object *obj,
116 struct timespec *timeout);
117int etnaviv_gem_new_private(struct drm_device *dev, size_t size, u32 flags,
118 struct reservation_object *robj, const struct etnaviv_gem_ops *ops,
119 struct etnaviv_gem_object **res);
Lucas Stach54f09282017-11-17 12:17:14 +0100120void etnaviv_gem_obj_add(struct drm_device *dev, struct drm_gem_object *obj);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100121struct page **etnaviv_gem_get_pages(struct etnaviv_gem_object *obj);
122void etnaviv_gem_put_pages(struct etnaviv_gem_object *obj);
123
Russell Kingb6325f42016-01-21 15:20:50 +0000124struct etnaviv_vram_mapping *etnaviv_gem_mapping_get(
125 struct drm_gem_object *obj, struct etnaviv_gpu *gpu);
126void etnaviv_gem_mapping_reference(struct etnaviv_vram_mapping *mapping);
127void etnaviv_gem_mapping_unreference(struct etnaviv_vram_mapping *mapping);
128
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100129#endif /* __ETNAVIV_GEM_H__ */