gtt.c 62.1 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	GENMASK_ULL(GTT_HAW - 1, 30)
#define ADDR_2M_MASK	GENMASK_ULL(GTT_HAW - 1, 21)
#define ADDR_4K_MASK	GENMASK_ULL(GTT_HAW - 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
	_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);
}

533 534 535 536 537 538 539 540 541 542
static void ggtt_get_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);

	pte_ops->get_entry(NULL, entry, index, false, 0, mm->vgpu);
}

543 544 545 546 547 548
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);
549

550
	pte_ops->set_entry(NULL, entry, index, false, 0, mm->vgpu);
551 552 553 554 555
}

/*
 * PPGTT shadow page table helpers.
 */
556
static inline int ppgtt_spt_get_entry(
557 558 559 560 561 562 563
		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;
564
	int ret;
565 566 567 568

	e->type = get_entry_type(type);

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

571
	ret = ops->get_entry(page_table, e, index, guest,
572
			spt->guest_page.gfn << I915_GTT_PAGE_SHIFT,
573
			spt->vgpu);
574 575 576
	if (ret)
		return ret;

577
	ops->test_pse(e);
578 579 580

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

584
static inline int ppgtt_spt_set_entry(
585 586 587 588 589 590 591 592 593
		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"))
594
		return -EINVAL;
595

596 597 598
	gvt_vdbg_mm("set ppgtt entry, spt type %d, entry type %d, index %lu, value %llx\n",
		    type, e->type, index, e->val64);

599
	return ops->set_entry(page_table, e, index, guest,
600
			spt->guest_page.gfn << I915_GTT_PAGE_SHIFT,
601 602 603 604 605
			spt->vgpu);
}

#define ppgtt_get_guest_entry(spt, e, index) \
	ppgtt_spt_get_entry(spt, NULL, \
606
		spt->guest_page.type, e, index, true)
607 608 609

#define ppgtt_set_guest_entry(spt, e, index) \
	ppgtt_spt_set_entry(spt, NULL, \
610
		spt->guest_page.type, e, index, true)
611 612 613 614 615 616 617 618 619

#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)

620
static void *alloc_spt(gfp_t gfp_mask)
621
{
622
	struct intel_vgpu_ppgtt_spt *spt;
623

624 625 626
	spt = kzalloc(sizeof(*spt), gfp_mask);
	if (!spt)
		return NULL;
627

628 629 630 631 632 633
	spt->shadow_page.page = alloc_page(gfp_mask);
	if (!spt->shadow_page.page) {
		kfree(spt);
		return NULL;
	}
	return spt;
634 635
}

636
static void free_spt(struct intel_vgpu_ppgtt_spt *spt)
637
{
638 639
	__free_page(spt->shadow_page.page);
	kfree(spt);
640 641
}

642 643 644
static int detach_oos_page(struct intel_vgpu *vgpu,
		struct intel_vgpu_oos_page *oos_page);

645
static void ppgtt_free_spt(struct intel_vgpu_ppgtt_spt *spt)
646
{
647
	struct device *kdev = &spt->vgpu->gvt->dev_priv->drm.pdev->dev;
648

649
	trace_spt_free(spt->vgpu->id, spt, spt->guest_page.type);
650

651 652
	dma_unmap_page(kdev, spt->shadow_page.mfn << I915_GTT_PAGE_SHIFT, 4096,
		       PCI_DMA_BIDIRECTIONAL);
653 654

	radix_tree_delete(&spt->vgpu->gtt.spt_tree, spt->shadow_page.mfn);
655

656 657
	if (spt->guest_page.oos_page)
		detach_oos_page(spt->vgpu, spt->guest_page.oos_page);
658

659
	intel_vgpu_unregister_page_track(spt->vgpu, spt->guest_page.gfn);
660 661 662 663 664

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

665
static void ppgtt_free_all_spt(struct intel_vgpu *vgpu)
666
{
667
	struct intel_vgpu_ppgtt_spt *spt;
668 669
	struct radix_tree_iter iter;
	void **slot;
670

671 672
	radix_tree_for_each_slot(slot, &vgpu->gtt.spt_tree, &iter, 0) {
		spt = radix_tree_deref_slot(slot);
673
		ppgtt_free_spt(spt);
674
	}
675 676
}

677
static int ppgtt_handle_guest_write_page_table_bytes(
678
		struct intel_vgpu_ppgtt_spt *spt,
679 680
		u64 pa, void *p_data, int bytes);

681 682 683
static int ppgtt_write_protection_handler(
		struct intel_vgpu_page_track *page_track,
		u64 gpa, void *data, int bytes)
684
{
685 686
	struct intel_vgpu_ppgtt_spt *spt = page_track->priv_data;

687 688 689 690 691
	int ret;

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

692
	ret = ppgtt_handle_guest_write_page_table_bytes(spt, gpa, data, bytes);
693 694 695 696 697
	if (ret)
		return ret;
	return ret;
}

698 699 700 701 702 703
/* 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;

704 705 706
	track = intel_vgpu_find_page_track(vgpu, gfn);
	if (track && track->handler == ppgtt_write_protection_handler)
		return track->priv_data;
707 708 709 710 711

	return NULL;
}

/* Find the spt by shadow page mfn. */
712
static inline struct intel_vgpu_ppgtt_spt *intel_vgpu_find_spt_by_mfn(
713 714
		struct intel_vgpu *vgpu, unsigned long mfn)
{
715
	return radix_tree_lookup(&vgpu->gtt.spt_tree, mfn);
716 717
}

718
static int reclaim_one_ppgtt_mm(struct intel_gvt *gvt);
719

720
static struct intel_vgpu_ppgtt_spt *ppgtt_alloc_spt(
721 722
		struct intel_vgpu *vgpu, int type, unsigned long gfn)
{
723
	struct device *kdev = &vgpu->gvt->dev_priv->drm.pdev->dev;
724
	struct intel_vgpu_ppgtt_spt *spt = NULL;
725
	dma_addr_t daddr;
726
	int ret;
727 728 729 730

retry:
	spt = alloc_spt(GFP_KERNEL | __GFP_ZERO);
	if (!spt) {
731
		if (reclaim_one_ppgtt_mm(vgpu->gvt))
732 733
			goto retry;

734
		gvt_vgpu_err("fail to allocate ppgtt shadow page\n");
735 736 737 738 739 740 741 742
		return ERR_PTR(-ENOMEM);
	}

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

	/*
743
	 * Init shadow_page.
744
	 */
745 746 747 748 749
	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");
750 751
		ret = -EINVAL;
		goto err_free_spt;
752
	}
753 754
	spt->shadow_page.vaddr = page_address(spt->shadow_page.page);
	spt->shadow_page.mfn = daddr >> I915_GTT_PAGE_SHIFT;
755

756 757 758 759 760
	/*
	 * Init guest_page.
	 */
	spt->guest_page.type = type;
	spt->guest_page.gfn = gfn;
761

762 763
	ret = intel_vgpu_register_page_track(vgpu, spt->guest_page.gfn,
					ppgtt_write_protection_handler, spt);
764 765
	if (ret)
		goto err_unmap_dma;
766

767 768 769
	ret = radix_tree_insert(&vgpu->gtt.spt_tree, spt->shadow_page.mfn, spt);
	if (ret)
		goto err_unreg_page_track;
770

771 772
	trace_spt_alloc(vgpu->id, spt, type, spt->shadow_page.mfn, gfn);
	return spt;
773 774 775 776 777 778 779 780

err_unreg_page_track:
	intel_vgpu_unregister_page_track(vgpu, spt->guest_page.gfn);
err_unmap_dma:
	dma_unmap_page(kdev, daddr, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
err_free_spt:
	free_spt(spt);
	return ERR_PTR(ret);
781 782 783 784 785 786
}

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

#define pt_entries(spt) \
Z
Zhi Wang 已提交
787
	(I915_GTT_PAGE_SIZE >> pt_entry_size_shift(spt))
788 789 790

#define for_each_present_guest_entry(spt, e, i) \
	for (i = 0; i < pt_entries(spt); i++) \
791 792
		if (!ppgtt_get_guest_entry(spt, e, i) && \
		    spt->vgpu->gvt->gtt.pte_ops->test_present(e))
793 794 795

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

799
static void ppgtt_get_spt(struct intel_vgpu_ppgtt_spt *spt)
800 801 802 803 804 805 806 807
{
	int v = atomic_read(&spt->refcount);

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

	atomic_inc(&spt->refcount);
}

808
static int ppgtt_invalidate_spt(struct intel_vgpu_ppgtt_spt *spt);
809

810
static int ppgtt_invalidate_spt_by_shadow_entry(struct intel_vgpu *vgpu,
811 812 813 814
		struct intel_gvt_gtt_entry *e)
{
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
	struct intel_vgpu_ppgtt_spt *s;
815
	intel_gvt_gtt_type_t cur_pt_type;
816

817
	GEM_BUG_ON(!gtt_type_is_pt(get_next_pt_type(e->type)));
818

819 820 821 822 823 824 825
	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;
	}
826
	s = intel_vgpu_find_spt_by_mfn(vgpu, ops->get_pfn(e));
827
	if (!s) {
828 829
		gvt_vgpu_err("fail to find shadow page: mfn: 0x%lx\n",
				ops->get_pfn(e));
830 831
		return -ENXIO;
	}
832
	return ppgtt_invalidate_spt(s);
833 834
}

835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851
static inline void ppgtt_invalidate_pte(struct intel_vgpu_ppgtt_spt *spt,
		struct intel_gvt_gtt_entry *entry)
{
	struct intel_vgpu *vgpu = spt->vgpu;
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
	unsigned long pfn;
	int type;

	pfn = ops->get_pfn(entry);
	type = spt->shadow_page.type;

	if (pfn == vgpu->gtt.scratch_pt[type].page_mfn)
		return;

	intel_gvt_hypervisor_dma_unmap_guest_page(vgpu, pfn << PAGE_SHIFT);
}

852
static int ppgtt_invalidate_spt(struct intel_vgpu_ppgtt_spt *spt)
853
{
854
	struct intel_vgpu *vgpu = spt->vgpu;
855 856 857 858 859 860
	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,
861
			spt->guest_page.gfn, spt->shadow_page.type);
862 863 864 865 866 867 868

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

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

	for_each_present_shadow_entry(spt, &e, index) {
869 870 871
		switch (e.type) {
		case GTT_TYPE_PPGTT_PTE_4K_ENTRY:
			gvt_vdbg_mm("invalidate 4K entry\n");
872 873
			ppgtt_invalidate_pte(spt, &e);
			break;
874 875 876 877 878 879 880 881
		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");
882
			ret = ppgtt_invalidate_spt_by_shadow_entry(
883 884 885 886 887 888
					spt->vgpu, &e);
			if (ret)
				goto fail;
			break;
		default:
			GEM_BUG_ON(1);
889 890
		}
	}
891

892
	trace_spt_change(spt->vgpu->id, "release", spt,
893
			 spt->guest_page.gfn, spt->shadow_page.type);
894
	ppgtt_free_spt(spt);
895 896
	return 0;
fail:
897 898
	gvt_vgpu_err("fail: shadow page %p shadow entry 0x%llx type %d\n",
			spt, e.val64, e.type);
899 900 901
	return ret;
}

