gtt.c 59.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/*
 * GTT virtualization
 *
 * Copyright(c) 2011-2016 Intel Corporation. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 * Authors:
 *    Zhi Wang <zhi.a.wang@intel.com>
 *    Zhenyu Wang <zhenyuw@linux.intel.com>
 *    Xiao Zheng <xiao.zheng@intel.com>
 *
 * Contributors:
 *    Min He <min.he@intel.com>
 *    Bing Niu <bing.niu@intel.com>
 *
 */

#include "i915_drv.h"
37 38
#include "gvt.h"
#include "i915_pvinfo.h"
39 40
#include "trace.h"

41 42 43 44 45 46
#if defined(VERBOSE_DEBUG)
#define gvt_vdbg_mm(fmt, args...) gvt_dbg_mm(fmt, ##args)
#else
#define gvt_vdbg_mm(fmt, args...)
#endif

47 48 49 50 51 52 53 54 55 56 57
static bool enable_out_of_sync = false;
static int preallocated_oos_pages = 8192;

/*
 * validate a gm address and related range size,
 * translate it to host gm address
 */
bool intel_gvt_ggtt_validate_range(struct intel_vgpu *vgpu, u64 addr, u32 size)
{
	if ((!vgpu_gmadr_is_valid(vgpu, addr)) || (size
			&& !vgpu_gmadr_is_valid(vgpu, addr + size - 1))) {
58 59
		gvt_vgpu_err("invalid range gmadr 0x%llx size 0x%x\n",
				addr, size);
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
		return false;
	}
	return true;
}

/* translate a guest gmadr to host gmadr */
int intel_gvt_ggtt_gmadr_g2h(struct intel_vgpu *vgpu, u64 g_addr, u64 *h_addr)
{
	if (WARN(!vgpu_gmadr_is_valid(vgpu, g_addr),
		 "invalid guest gmadr %llx\n", g_addr))
		return -EACCES;

	if (vgpu_gmadr_is_aperture(vgpu, g_addr))
		*h_addr = vgpu_aperture_gmadr_base(vgpu)
			  + (g_addr - vgpu_aperture_offset(vgpu));
	else
		*h_addr = vgpu_hidden_gmadr_base(vgpu)
			  + (g_addr - vgpu_hidden_offset(vgpu));
	return 0;
}

/* translate a host gmadr to guest gmadr */
int intel_gvt_ggtt_gmadr_h2g(struct intel_vgpu *vgpu, u64 h_addr, u64 *g_addr)
{
	if (WARN(!gvt_gmadr_is_valid(vgpu->gvt, h_addr),
		 "invalid host gmadr %llx\n", h_addr))
		return -EACCES;

	if (gvt_gmadr_is_aperture(vgpu->gvt, h_addr))
		*g_addr = vgpu_aperture_gmadr_base(vgpu)
			+ (h_addr - gvt_aperture_gmadr_base(vgpu->gvt));
	else
		*g_addr = vgpu_hidden_gmadr_base(vgpu)
			+ (h_addr - gvt_hidden_gmadr_base(vgpu->gvt));
	return 0;
}

int intel_gvt_ggtt_index_g2h(struct intel_vgpu *vgpu, unsigned long g_index,
			     unsigned long *h_index)
{
	u64 h_addr;
	int ret;

Z
Zhi Wang 已提交
103
	ret = intel_gvt_ggtt_gmadr_g2h(vgpu, g_index << I915_GTT_PAGE_SHIFT,
104 105 106 107
				       &h_addr);
	if (ret)
		return ret;

Z
Zhi Wang 已提交
108
	*h_index = h_addr >> I915_GTT_PAGE_SHIFT;
109 110 111 112 113 114 115 116 117
	return 0;
}

int intel_gvt_ggtt_h2g_index(struct intel_vgpu *vgpu, unsigned long h_index,
			     unsigned long *g_index)
{
	u64 g_addr;
	int ret;

Z
Zhi Wang 已提交
118
	ret = intel_gvt_ggtt_gmadr_h2g(vgpu, h_index << I915_GTT_PAGE_SHIFT,
119 120 121 122
				       &g_addr);
	if (ret)
		return ret;

Z
Zhi Wang 已提交
123
	*g_index = g_addr >> I915_GTT_PAGE_SHIFT;
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
	return 0;
}

#define gtt_type_is_entry(type) \
	(type > GTT_TYPE_INVALID && type < GTT_TYPE_PPGTT_ENTRY \
	 && type != GTT_TYPE_PPGTT_PTE_ENTRY \
	 && type != GTT_TYPE_PPGTT_ROOT_ENTRY)

#define gtt_type_is_pt(type) \
	(type >= GTT_TYPE_PPGTT_PTE_PT && type < GTT_TYPE_MAX)

#define gtt_type_is_pte_pt(type) \
	(type == GTT_TYPE_PPGTT_PTE_PT)

#define gtt_type_is_root_pointer(type) \
	(gtt_type_is_entry(type) && type > GTT_TYPE_PPGTT_ROOT_ENTRY)

#define gtt_init_entry(e, t, p, v) do { \
	(e)->type = t; \
	(e)->pdev = p; \
	memcpy(&(e)->val64, &v, sizeof(v)); \
} while (0)

/*
 * Mappings between GTT_TYPE* enumerations.
 * Following information can be found according to the given type:
 * - type of next level page table
 * - type of entry inside this level page table
 * - type of entry with PSE set
 *
 * If the given type doesn't have such a kind of information,
 * e.g. give a l4 root entry type, then request to get its PSE type,
 * give a PTE page table type, then request to get its next level page
 * table type, as we know l4 root entry doesn't have a PSE bit,
 * and a PTE page table doesn't have a next level page table type,
 * GTT_TYPE_INVALID will be returned. This is useful when traversing a
 * page table.
 */

struct gtt_type_table_entry {
	int entry_type;
165
	int pt_type;
166 167 168 169
	int next_pt_type;
	int pse_entry_type;
};

170
#define GTT_TYPE_TABLE_ENTRY(type, e_type, cpt_type, npt_type, pse_type) \
171 172
	[type] = { \
		.entry_type = e_type, \
173
		.pt_type = cpt_type, \
174 175 176 177 178 179 180
		.next_pt_type = npt_type, \
		.pse_entry_type = pse_type, \
	}

static struct gtt_type_table_entry gtt_type_table[] = {
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_ROOT_L4_ENTRY,
			GTT_TYPE_PPGTT_ROOT_L4_ENTRY,
181
			GTT_TYPE_INVALID,
182 183 184 185
			GTT_TYPE_PPGTT_PML4_PT,
			GTT_TYPE_INVALID),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_PML4_PT,
			GTT_TYPE_PPGTT_PML4_ENTRY,
186
			GTT_TYPE_PPGTT_PML4_PT,
187 188 189 190
			GTT_TYPE_PPGTT_PDP_PT,
			GTT_TYPE_INVALID),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_PML4_ENTRY,
			GTT_TYPE_PPGTT_PML4_ENTRY,
191
			GTT_TYPE_PPGTT_PML4_PT,
192 193 194 195
			GTT_TYPE_PPGTT_PDP_PT,
			GTT_TYPE_INVALID),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_PDP_PT,
			GTT_TYPE_PPGTT_PDP_ENTRY,
196
			GTT_TYPE_PPGTT_PDP_PT,
197 198 199 200
			GTT_TYPE_PPGTT_PDE_PT,
			GTT_TYPE_PPGTT_PTE_1G_ENTRY),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_ROOT_L3_ENTRY,
			GTT_TYPE_PPGTT_ROOT_L3_ENTRY,
201
			GTT_TYPE_INVALID,
202 203 204 205
			GTT_TYPE_PPGTT_PDE_PT,
			GTT_TYPE_PPGTT_PTE_1G_ENTRY),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_PDP_ENTRY,
			GTT_TYPE_PPGTT_PDP_ENTRY,
206
			GTT_TYPE_PPGTT_PDP_PT,
207 208 209 210
			GTT_TYPE_PPGTT_PDE_PT,
			GTT_TYPE_PPGTT_PTE_1G_ENTRY),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_PDE_PT,
			GTT_TYPE_PPGTT_PDE_ENTRY,
211
			GTT_TYPE_PPGTT_PDE_PT,
212 213 214 215
			GTT_TYPE_PPGTT_PTE_PT,
			GTT_TYPE_PPGTT_PTE_2M_ENTRY),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_PDE_ENTRY,
			GTT_TYPE_PPGTT_PDE_ENTRY,
216
			GTT_TYPE_PPGTT_PDE_PT,
217 218 219 220
			GTT_TYPE_PPGTT_PTE_PT,
			GTT_TYPE_PPGTT_PTE_2M_ENTRY),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_PTE_PT,
			GTT_TYPE_PPGTT_PTE_4K_ENTRY,
221
			GTT_TYPE_PPGTT_PTE_PT,
222 223 224 225
			GTT_TYPE_INVALID,
			GTT_TYPE_INVALID),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_PTE_4K_ENTRY,
			GTT_TYPE_PPGTT_PTE_4K_ENTRY,
226
			GTT_TYPE_PPGTT_PTE_PT,
227 228 229 230
			GTT_TYPE_INVALID,
			GTT_TYPE_INVALID),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_PTE_2M_ENTRY,
			GTT_TYPE_PPGTT_PDE_ENTRY,
231
			GTT_TYPE_PPGTT_PDE_PT,
232 233 234 235
			GTT_TYPE_INVALID,
			GTT_TYPE_PPGTT_PTE_2M_ENTRY),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_PPGTT_PTE_1G_ENTRY,
			GTT_TYPE_PPGTT_PDP_ENTRY,
236
			GTT_TYPE_PPGTT_PDP_PT,
237 238 239 240 241
			GTT_TYPE_INVALID,
			GTT_TYPE_PPGTT_PTE_1G_ENTRY),
	GTT_TYPE_TABLE_ENTRY(GTT_TYPE_GGTT_PTE,
			GTT_TYPE_GGTT_PTE,
			GTT_TYPE_INVALID,
242
			GTT_TYPE_INVALID,
243 244 245 246 247 248 249 250
			GTT_TYPE_INVALID),
};

static inline int get_next_pt_type(int type)
{
	return gtt_type_table[type].next_pt_type;
}

251 252 253 254 255
static inline int get_pt_type(int type)
{
	return gtt_type_table[type].pt_type;
}

256 257 258 259 260 261 262 263 264 265 266 267
static inline int get_entry_type(int type)
{
	return gtt_type_table[type].entry_type;
}

static inline int get_pse_type(int type)
{
	return gtt_type_table[type].pse_entry_type;
}

static u64 read_pte64(struct drm_i915_private *dev_priv, unsigned long index)
{
268
	void __iomem *addr = (gen8_pte_t __iomem *)dev_priv->ggtt.gsm + index;
269 270

	return readq(addr);
271 272
}

273
static void ggtt_invalidate(struct drm_i915_private *dev_priv)
274 275 276 277 278 279
{
	mmio_hw_access_pre(dev_priv);
	I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
	mmio_hw_access_post(dev_priv);
}

280 281 282
static void write_pte64(struct drm_i915_private *dev_priv,
		unsigned long index, u64 pte)
{
283
	void __iomem *addr = (gen8_pte_t __iomem *)dev_priv->ggtt.gsm + index;
284 285 286 287

	writeq(pte, addr);
}

288
static inline int gtt_get_entry64(void *pt,
289 290 291 292 293 294 295 296
		struct intel_gvt_gtt_entry *e,
		unsigned long index, bool hypervisor_access, unsigned long gpa,
		struct intel_vgpu *vgpu)
{
	const struct intel_gvt_device_info *info = &vgpu->gvt->device_info;
	int ret;

	if (WARN_ON(info->gtt_entry_size != 8))
297
		return -EINVAL;
298 299 300 301 302

	if (hypervisor_access) {
		ret = intel_gvt_hypervisor_read_gpa(vgpu, gpa +
				(index << info->gtt_entry_size_shift),
				&e->val64, 8);
303 304
		if (WARN_ON(ret))
			return ret;
305 306 307 308 309
	} else if (!pt) {
		e->val64 = read_pte64(vgpu->gvt->dev_priv, index);
	} else {
		e->val64 = *((u64 *)pt + index);
	}
310
	return 0;
311 312
}

