1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#include <linux/console.h>
26#include <linux/vgaarb.h>
27#include <linux/vga_switcheroo.h>
28
29#include "i915_drv.h"
30#include "i915_selftest.h"
31
32#define GEN_DEFAULT_PIPEOFFSETS \
33 .pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
34 PIPE_C_OFFSET, PIPE_EDP_OFFSET }, \
35 .trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \
36 TRANSCODER_C_OFFSET, TRANSCODER_EDP_OFFSET }, \
37 .palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET }
38
39#define GEN_CHV_PIPEOFFSETS \
40 .pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
41 CHV_PIPE_C_OFFSET }, \
42 .trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \
43 CHV_TRANSCODER_C_OFFSET, }, \
44 .palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET, \
45 CHV_PALETTE_C_OFFSET }
46
47#define CURSOR_OFFSETS \
48 .cursor_offsets = { CURSOR_A_OFFSET, CURSOR_B_OFFSET, CHV_CURSOR_C_OFFSET }
49
50#define IVB_CURSOR_OFFSETS \
51 .cursor_offsets = { CURSOR_A_OFFSET, IVB_CURSOR_B_OFFSET, IVB_CURSOR_C_OFFSET }
52
53#define BDW_COLORS \
54 .color = { .degamma_lut_size = 512, .gamma_lut_size = 512 }
55#define CHV_COLORS \
56 .color = { .degamma_lut_size = 65, .gamma_lut_size = 257 }
57
58
59#define GEN2_FEATURES \
60 .gen = 2, .num_pipes = 1, \
61 .has_overlay = 1, .overlay_needs_physical = 1, \
62 .has_gmch_display = 1, \
63 .hws_needs_physical = 1, \
64 .unfenced_needs_alignment = 1, \
65 .ring_mask = RENDER_RING, \
66 GEN_DEFAULT_PIPEOFFSETS, \
67 CURSOR_OFFSETS
68
69static const struct intel_device_info intel_i830_info = {
70 GEN2_FEATURES,
71 .platform = INTEL_I830,
72 .is_mobile = 1, .cursor_needs_physical = 1,
73 .num_pipes = 2,
74};
75
76static const struct intel_device_info intel_i845g_info = {
77 GEN2_FEATURES,
78 .platform = INTEL_I845G,
79};
80
81static const struct intel_device_info intel_i85x_info = {
82 GEN2_FEATURES,
83 .platform = INTEL_I85X, .is_mobile = 1,
84 .num_pipes = 2,
85 .cursor_needs_physical = 1,
86 .has_fbc = 1,
87};
88
89static const struct intel_device_info intel_i865g_info = {
90 GEN2_FEATURES,
91 .platform = INTEL_I865G,
92};
93
94#define GEN3_FEATURES \
95 .gen = 3, .num_pipes = 2, \
96 .has_gmch_display = 1, \
97 .ring_mask = RENDER_RING, \
98 GEN_DEFAULT_PIPEOFFSETS, \
99 CURSOR_OFFSETS
100
101static const struct intel_device_info intel_i915g_info = {
102 GEN3_FEATURES,
103 .platform = INTEL_I915G, .cursor_needs_physical = 1,
104 .has_overlay = 1, .overlay_needs_physical = 1,
105 .hws_needs_physical = 1,
106 .unfenced_needs_alignment = 1,
107};
108
109static const struct intel_device_info intel_i915gm_info = {
110 GEN3_FEATURES,
111 .platform = INTEL_I915GM,
112 .is_mobile = 1,
113 .cursor_needs_physical = 1,
114 .has_overlay = 1, .overlay_needs_physical = 1,
115 .supports_tv = 1,
116 .has_fbc = 1,
117 .hws_needs_physical = 1,
118 .unfenced_needs_alignment = 1,
119};
120
121static const struct intel_device_info intel_i945g_info = {
122 GEN3_FEATURES,
123 .platform = INTEL_I945G,
124 .has_hotplug = 1, .cursor_needs_physical = 1,
125 .has_overlay = 1, .overlay_needs_physical = 1,
126 .hws_needs_physical = 1,
127 .unfenced_needs_alignment = 1,
128};
129
130static const struct intel_device_info intel_i945gm_info = {
131 GEN3_FEATURES,
132 .platform = INTEL_I945GM, .is_mobile = 1,
133 .has_hotplug = 1, .cursor_needs_physical = 1,
134 .has_overlay = 1, .overlay_needs_physical = 1,
135 .supports_tv = 1,
136 .has_fbc = 1,
137 .hws_needs_physical = 1,
138 .unfenced_needs_alignment = 1,
139};
140
141static const struct intel_device_info intel_g33_info = {
142 GEN3_FEATURES,
143 .platform = INTEL_G33,
144 .has_hotplug = 1,
145 .has_overlay = 1,
146};
147
148static const struct intel_device_info intel_pineview_info = {
149 GEN3_FEATURES,
150 .platform = INTEL_PINEVIEW, .is_mobile = 1,
151 .has_hotplug = 1,
152 .has_overlay = 1,
153};
154
155#define GEN4_FEATURES \
156 .gen = 4, .num_pipes = 2, \
157 .has_hotplug = 1, \
158 .has_gmch_display = 1, \
159 .ring_mask = RENDER_RING, \
160 GEN_DEFAULT_PIPEOFFSETS, \
161 CURSOR_OFFSETS
162
163static const struct intel_device_info intel_i965g_info = {
164 GEN4_FEATURES,
165 .platform = INTEL_I965G,
166 .has_overlay = 1,
167 .hws_needs_physical = 1,
168};
169
170static const struct intel_device_info intel_i965gm_info = {
171 GEN4_FEATURES,
172 .platform = INTEL_I965GM,
173 .is_mobile = 1, .has_fbc = 1,
174 .has_overlay = 1,
175 .supports_tv = 1,
176 .hws_needs_physical = 1,
177};
178
179static const struct intel_device_info intel_g45_info = {
180 GEN4_FEATURES,
181 .platform = INTEL_G45,
182 .has_pipe_cxsr = 1,
183 .ring_mask = RENDER_RING | BSD_RING,
184};
185
186static const struct intel_device_info intel_gm45_info = {
187 GEN4_FEATURES,
188 .platform = INTEL_GM45,
189 .is_mobile = 1, .has_fbc = 1,
190 .has_pipe_cxsr = 1,
191 .supports_tv = 1,
192 .ring_mask = RENDER_RING | BSD_RING,
193};
194
195#define GEN5_FEATURES \
196 .gen = 5, .num_pipes = 2, \
197 .has_hotplug = 1, \
198 .has_gmbus_irq = 1, \
199 .ring_mask = RENDER_RING | BSD_RING, \
200 GEN_DEFAULT_PIPEOFFSETS, \
201 CURSOR_OFFSETS
202
203static const struct intel_device_info intel_ironlake_d_info = {
204 GEN5_FEATURES,
205 .platform = INTEL_IRONLAKE,
206};
207
208static const struct intel_device_info intel_ironlake_m_info = {
209 GEN5_FEATURES,
210 .platform = INTEL_IRONLAKE,
211 .is_mobile = 1, .has_fbc = 1,
212};
213
214#define GEN6_FEATURES \
215 .gen = 6, .num_pipes = 2, \
216 .has_hotplug = 1, \
217 .has_fbc = 1, \
218 .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
219 .has_llc = 1, \
220 .has_rc6 = 1, \
221 .has_rc6p = 1, \
222 .has_gmbus_irq = 1, \
223 .has_aliasing_ppgtt = 1, \
224 GEN_DEFAULT_PIPEOFFSETS, \
225 CURSOR_OFFSETS
226
227static const struct intel_device_info intel_sandybridge_d_info = {
228 GEN6_FEATURES,
229 .platform = INTEL_SANDYBRIDGE,
230};
231
232static const struct intel_device_info intel_sandybridge_m_info = {
233 GEN6_FEATURES,
234 .platform = INTEL_SANDYBRIDGE,
235 .is_mobile = 1,
236};
237
238#define GEN7_FEATURES \
239 .gen = 7, .num_pipes = 3, \
240 .has_hotplug = 1, \
241 .has_fbc = 1, \
242 .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
243 .has_llc = 1, \
244 .has_rc6 = 1, \
245 .has_rc6p = 1, \
246 .has_gmbus_irq = 1, \
247 .has_aliasing_ppgtt = 1, \
248 .has_full_ppgtt = 1, \
249 GEN_DEFAULT_PIPEOFFSETS, \
250 IVB_CURSOR_OFFSETS
251
252static const struct intel_device_info intel_ivybridge_d_info = {
253 GEN7_FEATURES,
254 .platform = INTEL_IVYBRIDGE,
255 .has_l3_dpf = 1,
256};
257
258static const struct intel_device_info intel_ivybridge_m_info = {
259 GEN7_FEATURES,
260 .platform = INTEL_IVYBRIDGE,
261 .is_mobile = 1,
262 .has_l3_dpf = 1,
263};
264
265static const struct intel_device_info intel_ivybridge_q_info = {
266 GEN7_FEATURES,
267 .platform = INTEL_IVYBRIDGE,
268 .num_pipes = 0,
269 .has_l3_dpf = 1,
270};
271
272static const struct intel_device_info intel_valleyview_info = {
273 .platform = INTEL_VALLEYVIEW,
274 .gen = 7,
275 .is_lp = 1,
276 .num_pipes = 2,
277 .has_psr = 1,
278 .has_runtime_pm = 1,
279 .has_rc6 = 1,
280 .has_gmbus_irq = 1,
281 .has_gmch_display = 1,
282 .has_hotplug = 1,
283 .has_aliasing_ppgtt = 1,
284 .has_full_ppgtt = 1,
285 .ring_mask = RENDER_RING | BSD_RING | BLT_RING,
286 .display_mmio_offset = VLV_DISPLAY_BASE,
287 GEN_DEFAULT_PIPEOFFSETS,
288 CURSOR_OFFSETS
289};
290
291#define HSW_FEATURES \
292 GEN7_FEATURES, \
293 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \
294 .has_ddi = 1, \
295 .has_fpga_dbg = 1, \
296 .has_psr = 1, \
297 .has_resource_streamer = 1, \
298 .has_dp_mst = 1, \
299 .has_rc6p = 0 , \
300 .has_runtime_pm = 1
301
302static const struct intel_device_info intel_haswell_info = {
303 HSW_FEATURES,
304 .platform = INTEL_HASWELL,
305 .has_l3_dpf = 1,
306};
307
308#define BDW_FEATURES \
309 HSW_FEATURES, \
310 BDW_COLORS, \
311 .has_logical_ring_contexts = 1, \
312 .has_full_48bit_ppgtt = 1, \
313 .has_64bit_reloc = 1, \
314 .has_reset_engine = 1
315
316#define BDW_PLATFORM \
317 BDW_FEATURES, \
318 .gen = 8, \
319 .platform = INTEL_BROADWELL
320
321static const struct intel_device_info intel_broadwell_info = {
322 BDW_PLATFORM,
323};
324
325static const struct intel_device_info intel_broadwell_gt3_info = {
326 BDW_PLATFORM,
327 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
328};
329
330static const struct intel_device_info intel_cherryview_info = {
331 .gen = 8, .num_pipes = 3,
332 .has_hotplug = 1,
333 .is_lp = 1,
334 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
335 .platform = INTEL_CHERRYVIEW,
336 .has_64bit_reloc = 1,
337 .has_psr = 1,
338 .has_runtime_pm = 1,
339 .has_resource_streamer = 1,
340 .has_rc6 = 1,
341 .has_gmbus_irq = 1,
342 .has_logical_ring_contexts = 1,
343 .has_gmch_display = 1,
344 .has_aliasing_ppgtt = 1,
345 .has_full_ppgtt = 1,
346 .has_reset_engine = 1,
347 .display_mmio_offset = VLV_DISPLAY_BASE,
348 GEN_CHV_PIPEOFFSETS,
349 CURSOR_OFFSETS,
350 CHV_COLORS,
351};
352
353#define SKL_PLATFORM \
354 BDW_FEATURES, \
355 .gen = 9, \
356 .platform = INTEL_SKYLAKE, \
357 .has_csr = 1, \
358 .has_guc = 1, \
359 .ddb_size = 896
360
361static const struct intel_device_info intel_skylake_info = {
362 SKL_PLATFORM,
363};
364
365static const struct intel_device_info intel_skylake_gt3_info = {
366 SKL_PLATFORM,
367 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
368};
369
370#define GEN9_LP_FEATURES \
371 .gen = 9, \
372 .is_lp = 1, \
373 .has_hotplug = 1, \
374 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \
375 .num_pipes = 3, \
376 .has_64bit_reloc = 1, \
377 .has_ddi = 1, \
378 .has_fpga_dbg = 1, \
379 .has_fbc = 1, \
380 .has_runtime_pm = 1, \
381 .has_pooled_eu = 0, \
382 .has_csr = 1, \
383 .has_resource_streamer = 1, \
384 .has_rc6 = 1, \
385 .has_dp_mst = 1, \
386 .has_gmbus_irq = 1, \
387 .has_logical_ring_contexts = 1, \
388 .has_guc = 1, \
389 .has_aliasing_ppgtt = 1, \
390 .has_full_ppgtt = 1, \
391 .has_full_48bit_ppgtt = 1, \
392 .has_reset_engine = 1, \
393 GEN_DEFAULT_PIPEOFFSETS, \
394 IVB_CURSOR_OFFSETS, \
395 BDW_COLORS
396
397static const struct intel_device_info intel_broxton_info = {
398 GEN9_LP_FEATURES,
399 .platform = INTEL_BROXTON,
400 .ddb_size = 512,
401 .has_reset_engine = false,
402};
403
404static const struct intel_device_info intel_geminilake_info = {
405 GEN9_LP_FEATURES,
406 .platform = INTEL_GEMINILAKE,
407 .ddb_size = 1024,
408 .color = { .degamma_lut_size = 0, .gamma_lut_size = 1024 }
409};
410
411#define KBL_PLATFORM \
412 BDW_FEATURES, \
413 .gen = 9, \
414 .platform = INTEL_KABYLAKE, \
415 .has_csr = 1, \
416 .has_guc = 1, \
417 .ddb_size = 896
418
419static const struct intel_device_info intel_kabylake_info = {
420 KBL_PLATFORM,
421};
422
423static const struct intel_device_info intel_kabylake_gt3_info = {
424 KBL_PLATFORM,
425 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
426};
427
428#define CFL_PLATFORM \
429 .is_alpha_support = 1, \
430 BDW_FEATURES, \
431 .gen = 9, \
432 .platform = INTEL_COFFEELAKE, \
433 .has_csr = 1, \
434 .has_guc = 1, \
435 .ddb_size = 896
436
437static const struct intel_device_info intel_coffeelake_info = {
438 CFL_PLATFORM,
439};
440
441static const struct intel_device_info intel_coffeelake_gt3_info = {
442 CFL_PLATFORM,
443 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
444};
445
446static const struct intel_device_info intel_cannonlake_info = {
447 BDW_FEATURES,
448 .is_alpha_support = 1,
449 .platform = INTEL_CANNONLAKE,
450 .gen = 10,
451 .ddb_size = 1024,
452 .has_csr = 1,
453 .color = { .degamma_lut_size = 0, .gamma_lut_size = 1024 }
454};
455
456
457
458
459
460
461
462static const struct pci_device_id pciidlist[] = {
463 INTEL_I830_IDS(&intel_i830_info),
464 INTEL_I845G_IDS(&intel_i845g_info),
465 INTEL_I85X_IDS(&intel_i85x_info),
466 INTEL_I865G_IDS(&intel_i865g_info),
467 INTEL_I915G_IDS(&intel_i915g_info),
468 INTEL_I915GM_IDS(&intel_i915gm_info),
469 INTEL_I945G_IDS(&intel_i945g_info),
470 INTEL_I945GM_IDS(&intel_i945gm_info),
471 INTEL_I965G_IDS(&intel_i965g_info),
472 INTEL_G33_IDS(&intel_g33_info),
473 INTEL_I965GM_IDS(&intel_i965gm_info),
474 INTEL_GM45_IDS(&intel_gm45_info),
475 INTEL_G45_IDS(&intel_g45_info),
476 INTEL_PINEVIEW_IDS(&intel_pineview_info),
477 INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info),
478 INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info),
479 INTEL_SNB_D_IDS(&intel_sandybridge_d_info),
480 INTEL_SNB_M_IDS(&intel_sandybridge_m_info),
481 INTEL_IVB_Q_IDS(&intel_ivybridge_q_info),
482 INTEL_IVB_M_IDS(&intel_ivybridge_m_info),
483 INTEL_IVB_D_IDS(&intel_ivybridge_d_info),
484 INTEL_HSW_IDS(&intel_haswell_info),
485 INTEL_VLV_IDS(&intel_valleyview_info),
486 INTEL_BDW_GT12_IDS(&intel_broadwell_info),
487 INTEL_BDW_GT3_IDS(&intel_broadwell_gt3_info),
488 INTEL_BDW_RSVD_IDS(&intel_broadwell_info),
489 INTEL_CHV_IDS(&intel_cherryview_info),
490 INTEL_SKL_GT1_IDS(&intel_skylake_info),
491 INTEL_SKL_GT2_IDS(&intel_skylake_info),
492 INTEL_SKL_GT3_IDS(&intel_skylake_gt3_info),
493 INTEL_SKL_GT4_IDS(&intel_skylake_gt3_info),
494 INTEL_BXT_IDS(&intel_broxton_info),
495 INTEL_GLK_IDS(&intel_geminilake_info),
496 INTEL_KBL_GT1_IDS(&intel_kabylake_info),
497 INTEL_KBL_GT2_IDS(&intel_kabylake_info),
498 INTEL_KBL_GT3_IDS(&intel_kabylake_gt3_info),
499 INTEL_KBL_GT4_IDS(&intel_kabylake_gt3_info),
500 INTEL_CFL_S_IDS(&intel_coffeelake_info),
501 INTEL_CFL_H_IDS(&intel_coffeelake_info),
502 INTEL_CFL_U_IDS(&intel_coffeelake_gt3_info),
503 INTEL_CNL_IDS(&intel_cannonlake_info),
504 {0, 0, 0}
505};
506MODULE_DEVICE_TABLE(pci, pciidlist);
507
508static void i915_pci_remove(struct pci_dev *pdev)
509{
510 struct drm_device *dev = pci_get_drvdata(pdev);
511
512 i915_driver_unload(dev);
513 drm_dev_unref(dev);
514}
515
516static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
517{
518 struct intel_device_info *intel_info =
519 (struct intel_device_info *) ent->driver_data;
520 int err;
521
522 if (IS_ALPHA_SUPPORT(intel_info) && !i915.alpha_support) {
523 DRM_INFO("The driver support for your hardware in this kernel version is alpha quality\n"
524 "See CONFIG_DRM_I915_ALPHA_SUPPORT or i915.alpha_support module parameter\n"
525 "to enable support in this kernel version, or check for kernel updates.\n");
526 return -ENODEV;
527 }
528
529
530
531
532
533
534 if (PCI_FUNC(pdev->devfn))
535 return -ENODEV;
536
537
538
539
540
541 if (vga_switcheroo_client_probe_defer(pdev))
542 return -EPROBE_DEFER;
543
544 err = i915_driver_load(pdev, ent);
545 if (err)
546 return err;
547
548 err = i915_live_selftests(pdev);
549 if (err) {
550 i915_pci_remove(pdev);
551 return err > 0 ? -ENOTTY : err;
552 }
553
554 return 0;
555}
556
557static struct pci_driver i915_pci_driver = {
558 .name = DRIVER_NAME,
559 .id_table = pciidlist,
560 .probe = i915_pci_probe,
561 .remove = i915_pci_remove,
562 .driver.pm = &i915_pm_ops,
563};
564
565static int __init i915_init(void)
566{
567 bool use_kms = true;
568 int err;
569
570 err = i915_mock_selftests();
571 if (err)
572 return err > 0 ? 0 : err;
573
574
575
576
577
578
579
580 if (i915.modeset == 0)
581 use_kms = false;
582
583 if (vgacon_text_force() && i915.modeset == -1)
584 use_kms = false;
585
586 if (!use_kms) {
587
588 DRM_DEBUG_DRIVER("KMS disabled.\n");
589 return 0;
590 }
591
592 return pci_register_driver(&i915_pci_driver);
593}
594
595static void __exit i915_exit(void)
596{
597 if (!i915_pci_driver.driver.owner)
598 return;
599
600 pci_unregister_driver(&i915_pci_driver);
601}
602
603module_init(i915_init);
604module_exit(i915_exit);
605
606MODULE_AUTHOR("Tungsten Graphics, Inc.");
607MODULE_AUTHOR("Intel Corporation");
608
609MODULE_DESCRIPTION(DRIVER_DESC);
610MODULE_LICENSE("GPL and additional rights");
611