i915_pci.c 19.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright © 2016 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 *
 */

25
#include <linux/console.h>
26 27 28 29
#include <linux/vgaarb.h>
#include <linux/vga_switcheroo.h>

#include "i915_drv.h"
30
#include "i915_selftest.h"
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

#define GEN_DEFAULT_PIPEOFFSETS \
	.pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
			  PIPE_C_OFFSET, PIPE_EDP_OFFSET }, \
	.trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \
			   TRANSCODER_C_OFFSET, TRANSCODER_EDP_OFFSET }, \
	.palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET }

#define GEN_CHV_PIPEOFFSETS \
	.pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
			  CHV_PIPE_C_OFFSET }, \
	.trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \
			   CHV_TRANSCODER_C_OFFSET, }, \
	.palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET, \
			     CHV_PALETTE_C_OFFSET }

#define CURSOR_OFFSETS \
	.cursor_offsets = { CURSOR_A_OFFSET, CURSOR_B_OFFSET, CHV_CURSOR_C_OFFSET }

#define IVB_CURSOR_OFFSETS \
	.cursor_offsets = { CURSOR_A_OFFSET, IVB_CURSOR_B_OFFSET, IVB_CURSOR_C_OFFSET }

#define BDW_COLORS \
	.color = { .degamma_lut_size = 512, .gamma_lut_size = 512 }
#define CHV_COLORS \
	.color = { .degamma_lut_size = 65, .gamma_lut_size = 257 }
R
Rodrigo Vivi 已提交
57 58
#define GLK_COLORS \
	.color = { .degamma_lut_size = 0, .gamma_lut_size = 1024 }
59

60
/* Keep in gen based order, and chronological order within a gen */
61 62 63 64

#define GEN_DEFAULT_PAGE_SIZES \
	.page_sizes = I915_GTT_PAGE_SIZE_4K

65 66 67
#define GEN2_FEATURES \
	.gen = 2, .num_pipes = 1, \
	.has_overlay = 1, .overlay_needs_physical = 1, \
68
	.has_gmch_display = 1, \
69
	.hws_needs_physical = 1, \
70
	.unfenced_needs_alignment = 1, \
71
	.ring_mask = RENDER_RING, \
72
	.has_snoop = true, \
73
	GEN_DEFAULT_PIPEOFFSETS, \
74
	GEN_DEFAULT_PAGE_SIZES, \
75 76
	CURSOR_OFFSETS

77
static const struct intel_device_info intel_i830_info __initconst = {
78
	GEN2_FEATURES,
79
	.platform = INTEL_I830,
80 81
	.is_mobile = 1, .cursor_needs_physical = 1,
	.num_pipes = 2, /* legal, last one wins */
82 83
};

84
static const struct intel_device_info intel_i845g_info __initconst = {
85
	GEN2_FEATURES,
86
	.platform = INTEL_I845G,
87 88
};

89
static const struct intel_device_info intel_i85x_info __initconst = {
90
	GEN2_FEATURES,
91
	.platform = INTEL_I85X, .is_mobile = 1,
92
	.num_pipes = 2, /* legal, last one wins */
93 94 95 96
	.cursor_needs_physical = 1,
	.has_fbc = 1,
};

97
static const struct intel_device_info intel_i865g_info __initconst = {
98
	GEN2_FEATURES,
99
	.platform = INTEL_I865G,
100 101
};

102 103
#define GEN3_FEATURES \
	.gen = 3, .num_pipes = 2, \
104
	.has_gmch_display = 1, \
105
	.ring_mask = RENDER_RING, \
106
	.has_snoop = true, \
107
	GEN_DEFAULT_PIPEOFFSETS, \
108
	GEN_DEFAULT_PAGE_SIZES, \
109 110
	CURSOR_OFFSETS

111
static const struct intel_device_info intel_i915g_info __initconst = {
112
	GEN3_FEATURES,
113
	.platform = INTEL_I915G, .cursor_needs_physical = 1,
114
	.has_overlay = 1, .overlay_needs_physical = 1,
115
	.hws_needs_physical = 1,
116
	.unfenced_needs_alignment = 1,
117
};
118