313
static inline int gtt_set_entry64(void *pt,
314 315 316 317 318 319 320 321
		struct intel_gvt_gtt_entry *e,
		unsigned long index, bool hypervisor_access, unsigned long gpa,
		struct intel_vgpu *vgpu)
{
	const struct intel_gvt_device_info *info = &vgpu->gvt->device_info;
	int ret;

	if (WARN_ON(info->gtt_entry_size != 8))
322
		return -EINVAL;
323 324 325 326 327

	if (hypervisor_access) {
		ret = intel_gvt_hypervisor_write_gpa(vgpu, gpa +
				(index << info->gtt_entry_size_shift),
				&e->val64, 8);
328 329
		if (WARN_ON(ret))
			return ret;
330 331 332 333 334
	} else if (!pt) {
		write_pte64(vgpu->gvt->dev_priv, index, e->val64);
	} else {
		*((u64 *)pt + index) = e->val64;
	}
335
	return 0;
336 337 338 339
}

#define GTT_HAW 46

340 341 342
#define ADDR_1G_MASK (((1UL << (GTT_HAW - 30)) - 1) << 30)
#define ADDR_2M_MASK (((1UL << (GTT_HAW - 21)) - 1) << 21)
#define ADDR_4K_MASK (((1UL << (GTT_HAW - 12)) - 1) << 12)
343 344 345 346 347 348

static unsigned long gen8_gtt_get_pfn(struct intel_gvt_gtt_entry *e)
{
	unsigned long pfn;

	if (e->type == GTT_TYPE_PPGTT_PTE_1G_ENTRY)
349
		pfn = (e->val64 & ADDR_1G_MASK) >> PAGE_SHIFT;
350
	else if (e->type == GTT_TYPE_PPGTT_PTE_2M_ENTRY)
351
		pfn = (e->val64 & ADDR_2M_MASK) >> PAGE_SHIFT;
352
	else
353
		pfn = (e->val64 & ADDR_4K_MASK) >> PAGE_SHIFT;
354 355 356 357 358 359 360
	return pfn;
}

static void gen8_gtt_set_pfn(struct intel_gvt_gtt_entry *e, unsigned long pfn)
{
	if (e->type == GTT_TYPE_PPGTT_PTE_1G_ENTRY) {
		e->val64 &= ~ADDR_1G_MASK;
361
		pfn &= (ADDR_1G_MASK >> PAGE_SHIFT);
362 363
	} else if (e->type == GTT_TYPE_PPGTT_PTE_2M_ENTRY) {
		e->val64 &= ~ADDR_2M_MASK;
364
		pfn &= (ADDR_2M_MASK >> PAGE_SHIFT);
365 366
	} else {
		e->val64 &= ~ADDR_4K_MASK;
367
		pfn &= (ADDR_4K_MASK >> PAGE_SHIFT);
368 369
	}

370
	e->val64 |= (pfn << PAGE_SHIFT);
371 372 373 374 375 376 377 378 379
}

static bool gen8_gtt_test_pse(struct intel_gvt_gtt_entry *e)
{
	/* Entry doesn't have PSE bit. */
	if (get_pse_type(e->type) == GTT_TYPE_INVALID)
		return false;

	e->type = get_entry_type(e->type);
380
	if (!(e->val64 & _PAGE_PSE))
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
		return false;

	e->type = get_pse_type(e->type);
	return true;
}

static bool gen8_gtt_test_present(struct intel_gvt_gtt_entry *e)
{
	/*
	 * i915 writes PDP root pointer registers without present bit,
	 * it also works, so we need to treat root pointer entry
	 * specifically.
	 */
	if (e->type == GTT_TYPE_PPGTT_ROOT_L3_ENTRY
			|| e->type == GTT_TYPE_PPGTT_ROOT_L4_ENTRY)
		return (e->val64 != 0);
	else
398
		return (e->val64 & _PAGE_PRESENT);
399 400 401 402
}

static void gtt_entry_clear_present(struct intel_gvt_gtt_entry *e)
{
403
	e->val64 &= ~_PAGE_PRESENT;
404 405
}

406 407
static void gtt_entry_set_present(struct intel_gvt_gtt_entry *e)
{
408
	e->val64 |= _PAGE_PRESENT;
409 410 411 412 413 414 415
}

/*
 * Per-platform GMA routines.
 */
static unsigned long gma_to_ggtt_pte_index(unsigned long gma)
{
Z
Zhi Wang 已提交
416
	unsigned long x = (gma >> I915_GTT_PAGE_SHIFT);
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439

	trace_gma_index(__func__, gma, x);
	return x;
}

#define DEFINE_PPGTT_GMA_TO_INDEX(prefix, ename, exp) \
static unsigned long prefix##_gma_to_##ename##_index(unsigned long gma) \
{ \
	unsigned long x = (exp); \
	trace_gma_index(__func__, gma, x); \
	return x; \
}

DEFINE_PPGTT_GMA_TO_INDEX(gen8, pte, (gma >> 12 & 0x1ff));
DEFINE_PPGTT_GMA_TO_INDEX(gen8, pde, (gma >> 21 & 0x1ff));
DEFINE_PPGTT_GMA_TO_INDEX(gen8, l3_pdp, (gma >> 30 & 0x3));
DEFINE_PPGTT_GMA_TO_INDEX(gen8, l4_pdp, (gma >> 30 & 0x1ff));
DEFINE_PPGTT_GMA_TO_INDEX(gen8, pml4, (gma >> 39 & 0x1ff));

static struct intel_gvt_gtt_pte_ops gen8_gtt_pte_ops = {
	.get_entry = gtt_get_entry64,
	.set_entry = gtt_set_entry64,
	.clear_present = gtt_entry_clear_present,
440
	.set_present = gtt_entry_set_present,
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
	.test_present = gen8_gtt_test_present,
	.test_pse = gen8_gtt_test_pse,
	.get_pfn = gen8_gtt_get_pfn,
	.set_pfn = gen8_gtt_set_pfn,
};

static struct intel_gvt_gtt_gma_ops gen8_gtt_gma_ops = {
	.gma_to_ggtt_pte_index = gma_to_ggtt_pte_index,
	.gma_to_pte_index = gen8_gma_to_pte_index,
	.gma_to_pde_index = gen8_gma_to_pde_index,
	.gma_to_l3_pdp_index = gen8_gma_to_l3_pdp_index,
	.gma_to_l4_pdp_index = gen8_gma_to_l4_pdp_index,
	.gma_to_pml4_index = gen8_gma_to_pml4_index,
};

/*
 * MM helpers.
 */
459 460 461
static void _ppgtt_get_root_entry(struct intel_vgpu_mm *mm,
		struct intel_gvt_gtt_entry *entry, unsigned long index,
		bool guest)
462
{
463
	struct intel_gvt_gtt_pte_ops *pte_ops = mm->vgpu->gvt->gtt.pte_ops;
464

465
	GEM_BUG_ON(mm->type != INTEL_GVT_MM_PPGTT);
466

467 468 469 470
	entry->type = mm->ppgtt_mm.root_entry_type;
	pte_ops->get_entry(guest ? mm->ppgtt_mm.guest_pdps :
			   mm->ppgtt_mm.shadow_pdps,
			   entry, index, false, 0, mm->vgpu);
471

472
	pte_ops->test_pse(entry);
473 474
}

475 476
static inline void ppgtt_get_guest_root_entry(struct intel_vgpu_mm *mm,
		struct intel_gvt_gtt_entry *entry, unsigned long index)
477
{
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
	_ppgtt_get_root_entry(mm, entry, index, true);
}

static inline void ppgtt_get_shadow_root_entry(struct intel_vgpu_mm *mm,
		struct intel_gvt_gtt_entry *entry, unsigned long index)
{
	_ppgtt_get_root_entry(mm, entry, index, false);
}

static void _ppgtt_set_root_entry(struct intel_vgpu_mm *mm,
		struct intel_gvt_gtt_entry *entry, unsigned long index,
		bool guest)
{
	struct intel_gvt_gtt_pte_ops *pte_ops = mm->vgpu->gvt->gtt.pte_ops;

	pte_ops->set_entry(guest ? mm->ppgtt_mm.guest_pdps :
			   mm->ppgtt_mm.shadow_pdps,
			   entry, index, false, 0, mm->vgpu);
}

static inline void ppgtt_set_guest_root_entry(struct intel_vgpu_mm *mm,
		struct intel_gvt_gtt_entry *entry, unsigned long index)
{
	_ppgtt_set_root_entry(mm, entry, index, true);
}

static inline void ppgtt_set_shadow_root_entry(struct intel_vgpu_mm *mm,
		struct intel_gvt_gtt_entry *entry, unsigned long index)
{
	_ppgtt_set_root_entry(mm, entry, index, false);
}

static void ggtt_get_guest_entry(struct intel_vgpu_mm *mm,
		struct intel_gvt_gtt_entry *entry, unsigned long index)
{
	struct intel_gvt_gtt_pte_ops *pte_ops = mm->vgpu->gvt->gtt.pte_ops;

	GEM_BUG_ON(mm->type != INTEL_GVT_MM_GGTT);

	entry->type = GTT_TYPE_GGTT_PTE;
	pte_ops->get_entry(mm->ggtt_mm.virtual_ggtt, entry, index,
			   false, 0, mm->vgpu);
}

static void ggtt_set_guest_entry(struct intel_vgpu_mm *mm,
		struct intel_gvt_gtt_entry *entry, unsigned long index)
{
	struct intel_gvt_gtt_pte_ops *pte_ops = mm->vgpu->gvt->gtt.pte_ops;

	GEM_BUG_ON(mm->type != INTEL_GVT_MM_GGTT);

	pte_ops->set_entry(mm->ggtt_mm.virtual_ggtt, entry, index,
			   false, 0, mm->vgpu);
}

static void ggtt_set_host_entry(struct intel_vgpu_mm *mm,
		struct intel_gvt_gtt_entry *entry, unsigned long index)
{
	struct intel_gvt_gtt_pte_ops *pte_ops = mm->vgpu->gvt->gtt.pte_ops;

	GEM_BUG_ON(mm->type != INTEL_GVT_MM_GGTT);
539

540
	pte_ops->set_entry(NULL, entry, index, false, 0, mm->vgpu);
541 542 543 544 545
}

/*
 * PPGTT shadow page table helpers.
 */
546
static inline int ppgtt_spt_get_entry(
547 548 549 550 551 552 553
		struct intel_vgpu_ppgtt_spt *spt,
		void *page_table, int type,
		struct intel_gvt_gtt_entry *e, unsigned long index,
		bool guest)
{
	struct intel_gvt *gvt = spt->vgpu->gvt;
	struct intel_gvt_gtt_pte_ops *ops = gvt->gtt.pte_ops;
554
	int ret;
555 556 557 558

	e->type = get_entry_type(type);

	if (WARN(!gtt_type_is_entry(e->type), "invalid entry type\n"))
559
		return -EINVAL;
560

561
	ret = ops->get_entry(page_table, e, index, guest,
562
			spt->guest_page.gfn << I915_GTT_PAGE_SHIFT,
563
			spt->vgpu);
564 565 566
	if (ret)
		return ret;

567
	ops->test_pse(e);
568 569 570

	gvt_vdbg_mm("read ppgtt entry, spt type %d, entry type %d, index %lu, value %llx\n",
		    type, e->type, index, e->val64);
571
	return 0;
572 573
}

574
static inline int ppgtt_spt_set_entry(
575 576 577 578 579 580 581 582 583
		struct intel_vgpu_ppgtt_spt *spt,
		void *page_table, int type,
		struct intel_gvt_gtt_entry *e, unsigned long index,
		bool guest)
{
	struct intel_gvt *gvt = spt->vgpu->gvt;
	struct intel_gvt_gtt_pte_ops *ops = gvt->gtt.pte_ops;

	if (WARN(!gtt_type_is_entry(e->type), "invalid entry type\n"))
584
		return -EINVAL;
585

586 587 588
	gvt_vdbg_mm("set ppgtt entry, spt type %d, entry type %d, index %lu, value %llx\n",
		    type, e->type, index, e->val64);

589
	return ops->set_entry(page_table, e, index, guest,
590
			spt->guest_page.gfn << I915_GTT_PAGE_SHIFT,
591 592 593 594 595
			spt->vgpu);
}