902
static int ppgtt_populate_spt(struct intel_vgpu_ppgtt_spt *spt);
903

904
static struct intel_vgpu_ppgtt_spt *ppgtt_populate_spt_by_guest_entry(
905 906 907
		struct intel_vgpu *vgpu, struct intel_gvt_gtt_entry *we)
{
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
908
	struct intel_vgpu_ppgtt_spt *spt = NULL;
909 910
	int ret;

911
	GEM_BUG_ON(!gtt_type_is_pt(get_next_pt_type(we->type)));
912

913 914
	spt = intel_vgpu_find_spt_by_gfn(vgpu, ops->get_pfn(we));
	if (spt)
915
		ppgtt_get_spt(spt);
916
	else {
917 918
		int type = get_next_pt_type(we->type);

919
		spt = ppgtt_alloc_spt(vgpu, type, ops->get_pfn(we));
920 921
		if (IS_ERR(spt)) {
			ret = PTR_ERR(spt);
922 923 924
			goto fail;
		}

925
		ret = intel_vgpu_enable_page_track(vgpu, spt->guest_page.gfn);
926 927 928
		if (ret)
			goto fail;

929
		ret = ppgtt_populate_spt(spt);
930 931 932
		if (ret)
			goto fail;

933 934
		trace_spt_change(vgpu->id, "new", spt, spt->guest_page.gfn,
				 spt->shadow_page.type);
935
	}
936
	return spt;
937
fail:
938
	gvt_vgpu_err("fail: shadow page %p guest entry 0x%llx type %d\n",
939
		     spt, we->val64, we->type);
940 941 942 943 944 945 946 947 948 949 950 951 952 953
	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);
}