119
static const struct intel_device_info intel_i915gm_info __initconst = {
120
	GEN3_FEATURES,
121
	.platform = INTEL_I915GM,
122
	.is_mobile = 1,
123 124 125 126
	.cursor_needs_physical = 1,
	.has_overlay = 1, .overlay_needs_physical = 1,
	.supports_tv = 1,
	.has_fbc = 1,
127
	.hws_needs_physical = 1,
128
	.unfenced_needs_alignment = 1,
129
};
130

131
static const struct intel_device_info intel_i945g_info __initconst = {
132
	GEN3_FEATURES,
133
	.platform = INTEL_I945G,
134
	.has_hotplug = 1, .cursor_needs_physical = 1,
135
	.has_overlay = 1, .overlay_needs_physical = 1,
136
	.hws_needs_physical = 1,
137
	.unfenced_needs_alignment = 1,
138
};
139

140
static const struct intel_device_info intel_i945gm_info __initconst = {
141
	GEN3_FEATURES,
142
	.platform = INTEL_I945GM, .is_mobile = 1,
143 144 145 146
	.has_hotplug = 1, .cursor_needs_physical = 1,
	.has_overlay = 1, .overlay_needs_physical = 1,
	.supports_tv = 1,
	.has_fbc = 1,
147
	.hws_needs_physical = 1,
148
	.unfenced_needs_alignment = 1,
149 150
};

151
static const struct intel_device_info intel_g33_info __initconst = {
152 153 154 155 156 157
	GEN3_FEATURES,
	.platform = INTEL_G33,
	.has_hotplug = 1,
	.has_overlay = 1,
};

158
static const struct intel_device_info intel_pineview_info __initconst = {
159
	GEN3_FEATURES,
160
	.platform = INTEL_PINEVIEW, .is_mobile = 1,
161 162 163 164
	.has_hotplug = 1,
	.has_overlay = 1,
};

165 166 167
#define GEN4_FEATURES \
	.gen = 4, .num_pipes = 2, \
	.has_hotplug = 1, \
168
	.has_gmch_display = 1, \
169
	.ring_mask = RENDER_RING, \
170
	.has_snoop = true, \
171
	GEN_DEFAULT_PIPEOFFSETS, \
172
	GEN_DEFAULT_PAGE_SIZES, \
173 174
	CURSOR_OFFSETS

175
static const struct intel_device_info intel_i965g_info __initconst = {
176
	GEN4_FEATURES,
177
	.platform = INTEL_I965G,
178
	.has_overlay = 1,
179
	.hws_needs_physical = 1,
180
	.has_snoop = false,
181 182
};

183
static const struct intel_device_info intel_i965gm_info __initconst = {
184
	GEN4_FEATURES,
185
	.platform = INTEL_I965GM,
186
	.is_mobile = 1, .has_fbc = 1,
187 188
	.has_overlay = 1,
	.supports_tv = 1,
189
	.hws_needs_physical = 1,
190
	.has_snoop = false,
191 192
};

193
static const struct intel_device_info intel_g45_info __initconst = {
194
	GEN4_FEATURES,
195
	.platform = INTEL_G45,
196
	.has_pipe_cxsr = 1,
197 198 199
	.ring_mask = RENDER_RING | BSD_RING,
};

200
static const struct intel_device_info intel_gm45_info __initconst = {
201
	GEN4_FEATURES,
202
	.platform = INTEL_GM45,
203
	.is_mobile = 1, .has_fbc = 1,
204
	.has_pipe_cxsr = 1,
205 206 207 208
	.supports_tv = 1,
	.ring_mask = RENDER_RING | BSD_RING,
};

209 210
#define GEN5_FEATURES \
	.gen = 5, .num_pipes = 2, \
211
	.has_hotplug = 1, \
212
	.ring_mask = RENDER_RING | BSD_RING, \
213
	.has_snoop = true, \
214
	GEN_DEFAULT_PIPEOFFSETS, \
215
	GEN_DEFAULT_PAGE_SIZES, \
216 217
	CURSOR_OFFSETS

218
static const struct intel_device_info intel_ironlake_d_info __initconst = {
219
	GEN5_FEATURES,
220
	.platform = INTEL_IRONLAKE,
221 222
};