#define ppgtt_get_guest_entry(spt, e, index) \
	ppgtt_spt_get_entry(spt, NULL, \
596
		spt->guest_page.type, e, index, true)
597 598 599

#define ppgtt_set_guest_entry(spt, e, index) \
	ppgtt_spt_set_entry(spt, NULL, \
600
		spt->guest_page.type, e, index, true)
601 602 603 604 605 606 607 608 609

#define ppgtt_get_shadow_entry(spt, e, index) \
	ppgtt_spt_get_entry(spt, spt->shadow_page.vaddr, \
		spt->shadow_page.type, e, index, false)

#define ppgtt_set_shadow_entry(spt, e, index) \
	ppgtt_spt_set_entry(spt, spt->shadow_page.vaddr, \
		spt->shadow_page.type, e, index, false)

610
static void *alloc_spt(gfp_t gfp_mask)
611
{
612
	struct intel_vgpu_ppgtt_spt *spt;
613

614 615 616
	spt = kzalloc(sizeof(*spt), gfp_mask);
	if (!spt)
		return NULL;
617

618 619 620 621 622 623
	spt->shadow_page.page = alloc_page(gfp_mask);
	if (!spt->shadow_page.page) {
		kfree(spt);
		return NULL;
	}
	return spt;
624 625
}

626
static void free_spt(struct intel_vgpu_ppgtt_spt *spt)
627
{
628 629
	__free_page(spt->shadow_page.page);
	kfree(spt);
630 631
}

632 633 634
static int detach_oos_page(struct intel_vgpu *vgpu,
		struct intel_vgpu_oos_page *oos_page);

635
static void ppgtt_free_spt(struct intel_vgpu_ppgtt_spt *spt)
636
{
637
	struct device *kdev = &spt->vgpu->gvt->dev_priv->drm.pdev->dev;
638

639
	trace_spt_free(spt->vgpu->id, spt, spt->guest_page.type);
640

641 642 643 644
	dma_unmap_page(kdev, spt->shadow_page.mfn << I915_GTT_PAGE_SHIFT, 4096,
		       PCI_DMA_BIDIRECTIONAL);
	if (!hlist_unhashed(&spt->node))
		hash_del(&spt->node);
645

646 647
	if (spt->guest_page.oos_page)
		detach_oos_page(spt->vgpu, spt->guest_page.oos_page);
648

649
	intel_vgpu_unregister_page_track(spt->vgpu, spt->guest_page.gfn);
650 651 652 653 654

	list_del_init(&spt->post_shadow_list);
	free_spt(spt);
}

655
static void ppgtt_free_all_spt(struct intel_vgpu *vgpu)
656 657
{
	struct hlist_node *n;
658
	struct intel_vgpu_ppgtt_spt *spt;
659 660
	int i;

661 662
	hash_for_each_safe(vgpu->gtt.spt_hash_table, i, n, spt, node)
		ppgtt_free_spt(spt);
663 664
}

665
static int ppgtt_handle_guest_write_page_table_bytes(
666
		struct intel_vgpu_ppgtt_spt *spt,
667 668
		u64 pa, void *p_data, int bytes);

669 670 671
static int ppgtt_write_protection_handler(
		struct intel_vgpu_page_track *page_track,
		u64 gpa, void *data, int bytes)
672
{
673 674
	struct intel_vgpu_ppgtt_spt *spt = page_track->priv_data;

675 676 677 678 679
	int ret;

	if (bytes != 4 && bytes != 8)
		return -EINVAL;

680
	ret = ppgtt_handle_guest_write_page_table_bytes(spt, gpa, data, bytes);
681 682 683 684 685
	if (ret)
		return ret;
	return ret;
}

686 687 688 689 690 691
/* Find a spt by guest gfn. */
static struct intel_vgpu_ppgtt_spt *intel_vgpu_find_spt_by_gfn(
		struct intel_vgpu *vgpu, unsigned long gfn)
{
	struct intel_vgpu_page_track *track;

692 693 694
	track = intel_vgpu_find_page_track(vgpu, gfn);
	if (track && track->handler == ppgtt_write_protection_handler)
		return track->priv_data;
695 696 697 698 699 700 701 702 703 704

	return NULL;
}

/* Find the spt by shadow page mfn. */
static struct intel_vgpu_ppgtt_spt *intel_vgpu_find_spt_by_mfn(
		struct intel_vgpu *vgpu, unsigned long mfn)
{
	struct intel_vgpu_ppgtt_spt *spt;

705
	hash_for_each_possible(vgpu->gtt.spt_hash_table, spt, node, mfn) {
706 707 708 709 710 711
		if (spt->shadow_page.mfn == mfn)
			return spt;
	}
	return NULL;
}

712
static int reclaim_one_ppgtt_mm(struct intel_gvt *gvt);
713

714
static struct intel_vgpu_ppgtt_spt *ppgtt_alloc_spt(
715 716
		struct intel_vgpu *vgpu, int type, unsigned long gfn)
{
717
	struct device *kdev = &vgpu->gvt->dev_priv->drm.pdev->dev;
718
	struct intel_vgpu_ppgtt_spt *spt = NULL;
719
	dma_addr_t daddr;
720
	int ret;
721 722 723 724

retry:
	spt = alloc_spt(GFP_KERNEL | __GFP_ZERO);
	if (!spt) {
725
		if (reclaim_one_ppgtt_mm(vgpu->gvt))
726 727
			goto retry;

728
		gvt_vgpu_err("fail to allocate ppgtt shadow page\n");
729 730 731 732 733 734 735 736
		return ERR_PTR(-ENOMEM);
	}

	spt->vgpu = vgpu;
	atomic_set(&spt->refcount, 1);
	INIT_LIST_HEAD(&spt->post_shadow_list);

	/*
737
	 * Init shadow_page.
738
	 */
739 740 741 742 743 744 745
	spt->shadow_page.type = type;
	daddr = dma_map_page(kdev, spt->shadow_page.page,
			     0, 4096, PCI_DMA_BIDIRECTIONAL);
	if (dma_mapping_error(kdev, daddr)) {
		gvt_vgpu_err("fail to map dma addr\n");
		free_spt(spt);
		return ERR_PTR(-EINVAL);
746
	}
747 748
	spt->shadow_page.vaddr = page_address(spt->shadow_page.page);
	spt->shadow_page.mfn = daddr >> I915_GTT_PAGE_SHIFT;
749

750 751 752 753 754
	/*
	 * Init guest_page.
	 */
	spt->guest_page.type = type;
	spt->guest_page.gfn = gfn;
755

756 757 758 759 760 761 762
	ret = intel_vgpu_register_page_track(vgpu, spt->guest_page.gfn,
					ppgtt_write_protection_handler, spt);
	if (ret) {
		free_spt(spt);
		dma_unmap_page(kdev, daddr, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
		return ERR_PTR(ret);
	}
763

764
	INIT_HLIST_NODE(&spt->node);
765
	hash_add(vgpu->gtt.spt_hash_table, &spt->node, spt->shadow_page.mfn);
766

767 768
	trace_spt_alloc(vgpu->id, spt, type, spt->shadow_page.mfn, gfn);
	return spt;
769 770 771 772 773 774
}

#define pt_entry_size_shift(spt) \
	((spt)->vgpu->gvt->device_info.gtt_entry_size_shift)

#define pt_entries(spt) \
Z
Zhi Wang 已提交
775
	(I915_GTT_PAGE_SIZE >> pt_entry_size_shift(spt))
776 777 778

#define for_each_present_guest_entry(spt, e, i) \
	for (i = 0; i < pt_entries(spt); i++) \
779 780
		if (!ppgtt_get_guest_entry(spt, e, i) && \
		    spt->vgpu->gvt->gtt.pte_ops->test_present(e))
781 782 783

#define for_each_present_shadow_entry(spt, e, i) \
	for (i = 0; i < pt_entries(spt); i++) \
784 785
		if (!ppgtt_get_shadow_entry(spt, e, i) && \
		    spt->vgpu->gvt->gtt.pte_ops->test_present(e))
786

787
static void ppgtt_get_spt(struct intel_vgpu_ppgtt_spt *spt)
788 789 790 791 792 793 794 795
{
	int v = atomic_read(&spt->refcount);

	trace_spt_refcount(spt->vgpu->id, "inc", spt, v, (v + 1));

	atomic_inc(&spt->refcount);
}

796
static int ppgtt_invalidate_spt(struct intel_vgpu_ppgtt_spt *spt);
797

798
static int ppgtt_invalidate_spt_by_shadow_entry(struct intel_vgpu *vgpu,
799 800 801 802
		struct intel_gvt_gtt_entry *e)
{
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
	struct intel_vgpu_ppgtt_spt *s;
803
	intel_gvt_gtt_type_t cur_pt_type;
804

805
	GEM_BUG_ON(!gtt_type_is_pt(get_next_pt_type(e->type)));
806

807 808 809 810 811 812 813
	if (e->type != GTT_TYPE_PPGTT_ROOT_L3_ENTRY
		&& e->type != GTT_TYPE_PPGTT_ROOT_L4_ENTRY) {
		cur_pt_type = get_next_pt_type(e->type) + 1;
		if (ops->get_pfn(e) ==
			vgpu->gtt.scratch_pt[cur_pt_type].page_mfn)
			return 0;
	}
814
	s = intel_vgpu_find_spt_by_mfn(vgpu, ops->get_pfn(e));
815
	if (!s) {
816 817
		gvt_vgpu_err("fail to find shadow page: mfn: 0x%lx\n",
				ops->get_pfn(e));
818 819
		return -ENXIO;
	}
820
	return ppgtt_invalidate_spt(s);
821 822
}

823
static int ppgtt_invalidate_spt(struct intel_vgpu_ppgtt_spt *spt)
824
{
825
	struct intel_vgpu *vgpu = spt->vgpu;
826 827 828 829 830 831
	struct intel_gvt_gtt_entry e;
	unsigned long index;
	int ret;
	int v = atomic_read(&spt->refcount);

	trace_spt_change(spt->vgpu->id, "die", spt,
832
			spt->guest_page.gfn, spt->shadow_page.type);
833 834 835 836 837 838 839 840 841 842

	trace_spt_refcount(spt->vgpu->id, "dec", spt, v, (v - 1));

	if (atomic_dec_return(&spt->refcount) > 0)
		return 0;

	if (gtt_type_is_pte_pt(spt->shadow_page.type))
		goto release;

	for_each_present_shadow_entry(spt, &e, index) {
843 844 845 846 847 848 849 850 851 852 853 854
		switch (e.type) {
		case GTT_TYPE_PPGTT_PTE_4K_ENTRY:
			gvt_vdbg_mm("invalidate 4K entry\n");
			continue;
		case GTT_TYPE_PPGTT_PTE_2M_ENTRY:
		case GTT_TYPE_PPGTT_PTE_1G_ENTRY:
			WARN(1, "GVT doesn't support 2M/1GB page\n");
			continue;
		case GTT_TYPE_PPGTT_PML4_ENTRY:
		case GTT_TYPE_PPGTT_PDP_ENTRY:
		case GTT_TYPE_PPGTT_PDE_ENTRY:
			gvt_vdbg_mm("invalidate PMUL4/PDP/PDE entry\n");
855
			ret = ppgtt_invalidate_spt_by_shadow_entry(
856 857 858 859 860 861
					spt->vgpu, &e);
			if (ret)
				goto fail;
			break;
		default:
			GEM_BUG_ON(1);
862 863 864 865
		}
	}
release:
	trace_spt_change(spt->vgpu->id, "release", spt,
866
			 spt->guest_page.gfn, spt->shadow_page.type);
867
	ppgtt_free_spt(spt);
868 869
	return 0;
fail:
870 871
	gvt_vgpu_err("fail: shadow page %p shadow entry 0x%llx type %d\n",
			spt, e.val64, e.type);
872 873 874
	return ret;
}

875
static int ppgtt_populate_spt(struct intel_vgpu_ppgtt_spt *spt);
876

877
static struct intel_vgpu_ppgtt_spt *ppgtt_populate_spt_by_guest_entry(
878 879 880
		struct intel_vgpu *vgpu, struct intel_gvt_gtt_entry *we)
{
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
881
	struct intel_vgpu_ppgtt_spt *spt = NULL;
882 883
	int ret;

884
	GEM_BUG_ON(!gtt_type_is_pt(get_next_pt_type(we->type)));
885

886 887
	spt = intel_vgpu_find_spt_by_gfn(vgpu, ops->get_pfn(we));
	if (spt)
888
		ppgtt_get_spt(spt);
889
	else {
890 891
		int type = get_next_pt_type(we->type);

892
		spt = ppgtt_alloc_spt(vgpu, type, ops->get_pfn(we));
893 894
		if (IS_ERR(spt)) {
			ret = PTR_ERR(spt);
895 896 897
			goto fail;
		}

898
		ret = intel_vgpu_enable_page_track(vgpu, spt->guest_page.gfn);
899 900 901
		if (ret)
			goto fail;

902
		ret = ppgtt_populate_spt(spt);
903 904 905
		if (ret)
			goto fail;

906 907
		trace_spt_change(vgpu->id, "new", spt, spt->guest_page.gfn,
				 spt->shadow_page.type);
908
	}
909
	return spt;
910
fail:
911
	gvt_vgpu_err("fail: shadow page %p guest entry 0x%llx type %d\n",
912
		     spt, we->val64, we->type);
913 914 915 916 917 918 919 920 921 922 923 924 925 926
	return ERR_PTR(ret);
}

static inline void ppgtt_generate_shadow_entry(struct intel_gvt_gtt_entry *se,
		struct intel_vgpu_ppgtt_spt *s, struct intel_gvt_gtt_entry *ge)
{
	struct intel_gvt_gtt_pte_ops *ops = s->vgpu->gvt->gtt.pte_ops;