954 955 956 957 958 959
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;
960 961 962
	unsigned long gfn;
	dma_addr_t dma_addr;
	int ret;
963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981

	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 */
982 983
	ret = intel_gvt_hypervisor_dma_map_guest_page(vgpu, gfn, &dma_addr);
	if (ret)
984 985
		return -ENXIO;

986
	pte_ops->set_pfn(&se, dma_addr >> PAGE_SHIFT);
987 988 989 990
	ppgtt_set_shadow_entry(spt, &se, index);
	return 0;
}

991
static int ppgtt_populate_spt(struct intel_vgpu_ppgtt_spt *spt)
992 993
{
	struct intel_vgpu *vgpu = spt->vgpu;
994 995
	struct intel_gvt *gvt = vgpu->gvt;
	struct intel_gvt_gtt_pte_ops *ops = gvt->gtt.pte_ops;
996 997
	struct intel_vgpu_ppgtt_spt *s;
	struct intel_gvt_gtt_entry se, ge;
998
	unsigned long gfn, i;
999 1000 1001
	int ret;

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

1004 1005
	for_each_present_guest_entry(spt, &ge, i) {
		if (gtt_type_is_pt(get_next_pt_type(ge.type))) {
1006
			s = ppgtt_populate_spt_by_guest_entry(vgpu, &ge);
1007 1008 1009 1010 1011 1012 1013 1014
			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 {
1015
			gfn = ops->get_pfn(&ge);
1016
			if (!intel_gvt_hypervisor_is_valid_gfn(vgpu, gfn)) {
1017
				ops->set_pfn(&se, gvt->gtt.scratch_mfn);
1018 1019 1020
				ppgtt_set_shadow_entry(spt, &se, i);
				continue;
			}
1021

1022 1023 1024
			ret = ppgtt_populate_shadow_entry(vgpu, spt, i, &ge);
			if (ret)
				goto fail;
1025 1026 1027 1028
		}
	}
	return 0;
fail:
1029 1030
	gvt_vgpu_err("fail: shadow page %p guest entry 0x%llx type %d\n",
			spt, ge.val64, ge.type);
1031 1032 1033
	return ret;
}

1034
static int ppgtt_handle_guest_entry_removal(struct intel_vgpu_ppgtt_spt *spt,
1035
		struct intel_gvt_gtt_entry *se, unsigned long index)
1036 1037 1038 1039 1040
{
	struct intel_vgpu *vgpu = spt->vgpu;
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
	int ret;

1041 1042
	trace_spt_guest_change(spt->vgpu->id, "remove", spt,
			       spt->shadow_page.type, se->val64, index);
1043

1044 1045 1046
	gvt_vdbg_mm("destroy old shadow entry, type %d, index %lu, value %llx\n",
		    se->type, index, se->val64);

1047
	if (!ops->test_present(se))
1048 1049
		return 0;

1050 1051
	if (ops->get_pfn(se) ==
	    vgpu->gtt.scratch_pt[spt->shadow_page.type].page_mfn)
1052 1053
		return 0;

1054
	if (gtt_type_is_pt(get_next_pt_type(se->type))) {
1055
		struct intel_vgpu_ppgtt_spt *s =
1056
			intel_vgpu_find_spt_by_mfn(vgpu, ops->get_pfn(se));
1057
		if (!s) {
1058
			gvt_vgpu_err("fail to find guest page\n");
1059 1060 1061
			ret = -ENXIO;
			goto fail;
		}
1062
		ret = ppgtt_invalidate_spt(s);
1063 1064
		if (ret)
			goto fail;
1065 1066 1067
	} else
		ppgtt_invalidate_pte(spt, se);

1068 1069
	return 0;
fail:
1070
	gvt_vgpu_err("fail: shadow page %p guest entry 0x%llx type %d\n",
1071
			spt, se->val64, se->type);
1072 1073 1074
	return ret;
}

1075
static int ppgtt_handle_guest_entry_add(struct intel_vgpu_ppgtt_spt *spt,
1076 1077 1078 1079 1080 1081 1082
		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;

1083 1084
	trace_spt_guest_change(spt->vgpu->id, "add", spt, spt->shadow_page.type,
			       we->val64, index);
1085

1086 1087 1088
	gvt_vdbg_mm("add shadow entry: type %d, index %lu, value %llx\n",
		    we->type, index, we->val64);

1089
	if (gtt_type_is_pt(get_next_pt_type(we->type))) {
1090
		s = ppgtt_populate_spt_by_guest_entry(vgpu, we);
1091 1092 1093 1094 1095 1096 1097 1098
		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 {
1099
		ret = ppgtt_populate_shadow_entry(vgpu, spt, index, we);
1100 1101 1102 1103 1104
		if (ret)
			goto fail;
	}
	return 0;
fail:
1105 1106
	gvt_vgpu_err("fail: spt %p guest entry 0x%llx type %d\n",
		spt, we->val64, we->type);
1107 1108 1109 1110 1111 1112 1113 1114 1115
	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;
1116
	struct intel_vgpu_ppgtt_spt *spt = oos_page->spt;
1117
	struct intel_gvt_gtt_entry old, new;
1118 1119 1120 1121
	int index;
	int ret;

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

1124
	old.type = new.type = get_entry_type(spt->guest_page.type);
1125 1126
	old.val64 = new.val64 = 0;

Z
Zhi Wang 已提交
1127 1128
	for (index = 0; index < (I915_GTT_PAGE_SIZE >>
				info->gtt_entry_size_shift); index++) {
1129 1130
		ops->get_entry(oos_page->mem, &old, index, false, 0, vgpu);
		ops->get_entry(NULL, &new, index, true,
1131
			       spt->guest_page.gfn << PAGE_SHIFT, vgpu);
1132 1133 1134 1135 1136 1137

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

		trace_oos_sync(vgpu->id, oos_page->id,
1138
				spt, spt->guest_page.type,
1139 1140
				new.val64, index);

1141
		ret = ppgtt_populate_shadow_entry(vgpu, spt, index, &new);
1142 1143 1144 1145 1146 1147
		if (ret)
			return ret;

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

1148
	spt->guest_page.write_cnt = 0;
1149 1150 1151 1152 1153 1154 1155 1156
	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;
1157
	struct intel_vgpu_ppgtt_spt *spt = oos_page->spt;
1158 1159

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

1162 1163 1164
	spt->guest_page.write_cnt = 0;
	spt->guest_page.oos_page = NULL;
	oos_page->spt = NULL;
1165 1166 1167 1168 1169 1170 1171

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

	return 0;
}

1172 1173
static int attach_oos_page(struct intel_vgpu_oos_page *oos_page,
		struct intel_vgpu_ppgtt_spt *spt)
1174
{
1175
	struct intel_gvt *gvt = spt->vgpu->gvt;
1176 1177
	int ret;

1178 1179
	ret = intel_gvt_hypervisor_read_gpa(spt->vgpu,
			spt->guest_page.gfn << I915_GTT_PAGE_SHIFT,
Z
Zhi Wang 已提交
1180
			oos_page->mem, I915_GTT_PAGE_SIZE);
1181 1182 1183
	if (ret)
		return ret;

1184 1185
	oos_page->spt = spt;
	spt->guest_page.oos_page = oos_page;
1186 1187 1188

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

1189 1190
	trace_oos_change(spt->vgpu->id, "attach", oos_page->id,
			 spt, spt->guest_page.type);
1191 1192 1193
	return 0;
}

1194
static int ppgtt_set_guest_page_sync(struct intel_vgpu_ppgtt_spt *spt)
1195
{
1196
	struct intel_vgpu_oos_page *oos_page = spt->guest_page.oos_page;
1197 1198
	int ret;

1199
	ret = intel_vgpu_enable_page_track(spt->vgpu, spt->guest_page.gfn);
1200 1201 1202
	if (ret)
		return ret;

1203 1204
	trace_oos_change(spt->vgpu->id, "set page sync", oos_page->id,
			 spt, spt->guest_page.type);
1205

1206 1207
	list_del_init(&oos_page->vm_list);
	return sync_oos_page(spt->vgpu, oos_page);
1208 1209
}

1210
static int ppgtt_allocate_oos_page(struct intel_vgpu_ppgtt_spt *spt)
1211
{
1212
	struct intel_gvt *gvt = spt->vgpu->gvt;
1213
	struct intel_gvt_gtt *gtt = &gvt->gtt;
1214
	struct intel_vgpu_oos_page *oos_page = spt->guest_page.oos_page;
1215 1216 1217 1218 1219 1220 1221
	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);
1222
		ret = ppgtt_set_guest_page_sync(oos_page->spt);
1223 1224
		if (ret)
			return ret;
1225
		ret = detach_oos_page(spt->vgpu, oos_page);
1226 1227 1228 1229 1230
		if (ret)
			return ret;
	} else
		oos_page = container_of(gtt->oos_page_free_list_head.next,
			struct intel_vgpu_oos_page, list);
1231
	return attach_oos_page(oos_page, spt);
1232 1233
}

1234
static int ppgtt_set_guest_page_oos(struct intel_vgpu_ppgtt_spt *spt)
1235
{
1236
	struct intel_vgpu_oos_page *oos_page = spt->guest_page.oos_page;
1237 1238 1239 1240

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

1241 1242
	trace_oos_change(spt->vgpu->id, "set page out of sync", oos_page->id,
			 spt, spt->guest_page.type);
1243

1244
	list_add_tail(&oos_page->vm_list, &spt->vgpu->gtt.oos_page_list_head);
1245
	return intel_vgpu_disable_page_track(spt->vgpu, spt->guest_page.gfn);
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
}

/**
 * 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);
1270
		ret = ppgtt_set_guest_page_sync(oos_page->spt);
1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
		if (ret)
			return ret;
	}
	return 0;
}

/*
 * The heart of PPGTT shadow page table.
 */
static int ppgtt_handle_guest_write_page_table(
1281
		struct intel_vgpu_ppgtt_spt *spt,
1282 1283 1284
		struct intel_gvt_gtt_entry *we, unsigned long index)
{
	struct intel_vgpu *vgpu = spt->vgpu;
1285
	int type = spt->shadow_page.type;
1286
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
1287
	struct intel_gvt_gtt_entry old_se;
1288
	int new_present;
1289
	int ret;
1290 1291 1292

	new_present = ops->test_present(we);

1293 1294 1295 1296 1297
	/*
	 * 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.
	 */
1298
	ppgtt_get_shadow_entry(spt, &old_se, index);
1299 1300

	if (new_present) {
1301
		ret = ppgtt_handle_guest_entry_add(spt, we, index);
1302 1303 1304
		if (ret)
			goto fail;
	}
1305

1306
	ret = ppgtt_handle_guest_entry_removal(spt, &old_se, index);
1307 1308 1309 1310
	if (ret)
		goto fail;

	if (!new_present) {
1311 1312
		ops->set_pfn(&old_se, vgpu->gtt.scratch_pt[type].page_mfn);
		ppgtt_set_shadow_entry(spt, &old_se, index);
1313 1314
	}

1315 1316
	return 0;
fail:
1317 1318
	gvt_vgpu_err("fail: shadow page %p guest entry 0x%llx type %d.\n",
			spt, we->val64, we->type);
1319 1320 1321
	return ret;
}

1322 1323


1324
static inline bool can_do_out_of_sync(struct intel_vgpu_ppgtt_spt *spt)
1325 1326
{
	return enable_out_of_sync
1327 1328
		&& gtt_type_is_pte_pt(spt->guest_page.type)
		&& spt->guest_page.write_cnt >= 2;
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355
}

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;
1356
	struct intel_gvt_gtt_entry ge;
1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
	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);