223
static const struct intel_device_info intel_ironlake_m_info __initconst = {
224
	GEN5_FEATURES,
225
	.platform = INTEL_IRONLAKE,
226
	.is_mobile = 1, .has_fbc = 1,
227 228
};

229 230
#define GEN6_FEATURES \
	.gen = 6, .num_pipes = 2, \
231
	.has_hotplug = 1, \
232 233 234
	.has_fbc = 1, \
	.ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
	.has_llc = 1, \
235
	.has_rc6 = 1, \
236
	.has_rc6p = 1, \
237
	.has_aliasing_ppgtt = 1, \
238
	GEN_DEFAULT_PIPEOFFSETS, \
239
	GEN_DEFAULT_PAGE_SIZES, \
240 241
	CURSOR_OFFSETS

242 243 244 245
#define SNB_D_PLATFORM \
	GEN6_FEATURES, \
	.platform = INTEL_SANDYBRIDGE

246
static const struct intel_device_info intel_sandybridge_d_gt1_info __initconst = {
247 248
	SNB_D_PLATFORM,
	.gt = 1,
249 250
};

251
static const struct intel_device_info intel_sandybridge_d_gt2_info __initconst = {
252 253 254 255 256 257 258 259 260 261
	SNB_D_PLATFORM,
	.gt = 2,
};

#define SNB_M_PLATFORM \
	GEN6_FEATURES, \
	.platform = INTEL_SANDYBRIDGE, \
	.is_mobile = 1


262
static const struct intel_device_info intel_sandybridge_m_gt1_info __initconst = {
263 264 265 266
	SNB_M_PLATFORM,
	.gt = 1,
};

267
static const struct intel_device_info intel_sandybridge_m_gt2_info __initconst = {
268 269
	SNB_M_PLATFORM,
	.gt = 2,
270 271 272 273
};

#define GEN7_FEATURES  \
	.gen = 7, .num_pipes = 3, \
274
	.has_hotplug = 1, \
275 276 277
	.has_fbc = 1, \
	.ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
	.has_llc = 1, \
278
	.has_rc6 = 1, \
279
	.has_rc6p = 1, \
280 281
	.has_aliasing_ppgtt = 1, \
	.has_full_ppgtt = 1, \
282
	GEN_DEFAULT_PIPEOFFSETS, \
283
	GEN_DEFAULT_PAGE_SIZES, \
284 285
	IVB_CURSOR_OFFSETS

286 287 288 289 290
#define IVB_D_PLATFORM \
	GEN7_FEATURES, \
	.platform = INTEL_IVYBRIDGE, \
	.has_l3_dpf = 1

291
static const struct intel_device_info intel_ivybridge_d_gt1_info __initconst = {
292 293
	IVB_D_PLATFORM,
	.gt = 1,
294 295
};

296
static const struct intel_device_info intel_ivybridge_d_gt2_info __initconst = {
297 298 299 300 301 302 303 304 305 306
	IVB_D_PLATFORM,
	.gt = 2,
};

#define IVB_M_PLATFORM \
	GEN7_FEATURES, \
	.platform = INTEL_IVYBRIDGE, \
	.is_mobile = 1, \
	.has_l3_dpf = 1

307
static const struct intel_device_info intel_ivybridge_m_gt1_info __initconst = {
308 309 310 311
	IVB_M_PLATFORM,
	.gt = 1,
};

312
static const struct intel_device_info intel_ivybridge_m_gt2_info __initconst = {
313 314
	IVB_M_PLATFORM,
	.gt = 2,
315 316
};

317
static const struct intel_device_info intel_ivybridge_q_info __initconst = {
318
	GEN7_FEATURES,
319
	.platform = INTEL_IVYBRIDGE,
320
	.gt = 2,
321
	.num_pipes = 0, /* legal, last one wins */
322
	.has_l3_dpf = 1,
323 324
};

325
static const struct intel_device_info intel_valleyview_info __initconst = {
326
	.platform = INTEL_VALLEYVIEW,
327 328 329 330 331 332 333 334 335 336
	.gen = 7,
	.is_lp = 1,
	.num_pipes = 2,
	.has_psr = 1,
	.has_runtime_pm = 1,
	.has_rc6 = 1,
	.has_gmch_display = 1,
	.has_hotplug = 1,
	.has_aliasing_ppgtt = 1,
	.has_full_ppgtt = 1,
337
	.has_snoop = true,
338 339
	.ring_mask = RENDER_RING | BSD_RING | BLT_RING,
	.display_mmio_offset = VLV_DISPLAY_BASE,
340
	GEN_DEFAULT_PAGE_SIZES,
341 342
	GEN_DEFAULT_PIPEOFFSETS,
	CURSOR_OFFSETS
343 344
};