	se->type = ge->type;
	se->val64 = ge->val64;

	ops->set_pfn(se, s->shadow_page.mfn);
}

927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
static int ppgtt_populate_shadow_entry(struct intel_vgpu *vgpu,
	struct intel_vgpu_ppgtt_spt *spt, unsigned long index,
	struct intel_gvt_gtt_entry *ge)
{
	struct intel_gvt_gtt_pte_ops *pte_ops = vgpu->gvt->gtt.pte_ops;
	struct intel_gvt_gtt_entry se = *ge;
	unsigned long gfn, mfn;

	if (!pte_ops->test_present(ge))
		return 0;

	gfn = pte_ops->get_pfn(ge);

	switch (ge->type) {
	case GTT_TYPE_PPGTT_PTE_4K_ENTRY:
		gvt_vdbg_mm("shadow 4K gtt entry\n");
		break;
	case GTT_TYPE_PPGTT_PTE_2M_ENTRY:
	case GTT_TYPE_PPGTT_PTE_1G_ENTRY:
		gvt_vgpu_err("GVT doesn't support 2M/1GB entry\n");
		return -EINVAL;
	default:
		GEM_BUG_ON(1);
	};

	/* direct shadow */
	mfn = intel_gvt_hypervisor_gfn_to_mfn(vgpu, gfn);
	if (mfn == INTEL_GVT_INVALID_ADDR)
		return -ENXIO;

	pte_ops->set_pfn(&se, mfn);
	ppgtt_set_shadow_entry(spt, &se, index);
	return 0;
}

962
static int ppgtt_populate_spt(struct intel_vgpu_ppgtt_spt *spt)
963 964
{
	struct intel_vgpu *vgpu = spt->vgpu;
965 966
	struct intel_gvt *gvt = vgpu->gvt;
	struct intel_gvt_gtt_pte_ops *ops = gvt->gtt.pte_ops;
967 968
	struct intel_vgpu_ppgtt_spt *s;
	struct intel_gvt_gtt_entry se, ge;
969
	unsigned long gfn, i;
970 971 972
	int ret;

	trace_spt_change(spt->vgpu->id, "born", spt,
973
			 spt->guest_page.gfn, spt->shadow_page.type);
974

975 976
	for_each_present_guest_entry(spt, &ge, i) {
		if (gtt_type_is_pt(get_next_pt_type(ge.type))) {
977
			s = ppgtt_populate_spt_by_guest_entry(vgpu, &ge);
978 979 980 981 982 983 984 985
			if (IS_ERR(s)) {
				ret = PTR_ERR(s);
				goto fail;
			}
			ppgtt_get_shadow_entry(spt, &se, i);
			ppgtt_generate_shadow_entry(&se, s, &ge);
			ppgtt_set_shadow_entry(spt, &se, i);
		} else {
986
			gfn = ops->get_pfn(&ge);
987
			if (!intel_gvt_hypervisor_is_valid_gfn(vgpu, gfn)) {
988
				ops->set_pfn(&se, gvt->gtt.scratch_mfn);
989 990 991
				ppgtt_set_shadow_entry(spt, &se, i);
				continue;
			}
992

993 994 995
			ret = ppgtt_populate_shadow_entry(vgpu, spt, i, &ge);
			if (ret)
				goto fail;
996 997 998 999
		}
	}
	return 0;
fail:
1000 1001
	gvt_vgpu_err("fail: shadow page %p guest entry 0x%llx type %d\n",
			spt, ge.val64, ge.type);
1002 1003 1004
	return ret;
}

1005
static int ppgtt_handle_guest_entry_removal(struct intel_vgpu_ppgtt_spt *spt,
1006
		struct intel_gvt_gtt_entry *se, unsigned long index)
1007 1008 1009 1010 1011
{
	struct intel_vgpu *vgpu = spt->vgpu;
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
	int ret;

1012 1013
	trace_spt_guest_change(spt->vgpu->id, "remove", spt,
			       spt->shadow_page.type, se->val64, index);
1014

1015 1016 1017
	gvt_vdbg_mm("destroy old shadow entry, type %d, index %lu, value %llx\n",
		    se->type, index, se->val64);

1018
	if (!ops->test_present(se))
1019 1020
		return 0;

1021 1022
	if (ops->get_pfn(se) ==
	    vgpu->gtt.scratch_pt[spt->shadow_page.type].page_mfn)
1023 1024
		return 0;

1025
	if (gtt_type_is_pt(get_next_pt_type(se->type))) {
1026
		struct intel_vgpu_ppgtt_spt *s =
1027
			intel_vgpu_find_spt_by_mfn(vgpu, ops->get_pfn(se));
1028
		if (!s) {
1029
			gvt_vgpu_err("fail to find guest page\n");
1030 1031 1032
			ret = -ENXIO;
			goto fail;
		}
1033
		ret = ppgtt_invalidate_spt(s);
1034 1035 1036 1037 1038
		if (ret)
			goto fail;
	}
	return 0;
fail:
1039
	gvt_vgpu_err("fail: shadow page %p guest entry 0x%llx type %d\n",
1040
			spt, se->val64, se->type);
1041 1042 1043
	return ret;
}

1044
static int ppgtt_handle_guest_entry_add(struct intel_vgpu_ppgtt_spt *spt,
1045 1046 1047 1048 1049 1050 1051
		struct intel_gvt_gtt_entry *we, unsigned long index)
{
	struct intel_vgpu *vgpu = spt->vgpu;
	struct intel_gvt_gtt_entry m;
	struct intel_vgpu_ppgtt_spt *s;
	int ret;

1052 1053
	trace_spt_guest_change(spt->vgpu->id, "add", spt, spt->shadow_page.type,
			       we->val64, index);
1054

1055 1056 1057
	gvt_vdbg_mm("add shadow entry: type %d, index %lu, value %llx\n",
		    we->type, index, we->val64);

1058
	if (gtt_type_is_pt(get_next_pt_type(we->type))) {
1059
		s = ppgtt_populate_spt_by_guest_entry(vgpu, we);
1060 1061 1062 1063 1064 1065 1066 1067
		if (IS_ERR(s)) {
			ret = PTR_ERR(s);
			goto fail;
		}
		ppgtt_get_shadow_entry(spt, &m, index);
		ppgtt_generate_shadow_entry(&m, s, we);
		ppgtt_set_shadow_entry(spt, &m, index);
	} else {
1068
		ret = ppgtt_populate_shadow_entry(vgpu, spt, index, we);
1069 1070 1071 1072 1073
		if (ret)
			goto fail;
	}
	return 0;
fail:
1074 1075
	gvt_vgpu_err("fail: spt %p guest entry 0x%llx type %d\n",
		spt, we->val64, we->type);
1076 1077 1078 1079 1080 1081 1082 1083 1084
	return ret;
}

static int sync_oos_page(struct intel_vgpu *vgpu,
		struct intel_vgpu_oos_page *oos_page)
{
	const struct intel_gvt_device_info *info = &vgpu->gvt->device_info;
	struct intel_gvt *gvt = vgpu->gvt;
	struct intel_gvt_gtt_pte_ops *ops = gvt->gtt.pte_ops;
1085
	struct intel_vgpu_ppgtt_spt *spt = oos_page->spt;
1086
	struct intel_gvt_gtt_entry old, new;
1087 1088 1089 1090
	int index;
	int ret;

	trace_oos_change(vgpu->id, "sync", oos_page->id,
1091
			 spt, spt->guest_page.type);
1092

1093
	old.type = new.type = get_entry_type(spt->guest_page.type);
1094 1095
	old.val64 = new.val64 = 0;

Z
Zhi Wang 已提交
1096 1097
	for (index = 0; index < (I915_GTT_PAGE_SIZE >>
				info->gtt_entry_size_shift); index++) {
1098 1099
		ops->get_entry(oos_page->mem, &old, index, false, 0, vgpu);
		ops->get_entry(NULL, &new, index, true,
1100
			       spt->guest_page.gfn << PAGE_SHIFT, vgpu);
1101 1102 1103 1104 1105 1106

		if (old.val64 == new.val64
			&& !test_and_clear_bit(index, spt->post_shadow_bitmap))
			continue;

		trace_oos_sync(vgpu->id, oos_page->id,
1107
				spt, spt->guest_page.type,
1108 1109
				new.val64, index);

1110
		ret = ppgtt_populate_shadow_entry(vgpu, spt, index, &new);
1111 1112 1113 1114 1115 1116
		if (ret)
			return ret;

		ops->set_entry(oos_page->mem, &new, index, false, 0, vgpu);
	}

1117
	spt->guest_page.write_cnt = 0;
1118 1119 1120 1121 1122 1123 1124 1125
	list_del_init(&spt->post_shadow_list);
	return 0;
}

static int detach_oos_page(struct intel_vgpu *vgpu,
		struct intel_vgpu_oos_page *oos_page)
{
	struct intel_gvt *gvt = vgpu->gvt;
1126
	struct intel_vgpu_ppgtt_spt *spt = oos_page->spt;
1127 1128

	trace_oos_change(vgpu->id, "detach", oos_page->id,
1129
			 spt, spt->guest_page.type);
1130

1131 1132 1133
	spt->guest_page.write_cnt = 0;
	spt->guest_page.oos_page = NULL;
	oos_page->spt = NULL;
1134 1135 1136 1137 1138 1139 1140

	list_del_init(&oos_page->vm_list);
	list_move_tail(&oos_page->list, &gvt->gtt.oos_page_free_list_head);