1368 1369
			ret = ppgtt_handle_guest_write_page_table(spt,
							&ge, index);
1370 1371 1372 1373 1374 1375 1376 1377 1378
			if (ret)
				return ret;
			clear_bit(index, spt->post_shadow_bitmap);
		}
		list_del_init(&spt->post_shadow_list);
	}
	return 0;
}

1379
static int ppgtt_handle_guest_write_page_table_bytes(
1380
		struct intel_vgpu_ppgtt_spt *spt,
1381 1382 1383 1384 1385
		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;
1386
	struct intel_gvt_gtt_entry we, se;
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396
	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) {
1397
		ret = ppgtt_handle_guest_write_page_table(spt, &we, index);
1398 1399 1400 1401
		if (ret)
			return ret;
	} else {
		if (!test_bit(index, spt->post_shadow_bitmap)) {
1402 1403
			int type = spt->shadow_page.type;

1404
			ppgtt_get_shadow_entry(spt, &se, index);
1405
			ret = ppgtt_handle_guest_entry_removal(spt, &se, index);
1406 1407
			if (ret)
				return ret;
1408 1409
			ops->set_pfn(&se, vgpu->gtt.scratch_pt[type].page_mfn);
			ppgtt_set_shadow_entry(spt, &se, index);
1410 1411 1412 1413 1414 1415 1416
		}
		ppgtt_set_post_shadow(spt, index);
	}

	if (!enable_out_of_sync)
		return 0;

