xref: /linux/drivers/gpu/drm/xe/xe_pci.c (revision 5a558f369ef89c6fd8170ee1137274fcc08517ae)
1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright © 2021 Intel Corporation
4  */
5 
6 #include "xe_pci.h"
7 
8 #include <kunit/static_stub.h>
9 #include <linux/device/driver.h>
10 #include <linux/module.h>
11 #include <linux/pci.h>
12 #include <linux/pm_runtime.h>
13 
14 #include <drm/drm_color_mgmt.h>
15 #include <drm/drm_drv.h>
16 #include <drm/xe_pciids.h>
17 
18 #include "display/xe_display.h"
19 #include "regs/xe_gt_regs.h"
20 #include "xe_device.h"
21 #include "xe_drv.h"
22 #include "xe_gt.h"
23 #include "xe_gt_sriov_vf.h"
24 #include "xe_guc.h"
25 #include "xe_macros.h"
26 #include "xe_mmio.h"
27 #include "xe_module.h"
28 #include "xe_pci_sriov.h"
29 #include "xe_pci_types.h"
30 #include "xe_pm.h"
31 #include "xe_sriov.h"
32 #include "xe_step.h"
33 #include "xe_tile.h"
34 
35 enum toggle_d3cold {
36 	D3COLD_DISABLE,
37 	D3COLD_ENABLE,
38 };
39 
40 struct xe_subplatform_desc {
41 	enum xe_subplatform subplatform;
42 	const char *name;
43 	const u16 *pciidlist;
44 };
45 
46 struct xe_device_desc {
47 	/* Should only ever be set for platforms without GMD_ID */
48 	const struct xe_graphics_desc *graphics;
49 	/* Should only ever be set for platforms without GMD_ID */
50 	const struct xe_media_desc *media;
51 
52 	const char *platform_name;
53 	const struct xe_subplatform_desc *subplatforms;
54 
55 	enum xe_platform platform;
56 
57 	u8 require_force_probe:1;
58 	u8 is_dgfx:1;
59 
60 	u8 has_display:1;
61 	u8 has_heci_gscfi:1;
62 	u8 has_llc:1;
63 	u8 has_mmio_ext:1;
64 	u8 has_sriov:1;
65 	u8 skip_guc_pc:1;
66 	u8 skip_mtcfg:1;
67 	u8 skip_pcode:1;
68 };
69 
70 __diag_push();
71 __diag_ignore_all("-Woverride-init", "Allow field overrides in table");
72 
73 #define PLATFORM(x)		\
74 	.platform = XE_##x,	\
75 	.platform_name = #x
76 
77 #define NOP(x)	x
78 
79 static const struct xe_graphics_desc graphics_xelp = {
80 	.name = "Xe_LP",
81 	.ver = 12,
82 	.rel = 0,
83 
84 	.hw_engine_mask = BIT(XE_HW_ENGINE_RCS0) | BIT(XE_HW_ENGINE_BCS0),
85 
86 	.dma_mask_size = 39,
87 	.va_bits = 48,
88 	.vm_max_level = 3,
89 };
90 
91 static const struct xe_graphics_desc graphics_xelpp = {
92 	.name = "Xe_LP+",
93 	.ver = 12,
94 	.rel = 10,
95 
96 	.hw_engine_mask = BIT(XE_HW_ENGINE_RCS0) | BIT(XE_HW_ENGINE_BCS0),
97 
98 	.dma_mask_size = 39,
99 	.va_bits = 48,
100 	.vm_max_level = 3,
101 };
102 
103 #define XE_HP_FEATURES \
104 	.has_range_tlb_invalidation = true, \
105 	.has_flat_ccs = true, \
106 	.dma_mask_size = 46, \
107 	.va_bits = 48, \
108 	.vm_max_level = 3
109 
110 static const struct xe_graphics_desc graphics_xehpg = {
111 	.name = "Xe_HPG",
112 	.ver = 12,
113 	.rel = 55,
114 
115 	.hw_engine_mask =
116 		BIT(XE_HW_ENGINE_RCS0) | BIT(XE_HW_ENGINE_BCS0) |
117 		BIT(XE_HW_ENGINE_CCS0) | BIT(XE_HW_ENGINE_CCS1) |
118 		BIT(XE_HW_ENGINE_CCS2) | BIT(XE_HW_ENGINE_CCS3),
119 
120 	XE_HP_FEATURES,
121 	.vram_flags = XE_VRAM_FLAGS_NEED64K,
122 };
123 
124 static const struct xe_graphics_desc graphics_xehpc = {
125 	.name = "Xe_HPC",
126 	.ver = 12,
127 	.rel = 60,
128 
129 	.hw_engine_mask =
130 		BIT(XE_HW_ENGINE_BCS0) | BIT(XE_HW_ENGINE_BCS1) |
131 		BIT(XE_HW_ENGINE_BCS2) | BIT(XE_HW_ENGINE_BCS3) |
132 		BIT(XE_HW_ENGINE_BCS4) | BIT(XE_HW_ENGINE_BCS5) |
133 		BIT(XE_HW_ENGINE_BCS6) | BIT(XE_HW_ENGINE_BCS7) |
134 		BIT(XE_HW_ENGINE_BCS8) |
135 		BIT(XE_HW_ENGINE_CCS0) | BIT(XE_HW_ENGINE_CCS1) |
136 		BIT(XE_HW_ENGINE_CCS2) | BIT(XE_HW_ENGINE_CCS3),
137 
138 	XE_HP_FEATURES,
139 	.dma_mask_size = 52,
140 	.max_remote_tiles = 1,
141 	.va_bits = 57,
142 	.vm_max_level = 4,
143 	.vram_flags = XE_VRAM_FLAGS_NEED64K,
144 
145 	.has_asid = 1,
146 	.has_atomic_enable_pte_bit = 1,
147 	.has_flat_ccs = 0,
148 	.has_usm = 1,
149 };
150 
151 static const struct xe_graphics_desc graphics_xelpg = {
152 	.name = "Xe_LPG",
153 	.hw_engine_mask =
154 		BIT(XE_HW_ENGINE_RCS0) | BIT(XE_HW_ENGINE_BCS0) |
155 		BIT(XE_HW_ENGINE_CCS0),
156 
157 	XE_HP_FEATURES,
158 	.has_flat_ccs = 0,
159 };
160 
161 #define XE2_GFX_FEATURES \
162 	.dma_mask_size = 46, \
163 	.has_asid = 1, \
164 	.has_atomic_enable_pte_bit = 1, \
165 	.has_flat_ccs = 1, \
166 	.has_indirect_ring_state = 1, \
167 	.has_range_tlb_invalidation = 1, \
168 	.has_usm = 1, \
169 	.va_bits = 48, \
170 	.vm_max_level = 4, \
171 	.hw_engine_mask = \
172 		BIT(XE_HW_ENGINE_RCS0) | \
173 		BIT(XE_HW_ENGINE_BCS8) | BIT(XE_HW_ENGINE_BCS0) | \
174 		GENMASK(XE_HW_ENGINE_CCS3, XE_HW_ENGINE_CCS0)
175 
176 static const struct xe_graphics_desc graphics_xe2 = {
177 	.name = "Xe2_LPG / Xe2_HPG",
178 
179 	XE2_GFX_FEATURES,
180 };
181 
182 static const struct xe_media_desc media_xem = {
183 	.name = "Xe_M",
184 	.ver = 12,
185 	.rel = 0,
186 
187 	.hw_engine_mask =
188 		GENMASK(XE_HW_ENGINE_VCS7, XE_HW_ENGINE_VCS0) |
189 		GENMASK(XE_HW_ENGINE_VECS3, XE_HW_ENGINE_VECS0),
190 };
191 
192 static const struct xe_media_desc media_xehpm = {
193 	.name = "Xe_HPM",
194 	.ver = 12,
195 	.rel = 55,
196 
197 	.hw_engine_mask =
198 		GENMASK(XE_HW_ENGINE_VCS7, XE_HW_ENGINE_VCS0) |
199 		GENMASK(XE_HW_ENGINE_VECS3, XE_HW_ENGINE_VECS0),
200 };
201 
202 static const struct xe_media_desc media_xelpmp = {
203 	.name = "Xe_LPM+",
204 	.hw_engine_mask =
205 		GENMASK(XE_HW_ENGINE_VCS7, XE_HW_ENGINE_VCS0) |
206 		GENMASK(XE_HW_ENGINE_VECS3, XE_HW_ENGINE_VECS0) |
207 		BIT(XE_HW_ENGINE_GSCCS0)
208 };
209 
210 static const struct xe_media_desc media_xe2 = {
211 	.name = "Xe2_LPM / Xe2_HPM",
212 	.hw_engine_mask =
213 		GENMASK(XE_HW_ENGINE_VCS7, XE_HW_ENGINE_VCS0) |
214 		GENMASK(XE_HW_ENGINE_VECS3, XE_HW_ENGINE_VECS0) |
215 		BIT(XE_HW_ENGINE_GSCCS0)
216 };
217 
218 static const struct xe_device_desc tgl_desc = {
219 	.graphics = &graphics_xelp,
220 	.media = &media_xem,
221 	PLATFORM(TIGERLAKE),
222 	.has_display = true,
223 	.has_llc = true,
224 	.require_force_probe = true,
225 };
226 
227 static const struct xe_device_desc rkl_desc = {
228 	.graphics = &graphics_xelp,
229 	.media = &media_xem,
230 	PLATFORM(ROCKETLAKE),
231 	.has_display = true,
232 	.has_llc = true,
233 	.require_force_probe = true,
234 };
235 
236 static const u16 adls_rpls_ids[] = { XE_RPLS_IDS(NOP), 0 };
237 
238 static const struct xe_device_desc adl_s_desc = {
239 	.graphics = &graphics_xelp,
240 	.media = &media_xem,
241 	PLATFORM(ALDERLAKE_S),
242 	.has_display = true,
243 	.has_llc = true,
244 	.require_force_probe = true,
245 	.subplatforms = (const struct xe_subplatform_desc[]) {
246 		{ XE_SUBPLATFORM_ALDERLAKE_S_RPLS, "RPLS", adls_rpls_ids },
247 		{},
248 	},
249 };
250 
251 static const u16 adlp_rplu_ids[] = { XE_RPLU_IDS(NOP), 0 };
252 
253 static const struct xe_device_desc adl_p_desc = {
254 	.graphics = &graphics_xelp,
255 	.media = &media_xem,
256 	PLATFORM(ALDERLAKE_P),
257 	.has_display = true,
258 	.has_llc = true,
259 	.require_force_probe = true,
260 	.subplatforms = (const struct xe_subplatform_desc[]) {
261 		{ XE_SUBPLATFORM_ALDERLAKE_P_RPLU, "RPLU", adlp_rplu_ids },
262 		{},
263 	},
264 };
265 
266 static const struct xe_device_desc adl_n_desc = {
267 	.graphics = &graphics_xelp,
268 	.media = &media_xem,
269 	PLATFORM(ALDERLAKE_N),
270 	.has_display = true,
271 	.has_llc = true,
272 	.require_force_probe = true,
273 };
274 
275 #define DGFX_FEATURES \
276 	.is_dgfx = 1
277 
278 static const struct xe_device_desc dg1_desc = {
279 	.graphics = &graphics_xelpp,
280 	.media = &media_xem,
281 	DGFX_FEATURES,
282 	PLATFORM(DG1),
283 	.has_display = true,
284 	.has_heci_gscfi = 1,
285 	.require_force_probe = true,
286 };
287 
288 static const u16 dg2_g10_ids[] = { XE_DG2_G10_IDS(NOP), XE_ATS_M150_IDS(NOP), 0 };
289 static const u16 dg2_g11_ids[] = { XE_DG2_G11_IDS(NOP), XE_ATS_M75_IDS(NOP), 0 };
290 static const u16 dg2_g12_ids[] = { XE_DG2_G12_IDS(NOP), 0 };
291 
292 #define DG2_FEATURES \
293 	DGFX_FEATURES, \
294 	PLATFORM(DG2), \
295 	.has_heci_gscfi = 1, \
296 	.subplatforms = (const struct xe_subplatform_desc[]) { \
297 		{ XE_SUBPLATFORM_DG2_G10, "G10", dg2_g10_ids }, \
298 		{ XE_SUBPLATFORM_DG2_G11, "G11", dg2_g11_ids }, \
299 		{ XE_SUBPLATFORM_DG2_G12, "G12", dg2_g12_ids }, \
300 		{ } \
301 	}
302 
303 static const struct xe_device_desc ats_m_desc = {
304 	.graphics = &graphics_xehpg,
305 	.media = &media_xehpm,
306 	.require_force_probe = true,
307 
308 	DG2_FEATURES,
309 	.has_display = false,
310 };
311 
312 static const struct xe_device_desc dg2_desc = {
313 	.graphics = &graphics_xehpg,
314 	.media = &media_xehpm,
315 	.require_force_probe = true,
316 
317 	DG2_FEATURES,
318 	.has_display = true,
319 };
320 
321 static const __maybe_unused struct xe_device_desc pvc_desc = {
322 	.graphics = &graphics_xehpc,
323 	DGFX_FEATURES,
324 	PLATFORM(PVC),
325 	.has_display = false,
326 	.has_heci_gscfi = 1,
327 	.require_force_probe = true,
328 };
329 
330 static const struct xe_device_desc mtl_desc = {
331 	/* .graphics and .media determined via GMD_ID */
332 	.require_force_probe = true,
333 	PLATFORM(METEORLAKE),
334 	.has_display = true,
335 };
336 
337 static const struct xe_device_desc lnl_desc = {
338 	PLATFORM(LUNARLAKE),
339 	.has_display = true,
340 	.require_force_probe = true,
341 };
342 
343 static const struct xe_device_desc bmg_desc __maybe_unused = {
344 	DGFX_FEATURES,
345 	PLATFORM(BATTLEMAGE),
346 	.require_force_probe = true,
347 };
348 
349 #undef PLATFORM
350 __diag_pop();
351 
352 /* Map of GMD_ID values to graphics IP */
353 static const struct gmdid_map graphics_ip_map[] = {
354 	{ 1270, &graphics_xelpg },
355 	{ 1271, &graphics_xelpg },
356 	{ 1274, &graphics_xelpg },	/* Xe_LPG+ */
357 	{ 2001, &graphics_xe2 },
358 	{ 2004, &graphics_xe2 },
359 };
360 
361 /* Map of GMD_ID values to media IP */
362 static const struct gmdid_map media_ip_map[] = {
363 	{ 1300, &media_xelpmp },
364 	{ 1301, &media_xe2 },
365 	{ 2000, &media_xe2 },
366 };
367 
368 #define INTEL_VGA_DEVICE(id, info) {			\
369 	PCI_DEVICE(PCI_VENDOR_ID_INTEL, id),		\
370 	PCI_BASE_CLASS_DISPLAY << 16, 0xff << 16,	\
371 	(unsigned long) info }
372 
373 /*
374  * Make sure any device matches here are from most specific to most
375  * general.  For example, since the Quanta match is based on the subsystem
376  * and subvendor IDs, we need it to come before the more general IVB
377  * PCI ID matches, otherwise we'll use the wrong info struct above.
378  */
379 static const struct pci_device_id pciidlist[] = {
380 	XE_TGL_IDS(INTEL_VGA_DEVICE, &tgl_desc),
381 	XE_RKL_IDS(INTEL_VGA_DEVICE, &rkl_desc),
382 	XE_ADLS_IDS(INTEL_VGA_DEVICE, &adl_s_desc),
383 	XE_ADLP_IDS(INTEL_VGA_DEVICE, &adl_p_desc),
384 	XE_ADLN_IDS(INTEL_VGA_DEVICE, &adl_n_desc),
385 	XE_RPLP_IDS(INTEL_VGA_DEVICE, &adl_p_desc),
386 	XE_RPLS_IDS(INTEL_VGA_DEVICE, &adl_s_desc),
387 	XE_DG1_IDS(INTEL_VGA_DEVICE, &dg1_desc),
388 	XE_ATS_M_IDS(INTEL_VGA_DEVICE, &ats_m_desc),
389 	XE_DG2_IDS(INTEL_VGA_DEVICE, &dg2_desc),
390 	XE_MTL_IDS(INTEL_VGA_DEVICE, &mtl_desc),
391 	XE_LNL_IDS(INTEL_VGA_DEVICE, &lnl_desc),
392 	{ }
393 };
394 MODULE_DEVICE_TABLE(pci, pciidlist);
395 
396 #undef INTEL_VGA_DEVICE
397 
398 /* is device_id present in comma separated list of ids */
399 static bool device_id_in_list(u16 device_id, const char *devices, bool negative)
400 {
401 	char *s, *p, *tok;
402 	bool ret;
403 
404 	if (!devices || !*devices)
405 		return false;
406 
407 	/* match everything */
408 	if (negative && strcmp(devices, "!*") == 0)
409 		return true;
410 	if (!negative && strcmp(devices, "*") == 0)
411 		return true;
412 
413 	s = kstrdup(devices, GFP_KERNEL);
414 	if (!s)
415 		return false;
416 
417 	for (p = s, ret = false; (tok = strsep(&p, ",")) != NULL; ) {
418 		u16 val;
419 
420 		if (negative && tok[0] == '!')
421 			tok++;
422 		else if ((negative && tok[0] != '!') ||
423 			 (!negative && tok[0] == '!'))
424 			continue;
425 
426 		if (kstrtou16(tok, 16, &val) == 0 && val == device_id) {
427 			ret = true;
428 			break;
429 		}
430 	}
431 
432 	kfree(s);
433 
434 	return ret;
435 }
436 
437 static bool id_forced(u16 device_id)
438 {
439 	return device_id_in_list(device_id, xe_modparam.force_probe, false);
440 }
441 
442 static bool id_blocked(u16 device_id)
443 {
444 	return device_id_in_list(device_id, xe_modparam.force_probe, true);
445 }
446 
447 static const struct xe_subplatform_desc *
448 find_subplatform(const struct xe_device *xe, const struct xe_device_desc *desc)
449 {
450 	const struct xe_subplatform_desc *sp;
451 	const u16 *id;
452 
453 	for (sp = desc->subplatforms; sp && sp->subplatform; sp++)
454 		for (id = sp->pciidlist; *id; id++)
455 			if (*id == xe->info.devid)
456 				return sp;
457 
458 	return NULL;
459 }
460 
461 enum xe_gmdid_type {
462 	GMDID_GRAPHICS,
463 	GMDID_MEDIA
464 };
465 
466 static void read_gmdid(struct xe_device *xe, enum xe_gmdid_type type, u32 *ver, u32 *revid)
467 {
468 	struct xe_gt *gt = xe_root_mmio_gt(xe);
469 	struct xe_reg gmdid_reg = GMD_ID;
470 	u32 val;
471 
472 	KUNIT_STATIC_STUB_REDIRECT(read_gmdid, xe, type, ver, revid);
473 
474 	if (IS_SRIOV_VF(xe)) {
475 		/*
476 		 * To get the value of the GMDID register, VFs must obtain it
477 		 * from the GuC using MMIO communication.
478 		 *
479 		 * Note that at this point the xe_gt is not fully uninitialized
480 		 * and only basic access to MMIO registers is possible. To use
481 		 * our existing GuC communication functions we must perform at
482 		 * least basic xe_gt and xe_guc initialization.
483 		 *
484 		 * Since to obtain the value of GMDID_MEDIA we need to use the
485 		 * media GuC, temporarly tweak the gt type.
486 		 */
487 		xe_gt_assert(gt, gt->info.type == XE_GT_TYPE_UNINITIALIZED);
488 
489 		if (type == GMDID_MEDIA) {
490 			gt->info.id = 1;
491 			gt->info.type = XE_GT_TYPE_MEDIA;
492 		} else {
493 			gt->info.id = 0;
494 			gt->info.type = XE_GT_TYPE_MAIN;
495 		}
496 
497 		xe_guc_comm_init_early(&gt->uc.guc);
498 
499 		/* Don't bother with GMDID if failed to negotiate the GuC ABI */
500 		val = xe_gt_sriov_vf_bootstrap(gt) ? 0 : xe_gt_sriov_vf_gmdid(gt);
501 
502 		/*
503 		 * Only undo xe_gt.info here, the remaining changes made above
504 		 * will be overwritten as part of the regular initialization.
505 		 */
506 		gt->info.id = 0;
507 		gt->info.type = XE_GT_TYPE_UNINITIALIZED;
508 	} else {
509 		/*
510 		 * We need to apply the GSI offset explicitly here as at this
511 		 * point the xe_gt is not fully uninitialized and only basic
512 		 * access to MMIO registers is possible.
513 		 */
514 		if (type == GMDID_MEDIA)
515 			gmdid_reg.addr += MEDIA_GT_GSI_OFFSET;
516 
517 		val = xe_mmio_read32(gt, gmdid_reg);
518 	}
519 
520 	*ver = REG_FIELD_GET(GMD_ID_ARCH_MASK, val) * 100 + REG_FIELD_GET(GMD_ID_RELEASE_MASK, val);
521 	*revid = REG_FIELD_GET(GMD_ID_REVID, val);
522 }
523 
524 /*
525  * Pre-GMD_ID platform: device descriptor already points to the appropriate
526  * graphics descriptor. Simply forward the description and calculate the version
527  * appropriately. "graphics" should be present in all such platforms, while
528  * media is optional.
529  */
530 static void handle_pre_gmdid(struct xe_device *xe,
531 			     const struct xe_graphics_desc *graphics,
532 			     const struct xe_media_desc *media)
533 {
534 	xe->info.graphics_verx100 = graphics->ver * 100 + graphics->rel;
535 
536 	if (media)
537 		xe->info.media_verx100 = media->ver * 100 + media->rel;
538 
539 }
540 
541 /*
542  * GMD_ID platform: read IP version from hardware and select graphics descriptor
543  * based on the result.
544  */
545 static void handle_gmdid(struct xe_device *xe,
546 			 const struct xe_graphics_desc **graphics,
547 			 const struct xe_media_desc **media,
548 			 u32 *graphics_revid,
549 			 u32 *media_revid)
550 {
551 	u32 ver;
552 
553 	read_gmdid(xe, GMDID_GRAPHICS, &ver, graphics_revid);
554 
555 	for (int i = 0; i < ARRAY_SIZE(graphics_ip_map); i++) {
556 		if (ver == graphics_ip_map[i].ver) {
557 			xe->info.graphics_verx100 = ver;
558 			*graphics = graphics_ip_map[i].ip;
559 
560 			break;
561 		}
562 	}
563 
564 	if (!xe->info.graphics_verx100) {
565 		drm_err(&xe->drm, "Hardware reports unknown graphics version %u.%02u\n",
566 			ver / 100, ver % 100);
567 	}
568 
569 	read_gmdid(xe, GMDID_MEDIA, &ver, media_revid);
570 
571 	/* Media may legitimately be fused off / not present */
572 	if (ver == 0)
573 		return;
574 
575 	for (int i = 0; i < ARRAY_SIZE(media_ip_map); i++) {
576 		if (ver == media_ip_map[i].ver) {
577 			xe->info.media_verx100 = ver;
578 			*media = media_ip_map[i].ip;
579 
580 			break;
581 		}
582 	}
583 
584 	if (!xe->info.media_verx100) {
585 		drm_err(&xe->drm, "Hardware reports unknown media version %u.%02u\n",
586 			ver / 100, ver % 100);
587 	}
588 }
589 
590 /*
591  * Initialize device info content that only depends on static driver_data
592  * passed to the driver at probe time from PCI ID table.
593  */
594 static int xe_info_init_early(struct xe_device *xe,
595 			      const struct xe_device_desc *desc,
596 			      const struct xe_subplatform_desc *subplatform_desc)
597 {
598 	int err;
599 
600 	xe->info.platform_name = desc->platform_name;
601 	xe->info.platform = desc->platform;
602 	xe->info.subplatform = subplatform_desc ?
603 		subplatform_desc->subplatform : XE_SUBPLATFORM_NONE;
604 
605 	xe->info.is_dgfx = desc->is_dgfx;
606 	xe->info.has_heci_gscfi = desc->has_heci_gscfi;
607 	xe->info.has_llc = desc->has_llc;
608 	xe->info.has_mmio_ext = desc->has_mmio_ext;
609 	xe->info.has_sriov = desc->has_sriov;
610 	xe->info.skip_guc_pc = desc->skip_guc_pc;
611 	xe->info.skip_mtcfg = desc->skip_mtcfg;
612 	xe->info.skip_pcode = desc->skip_pcode;
613 
614 	xe->info.enable_display = IS_ENABLED(CONFIG_DRM_XE_DISPLAY) &&
615 				  xe_modparam.enable_display &&
616 				  desc->has_display;
617 
618 	err = xe_tile_init_early(xe_device_get_root_tile(xe), xe, 0);
619 	if (err)
620 		return err;
621 
622 	return 0;
623 }
624 
625 /*
626  * Initialize device info content that does require knowledge about
627  * graphics / media IP version.
628  * Make sure that GT / tile structures allocated by the driver match the data
629  * present in device info.
630  */
631 static int xe_info_init(struct xe_device *xe,
632 			const struct xe_graphics_desc *graphics_desc,
633 			const struct xe_media_desc *media_desc)
634 {
635 	u32 graphics_gmdid_revid = 0, media_gmdid_revid = 0;
636 	struct xe_tile *tile;
637 	struct xe_gt *gt;
638 	u8 id;
639 
640 	/*
641 	 * If this platform supports GMD_ID, we'll detect the proper IP
642 	 * descriptor to use from hardware registers. desc->graphics will only
643 	 * ever be set at this point for platforms before GMD_ID. In that case
644 	 * the IP descriptions and versions are simply derived from that.
645 	 */
646 	if (graphics_desc) {
647 		handle_pre_gmdid(xe, graphics_desc, media_desc);
648 		xe->info.step = xe_step_pre_gmdid_get(xe);
649 	} else {
650 		xe_assert(xe, !media_desc);
651 		handle_gmdid(xe, &graphics_desc, &media_desc,
652 			     &graphics_gmdid_revid, &media_gmdid_revid);
653 		xe->info.step = xe_step_gmdid_get(xe,
654 						  graphics_gmdid_revid,
655 						  media_gmdid_revid);
656 	}
657 
658 	/*
659 	 * If we couldn't detect the graphics IP, that's considered a fatal
660 	 * error and we should abort driver load.  Failing to detect media
661 	 * IP is non-fatal; we'll just proceed without enabling media support.
662 	 */
663 	if (!graphics_desc)
664 		return -ENODEV;
665 
666 	xe->info.graphics_name = graphics_desc->name;
667 	xe->info.media_name = media_desc ? media_desc->name : "none";
668 	xe->info.tile_mmio_ext_size = graphics_desc->tile_mmio_ext_size;
669 
670 	xe->info.dma_mask_size = graphics_desc->dma_mask_size;
671 	xe->info.vram_flags = graphics_desc->vram_flags;
672 	xe->info.va_bits = graphics_desc->va_bits;
673 	xe->info.vm_max_level = graphics_desc->vm_max_level;
674 	xe->info.has_asid = graphics_desc->has_asid;
675 	xe->info.has_atomic_enable_pte_bit = graphics_desc->has_atomic_enable_pte_bit;
676 	if (xe->info.platform != XE_PVC)
677 		xe->info.has_device_atomics_on_smem = 1;
678 	xe->info.has_flat_ccs = graphics_desc->has_flat_ccs;
679 	xe->info.has_range_tlb_invalidation = graphics_desc->has_range_tlb_invalidation;
680 	xe->info.has_usm = graphics_desc->has_usm;
681 
682 	/*
683 	 * All platforms have at least one primary GT.  Any platform with media
684 	 * version 13 or higher has an additional dedicated media GT.  And
685 	 * depending on the graphics IP there may be additional "remote tiles."
686 	 * All of these together determine the overall GT count.
687 	 *
688 	 * FIXME: 'tile_count' here is misnamed since the rest of the driver
689 	 * treats it as the number of GTs rather than just the number of tiles.
690 	 */
691 	xe->info.tile_count = 1 + graphics_desc->max_remote_tiles;
692 
693 	for_each_remote_tile(tile, xe, id) {
694 		int err;
695 
696 		err = xe_tile_init_early(tile, xe, id);
697 		if (err)
698 			return err;
699 	}
700 
701 	for_each_tile(tile, xe, id) {
702 		gt = tile->primary_gt;
703 		gt->info.id = xe->info.gt_count++;
704 		gt->info.type = XE_GT_TYPE_MAIN;
705 		gt->info.has_indirect_ring_state = graphics_desc->has_indirect_ring_state;
706 		gt->info.engine_mask = graphics_desc->hw_engine_mask;
707 		if (MEDIA_VER(xe) < 13 && media_desc)
708 			gt->info.engine_mask |= media_desc->hw_engine_mask;
709 
710 		if (MEDIA_VER(xe) < 13 || !media_desc)
711 			continue;
712 
713 		/*
714 		 * Allocate and setup media GT for platforms with standalone
715 		 * media.
716 		 */
717 		tile->media_gt = xe_gt_alloc(tile);
718 		if (IS_ERR(tile->media_gt))
719 			return PTR_ERR(tile->media_gt);
720 
721 		gt = tile->media_gt;
722 		gt->info.type = XE_GT_TYPE_MEDIA;
723 		gt->info.has_indirect_ring_state = media_desc->has_indirect_ring_state;
724 		gt->info.engine_mask = media_desc->hw_engine_mask;
725 		gt->mmio.adj_offset = MEDIA_GT_GSI_OFFSET;
726 		gt->mmio.adj_limit = MEDIA_GT_GSI_LENGTH;
727 
728 		/*
729 		 * FIXME: At the moment multi-tile and standalone media are
730 		 * mutually exclusive on current platforms.  We'll need to
731 		 * come up with a better way to number GTs if we ever wind
732 		 * up with platforms that support both together.
733 		 */
734 		drm_WARN_ON(&xe->drm, id != 0);
735 		gt->info.id = xe->info.gt_count++;
736 	}
737 
738 	return 0;
739 }
740 
741 static void xe_pci_remove(struct pci_dev *pdev)
742 {
743 	struct xe_device *xe;
744 
745 	xe = pci_get_drvdata(pdev);
746 	if (!xe) /* driver load aborted, nothing to cleanup */
747 		return;
748 
749 	xe_device_remove(xe);
750 	xe_pm_runtime_fini(xe);
751 	pci_set_drvdata(pdev, NULL);
752 }
753 
754 static int xe_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
755 {
756 	const struct xe_device_desc *desc = (const void *)ent->driver_data;
757 	const struct xe_subplatform_desc *subplatform_desc;
758 	struct xe_device *xe;
759 	int err;
760 
761 	if (desc->require_force_probe && !id_forced(pdev->device)) {
762 		dev_info(&pdev->dev,
763 			 "Your graphics device %04x is not officially supported\n"
764 			 "by xe driver in this kernel version. To force Xe probe,\n"
765 			 "use xe.force_probe='%04x' and i915.force_probe='!%04x'\n"
766 			 "module parameters or CONFIG_DRM_XE_FORCE_PROBE='%04x' and\n"
767 			 "CONFIG_DRM_I915_FORCE_PROBE='!%04x' configuration options.\n",
768 			 pdev->device, pdev->device, pdev->device,
769 			 pdev->device, pdev->device);
770 		return -ENODEV;
771 	}
772 
773 	if (id_blocked(pdev->device)) {
774 		dev_info(&pdev->dev, "Probe blocked for device [%04x:%04x].\n",
775 			 pdev->vendor, pdev->device);
776 		return -ENODEV;
777 	}
778 
779 	if (xe_display_driver_probe_defer(pdev))
780 		return -EPROBE_DEFER;
781 
782 	err = pcim_enable_device(pdev);
783 	if (err)
784 		return err;
785 
786 	xe = xe_device_create(pdev, ent);
787 	if (IS_ERR(xe))
788 		return PTR_ERR(xe);
789 
790 	pci_set_drvdata(pdev, xe);
791 
792 	xe_pm_assert_unbounded_bridge(xe);
793 	subplatform_desc = find_subplatform(xe, desc);
794 
795 	pci_set_master(pdev);
796 
797 	err = xe_info_init_early(xe, desc, subplatform_desc);
798 	if (err)
799 		return err;
800 
801 	err = xe_device_probe_early(xe);
802 	if (err)
803 		return err;
804 
805 	err = xe_info_init(xe, desc->graphics, desc->media);
806 	if (err)
807 		return err;
808 
809 	err = xe_display_probe(xe);
810 	if (err)
811 		return err;
812 
813 	drm_dbg(&xe->drm, "%s %s %04x:%04x dgfx:%d gfx:%s (%d.%02d) media:%s (%d.%02d) display:%s dma_m_s:%d tc:%d gscfi:%d",
814 		desc->platform_name,
815 		subplatform_desc ? subplatform_desc->name : "",
816 		xe->info.devid, xe->info.revid,
817 		xe->info.is_dgfx,
818 		xe->info.graphics_name,
819 		xe->info.graphics_verx100 / 100,
820 		xe->info.graphics_verx100 % 100,
821 		xe->info.media_name,
822 		xe->info.media_verx100 / 100,
823 		xe->info.media_verx100 % 100,
824 		str_yes_no(xe->info.enable_display),
825 		xe->info.dma_mask_size, xe->info.tile_count,
826 		xe->info.has_heci_gscfi);
827 
828 	drm_dbg(&xe->drm, "Stepping = (G:%s, M:%s, D:%s, B:%s)\n",
829 		xe_step_name(xe->info.step.graphics),
830 		xe_step_name(xe->info.step.media),
831 		xe_step_name(xe->info.step.display),
832 		xe_step_name(xe->info.step.basedie));
833 
834 	drm_dbg(&xe->drm, "SR-IOV support: %s (mode: %s)\n",
835 		str_yes_no(xe_device_has_sriov(xe)),
836 		xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
837 
838 	err = xe_pm_init_early(xe);
839 	if (err)
840 		return err;
841 
842 	err = xe_device_probe(xe);
843 	if (err)
844 		return err;
845 
846 	err = xe_pm_init(xe);
847 	if (err)
848 		goto err_driver_cleanup;
849 
850 	drm_dbg(&xe->drm, "d3cold: capable=%s\n",
851 		str_yes_no(xe->d3cold.capable));
852 
853 	return 0;
854 
855 err_driver_cleanup:
856 	xe_pci_remove(pdev);
857 	return err;
858 }
859 
860 static void xe_pci_shutdown(struct pci_dev *pdev)
861 {
862 	xe_device_shutdown(pdev_to_xe_device(pdev));
863 }
864 
865 #ifdef CONFIG_PM_SLEEP
866 static void d3cold_toggle(struct pci_dev *pdev, enum toggle_d3cold toggle)
867 {
868 	struct xe_device *xe = pdev_to_xe_device(pdev);
869 	struct pci_dev *root_pdev;
870 
871 	if (!xe->d3cold.capable)
872 		return;
873 
874 	root_pdev = pcie_find_root_port(pdev);
875 	if (!root_pdev)
876 		return;
877 
878 	switch (toggle) {
879 	case D3COLD_DISABLE:
880 		pci_d3cold_disable(root_pdev);
881 		break;
882 	case D3COLD_ENABLE:
883 		pci_d3cold_enable(root_pdev);
884 		break;
885 	}
886 }
887 
888 static int xe_pci_suspend(struct device *dev)
889 {
890 	struct pci_dev *pdev = to_pci_dev(dev);
891 	int err;
892 
893 	err = xe_pm_suspend(pdev_to_xe_device(pdev));
894 	if (err)
895 		return err;
896 
897 	/*
898 	 * Enabling D3Cold is needed for S2Idle/S0ix.
899 	 * It is save to allow here since xe_pm_suspend has evicted
900 	 * the local memory and the direct complete optimization is disabled.
901 	 */
902 	d3cold_toggle(pdev, D3COLD_ENABLE);
903 
904 	pci_save_state(pdev);
905 	pci_disable_device(pdev);
906 
907 	return 0;
908 }
909 
910 static int xe_pci_resume(struct device *dev)
911 {
912 	struct pci_dev *pdev = to_pci_dev(dev);
913 	int err;
914 
915 	/* Give back the D3Cold decision to the runtime P M*/
916 	d3cold_toggle(pdev, D3COLD_DISABLE);
917 
918 	err = pci_set_power_state(pdev, PCI_D0);
919 	if (err)
920 		return err;
921 
922 	err = pci_enable_device(pdev);
923 	if (err)
924 		return err;
925 
926 	pci_set_master(pdev);
927 
928 	err = xe_pm_resume(pdev_to_xe_device(pdev));
929 	if (err)
930 		return err;
931 
932 	return 0;
933 }
934 
935 static int xe_pci_runtime_suspend(struct device *dev)
936 {
937 	struct pci_dev *pdev = to_pci_dev(dev);
938 	struct xe_device *xe = pdev_to_xe_device(pdev);
939 	int err;
940 
941 	err = xe_pm_runtime_suspend(xe);
942 	if (err)
943 		return err;
944 
945 	pci_save_state(pdev);
946 
947 	if (xe->d3cold.allowed) {
948 		d3cold_toggle(pdev, D3COLD_ENABLE);
949 		pci_disable_device(pdev);
950 		pci_ignore_hotplug(pdev);
951 		pci_set_power_state(pdev, PCI_D3cold);
952 	} else {
953 		d3cold_toggle(pdev, D3COLD_DISABLE);
954 		pci_set_power_state(pdev, PCI_D3hot);
955 	}
956 
957 	return 0;
958 }
959 
960 static int xe_pci_runtime_resume(struct device *dev)
961 {
962 	struct pci_dev *pdev = to_pci_dev(dev);
963 	struct xe_device *xe = pdev_to_xe_device(pdev);
964 	int err;
965 
966 	err = pci_set_power_state(pdev, PCI_D0);
967 	if (err)
968 		return err;
969 
970 	pci_restore_state(pdev);
971 
972 	if (xe->d3cold.allowed) {
973 		err = pci_enable_device(pdev);
974 		if (err)
975 			return err;
976 
977 		pci_set_master(pdev);
978 	}
979 
980 	return xe_pm_runtime_resume(xe);
981 }
982 
983 static int xe_pci_runtime_idle(struct device *dev)
984 {
985 	struct pci_dev *pdev = to_pci_dev(dev);
986 	struct xe_device *xe = pdev_to_xe_device(pdev);
987 
988 	xe_pm_d3cold_allowed_toggle(xe);
989 
990 	return 0;
991 }
992 
993 static const struct dev_pm_ops xe_pm_ops = {
994 	SET_SYSTEM_SLEEP_PM_OPS(xe_pci_suspend, xe_pci_resume)
995 	SET_RUNTIME_PM_OPS(xe_pci_runtime_suspend, xe_pci_runtime_resume, xe_pci_runtime_idle)
996 };
997 #endif
998 
999 static struct pci_driver xe_pci_driver = {
1000 	.name = DRIVER_NAME,
1001 	.id_table = pciidlist,
1002 	.probe = xe_pci_probe,
1003 	.remove = xe_pci_remove,
1004 	.shutdown = xe_pci_shutdown,
1005 #ifdef CONFIG_PCI_IOV
1006 	.sriov_configure = xe_pci_sriov_configure,
1007 #endif
1008 #ifdef CONFIG_PM_SLEEP
1009 	.driver.pm = &xe_pm_ops,
1010 #endif
1011 };
1012 
1013 int xe_register_pci_driver(void)
1014 {
1015 	return pci_register_driver(&xe_pci_driver);
1016 }
1017 
1018 void xe_unregister_pci_driver(void)
1019 {
1020 	pci_unregister_driver(&xe_pci_driver);
1021 }
1022 
1023 #if IS_ENABLED(CONFIG_DRM_XE_KUNIT_TEST)
1024 #include "tests/xe_pci.c"
1025 #endif
1026