345
#define G75_FEATURES  \
346 347 348
	GEN7_FEATURES, \
	.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \
	.has_ddi = 1, \
349
	.has_fpga_dbg = 1, \
350
	.has_psr = 1, \
351
	.has_resource_streamer = 1, \
352
	.has_dp_mst = 1, \
353
	.has_rc6p = 0 /* RC6p removed-by HSW */, \
354
	.has_runtime_pm = 1
355

356
#define HSW_PLATFORM \
357
	G75_FEATURES, \
358 359 360
	.platform = INTEL_HASWELL, \
	.has_l3_dpf = 1

361
static const struct intel_device_info intel_haswell_gt1_info __initconst = {
362 363 364 365
	HSW_PLATFORM,
	.gt = 1,
};

366
static const struct intel_device_info intel_haswell_gt2_info __initconst = {
367 368 369 370
	HSW_PLATFORM,
	.gt = 2,
};

371
static const struct intel_device_info intel_haswell_gt3_info __initconst = {
372 373
	HSW_PLATFORM,
	.gt = 3,
374 375
};

376 377
#define GEN8_FEATURES \
	G75_FEATURES, \
378
	BDW_COLORS, \
379
	GEN_DEFAULT_PAGE_SIZES, \
380
	.has_logical_ring_contexts = 1, \
381
	.has_full_48bit_ppgtt = 1, \
382 383
	.has_64bit_reloc = 1, \
	.has_reset_engine = 1
384

385
#define BDW_PLATFORM \
386
	GEN8_FEATURES, \
387 388 389
	.gen = 8, \
	.platform = INTEL_BROADWELL

390
static const struct intel_device_info intel_broadwell_gt1_info __initconst = {
391 392 393 394
	BDW_PLATFORM,
	.gt = 1,
};

395
static const struct intel_device_info intel_broadwell_gt2_info __initconst = {
396
	BDW_PLATFORM,
397 398 399
	.gt = 2,
};

400
static const struct intel_device_info intel_broadwell_rsvd_info __initconst = {
401 402 403 404 405
	BDW_PLATFORM,
	.gt = 3,
	/* According to the device ID those devices are GT3, they were
	 * previously treated as not GT3, keep it like that.
	 */
406 407
};

408
static const struct intel_device_info intel_broadwell_gt3_info __initconst = {
409
	BDW_PLATFORM,
410
	.gt = 3,
411 412 413
	.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
};

414
static const struct intel_device_info intel_cherryview_info __initconst = {
415
	.gen = 8, .num_pipes = 3,
416
	.has_hotplug = 1,
417
	.is_lp = 1,
418
	.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
419
	.platform = INTEL_CHERRYVIEW,
420
	.has_64bit_reloc = 1,
421
	.has_psr = 1,
422
	.has_runtime_pm = 1,
423
	.has_resource_streamer = 1,
424
	.has_rc6 = 1,
425
	.has_logical_ring_contexts = 1,
426
	.has_gmch_display = 1,
427 428
	.has_aliasing_ppgtt = 1,
	.has_full_ppgtt = 1,
429
	.has_reset_engine = 1,
430
	.has_snoop = true,
431
	.display_mmio_offset = VLV_DISPLAY_BASE,
432
	GEN_DEFAULT_PAGE_SIZES,
433 434 435 436 437
	GEN_CHV_PIPEOFFSETS,
	CURSOR_OFFSETS,
	CHV_COLORS,
};

438
#define GEN9_DEFAULT_PAGE_SIZES \
439 440
	.page_sizes = I915_GTT_PAGE_SIZE_4K | \
		      I915_GTT_PAGE_SIZE_64K
441

442 443
#define GEN9_FEATURES \
	GEN8_FEATURES, \
444
	GEN9_DEFAULT_PAGE_SIZES, \
