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 <linux/console.h>
26 #include <linux/vgaarb.h>
27 #include <linux/vga_switcheroo.h>
31 #define GEN_DEFAULT_PIPEOFFSETS \
32 .pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
33 PIPE_C_OFFSET, PIPE_EDP_OFFSET }, \
34 .trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \
35 TRANSCODER_C_OFFSET, TRANSCODER_EDP_OFFSET }, \
36 .palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET }
38 #define GEN_CHV_PIPEOFFSETS \
39 .pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
40 CHV_PIPE_C_OFFSET }, \
41 .trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \
42 CHV_TRANSCODER_C_OFFSET, }, \
43 .palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET, \
44 CHV_PALETTE_C_OFFSET }
46 #define CURSOR_OFFSETS \
47 .cursor_offsets = { CURSOR_A_OFFSET, CURSOR_B_OFFSET, CHV_CURSOR_C_OFFSET }
49 #define IVB_CURSOR_OFFSETS \
50 .cursor_offsets = { CURSOR_A_OFFSET, IVB_CURSOR_B_OFFSET, IVB_CURSOR_C_OFFSET }
53 .color = { .degamma_lut_size = 512, .gamma_lut_size = 512 }
55 .color = { .degamma_lut_size = 65, .gamma_lut_size = 257 }
57 /* Keep in gen based order, and chronological order within a gen */
58 #define GEN2_FEATURES \
59 .gen = 2, .num_pipes = 1, \
60 .has_overlay = 1, .overlay_needs_physical = 1, \
61 .has_gmch_display = 1, \
62 .hws_needs_physical = 1, \
63 .unfenced_needs_alignment = 1, \
64 .ring_mask = RENDER_RING, \
65 GEN_DEFAULT_PIPEOFFSETS, \
68 static const struct intel_device_info intel_i830_info
= {
70 .platform
= INTEL_I830
,
71 .is_mobile
= 1, .cursor_needs_physical
= 1,
72 .num_pipes
= 2, /* legal, last one wins */
75 static const struct intel_device_info intel_i845g_info
= {
77 .platform
= INTEL_I845G
,
80 static const struct intel_device_info intel_i85x_info
= {
82 .platform
= INTEL_I85X
, .is_mobile
= 1,
83 .num_pipes
= 2, /* legal, last one wins */
84 .cursor_needs_physical
= 1,
88 static const struct intel_device_info intel_i865g_info
= {
90 .platform
= INTEL_I865G
,
93 #define GEN3_FEATURES \
94 .gen = 3, .num_pipes = 2, \
95 .has_gmch_display = 1, \
96 .ring_mask = RENDER_RING, \
97 GEN_DEFAULT_PIPEOFFSETS, \
100 static const struct intel_device_info intel_i915g_info
= {
102 .platform
= INTEL_I915G
, .cursor_needs_physical
= 1,
103 .has_overlay
= 1, .overlay_needs_physical
= 1,
104 .hws_needs_physical
= 1,
105 .unfenced_needs_alignment
= 1,
108 static const struct intel_device_info intel_i915gm_info
= {
110 .platform
= INTEL_I915GM
,
112 .cursor_needs_physical
= 1,
113 .has_overlay
= 1, .overlay_needs_physical
= 1,
116 .hws_needs_physical
= 1,
117 .unfenced_needs_alignment
= 1,
120 static const struct intel_device_info intel_i945g_info
= {
122 .platform
= INTEL_I945G
,
123 .has_hotplug
= 1, .cursor_needs_physical
= 1,
124 .has_overlay
= 1, .overlay_needs_physical
= 1,
125 .hws_needs_physical
= 1,
126 .unfenced_needs_alignment
= 1,
129 static const struct intel_device_info intel_i945gm_info
= {
131 .platform
= INTEL_I945GM
, .is_mobile
= 1,
132 .has_hotplug
= 1, .cursor_needs_physical
= 1,
133 .has_overlay
= 1, .overlay_needs_physical
= 1,
136 .hws_needs_physical
= 1,
137 .unfenced_needs_alignment
= 1,
140 static const struct intel_device_info intel_g33_info
= {
142 .platform
= INTEL_G33
,
147 static const struct intel_device_info intel_pineview_info
= {
149 .platform
= INTEL_PINEVIEW
, .is_mobile
= 1,
154 #define GEN4_FEATURES \
155 .gen = 4, .num_pipes = 2, \
157 .has_gmch_display = 1, \
158 .ring_mask = RENDER_RING, \
159 GEN_DEFAULT_PIPEOFFSETS, \
162 static const struct intel_device_info intel_i965g_info
= {
164 .platform
= INTEL_I965G
,
166 .hws_needs_physical
= 1,
169 static const struct intel_device_info intel_i965gm_info
= {
171 .platform
= INTEL_I965GM
,
172 .is_mobile
= 1, .has_fbc
= 1,
175 .hws_needs_physical
= 1,
178 static const struct intel_device_info intel_g45_info
= {
180 .platform
= INTEL_G45
,
182 .ring_mask
= RENDER_RING
| BSD_RING
,
185 static const struct intel_device_info intel_gm45_info
= {
187 .platform
= INTEL_GM45
,
188 .is_mobile
= 1, .has_fbc
= 1,
191 .ring_mask
= RENDER_RING
| BSD_RING
,
194 #define GEN5_FEATURES \
195 .gen = 5, .num_pipes = 2, \
197 .has_gmbus_irq = 1, \
198 .ring_mask = RENDER_RING | BSD_RING, \
199 GEN_DEFAULT_PIPEOFFSETS, \
202 static const struct intel_device_info intel_ironlake_d_info
= {
204 .platform
= INTEL_IRONLAKE
,
207 static const struct intel_device_info intel_ironlake_m_info
= {
209 .platform
= INTEL_IRONLAKE
,
213 #define GEN6_FEATURES \
214 .gen = 6, .num_pipes = 2, \
217 .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
221 .has_gmbus_irq = 1, \
222 .has_hw_contexts = 1, \
223 .has_aliasing_ppgtt = 1, \
224 GEN_DEFAULT_PIPEOFFSETS, \
227 static const struct intel_device_info intel_sandybridge_d_info
= {
229 .platform
= INTEL_SANDYBRIDGE
,
232 static const struct intel_device_info intel_sandybridge_m_info
= {
234 .platform
= INTEL_SANDYBRIDGE
,
238 #define GEN7_FEATURES \
239 .gen = 7, .num_pipes = 3, \
242 .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
246 .has_gmbus_irq = 1, \
247 .has_hw_contexts = 1, \
248 .has_aliasing_ppgtt = 1, \
249 .has_full_ppgtt = 1, \
250 GEN_DEFAULT_PIPEOFFSETS, \
253 static const struct intel_device_info intel_ivybridge_d_info
= {
255 .platform
= INTEL_IVYBRIDGE
,
259 static const struct intel_device_info intel_ivybridge_m_info
= {
261 .platform
= INTEL_IVYBRIDGE
,
266 static const struct intel_device_info intel_ivybridge_q_info
= {
268 .platform
= INTEL_IVYBRIDGE
,
269 .num_pipes
= 0, /* legal, last one wins */
273 static const struct intel_device_info intel_valleyview_info
= {
274 .platform
= INTEL_VALLEYVIEW
,
282 .has_hw_contexts
= 1,
283 .has_gmch_display
= 1,
285 .has_aliasing_ppgtt
= 1,
287 .ring_mask
= RENDER_RING
| BSD_RING
| BLT_RING
,
288 .display_mmio_offset
= VLV_DISPLAY_BASE
,
289 GEN_DEFAULT_PIPEOFFSETS
,
293 #define HSW_FEATURES \
295 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \
299 .has_resource_streamer = 1, \
301 .has_rc6p = 0 /* RC6p removed-by HSW */, \
304 static const struct intel_device_info intel_haswell_info
= {
306 .platform
= INTEL_HASWELL
,
310 #define BDW_FEATURES \
313 .has_logical_ring_contexts = 1, \
314 .has_full_48bit_ppgtt = 1, \
317 static const struct intel_device_info intel_broadwell_info
= {
320 .platform
= INTEL_BROADWELL
,
323 static const struct intel_device_info intel_broadwell_gt3_info
= {
326 .platform
= INTEL_BROADWELL
,
327 .ring_mask
= RENDER_RING
| BSD_RING
| BLT_RING
| VEBOX_RING
| BSD2_RING
,
330 static const struct intel_device_info intel_cherryview_info
= {
331 .gen
= 8, .num_pipes
= 3,
334 .ring_mask
= RENDER_RING
| BSD_RING
| BLT_RING
| VEBOX_RING
,
335 .platform
= INTEL_CHERRYVIEW
,
336 .has_64bit_reloc
= 1,
339 .has_resource_streamer
= 1,
342 .has_hw_contexts
= 1,
343 .has_logical_ring_contexts
= 1,
344 .has_gmch_display
= 1,
345 .has_aliasing_ppgtt
= 1,
347 .display_mmio_offset
= VLV_DISPLAY_BASE
,
353 static const struct intel_device_info intel_skylake_info
= {
355 .platform
= INTEL_SKYLAKE
,
362 static const struct intel_device_info intel_skylake_gt3_info
= {
364 .platform
= INTEL_SKYLAKE
,
369 .ring_mask
= RENDER_RING
| BSD_RING
| BLT_RING
| VEBOX_RING
| BSD2_RING
,
372 #define GEN9_LP_FEATURES \
376 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \
378 .has_64bit_reloc = 1, \
382 .has_runtime_pm = 1, \
383 .has_pooled_eu = 0, \
385 .has_resource_streamer = 1, \
388 .has_gmbus_irq = 1, \
389 .has_hw_contexts = 1, \
390 .has_logical_ring_contexts = 1, \
392 .has_aliasing_ppgtt = 1, \
393 .has_full_ppgtt = 1, \
394 .has_full_48bit_ppgtt = 1, \
395 GEN_DEFAULT_PIPEOFFSETS, \
396 IVB_CURSOR_OFFSETS, \
399 static const struct intel_device_info intel_broxton_info
= {
401 .platform
= INTEL_BROXTON
,
405 static const struct intel_device_info intel_geminilake_info
= {
407 .platform
= INTEL_GEMINILAKE
,
408 .is_alpha_support
= 1,
412 static const struct intel_device_info intel_kabylake_info
= {
414 .platform
= INTEL_KABYLAKE
,
421 static const struct intel_device_info intel_kabylake_gt3_info
= {
423 .platform
= INTEL_KABYLAKE
,
428 .ring_mask
= RENDER_RING
| BSD_RING
| BLT_RING
| VEBOX_RING
| BSD2_RING
,
432 * Make sure any device matches here are from most specific to most
433 * general. For example, since the Quanta match is based on the subsystem
434 * and subvendor IDs, we need it to come before the more general IVB
435 * PCI ID matches, otherwise we'll use the wrong info struct above.
437 static const struct pci_device_id pciidlist
[] = {
438 INTEL_I830_IDS(&intel_i830_info
),
439 INTEL_I845G_IDS(&intel_i845g_info
),
440 INTEL_I85X_IDS(&intel_i85x_info
),
441 INTEL_I865G_IDS(&intel_i865g_info
),
442 INTEL_I915G_IDS(&intel_i915g_info
),
443 INTEL_I915GM_IDS(&intel_i915gm_info
),
444 INTEL_I945G_IDS(&intel_i945g_info
),
445 INTEL_I945GM_IDS(&intel_i945gm_info
),
446 INTEL_I965G_IDS(&intel_i965g_info
),
447 INTEL_G33_IDS(&intel_g33_info
),
448 INTEL_I965GM_IDS(&intel_i965gm_info
),
449 INTEL_GM45_IDS(&intel_gm45_info
),
450 INTEL_G45_IDS(&intel_g45_info
),
451 INTEL_PINEVIEW_IDS(&intel_pineview_info
),
452 INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info
),
453 INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info
),
454 INTEL_SNB_D_IDS(&intel_sandybridge_d_info
),
455 INTEL_SNB_M_IDS(&intel_sandybridge_m_info
),
456 INTEL_IVB_Q_IDS(&intel_ivybridge_q_info
), /* must be first IVB */
457 INTEL_IVB_M_IDS(&intel_ivybridge_m_info
),
458 INTEL_IVB_D_IDS(&intel_ivybridge_d_info
),
459 INTEL_HSW_IDS(&intel_haswell_info
),
460 INTEL_VLV_IDS(&intel_valleyview_info
),
461 INTEL_BDW_GT12_IDS(&intel_broadwell_info
),
462 INTEL_BDW_GT3_IDS(&intel_broadwell_gt3_info
),
463 INTEL_BDW_RSVD_IDS(&intel_broadwell_info
),
464 INTEL_CHV_IDS(&intel_cherryview_info
),
465 INTEL_SKL_GT1_IDS(&intel_skylake_info
),
466 INTEL_SKL_GT2_IDS(&intel_skylake_info
),
467 INTEL_SKL_GT3_IDS(&intel_skylake_gt3_info
),
468 INTEL_SKL_GT4_IDS(&intel_skylake_gt3_info
),
469 INTEL_BXT_IDS(&intel_broxton_info
),
470 INTEL_GLK_IDS(&intel_geminilake_info
),
471 INTEL_KBL_GT1_IDS(&intel_kabylake_info
),
472 INTEL_KBL_GT2_IDS(&intel_kabylake_info
),
473 INTEL_KBL_GT3_IDS(&intel_kabylake_gt3_info
),
474 INTEL_KBL_GT4_IDS(&intel_kabylake_gt3_info
),
477 MODULE_DEVICE_TABLE(pci
, pciidlist
);
479 static int i915_pci_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
481 struct intel_device_info
*intel_info
=
482 (struct intel_device_info
*) ent
->driver_data
;
484 if (IS_ALPHA_SUPPORT(intel_info
) && !i915
.alpha_support
) {
485 DRM_INFO("The driver support for your hardware in this kernel version is alpha quality\n"
486 "See CONFIG_DRM_I915_ALPHA_SUPPORT or i915.alpha_support module parameter\n"
487 "to enable support in this kernel version, or check for kernel updates.\n");
491 /* Only bind to function 0 of the device. Early generations
492 * used function 1 as a placeholder for multi-head. This causes
493 * us confusion instead, especially on the systems where both
494 * functions have the same PCI-ID!
496 if (PCI_FUNC(pdev
->devfn
))
500 * apple-gmux is needed on dual GPU MacBook Pro
501 * to probe the panel if we're the inactive GPU.
503 if (vga_switcheroo_client_probe_defer(pdev
))
504 return -EPROBE_DEFER
;
506 return i915_driver_load(pdev
, ent
);
509 static void i915_pci_remove(struct pci_dev
*pdev
)
511 struct drm_device
*dev
= pci_get_drvdata(pdev
);
513 i915_driver_unload(dev
);
517 static struct pci_driver i915_pci_driver
= {
519 .id_table
= pciidlist
,
520 .probe
= i915_pci_probe
,
521 .remove
= i915_pci_remove
,
522 .driver
.pm
= &i915_pm_ops
,
525 static int __init
i915_init(void)
530 * Enable KMS by default, unless explicitly overriden by
531 * either the i915.modeset prarameter or by the
532 * vga_text_mode_force boot option.
535 if (i915
.modeset
== 0)
538 if (vgacon_text_force() && i915
.modeset
== -1)
542 /* Silently fail loading to not upset userspace. */
543 DRM_DEBUG_DRIVER("KMS disabled.\n");
547 return pci_register_driver(&i915_pci_driver
);
550 static void __exit
i915_exit(void)
552 if (!i915_pci_driver
.driver
.owner
)
555 pci_unregister_driver(&i915_pci_driver
);
558 module_init(i915_init
);
559 module_exit(i915_exit
);
561 MODULE_AUTHOR("Tungsten Graphics, Inc.");
562 MODULE_AUTHOR("Intel Corporation");
564 MODULE_DESCRIPTION(DRIVER_DESC
);
565 MODULE_LICENSE("GPL and additional rights");