i915_gem_gtt.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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. #ifndef __I915_GEM_GTT_H__
  34. #define __I915_GEM_GTT_H__
  35. struct drm_i915_file_private;
  36. typedef uint32_t gen6_gtt_pte_t;
  37. typedef uint64_t gen8_gtt_pte_t;
  38. typedef gen8_gtt_pte_t gen8_ppgtt_pde_t;
  39. #define gtt_total_entries(gtt) ((gtt).base.total >> PAGE_SHIFT)
  40. #define I915_PPGTT_PT_ENTRIES (PAGE_SIZE / sizeof(gen6_gtt_pte_t))
  41. /* gen6-hsw has bit 11-4 for physical addr bit 39-32 */
  42. #define GEN6_GTT_ADDR_ENCODE(addr) ((addr) | (((addr) >> 28) & 0xff0))
  43. #define GEN6_PTE_ADDR_ENCODE(addr) GEN6_GTT_ADDR_ENCODE(addr)
  44. #define GEN6_PDE_ADDR_ENCODE(addr) GEN6_GTT_ADDR_ENCODE(addr)
  45. #define GEN6_PTE_CACHE_LLC (2 << 1)
  46. #define GEN6_PTE_UNCACHED (1 << 1)
  47. #define GEN6_PTE_VALID (1 << 0)
  48. #define GEN6_PPGTT_PD_ENTRIES 512
  49. #define GEN6_PD_SIZE (GEN6_PPGTT_PD_ENTRIES * PAGE_SIZE)
  50. #define GEN6_PD_ALIGN (PAGE_SIZE * 16)
  51. #define GEN6_PDE_VALID (1 << 0)
  52. #define GEN7_PTE_CACHE_L3_LLC (3 << 1)
  53. #define BYT_PTE_SNOOPED_BY_CPU_CACHES (1 << 2)
  54. #define BYT_PTE_WRITEABLE (1 << 1)
  55. /* Cacheability Control is a 4-bit value. The low three bits are stored in bits
  56. * 3:1 of the PTE, while the fourth bit is stored in bit 11 of the PTE.
  57. */
  58. #define HSW_CACHEABILITY_CONTROL(bits) ((((bits) & 0x7) << 1) | \
  59. (((bits) & 0x8) << (11 - 3)))
  60. #define HSW_WB_LLC_AGE3 HSW_CACHEABILITY_CONTROL(0x2)
  61. #define HSW_WB_LLC_AGE0 HSW_CACHEABILITY_CONTROL(0x3)
  62. #define HSW_WB_ELLC_LLC_AGE3 HSW_CACHEABILITY_CONTROL(0x8)
  63. #define HSW_WB_ELLC_LLC_AGE0 HSW_CACHEABILITY_CONTROL(0xb)
  64. #define HSW_WT_ELLC_LLC_AGE3 HSW_CACHEABILITY_CONTROL(0x7)
  65. #define HSW_WT_ELLC_LLC_AGE0 HSW_CACHEABILITY_CONTROL(0x6)
  66. #define HSW_PTE_UNCACHED (0)
  67. #define HSW_GTT_ADDR_ENCODE(addr) ((addr) | (((addr) >> 28) & 0x7f0))
  68. #define HSW_PTE_ADDR_ENCODE(addr) HSW_GTT_ADDR_ENCODE(addr)
  69. /* GEN8 legacy style address is defined as a 3 level page table:
  70. * 31:30 | 29:21 | 20:12 | 11:0
  71. * PDPE | PDE | PTE | offset
  72. * The difference as compared to normal x86 3 level page table is the PDPEs are
  73. * programmed via register.
  74. */
  75. #define GEN8_PDPE_SHIFT 30
  76. #define GEN8_PDPE_MASK 0x3
  77. #define GEN8_PDE_SHIFT 21
  78. #define GEN8_PDE_MASK 0x1ff
  79. #define GEN8_PTE_SHIFT 12
  80. #define GEN8_PTE_MASK 0x1ff
  81. #define GEN8_LEGACY_PDPS 4
  82. #define GEN8_PTES_PER_PAGE (PAGE_SIZE / sizeof(gen8_gtt_pte_t))
  83. #define GEN8_PDES_PER_PAGE (PAGE_SIZE / sizeof(gen8_ppgtt_pde_t))
  84. #define PPAT_UNCACHED_INDEX (_PAGE_PWT | _PAGE_PCD)
  85. #define PPAT_CACHED_PDE_INDEX 0 /* WB LLC */
  86. #define PPAT_CACHED_INDEX _PAGE_PAT /* WB LLCeLLC */
  87. #define PPAT_DISPLAY_ELLC_INDEX _PAGE_PCD /* WT eLLC */
  88. #define CHV_PPAT_SNOOP (1<<6)
  89. #define GEN8_PPAT_AGE(x) (x<<4)
  90. #define GEN8_PPAT_LLCeLLC (3<<2)
  91. #define GEN8_PPAT_LLCELLC (2<<2)
  92. #define GEN8_PPAT_LLC (1<<2)
  93. #define GEN8_PPAT_WB (3<<0)
  94. #define GEN8_PPAT_WT (2<<0)
  95. #define GEN8_PPAT_WC (1<<0)
  96. #define GEN8_PPAT_UC (0<<0)
  97. #define GEN8_PPAT_ELLC_OVERRIDE (0<<2)
  98. #define GEN8_PPAT(i, x) ((uint64_t) (x) << ((i) * 8))
  99. enum i915_cache_level;
  100. /**
  101. * A VMA represents a GEM BO that is bound into an address space. Therefore, a
  102. * VMA's presence cannot be guaranteed before binding, or after unbinding the
  103. * object into/from the address space.
  104. *
  105. * To make things as simple as possible (ie. no refcounting), a VMA's lifetime
  106. * will always be <= an objects lifetime. So object refcounting should cover us.
  107. */
  108. struct i915_vma {
  109. struct drm_mm_node node;
  110. struct drm_i915_gem_object *obj;
  111. struct i915_address_space *vm;
  112. /** Flags and address space this VMA is bound to */
  113. #define GLOBAL_BIND (1<<0)
  114. #define LOCAL_BIND (1<<1)
  115. #define PTE_READ_ONLY (1<<2)
  116. unsigned int bound : 4;
  117. /** This object's place on the active/inactive lists */
  118. struct list_head mm_list;
  119. struct list_head vma_link; /* Link in the object's VMA list */
  120. /** This vma's place in the batchbuffer or on the eviction list */
  121. struct list_head exec_list;
  122. /**
  123. * Used for performing relocations during execbuffer insertion.
  124. */
  125. struct hlist_node exec_node;
  126. unsigned long exec_handle;
  127. struct drm_i915_gem_exec_object2 *exec_entry;
  128. /**
  129. * How many users have pinned this object in GTT space. The following
  130. * users can each hold at most one reference: pwrite/pread, pin_ioctl
  131. * (via user_pin_count), execbuffer (objects are not allowed multiple
  132. * times for the same batchbuffer), and the framebuffer code. When
  133. * switching/pageflipping, the framebuffer code has at most two buffers
  134. * pinned per crtc.
  135. *
  136. * In the worst case this is 1 + 1 + 1 + 2*2 = 7. That would fit into 3
  137. * bits with absolutely no headroom. So use 4 bits. */
  138. unsigned int pin_count:4;
  139. #define DRM_I915_GEM_OBJECT_MAX_PIN_COUNT 0xf
  140. /** Unmap an object from an address space. This usually consists of
  141. * setting the valid PTE entries to a reserved scratch page. */
  142. void (*unbind_vma)(struct i915_vma *vma);
  143. /* Map an object into an address space with the given cache flags. */
  144. void (*bind_vma)(struct i915_vma *vma,
  145. enum i915_cache_level cache_level,
  146. u32 flags);
  147. };
  148. struct i915_address_space {
  149. struct drm_mm mm;
  150. struct drm_device *dev;
  151. struct list_head global_link;
  152. unsigned long start; /* Start offset always 0 for dri2 */
  153. size_t total; /* size addr space maps (ex. 2GB for ggtt) */
  154. struct {
  155. dma_addr_t addr;
  156. struct page *page;
  157. } scratch;
  158. /**
  159. * List of objects currently involved in rendering.
  160. *
  161. * Includes buffers having the contents of their GPU caches
  162. * flushed, not necessarily primitives. last_rendering_seqno
  163. * represents when the rendering involved will be completed.
  164. *
  165. * A reference is held on the buffer while on this list.
  166. */
  167. struct list_head active_list;
  168. /**
  169. * LRU list of objects which are not in the ringbuffer and
  170. * are ready to unbind, but are still in the GTT.
  171. *
  172. * last_rendering_seqno is 0 while an object is in this list.
  173. *
  174. * A reference is not held on the buffer while on this list,
  175. * as merely being GTT-bound shouldn't prevent its being
  176. * freed, and we'll pull it off the list in the free path.
  177. */
  178. struct list_head inactive_list;
  179. /* FIXME: Need a more generic return type */
  180. gen6_gtt_pte_t (*pte_encode)(dma_addr_t addr,
  181. enum i915_cache_level level,
  182. bool valid, u32 flags); /* Create a valid PTE */
  183. void (*clear_range)(struct i915_address_space *vm,
  184. uint64_t start,
  185. uint64_t length,
  186. bool use_scratch);
  187. void (*insert_entries)(struct i915_address_space *vm,
  188. struct sg_table *st,
  189. uint64_t start,
  190. enum i915_cache_level cache_level, u32 flags);
  191. void (*cleanup)(struct i915_address_space *vm);
  192. };
  193. /* The Graphics Translation Table is the way in which GEN hardware translates a
  194. * Graphics Virtual Address into a Physical Address. In addition to the normal
  195. * collateral associated with any va->pa translations GEN hardware also has a
  196. * portion of the GTT which can be mapped by the CPU and remain both coherent
  197. * and correct (in cases like swizzling). That region is referred to as GMADR in
  198. * the spec.
  199. */
  200. struct i915_gtt {
  201. struct i915_address_space base;
  202. size_t stolen_size; /* Total size of stolen memory */
  203. unsigned long mappable_end; /* End offset that we can CPU map */
  204. struct io_mapping *mappable; /* Mapping to our CPU mappable region */
  205. phys_addr_t mappable_base; /* PA of our GMADR */
  206. /** "Graphics Stolen Memory" holds the global PTEs */
  207. void __iomem *gsm;
  208. bool do_idle_maps;
  209. int mtrr;
  210. /* global gtt ops */
  211. int (*gtt_probe)(struct drm_device *dev, size_t *gtt_total,
  212. size_t *stolen, phys_addr_t *mappable_base,
  213. unsigned long *mappable_end);
  214. };
  215. struct i915_hw_ppgtt {
  216. struct i915_address_space base;
  217. struct kref ref;
  218. struct drm_mm_node node;
  219. unsigned num_pd_entries;
  220. unsigned num_pd_pages; /* gen8+ */
  221. union {
  222. struct page **pt_pages;
  223. struct page **gen8_pt_pages[GEN8_LEGACY_PDPS];
  224. };
  225. struct page *pd_pages;
  226. union {
  227. uint32_t pd_offset;
  228. dma_addr_t pd_dma_addr[GEN8_LEGACY_PDPS];
  229. };
  230. union {
  231. dma_addr_t *pt_dma_addr;
  232. dma_addr_t *gen8_pt_dma_addr[4];
  233. };
  234. struct drm_i915_file_private *file_priv;
  235. int (*enable)(struct i915_hw_ppgtt *ppgtt);
  236. int (*switch_mm)(struct i915_hw_ppgtt *ppgtt,
  237. struct intel_engine_cs *ring);
  238. void (*debug_dump)(struct i915_hw_ppgtt *ppgtt, struct seq_file *m);
  239. };
  240. int i915_gem_gtt_init(struct drm_device *dev);
  241. void i915_gem_init_global_gtt(struct drm_device *dev);
  242. void i915_global_gtt_cleanup(struct drm_device *dev);
  243. int i915_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt);
  244. int i915_ppgtt_init_hw(struct drm_device *dev);
  245. void i915_ppgtt_release(struct kref *kref);
  246. struct i915_hw_ppgtt *i915_ppgtt_create(struct drm_device *dev,
  247. struct drm_i915_file_private *fpriv);
  248. static inline void i915_ppgtt_get(struct i915_hw_ppgtt *ppgtt)
  249. {
  250. if (ppgtt)
  251. kref_get(&ppgtt->ref);
  252. }
  253. static inline void i915_ppgtt_put(struct i915_hw_ppgtt *ppgtt)
  254. {
  255. if (ppgtt)
  256. kref_put(&ppgtt->ref, i915_ppgtt_release);
  257. }
  258. void i915_check_and_clear_faults(struct drm_device *dev);
  259. void i915_gem_suspend_gtt_mappings(struct drm_device *dev);
  260. void i915_gem_restore_gtt_mappings(struct drm_device *dev);
  261. int __must_check i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj);
  262. void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj);
  263. #endif