C
Chris Wilson 已提交
445
	.has_logical_ring_preemption = 1, \
446 447
	.has_csr = 1, \
	.has_guc = 1, \
448
	.has_ipc = 1, \
449 450
	.ddb_size = 896

451 452 453 454 455
#define SKL_PLATFORM \
	GEN9_FEATURES, \
	.gen = 9, \
	.platform = INTEL_SKYLAKE

456
static const struct intel_device_info intel_skylake_gt1_info __initconst = {
457
	SKL_PLATFORM,
458
	.gt = 1,
459 460
};

461
static const struct intel_device_info intel_skylake_gt2_info __initconst = {
462
	SKL_PLATFORM,
463 464 465 466 467 468 469 470
	.gt = 2,
};

#define SKL_GT3_PLUS_PLATFORM \
	SKL_PLATFORM, \
	.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING


471
static const struct intel_device_info intel_skylake_gt3_info __initconst = {
472 473 474 475
	SKL_GT3_PLUS_PLATFORM,
	.gt = 3,
};

476
static const struct intel_device_info intel_skylake_gt4_info __initconst = {
477 478
	SKL_GT3_PLUS_PLATFORM,
	.gt = 4,
479 480
};

481 482
#define GEN9_LP_FEATURES \
	.gen = 9, \
483
	.is_lp = 1, \
484 485 486 487 488 489 490
	.has_hotplug = 1, \
	.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \
	.num_pipes = 3, \
	.has_64bit_reloc = 1, \
	.has_ddi = 1, \
	.has_fpga_dbg = 1, \
	.has_fbc = 1, \
491
	.has_psr = 1, \
492 493 494 495 496 497 498
	.has_runtime_pm = 1, \
	.has_pooled_eu = 0, \
	.has_csr = 1, \
	.has_resource_streamer = 1, \
	.has_rc6 = 1, \
	.has_dp_mst = 1, \
	.has_logical_ring_contexts = 1, \
C
Chris Wilson 已提交
499
	.has_logical_ring_preemption = 1, \
500
	.has_guc = 1, \
501 502 503
	.has_aliasing_ppgtt = 1, \
	.has_full_ppgtt = 1, \
	.has_full_48bit_ppgtt = 1, \
504
	.has_reset_engine = 1, \
505
	.has_snoop = true, \
506
	.has_ipc = 1, \
507
	GEN9_DEFAULT_PAGE_SIZES, \
508 509 510 511
	GEN_DEFAULT_PIPEOFFSETS, \
	IVB_CURSOR_OFFSETS, \
	BDW_COLORS

512
static const struct intel_device_info intel_broxton_info __initconst = {
513
	GEN9_LP_FEATURES,
514
	.platform = INTEL_BROXTON,
515
	.ddb_size = 512,
516 517
};

518
static const struct intel_device_info intel_geminilake_info __initconst = {
519
	GEN9_LP_FEATURES,
520
	.platform = INTEL_GEMINILAKE,
521
	.ddb_size = 1024,
R
Rodrigo Vivi 已提交
522
	GLK_COLORS,
523 524
};

525
#define KBL_PLATFORM \
526
	GEN9_FEATURES, \
527
	.gen = 9, \
528
	.platform = INTEL_KABYLAKE
529

530
static const struct intel_device_info intel_kabylake_gt1_info __initconst = {
531
	KBL_PLATFORM,
532 533 534
	.gt = 1,
};

535
static const struct intel_device_info intel_kabylake_gt2_info __initconst = {
536 537
	KBL_PLATFORM,
	.gt = 2,
538 539
};

540
static const struct intel_device_info intel_kabylake_gt3_info __initconst = {
541
	KBL_PLATFORM,
542
	.gt = 3,
543 544 545
	.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
};

546
#define CFL_PLATFORM \
547
	GEN9_FEATURES, \
548
	.gen = 9, \
549
	.platform = INTEL_COFFEELAKE
550

551
static const struct intel_device_info intel_coffeelake_gt1_info __initconst = {
552 553 554 555
	CFL_PLATFORM,
	.gt = 1,
};

556
static const struct intel_device_info intel_coffeelake_gt2_info __initconst = {
557
	CFL_PLATFORM,
558
	.gt = 2,
559 560
};

