blob: 112eb63b59087df83eb34409bfdd0aa6798fdbb9 [file] [log] [blame]
Rob Clarkc8afe682013-06-26 12:44:06 -04001/*
2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef __MSM_GEM_H__
19#define __MSM_GEM_H__
20
Jordan Crouseee546cd2017-03-07 10:02:52 -070021#include <linux/kref.h>
Rob Clark7198e6b2013-07-19 12:59:32 -040022#include <linux/reservation.h>
Rob Clarkc8afe682013-06-26 12:44:06 -040023#include "msm_drv.h"
24
Rob Clark072f1f92015-03-03 15:04:25 -050025/* Additional internal-use only BO flags: */
26#define MSM_BO_STOLEN 0x10000000 /* try to use stolen/splash memory */
27
Rob Clark667ce332016-09-28 19:58:32 -040028struct msm_gem_address_space {
29 const char *name;
30 /* NOTE: mm managed at the page level, size is in # of pages
31 * and position mm_node->start is in # of pages:
32 */
33 struct drm_mm mm;
34 struct msm_mmu *mmu;
Jordan Crouseee546cd2017-03-07 10:02:52 -070035 struct kref kref;
Rob Clark667ce332016-09-28 19:58:32 -040036};
37
38struct msm_gem_vma {
39 struct drm_mm_node node;
40 uint64_t iova;
Rob Clark4b85f7f2017-06-13 13:54:13 -040041 struct msm_gem_address_space *aspace;
42 struct list_head list; /* node in msm_gem_object::vmas */
Rob Clark667ce332016-09-28 19:58:32 -040043};
44
Rob Clarkc8afe682013-06-26 12:44:06 -040045struct msm_gem_object {
46 struct drm_gem_object base;
47
48 uint32_t flags;
49
Rob Clark4cd33c42016-05-17 15:44:49 -040050 /**
51 * Advice: are the backing pages purgeable?
52 */
53 uint8_t madv;
54
Rob Clarke1e9db22016-05-27 11:16:28 -040055 /**
56 * count of active vmap'ing
57 */
58 uint8_t vmap_count;
59
Rob Clark7198e6b2013-07-19 12:59:32 -040060 /* And object is either:
61 * inactive - on priv->inactive_list
62 * active - on one one of the gpu's active_list.. well, at
63 * least for now we don't have (I don't think) hw sync between
64 * 2d and 3d one devices which have both, meaning we need to
65 * block on submit if a bo is already on other ring
66 *
67 */
Rob Clarkc8afe682013-06-26 12:44:06 -040068 struct list_head mm_list;
Rob Clark7198e6b2013-07-19 12:59:32 -040069 struct msm_gpu *gpu; /* non-null if active */
Rob Clark7198e6b2013-07-19 12:59:32 -040070
71 /* Transiently in the process of submit ioctl, objects associated
72 * with the submit are on submit->bo_list.. this only lasts for
73 * the duration of the ioctl, so one bo can never be on multiple
74 * submit lists.
75 */
76 struct list_head submit_entry;
77
Rob Clarkc8afe682013-06-26 12:44:06 -040078 struct page **pages;
79 struct sg_table *sgt;
80 void *vaddr;
81
Rob Clark4b85f7f2017-06-13 13:54:13 -040082 struct list_head vmas; /* list of msm_gem_vma */
Rob Clark7198e6b2013-07-19 12:59:32 -040083
84 /* normally (resv == &_resv) except for imported bo's */
85 struct reservation_object *resv;
86 struct reservation_object _resv;
Rob Clark871d8122013-11-16 12:56:06 -050087
88 /* For physically contiguous buffers. Used when we don't have
Rob Clark072f1f92015-03-03 15:04:25 -050089 * an IOMMU. Also used for stolen/splashscreen buffer.
Rob Clark871d8122013-11-16 12:56:06 -050090 */
91 struct drm_mm_node *vram_node;
Rob Clarkc8afe682013-06-26 12:44:06 -040092};
93#define to_msm_bo(x) container_of(x, struct msm_gem_object, base)
94
Rob Clark7198e6b2013-07-19 12:59:32 -040095static inline bool is_active(struct msm_gem_object *msm_obj)
96{
97 return msm_obj->gpu != NULL;
98}
99
Rob Clark68209392016-05-17 16:19:32 -0400100static inline bool is_purgeable(struct msm_gem_object *msm_obj)
101{
102 return (msm_obj->madv == MSM_MADV_DONTNEED) && msm_obj->sgt &&
103 !msm_obj->base.dma_buf && !msm_obj->base.import_attach;
104}
105
Rob Clarke1e9db22016-05-27 11:16:28 -0400106static inline bool is_vunmapable(struct msm_gem_object *msm_obj)
107{
108 return (msm_obj->vmap_count == 0) && msm_obj->vaddr;
109}
110
Rob Clark7198e6b2013-07-19 12:59:32 -0400111/* Created per submit-ioctl, to track bo's and cmdstream bufs, etc,
112 * associated with the cmdstream submission for synchronization (and
113 * make it easier to unwind when things go wrong, etc). This only
114 * lasts for the duration of the submit-ioctl.
115 */
116struct msm_gem_submit {
117 struct drm_device *dev;
118 struct msm_gpu *gpu;
Rob Clark1a370be2015-06-07 13:46:04 -0400119 struct list_head node; /* node in gpu submit_list */
Rob Clark7198e6b2013-07-19 12:59:32 -0400120 struct list_head bo_list;
121 struct ww_acquire_ctx ticket;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100122 struct dma_fence *fence;
Rob Clark4816b622016-05-03 10:10:15 -0400123 struct pid *pid; /* submitting process */
Rob Clark340faef2016-03-14 13:56:37 -0400124 bool valid; /* true if no cmdstream patching needed */
Rob Clark7198e6b2013-07-19 12:59:32 -0400125 unsigned int nr_cmds;
126 unsigned int nr_bos;
127 struct {
128 uint32_t type;
129 uint32_t size; /* in dwords */
Rob Clark78babc12016-11-11 12:06:46 -0500130 uint64_t iova;
Rob Clarka7d3c952014-05-30 14:47:38 -0400131 uint32_t idx; /* cmdstream buffer idx in bos[] */
Rob Clark6b597ce2016-06-01 14:17:40 -0400132 } *cmd; /* array of size nr_cmds */
Rob Clark7198e6b2013-07-19 12:59:32 -0400133 struct {
134 uint32_t flags;
135 struct msm_gem_object *obj;
Rob Clark78babc12016-11-11 12:06:46 -0500136 uint64_t iova;
Rob Clark7198e6b2013-07-19 12:59:32 -0400137 } bos[0];
138};
139
Rob Clarkc8afe682013-06-26 12:44:06 -0400140#endif /* __MSM_GEM_H__ */