1417
	spt->guest_page.write_cnt++;
1418

1419 1420
	if (spt->guest_page.oos_page)
		ops->set_entry(spt->guest_page.oos_page->mem, &we, index,
1421 1422
				false, 0, vgpu);

1423 1424 1425
	if (can_do_out_of_sync(spt)) {
		if (!spt->guest_page.oos_page)
			ppgtt_allocate_oos_page(spt);
1426

1427
		ret = ppgtt_set_guest_page_oos(spt);
1428 1429 1430 1431 1432 1433
		if (ret < 0)
			return ret;
	}
	return 0;
}

1434
static void invalidate_ppgtt_mm(struct intel_vgpu_mm *mm)
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_gvt_gtt_entry se;
1441
	int index;
1442

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

1446 1447 1448
	for (index = 0; index < ARRAY_SIZE(mm->ppgtt_mm.shadow_pdps); index++) {
		ppgtt_get_shadow_root_entry(mm, &se, index);

1449 1450
		if (!ops->test_present(&se))
			continue;
1451

1452
		ppgtt_invalidate_spt_by_shadow_entry(vgpu, &se);
1453
		se.val64 = 0;
1454
		ppgtt_set_shadow_root_entry(mm, &se, index);
1455

1456 1457
		trace_spt_guest_change(vgpu->id, "destroy root pointer",
				       NULL, se.type, se.val64, index);
1458 1459
	}

1460
	mm->ppgtt_mm.shadowed = false;
1461 1462
}

1463 1464

static int shadow_ppgtt_mm(struct intel_vgpu_mm *mm)
1465 1466 1467 1468 1469 1470 1471
{
	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;
1472
	int index, ret;
1473

1474
	if (mm->ppgtt_mm.shadowed)
1475 1476
		return 0;

1477 1478 1479 1480
	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);
1481 1482 1483 1484

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

1485 1486
		trace_spt_guest_change(vgpu->id, __func__, NULL,
				       ge.type, ge.val64, index);
1487

1488
		spt = ppgtt_populate_spt_by_guest_entry(vgpu, &ge);
1489
		if (IS_ERR(spt)) {
1490
			gvt_vgpu_err("fail to populate guest root pointer\n");
1491 1492 1493 1494
			ret = PTR_ERR(spt);
			goto fail;
		}
		ppgtt_generate_shadow_entry(&se, spt, &ge);
1495
		ppgtt_set_shadow_root_entry(mm, &se, index);
1496

1497 1498
		trace_spt_guest_change(vgpu->id, "populate root pointer",
				       NULL, se.type, se.val64, index);
1499
	}
1500

1501 1502
	return 0;
fail:
1503
	invalidate_ppgtt_mm(mm);
1504 1505 1506
	return ret;
}

1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
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);
}

1527
/**
1528
 * intel_vgpu_create_ppgtt_mm - create a ppgtt mm object for a vGPU
1529
 * @vgpu: a vGPU
1530 1531
 * @root_entry_type: ppgtt root entry type
 * @pdps: guest pdps.
1532
 *
1533
 * This function is used to create a ppgtt mm object for a vGPU.
1534 1535 1536 1537
 *
 * Returns:
 * Zero on success, negative error code in pointer if failed.
 */
1538 1539
struct intel_vgpu_mm *intel_vgpu_create_ppgtt_mm(struct intel_vgpu *vgpu,
		intel_gvt_gtt_type_t root_entry_type, u64 pdps[])
1540 1541 1542 1543 1544
{
	struct intel_gvt *gvt = vgpu->gvt;
	struct intel_vgpu_mm *mm;
	int ret;

1545 1546 1547
	mm = vgpu_alloc_mm(vgpu);
	if (!mm)
		return ERR_PTR(-ENOMEM);
1548

1549
	mm->type = INTEL_GVT_MM_PPGTT;
1550

1551 1552 1553
	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;
1554

1555 1556
	INIT_LIST_HEAD(&mm->ppgtt_mm.list);
	INIT_LIST_HEAD(&mm->ppgtt_mm.lru_list);
1557

1558 1559 1560 1561 1562
	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));
1563

1564
	ret = shadow_ppgtt_mm(mm);
1565
	if (ret) {
1566 1567 1568
		gvt_vgpu_err("failed to shadow ppgtt mm\n");
		vgpu_free_mm(mm);
		return ERR_PTR(ret);
1569 1570
	}

1571 1572 1573 1574
	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;
}
1575

1576 1577 1578 1579
static struct intel_vgpu_mm *intel_vgpu_create_ggtt_mm(struct intel_vgpu *vgpu)
{
	struct intel_vgpu_mm *mm;
	unsigned long nr_entries;
1580

1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592
	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);
1593
	}
1594

1595
	return mm;
1596 1597 1598
}

/**
1599
 * _intel_vgpu_mm_release - destroy a mm object
1600 1601 1602 1603 1604
 * @mm_ref: a kref object
 *
 * This function is used to destroy a mm object for vGPU
 *
 */
1605
void _intel_vgpu_mm_release(struct kref *mm_ref)
1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
{
	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);
1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648
}

/**
 * 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;

1649
	atomic_inc(&mm->pincount);
1650

1651 1652
	if (mm->type == INTEL_GVT_MM_PPGTT) {
		ret = shadow_ppgtt_mm(mm);
1653 1654
		if (ret)
			return ret;
1655 1656 1657 1658

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

1659 1660 1661 1662 1663
	}

	return 0;
}

1664
static int reclaim_one_ppgtt_mm(struct intel_gvt *gvt)
1665 1666 1667 1668
{
	struct intel_vgpu_mm *mm;
	struct list_head *pos, *n;

1669 1670
	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);
1671 1672 1673 1674

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

1675 1676
		list_del_init(&mm->ppgtt_mm.lru_list);
		invalidate_ppgtt_mm(mm);
1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691
		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;

1692
	s = intel_vgpu_find_spt_by_mfn(vgpu, ops->get_pfn(e));
1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722
	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;
1723
	int i, levels = 0;
1724 1725
	int ret;

1726 1727
	GEM_BUG_ON(mm->type != INTEL_GVT_MM_GGTT &&
		   mm->type != INTEL_GVT_MM_PPGTT);
1728 1729 1730 1731 1732

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

1733 1734 1735
		ggtt_get_guest_entry(mm, &e,
			gma_ops->gma_to_ggtt_pte_index(gma));

Z
Zhi Wang 已提交
1736 1737
		gpa = (pte_ops->get_pfn(&e) << I915_GTT_PAGE_SHIFT)
			+ (gma & ~I915_GTT_PAGE_MASK);
1738 1739

		trace_gma_translate(vgpu->id, "ggtt", 0, 0, gma, gpa);
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761
	} 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);
		}
1762

1763 1764 1765 1766 1767 1768
		/* 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;
1769

1770 1771 1772 1773
			if (!pte_ops->test_present(&e)) {
				gvt_dbg_core("GMA 0x%lx is not present\n", gma);
				goto err;
			}
1774
		}
1775

1776 1777 1778 1779 1780
		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);
	}
1781 1782 1783

	return gpa;
err:
1784
	gvt_vgpu_err("invalid mm type: %d gma %lx\n", mm->type, gma);
1785 1786 1787
	return INTEL_GVT_INVALID_ADDR;
}

1788
static int emulate_ggtt_mmio_read(struct intel_vgpu *vgpu,
1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
	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.
 */