561
static const struct intel_device_info intel_coffeelake_gt3_info __initconst = {
562
	CFL_PLATFORM,
563
	.gt = 3,
564 565 566
	.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
};

567 568 569
#define GEN10_FEATURES \
	GEN9_FEATURES, \
	.ddb_size = 1024, \
R
Rodrigo Vivi 已提交
570
	GLK_COLORS
571

572
static const struct intel_device_info intel_cannonlake_gt2_info __initconst = {
573
	GEN10_FEATURES,
574 575 576
	.is_alpha_support = 1,
	.platform = INTEL_CANNONLAKE,
	.gen = 10,
577
	.gt = 2,
578 579
};

580 581 582 583 584 585 586 587
/*
 * Make sure any device matches here are from most specific to most
 * general.  For example, since the Quanta match is based on the subsystem
 * and subvendor IDs, we need it to come before the more general IVB
 * PCI ID matches, otherwise we'll use the wrong info struct above.
 */
static const struct pci_device_id pciidlist[] = {
	INTEL_I830_IDS(&intel_i830_info),
588
	INTEL_I845G_IDS(&intel_i845g_info),
589 590 591 592 593 594 595 596 597 598 599 600 601 602
	INTEL_I85X_IDS(&intel_i85x_info),
	INTEL_I865G_IDS(&intel_i865g_info),
	INTEL_I915G_IDS(&intel_i915g_info),
	INTEL_I915GM_IDS(&intel_i915gm_info),
	INTEL_I945G_IDS(&intel_i945g_info),
	INTEL_I945GM_IDS(&intel_i945gm_info),
	INTEL_I965G_IDS(&intel_i965g_info),
	INTEL_G33_IDS(&intel_g33_info),
	INTEL_I965GM_IDS(&intel_i965gm_info),
	INTEL_GM45_IDS(&intel_gm45_info),
	INTEL_G45_IDS(&intel_g45_info),
	INTEL_PINEVIEW_IDS(&intel_pineview_info),
	INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info),
	INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info),
603 604 605 606
	INTEL_SNB_D_GT1_IDS(&intel_sandybridge_d_gt1_info),
	INTEL_SNB_D_GT2_IDS(&intel_sandybridge_d_gt2_info),
	INTEL_SNB_M_GT1_IDS(&intel_sandybridge_m_gt1_info),
	INTEL_SNB_M_GT2_IDS(&intel_sandybridge_m_gt2_info),
607
	INTEL_IVB_Q_IDS(&intel_ivybridge_q_info), /* must be first IVB */
608 609 610 611 612 613 614
	INTEL_IVB_M_GT1_IDS(&intel_ivybridge_m_gt1_info),
	INTEL_IVB_M_GT2_IDS(&intel_ivybridge_m_gt2_info),
	INTEL_IVB_D_GT1_IDS(&intel_ivybridge_d_gt1_info),
	INTEL_IVB_D_GT2_IDS(&intel_ivybridge_d_gt2_info),
	INTEL_HSW_GT1_IDS(&intel_haswell_gt1_info),
	INTEL_HSW_GT2_IDS(&intel_haswell_gt2_info),
	INTEL_HSW_GT3_IDS(&intel_haswell_gt3_info),
615
	INTEL_VLV_IDS(&intel_valleyview_info),
616 617
	INTEL_BDW_GT1_IDS(&intel_broadwell_gt1_info),
	INTEL_BDW_GT2_IDS(&intel_broadwell_gt2_info),
618
	INTEL_BDW_GT3_IDS(&intel_broadwell_gt3_info),
619
	INTEL_BDW_RSVD_IDS(&intel_broadwell_rsvd_info),
620
	INTEL_CHV_IDS(&intel_cherryview_info),
621 622
	INTEL_SKL_GT1_IDS(&intel_skylake_gt1_info),
	INTEL_SKL_GT2_IDS(&intel_skylake_gt2_info),
623
	INTEL_SKL_GT3_IDS(&intel_skylake_gt3_info),
624
	INTEL_SKL_GT4_IDS(&intel_skylake_gt4_info),
625
	INTEL_BXT_IDS(&intel_broxton_info),
626
	INTEL_GLK_IDS(&intel_geminilake_info),
