blob: b3f0c20d5ba5d2d76bb1ed25237f7aceeb57fe5a [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * Copyright © 2016 Intel Corporation
3 *
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:
10 *
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
13 * Software.
14 *
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
21 * IN THE SOFTWARE.
22 *
23 */
24
25#include <linux/console.h>
26#include <linux/vgaarb.h>
27#include <linux/vga_switcheroo.h>
28
29#include <drm/drm_drv.h>
30
31#include "display/intel_fbdev.h"
32
33#include "i915_drv.h"
34#include "i915_globals.h"
35#include "i915_selftest.h"
36
37#define PLATFORM(x) .platform = (x)
38#define GEN(x) .gen = (x), .gen_mask = BIT((x) - 1)
39
40#define I845_PIPE_OFFSETS \
41 .pipe_offsets = { \
42 [TRANSCODER_A] = PIPE_A_OFFSET, \
43 }, \
44 .trans_offsets = { \
45 [TRANSCODER_A] = TRANSCODER_A_OFFSET, \
46 }
47
48#define I9XX_PIPE_OFFSETS \
49 .pipe_offsets = { \
50 [TRANSCODER_A] = PIPE_A_OFFSET, \
51 [TRANSCODER_B] = PIPE_B_OFFSET, \
52 }, \
53 .trans_offsets = { \
54 [TRANSCODER_A] = TRANSCODER_A_OFFSET, \
55 [TRANSCODER_B] = TRANSCODER_B_OFFSET, \
56 }
57
58#define IVB_PIPE_OFFSETS \
59 .pipe_offsets = { \
60 [TRANSCODER_A] = PIPE_A_OFFSET, \
61 [TRANSCODER_B] = PIPE_B_OFFSET, \
62 [TRANSCODER_C] = PIPE_C_OFFSET, \
63 }, \
64 .trans_offsets = { \
65 [TRANSCODER_A] = TRANSCODER_A_OFFSET, \
66 [TRANSCODER_B] = TRANSCODER_B_OFFSET, \
67 [TRANSCODER_C] = TRANSCODER_C_OFFSET, \
68 }
69
70#define HSW_PIPE_OFFSETS \
71 .pipe_offsets = { \
72 [TRANSCODER_A] = PIPE_A_OFFSET, \
73 [TRANSCODER_B] = PIPE_B_OFFSET, \
74 [TRANSCODER_C] = PIPE_C_OFFSET, \
75 [TRANSCODER_EDP] = PIPE_EDP_OFFSET, \
76 }, \
77 .trans_offsets = { \
78 [TRANSCODER_A] = TRANSCODER_A_OFFSET, \
79 [TRANSCODER_B] = TRANSCODER_B_OFFSET, \
80 [TRANSCODER_C] = TRANSCODER_C_OFFSET, \
81 [TRANSCODER_EDP] = TRANSCODER_EDP_OFFSET, \
82 }
83
84#define CHV_PIPE_OFFSETS \
85 .pipe_offsets = { \
86 [TRANSCODER_A] = PIPE_A_OFFSET, \
87 [TRANSCODER_B] = PIPE_B_OFFSET, \
88 [TRANSCODER_C] = CHV_PIPE_C_OFFSET, \
89 }, \
90 .trans_offsets = { \
91 [TRANSCODER_A] = TRANSCODER_A_OFFSET, \
92 [TRANSCODER_B] = TRANSCODER_B_OFFSET, \
93 [TRANSCODER_C] = CHV_TRANSCODER_C_OFFSET, \
94 }
95
96#define I845_CURSOR_OFFSETS \
97 .cursor_offsets = { \
98 [PIPE_A] = CURSOR_A_OFFSET, \
99 }
100
101#define I9XX_CURSOR_OFFSETS \
102 .cursor_offsets = { \
103 [PIPE_A] = CURSOR_A_OFFSET, \
104 [PIPE_B] = CURSOR_B_OFFSET, \
105 }
106
107#define CHV_CURSOR_OFFSETS \
108 .cursor_offsets = { \
109 [PIPE_A] = CURSOR_A_OFFSET, \
110 [PIPE_B] = CURSOR_B_OFFSET, \
111 [PIPE_C] = CHV_CURSOR_C_OFFSET, \
112 }
113
114#define IVB_CURSOR_OFFSETS \
115 .cursor_offsets = { \
116 [PIPE_A] = CURSOR_A_OFFSET, \
117 [PIPE_B] = IVB_CURSOR_B_OFFSET, \
118 [PIPE_C] = IVB_CURSOR_C_OFFSET, \
119 }
120
121#define I9XX_COLORS \
122 .color = { .gamma_lut_size = 256 }
123#define I965_COLORS \
124 .color = { .gamma_lut_size = 129, \
125 .gamma_lut_tests = DRM_COLOR_LUT_NON_DECREASING, \
126 }
127#define ILK_COLORS \
128 .color = { .gamma_lut_size = 1024 }
129#define IVB_COLORS \
130 .color = { .degamma_lut_size = 1024, .gamma_lut_size = 1024 }
131#define CHV_COLORS \
132 .color = { .degamma_lut_size = 65, .gamma_lut_size = 257, \
133 .degamma_lut_tests = DRM_COLOR_LUT_NON_DECREASING, \
134 .gamma_lut_tests = DRM_COLOR_LUT_NON_DECREASING, \
135 }
136#define GLK_COLORS \
137 .color = { .degamma_lut_size = 33, .gamma_lut_size = 1024, \
138 .degamma_lut_tests = DRM_COLOR_LUT_NON_DECREASING | \
139 DRM_COLOR_LUT_EQUAL_CHANNELS, \
140 }
141
142/* Keep in gen based order, and chronological order within a gen */
143
144#define GEN_DEFAULT_PAGE_SIZES \
145 .page_sizes = I915_GTT_PAGE_SIZE_4K
146
147#define I830_FEATURES \
148 GEN(2), \
149 .is_mobile = 1, \
150 .num_pipes = 2, \
151 .display.has_overlay = 1, \
152 .display.cursor_needs_physical = 1, \
153 .display.overlay_needs_physical = 1, \
154 .display.has_gmch = 1, \
155 .gpu_reset_clobbers_display = true, \
156 .hws_needs_physical = 1, \
157 .unfenced_needs_alignment = 1, \
158 .engine_mask = BIT(RCS0), \
159 .has_snoop = true, \
160 .has_coherent_ggtt = false, \
161 I9XX_PIPE_OFFSETS, \
162 I9XX_CURSOR_OFFSETS, \
163 I9XX_COLORS, \
164 GEN_DEFAULT_PAGE_SIZES
165
166#define I845_FEATURES \
167 GEN(2), \
168 .num_pipes = 1, \
169 .display.has_overlay = 1, \
170 .display.overlay_needs_physical = 1, \
171 .display.has_gmch = 1, \
172 .gpu_reset_clobbers_display = true, \
173 .hws_needs_physical = 1, \
174 .unfenced_needs_alignment = 1, \
175 .engine_mask = BIT(RCS0), \
176 .has_snoop = true, \
177 .has_coherent_ggtt = false, \
178 I845_PIPE_OFFSETS, \
179 I845_CURSOR_OFFSETS, \
180 I9XX_COLORS, \
181 GEN_DEFAULT_PAGE_SIZES
182
183static const struct intel_device_info intel_i830_info = {
184 I830_FEATURES,
185 PLATFORM(INTEL_I830),
186};
187
188static const struct intel_device_info intel_i845g_info = {
189 I845_FEATURES,
190 PLATFORM(INTEL_I845G),
191};
192
193static const struct intel_device_info intel_i85x_info = {
194 I830_FEATURES,
195 PLATFORM(INTEL_I85X),
196 .display.has_fbc = 1,
197};
198
199static const struct intel_device_info intel_i865g_info = {
200 I845_FEATURES,
201 PLATFORM(INTEL_I865G),
202};
203
204#define GEN3_FEATURES \
205 GEN(3), \
206 .num_pipes = 2, \
207 .display.has_gmch = 1, \
208 .gpu_reset_clobbers_display = true, \
209 .engine_mask = BIT(RCS0), \
210 .has_snoop = true, \
211 .has_coherent_ggtt = true, \
212 I9XX_PIPE_OFFSETS, \
213 I9XX_CURSOR_OFFSETS, \
214 I9XX_COLORS, \
215 GEN_DEFAULT_PAGE_SIZES
216
217static const struct intel_device_info intel_i915g_info = {
218 GEN3_FEATURES,
219 PLATFORM(INTEL_I915G),
220 .has_coherent_ggtt = false,
221 .display.cursor_needs_physical = 1,
222 .display.has_overlay = 1,
223 .display.overlay_needs_physical = 1,
224 .hws_needs_physical = 1,
225 .unfenced_needs_alignment = 1,
226};
227
228static const struct intel_device_info intel_i915gm_info = {
229 GEN3_FEATURES,
230 PLATFORM(INTEL_I915GM),
231 .is_mobile = 1,
232 .display.cursor_needs_physical = 1,
233 .display.has_overlay = 1,
234 .display.overlay_needs_physical = 1,
235 .display.supports_tv = 1,
236 .display.has_fbc = 1,
237 .hws_needs_physical = 1,
238 .unfenced_needs_alignment = 1,
239};
240
241static const struct intel_device_info intel_i945g_info = {
242 GEN3_FEATURES,
243 PLATFORM(INTEL_I945G),
244 .display.has_hotplug = 1,
245 .display.cursor_needs_physical = 1,
246 .display.has_overlay = 1,
247 .display.overlay_needs_physical = 1,
248 .hws_needs_physical = 1,
249 .unfenced_needs_alignment = 1,
250};
251
252static const struct intel_device_info intel_i945gm_info = {
253 GEN3_FEATURES,
254 PLATFORM(INTEL_I945GM),
255 .is_mobile = 1,
256 .display.has_hotplug = 1,
257 .display.cursor_needs_physical = 1,
258 .display.has_overlay = 1,
259 .display.overlay_needs_physical = 1,
260 .display.supports_tv = 1,
261 .display.has_fbc = 1,
262 .hws_needs_physical = 1,
263 .unfenced_needs_alignment = 1,
264};
265
266static const struct intel_device_info intel_g33_info = {
267 GEN3_FEATURES,
268 PLATFORM(INTEL_G33),
269 .display.has_hotplug = 1,
270 .display.has_overlay = 1,
271};
272
273static const struct intel_device_info intel_pineview_g_info = {
274 GEN3_FEATURES,
275 PLATFORM(INTEL_PINEVIEW),
276 .display.has_hotplug = 1,
277 .display.has_overlay = 1,
278};
279
280static const struct intel_device_info intel_pineview_m_info = {
281 GEN3_FEATURES,
282 PLATFORM(INTEL_PINEVIEW),
283 .is_mobile = 1,
284 .display.has_hotplug = 1,
285 .display.has_overlay = 1,
286};
287
288#define GEN4_FEATURES \
289 GEN(4), \
290 .num_pipes = 2, \
291 .display.has_hotplug = 1, \
292 .display.has_gmch = 1, \
293 .gpu_reset_clobbers_display = true, \
294 .engine_mask = BIT(RCS0), \
295 .has_snoop = true, \
296 .has_coherent_ggtt = true, \
297 I9XX_PIPE_OFFSETS, \
298 I9XX_CURSOR_OFFSETS, \
299 I965_COLORS, \
300 GEN_DEFAULT_PAGE_SIZES
301
302static const struct intel_device_info intel_i965g_info = {
303 GEN4_FEATURES,
304 PLATFORM(INTEL_I965G),
305 .display.has_overlay = 1,
306 .hws_needs_physical = 1,
307 .has_snoop = false,
308};
309
310static const struct intel_device_info intel_i965gm_info = {
311 GEN4_FEATURES,
312 PLATFORM(INTEL_I965GM),
313 .is_mobile = 1,
314 .display.has_fbc = 1,
315 .display.has_overlay = 1,
316 .display.supports_tv = 1,
317 .hws_needs_physical = 1,
318 .has_snoop = false,
319};
320
321static const struct intel_device_info intel_g45_info = {
322 GEN4_FEATURES,
323 PLATFORM(INTEL_G45),
324 .engine_mask = BIT(RCS0) | BIT(VCS0),
325 .gpu_reset_clobbers_display = false,
326};
327
328static const struct intel_device_info intel_gm45_info = {
329 GEN4_FEATURES,
330 PLATFORM(INTEL_GM45),
331 .is_mobile = 1,
332 .display.has_fbc = 1,
333 .display.supports_tv = 1,
334 .engine_mask = BIT(RCS0) | BIT(VCS0),
335 .gpu_reset_clobbers_display = false,
336};
337
338#define GEN5_FEATURES \
339 GEN(5), \
340 .num_pipes = 2, \
341 .display.has_hotplug = 1, \
342 .engine_mask = BIT(RCS0) | BIT(VCS0), \
343 .has_snoop = true, \
344 .has_coherent_ggtt = true, \
345 /* ilk does support rc6, but we do not implement [power] contexts */ \
346 .has_rc6 = 0, \
347 I9XX_PIPE_OFFSETS, \
348 I9XX_CURSOR_OFFSETS, \
349 ILK_COLORS, \
350 GEN_DEFAULT_PAGE_SIZES
351
352static const struct intel_device_info intel_ironlake_d_info = {
353 GEN5_FEATURES,
354 PLATFORM(INTEL_IRONLAKE),
355};
356
357static const struct intel_device_info intel_ironlake_m_info = {
358 GEN5_FEATURES,
359 PLATFORM(INTEL_IRONLAKE),
360 .is_mobile = 1,
361 .display.has_fbc = 1,
362};
363
364#define GEN6_FEATURES \
365 GEN(6), \
366 .num_pipes = 2, \
367 .display.has_hotplug = 1, \
368 .display.has_fbc = 1, \
369 .engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0), \
370 .has_coherent_ggtt = true, \
371 .has_llc = 1, \
372 .has_rc6 = 1, \
373 .has_rc6p = 1, \
374 .has_rps = true, \
375 .ppgtt_type = INTEL_PPGTT_ALIASING, \
376 .ppgtt_size = 31, \
377 I9XX_PIPE_OFFSETS, \
378 I9XX_CURSOR_OFFSETS, \
379 ILK_COLORS, \
380 GEN_DEFAULT_PAGE_SIZES
381
382#define SNB_D_PLATFORM \
383 GEN6_FEATURES, \
384 PLATFORM(INTEL_SANDYBRIDGE)
385
386static const struct intel_device_info intel_sandybridge_d_gt1_info = {
387 SNB_D_PLATFORM,
388 .gt = 1,
389};
390
391static const struct intel_device_info intel_sandybridge_d_gt2_info = {
392 SNB_D_PLATFORM,
393 .gt = 2,
394};
395
396#define SNB_M_PLATFORM \
397 GEN6_FEATURES, \
398 PLATFORM(INTEL_SANDYBRIDGE), \
399 .is_mobile = 1
400
401
402static const struct intel_device_info intel_sandybridge_m_gt1_info = {
403 SNB_M_PLATFORM,
404 .gt = 1,
405};
406
407static const struct intel_device_info intel_sandybridge_m_gt2_info = {
408 SNB_M_PLATFORM,
409 .gt = 2,
410};
411
412#define GEN7_FEATURES \
413 GEN(7), \
414 .num_pipes = 3, \
415 .display.has_hotplug = 1, \
416 .display.has_fbc = 1, \
417 .engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0), \
418 .has_coherent_ggtt = true, \
419 .has_llc = 1, \
420 .has_rc6 = 1, \
421 /* snb does support rc6p, but enabling it causes various issues */ \
422 .has_rc6p = 0, \
423 .has_rps = true, \
424 .ppgtt_type = INTEL_PPGTT_FULL, \
425 .ppgtt_size = 31, \
426 IVB_PIPE_OFFSETS, \
427 IVB_CURSOR_OFFSETS, \
428 IVB_COLORS, \
429 GEN_DEFAULT_PAGE_SIZES
430
431#define IVB_D_PLATFORM \
432 GEN7_FEATURES, \
433 PLATFORM(INTEL_IVYBRIDGE), \
434 .has_l3_dpf = 1
435
436static const struct intel_device_info intel_ivybridge_d_gt1_info = {
437 IVB_D_PLATFORM,
438 .gt = 1,
439};
440
441static const struct intel_device_info intel_ivybridge_d_gt2_info = {
442 IVB_D_PLATFORM,
443 .gt = 2,
444};
445
446#define IVB_M_PLATFORM \
447 GEN7_FEATURES, \
448 PLATFORM(INTEL_IVYBRIDGE), \
449 .is_mobile = 1, \
450 .has_l3_dpf = 1
451
452static const struct intel_device_info intel_ivybridge_m_gt1_info = {
453 IVB_M_PLATFORM,
454 .gt = 1,
455};
456
457static const struct intel_device_info intel_ivybridge_m_gt2_info = {
458 IVB_M_PLATFORM,
459 .gt = 2,
460};
461
462static const struct intel_device_info intel_ivybridge_q_info = {
463 GEN7_FEATURES,
464 PLATFORM(INTEL_IVYBRIDGE),
465 .gt = 2,
466 .num_pipes = 0, /* legal, last one wins */
467 .has_l3_dpf = 1,
468};
469
470static const struct intel_device_info intel_valleyview_info = {
471 PLATFORM(INTEL_VALLEYVIEW),
472 GEN(7),
473 .is_lp = 1,
474 .num_pipes = 2,
475 .has_runtime_pm = 1,
476 .has_rc6 = 1,
477 .has_rps = true,
478 .display.has_gmch = 1,
479 .display.has_hotplug = 1,
480 .ppgtt_type = INTEL_PPGTT_FULL,
481 .ppgtt_size = 31,
482 .has_snoop = true,
483 .has_coherent_ggtt = false,
484 .engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0),
485 .display_mmio_offset = VLV_DISPLAY_BASE,
486 I9XX_PIPE_OFFSETS,
487 I9XX_CURSOR_OFFSETS,
488 I965_COLORS,
489 GEN_DEFAULT_PAGE_SIZES,
490};
491
492#define G75_FEATURES \
493 GEN7_FEATURES, \
494 .engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0), \
495 .display.has_ddi = 1, \
496 .has_fpga_dbg = 1, \
497 .display.has_psr = 1, \
498 .display.has_dp_mst = 1, \
499 .has_rc6p = 0 /* RC6p removed-by HSW */, \
500 HSW_PIPE_OFFSETS, \
501 .has_runtime_pm = 1
502
503#define HSW_PLATFORM \
504 G75_FEATURES, \
505 PLATFORM(INTEL_HASWELL), \
506 .has_l3_dpf = 1
507
508static const struct intel_device_info intel_haswell_gt1_info = {
509 HSW_PLATFORM,
510 .gt = 1,
511};
512
513static const struct intel_device_info intel_haswell_gt2_info = {
514 HSW_PLATFORM,
515 .gt = 2,
516};
517
518static const struct intel_device_info intel_haswell_gt3_info = {
519 HSW_PLATFORM,
520 .gt = 3,
521};
522
523#define GEN8_FEATURES \
524 G75_FEATURES, \
525 GEN(8), \
526 .has_logical_ring_contexts = 1, \
527 .ppgtt_type = INTEL_PPGTT_FULL, \
528 .ppgtt_size = 48, \
529 .has_64bit_reloc = 1, \
530 .has_reset_engine = 1
531
532#define BDW_PLATFORM \
533 GEN8_FEATURES, \
534 PLATFORM(INTEL_BROADWELL)
535
536static const struct intel_device_info intel_broadwell_gt1_info = {
537 BDW_PLATFORM,
538 .gt = 1,
539};
540
541static const struct intel_device_info intel_broadwell_gt2_info = {
542 BDW_PLATFORM,
543 .gt = 2,
544};
545
546static const struct intel_device_info intel_broadwell_rsvd_info = {
547 BDW_PLATFORM,
548 .gt = 3,
549 /* According to the device ID those devices are GT3, they were
550 * previously treated as not GT3, keep it like that.
551 */
552};
553
554static const struct intel_device_info intel_broadwell_gt3_info = {
555 BDW_PLATFORM,
556 .gt = 3,
557 .engine_mask =
558 BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
559};
560
561static const struct intel_device_info intel_cherryview_info = {
562 PLATFORM(INTEL_CHERRYVIEW),
563 GEN(8),
564 .num_pipes = 3,
565 .display.has_hotplug = 1,
566 .is_lp = 1,
567 .engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0),
568 .has_64bit_reloc = 1,
569 .has_runtime_pm = 1,
570 .has_rc6 = 1,
571 .has_rps = true,
572 .has_logical_ring_contexts = 1,
573 .display.has_gmch = 1,
574 .ppgtt_type = INTEL_PPGTT_FULL,
575 .ppgtt_size = 32,
576 .has_reset_engine = 1,
577 .has_snoop = true,
578 .has_coherent_ggtt = false,
579 .display_mmio_offset = VLV_DISPLAY_BASE,
580 CHV_PIPE_OFFSETS,
581 CHV_CURSOR_OFFSETS,
582 CHV_COLORS,
583 GEN_DEFAULT_PAGE_SIZES,
584};
585
586#define GEN9_DEFAULT_PAGE_SIZES \
587 .page_sizes = I915_GTT_PAGE_SIZE_4K | \
588 I915_GTT_PAGE_SIZE_64K
589
590#define GEN9_FEATURES \
591 GEN8_FEATURES, \
592 GEN(9), \
593 GEN9_DEFAULT_PAGE_SIZES, \
594 .has_logical_ring_preemption = 1, \
595 .display.has_csr = 1, \
596 .has_gt_uc = 1, \
597 .display.has_ipc = 1, \
598 .ddb_size = 896
599
600#define SKL_PLATFORM \
601 GEN9_FEATURES, \
602 PLATFORM(INTEL_SKYLAKE)
603
604static const struct intel_device_info intel_skylake_gt1_info = {
605 SKL_PLATFORM,
606 .gt = 1,
607};
608
609static const struct intel_device_info intel_skylake_gt2_info = {
610 SKL_PLATFORM,
611 .gt = 2,
612};
613
614#define SKL_GT3_PLUS_PLATFORM \
615 SKL_PLATFORM, \
616 .engine_mask = \
617 BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1)
618
619
620static const struct intel_device_info intel_skylake_gt3_info = {
621 SKL_GT3_PLUS_PLATFORM,
622 .gt = 3,
623};
624
625static const struct intel_device_info intel_skylake_gt4_info = {
626 SKL_GT3_PLUS_PLATFORM,
627 .gt = 4,
628};
629
630#define GEN9_LP_FEATURES \
631 GEN(9), \
632 .is_lp = 1, \
633 .display.has_hotplug = 1, \
634 .engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0), \
635 .num_pipes = 3, \
636 .has_64bit_reloc = 1, \
637 .display.has_ddi = 1, \
638 .has_fpga_dbg = 1, \
639 .display.has_fbc = 1, \
640 .display.has_psr = 1, \
641 .has_runtime_pm = 1, \
642 .display.has_csr = 1, \
643 .has_rc6 = 1, \
644 .has_rps = true, \
645 .display.has_dp_mst = 1, \
646 .has_logical_ring_contexts = 1, \
647 .has_logical_ring_preemption = 1, \
648 .has_gt_uc = 1, \
649 .ppgtt_type = INTEL_PPGTT_FULL, \
650 .ppgtt_size = 48, \
651 .has_reset_engine = 1, \
652 .has_snoop = true, \
653 .has_coherent_ggtt = false, \
654 .display.has_ipc = 1, \
655 HSW_PIPE_OFFSETS, \
656 IVB_CURSOR_OFFSETS, \
657 IVB_COLORS, \
658 GEN9_DEFAULT_PAGE_SIZES
659
660static const struct intel_device_info intel_broxton_info = {
661 GEN9_LP_FEATURES,
662 PLATFORM(INTEL_BROXTON),
663 .ddb_size = 512,
664};
665
666static const struct intel_device_info intel_geminilake_info = {
667 GEN9_LP_FEATURES,
668 PLATFORM(INTEL_GEMINILAKE),
669 .ddb_size = 1024,
670 GLK_COLORS,
671};
672
673#define KBL_PLATFORM \
674 GEN9_FEATURES, \
675 PLATFORM(INTEL_KABYLAKE)
676
677static const struct intel_device_info intel_kabylake_gt1_info = {
678 KBL_PLATFORM,
679 .gt = 1,
680};
681
682static const struct intel_device_info intel_kabylake_gt2_info = {
683 KBL_PLATFORM,
684 .gt = 2,
685};
686
687static const struct intel_device_info intel_kabylake_gt3_info = {
688 KBL_PLATFORM,
689 .gt = 3,
690 .engine_mask =
691 BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
692};
693
694#define CFL_PLATFORM \
695 GEN9_FEATURES, \
696 PLATFORM(INTEL_COFFEELAKE)
697
698static const struct intel_device_info intel_coffeelake_gt1_info = {
699 CFL_PLATFORM,
700 .gt = 1,
701};
702
703static const struct intel_device_info intel_coffeelake_gt2_info = {
704 CFL_PLATFORM,
705 .gt = 2,
706};
707
708static const struct intel_device_info intel_coffeelake_gt3_info = {
709 CFL_PLATFORM,
710 .gt = 3,
711 .engine_mask =
712 BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
713};
714
715#define GEN10_FEATURES \
716 GEN9_FEATURES, \
717 GEN(10), \
718 .ddb_size = 1024, \
719 .has_coherent_ggtt = false, \
720 GLK_COLORS
721
722static const struct intel_device_info intel_cannonlake_info = {
723 GEN10_FEATURES,
724 PLATFORM(INTEL_CANNONLAKE),
725 .gt = 2,
726};
727
728#define GEN11_DEFAULT_PAGE_SIZES \
729 .page_sizes = I915_GTT_PAGE_SIZE_4K | \
730 I915_GTT_PAGE_SIZE_64K | \
731 I915_GTT_PAGE_SIZE_2M
732
733#define GEN11_FEATURES \
734 GEN10_FEATURES, \
735 GEN11_DEFAULT_PAGE_SIZES, \
736 .pipe_offsets = { \
737 [TRANSCODER_A] = PIPE_A_OFFSET, \
738 [TRANSCODER_B] = PIPE_B_OFFSET, \
739 [TRANSCODER_C] = PIPE_C_OFFSET, \
740 [TRANSCODER_EDP] = PIPE_EDP_OFFSET, \
741 [TRANSCODER_DSI_0] = PIPE_DSI0_OFFSET, \
742 [TRANSCODER_DSI_1] = PIPE_DSI1_OFFSET, \
743 }, \
744 .trans_offsets = { \
745 [TRANSCODER_A] = TRANSCODER_A_OFFSET, \
746 [TRANSCODER_B] = TRANSCODER_B_OFFSET, \
747 [TRANSCODER_C] = TRANSCODER_C_OFFSET, \
748 [TRANSCODER_EDP] = TRANSCODER_EDP_OFFSET, \
749 [TRANSCODER_DSI_0] = TRANSCODER_DSI0_OFFSET, \
750 [TRANSCODER_DSI_1] = TRANSCODER_DSI1_OFFSET, \
751 }, \
752 GEN(11), \
753 .ddb_size = 2048, \
754 .has_logical_ring_elsq = 1, \
755 .color = { .degamma_lut_size = 33, .gamma_lut_size = 262145 }
756
757static const struct intel_device_info intel_icelake_11_info = {
758 GEN11_FEATURES,
759 PLATFORM(INTEL_ICELAKE),
760 .engine_mask =
761 BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0) | BIT(VCS2),
762};
763
764static const struct intel_device_info intel_elkhartlake_info = {
765 GEN11_FEATURES,
766 PLATFORM(INTEL_ELKHARTLAKE),
767 .require_force_probe = 1,
768 .engine_mask = BIT(RCS0) | BIT(BCS0) | BIT(VCS0) | BIT(VECS0),
769 .ppgtt_size = 36,
770};
771
772#define GEN12_FEATURES \
773 GEN11_FEATURES, \
774 GEN(12), \
775 .pipe_offsets = { \
776 [TRANSCODER_A] = PIPE_A_OFFSET, \
777 [TRANSCODER_B] = PIPE_B_OFFSET, \
778 [TRANSCODER_C] = PIPE_C_OFFSET, \
779 [TRANSCODER_D] = PIPE_D_OFFSET, \
780 [TRANSCODER_DSI_0] = PIPE_DSI0_OFFSET, \
781 [TRANSCODER_DSI_1] = PIPE_DSI1_OFFSET, \
782 }, \
783 .trans_offsets = { \
784 [TRANSCODER_A] = TRANSCODER_A_OFFSET, \
785 [TRANSCODER_B] = TRANSCODER_B_OFFSET, \
786 [TRANSCODER_C] = TRANSCODER_C_OFFSET, \
787 [TRANSCODER_D] = TRANSCODER_D_OFFSET, \
788 [TRANSCODER_DSI_0] = TRANSCODER_DSI0_OFFSET, \
789 [TRANSCODER_DSI_1] = TRANSCODER_DSI1_OFFSET, \
790 }, \
791 .has_global_mocs = 1
792
793static const struct intel_device_info intel_tigerlake_12_info = {
794 GEN12_FEATURES,
795 PLATFORM(INTEL_TIGERLAKE),
796 .num_pipes = 4,
797 .require_force_probe = 1,
798 .display.has_modular_fia = 1,
799 .engine_mask =
800 BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0) | BIT(VCS2),
801};
802
803#undef GEN
804#undef PLATFORM
805
806/*
807 * Make sure any device matches here are from most specific to most
808 * general. For example, since the Quanta match is based on the subsystem
809 * and subvendor IDs, we need it to come before the more general IVB
810 * PCI ID matches, otherwise we'll use the wrong info struct above.
811 */
812static const struct pci_device_id pciidlist[] = {
813 INTEL_I830_IDS(&intel_i830_info),
814 INTEL_I845G_IDS(&intel_i845g_info),
815 INTEL_I85X_IDS(&intel_i85x_info),
816 INTEL_I865G_IDS(&intel_i865g_info),
817 INTEL_I915G_IDS(&intel_i915g_info),
818 INTEL_I915GM_IDS(&intel_i915gm_info),
819 INTEL_I945G_IDS(&intel_i945g_info),
820 INTEL_I945GM_IDS(&intel_i945gm_info),
821 INTEL_I965G_IDS(&intel_i965g_info),
822 INTEL_G33_IDS(&intel_g33_info),
823 INTEL_I965GM_IDS(&intel_i965gm_info),
824 INTEL_GM45_IDS(&intel_gm45_info),
825 INTEL_G45_IDS(&intel_g45_info),
826 INTEL_PINEVIEW_G_IDS(&intel_pineview_g_info),
827 INTEL_PINEVIEW_M_IDS(&intel_pineview_m_info),
828 INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info),
829 INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info),
830 INTEL_SNB_D_GT1_IDS(&intel_sandybridge_d_gt1_info),
831 INTEL_SNB_D_GT2_IDS(&intel_sandybridge_d_gt2_info),
832 INTEL_SNB_M_GT1_IDS(&intel_sandybridge_m_gt1_info),
833 INTEL_SNB_M_GT2_IDS(&intel_sandybridge_m_gt2_info),
834 INTEL_IVB_Q_IDS(&intel_ivybridge_q_info), /* must be first IVB */
835 INTEL_IVB_M_GT1_IDS(&intel_ivybridge_m_gt1_info),
836 INTEL_IVB_M_GT2_IDS(&intel_ivybridge_m_gt2_info),
837 INTEL_IVB_D_GT1_IDS(&intel_ivybridge_d_gt1_info),
838 INTEL_IVB_D_GT2_IDS(&intel_ivybridge_d_gt2_info),
839 INTEL_HSW_GT1_IDS(&intel_haswell_gt1_info),
840 INTEL_HSW_GT2_IDS(&intel_haswell_gt2_info),
841 INTEL_HSW_GT3_IDS(&intel_haswell_gt3_info),
842 INTEL_VLV_IDS(&intel_valleyview_info),
843 INTEL_BDW_GT1_IDS(&intel_broadwell_gt1_info),
844 INTEL_BDW_GT2_IDS(&intel_broadwell_gt2_info),
845 INTEL_BDW_GT3_IDS(&intel_broadwell_gt3_info),
846 INTEL_BDW_RSVD_IDS(&intel_broadwell_rsvd_info),
847 INTEL_CHV_IDS(&intel_cherryview_info),
848 INTEL_SKL_GT1_IDS(&intel_skylake_gt1_info),
849 INTEL_SKL_GT2_IDS(&intel_skylake_gt2_info),
850 INTEL_SKL_GT3_IDS(&intel_skylake_gt3_info),
851 INTEL_SKL_GT4_IDS(&intel_skylake_gt4_info),
852 INTEL_BXT_IDS(&intel_broxton_info),
853 INTEL_GLK_IDS(&intel_geminilake_info),
854 INTEL_KBL_GT1_IDS(&intel_kabylake_gt1_info),
855 INTEL_KBL_GT2_IDS(&intel_kabylake_gt2_info),
856 INTEL_KBL_GT3_IDS(&intel_kabylake_gt3_info),
857 INTEL_KBL_GT4_IDS(&intel_kabylake_gt3_info),
858 INTEL_AML_KBL_GT2_IDS(&intel_kabylake_gt2_info),
859 INTEL_CFL_S_GT1_IDS(&intel_coffeelake_gt1_info),
860 INTEL_CFL_S_GT2_IDS(&intel_coffeelake_gt2_info),
861 INTEL_CFL_H_GT1_IDS(&intel_coffeelake_gt1_info),
862 INTEL_CFL_H_GT2_IDS(&intel_coffeelake_gt2_info),
863 INTEL_CFL_U_GT2_IDS(&intel_coffeelake_gt2_info),
864 INTEL_CFL_U_GT3_IDS(&intel_coffeelake_gt3_info),
865 INTEL_WHL_U_GT1_IDS(&intel_coffeelake_gt1_info),
866 INTEL_WHL_U_GT2_IDS(&intel_coffeelake_gt2_info),
867 INTEL_AML_CFL_GT2_IDS(&intel_coffeelake_gt2_info),
868 INTEL_WHL_U_GT3_IDS(&intel_coffeelake_gt3_info),
869 INTEL_CML_GT1_IDS(&intel_coffeelake_gt1_info),
870 INTEL_CML_GT2_IDS(&intel_coffeelake_gt2_info),
871 INTEL_CNL_IDS(&intel_cannonlake_info),
872 INTEL_ICL_11_IDS(&intel_icelake_11_info),
873 INTEL_EHL_IDS(&intel_elkhartlake_info),
874 INTEL_TGL_12_IDS(&intel_tigerlake_12_info),
875 {0, 0, 0}
876};
877MODULE_DEVICE_TABLE(pci, pciidlist);
878
879static void i915_pci_remove(struct pci_dev *pdev)
880{
881 struct drm_i915_private *i915;
882
883 i915 = pci_get_drvdata(pdev);
884 if (!i915) /* driver load aborted, nothing to cleanup */
885 return;
886
887 i915_driver_remove(i915);
888 pci_set_drvdata(pdev, NULL);
889
890 drm_dev_put(&i915->drm);
891}
892
893/* is device_id present in comma separated list of ids */
894static bool force_probe(u16 device_id, const char *devices)
895{
896 char *s, *p, *tok;
897 bool ret;
898
899 /* FIXME: transitional */
900 if (i915_modparams.alpha_support) {
901 DRM_INFO("i915.alpha_support is deprecated, use i915.force_probe=%04x instead\n",
902 device_id);
903 return true;
904 }
905
906 if (!devices || !*devices)
907 return false;
908
909 /* match everything */
910 if (strcmp(devices, "*") == 0)
911 return true;
912
913 s = kstrdup(devices, GFP_KERNEL);
914 if (!s)
915 return false;
916
917 for (p = s, ret = false; (tok = strsep(&p, ",")) != NULL; ) {
918 u16 val;
919
920 if (kstrtou16(tok, 16, &val) == 0 && val == device_id) {
921 ret = true;
922 break;
923 }
924 }
925
926 kfree(s);
927
928 return ret;
929}
930
931static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
932{
933 struct intel_device_info *intel_info =
934 (struct intel_device_info *) ent->driver_data;
935 int err;
936
937 if (intel_info->require_force_probe &&
938 !force_probe(pdev->device, i915_modparams.force_probe)) {
939 DRM_INFO("Your graphics device %04x is not properly supported by the driver in this\n"
940 "kernel version. To force driver probe anyway, use i915.force_probe=%04x\n"
941 "module parameter or CONFIG_DRM_I915_FORCE_PROBE=%04x configuration option,\n"
942 "or (recommended) check for kernel updates.\n",
943 pdev->device, pdev->device, pdev->device);
944 return -ENODEV;
945 }
946
947 /* Only bind to function 0 of the device. Early generations
948 * used function 1 as a placeholder for multi-head. This causes
949 * us confusion instead, especially on the systems where both
950 * functions have the same PCI-ID!
951 */
952 if (PCI_FUNC(pdev->devfn))
953 return -ENODEV;
954
955 /*
956 * apple-gmux is needed on dual GPU MacBook Pro
957 * to probe the panel if we're the inactive GPU.
958 */
959 if (vga_switcheroo_client_probe_defer(pdev))
960 return -EPROBE_DEFER;
961
962 err = i915_driver_probe(pdev, ent);
963 if (err)
964 return err;
965
966 if (i915_inject_probe_failure(pci_get_drvdata(pdev))) {
967 i915_pci_remove(pdev);
968 return -ENODEV;
969 }
970
971 err = i915_live_selftests(pdev);
972 if (err) {
973 i915_pci_remove(pdev);
974 return err > 0 ? -ENOTTY : err;
975 }
976
977 return 0;
978}
979
980static struct pci_driver i915_pci_driver = {
981 .name = DRIVER_NAME,
982 .id_table = pciidlist,
983 .probe = i915_pci_probe,
984 .remove = i915_pci_remove,
985 .driver.pm = &i915_pm_ops,
986};
987
988static int __init i915_init(void)
989{
990 bool use_kms = true;
991 int err;
992
993 err = i915_globals_init();
994 if (err)
995 return err;
996
997 err = i915_mock_selftests();
998 if (err)
999 return err > 0 ? 0 : err;
1000
1001 /*
1002 * Enable KMS by default, unless explicitly overriden by
1003 * either the i915.modeset prarameter or by the
1004 * vga_text_mode_force boot option.
1005 */
1006
1007 if (i915_modparams.modeset == 0)
1008 use_kms = false;
1009
1010 if (vgacon_text_force() && i915_modparams.modeset == -1)
1011 use_kms = false;
1012
1013 if (!use_kms) {
1014 /* Silently fail loading to not upset userspace. */
1015 DRM_DEBUG_DRIVER("KMS disabled.\n");
1016 return 0;
1017 }
1018
1019 return pci_register_driver(&i915_pci_driver);
1020}
1021
1022static void __exit i915_exit(void)
1023{
1024 if (!i915_pci_driver.driver.owner)
1025 return;
1026
1027 pci_unregister_driver(&i915_pci_driver);
1028 i915_globals_exit();
1029}
1030
1031module_init(i915_init);
1032module_exit(i915_exit);
1033
1034MODULE_AUTHOR("Tungsten Graphics, Inc.");
1035MODULE_AUTHOR("Intel Corporation");
1036
1037MODULE_DESCRIPTION(DRIVER_DESC);
1038MODULE_LICENSE("GPL and additional rights");