1817
int intel_vgpu_emulate_ggtt_mmio_read(struct intel_vgpu *vgpu, unsigned int off,
1818 1819 1820 1821 1822 1823 1824 1825 1826
	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;
1827
	ret = emulate_ggtt_mmio_read(vgpu, off, p_data, bytes);
1828 1829 1830
	return ret;
}

1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842
static void ggtt_invalidate_pte(struct intel_vgpu *vgpu,
		struct intel_gvt_gtt_entry *entry)
{
	struct intel_gvt_gtt_pte_ops *pte_ops = vgpu->gvt->gtt.pte_ops;
	unsigned long pfn;

	pfn = pte_ops->get_pfn(entry);
	if (pfn != vgpu->gvt->gtt.scratch_mfn)
		intel_gvt_hypervisor_dma_unmap_guest_page(vgpu,
						pfn << PAGE_SHIFT);
}

1843
static int emulate_ggtt_mmio_write(struct intel_vgpu *vgpu, unsigned int off,
1844 1845 1846 1847 1848 1849 1850
	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;
1851
	unsigned long gma, gfn;
1852
	struct intel_gvt_gtt_entry e, m;
1853 1854
	dma_addr_t dma_addr;
	int ret;
1855 1856 1857 1858

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

Z
Zhi Wang 已提交
1859
	gma = g_gtt_index << I915_GTT_PAGE_SHIFT;
1860 1861

	/* the VM may configure the whole GM space when ballooning is used */
1862
	if (!vgpu_gmadr_is_valid(vgpu, gma))
1863 1864 1865 1866 1867 1868 1869 1870
		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);

	if (ops->test_present(&e)) {
1871
		gfn = ops->get_pfn(&e);
1872
		m = e;
1873 1874 1875 1876 1877 1878 1879 1880 1881

		/* 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;
		}

1882 1883 1884
		ret = intel_gvt_hypervisor_dma_map_guest_page(vgpu, gfn,
							      &dma_addr);
		if (ret) {
1885
			gvt_vgpu_err("fail to populate guest ggtt entry\n");
1886 1887 1888 1889
			/* 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
			 */
1890
			ops->set_pfn(&m, gvt->gtt.scratch_mfn);
1891
		} else
1892
			ops->set_pfn(&m, dma_addr >> PAGE_SHIFT);
1893 1894 1895
	} else {
		ggtt_get_host_entry(ggtt_mm, &m, g_gtt_index);
		ggtt_invalidate_pte(vgpu, &m);
1896
		ops->set_pfn(&m, gvt->gtt.scratch_mfn);
1897 1898
		ops->clear_present(&m);
	}
1899

1900
out:
1901
	ggtt_set_host_entry(ggtt_mm, &m, g_gtt_index);
1902
	ggtt_invalidate(gvt->dev_priv);
1903 1904 1905 1906 1907
	ggtt_set_guest_entry(ggtt_mm, &e, g_gtt_index);
	return 0;
}

/*
1908
 * intel_vgpu_emulate_ggtt_mmio_write - emulate GTT MMIO register write
1909 1910 1911 1912 1913 1914 1915 1916 1917 1918
 * @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.
 */
1919 1920
int intel_vgpu_emulate_ggtt_mmio_write(struct intel_vgpu *vgpu,
		unsigned int off, void *p_data, unsigned int bytes)
1921 1922 1923 1924 1925 1926 1927 1928
{
	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;
1929
	ret = emulate_ggtt_mmio_write(vgpu, off, p_data, bytes);
1930 1931 1932
	return ret;
}

1933 1934
static int alloc_scratch_pages(struct intel_vgpu *vgpu,
		intel_gvt_gtt_type_t type)