	return 0;
}

1141 1142
static int attach_oos_page(struct intel_vgpu_oos_page *oos_page,
		struct intel_vgpu_ppgtt_spt *spt)
1143
{
1144
	struct intel_gvt *gvt = spt->vgpu->gvt;
1145 1146
	int ret;

1147 1148
	ret = intel_gvt_hypervisor_read_gpa(spt->vgpu,
			spt->guest_page.gfn << I915_GTT_PAGE_SHIFT,
Z
Zhi Wang 已提交
1149
			oos_page->mem, I915_GTT_PAGE_SIZE);
1150 1151 1152
	if (ret)
		return ret;

1153 1154
	oos_page->spt = spt;
	spt->guest_page.oos_page = oos_page;
1155 1156 1157

	list_move_tail(&oos_page->list, &gvt->gtt.oos_page_use_list_head);

1158 1159
	trace_oos_change(spt->vgpu->id, "attach", oos_page->id,
			 spt, spt->guest_page.type);
1160 1161 1162
	return 0;
}

1163
static int ppgtt_set_guest_page_sync(struct intel_vgpu_ppgtt_spt *spt)
1164
{
1165
	struct intel_vgpu_oos_page *oos_page = spt->guest_page.oos_page;
1166 1167
	int ret;

1168
	ret = intel_vgpu_enable_page_track(spt->vgpu, spt->guest_page.gfn);
1169 1170 1171
	if (ret)
		return ret;

1172 1173
	trace_oos_change(spt->vgpu->id, "set page sync", oos_page->id,
			 spt, spt->guest_page.type);
1174

1175 1176
	list_del_init(&oos_page->vm_list);
	return sync_oos_page(spt->vgpu, oos_page);
1177 1178
}

1179
static int ppgtt_allocate_oos_page(struct intel_vgpu_ppgtt_spt *spt)
1180
{
1181
	struct intel_gvt *gvt = spt->vgpu->gvt;
1182
	struct intel_gvt_gtt *gtt = &gvt->gtt;
1183
	struct intel_vgpu_oos_page *oos_page = spt->guest_page.oos_page;
1184 1185 1186 1187 1188 1189 1190
	int ret;

	WARN(oos_page, "shadow PPGTT page has already has a oos page\n");

	if (list_empty(&gtt->oos_page_free_list_head)) {
		oos_page = container_of(gtt->oos_page_use_list_head.next,
			struct intel_vgpu_oos_page, list);
1191
		ret = ppgtt_set_guest_page_sync(oos_page->spt);
1192 1193
		if (ret)
			return ret;
1194
		ret = detach_oos_page(spt->vgpu, oos_page);
1195 1196 1197 1198 1199
		if (ret)
			return ret;
	} else
		oos_page = container_of(gtt->oos_page_free_list_head.next,
			struct intel_vgpu_oos_page, list);
1200
	return attach_oos_page(oos_page, spt);
1201 1202
}

1203
static int ppgtt_set_guest_page_oos(struct intel_vgpu_ppgtt_spt *spt)
1204
{
1205
	struct intel_vgpu_oos_page *oos_page = spt->guest_page.oos_page;
1206 1207 1208 1209

	if (WARN(!oos_page, "shadow PPGTT page should have a oos page\n"))
		return -EINVAL;

1210 1211
	trace_oos_change(spt->vgpu->id, "set page out of sync", oos_page->id,
			 spt, spt->guest_page.type);
1212

1213
	list_add_tail(&oos_page->vm_list, &spt->vgpu->gtt.oos_page_list_head);
1214
	return intel_vgpu_disable_page_track(spt->vgpu, spt->guest_page.gfn);
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
}

/**
 * intel_vgpu_sync_oos_pages - sync all the out-of-synced shadow for vGPU
 * @vgpu: a vGPU
 *
 * This function is called before submitting a guest workload to host,
 * to sync all the out-of-synced shadow for vGPU
 *
 * Returns:
 * Zero on success, negative error code if failed.
 */
int intel_vgpu_sync_oos_pages(struct intel_vgpu *vgpu)
{
	struct list_head *pos, *n;
	struct intel_vgpu_oos_page *oos_page;
	int ret;

	if (!enable_out_of_sync)
		return 0;

	list_for_each_safe(pos, n, &vgpu->gtt.oos_page_list_head) {
		oos_page = container_of(pos,
				struct intel_vgpu_oos_page, vm_list);
1239
		ret = ppgtt_set_guest_page_sync(oos_page->spt);
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
		if (ret)
			return ret;
	}
	return 0;
}

/*
 * The heart of PPGTT shadow page table.
 */
static int ppgtt_handle_guest_write_page_table(
1250
		struct intel_vgpu_ppgtt_spt *spt,
1251 1252 1253
		struct intel_gvt_gtt_entry *we, unsigned long index)
{
	struct intel_vgpu *vgpu = spt->vgpu;
1254
	int type = spt->shadow_page.type;
1255
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
1256
	struct intel_gvt_gtt_entry old_se;
1257
	int new_present;
1258
	int ret;
1259 1260 1261

	new_present = ops->test_present(we);

1262 1263 1264 1265 1266
	/*
	 * Adding the new entry first and then removing the old one, that can
	 * guarantee the ppgtt table is validated during the window between
	 * adding and removal.
	 */
1267
	ppgtt_get_shadow_entry(spt, &old_se, index);
1268 1269

	if (new_present) {
1270
		ret = ppgtt_handle_guest_entry_add(spt, we, index);
1271 1272 1273
		if (ret)
			goto fail;
	}
1274

1275
	ret = ppgtt_handle_guest_entry_removal(spt, &old_se, index);
1276 1277 1278 1279
	if (ret)
		goto fail;

	if (!new_present) {
1280 1281
		ops->set_pfn(&old_se, vgpu->gtt.scratch_pt[type].page_mfn);
		ppgtt_set_shadow_entry(spt, &old_se, index);
1282 1283
	}

1284 1285
	return 0;
fail:
1286 1287
	gvt_vgpu_err("fail: shadow page %p guest entry 0x%llx type %d.\n",
			spt, we->val64, we->type);
1288 1289 1290
	return ret;
}

1291 1292


1293
static inline bool can_do_out_of_sync(struct intel_vgpu_ppgtt_spt *spt)
1294 1295
{
	return enable_out_of_sync
1296 1297
		&& gtt_type_is_pte_pt(spt->guest_page.type)
		&& spt->guest_page.write_cnt >= 2;
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
}

static void ppgtt_set_post_shadow(struct intel_vgpu_ppgtt_spt *spt,
		unsigned long index)
{
	set_bit(index, spt->post_shadow_bitmap);
	if (!list_empty(&spt->post_shadow_list))
		return;

	list_add_tail(&spt->post_shadow_list,
			&spt->vgpu->gtt.post_shadow_list_head);
}

/**
 * intel_vgpu_flush_post_shadow - flush the post shadow transactions
 * @vgpu: a vGPU
 *
 * This function is called before submitting a guest workload to host,
 * to flush all the post shadows for a vGPU.
 *
 * Returns:
 * Zero on success, negative error code if failed.
 */
int intel_vgpu_flush_post_shadow(struct intel_vgpu *vgpu)
{
	struct list_head *pos, *n;
	struct intel_vgpu_ppgtt_spt *spt;
1325
	struct intel_gvt_gtt_entry ge;
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
	unsigned long index;
	int ret;

	list_for_each_safe(pos, n, &vgpu->gtt.post_shadow_list_head) {
		spt = container_of(pos, struct intel_vgpu_ppgtt_spt,
				post_shadow_list);

		for_each_set_bit(index, spt->post_shadow_bitmap,
				GTT_ENTRY_NUM_IN_ONE_PAGE) {
			ppgtt_get_guest_entry(spt, &ge, index);

1337 1338
			ret = ppgtt_handle_guest_write_page_table(spt,
							&ge, index);
1339 1340 1341 1342 1343 1344 1345 1346 1347
			if (ret)
				return ret;
			clear_bit(index, spt->post_shadow_bitmap);
		}
		list_del_init(&spt->post_shadow_list);
	}
	return 0;
}

1348
static int ppgtt_handle_guest_write_page_table_bytes(
1349
		struct intel_vgpu_ppgtt_spt *spt,
1350 1351 1352 1353 1354
		u64 pa, void *p_data, int bytes)
{
	struct intel_vgpu *vgpu = spt->vgpu;
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
	const struct intel_gvt_device_info *info = &vgpu->gvt->device_info;
1355
	struct intel_gvt_gtt_entry we, se;
1356 1357 1358 1359 1360 1361 1362 1363 1364 1365
	unsigned long index;
	int ret;

	index = (pa & (PAGE_SIZE - 1)) >> info->gtt_entry_size_shift;

	ppgtt_get_guest_entry(spt, &we, index);

	ops->test_pse(&we);

	if (bytes == info->gtt_entry_size) {
1366
		ret = ppgtt_handle_guest_write_page_table(spt, &we, index);
1367 1368 1369 1370
		if (ret)
			return ret;
	} else {
		if (!test_bit(index, spt->post_shadow_bitmap)) {
1371 1372
			int type = spt->shadow_page.type;

1373
			ppgtt_get_shadow_entry(spt, &se, index);
1374
			ret = ppgtt_handle_guest_entry_removal(spt, &se, index);
1375 1376
			if (ret)
				return ret;
1377 1378
			ops->set_pfn(&se, vgpu->gtt.scratch_pt[type].page_mfn);
			ppgtt_set_shadow_entry(spt, &se, index);
1379 1380 1381 1382 1383 1384 1385
		}
		ppgtt_set_post_shadow(spt, index);
	}

	if (!enable_out_of_sync)
		return 0;

1386
	spt->guest_page.write_cnt++;
1387

1388 1389
	if (spt->guest_page.oos_page)
		ops->set_entry(spt->guest_page.oos_page->mem, &we, index,
1390 1391
				false, 0, vgpu);

1392 1393 1394
	if (can_do_out_of_sync(spt)) {
		if (!spt->guest_page.oos_page)
			ppgtt_allocate_oos_page(spt);
1395

1396
		ret = ppgtt_set_guest_page_oos(spt);
1397 1398 1399 1400 1401 1402
		if (ret < 0)
			return ret;
	}
	return 0;
}

1403
static void invalidate_ppgtt_mm(struct intel_vgpu_mm *mm)
1404 1405 1406 1407 1408 1409
{
	struct intel_vgpu *vgpu = mm->vgpu;
	struct intel_gvt *gvt = vgpu->gvt;
	struct intel_gvt_gtt *gtt = &gvt->gtt;
	struct intel_gvt_gtt_pte_ops *ops = gtt->pte_ops;
	struct intel_gvt_gtt_entry se;
1410
	int index;
1411

1412
	if (!mm->ppgtt_mm.shadowed)
1413 1414
		return;

1415 1416 1417
	for (index = 0; index < ARRAY_SIZE(mm->ppgtt_mm.shadow_pdps); index++) {
		ppgtt_get_shadow_root_entry(mm, &se, index);

1418 1419
		if (!ops->test_present(&se))
			continue;
1420

1421
		ppgtt_invalidate_spt_by_shadow_entry(vgpu, &se);
1422
		se.val64 = 0;
1423
		ppgtt_set_shadow_root_entry(mm, &se, index);
1424

1425 1426
		trace_spt_guest_change(vgpu->id, "destroy root pointer",
				       NULL, se.type, se.val64, index);
1427 1428
	}

1429
	mm->ppgtt_mm.shadowed = false;
1430 1431
}

1432 1433

static int shadow_ppgtt_mm(struct intel_vgpu_mm *mm)
1434 1435 1436 1437 1438 1439 1440
{
	struct intel_vgpu *vgpu = mm->vgpu;
	struct intel_gvt *gvt = vgpu->gvt;
	struct intel_gvt_gtt *gtt = &gvt->gtt;
	struct intel_gvt_gtt_pte_ops *ops = gtt->pte_ops;
	struct intel_vgpu_ppgtt_spt *spt;
	struct intel_gvt_gtt_entry ge, se;
1441
	int index, ret;
1442

1443
	if (mm->ppgtt_mm.shadowed)
1444 1445
		return 0;

1446 1447 1448 1449
	mm->ppgtt_mm.shadowed = true;

	for (index = 0; index < ARRAY_SIZE(mm->ppgtt_mm.guest_pdps); index++) {
		ppgtt_get_guest_root_entry(mm, &ge, index);
1450 1451 1452 1453

		if (!ops->test_present(&ge))
			continue;

1454 1455
		trace_spt_guest_change(vgpu->id, __func__, NULL,
				       ge.type, ge.val64, index);
1456

1457
		spt = ppgtt_populate_spt_by_guest_entry(vgpu, &ge);
1458
		if (IS_ERR(spt)) {
1459
			gvt_vgpu_err("fail to populate guest root pointer\n");
1460 1461 1462 1463
			ret = PTR_ERR(spt);
			goto fail;
		}
		ppgtt_generate_shadow_entry(&se, spt, &ge);
1464
		ppgtt_set_shadow_root_entry(mm, &se, index);
1465

1466 1467
		trace_spt_guest_change(vgpu->id, "populate root pointer",
				       NULL, se.type, se.val64, index);
1468
	}
1469

1470 1471
	return 0;
fail:
1472
	invalidate_ppgtt_mm(mm);
1473 1474 1475
	return ret;
}

1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
static struct intel_vgpu_mm *vgpu_alloc_mm(struct intel_vgpu *vgpu)
{
	struct intel_vgpu_mm *mm;