627 628
	INTEL_KBL_GT1_IDS(&intel_kabylake_gt1_info),
	INTEL_KBL_GT2_IDS(&intel_kabylake_gt2_info),
629 630
	INTEL_KBL_GT3_IDS(&intel_kabylake_gt3_info),
	INTEL_KBL_GT4_IDS(&intel_kabylake_gt3_info),
631 632 633 634 635 636
	INTEL_CFL_S_GT1_IDS(&intel_coffeelake_gt1_info),
	INTEL_CFL_S_GT2_IDS(&intel_coffeelake_gt2_info),
	INTEL_CFL_H_GT2_IDS(&intel_coffeelake_gt2_info),
	INTEL_CFL_U_GT3_IDS(&intel_coffeelake_gt3_info),
	INTEL_CNL_U_GT2_IDS(&intel_cannonlake_gt2_info),
	INTEL_CNL_Y_GT2_IDS(&intel_cannonlake_gt2_info),
637 638 639 640
	{0, 0, 0}
};
MODULE_DEVICE_TABLE(pci, pciidlist);

641 642 643 644 645 646 647 648
static void i915_pci_remove(struct pci_dev *pdev)
{
	struct drm_device *dev = pci_get_drvdata(pdev);

	i915_driver_unload(dev);
	drm_dev_unref(dev);
}

649 650 651 652
static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
{
	struct intel_device_info *intel_info =
		(struct intel_device_info *) ent->driver_data;
653
	int err;
654

655
	if (IS_ALPHA_SUPPORT(intel_info) && !i915_modparams.alpha_support) {
656 657 658
		DRM_INFO("The driver support for your hardware in this kernel version is alpha quality\n"
			 "See CONFIG_DRM_I915_ALPHA_SUPPORT or i915.alpha_support module parameter\n"
			 "to enable support in this kernel version, or check for kernel updates.\n");
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
		return -ENODEV;
	}

	/* Only bind to function 0 of the device. Early generations
	 * used function 1 as a placeholder for multi-head. This causes
	 * us confusion instead, especially on the systems where both
	 * functions have the same PCI-ID!
	 */
	if (PCI_FUNC(pdev->devfn))
		return -ENODEV;

	/*
	 * apple-gmux is needed on dual GPU MacBook Pro
	 * to probe the panel if we're the inactive GPU.
	 */
	if (vga_switcheroo_client_probe_defer(pdev))
		return -EPROBE_DEFER;

677 678 679
	err = i915_driver_load(pdev, ent);
	if (err)
		return err;
680

681 682 683 684 685
	err = i915_live_selftests(pdev);
	if (err) {
		i915_pci_remove(pdev);
		return err > 0 ? -ENOTTY : err;
	}
686

687
	return 0;
688 689
}

690
static struct pci_driver i915_pci_driver = {
691 692 693 694 695 696
	.name = DRIVER_NAME,
	.id_table = pciidlist,
	.probe = i915_pci_probe,
	.remove = i915_pci_remove,
	.driver.pm = &i915_pm_ops,
};
697 698 699 700

static int __init i915_init(void)
{
	bool use_kms = true;
701 702 703 704 705
	int err;

	err = i915_mock_selftests();
	if (err)
		return err > 0 ? 0 : err;
706 707 708 709 710 711 712

	/*
	 * Enable KMS by default, unless explicitly overriden by
	 * either the i915.modeset prarameter or by the
	 * vga_text_mode_force boot option.
	 */

713
	if (i915_modparams.modeset == 0)
714 715
		use_kms = false;

716
	if (vgacon_text_force() && i915_modparams.modeset == -1)
717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
		use_kms = false;

	if (!use_kms) {
		/* Silently fail loading to not upset userspace. */
		DRM_DEBUG_DRIVER("KMS disabled.\n");
		return 0;
	}

	return pci_register_driver(&i915_pci_driver);
}

static void __exit i915_exit(void)
{
	if (!i915_pci_driver.driver.owner)
		return;

	pci_unregister_driver(&i915_pci_driver);
}

module_init(i915_init);
module_exit(i915_exit);

MODULE_AUTHOR("Tungsten Graphics, Inc.");
MODULE_AUTHOR("Intel Corporation");

MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL and additional rights");