1935 1936
{
	struct intel_vgpu_gtt *gtt = &vgpu->gtt;
1937
	struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops;
1938
	int page_entry_num = I915_GTT_PAGE_SIZE >>
1939
				vgpu->gvt->device_info.gtt_entry_size_shift;
J
Jike Song 已提交
1940
	void *scratch_pt;
1941
	int i;
1942 1943
	struct device *dev = &vgpu->gvt->dev_priv->drm.pdev->dev;
	dma_addr_t daddr;
1944

1945 1946 1947
	if (WARN_ON(type < GTT_TYPE_PPGTT_PTE_PT || type >= GTT_TYPE_MAX))
		return -EINVAL;

J
Jike Song 已提交
1948
	scratch_pt = (void *)get_zeroed_page(GFP_KERNEL);
1949
	if (!scratch_pt) {
1950
		gvt_vgpu_err("fail to allocate scratch page\n");
1951 1952 1953
		return -ENOMEM;
	}

1954 1955 1956
	daddr = dma_map_page(dev, virt_to_page(scratch_pt), 0,
			4096, PCI_DMA_BIDIRECTIONAL);
	if (dma_mapping_error(dev, daddr)) {
1957
		gvt_vgpu_err("fail to dmamap scratch_pt\n");
1958 1959
		__free_page(virt_to_page(scratch_pt));
		return -ENOMEM;
1960
	}
1961
	gtt->scratch_pt[type].page_mfn =
1962
		(unsigned long)(daddr >> I915_GTT_PAGE_SHIFT);
J
Jike Song 已提交
1963
	gtt->scratch_pt[type].page = virt_to_page(scratch_pt);
1964
	gvt_dbg_mm("vgpu%d create scratch_pt: type %d mfn=0x%lx\n",
1965
			vgpu->id, type, gtt->scratch_pt[type].page_mfn);
1966 1967 1968 1969 1970 1971

	/* 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 已提交
1972
	 * GTT_TYPE_PPGTT_PDE_PT level pt, that means this scratch_pt it self
1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986
	 * 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)
1987
			se.val64 |= PPAT_CACHED;
1988 1989

		for (i = 0; i < page_entry_num; i++)
J
Jike Song 已提交
1990
			ops->set_entry(scratch_pt, &se, i, false, 0, vgpu);
1991 1992 1993 1994
	}

	return 0;
}
1995

1996 1997 1998
static int release_scratch_page_tree(struct intel_vgpu *vgpu)
{
	int i;
1999 2000
	struct device *dev = &vgpu->gvt->dev_priv->drm.pdev->dev;
	dma_addr_t daddr;
2001 2002 2003

	for (i = GTT_TYPE_PPGTT_PTE_PT; i < GTT_TYPE_MAX; i++) {
		if (vgpu->gtt.scratch_pt[i].page != NULL) {
2004
			daddr = (dma_addr_t)(vgpu->gtt.scratch_pt[i].page_mfn <<
2005
					I915_GTT_PAGE_SHIFT);
2006
			dma_unmap_page(dev, daddr, 4096, PCI_DMA_BIDIRECTIONAL);
2007 2008 2009 2010
			__free_page(vgpu->gtt.scratch_pt[i].page);
			vgpu->gtt.scratch_pt[i].page = NULL;
			vgpu->gtt.scratch_pt[i].page_mfn = 0;
		}
2011 2012 2013 2014 2015
	}

	return 0;
}

2016
static int create_scratch_page_tree(struct intel_vgpu *vgpu)
2017
{
2018 2019 2020 2021 2022 2023
	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;
2024
	}
2025 2026 2027 2028 2029 2030

	return 0;

err:
	release_scratch_page_tree(vgpu);
	return ret;
2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046
}

/**
 * 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;

2047
	INIT_RADIX_TREE(&gtt->spt_tree, GFP_KERNEL);
2048

2049
	INIT_LIST_HEAD(&gtt->ppgtt_mm_list_head);
2050 2051 2052
	INIT_LIST_HEAD(&gtt->oos_page_list_head);
	INIT_LIST_HEAD(&gtt->post_shadow_list_head);

2053 2054
	gtt->ggtt_mm = intel_vgpu_create_ggtt_mm(vgpu);
	if (IS_ERR(gtt->ggtt_mm)) {
2055
		gvt_vgpu_err("fail to create mm for ggtt.\n");
2056
		return PTR_ERR(gtt->ggtt_mm);
2057 2058
	}

2059
	intel_vgpu_reset_ggtt(vgpu, false);
2060

2061
	return create_scratch_page_tree(vgpu);
2062 2063
}

2064
static void intel_vgpu_destroy_all_ppgtt_mm(struct intel_vgpu *vgpu)
2065 2066 2067 2068
{
	struct list_head *pos, *n;
	struct intel_vgpu_mm *mm;

2069 2070
	list_for_each_safe(pos, n, &vgpu->gtt.ppgtt_mm_list_head) {
		mm = container_of(pos, struct intel_vgpu_mm, ppgtt_mm.list);
2071
		intel_vgpu_destroy_mm(mm);
2072
	}
2073 2074

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

2077
	if (GEM_WARN_ON(!radix_tree_empty(&vgpu->gtt.spt_tree))) {
2078
		gvt_err("Why we still has spt not freed?\n");
2079
		ppgtt_free_all_spt(vgpu);
2080 2081 2082 2083 2084
	}
}

static void intel_vgpu_destroy_ggtt_mm(struct intel_vgpu *vgpu)
{
2085
	intel_vgpu_destroy_mm(vgpu->gtt.ggtt_mm);
2086
	vgpu->gtt.ggtt_mm = NULL;
2087 2088
}

2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100
/**
 * 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)
{
2101 2102
	intel_vgpu_destroy_all_ppgtt_mm(vgpu);
	intel_vgpu_destroy_ggtt_mm(vgpu);
2103
	release_scratch_page_tree(vgpu);
2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164
}

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,
2165
		u64 pdps[])
2166 2167
{
	struct intel_vgpu_mm *mm;
2168
	struct list_head *pos;
2169

2170 2171
	list_for_each(pos, &vgpu->gtt.ppgtt_mm_list_head) {
		mm = container_of(pos, struct intel_vgpu_mm, ppgtt_mm.list);
2172

2173 2174 2175
		switch (mm->ppgtt_mm.root_entry_type) {
		case GTT_TYPE_PPGTT_ROOT_L4_ENTRY:
			if (pdps[0] == mm->ppgtt_mm.guest_pdps[0])
2176
				return mm;
2177 2178 2179 2180
			break;
		case GTT_TYPE_PPGTT_ROOT_L3_ENTRY:
			if (!memcmp(pdps, mm->ppgtt_mm.guest_pdps,
				    sizeof(mm->ppgtt_mm.guest_pdps)))
2181
				return mm;
2182 2183 2184
			break;
		default:
			GEM_BUG_ON(1);
2185 2186 2187 2188 2189 2190
		}
	}
	return NULL;
}

/**
2191
 * intel_vgpu_get_ppgtt_mm - get or create a PPGTT mm object.
2192
 * @vgpu: a vGPU
2193 2194
 * @root_entry_type: ppgtt root entry type
 * @pdps: guest pdps
2195
 *
2196
 * This function is used to find or create a PPGTT mm object from a guest.
2197 2198 2199 2200
 *
 * Returns:
 * Zero on success, negative error code if failed.
 */
2201
struct intel_vgpu_mm *intel_vgpu_get_ppgtt_mm(struct intel_vgpu *vgpu,
2202
		intel_gvt_gtt_type_t root_entry_type, u64 pdps[])
2203 2204 2205
{
	struct intel_vgpu_mm *mm;

2206
	mm = intel_vgpu_find_ppgtt_mm(vgpu, pdps);
2207
	if (mm) {
2208
		intel_vgpu_mm_get(mm);
2209
	} else {
2210
		mm = intel_vgpu_create_ppgtt_mm(vgpu, root_entry_type, pdps);
2211
		if (IS_ERR(mm))
2212
			gvt_vgpu_err("fail to create mm\n");
2213
	}
2214
	return mm;
2215 2216 2217
}

/**
2218
 * intel_vgpu_put_ppgtt_mm - find and put a PPGTT mm object.
2219
 * @vgpu: a vGPU
2220
 * @pdps: guest pdps
2221
 *
2222
 * This function is used to find a PPGTT mm object from a guest and destroy it.
2223 2224 2225 2226
 *
 * Returns:
 * Zero on success, negative error code if failed.
 */
2227
int intel_vgpu_put_ppgtt_mm(struct intel_vgpu *vgpu, u64 pdps[])
2228 2229 2230
{
	struct intel_vgpu_mm *mm;

2231
	mm = intel_vgpu_find_ppgtt_mm(vgpu, pdps);
2232
	if (!mm) {
2233
		gvt_vgpu_err("fail to find ppgtt instance.\n");
2234 2235
		return -EINVAL;
	}
2236
	intel_vgpu_mm_put(mm);
2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252
	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 已提交
2253
	void *page;
2254 2255
	struct device *dev = &gvt->dev_priv->drm.pdev->dev;
	dma_addr_t daddr;
2256 2257 2258

	gvt_dbg_core("init gtt\n");

2259 2260
	if (IS_BROADWELL(gvt->dev_priv) || IS_SKYLAKE(gvt->dev_priv)
		|| IS_KABYLAKE(gvt->dev_priv)) {
2261 2262 2263 2264 2265 2266
		gvt->gtt.pte_ops = &gen8_gtt_pte_ops;
		gvt->gtt.gma_ops = &gen8_gtt_gma_ops;
	} else {
		return -ENODEV;
	}

J
Jike Song 已提交
2267 2268
	page = (void *)get_zeroed_page(GFP_KERNEL);
	if (!page) {
2269 2270 2271 2272
		gvt_err("fail to allocate scratch ggtt page\n");
		return -ENOMEM;
	}

2273 2274 2275 2276 2277 2278
	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;
2279
	}
2280 2281 2282

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

2284 2285 2286 2287
	if (enable_out_of_sync) {
		ret = setup_spt_oos(gvt);
		if (ret) {
			gvt_err("fail to initialize SPT oos\n");
2288
			dma_unmap_page(dev, daddr, 4096, PCI_DMA_BIDIRECTIONAL);
2289
			__free_page(gvt->gtt.scratch_page);
2290 2291 2292
			return ret;
		}
	}
2293
	INIT_LIST_HEAD(&gvt->gtt.ppgtt_mm_lru_list_head);
2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306
	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)
{
2307
	struct device *dev = &gvt->dev_priv->drm.pdev->dev;
2308
	dma_addr_t daddr = (dma_addr_t)(gvt->gtt.scratch_mfn <<
Z
Zhi Wang 已提交
2309
					I915_GTT_PAGE_SHIFT);
2310 2311 2312

	dma_unmap_page(dev, daddr, 4096, PCI_DMA_BIDIRECTIONAL);

2313
	__free_page(gvt->gtt.scratch_page);
2314

2315 2316 2317
	if (enable_out_of_sync)
		clean_spt_oos(gvt);
}
2318

