Rob Clark | c8afe68 | 2013-06-26 12:44:06 -0400 | [diff] [blame] | 1 | /* |
| 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 | |
Rob Clark | 7198e6b | 2013-07-19 12:59:32 -0400 | [diff] [blame] | 21 | #include <linux/reservation.h> |
Rob Clark | c8afe68 | 2013-06-26 12:44:06 -0400 | [diff] [blame] | 22 | #include "msm_drv.h" |
| 23 | |
Rob Clark | 072f1f9 | 2015-03-03 15:04:25 -0500 | [diff] [blame] | 24 | /* Additional internal-use only BO flags: */ |
| 25 | #define MSM_BO_STOLEN 0x10000000 /* try to use stolen/splash memory */ |
| 26 | |
Rob Clark | c8afe68 | 2013-06-26 12:44:06 -0400 | [diff] [blame] | 27 | struct msm_gem_object { |
| 28 | struct drm_gem_object base; |
| 29 | |
| 30 | uint32_t flags; |
| 31 | |
Rob Clark | 4cd33c4 | 2016-05-17 15:44:49 -0400 | [diff] [blame] | 32 | /** |
| 33 | * Advice: are the backing pages purgeable? |
| 34 | */ |
| 35 | uint8_t madv; |
| 36 | |
Rob Clark | 7198e6b | 2013-07-19 12:59:32 -0400 | [diff] [blame] | 37 | /* And object is either: |
| 38 | * inactive - on priv->inactive_list |
| 39 | * active - on one one of the gpu's active_list.. well, at |
| 40 | * least for now we don't have (I don't think) hw sync between |
| 41 | * 2d and 3d one devices which have both, meaning we need to |
| 42 | * block on submit if a bo is already on other ring |
| 43 | * |
| 44 | */ |
Rob Clark | c8afe68 | 2013-06-26 12:44:06 -0400 | [diff] [blame] | 45 | struct list_head mm_list; |
Rob Clark | 7198e6b | 2013-07-19 12:59:32 -0400 | [diff] [blame] | 46 | struct msm_gpu *gpu; /* non-null if active */ |
Rob Clark | 7198e6b | 2013-07-19 12:59:32 -0400 | [diff] [blame] | 47 | |
| 48 | /* Transiently in the process of submit ioctl, objects associated |
| 49 | * with the submit are on submit->bo_list.. this only lasts for |
| 50 | * the duration of the ioctl, so one bo can never be on multiple |
| 51 | * submit lists. |
| 52 | */ |
| 53 | struct list_head submit_entry; |
| 54 | |
Rob Clark | c8afe68 | 2013-06-26 12:44:06 -0400 | [diff] [blame] | 55 | struct page **pages; |
| 56 | struct sg_table *sgt; |
| 57 | void *vaddr; |
| 58 | |
| 59 | struct { |
| 60 | // XXX |
| 61 | uint32_t iova; |
| 62 | } domain[NUM_DOMAINS]; |
Rob Clark | 7198e6b | 2013-07-19 12:59:32 -0400 | [diff] [blame] | 63 | |
| 64 | /* normally (resv == &_resv) except for imported bo's */ |
| 65 | struct reservation_object *resv; |
| 66 | struct reservation_object _resv; |
Rob Clark | 871d812 | 2013-11-16 12:56:06 -0500 | [diff] [blame] | 67 | |
| 68 | /* For physically contiguous buffers. Used when we don't have |
Rob Clark | 072f1f9 | 2015-03-03 15:04:25 -0500 | [diff] [blame] | 69 | * an IOMMU. Also used for stolen/splashscreen buffer. |
Rob Clark | 871d812 | 2013-11-16 12:56:06 -0500 | [diff] [blame] | 70 | */ |
| 71 | struct drm_mm_node *vram_node; |
Rob Clark | c8afe68 | 2013-06-26 12:44:06 -0400 | [diff] [blame] | 72 | }; |
| 73 | #define to_msm_bo(x) container_of(x, struct msm_gem_object, base) |
| 74 | |
Rob Clark | 7198e6b | 2013-07-19 12:59:32 -0400 | [diff] [blame] | 75 | static inline bool is_active(struct msm_gem_object *msm_obj) |
| 76 | { |
| 77 | return msm_obj->gpu != NULL; |
| 78 | } |
| 79 | |
Rob Clark | 6820939 | 2016-05-17 16:19:32 -0400 | [diff] [blame^] | 80 | static inline bool is_purgeable(struct msm_gem_object *msm_obj) |
| 81 | { |
| 82 | return (msm_obj->madv == MSM_MADV_DONTNEED) && msm_obj->sgt && |
| 83 | !msm_obj->base.dma_buf && !msm_obj->base.import_attach; |
| 84 | } |
| 85 | |
Rob Clark | 7198e6b | 2013-07-19 12:59:32 -0400 | [diff] [blame] | 86 | #define MAX_CMDS 4 |
| 87 | |
| 88 | /* Created per submit-ioctl, to track bo's and cmdstream bufs, etc, |
| 89 | * associated with the cmdstream submission for synchronization (and |
| 90 | * make it easier to unwind when things go wrong, etc). This only |
| 91 | * lasts for the duration of the submit-ioctl. |
| 92 | */ |
| 93 | struct msm_gem_submit { |
| 94 | struct drm_device *dev; |
| 95 | struct msm_gpu *gpu; |
Rob Clark | 1a370be | 2015-06-07 13:46:04 -0400 | [diff] [blame] | 96 | struct list_head node; /* node in gpu submit_list */ |
Rob Clark | 7198e6b | 2013-07-19 12:59:32 -0400 | [diff] [blame] | 97 | struct list_head bo_list; |
| 98 | struct ww_acquire_ctx ticket; |
Rob Clark | b6295f9 | 2016-03-15 18:26:28 -0400 | [diff] [blame] | 99 | struct fence *fence; |
Rob Clark | 4816b62 | 2016-05-03 10:10:15 -0400 | [diff] [blame] | 100 | struct pid *pid; /* submitting process */ |
Rob Clark | 340faef | 2016-03-14 13:56:37 -0400 | [diff] [blame] | 101 | bool valid; /* true if no cmdstream patching needed */ |
Rob Clark | 7198e6b | 2013-07-19 12:59:32 -0400 | [diff] [blame] | 102 | unsigned int nr_cmds; |
| 103 | unsigned int nr_bos; |
| 104 | struct { |
| 105 | uint32_t type; |
| 106 | uint32_t size; /* in dwords */ |
| 107 | uint32_t iova; |
Rob Clark | a7d3c95 | 2014-05-30 14:47:38 -0400 | [diff] [blame] | 108 | uint32_t idx; /* cmdstream buffer idx in bos[] */ |
Rob Clark | 7198e6b | 2013-07-19 12:59:32 -0400 | [diff] [blame] | 109 | } cmd[MAX_CMDS]; |
| 110 | struct { |
| 111 | uint32_t flags; |
| 112 | struct msm_gem_object *obj; |
| 113 | uint32_t iova; |
| 114 | } bos[0]; |
| 115 | }; |
| 116 | |
Rob Clark | c8afe68 | 2013-06-26 12:44:06 -0400 | [diff] [blame] | 117 | #endif /* __MSM_GEM_H__ */ |