cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

intel_gtt.h (19910B)


      1/* SPDX-License-Identifier: MIT */
      2/*
      3 * Copyright © 2020 Intel Corporation
      4 *
      5 * Please try to maintain the following order within this file unless it makes
      6 * sense to do otherwise. From top to bottom:
      7 * 1. typedefs
      8 * 2. #defines, and macros
      9 * 3. structure definitions
     10 * 4. function prototypes
     11 *
     12 * Within each section, please try to order by generation in ascending order,
     13 * from top to bottom (ie. gen6 on the top, gen8 on the bottom).
     14 */
     15
     16#ifndef __INTEL_GTT_H__
     17#define __INTEL_GTT_H__
     18
     19#include <linux/io-mapping.h>
     20#include <linux/kref.h>
     21#include <linux/mm.h>
     22#include <linux/pagevec.h>
     23#include <linux/scatterlist.h>
     24#include <linux/workqueue.h>
     25
     26#include <drm/drm_mm.h>
     27
     28#include "gt/intel_reset.h"
     29#include "i915_selftest.h"
     30#include "i915_vma_resource.h"
     31#include "i915_vma_types.h"
     32#include "i915_params.h"
     33#include "intel_memory_region.h"
     34
     35#define I915_GFP_ALLOW_FAIL (GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_NOWARN)
     36
     37#if IS_ENABLED(CONFIG_DRM_I915_TRACE_GTT)
     38#define DBG(...) trace_printk(__VA_ARGS__)
     39#else
     40#define DBG(...)
     41#endif
     42
     43#define NALLOC 3 /* 1 normal, 1 for concurrent threads, 1 for preallocation */
     44
     45#define I915_GTT_PAGE_SIZE_4K	BIT_ULL(12)
     46#define I915_GTT_PAGE_SIZE_64K	BIT_ULL(16)
     47#define I915_GTT_PAGE_SIZE_2M	BIT_ULL(21)
     48
     49#define I915_GTT_PAGE_SIZE I915_GTT_PAGE_SIZE_4K
     50#define I915_GTT_MAX_PAGE_SIZE I915_GTT_PAGE_SIZE_2M
     51
     52#define I915_GTT_PAGE_MASK -I915_GTT_PAGE_SIZE
     53
     54#define I915_GTT_MIN_ALIGNMENT I915_GTT_PAGE_SIZE
     55
     56#define I915_FENCE_REG_NONE -1
     57#define I915_MAX_NUM_FENCES 32
     58/* 32 fences + sign bit for FENCE_REG_NONE */
     59#define I915_MAX_NUM_FENCE_BITS 6
     60
     61typedef u32 gen6_pte_t;
     62typedef u64 gen8_pte_t;
     63
     64#define ggtt_total_entries(ggtt) ((ggtt)->vm.total >> PAGE_SHIFT)
     65
     66#define I915_PTES(pte_len)		((unsigned int)(PAGE_SIZE / (pte_len)))
     67#define I915_PTE_MASK(pte_len)		(I915_PTES(pte_len) - 1)
     68#define I915_PDES			512
     69#define I915_PDE_MASK			(I915_PDES - 1)
     70
     71/* gen6-hsw has bit 11-4 for physical addr bit 39-32 */
     72#define GEN6_GTT_ADDR_ENCODE(addr)	((addr) | (((addr) >> 28) & 0xff0))
     73#define GEN6_PTE_ADDR_ENCODE(addr)	GEN6_GTT_ADDR_ENCODE(addr)
     74#define GEN6_PDE_ADDR_ENCODE(addr)	GEN6_GTT_ADDR_ENCODE(addr)
     75#define GEN6_PTE_CACHE_LLC		(2 << 1)
     76#define GEN6_PTE_UNCACHED		(1 << 1)
     77#define GEN6_PTE_VALID			REG_BIT(0)
     78
     79#define GEN6_PTES			I915_PTES(sizeof(gen6_pte_t))
     80#define GEN6_PD_SIZE		        (I915_PDES * PAGE_SIZE)
     81#define GEN6_PD_ALIGN			(PAGE_SIZE * 16)
     82#define GEN6_PDE_SHIFT			22
     83#define GEN6_PDE_VALID			REG_BIT(0)
     84#define NUM_PTE(pde_shift)     (1 << (pde_shift - PAGE_SHIFT))
     85
     86#define GEN7_PTE_CACHE_L3_LLC		(3 << 1)
     87
     88#define BYT_PTE_SNOOPED_BY_CPU_CACHES	REG_BIT(2)
     89#define BYT_PTE_WRITEABLE		REG_BIT(1)
     90
     91#define GEN12_PPGTT_PTE_LM	BIT_ULL(11)
     92
     93#define GEN12_GGTT_PTE_LM	BIT_ULL(1)
     94
     95#define GEN12_PDE_64K BIT(6)
     96
     97/*
     98 * Cacheability Control is a 4-bit value. The low three bits are stored in bits
     99 * 3:1 of the PTE, while the fourth bit is stored in bit 11 of the PTE.
    100 */
    101#define HSW_CACHEABILITY_CONTROL(bits)	((((bits) & 0x7) << 1) | \
    102					 (((bits) & 0x8) << (11 - 3)))
    103#define HSW_WB_LLC_AGE3			HSW_CACHEABILITY_CONTROL(0x2)
    104#define HSW_WB_LLC_AGE0			HSW_CACHEABILITY_CONTROL(0x3)
    105#define HSW_WB_ELLC_LLC_AGE3		HSW_CACHEABILITY_CONTROL(0x8)
    106#define HSW_WB_ELLC_LLC_AGE0		HSW_CACHEABILITY_CONTROL(0xb)
    107#define HSW_WT_ELLC_LLC_AGE3		HSW_CACHEABILITY_CONTROL(0x7)
    108#define HSW_WT_ELLC_LLC_AGE0		HSW_CACHEABILITY_CONTROL(0x6)
    109#define HSW_PTE_UNCACHED		(0)
    110#define HSW_GTT_ADDR_ENCODE(addr)	((addr) | (((addr) >> 28) & 0x7f0))
    111#define HSW_PTE_ADDR_ENCODE(addr)	HSW_GTT_ADDR_ENCODE(addr)
    112
    113/*
    114 * GEN8 32b style address is defined as a 3 level page table:
    115 * 31:30 | 29:21 | 20:12 |  11:0
    116 * PDPE  |  PDE  |  PTE  | offset
    117 * The difference as compared to normal x86 3 level page table is the PDPEs are
    118 * programmed via register.
    119 *
    120 * GEN8 48b style address is defined as a 4 level page table:
    121 * 47:39 | 38:30 | 29:21 | 20:12 |  11:0
    122 * PML4E | PDPE  |  PDE  |  PTE  | offset
    123 */
    124#define GEN8_3LVL_PDPES			4
    125
    126#define PPAT_UNCACHED			(_PAGE_PWT | _PAGE_PCD)
    127#define PPAT_CACHED_PDE			0 /* WB LLC */
    128#define PPAT_CACHED			_PAGE_PAT /* WB LLCeLLC */
    129#define PPAT_DISPLAY_ELLC		_PAGE_PCD /* WT eLLC */
    130
    131#define CHV_PPAT_SNOOP			REG_BIT(6)
    132#define GEN8_PPAT_AGE(x)		((x)<<4)
    133#define GEN8_PPAT_LLCeLLC		(3<<2)
    134#define GEN8_PPAT_LLCELLC		(2<<2)
    135#define GEN8_PPAT_LLC			(1<<2)
    136#define GEN8_PPAT_WB			(3<<0)
    137#define GEN8_PPAT_WT			(2<<0)
    138#define GEN8_PPAT_WC			(1<<0)
    139#define GEN8_PPAT_UC			(0<<0)
    140#define GEN8_PPAT_ELLC_OVERRIDE		(0<<2)
    141#define GEN8_PPAT(i, x)			((u64)(x) << ((i) * 8))
    142
    143#define GEN8_PAGE_PRESENT		BIT_ULL(0)
    144#define GEN8_PAGE_RW			BIT_ULL(1)
    145
    146#define GEN8_PDE_IPS_64K BIT(11)
    147#define GEN8_PDE_PS_2M   BIT(7)
    148
    149enum i915_cache_level;
    150
    151struct drm_i915_gem_object;
    152struct i915_fence_reg;
    153struct i915_vma;
    154struct intel_gt;
    155
    156#define for_each_sgt_daddr(__dp, __iter, __sgt) \
    157	__for_each_sgt_daddr(__dp, __iter, __sgt, I915_GTT_PAGE_SIZE)
    158
    159struct i915_page_table {
    160	struct drm_i915_gem_object *base;
    161	union {
    162		atomic_t used;
    163		struct i915_page_table *stash;
    164	};
    165	bool is_compact;
    166};
    167
    168struct i915_page_directory {
    169	struct i915_page_table pt;
    170	spinlock_t lock;
    171	void **entry;
    172};
    173
    174#define __px_choose_expr(x, type, expr, other) \
    175	__builtin_choose_expr( \
    176	__builtin_types_compatible_p(typeof(x), type) || \
    177	__builtin_types_compatible_p(typeof(x), const type), \
    178	({ type __x = (type)(x); expr; }), \
    179	other)
    180
    181#define px_base(px) \
    182	__px_choose_expr(px, struct drm_i915_gem_object *, __x, \
    183	__px_choose_expr(px, struct i915_page_table *, __x->base, \
    184	__px_choose_expr(px, struct i915_page_directory *, __x->pt.base, \
    185	(void)0)))
    186
    187struct page *__px_page(struct drm_i915_gem_object *p);
    188dma_addr_t __px_dma(struct drm_i915_gem_object *p);
    189#define px_dma(px) (__px_dma(px_base(px)))
    190
    191void *__px_vaddr(struct drm_i915_gem_object *p);
    192#define px_vaddr(px) (__px_vaddr(px_base(px)))
    193
    194#define px_pt(px) \
    195	__px_choose_expr(px, struct i915_page_table *, __x, \
    196	__px_choose_expr(px, struct i915_page_directory *, &__x->pt, \
    197	(void)0))
    198#define px_used(px) (&px_pt(px)->used)
    199
    200struct i915_vm_pt_stash {
    201	/* preallocated chains of page tables/directories */
    202	struct i915_page_table *pt[2];
    203	/*
    204	 * Optionally override the alignment/size of the physical page that
    205	 * contains each PT. If not set defaults back to the usual
    206	 * I915_GTT_PAGE_SIZE_4K. This does not influence the other paging
    207	 * structures. MUST be a power-of-two. ONLY applicable on discrete
    208	 * platforms.
    209	 */
    210	int pt_sz;
    211};
    212
    213struct i915_vma_ops {
    214	/* Map an object into an address space with the given cache flags. */
    215	void (*bind_vma)(struct i915_address_space *vm,
    216			 struct i915_vm_pt_stash *stash,
    217			 struct i915_vma_resource *vma_res,
    218			 enum i915_cache_level cache_level,
    219			 u32 flags);
    220	/*
    221	 * Unmap an object from an address space. This usually consists of
    222	 * setting the valid PTE entries to a reserved scratch page.
    223	 */
    224	void (*unbind_vma)(struct i915_address_space *vm,
    225			   struct i915_vma_resource *vma_res);
    226
    227};
    228
    229struct i915_address_space {
    230	struct kref ref;
    231	struct work_struct release_work;
    232
    233	struct drm_mm mm;
    234	struct intel_gt *gt;
    235	struct drm_i915_private *i915;
    236	struct device *dma;
    237	u64 total;		/* size addr space maps (ex. 2GB for ggtt) */
    238	u64 reserved;		/* size addr space reserved */
    239	u64 min_alignment[INTEL_MEMORY_STOLEN_LOCAL + 1];
    240
    241	unsigned int bind_async_flags;
    242
    243	struct mutex mutex; /* protects vma and our lists */
    244
    245	struct kref resv_ref; /* kref to keep the reservation lock alive. */
    246	struct dma_resv _resv; /* reservation lock for all pd objects, and buffer pool */
    247#define VM_CLASS_GGTT 0
    248#define VM_CLASS_PPGTT 1
    249#define VM_CLASS_DPT 2
    250
    251	struct drm_i915_gem_object *scratch[4];
    252	/**
    253	 * List of vma currently bound.
    254	 */
    255	struct list_head bound_list;
    256
    257	/**
    258	 * List of vmas not yet bound or evicted.
    259	 */
    260	struct list_head unbound_list;
    261
    262	/* Global GTT */
    263	bool is_ggtt:1;
    264
    265	/* Display page table */
    266	bool is_dpt:1;
    267
    268	/* Some systems support read-only mappings for GGTT and/or PPGTT */
    269	bool has_read_only:1;
    270
    271	/* Skip pte rewrite on unbind for suspend. Protected by @mutex */
    272	bool skip_pte_rewrite:1;
    273
    274	u8 top;
    275	u8 pd_shift;
    276	u8 scratch_order;
    277
    278	/* Flags used when creating page-table objects for this vm */
    279	unsigned long lmem_pt_obj_flags;
    280
    281	/* Interval tree for pending unbind vma resources */
    282	struct rb_root_cached pending_unbind;
    283
    284	struct drm_i915_gem_object *
    285		(*alloc_pt_dma)(struct i915_address_space *vm, int sz);
    286	struct drm_i915_gem_object *
    287		(*alloc_scratch_dma)(struct i915_address_space *vm, int sz);
    288
    289	u64 (*pte_encode)(dma_addr_t addr,
    290			  enum i915_cache_level level,
    291			  u32 flags); /* Create a valid PTE */
    292#define PTE_READ_ONLY	BIT(0)
    293#define PTE_LM		BIT(1)
    294
    295	void (*allocate_va_range)(struct i915_address_space *vm,
    296				  struct i915_vm_pt_stash *stash,
    297				  u64 start, u64 length);
    298	void (*clear_range)(struct i915_address_space *vm,
    299			    u64 start, u64 length);
    300	void (*insert_page)(struct i915_address_space *vm,
    301			    dma_addr_t addr,
    302			    u64 offset,
    303			    enum i915_cache_level cache_level,
    304			    u32 flags);
    305	void (*insert_entries)(struct i915_address_space *vm,
    306			       struct i915_vma_resource *vma_res,
    307			       enum i915_cache_level cache_level,
    308			       u32 flags);
    309	void (*cleanup)(struct i915_address_space *vm);
    310
    311	void (*foreach)(struct i915_address_space *vm,
    312			u64 start, u64 length,
    313			void (*fn)(struct i915_address_space *vm,
    314				   struct i915_page_table *pt,
    315				   void *data),
    316			void *data);
    317
    318	struct i915_vma_ops vma_ops;
    319
    320	I915_SELFTEST_DECLARE(struct fault_attr fault_attr);
    321	I915_SELFTEST_DECLARE(bool scrub_64K);
    322};
    323
    324/*
    325 * The Graphics Translation Table is the way in which GEN hardware translates a
    326 * Graphics Virtual Address into a Physical Address. In addition to the normal
    327 * collateral associated with any va->pa translations GEN hardware also has a
    328 * portion of the GTT which can be mapped by the CPU and remain both coherent
    329 * and correct (in cases like swizzling). That region is referred to as GMADR in
    330 * the spec.
    331 */
    332struct i915_ggtt {
    333	struct i915_address_space vm;
    334
    335	struct io_mapping iomap;	/* Mapping to our CPU mappable region */
    336	struct resource gmadr;          /* GMADR resource */
    337	resource_size_t mappable_end;	/* End offset that we can CPU map */
    338
    339	/** "Graphics Stolen Memory" holds the global PTEs */
    340	void __iomem *gsm;
    341	void (*invalidate)(struct i915_ggtt *ggtt);
    342
    343	/** PPGTT used for aliasing the PPGTT with the GTT */
    344	struct i915_ppgtt *alias;
    345
    346	bool do_idle_maps;
    347
    348	int mtrr;
    349
    350	/** Bit 6 swizzling required for X tiling */
    351	u32 bit_6_swizzle_x;
    352	/** Bit 6 swizzling required for Y tiling */
    353	u32 bit_6_swizzle_y;
    354
    355	u32 pin_bias;
    356
    357	unsigned int num_fences;
    358	struct i915_fence_reg *fence_regs;
    359	struct list_head fence_list;
    360
    361	/**
    362	 * List of all objects in gtt_space, currently mmaped by userspace.
    363	 * All objects within this list must also be on bound_list.
    364	 */
    365	struct list_head userfault_list;
    366
    367	/* Manual runtime pm autosuspend delay for user GGTT mmaps */
    368	struct intel_wakeref_auto userfault_wakeref;
    369
    370	struct mutex error_mutex;
    371	struct drm_mm_node error_capture;
    372	struct drm_mm_node uc_fw;
    373};
    374
    375struct i915_ppgtt {
    376	struct i915_address_space vm;
    377
    378	struct i915_page_directory *pd;
    379};
    380
    381#define i915_is_ggtt(vm) ((vm)->is_ggtt)
    382#define i915_is_dpt(vm) ((vm)->is_dpt)
    383#define i915_is_ggtt_or_dpt(vm) (i915_is_ggtt(vm) || i915_is_dpt(vm))
    384
    385bool intel_vm_no_concurrent_access_wa(struct drm_i915_private *i915);
    386
    387int __must_check
    388i915_vm_lock_objects(struct i915_address_space *vm, struct i915_gem_ww_ctx *ww);
    389
    390static inline bool
    391i915_vm_is_4lvl(const struct i915_address_space *vm)
    392{
    393	return (vm->total - 1) >> 32;
    394}
    395
    396static inline bool
    397i915_vm_has_scratch_64K(struct i915_address_space *vm)
    398{
    399	return vm->scratch_order == get_order(I915_GTT_PAGE_SIZE_64K);
    400}
    401
    402static inline u64 i915_vm_min_alignment(struct i915_address_space *vm,
    403					enum intel_memory_type type)
    404{
    405	/* avoid INTEL_MEMORY_MOCK overflow */
    406	if ((int)type >= ARRAY_SIZE(vm->min_alignment))
    407		type = INTEL_MEMORY_SYSTEM;
    408
    409	return vm->min_alignment[type];
    410}
    411
    412static inline u64 i915_vm_obj_min_alignment(struct i915_address_space *vm,
    413					    struct drm_i915_gem_object  *obj)
    414{
    415	struct intel_memory_region *mr = READ_ONCE(obj->mm.region);
    416	enum intel_memory_type type = mr ? mr->type : INTEL_MEMORY_SYSTEM;
    417
    418	return i915_vm_min_alignment(vm, type);
    419}
    420
    421static inline bool
    422i915_vm_has_cache_coloring(struct i915_address_space *vm)
    423{
    424	return i915_is_ggtt(vm) && vm->mm.color_adjust;
    425}
    426
    427static inline struct i915_ggtt *
    428i915_vm_to_ggtt(struct i915_address_space *vm)
    429{
    430	BUILD_BUG_ON(offsetof(struct i915_ggtt, vm));
    431	GEM_BUG_ON(!i915_is_ggtt(vm));
    432	return container_of(vm, struct i915_ggtt, vm);
    433}
    434
    435static inline struct i915_ppgtt *
    436i915_vm_to_ppgtt(struct i915_address_space *vm)
    437{
    438	BUILD_BUG_ON(offsetof(struct i915_ppgtt, vm));
    439	GEM_BUG_ON(i915_is_ggtt_or_dpt(vm));
    440	return container_of(vm, struct i915_ppgtt, vm);
    441}
    442
    443static inline struct i915_address_space *
    444i915_vm_get(struct i915_address_space *vm)
    445{
    446	kref_get(&vm->ref);
    447	return vm;
    448}
    449
    450static inline struct i915_address_space *
    451i915_vm_tryget(struct i915_address_space *vm)
    452{
    453	return kref_get_unless_zero(&vm->ref) ? vm : NULL;
    454}
    455
    456static inline void assert_vm_alive(struct i915_address_space *vm)
    457{
    458	GEM_BUG_ON(!kref_read(&vm->ref));
    459}
    460
    461/**
    462 * i915_vm_resv_get - Obtain a reference on the vm's reservation lock
    463 * @vm: The vm whose reservation lock we want to share.
    464 *
    465 * Return: A pointer to the vm's reservation lock.
    466 */
    467static inline struct dma_resv *i915_vm_resv_get(struct i915_address_space *vm)
    468{
    469	kref_get(&vm->resv_ref);
    470	return &vm->_resv;
    471}
    472
    473void i915_vm_release(struct kref *kref);
    474
    475void i915_vm_resv_release(struct kref *kref);
    476
    477static inline void i915_vm_put(struct i915_address_space *vm)
    478{
    479	kref_put(&vm->ref, i915_vm_release);
    480}
    481
    482/**
    483 * i915_vm_resv_put - Release a reference on the vm's reservation lock
    484 * @resv: Pointer to a reservation lock obtained from i915_vm_resv_get()
    485 */
    486static inline void i915_vm_resv_put(struct i915_address_space *vm)
    487{
    488	kref_put(&vm->resv_ref, i915_vm_resv_release);
    489}
    490
    491void i915_address_space_init(struct i915_address_space *vm, int subclass);
    492void i915_address_space_fini(struct i915_address_space *vm);
    493
    494static inline u32 i915_pte_index(u64 address, unsigned int pde_shift)
    495{
    496	const u32 mask = NUM_PTE(pde_shift) - 1;
    497
    498	return (address >> PAGE_SHIFT) & mask;
    499}
    500
    501/*
    502 * Helper to counts the number of PTEs within the given length. This count
    503 * does not cross a page table boundary, so the max value would be
    504 * GEN6_PTES for GEN6, and GEN8_PTES for GEN8.
    505 */
    506static inline u32 i915_pte_count(u64 addr, u64 length, unsigned int pde_shift)
    507{
    508	const u64 mask = ~((1ULL << pde_shift) - 1);
    509	u64 end;
    510
    511	GEM_BUG_ON(length == 0);
    512	GEM_BUG_ON(offset_in_page(addr | length));
    513
    514	end = addr + length;
    515
    516	if ((addr & mask) != (end & mask))
    517		return NUM_PTE(pde_shift) - i915_pte_index(addr, pde_shift);
    518
    519	return i915_pte_index(end, pde_shift) - i915_pte_index(addr, pde_shift);
    520}
    521
    522static inline u32 i915_pde_index(u64 addr, u32 shift)
    523{
    524	return (addr >> shift) & I915_PDE_MASK;
    525}
    526
    527static inline struct i915_page_table *
    528i915_pt_entry(const struct i915_page_directory * const pd,
    529	      const unsigned short n)
    530{
    531	return pd->entry[n];
    532}
    533
    534static inline struct i915_page_directory *
    535i915_pd_entry(const struct i915_page_directory * const pdp,
    536	      const unsigned short n)
    537{
    538	return pdp->entry[n];
    539}
    540
    541static inline dma_addr_t
    542i915_page_dir_dma_addr(const struct i915_ppgtt *ppgtt, const unsigned int n)
    543{
    544	struct i915_page_table *pt = ppgtt->pd->entry[n];
    545
    546	return __px_dma(pt ? px_base(pt) : ppgtt->vm.scratch[ppgtt->vm.top]);
    547}
    548
    549void ppgtt_init(struct i915_ppgtt *ppgtt, struct intel_gt *gt,
    550		unsigned long lmem_pt_obj_flags);
    551
    552void intel_ggtt_bind_vma(struct i915_address_space *vm,
    553			  struct i915_vm_pt_stash *stash,
    554			  struct i915_vma_resource *vma_res,
    555			  enum i915_cache_level cache_level,
    556			  u32 flags);
    557void intel_ggtt_unbind_vma(struct i915_address_space *vm,
    558			    struct i915_vma_resource *vma_res);
    559
    560int i915_ggtt_probe_hw(struct drm_i915_private *i915);
    561int i915_ggtt_init_hw(struct drm_i915_private *i915);
    562int i915_ggtt_enable_hw(struct drm_i915_private *i915);
    563void i915_ggtt_enable_guc(struct i915_ggtt *ggtt);
    564void i915_ggtt_disable_guc(struct i915_ggtt *ggtt);
    565int i915_init_ggtt(struct drm_i915_private *i915);
    566void i915_ggtt_driver_release(struct drm_i915_private *i915);
    567void i915_ggtt_driver_late_release(struct drm_i915_private *i915);
    568
    569static inline bool i915_ggtt_has_aperture(const struct i915_ggtt *ggtt)
    570{
    571	return ggtt->mappable_end > 0;
    572}
    573
    574int i915_ppgtt_init_hw(struct intel_gt *gt);
    575
    576struct i915_ppgtt *i915_ppgtt_create(struct intel_gt *gt,
    577				     unsigned long lmem_pt_obj_flags);
    578
    579void i915_ggtt_suspend_vm(struct i915_address_space *vm);
    580bool i915_ggtt_resume_vm(struct i915_address_space *vm);
    581void i915_ggtt_suspend(struct i915_ggtt *gtt);
    582void i915_ggtt_resume(struct i915_ggtt *ggtt);
    583
    584void
    585fill_page_dma(struct drm_i915_gem_object *p, const u64 val, unsigned int count);
    586
    587#define fill_px(px, v) fill_page_dma(px_base(px), (v), PAGE_SIZE / sizeof(u64))
    588#define fill32_px(px, v) do {						\
    589	u64 v__ = lower_32_bits(v);					\
    590	fill_px((px), v__ << 32 | v__);					\
    591} while (0)
    592
    593int setup_scratch_page(struct i915_address_space *vm);
    594void free_scratch(struct i915_address_space *vm);
    595
    596struct drm_i915_gem_object *alloc_pt_dma(struct i915_address_space *vm, int sz);
    597struct drm_i915_gem_object *alloc_pt_lmem(struct i915_address_space *vm, int sz);
    598struct i915_page_table *alloc_pt(struct i915_address_space *vm, int sz);
    599struct i915_page_directory *alloc_pd(struct i915_address_space *vm);
    600struct i915_page_directory *__alloc_pd(int npde);
    601
    602int map_pt_dma(struct i915_address_space *vm, struct drm_i915_gem_object *obj);
    603int map_pt_dma_locked(struct i915_address_space *vm, struct drm_i915_gem_object *obj);
    604
    605void free_px(struct i915_address_space *vm,
    606	     struct i915_page_table *pt, int lvl);
    607#define free_pt(vm, px) free_px(vm, px, 0)
    608#define free_pd(vm, px) free_px(vm, px_pt(px), 1)
    609
    610void
    611__set_pd_entry(struct i915_page_directory * const pd,
    612	       const unsigned short idx,
    613	       struct i915_page_table *pt,
    614	       u64 (*encode)(const dma_addr_t, const enum i915_cache_level));
    615
    616#define set_pd_entry(pd, idx, to) \
    617	__set_pd_entry((pd), (idx), px_pt(to), gen8_pde_encode)
    618
    619void
    620clear_pd_entry(struct i915_page_directory * const pd,
    621	       const unsigned short idx,
    622	       const struct drm_i915_gem_object * const scratch);
    623
    624bool
    625release_pd_entry(struct i915_page_directory * const pd,
    626		 const unsigned short idx,
    627		 struct i915_page_table * const pt,
    628		 const struct drm_i915_gem_object * const scratch);
    629void gen6_ggtt_invalidate(struct i915_ggtt *ggtt);
    630void gen8_ggtt_invalidate(struct i915_ggtt *ggtt);
    631
    632void ppgtt_bind_vma(struct i915_address_space *vm,
    633		    struct i915_vm_pt_stash *stash,
    634		    struct i915_vma_resource *vma_res,
    635		    enum i915_cache_level cache_level,
    636		    u32 flags);
    637void ppgtt_unbind_vma(struct i915_address_space *vm,
    638		      struct i915_vma_resource *vma_res);
    639
    640void gtt_write_workarounds(struct intel_gt *gt);
    641
    642void setup_private_pat(struct intel_uncore *uncore);
    643
    644int i915_vm_alloc_pt_stash(struct i915_address_space *vm,
    645			   struct i915_vm_pt_stash *stash,
    646			   u64 size);
    647int i915_vm_map_pt_stash(struct i915_address_space *vm,
    648			 struct i915_vm_pt_stash *stash);
    649void i915_vm_free_pt_stash(struct i915_address_space *vm,
    650			   struct i915_vm_pt_stash *stash);
    651
    652struct i915_vma *
    653__vm_create_scratch_for_read(struct i915_address_space *vm, unsigned long size);
    654
    655struct i915_vma *
    656__vm_create_scratch_for_read_pinned(struct i915_address_space *vm, unsigned long size);
    657
    658static inline struct sgt_dma {
    659	struct scatterlist *sg;
    660	dma_addr_t dma, max;
    661} sgt_dma(struct i915_vma_resource *vma_res) {
    662	struct scatterlist *sg = vma_res->bi.pages->sgl;
    663	dma_addr_t addr = sg_dma_address(sg);
    664
    665	return (struct sgt_dma){ sg, addr, addr + sg_dma_len(sg) };
    666}
    667
    668#endif