2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340
/**
 * intel_vgpu_invalidate_ppgtt - invalidate PPGTT instances
 * @vgpu: a vGPU
 *
 * This function is called when invalidate all PPGTT instances of a vGPU.
 *
 */
void intel_vgpu_invalidate_ppgtt(struct intel_vgpu *vgpu)
{
	struct list_head *pos, *n;
	struct intel_vgpu_mm *mm;

	list_for_each_safe(pos, n, &vgpu->gtt.ppgtt_mm_list_head) {
		mm = container_of(pos, struct intel_vgpu_mm, ppgtt_mm.list);
		if (mm->type == INTEL_GVT_MM_PPGTT) {
			list_del_init(&mm->ppgtt_mm.lru_list);
			if (mm->ppgtt_mm.shadowed)
				invalidate_ppgtt_mm(mm);
		}
	}
}

2341 2342 2343
/**
 * intel_vgpu_reset_ggtt - reset the GGTT entry
 * @vgpu: a vGPU
2344
 * @invalidate_old: invalidate old entries
2345 2346 2347 2348 2349
 *
 * This function is called at the vGPU create stage
 * to reset all the GGTT entries.
 *
 */
2350
void intel_vgpu_reset_ggtt(struct intel_vgpu *vgpu, bool invalidate_old)
2351 2352
{
	struct intel_gvt *gvt = vgpu->gvt;
2353
	struct drm_i915_private *dev_priv = gvt->dev_priv;
2354 2355
	struct intel_gvt_gtt_pte_ops *pte_ops = vgpu->gvt->gtt.pte_ops;
	struct intel_gvt_gtt_entry entry = {.type = GTT_TYPE_GGTT_PTE};
2356
	struct intel_gvt_gtt_entry old_entry;
2357 2358 2359
	u32 index;
	u32 num_entries;

2360 2361
	pte_ops->set_pfn(&entry, gvt->gtt.scratch_mfn);
	pte_ops->set_present(&entry);
2362 2363 2364

	index = vgpu_aperture_gmadr_base(vgpu) >> PAGE_SHIFT;
	num_entries = vgpu_aperture_sz(vgpu) >> PAGE_SHIFT;
2365 2366 2367 2368 2369
	while (num_entries--) {
		if (invalidate_old) {
			ggtt_get_host_entry(vgpu->gtt.ggtt_mm, &old_entry, index);
			ggtt_invalidate_pte(vgpu, &old_entry);
		}
2370
		ggtt_set_host_entry(vgpu->gtt.ggtt_mm, &entry, index++);
2371
	}
2372 2373 2374

	index = vgpu_hidden_gmadr_base(vgpu) >> PAGE_SHIFT;
	num_entries = vgpu_hidden_sz(vgpu) >> PAGE_SHIFT;
2375 2376 2377 2378 2379
	while (num_entries--) {
		if (invalidate_old) {
			ggtt_get_host_entry(vgpu->gtt.ggtt_mm, &old_entry, index);
			ggtt_invalidate_pte(vgpu, &old_entry);
		}
2380
		ggtt_set_host_entry(vgpu->gtt.ggtt_mm, &entry, index++);
2381
	}
2382

2383
	ggtt_invalidate(dev_priv);
2384
}
2385 2386 2387 2388 2389 2390 2391 2392 2393

/**
 * 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.
 *
 */
2394
void intel_vgpu_reset_gtt(struct intel_vgpu *vgpu)
2395
{
2396 2397 2398 2399
	/* Shadow pages are only created when there is no page
	 * table tracking data, so remove page tracking data after
	 * removing the shadow pages.
	 */
2400
	intel_vgpu_destroy_all_ppgtt_mm(vgpu);
2401
	intel_vgpu_reset_ggtt(vgpu, true);
2402
}