	mm = kzalloc(sizeof(*mm), GFP_KERNEL);
	if (!mm)
		return NULL;

	mm->vgpu = vgpu;
	kref_init(&mm->ref);
	atomic_set(&mm->pincount, 0);

	return mm;
}

static void vgpu_free_mm(struct intel_vgpu_mm *mm)
{
	kfree(mm);
}

1496
/**
1497
 * intel_vgpu_create_ppgtt_mm - create a ppgtt mm object for a vGPU
1498
 * @vgpu: a vGPU
1499 1500
 * @root_entry_type: ppgtt root entry type
 * @pdps: guest pdps.
1501
 *
1502
 * This function is used to create a ppgtt mm object for a vGPU.
1503 1504 1505 1506
 *
 * Returns:
 * Zero on success, negative error code in pointer if failed.
 */
1507 1508
struct intel_vgpu_mm *intel_vgpu_create_ppgtt_mm(struct intel_vgpu *vgpu,
		intel_gvt_gtt_type_t root_entry_type, u64 pdps[])
1509 1510 1511 1512 1513
{
	struct intel_gvt *gvt = vgpu->gvt;
	struct intel_vgpu_mm *mm;
	int ret;

1514 1515 1516
	mm = vgpu_alloc_mm(vgpu);
	if (!mm)
		return ERR_PTR(-ENOMEM);
1517

1518
	mm->type = INTEL_GVT_MM_PPGTT;
1519

1520 1521 1522
	GEM_BUG_ON(root_entry_type != GTT_TYPE_PPGTT_ROOT_L3_ENTRY &&
		   root_entry_type != GTT_TYPE_PPGTT_ROOT_L4_ENTRY);
	mm->ppgtt_mm.root_entry_type = root_entry_type;
1523

1524 1525
	INIT_LIST_HEAD(&mm->ppgtt_mm.list);
	INIT_LIST_HEAD(&mm->ppgtt_mm.lru_list);
1526

1527 1528 1529 1530 1531
	if (root_entry_type == GTT_TYPE_PPGTT_ROOT_L4_ENTRY)
		mm->ppgtt_mm.guest_pdps[0] = pdps[0];
	else
		memcpy(mm->ppgtt_mm.guest_pdps, pdps,
		       sizeof(mm->ppgtt_mm.guest_pdps));
1532

1533
	ret = shadow_ppgtt_mm(mm);
1534
	if (ret) {
1535 1536 1537
		gvt_vgpu_err("failed to shadow ppgtt mm\n");
		vgpu_free_mm(mm);
		return ERR_PTR(ret);
1538 1539
	}

1540 1541 1542 1543
	list_add_tail(&mm->ppgtt_mm.list, &vgpu->gtt.ppgtt_mm_list_head);
	list_add_tail(&mm->ppgtt_mm.lru_list, &gvt->gtt.ppgtt_mm_lru_list_head);
	return mm;
}
1544

1545 1546 1547 1548
static struct intel_vgpu_mm *intel_vgpu_create_ggtt_mm(struct intel_vgpu *vgpu)
{
	struct intel_vgpu_mm *mm;
	unsigned long nr_entries;
1549

1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
	mm = vgpu_alloc_mm(vgpu);
	if (!mm)
		return ERR_PTR(-ENOMEM);

	mm->type = INTEL_GVT_MM_GGTT;

	nr_entries = gvt_ggtt_gm_sz(vgpu->gvt) >> I915_GTT_PAGE_SHIFT;
	mm->ggtt_mm.virtual_ggtt = vzalloc(nr_entries *
					vgpu->gvt->device_info.gtt_entry_size);
	if (!mm->ggtt_mm.virtual_ggtt) {
		vgpu_free_mm(mm);
		return ERR_PTR(-ENOMEM);
1562
	}
1563

1564
	return mm;
1565 1566 1567
}

/**
1568
 * _intel_vgpu_mm_release - destroy a mm object
1569 1570 1571 1572 1573
 * @mm_ref: a kref object
 *
 * This function is used to destroy a mm object for vGPU
 *
 */
1574
void _intel_vgpu_mm_release(struct kref *mm_ref)
1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589
{
	struct intel_vgpu_mm *mm = container_of(mm_ref, typeof(*mm), ref);

	if (GEM_WARN_ON(atomic_read(&mm->pincount)))
		gvt_err("vgpu mm pin count bug detected\n");

	if (mm->type == INTEL_GVT_MM_PPGTT) {
		list_del(&mm->ppgtt_mm.list);
		list_del(&mm->ppgtt_mm.lru_list);
		invalidate_ppgtt_mm(mm);
	} else {
		vfree(mm->ggtt_mm.virtual_ggtt);
	}

	vgpu_free_mm(mm);
1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617
}

/**
 * intel_vgpu_unpin_mm - decrease the pin count of a vGPU mm object
 * @mm: a vGPU mm object
 *
 * This function is called when user doesn't want to use a vGPU mm object
 */
void intel_vgpu_unpin_mm(struct intel_vgpu_mm *mm)
{
	atomic_dec(&mm->pincount);
}

/**
 * intel_vgpu_pin_mm - increase the pin count of a vGPU mm object
 * @vgpu: a vGPU
 *
 * This function is called when user wants to use a vGPU mm object. If this
 * mm object hasn't been shadowed yet, the shadow will be populated at this
 * time.
 *
 * Returns:
 * Zero on success, negative error code if failed.
 */
int intel_vgpu_pin_mm(struct intel_vgpu_mm *mm)
{
	int ret;

1618
	atomic_inc(&mm->pincount);
1619

1620 1621
	if (mm->type == INTEL_GVT_MM_PPGTT) {
		ret = shadow_ppgtt_mm(mm);
1622 1623
		if (ret)
			return ret;
1624 1625 1626 1627

		list_move_tail(&mm->ppgtt_mm.lru_list,
			       &mm->vgpu->gvt->gtt.ppgtt_mm_lru_list_head);

1628 1629 1630 1631 1632
	}

	return 0;
}

1633
static int reclaim_one_ppgtt_mm(struct intel_gvt *gvt)
1634 1635 1636 1637
{
	struct intel_vgpu_mm *mm;
	struct list_head *pos, *n;

1638 1639
	list_for_each_safe(pos, n, &gvt->gtt.ppgtt_mm_lru_list_head) {
		mm = container_of(pos, struct intel_vgpu_mm, ppgtt_mm.lru_list);
1640 1641 1642 1643

		if (atomic_read(&mm->pincount))
			continue;

1644 1645
		list_del_init(&mm->ppgtt_mm.lru_list);
		invalidate_ppgtt_mm(mm);
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
		return 1;
	}
	return 0;
}

/*
 * GMA translation APIs.
 */
static inline int ppgtt_get_next_level_entry(struct intel_vgpu_mm *mm,
		struct intel_gvt_gtt_entry *e, unsigned long index, bool guest)
{
	struct intel_vgpu *vgpu = mm->vgpu;
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
	struct intel_vgpu_ppgtt_spt *s;

1661
	s = intel_vgpu_find_spt_by_mfn(vgpu, ops->get_pfn(e));
1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691
	if (!s)
		return -ENXIO;

