2 * Copyright © 2016 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
25 #include <drm/drm_color_mgmt.h>
26 #include <drm/drm_drv.h>
27 #include <drm/i915_pciids.h>
29 #include "display/intel_display.h"
30 #include "display/intel_display_driver.h"
31 #include "gt/intel_gt_regs.h"
32 #include "gt/intel_sa_media.h"
33 #include "gem/i915_gem_object_types.h"
35 #include "i915_driver.h"
39 #include "intel_pci_config.h"
41 #define PLATFORM(x) .platform = (x)
43 .__runtime.graphics.ip.ver = (x), \
44 .__runtime.media.ip.ver = (x)
46 #define LEGACY_CACHELEVEL \
47 .cachelevel_to_pat = { \
48 [I915_CACHE_NONE] = 0, \
49 [I915_CACHE_LLC] = 1, \
50 [I915_CACHE_L3_LLC] = 2, \
51 [I915_CACHE_WT] = 3, \
54 #define TGL_CACHELEVEL \
55 .cachelevel_to_pat = { \
56 [I915_CACHE_NONE] = 3, \
57 [I915_CACHE_LLC] = 0, \
58 [I915_CACHE_L3_LLC] = 0, \
59 [I915_CACHE_WT] = 2, \
62 #define PVC_CACHELEVEL \
63 .cachelevel_to_pat = { \
64 [I915_CACHE_NONE] = 0, \
65 [I915_CACHE_LLC] = 3, \
66 [I915_CACHE_L3_LLC] = 3, \
67 [I915_CACHE_WT] = 2, \
70 #define MTL_CACHELEVEL \
71 .cachelevel_to_pat = { \
72 [I915_CACHE_NONE] = 2, \
73 [I915_CACHE_LLC] = 3, \
74 [I915_CACHE_L3_LLC] = 3, \
75 [I915_CACHE_WT] = 1, \
78 /* Keep in gen based order, and chronological order within a gen */
80 #define GEN_DEFAULT_PAGE_SIZES \
81 .__runtime.page_sizes = I915_GTT_PAGE_SIZE_4K
83 #define GEN_DEFAULT_REGIONS \
84 .memory_regions = REGION_SMEM | REGION_STOLEN_SMEM
86 #define I830_FEATURES \
89 .gpu_reset_clobbers_display = true, \
90 .has_3d_pipeline = 1, \
91 .hws_needs_physical = 1, \
92 .unfenced_needs_alignment = 1, \
93 .platform_engine_mask = BIT(RCS0), \
95 .has_coherent_ggtt = false, \
96 .dma_mask_size = 32, \
98 GEN_DEFAULT_PAGE_SIZES, \
99 GEN_DEFAULT_REGIONS, \
102 #define I845_FEATURES \
104 .has_3d_pipeline = 1, \
105 .gpu_reset_clobbers_display = true, \
106 .hws_needs_physical = 1, \
107 .unfenced_needs_alignment = 1, \
108 .platform_engine_mask = BIT(RCS0), \
110 .has_coherent_ggtt = false, \
111 .dma_mask_size = 32, \
112 .max_pat_index = 3, \
113 GEN_DEFAULT_PAGE_SIZES, \
114 GEN_DEFAULT_REGIONS, \
117 static const struct intel_device_info i830_info = {
119 PLATFORM(INTEL_I830),
122 static const struct intel_device_info i845g_info = {
124 PLATFORM(INTEL_I845G),
127 static const struct intel_device_info i85x_info = {
129 PLATFORM(INTEL_I85X),
132 static const struct intel_device_info i865g_info = {
134 PLATFORM(INTEL_I865G),
137 #define GEN3_FEATURES \
139 .gpu_reset_clobbers_display = true, \
140 .platform_engine_mask = BIT(RCS0), \
141 .has_3d_pipeline = 1, \
143 .has_coherent_ggtt = true, \
144 .dma_mask_size = 32, \
145 .max_pat_index = 3, \
146 GEN_DEFAULT_PAGE_SIZES, \
147 GEN_DEFAULT_REGIONS, \
150 static const struct intel_device_info i915g_info = {
152 PLATFORM(INTEL_I915G),
153 .has_coherent_ggtt = false,
154 .hws_needs_physical = 1,
155 .unfenced_needs_alignment = 1,
158 static const struct intel_device_info i915gm_info = {
160 PLATFORM(INTEL_I915GM),
162 .hws_needs_physical = 1,
163 .unfenced_needs_alignment = 1,
166 static const struct intel_device_info i945g_info = {
168 PLATFORM(INTEL_I945G),
169 .hws_needs_physical = 1,
170 .unfenced_needs_alignment = 1,
173 static const struct intel_device_info i945gm_info = {
175 PLATFORM(INTEL_I945GM),
177 .hws_needs_physical = 1,
178 .unfenced_needs_alignment = 1,
181 static const struct intel_device_info g33_info = {
187 static const struct intel_device_info pnv_g_info = {
189 PLATFORM(INTEL_PINEVIEW),
193 static const struct intel_device_info pnv_m_info = {
195 PLATFORM(INTEL_PINEVIEW),
200 #define GEN4_FEATURES \
202 .gpu_reset_clobbers_display = true, \
203 .platform_engine_mask = BIT(RCS0), \
204 .has_3d_pipeline = 1, \
206 .has_coherent_ggtt = true, \
207 .dma_mask_size = 36, \
208 .max_pat_index = 3, \
209 GEN_DEFAULT_PAGE_SIZES, \
210 GEN_DEFAULT_REGIONS, \
213 static const struct intel_device_info i965g_info = {
215 PLATFORM(INTEL_I965G),
216 .hws_needs_physical = 1,
220 static const struct intel_device_info i965gm_info = {
222 PLATFORM(INTEL_I965GM),
224 .hws_needs_physical = 1,
228 static const struct intel_device_info g45_info = {
231 .platform_engine_mask = BIT(RCS0) | BIT(VCS0),
232 .gpu_reset_clobbers_display = false,
235 static const struct intel_device_info gm45_info = {
237 PLATFORM(INTEL_GM45),
239 .platform_engine_mask = BIT(RCS0) | BIT(VCS0),
240 .gpu_reset_clobbers_display = false,
243 #define GEN5_FEATURES \
245 .platform_engine_mask = BIT(RCS0) | BIT(VCS0), \
246 .has_3d_pipeline = 1, \
248 .has_coherent_ggtt = true, \
249 /* ilk does support rc6, but we do not implement [power] contexts */ \
251 .dma_mask_size = 36, \
252 .max_pat_index = 3, \
253 GEN_DEFAULT_PAGE_SIZES, \
254 GEN_DEFAULT_REGIONS, \
257 static const struct intel_device_info ilk_d_info = {
259 PLATFORM(INTEL_IRONLAKE),
262 static const struct intel_device_info ilk_m_info = {
264 PLATFORM(INTEL_IRONLAKE),
269 #define GEN6_FEATURES \
271 .platform_engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0), \
272 .has_3d_pipeline = 1, \
273 .has_coherent_ggtt = true, \
276 /* snb does support rc6p, but enabling it causes various issues */ \
279 .dma_mask_size = 40, \
280 .max_pat_index = 3, \
281 .__runtime.ppgtt_type = INTEL_PPGTT_ALIASING, \
282 .__runtime.ppgtt_size = 31, \
283 GEN_DEFAULT_PAGE_SIZES, \
284 GEN_DEFAULT_REGIONS, \
287 #define SNB_D_PLATFORM \
289 PLATFORM(INTEL_SANDYBRIDGE)
291 static const struct intel_device_info snb_d_gt1_info = {
296 static const struct intel_device_info snb_d_gt2_info = {
301 #define SNB_M_PLATFORM \
303 PLATFORM(INTEL_SANDYBRIDGE), \
307 static const struct intel_device_info snb_m_gt1_info = {
312 static const struct intel_device_info snb_m_gt2_info = {
317 #define GEN7_FEATURES \
319 .platform_engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0), \
320 .has_3d_pipeline = 1, \
321 .has_coherent_ggtt = true, \
325 .has_reset_engine = true, \
327 .dma_mask_size = 40, \
328 .max_pat_index = 3, \
329 .__runtime.ppgtt_type = INTEL_PPGTT_ALIASING, \
330 .__runtime.ppgtt_size = 31, \
331 GEN_DEFAULT_PAGE_SIZES, \
332 GEN_DEFAULT_REGIONS, \
335 #define IVB_D_PLATFORM \
337 PLATFORM(INTEL_IVYBRIDGE), \
340 static const struct intel_device_info ivb_d_gt1_info = {
345 static const struct intel_device_info ivb_d_gt2_info = {
350 #define IVB_M_PLATFORM \
352 PLATFORM(INTEL_IVYBRIDGE), \
356 static const struct intel_device_info ivb_m_gt1_info = {
361 static const struct intel_device_info ivb_m_gt2_info = {
366 static const struct intel_device_info ivb_q_info = {
368 PLATFORM(INTEL_IVYBRIDGE),
373 static const struct intel_device_info vlv_info = {
374 PLATFORM(INTEL_VALLEYVIEW),
379 .has_reset_engine = true,
383 .__runtime.ppgtt_type = INTEL_PPGTT_ALIASING,
384 .__runtime.ppgtt_size = 31,
386 .has_coherent_ggtt = false,
387 .platform_engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0),
388 GEN_DEFAULT_PAGE_SIZES,
393 #define G75_FEATURES \
395 .platform_engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0), \
396 .has_rc6p = 0 /* RC6p removed-by HSW */, \
399 #define HSW_PLATFORM \
401 PLATFORM(INTEL_HASWELL), \
404 static const struct intel_device_info hsw_gt1_info = {
409 static const struct intel_device_info hsw_gt2_info = {
414 static const struct intel_device_info hsw_gt3_info = {
419 #define GEN8_FEATURES \
422 .has_logical_ring_contexts = 1, \
423 .dma_mask_size = 39, \
424 .__runtime.ppgtt_type = INTEL_PPGTT_FULL, \
425 .__runtime.ppgtt_size = 48, \
428 #define BDW_PLATFORM \
430 PLATFORM(INTEL_BROADWELL)
432 static const struct intel_device_info bdw_gt1_info = {
437 static const struct intel_device_info bdw_gt2_info = {
442 static const struct intel_device_info bdw_rsvd_info = {
445 /* According to the device ID those devices are GT3, they were
446 * previously treated as not GT3, keep it like that.
450 static const struct intel_device_info bdw_gt3_info = {
453 .platform_engine_mask =
454 BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
457 static const struct intel_device_info chv_info = {
458 PLATFORM(INTEL_CHERRYVIEW),
461 .platform_engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0),
462 .has_64bit_reloc = 1,
466 .has_logical_ring_contexts = 1,
469 .__runtime.ppgtt_type = INTEL_PPGTT_FULL,
470 .__runtime.ppgtt_size = 32,
471 .has_reset_engine = 1,
473 .has_coherent_ggtt = false,
474 GEN_DEFAULT_PAGE_SIZES,
479 #define GEN9_DEFAULT_PAGE_SIZES \
480 .__runtime.page_sizes = I915_GTT_PAGE_SIZE_4K | \
481 I915_GTT_PAGE_SIZE_64K
483 #define GEN9_FEATURES \
486 GEN9_DEFAULT_PAGE_SIZES, \
489 #define SKL_PLATFORM \
491 PLATFORM(INTEL_SKYLAKE)
493 static const struct intel_device_info skl_gt1_info = {
498 static const struct intel_device_info skl_gt2_info = {
503 #define SKL_GT3_PLUS_PLATFORM \
505 .platform_engine_mask = \
506 BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1)
509 static const struct intel_device_info skl_gt3_info = {
510 SKL_GT3_PLUS_PLATFORM,
514 static const struct intel_device_info skl_gt4_info = {
515 SKL_GT3_PLUS_PLATFORM,
519 #define GEN9_LP_FEATURES \
522 .platform_engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0), \
523 .has_3d_pipeline = 1, \
524 .has_64bit_reloc = 1, \
525 .has_runtime_pm = 1, \
528 .has_logical_ring_contexts = 1, \
530 .dma_mask_size = 39, \
531 .__runtime.ppgtt_type = INTEL_PPGTT_FULL, \
532 .__runtime.ppgtt_size = 48, \
533 .has_reset_engine = 1, \
535 .has_coherent_ggtt = false, \
536 .max_pat_index = 3, \
537 GEN9_DEFAULT_PAGE_SIZES, \
538 GEN_DEFAULT_REGIONS, \
541 static const struct intel_device_info bxt_info = {
543 PLATFORM(INTEL_BROXTON),
546 static const struct intel_device_info glk_info = {
548 PLATFORM(INTEL_GEMINILAKE),
551 #define KBL_PLATFORM \
553 PLATFORM(INTEL_KABYLAKE)
555 static const struct intel_device_info kbl_gt1_info = {
560 static const struct intel_device_info kbl_gt2_info = {
565 static const struct intel_device_info kbl_gt3_info = {
568 .platform_engine_mask =
569 BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
572 #define CFL_PLATFORM \
574 PLATFORM(INTEL_COFFEELAKE)
576 static const struct intel_device_info cfl_gt1_info = {
581 static const struct intel_device_info cfl_gt2_info = {
586 static const struct intel_device_info cfl_gt3_info = {
589 .platform_engine_mask =
590 BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
593 #define CML_PLATFORM \
595 PLATFORM(INTEL_COMETLAKE)
597 static const struct intel_device_info cml_gt1_info = {
602 static const struct intel_device_info cml_gt2_info = {
607 #define GEN11_DEFAULT_PAGE_SIZES \
608 .__runtime.page_sizes = I915_GTT_PAGE_SIZE_4K | \
609 I915_GTT_PAGE_SIZE_64K | \
610 I915_GTT_PAGE_SIZE_2M
612 #define GEN11_FEATURES \
614 GEN11_DEFAULT_PAGE_SIZES, \
616 .has_coherent_ggtt = false, \
617 .has_logical_ring_elsq = 1
619 static const struct intel_device_info icl_info = {
621 PLATFORM(INTEL_ICELAKE),
622 .platform_engine_mask =
623 BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0) | BIT(VCS2),
626 static const struct intel_device_info ehl_info = {
628 PLATFORM(INTEL_ELKHARTLAKE),
629 .platform_engine_mask = BIT(RCS0) | BIT(BCS0) | BIT(VCS0) | BIT(VECS0),
630 .__runtime.ppgtt_size = 36,
633 static const struct intel_device_info jsl_info = {
635 PLATFORM(INTEL_JASPERLAKE),
636 .platform_engine_mask = BIT(RCS0) | BIT(BCS0) | BIT(VCS0) | BIT(VECS0),
637 .__runtime.ppgtt_size = 36,
640 #define GEN12_FEATURES \
644 .has_global_mocs = 1, \
648 static const struct intel_device_info tgl_info = {
650 PLATFORM(INTEL_TIGERLAKE),
651 .platform_engine_mask =
652 BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0) | BIT(VCS2),
655 static const struct intel_device_info rkl_info = {
657 PLATFORM(INTEL_ROCKETLAKE),
658 .platform_engine_mask =
659 BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0),
662 #define DGFX_FEATURES \
663 .memory_regions = REGION_SMEM | REGION_LMEM | REGION_STOLEN_LMEM, \
670 static const struct intel_device_info dg1_info = {
673 .__runtime.graphics.ip.rel = 10,
675 .require_force_probe = 1,
676 .platform_engine_mask =
677 BIT(RCS0) | BIT(BCS0) | BIT(VECS0) |
678 BIT(VCS0) | BIT(VCS2),
680 .__runtime.ppgtt_size = 47,
683 static const struct intel_device_info adl_s_info = {
685 PLATFORM(INTEL_ALDERLAKE_S),
686 .platform_engine_mask =
687 BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0) | BIT(VCS2),
691 static const struct intel_device_info adl_p_info = {
693 PLATFORM(INTEL_ALDERLAKE_P),
694 .platform_engine_mask =
695 BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0) | BIT(VCS2),
696 .__runtime.ppgtt_size = 48,
702 #define XE_HP_PAGE_SIZES \
703 .__runtime.page_sizes = I915_GTT_PAGE_SIZE_4K | \
704 I915_GTT_PAGE_SIZE_64K | \
705 I915_GTT_PAGE_SIZE_2M
707 #define XE_HP_FEATURES \
708 .__runtime.graphics.ip.ver = 12, \
709 .__runtime.graphics.ip.rel = 50, \
712 .dma_mask_size = 46, \
713 .has_3d_pipeline = 1, \
714 .has_64bit_reloc = 1, \
716 .has_global_mocs = 1, \
719 .has_logical_ring_contexts = 1, \
720 .has_logical_ring_elsq = 1, \
721 .has_mslice_steering = 1, \
722 .has_oa_bpc_reporting = 1, \
723 .has_oa_slice_contrib_limits = 1, \
726 .has_reset_engine = 1, \
728 .has_runtime_pm = 1, \
729 .max_pat_index = 3, \
730 .__runtime.ppgtt_size = 48, \
731 .__runtime.ppgtt_type = INTEL_PPGTT_FULL
733 #define XE_HPM_FEATURES \
734 .__runtime.media.ip.ver = 12, \
735 .__runtime.media.ip.rel = 50
738 static const struct intel_device_info xehpsdv_info = {
742 PLATFORM(INTEL_XEHPSDV),
744 .has_media_ratio_mode = 1,
745 .platform_engine_mask =
746 BIT(RCS0) | BIT(BCS0) |
747 BIT(VECS0) | BIT(VECS1) | BIT(VECS2) | BIT(VECS3) |
748 BIT(VCS0) | BIT(VCS1) | BIT(VCS2) | BIT(VCS3) |
749 BIT(VCS4) | BIT(VCS5) | BIT(VCS6) | BIT(VCS7) |
750 BIT(CCS0) | BIT(CCS1) | BIT(CCS2) | BIT(CCS3),
751 .require_force_probe = 1,
754 #define DG2_FEATURES \
758 .__runtime.graphics.ip.rel = 55, \
759 .__runtime.media.ip.rel = 55, \
760 PLATFORM(INTEL_DG2), \
761 .has_64k_pages = 1, \
762 .has_guc_deprivilege = 1, \
764 .has_media_ratio_mode = 1, \
765 .platform_engine_mask = \
766 BIT(RCS0) | BIT(BCS0) | \
767 BIT(VECS0) | BIT(VECS1) | \
768 BIT(VCS0) | BIT(VCS2) | \
769 BIT(CCS0) | BIT(CCS1) | BIT(CCS2) | BIT(CCS3)
771 static const struct intel_device_info dg2_info = {
775 static const struct intel_device_info ats_m_info = {
777 .require_force_probe = 1,
778 .tuning_thread_rr_after_dep = 1,
781 #define XE_HPC_FEATURES \
783 .dma_mask_size = 52, \
784 .has_3d_pipeline = 0, \
785 .has_guc_deprivilege = 1, \
786 .has_l3_ccs_read = 1, \
787 .has_mslice_steering = 0, \
788 .has_one_eu_per_fuse_bit = 1
791 static const struct intel_device_info pvc_info = {
795 .__runtime.graphics.ip.rel = 60,
796 .__runtime.media.ip.rel = 60,
797 PLATFORM(INTEL_PONTEVECCHIO),
800 .platform_engine_mask =
803 BIT(CCS0) | BIT(CCS1) | BIT(CCS2) | BIT(CCS3),
804 .require_force_probe = 1,
808 static const struct intel_gt_definition xelpmp_extra_gt[] = {
811 .name = "Standalone Media GT",
812 .gsi_offset = MTL_MEDIA_GSI_BASE,
813 .engine_mask = BIT(VECS0) | BIT(VCS0) | BIT(VCS2) | BIT(GSC0),
818 static const struct intel_device_info mtl_info = {
821 * Real graphics IP version will be obtained from hardware GMD_ID
822 * register. Value provided here is just for sanity checking.
824 .__runtime.graphics.ip.ver = 12,
825 .__runtime.graphics.ip.rel = 70,
826 .__runtime.media.ip.ver = 13,
827 PLATFORM(INTEL_METEORLAKE),
828 .extra_gt_list = xelpmp_extra_gt,
831 .has_guc_deprivilege = 1,
832 .has_guc_tlb_invalidation = 1,
834 .has_mslice_steering = 0,
838 .memory_regions = REGION_SMEM | REGION_STOLEN_LMEM,
839 .platform_engine_mask = BIT(RCS0) | BIT(BCS0) | BIT(CCS0),
846 * Make sure any device matches here are from most specific to most
847 * general. For example, since the Quanta match is based on the subsystem
848 * and subvendor IDs, we need it to come before the more general IVB
849 * PCI ID matches, otherwise we'll use the wrong info struct above.
851 static const struct pci_device_id pciidlist[] = {
852 INTEL_I830_IDS(&i830_info),
853 INTEL_I845G_IDS(&i845g_info),
854 INTEL_I85X_IDS(&i85x_info),
855 INTEL_I865G_IDS(&i865g_info),
856 INTEL_I915G_IDS(&i915g_info),
857 INTEL_I915GM_IDS(&i915gm_info),
858 INTEL_I945G_IDS(&i945g_info),
859 INTEL_I945GM_IDS(&i945gm_info),
860 INTEL_I965G_IDS(&i965g_info),
861 INTEL_G33_IDS(&g33_info),
862 INTEL_I965GM_IDS(&i965gm_info),
863 INTEL_GM45_IDS(&gm45_info),
864 INTEL_G45_IDS(&g45_info),
865 INTEL_PINEVIEW_G_IDS(&pnv_g_info),
866 INTEL_PINEVIEW_M_IDS(&pnv_m_info),
867 INTEL_IRONLAKE_D_IDS(&ilk_d_info),
868 INTEL_IRONLAKE_M_IDS(&ilk_m_info),
869 INTEL_SNB_D_GT1_IDS(&snb_d_gt1_info),
870 INTEL_SNB_D_GT2_IDS(&snb_d_gt2_info),
871 INTEL_SNB_M_GT1_IDS(&snb_m_gt1_info),
872 INTEL_SNB_M_GT2_IDS(&snb_m_gt2_info),
873 INTEL_IVB_Q_IDS(&ivb_q_info), /* must be first IVB */
874 INTEL_IVB_M_GT1_IDS(&ivb_m_gt1_info),
875 INTEL_IVB_M_GT2_IDS(&ivb_m_gt2_info),
876 INTEL_IVB_D_GT1_IDS(&ivb_d_gt1_info),
877 INTEL_IVB_D_GT2_IDS(&ivb_d_gt2_info),
878 INTEL_HSW_GT1_IDS(&hsw_gt1_info),
879 INTEL_HSW_GT2_IDS(&hsw_gt2_info),
880 INTEL_HSW_GT3_IDS(&hsw_gt3_info),
881 INTEL_VLV_IDS(&vlv_info),
882 INTEL_BDW_GT1_IDS(&bdw_gt1_info),
883 INTEL_BDW_GT2_IDS(&bdw_gt2_info),
884 INTEL_BDW_GT3_IDS(&bdw_gt3_info),
885 INTEL_BDW_RSVD_IDS(&bdw_rsvd_info),
886 INTEL_CHV_IDS(&chv_info),
887 INTEL_SKL_GT1_IDS(&skl_gt1_info),
888 INTEL_SKL_GT2_IDS(&skl_gt2_info),
889 INTEL_SKL_GT3_IDS(&skl_gt3_info),
890 INTEL_SKL_GT4_IDS(&skl_gt4_info),
891 INTEL_BXT_IDS(&bxt_info),
892 INTEL_GLK_IDS(&glk_info),
893 INTEL_KBL_GT1_IDS(&kbl_gt1_info),
894 INTEL_KBL_GT2_IDS(&kbl_gt2_info),
895 INTEL_KBL_GT3_IDS(&kbl_gt3_info),
896 INTEL_KBL_GT4_IDS(&kbl_gt3_info),
897 INTEL_AML_KBL_GT2_IDS(&kbl_gt2_info),
898 INTEL_CFL_S_GT1_IDS(&cfl_gt1_info),
899 INTEL_CFL_S_GT2_IDS(&cfl_gt2_info),
900 INTEL_CFL_H_GT1_IDS(&cfl_gt1_info),
901 INTEL_CFL_H_GT2_IDS(&cfl_gt2_info),
902 INTEL_CFL_U_GT2_IDS(&cfl_gt2_info),
903 INTEL_CFL_U_GT3_IDS(&cfl_gt3_info),
904 INTEL_WHL_U_GT1_IDS(&cfl_gt1_info),
905 INTEL_WHL_U_GT2_IDS(&cfl_gt2_info),
906 INTEL_AML_CFL_GT2_IDS(&cfl_gt2_info),
907 INTEL_WHL_U_GT3_IDS(&cfl_gt3_info),
908 INTEL_CML_GT1_IDS(&cml_gt1_info),
909 INTEL_CML_GT2_IDS(&cml_gt2_info),
910 INTEL_CML_U_GT1_IDS(&cml_gt1_info),
911 INTEL_CML_U_GT2_IDS(&cml_gt2_info),
912 INTEL_ICL_11_IDS(&icl_info),
913 INTEL_EHL_IDS(&ehl_info),
914 INTEL_JSL_IDS(&jsl_info),
915 INTEL_TGL_12_IDS(&tgl_info),
916 INTEL_RKL_IDS(&rkl_info),
917 INTEL_ADLS_IDS(&adl_s_info),
918 INTEL_ADLP_IDS(&adl_p_info),
919 INTEL_ADLN_IDS(&adl_p_info),
920 INTEL_DG1_IDS(&dg1_info),
921 INTEL_RPLS_IDS(&adl_s_info),
922 INTEL_RPLP_IDS(&adl_p_info),
923 INTEL_DG2_IDS(&dg2_info),
924 INTEL_ATS_M_IDS(&ats_m_info),
925 INTEL_MTL_IDS(&mtl_info),
928 MODULE_DEVICE_TABLE(pci, pciidlist);
930 static void i915_pci_remove(struct pci_dev *pdev)
932 struct drm_i915_private *i915;
934 i915 = pci_get_drvdata(pdev);
935 if (!i915) /* driver load aborted, nothing to cleanup */
938 i915_driver_remove(i915);
939 pci_set_drvdata(pdev, NULL);
942 /* is device_id present in comma separated list of ids */
943 static bool device_id_in_list(u16 device_id, const char *devices, bool negative)
948 if (!devices || !*devices)
951 /* match everything */
952 if (negative && strcmp(devices, "!*") == 0)
954 if (!negative && strcmp(devices, "*") == 0)
957 s = kstrdup(devices, GFP_KERNEL);
961 for (p = s, ret = false; (tok = strsep(&p, ",")) != NULL; ) {
964 if (negative && tok[0] == '!')
966 else if ((negative && tok[0] != '!') ||
967 (!negative && tok[0] == '!'))
970 if (kstrtou16(tok, 16, &val) == 0 && val == device_id) {
981 static bool id_forced(u16 device_id)
983 return device_id_in_list(device_id, i915_modparams.force_probe, false);
986 static bool id_blocked(u16 device_id)
988 return device_id_in_list(device_id, i915_modparams.force_probe, true);
991 bool i915_pci_resource_valid(struct pci_dev *pdev, int bar)
993 if (!pci_resource_flags(pdev, bar))
996 if (pci_resource_flags(pdev, bar) & IORESOURCE_UNSET)
999 if (!pci_resource_len(pdev, bar))
1005 static bool intel_mmio_bar_valid(struct pci_dev *pdev, struct intel_device_info *intel_info)
1007 return i915_pci_resource_valid(pdev, intel_mmio_bar(intel_info->__runtime.graphics.ip.ver));
1010 static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1012 struct intel_device_info *intel_info =
1013 (struct intel_device_info *) ent->driver_data;
1016 if (intel_info->require_force_probe && !id_forced(pdev->device)) {
1017 dev_info(&pdev->dev,
1018 "Your graphics device %04x is not properly supported by i915 in this\n"
1019 "kernel version. To force driver probe anyway, use i915.force_probe=%04x\n"
1020 "module parameter or CONFIG_DRM_I915_FORCE_PROBE=%04x configuration option,\n"
1021 "or (recommended) check for kernel updates.\n",
1022 pdev->device, pdev->device, pdev->device);
1026 if (id_blocked(pdev->device)) {
1027 dev_info(&pdev->dev, "I915 probe blocked for Device ID %04x.\n",
1032 if (intel_info->require_force_probe) {
1033 dev_info(&pdev->dev, "Force probing unsupported Device ID %04x, tainting kernel\n",
1035 add_taint(TAINT_USER, LOCKDEP_STILL_OK);
1038 /* Only bind to function 0 of the device. Early generations
1039 * used function 1 as a placeholder for multi-head. This causes
1040 * us confusion instead, especially on the systems where both
1041 * functions have the same PCI-ID!
1043 if (PCI_FUNC(pdev->devfn))
1046 if (!intel_mmio_bar_valid(pdev, intel_info))
1049 /* Detect if we need to wait for other drivers early on */
1050 if (intel_display_driver_probe_defer(pdev))
1051 return -EPROBE_DEFER;
1053 err = i915_driver_probe(pdev, ent);
1057 if (i915_inject_probe_failure(pci_get_drvdata(pdev))) {
1058 i915_pci_remove(pdev);
1062 err = i915_live_selftests(pdev);
1064 i915_pci_remove(pdev);
1065 return err > 0 ? -ENOTTY : err;
1068 err = i915_perf_selftests(pdev);
1070 i915_pci_remove(pdev);
1071 return err > 0 ? -ENOTTY : err;
1077 static void i915_pci_shutdown(struct pci_dev *pdev)
1079 struct drm_i915_private *i915 = pci_get_drvdata(pdev);
1081 i915_driver_shutdown(i915);
1084 static struct pci_driver i915_pci_driver = {
1085 .name = DRIVER_NAME,
1086 .id_table = pciidlist,
1087 .probe = i915_pci_probe,
1088 .remove = i915_pci_remove,
1089 .shutdown = i915_pci_shutdown,
1090 .driver.pm = &i915_pm_ops,
1093 int i915_pci_register_driver(void)
1095 return pci_register_driver(&i915_pci_driver);
1098 void i915_pci_unregister_driver(void)
1100 pci_unregister_driver(&i915_pci_driver);