drm/i915: Remove useless checks from primary enable/disable
[deliverable/linux.git] / drivers / gpu / drm / i915 / i915_gem_gtt.h
CommitLineData
0260c420
BW
1/*
2 * Copyright © 2014 Intel Corporation
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 (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Please try to maintain the following order within this file unless it makes
24 * sense to do otherwise. From top to bottom:
25 * 1. typedefs
26 * 2. #defines, and macros
27 * 3. structure definitions
28 * 4. function prototypes
29 *
30 * Within each section, please try to order by generation in ascending order,
31 * from top to bottom (ie. gen6 on the top, gen8 on the bottom).
32 */
33
34#ifndef __I915_GEM_GTT_H__
35#define __I915_GEM_GTT_H__
36
37typedef uint32_t gen6_gtt_pte_t;
38typedef uint64_t gen8_gtt_pte_t;
39typedef gen8_gtt_pte_t gen8_ppgtt_pde_t;
40
41#define gtt_total_entries(gtt) ((gtt).base.total >> PAGE_SHIFT)
42
43#define I915_PPGTT_PT_ENTRIES (PAGE_SIZE / sizeof(gen6_gtt_pte_t))
44/* gen6-hsw has bit 11-4 for physical addr bit 39-32 */
45#define GEN6_GTT_ADDR_ENCODE(addr) ((addr) | (((addr) >> 28) & 0xff0))
46#define GEN6_PTE_ADDR_ENCODE(addr) GEN6_GTT_ADDR_ENCODE(addr)
47#define GEN6_PDE_ADDR_ENCODE(addr) GEN6_GTT_ADDR_ENCODE(addr)
48#define GEN6_PTE_CACHE_LLC (2 << 1)
49#define GEN6_PTE_UNCACHED (1 << 1)
50#define GEN6_PTE_VALID (1 << 0)
51
52#define GEN6_PPGTT_PD_ENTRIES 512
53#define GEN6_PD_SIZE (GEN6_PPGTT_PD_ENTRIES * PAGE_SIZE)
54#define GEN6_PD_ALIGN (PAGE_SIZE * 16)
55#define GEN6_PDE_VALID (1 << 0)
56
57#define GEN7_PTE_CACHE_L3_LLC (3 << 1)
58
59#define BYT_PTE_SNOOPED_BY_CPU_CACHES (1 << 2)
60#define BYT_PTE_WRITEABLE (1 << 1)
61
62/* Cacheability Control is a 4-bit value. The low three bits are stored in bits
63 * 3:1 of the PTE, while the fourth bit is stored in bit 11 of the PTE.
64 */
65#define HSW_CACHEABILITY_CONTROL(bits) ((((bits) & 0x7) << 1) | \
66 (((bits) & 0x8) << (11 - 3)))
67#define HSW_WB_LLC_AGE3 HSW_CACHEABILITY_CONTROL(0x2)
68#define HSW_WB_LLC_AGE0 HSW_CACHEABILITY_CONTROL(0x3)
69#define HSW_WB_ELLC_LLC_AGE3 HSW_CACHEABILITY_CONTROL(0x8)
70#define HSW_WB_ELLC_LLC_AGE0 HSW_CACHEABILITY_CONTROL(0xb)
71#define HSW_WT_ELLC_LLC_AGE3 HSW_CACHEABILITY_CONTROL(0x7)
72#define HSW_WT_ELLC_LLC_AGE0 HSW_CACHEABILITY_CONTROL(0x6)
73#define HSW_PTE_UNCACHED (0)
74#define HSW_GTT_ADDR_ENCODE(addr) ((addr) | (((addr) >> 28) & 0x7f0))
75#define HSW_PTE_ADDR_ENCODE(addr) HSW_GTT_ADDR_ENCODE(addr)
76
77/* GEN8 legacy style address is defined as a 3 level page table:
78 * 31:30 | 29:21 | 20:12 | 11:0
79 * PDPE | PDE | PTE | offset
80 * The difference as compared to normal x86 3 level page table is the PDPEs are
81 * programmed via register.
82 */
83#define GEN8_PDPE_SHIFT 30
84#define GEN8_PDPE_MASK 0x3
85#define GEN8_PDE_SHIFT 21
86#define GEN8_PDE_MASK 0x1ff
87#define GEN8_PTE_SHIFT 12
88#define GEN8_PTE_MASK 0x1ff
89#define GEN8_LEGACY_PDPS 4
90#define GEN8_PTES_PER_PAGE (PAGE_SIZE / sizeof(gen8_gtt_pte_t))
91#define GEN8_PDES_PER_PAGE (PAGE_SIZE / sizeof(gen8_ppgtt_pde_t))
92
93#define PPAT_UNCACHED_INDEX (_PAGE_PWT | _PAGE_PCD)
94#define PPAT_CACHED_PDE_INDEX 0 /* WB LLC */
95#define PPAT_CACHED_INDEX _PAGE_PAT /* WB LLCeLLC */
96#define PPAT_DISPLAY_ELLC_INDEX _PAGE_PCD /* WT eLLC */
97
98#define GEN8_PPAT_AGE(x) (x<<4)
99#define GEN8_PPAT_LLCeLLC (3<<2)
100#define GEN8_PPAT_LLCELLC (2<<2)
101#define GEN8_PPAT_LLC (1<<2)
102#define GEN8_PPAT_WB (3<<0)
103#define GEN8_PPAT_WT (2<<0)
104#define GEN8_PPAT_WC (1<<0)
105#define GEN8_PPAT_UC (0<<0)
106#define GEN8_PPAT_ELLC_OVERRIDE (0<<2)
107#define GEN8_PPAT(i, x) ((uint64_t) (x) << ((i) * 8))
108
109enum i915_cache_level;
110/**
111 * A VMA represents a GEM BO that is bound into an address space. Therefore, a
112 * VMA's presence cannot be guaranteed before binding, or after unbinding the
113 * object into/from the address space.
114 *
115 * To make things as simple as possible (ie. no refcounting), a VMA's lifetime
116 * will always be <= an objects lifetime. So object refcounting should cover us.
117 */
118struct i915_vma {
119 struct drm_mm_node node;
120 struct drm_i915_gem_object *obj;
121 struct i915_address_space *vm;
122
123 /** This object's place on the active/inactive lists */
124 struct list_head mm_list;
125
126 struct list_head vma_link; /* Link in the object's VMA list */
127
128 /** This vma's place in the batchbuffer or on the eviction list */
129 struct list_head exec_list;
130
131 /**
132 * Used for performing relocations during execbuffer insertion.
133 */
134 struct hlist_node exec_node;
135 unsigned long exec_handle;
136 struct drm_i915_gem_exec_object2 *exec_entry;
137
138 /**
139 * How many users have pinned this object in GTT space. The following
140 * users can each hold at most one reference: pwrite/pread, pin_ioctl
141 * (via user_pin_count), execbuffer (objects are not allowed multiple
142 * times for the same batchbuffer), and the framebuffer code. When
143 * switching/pageflipping, the framebuffer code has at most two buffers
144 * pinned per crtc.
145 *
146 * In the worst case this is 1 + 1 + 1 + 2*2 = 7. That would fit into 3
147 * bits with absolutely no headroom. So use 4 bits. */
148 unsigned int pin_count:4;
149#define DRM_I915_GEM_OBJECT_MAX_PIN_COUNT 0xf
150
151 /** Unmap an object from an address space. This usually consists of
152 * setting the valid PTE entries to a reserved scratch page. */
153 void (*unbind_vma)(struct i915_vma *vma);
154 /* Map an object into an address space with the given cache flags. */
155#define GLOBAL_BIND (1<<0)
156 void (*bind_vma)(struct i915_vma *vma,
157 enum i915_cache_level cache_level,
158 u32 flags);
159};
160
161struct i915_address_space {
162 struct drm_mm mm;
163 struct drm_device *dev;
164 struct list_head global_link;
165 unsigned long start; /* Start offset always 0 for dri2 */
166 size_t total; /* size addr space maps (ex. 2GB for ggtt) */
167
168 struct {
169 dma_addr_t addr;
170 struct page *page;
171 } scratch;
172
173 /**
174 * List of objects currently involved in rendering.
175 *
176 * Includes buffers having the contents of their GPU caches
177 * flushed, not necessarily primitives. last_rendering_seqno
178 * represents when the rendering involved will be completed.
179 *
180 * A reference is held on the buffer while on this list.
181 */
182 struct list_head active_list;
183
184 /**
185 * LRU list of objects which are not in the ringbuffer and
186 * are ready to unbind, but are still in the GTT.
187 *
188 * last_rendering_seqno is 0 while an object is in this list.
189 *
190 * A reference is not held on the buffer while on this list,
191 * as merely being GTT-bound shouldn't prevent its being
192 * freed, and we'll pull it off the list in the free path.
193 */
194 struct list_head inactive_list;
195
196 /* FIXME: Need a more generic return type */
197 gen6_gtt_pte_t (*pte_encode)(dma_addr_t addr,
198 enum i915_cache_level level,
199 bool valid); /* Create a valid PTE */
200 void (*clear_range)(struct i915_address_space *vm,
201 uint64_t start,
202 uint64_t length,
203 bool use_scratch);
204 void (*insert_entries)(struct i915_address_space *vm,
205 struct sg_table *st,
206 uint64_t start,
207 enum i915_cache_level cache_level);
208 void (*cleanup)(struct i915_address_space *vm);
209};
210
211/* The Graphics Translation Table is the way in which GEN hardware translates a
212 * Graphics Virtual Address into a Physical Address. In addition to the normal
213 * collateral associated with any va->pa translations GEN hardware also has a
214 * portion of the GTT which can be mapped by the CPU and remain both coherent
215 * and correct (in cases like swizzling). That region is referred to as GMADR in
216 * the spec.
217 */
218struct i915_gtt {
219 struct i915_address_space base;
220 size_t stolen_size; /* Total size of stolen memory */
221
222 unsigned long mappable_end; /* End offset that we can CPU map */
223 struct io_mapping *mappable; /* Mapping to our CPU mappable region */
224 phys_addr_t mappable_base; /* PA of our GMADR */
225
226 /** "Graphics Stolen Memory" holds the global PTEs */
227 void __iomem *gsm;
228
229 bool do_idle_maps;
230
231 int mtrr;
232
233 /* global gtt ops */
234 int (*gtt_probe)(struct drm_device *dev, size_t *gtt_total,
235 size_t *stolen, phys_addr_t *mappable_base,
236 unsigned long *mappable_end);
237};
238
239struct i915_hw_ppgtt {
240 struct i915_address_space base;
241 struct kref ref;
242 struct drm_mm_node node;
243 unsigned num_pd_entries;
244 unsigned num_pd_pages; /* gen8+ */
245 union {
246 struct page **pt_pages;
247 struct page **gen8_pt_pages[GEN8_LEGACY_PDPS];
248 };
249 struct page *pd_pages;
250 union {
251 uint32_t pd_offset;
252 dma_addr_t pd_dma_addr[GEN8_LEGACY_PDPS];
253 };
254 union {
255 dma_addr_t *pt_dma_addr;
256 dma_addr_t *gen8_pt_dma_addr[4];
257 };
258
259 struct i915_hw_context *ctx;
260
261 int (*enable)(struct i915_hw_ppgtt *ppgtt);
262 int (*switch_mm)(struct i915_hw_ppgtt *ppgtt,
263 struct intel_ring_buffer *ring,
264 bool synchronous);
265 void (*debug_dump)(struct i915_hw_ppgtt *ppgtt, struct seq_file *m);
266};
267
268int i915_gem_gtt_init(struct drm_device *dev);
269void i915_gem_init_global_gtt(struct drm_device *dev);
270void i915_gem_setup_global_gtt(struct drm_device *dev, unsigned long start,
271 unsigned long mappable_end, unsigned long end);
272
273bool intel_enable_ppgtt(struct drm_device *dev, bool full);
274int i915_gem_init_ppgtt(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt);
275
276void i915_check_and_clear_faults(struct drm_device *dev);
277void i915_gem_suspend_gtt_mappings(struct drm_device *dev);
278void i915_gem_restore_gtt_mappings(struct drm_device *dev);
279
280int __must_check i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj);
281void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj);
282
283#endif
This page took 0.060666 seconds and 5 git commands to generate.