	if (!guest)
		ppgtt_get_shadow_entry(s, e, index);
	else
		ppgtt_get_guest_entry(s, e, index);
	return 0;
}

/**
 * intel_vgpu_gma_to_gpa - translate a gma to GPA
 * @mm: mm object. could be a PPGTT or GGTT mm object
 * @gma: graphics memory address in this mm object
 *
 * This function is used to translate a graphics memory address in specific
 * graphics memory space to guest physical address.
 *
 * Returns:
 * Guest physical address on success, INTEL_GVT_INVALID_ADDR if failed.
 */
unsigned long intel_vgpu_gma_to_gpa(struct intel_vgpu_mm *mm, unsigned long gma)
{
	struct intel_vgpu *vgpu = mm->vgpu;
	struct intel_gvt *gvt = vgpu->gvt;
	struct intel_gvt_gtt_pte_ops *pte_ops = gvt->gtt.pte_ops;
	struct intel_gvt_gtt_gma_ops *gma_ops = gvt->gtt.gma_ops;
	unsigned long gpa = INTEL_GVT_INVALID_ADDR;
	unsigned long gma_index[4];
	struct intel_gvt_gtt_entry e;
1692
	int i, levels = 0;
1693 1694
	int ret;

1695 1696
	GEM_BUG_ON(mm->type != INTEL_GVT_MM_GGTT &&
		   mm->type != INTEL_GVT_MM_PPGTT);
1697 1698 1699 1700 1701

	if (mm->type == INTEL_GVT_MM_GGTT) {
		if (!vgpu_gmadr_is_valid(vgpu, gma))
			goto err;

1702 1703 1704
		ggtt_get_guest_entry(mm, &e,
			gma_ops->gma_to_ggtt_pte_index(gma));

Z
Zhi Wang 已提交
1705 1706
		gpa = (pte_ops->get_pfn(&e) << I915_GTT_PAGE_SHIFT)
			+ (gma & ~I915_GTT_PAGE_MASK);
1707 1708

		trace_gma_translate(vgpu->id, "ggtt", 0, 0, gma, gpa);
1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730
	} else {
		switch (mm->ppgtt_mm.root_entry_type) {
		case GTT_TYPE_PPGTT_ROOT_L4_ENTRY:
			ppgtt_get_shadow_root_entry(mm, &e, 0);

			gma_index[0] = gma_ops->gma_to_pml4_index(gma);
			gma_index[1] = gma_ops->gma_to_l4_pdp_index(gma);
			gma_index[2] = gma_ops->gma_to_pde_index(gma);
			gma_index[3] = gma_ops->gma_to_pte_index(gma);
			levels = 4;
			break;
		case GTT_TYPE_PPGTT_ROOT_L3_ENTRY:
			ppgtt_get_shadow_root_entry(mm, &e,
					gma_ops->gma_to_l3_pdp_index(gma));

			gma_index[0] = gma_ops->gma_to_pde_index(gma);
			gma_index[1] = gma_ops->gma_to_pte_index(gma);
			levels = 2;
			break;
		default:
			GEM_BUG_ON(1);
		}
1731

1732 1733 1734 1735 1736 1737
		/* walk the shadow page table and get gpa from guest entry */
		for (i = 0; i < levels; i++) {
			ret = ppgtt_get_next_level_entry(mm, &e, gma_index[i],
				(i == levels - 1));
			if (ret)
				goto err;
1738

1739 1740 1741 1742
			if (!pte_ops->test_present(&e)) {
				gvt_dbg_core("GMA 0x%lx is not present\n", gma);
				goto err;
			}
1743
		}
1744

1745 1746 1747 1748 1749
		gpa = (pte_ops->get_pfn(&e) << I915_GTT_PAGE_SHIFT) +
					(gma & ~I915_GTT_PAGE_MASK);
		trace_gma_translate(vgpu->id, "ppgtt", 0,
				    mm->ppgtt_mm.root_entry_type, gma, gpa);
	}
1750 1751 1752

	return gpa;
err:
1753
	gvt_vgpu_err("invalid mm type: %d gma %lx\n", mm->type, gma);
1754 1755 1756
	return INTEL_GVT_INVALID_ADDR;
}

1757
static int emulate_ggtt_mmio_read(struct intel_vgpu *vgpu,
1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785
	unsigned int off, void *p_data, unsigned int bytes)
{
	struct intel_vgpu_mm *ggtt_mm = vgpu->gtt.ggtt_mm;
	const struct intel_gvt_device_info *info = &vgpu->gvt->device_info;
	unsigned long index = off >> info->gtt_entry_size_shift;
	struct intel_gvt_gtt_entry e;

	if (bytes != 4 && bytes != 8)
		return -EINVAL;

	ggtt_get_guest_entry(ggtt_mm, &e, index);
	memcpy(p_data, (void *)&e.val64 + (off & (info->gtt_entry_size - 1)),
			bytes);
	return 0;
}

/**
 * intel_vgpu_emulate_gtt_mmio_read - emulate GTT MMIO register read
 * @vgpu: a vGPU
 * @off: register offset
 * @p_data: data will be returned to guest
 * @bytes: data length
 *
 * This function is used to emulate the GTT MMIO register read
 *
 * Returns:
 * Zero on success, error code if failed.
 */
1786
int intel_vgpu_emulate_ggtt_mmio_read(struct intel_vgpu *vgpu, unsigned int off,
1787 1788 1789 1790 1791 1792 1793 1794 1795
	void *p_data, unsigned int bytes)
{
	const struct intel_gvt_device_info *info = &vgpu->gvt->device_info;
	int ret;

	if (bytes != 4 && bytes != 8)
		return -EINVAL;

	off -= info->gtt_start_offset;
1796
	ret = emulate_ggtt_mmio_read(vgpu, off, p_data, bytes);
1797 1798 1799
	return ret;
}

1800
static int emulate_ggtt_mmio_write(struct intel_vgpu *vgpu, unsigned int off,
1801 1802 1803 1804 1805 1806 1807
	void *p_data, unsigned int bytes)
{
	struct intel_gvt *gvt = vgpu->gvt;
	const struct intel_gvt_device_info *info = &gvt->device_info;
	struct intel_vgpu_mm *ggtt_mm = vgpu->gtt.ggtt_mm;
	struct intel_gvt_gtt_pte_ops *ops = gvt->gtt.pte_ops;
	unsigned long g_gtt_index = off >> info->gtt_entry_size_shift;
1808
	unsigned long gma, gfn, mfn;
1809 1810 1811 1812 1813
	struct intel_gvt_gtt_entry e, m;

	if (bytes != 4 && bytes != 8)
		return -EINVAL;

Z
Zhi Wang 已提交
1814
	gma = g_gtt_index << I915_GTT_PAGE_SHIFT;
1815 1816

	/* the VM may configure the whole GM space when ballooning is used */
1817
	if (!vgpu_gmadr_is_valid(vgpu, gma))
1818 1819 1820 1821 1822 1823
		return 0;

	ggtt_get_guest_entry(ggtt_mm, &e, g_gtt_index);

	memcpy((void *)&e.val64 + (off & (info->gtt_entry_size - 1)), p_data,
			bytes);
1824
	m = e;
1825 1826

	if (ops->test_present(&e)) {
1827 1828 1829 1830 1831 1832 1833 1834 1835 1836
		gfn = ops->get_pfn(&e);

		/* one PTE update may be issued in multiple writes and the
		 * first write may not construct a valid gfn
		 */
		if (!intel_gvt_hypervisor_is_valid_gfn(vgpu, gfn)) {
			ops->set_pfn(&m, gvt->gtt.scratch_mfn);
			goto out;
		}

1837 1838 1839
		mfn = intel_gvt_hypervisor_gfn_to_mfn(vgpu, gfn);
		if (mfn == INTEL_GVT_INVALID_ADDR) {
			gvt_vgpu_err("fail to populate guest ggtt entry\n");
1840 1841 1842 1843
			/* guest driver may read/write the entry when partial
			 * update the entry in this situation p2m will fail
			 * settting the shadow entry to point to a scratch page
			 */
1844
			ops->set_pfn(&m, gvt->gtt.scratch_mfn);
1845 1846 1847
		} else
			ops->set_pfn(&m, mfn);
	} else
1848
		ops->set_pfn(&m, gvt->gtt.scratch_mfn);
1849

1850
out:
1851
	ggtt_set_host_entry(ggtt_mm, &m, g_gtt_index);
1852
	ggtt_invalidate(gvt->dev_priv);
1853 1854 1855 1856 1857
	ggtt_set_guest_entry(ggtt_mm, &e, g_gtt_index);
	return 0;
}

/*
1858
 * intel_vgpu_emulate_ggtt_mmio_write - emulate GTT MMIO register write
1859 1860 1861 1862 1863 1864 1865 1866 1867 1868
 * @vgpu: a vGPU
 * @off: register offset
 * @p_data: data from guest write
 * @bytes: data length
 *
 * This function is used to emulate the GTT MMIO register write
 *
 * Returns:
 * Zero on success, error code if failed.
 */
1869 1870
int intel_vgpu_emulate_ggtt_mmio_write(struct intel_vgpu *vgpu,
		unsigned int off, void *p_data, unsigned int bytes)
1871 1872 1873 1874 1875 1876 1877 1878
{
	const struct intel_gvt_device_info *info = &vgpu->gvt->device_info;
	int ret;

	if (bytes != 4 && bytes != 8)
		return -EINVAL;

	off -= info->gtt_start_offset;
1879
	ret = emulate_ggtt_mmio_write(vgpu, off, p_data, bytes);
1880 1881 1882
	return ret;
}

1883 1884
static int alloc_scratch_pages(struct intel_vgpu *vgpu,
		intel_gvt_gtt_type_t type)
1885 1886
{
	struct intel_vgpu_gtt *gtt = &vgpu->gtt;
1887
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
1888
	int page_entry_num = I915_GTT_PAGE_SIZE >>
1889
				vgpu->gvt->device_info.gtt_entry_size_shift;
J
Jike Song 已提交
1890
	void *scratch_pt;
1891
	int i;
1892 1893
	struct device *dev = &vgpu->gvt->dev_priv->drm.pdev->dev;
	dma_addr_t daddr;
1894

1895 1896 1897
	if (WARN_ON(type < GTT_TYPE_PPGTT_PTE_PT || type >= GTT_TYPE_MAX))
		return -EINVAL;

J
Jike Song 已提交
1898
	scratch_pt = (void *)get_zeroed_page(GFP_KERNEL);
1899
	if (!scratch_pt) {
1900
		gvt_vgpu_err("fail to allocate scratch page\n");
1901 1902 1903
		return -ENOMEM;
	}

1904 1905 1906
	daddr = dma_map_page(dev, virt_to_page(scratch_pt), 0,
			4096, PCI_DMA_BIDIRECTIONAL);
	if (dma_mapping_error(dev, daddr)) {
1907
		gvt_vgpu_err("fail to dmamap scratch_pt\n");
1908 1909
		__free_page(virt_to_page(scratch_pt));
		return -ENOMEM;
1910
	}
1911
	gtt->scratch_pt[type].page_mfn =
1912
		(unsigned long)(daddr >> I915_GTT_PAGE_SHIFT);
J
Jike Song 已提交
1913
	gtt->scratch_pt[type].page = virt_to_page(scratch_pt);
1914
	gvt_dbg_mm("vgpu%d create scratch_pt: type %d mfn=0x%lx\n",
1915
			vgpu->id, type, gtt->scratch_pt[type].page_mfn);
1916 1917 1918 1919 1920 1921

	/* Build the tree by full filled the scratch pt with the entries which
	 * point to the next level scratch pt or scratch page. The
	 * scratch_pt[type] indicate the scratch pt/scratch page used by the
	 * 'type' pt.
	 * e.g. scratch_pt[GTT_TYPE_PPGTT_PDE_PT] is used by
J
Jike Song 已提交
1922
	 * GTT_TYPE_PPGTT_PDE_PT level pt, that means this scratch_pt it self
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936
	 * is GTT_TYPE_PPGTT_PTE_PT, and full filled by scratch page mfn.
	 */
	if (type > GTT_TYPE_PPGTT_PTE_PT && type < GTT_TYPE_MAX) {
		struct intel_gvt_gtt_entry se;

		memset(&se, 0, sizeof(struct intel_gvt_gtt_entry));
		se.type = get_entry_type(type - 1);
		ops->set_pfn(&se, gtt->scratch_pt[type - 1].page_mfn);

		/* The entry parameters like present/writeable/cache type
		 * set to the same as i915's scratch page tree.
		 */
		se.val64 |= _PAGE_PRESENT | _PAGE_RW;
		if (type == GTT_TYPE_PPGTT_PDE_PT)
1937
			se.val64 |= PPAT_CACHED;
1938 1939

		for (i = 0; i < page_entry_num; i++)
J
Jike Song 已提交
1940
			ops->set_entry(scratch_pt, &se, i, false, 0, vgpu);
1941 1942 1943 1944
	}

	return 0;
}
1945

1946 1947 1948
static int release_scratch_page_tree(struct intel_vgpu *vgpu)
{
	int i;
1949 1950
	struct device *dev = &vgpu->gvt->dev_priv->drm.pdev->dev;
	dma_addr_t daddr;
1951 1952 1953

	for (i = GTT_TYPE_PPGTT_PTE_PT; i < GTT_TYPE_MAX; i++) {
		if (vgpu->gtt.scratch_pt[i].page != NULL) {
1954
			daddr = (dma_addr_t)(vgpu->gtt.scratch_pt[i].page_mfn <<
1955
					I915_GTT_PAGE_SHIFT);
1956
			dma_unmap_page(dev, daddr, 4096, PCI_DMA_BIDIRECTIONAL);
1957 1958 1959 1960
			__free_page(vgpu->gtt.scratch_pt[i].page);
			vgpu->gtt.scratch_pt[i].page = NULL;
			vgpu->gtt.scratch_pt[i].page_mfn = 0;
		}
1961 1962 1963 1964 1965
	}

	return 0;
}

1966
static int create_scratch_page_tree(struct intel_vgpu *vgpu)
1967
{
1968 1969 1970 1971 1972 1973
	int i, ret;

	for (i = GTT_TYPE_PPGTT_PTE_PT; i < GTT_TYPE_MAX; i++) {
		ret = alloc_scratch_pages(vgpu, i);
		if (ret)
			goto err;
1974
	}
1975 1976 1977 1978 1979 1980

	return 0;

err:
	release_scratch_page_tree(vgpu);
	return ret;
1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996
}

/**
 * intel_vgpu_init_gtt - initialize per-vGPU graphics memory virulization
 * @vgpu: a vGPU
 *
 * This function is used to initialize per-vGPU graphics memory virtualization
 * components.
 *
 * Returns:
 * Zero on success, error code if failed.
 */
int intel_vgpu_init_gtt(struct intel_vgpu *vgpu)
{
	struct intel_vgpu_gtt *gtt = &vgpu->gtt;

1997
	hash_init(gtt->spt_hash_table);
1998

1999
	INIT_LIST_HEAD(&gtt->ppgtt_mm_list_head);
2000 2001 2002
	INIT_LIST_HEAD(&gtt->oos_page_list_head);
	INIT_LIST_HEAD(&gtt->post_shadow_list_head);

2003 2004
	gtt->ggtt_mm = intel_vgpu_create_ggtt_mm(vgpu);
	if (IS_ERR(gtt->ggtt_mm)) {
2005
		gvt_vgpu_err("fail to create mm for ggtt.\n");
2006
		return PTR_ERR(gtt->ggtt_mm);
2007 2008
	}

2009
	intel_vgpu_reset_ggtt(vgpu);
2010

2011
	return create_scratch_page_tree(vgpu);
2012 2013
}

2014
static void intel_vgpu_destroy_all_ppgtt_mm(struct intel_vgpu *vgpu)
2015 2016 2017 2018
{
	struct list_head *pos, *n;
	struct intel_vgpu_mm *mm;

2019 2020
	list_for_each_safe(pos, n, &vgpu->gtt.ppgtt_mm_list_head) {
		mm = container_of(pos, struct intel_vgpu_mm, ppgtt_mm.list);
2021
		intel_vgpu_destroy_mm(mm);
2022
	}
2023 2024 2025 2026

	if (GEM_WARN_ON(!list_empty(&vgpu->gtt.ppgtt_mm_list_head)))
		gvt_err("vgpu ppgtt mm is not fully destoried\n");

2027
	if (GEM_WARN_ON(!hlist_empty(vgpu->gtt.spt_hash_table))) {
2028
		gvt_err("Why we still has spt not freed?\n");
2029
		ppgtt_free_all_spt(vgpu);
2030 2031 2032 2033 2034
	}
}

static void intel_vgpu_destroy_ggtt_mm(struct intel_vgpu *vgpu)
{
2035
	intel_vgpu_destroy_mm(vgpu->gtt.ggtt_mm);
2036
	vgpu->gtt.ggtt_mm = NULL;
2037 2038
}

2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050
/**
 * intel_vgpu_clean_gtt - clean up per-vGPU graphics memory virulization
 * @vgpu: a vGPU
 *
 * This function is used to clean up per-vGPU graphics memory virtualization
 * components.
 *
 * Returns:
 * Zero on success, error code if failed.
 */
void intel_vgpu_clean_gtt(struct intel_vgpu *vgpu)
{
2051 2052
	intel_vgpu_destroy_all_ppgtt_mm(vgpu);
	intel_vgpu_destroy_ggtt_mm(vgpu);
2053
	release_scratch_page_tree(vgpu);
2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114
}

static void clean_spt_oos(struct intel_gvt *gvt)
{
	struct intel_gvt_gtt *gtt = &gvt->gtt;
	struct list_head *pos, *n;
	struct intel_vgpu_oos_page *oos_page;

	WARN(!list_empty(&gtt->oos_page_use_list_head),
		"someone is still using oos page\n");

	list_for_each_safe(pos, n, &gtt->oos_page_free_list_head) {
		oos_page = container_of(pos, struct intel_vgpu_oos_page, list);
		list_del(&oos_page->list);
		kfree(oos_page);
	}
}

static int setup_spt_oos(struct intel_gvt *gvt)
{
	struct intel_gvt_gtt *gtt = &gvt->gtt;
	struct intel_vgpu_oos_page *oos_page;
	int i;
	int ret;

	INIT_LIST_HEAD(&gtt->oos_page_free_list_head);
	INIT_LIST_HEAD(&gtt->oos_page_use_list_head);

	for (i = 0; i < preallocated_oos_pages; i++) {
		oos_page = kzalloc(sizeof(*oos_page), GFP_KERNEL);
		if (!oos_page) {
			ret = -ENOMEM;
			goto fail;
		}

		INIT_LIST_HEAD(&oos_page->list);
		INIT_LIST_HEAD(&oos_page->vm_list);
		oos_page->id = i;
		list_add_tail(&oos_page->list, &gtt->oos_page_free_list_head);
	}

	gvt_dbg_mm("%d oos pages preallocated\n", i);

	return 0;
fail:
	clean_spt_oos(gvt);
	return ret;
}

/**
 * intel_vgpu_find_ppgtt_mm - find a PPGTT mm object
 * @vgpu: a vGPU
 * @page_table_level: PPGTT page table level
 * @root_entry: PPGTT page table root pointers
 *
 * This function is used to find a PPGTT mm object from mm object pool
 *
 * Returns:
 * pointer to mm object on success, NULL if failed.
 */
struct intel_vgpu_mm *intel_vgpu_find_ppgtt_mm(struct intel_vgpu *vgpu,
2115
		u64 pdps[])
2116 2117
{
	struct intel_vgpu_mm *mm;
2118
	struct list_head *pos;
2119

2120 2121
	list_for_each(pos, &vgpu->gtt.ppgtt_mm_list_head) {
		mm = container_of(pos, struct intel_vgpu_mm, ppgtt_mm.list);
2122

2123 2124 2125
		switch (mm->ppgtt_mm.root_entry_type) {
		case GTT_TYPE_PPGTT_ROOT_L4_ENTRY:
			if (pdps[0] == mm->ppgtt_mm.guest_pdps[0])
2126
				return mm;
2127 2128 2129 2130
			break;
		case GTT_TYPE_PPGTT_ROOT_L3_ENTRY:
			if (!memcmp(pdps, mm->ppgtt_mm.guest_pdps,
				    sizeof(mm->ppgtt_mm.guest_pdps)))
2131
				return mm;
2132 2133 2134
			break;
		default:
			GEM_BUG_ON(1);
2135 2136 2137 2138 2139 2140
		}
	}
	return NULL;
}

/**
2141
 * intel_vgpu_get_ppgtt_mm - get or create a PPGTT mm object.
2142
 * @vgpu: a vGPU
2143 2144
 * @root_entry_type: ppgtt root entry type
 * @pdps: guest pdps
2145
 *
2146
 * This function is used to find or create a PPGTT mm object from a guest.
2147 2148 2149 2150
 *
 * Returns:
 * Zero on success, negative error code if failed.
 */
2151
struct intel_vgpu_mm *intel_vgpu_get_ppgtt_mm(struct intel_vgpu *vgpu,
2152
		intel_gvt_gtt_type_t root_entry_type, u64 pdps[])
2153 2154 2155
{
	struct intel_vgpu_mm *mm;

2156
	mm = intel_vgpu_find_ppgtt_mm(vgpu, pdps);
2157
	if (mm) {
2158
		intel_vgpu_mm_get(mm);
2159
	} else {
2160
		mm = intel_vgpu_create_ppgtt_mm(vgpu, root_entry_type, pdps);
2161
		if (IS_ERR(mm))
2162
			gvt_vgpu_err("fail to create mm\n");
2163
	}
2164
	return mm;
2165 2166 2167
}

/**
2168
 * intel_vgpu_put_ppgtt_mm - find and put a PPGTT mm object.
2169
 * @vgpu: a vGPU
2170
 * @pdps: guest pdps
2171
 *
2172
 * This function is used to find a PPGTT mm object from a guest and destroy it.
2173 2174 2175 2176
 *
 * Returns:
 * Zero on success, negative error code if failed.
 */
2177
int intel_vgpu_put_ppgtt_mm(struct intel_vgpu *vgpu, u64 pdps[])
2178 2179 2180
{
	struct intel_vgpu_mm *mm;

2181
	mm = intel_vgpu_find_ppgtt_mm(vgpu, pdps);
2182
	if (!mm) {
2183
		gvt_vgpu_err("fail to find ppgtt instance.\n");
2184 2185
		return -EINVAL;
	}
2186
	intel_vgpu_mm_put(mm);
2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202
	return 0;
}

/**
 * intel_gvt_init_gtt - initialize mm components of a GVT device
 * @gvt: GVT device
 *
 * This function is called at the initialization stage, to initialize
 * the mm components of a GVT device.
 *
 * Returns:
 * zero on success, negative error code if failed.
 */
int intel_gvt_init_gtt(struct intel_gvt *gvt)
{
	int ret;
J
Jike Song 已提交
2203
	void *page;
2204 2205
	struct device *dev = &gvt->dev_priv->drm.pdev->dev;
	dma_addr_t daddr;
2206 2207 2208

	gvt_dbg_core("init gtt\n");

2209 2210
	if (IS_BROADWELL(gvt->dev_priv) || IS_SKYLAKE(gvt->dev_priv)
		|| IS_KABYLAKE(gvt->dev_priv)) {
2211 2212 2213 2214 2215 2216
		gvt->gtt.pte_ops = &gen8_gtt_pte_ops;
		gvt->gtt.gma_ops = &gen8_gtt_gma_ops;
	} else {
		return -ENODEV;
	}

J
Jike Song 已提交
2217 2218
	page = (void *)get_zeroed_page(GFP_KERNEL);
	if (!page) {
2219 2220 2221 2222
		gvt_err("fail to allocate scratch ggtt page\n");
		return -ENOMEM;
	}

2223 2224 2225 2226 2227 2228
	daddr = dma_map_page(dev, virt_to_page(page), 0,
			4096, PCI_DMA_BIDIRECTIONAL);
	if (dma_mapping_error(dev, daddr)) {
		gvt_err("fail to dmamap scratch ggtt page\n");
		__free_page(virt_to_page(page));
		return -ENOMEM;
2229
	}
2230 2231 2232

	gvt->gtt.scratch_page = virt_to_page(page);
	gvt->gtt.scratch_mfn = (unsigned long)(daddr >> I915_GTT_PAGE_SHIFT);
2233

2234 2235 2236 2237
	if (enable_out_of_sync) {
		ret = setup_spt_oos(gvt);
		if (ret) {
			gvt_err("fail to initialize SPT oos\n");
2238
			dma_unmap_page(dev, daddr, 4096, PCI_DMA_BIDIRECTIONAL);
2239
			__free_page(gvt->gtt.scratch_page);
2240 2241 2242
			return ret;
		}
	}
2243
	INIT_LIST_HEAD(&gvt->gtt.ppgtt_mm_lru_list_head);
2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256
	return 0;
}

/**
 * intel_gvt_clean_gtt - clean up mm components of a GVT device
 * @gvt: GVT device
 *
 * This function is called at the driver unloading stage, to clean up the
 * the mm components of a GVT device.
 *
 */
void intel_gvt_clean_gtt(struct intel_gvt *gvt)
{
2257
	struct device *dev = &gvt->dev_priv->drm.pdev->dev;
2258
	dma_addr_t daddr = (dma_addr_t)(gvt->gtt.scratch_mfn <<
Z
Zhi Wang 已提交
2259
					I915_GTT_PAGE_SHIFT);
2260 2261 2262

	dma_unmap_page(dev, daddr, 4096, PCI_DMA_BIDIRECTIONAL);

2263
	__free_page(gvt->gtt.scratch_page);
2264

2265 2266 2267
	if (enable_out_of_sync)
		clean_spt_oos(gvt);
}
2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279

/**
 * intel_vgpu_reset_ggtt - reset the GGTT entry
 * @vgpu: a vGPU
 *
 * This function is called at the vGPU create stage
 * to reset all the GGTT entries.
 *
 */
void intel_vgpu_reset_ggtt(struct intel_vgpu *vgpu)
{
	struct intel_gvt *gvt = vgpu->gvt;
2280
	struct drm_i915_private *dev_priv = gvt->dev_priv;
2281 2282
	struct intel_gvt_gtt_pte_ops *pte_ops = vgpu->gvt->gtt.pte_ops;
	struct intel_gvt_gtt_entry entry = {.type = GTT_TYPE_GGTT_PTE};
2283 2284 2285
	u32 index;
	u32 num_entries;

2286 2287
	pte_ops->set_pfn(&entry, gvt->gtt.scratch_mfn);
	pte_ops->set_present(&entry);
2288 2289 2290

	index = vgpu_aperture_gmadr_base(vgpu) >> PAGE_SHIFT;
	num_entries = vgpu_aperture_sz(vgpu) >> PAGE_SHIFT;
2291 2292
	while (num_entries--)
		ggtt_set_host_entry(vgpu->gtt.ggtt_mm, &entry, index++);
2293 2294 2295

	index = vgpu_hidden_gmadr_base(vgpu) >> PAGE_SHIFT;
	num_entries = vgpu_hidden_sz(vgpu) >> PAGE_SHIFT;
2296 2297
	while (num_entries--)
		ggtt_set_host_entry(vgpu->gtt.ggtt_mm, &entry, index++);
2298

2299
	ggtt_invalidate(dev_priv);
2300
}
2301 2302 2303 2304 2305 2306 2307 2308 2309

/**
 * intel_vgpu_reset_gtt - reset the all GTT related status
 * @vgpu: a vGPU
 *
 * This function is called from vfio core to reset reset all
 * GTT related status, including GGTT, PPGTT, scratch page.
 *
 */
2310
void intel_vgpu_reset_gtt(struct intel_vgpu *vgpu)
2311
{
2312 2313 2314 2315
	/* Shadow pages are only created when there is no page
	 * table tracking data, so remove page tracking data after
	 * removing the shadow pages.
	 */
2316
	intel_vgpu_destroy_all_ppgtt_mm(vgpu);
2317 2318
	intel_vgpu_reset_ggtt(vgpu);
}