i915_pci.c 25.6 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
#include <linux/vga_switcheroo.h>

28 29
#include <drm/drm_drv.h>

30 31
#include "display/intel_fbdev.h"

32
#include "i915_drv.h"
33
#include "i915_perf.h"
34
#include "i915_globals.h"
35
#include "i915_selftest.h"
36

37
#define PLATFORM(x) .platform = (x)
38 39
#define GEN(x) .gen = (x), .gen_mask = BIT((x) - 1)

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
#define I845_PIPE_OFFSETS \
	.pipe_offsets = { \
		[TRANSCODER_A] = PIPE_A_OFFSET,	\
	}, \
	.trans_offsets = { \
		[TRANSCODER_A] = TRANSCODER_A_OFFSET, \
	}

#define I9XX_PIPE_OFFSETS \
	.pipe_offsets = { \
		[TRANSCODER_A] = PIPE_A_OFFSET,	\
		[TRANSCODER_B] = PIPE_B_OFFSET, \
	}, \
	.trans_offsets = { \
		[TRANSCODER_A] = TRANSCODER_A_OFFSET, \
		[TRANSCODER_B] = TRANSCODER_B_OFFSET, \
	}

#define IVB_PIPE_OFFSETS \
	.pipe_offsets = { \
		[TRANSCODER_A] = PIPE_A_OFFSET,	\
		[TRANSCODER_B] = PIPE_B_OFFSET, \
		[TRANSCODER_C] = PIPE_C_OFFSET, \
	}, \
	.trans_offsets = { \
		[TRANSCODER_A] = TRANSCODER_A_OFFSET, \
		[TRANSCODER_B] = TRANSCODER_B_OFFSET, \
		[TRANSCODER_C] = TRANSCODER_C_OFFSET, \
	}

#define HSW_PIPE_OFFSETS \
71 72 73 74 75 76 77 78 79 80 81 82
	.pipe_offsets = { \
		[TRANSCODER_A] = PIPE_A_OFFSET,	\
		[TRANSCODER_B] = PIPE_B_OFFSET, \
		[TRANSCODER_C] = PIPE_C_OFFSET, \
		[TRANSCODER_EDP] = PIPE_EDP_OFFSET, \
	}, \
	.trans_offsets = { \
		[TRANSCODER_A] = TRANSCODER_A_OFFSET, \
		[TRANSCODER_B] = TRANSCODER_B_OFFSET, \
		[TRANSCODER_C] = TRANSCODER_C_OFFSET, \
		[TRANSCODER_EDP] = TRANSCODER_EDP_OFFSET, \
	}
83

84
#define CHV_PIPE_OFFSETS \
85 86 87 88 89 90 91 92 93 94
	.pipe_offsets = { \
		[TRANSCODER_A] = PIPE_A_OFFSET, \
		[TRANSCODER_B] = PIPE_B_OFFSET, \
		[TRANSCODER_C] = CHV_PIPE_C_OFFSET, \
	}, \
	.trans_offsets = { \
		[TRANSCODER_A] = TRANSCODER_A_OFFSET, \
		[TRANSCODER_B] = TRANSCODER_B_OFFSET, \
		[TRANSCODER_C] = CHV_TRANSCODER_C_OFFSET, \
	}
95

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
#define I845_CURSOR_OFFSETS \
	.cursor_offsets = { \
		[PIPE_A] = CURSOR_A_OFFSET, \
	}

#define I9XX_CURSOR_OFFSETS \
	.cursor_offsets = { \
		[PIPE_A] = CURSOR_A_OFFSET, \
		[PIPE_B] = CURSOR_B_OFFSET, \
	}

#define CHV_CURSOR_OFFSETS \
	.cursor_offsets = { \
		[PIPE_A] = CURSOR_A_OFFSET, \
		[PIPE_B] = CURSOR_B_OFFSET, \
		[PIPE_C] = CHV_CURSOR_C_OFFSET, \
	}
113 114

#define IVB_CURSOR_OFFSETS \
115 116 117 118 119
	.cursor_offsets = { \
		[PIPE_A] = CURSOR_A_OFFSET, \
		[PIPE_B] = IVB_CURSOR_B_OFFSET, \
		[PIPE_C] = IVB_CURSOR_C_OFFSET, \
	}
120

121 122 123 124 125 126 127 128
#define TGL_CURSOR_OFFSETS \
	.cursor_offsets = { \
		[PIPE_A] = CURSOR_A_OFFSET, \
		[PIPE_B] = IVB_CURSOR_B_OFFSET, \
		[PIPE_C] = IVB_CURSOR_C_OFFSET, \
		[PIPE_D] = TGL_CURSOR_D_OFFSET, \
	}

129 130
#define I9XX_COLORS \
	.color = { .gamma_lut_size = 256 }
131 132 133 134
#define I965_COLORS \
	.color = { .gamma_lut_size = 129, \
		   .gamma_lut_tests = DRM_COLOR_LUT_NON_DECREASING, \
	}
135 136
#define ILK_COLORS \
	.color = { .gamma_lut_size = 1024 }
137
#define IVB_COLORS \
138
	.color = { .degamma_lut_size = 1024, .gamma_lut_size = 1024 }
139
#define CHV_COLORS \
140 141 142 143
	.color = { .degamma_lut_size = 65, .gamma_lut_size = 257, \
		   .degamma_lut_tests = DRM_COLOR_LUT_NON_DECREASING, \
		   .gamma_lut_tests = DRM_COLOR_LUT_NON_DECREASING, \
	}
R
Rodrigo Vivi 已提交
144
#define GLK_COLORS \
145
	.color = { .degamma_lut_size = 33, .gamma_lut_size = 1024, \
146 147 148
		   .degamma_lut_tests = DRM_COLOR_LUT_NON_DECREASING | \
					DRM_COLOR_LUT_EQUAL_CHANNELS, \
	}
149

150
/* Keep in gen based order, and chronological order within a gen */
151 152 153 154

#define GEN_DEFAULT_PAGE_SIZES \
	.page_sizes = I915_GTT_PAGE_SIZE_4K

M
Matthew Auld 已提交
155
#define GEN_DEFAULT_REGIONS \
M
Matthew Auld 已提交
156
	.memory_regions = REGION_SMEM | REGION_STOLEN
M
Matthew Auld 已提交
157

158 159 160
#define I830_FEATURES \
	GEN(2), \
	.is_mobile = 1, \
161
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B), \
162 163 164 165 166 167 168 169 170 171 172 173
	.display.has_overlay = 1, \
	.display.cursor_needs_physical = 1, \
	.display.overlay_needs_physical = 1, \
	.display.has_gmch = 1, \
	.gpu_reset_clobbers_display = true, \
	.hws_needs_physical = 1, \
	.unfenced_needs_alignment = 1, \
	.engine_mask = BIT(RCS0), \
	.has_snoop = true, \
	.has_coherent_ggtt = false, \
	I9XX_PIPE_OFFSETS, \
	I9XX_CURSOR_OFFSETS, \
174
	I9XX_COLORS, \
M
Matthew Auld 已提交
175 176
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
177 178

#define I845_FEATURES \
179
	GEN(2), \
180
	.pipe_mask = BIT(PIPE_A), \
181 182
	.display.has_overlay = 1, \
	.display.overlay_needs_physical = 1, \
R
Rodrigo Vivi 已提交
183
	.display.has_gmch = 1, \
184
	.gpu_reset_clobbers_display = true, \
185
	.hws_needs_physical = 1, \
186
	.unfenced_needs_alignment = 1, \
187
	.engine_mask = BIT(RCS0), \
188
	.has_snoop = true, \
189
	.has_coherent_ggtt = false, \
190 191
	I845_PIPE_OFFSETS, \
	I845_CURSOR_OFFSETS, \
192
	I9XX_COLORS, \
M
Matthew Auld 已提交
193 194
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
195

196
static const struct intel_device_info i830_info = {
197
	I830_FEATURES,
198
	PLATFORM(INTEL_I830),
199 200
};

201
static const struct intel_device_info i845g_info = {
202
	I845_FEATURES,
203
	PLATFORM(INTEL_I845G),
204 205
};

206
static const struct intel_device_info i85x_info = {
207
	I830_FEATURES,
208
	PLATFORM(INTEL_I85X),
209
	.display.has_fbc = 1,
210 211
};

212
static const struct intel_device_info i865g_info = {
213
	I845_FEATURES,
214
	PLATFORM(INTEL_I865G),
215 216
};

217
#define GEN3_FEATURES \
218
	GEN(3), \
219
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B), \
R
Rodrigo Vivi 已提交
220
	.display.has_gmch = 1, \
221
	.gpu_reset_clobbers_display = true, \
222
	.engine_mask = BIT(RCS0), \
223
	.has_snoop = true, \
224
	.has_coherent_ggtt = true, \
225 226
	I9XX_PIPE_OFFSETS, \
	I9XX_CURSOR_OFFSETS, \
227
	I9XX_COLORS, \
M
Matthew Auld 已提交
228 229
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
230

231
static const struct intel_device_info i915g_info = {
232
	GEN3_FEATURES,
233
	PLATFORM(INTEL_I915G),
234
	.has_coherent_ggtt = false,
235 236 237
	.display.cursor_needs_physical = 1,
	.display.has_overlay = 1,
	.display.overlay_needs_physical = 1,
238
	.hws_needs_physical = 1,
239
	.unfenced_needs_alignment = 1,
240
};
241

242
static const struct intel_device_info i915gm_info = {
243
	GEN3_FEATURES,
244
	PLATFORM(INTEL_I915GM),
245
	.is_mobile = 1,
246 247 248 249 250
	.display.cursor_needs_physical = 1,
	.display.has_overlay = 1,
	.display.overlay_needs_physical = 1,
	.display.supports_tv = 1,
	.display.has_fbc = 1,
251
	.hws_needs_physical = 1,
252
	.unfenced_needs_alignment = 1,
253
};
254

255
static const struct intel_device_info i945g_info = {
256
	GEN3_FEATURES,
257
	PLATFORM(INTEL_I945G),
258 259 260 261
	.display.has_hotplug = 1,
	.display.cursor_needs_physical = 1,
	.display.has_overlay = 1,
	.display.overlay_needs_physical = 1,
262
	.hws_needs_physical = 1,
263
	.unfenced_needs_alignment = 1,
264
};
265

266
static const struct intel_device_info i945gm_info = {
267
	GEN3_FEATURES,
268 269
	PLATFORM(INTEL_I945GM),
	.is_mobile = 1,
270 271 272 273 274 275
	.display.has_hotplug = 1,
	.display.cursor_needs_physical = 1,
	.display.has_overlay = 1,
	.display.overlay_needs_physical = 1,
	.display.supports_tv = 1,
	.display.has_fbc = 1,
276
	.hws_needs_physical = 1,
277
	.unfenced_needs_alignment = 1,
278 279
};

280
static const struct intel_device_info g33_info = {
281
	GEN3_FEATURES,
282
	PLATFORM(INTEL_G33),
283 284
	.display.has_hotplug = 1,
	.display.has_overlay = 1,
285 286
};

287
static const struct intel_device_info pnv_g_info = {
288 289 290 291 292 293
	GEN3_FEATURES,
	PLATFORM(INTEL_PINEVIEW),
	.display.has_hotplug = 1,
	.display.has_overlay = 1,
};

294
static const struct intel_device_info pnv_m_info = {
295
	GEN3_FEATURES,
296 297
	PLATFORM(INTEL_PINEVIEW),
	.is_mobile = 1,
298 299
	.display.has_hotplug = 1,
	.display.has_overlay = 1,
300 301
};

302
#define GEN4_FEATURES \
303
	GEN(4), \
304
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B), \
305
	.display.has_hotplug = 1, \
R
Rodrigo Vivi 已提交
306
	.display.has_gmch = 1, \
307
	.gpu_reset_clobbers_display = true, \
308
	.engine_mask = BIT(RCS0), \
309
	.has_snoop = true, \
310
	.has_coherent_ggtt = true, \
311 312
	I9XX_PIPE_OFFSETS, \
	I9XX_CURSOR_OFFSETS, \
313
	I965_COLORS, \
M
Matthew Auld 已提交
314 315
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
316

317
static const struct intel_device_info i965g_info = {
318
	GEN4_FEATURES,
319
	PLATFORM(INTEL_I965G),
320
	.display.has_overlay = 1,
321
	.hws_needs_physical = 1,
322
	.has_snoop = false,
323 324
};

325
static const struct intel_device_info i965gm_info = {
326
	GEN4_FEATURES,
327
	PLATFORM(INTEL_I965GM),
328 329 330 331
	.is_mobile = 1,
	.display.has_fbc = 1,
	.display.has_overlay = 1,
	.display.supports_tv = 1,
332
	.hws_needs_physical = 1,
333
	.has_snoop = false,
334 335
};

336
static const struct intel_device_info g45_info = {
337
	GEN4_FEATURES,
338
	PLATFORM(INTEL_G45),
339
	.engine_mask = BIT(RCS0) | BIT(VCS0),
340
	.gpu_reset_clobbers_display = false,
341 342
};

343
static const struct intel_device_info gm45_info = {
344
	GEN4_FEATURES,
345
	PLATFORM(INTEL_GM45),
346 347 348
	.is_mobile = 1,
	.display.has_fbc = 1,
	.display.supports_tv = 1,
349
	.engine_mask = BIT(RCS0) | BIT(VCS0),
350
	.gpu_reset_clobbers_display = false,
351 352
};

353
#define GEN5_FEATURES \
354
	GEN(5), \
355
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B), \
356
	.display.has_hotplug = 1, \
357
	.engine_mask = BIT(RCS0) | BIT(VCS0), \
358
	.has_snoop = true, \
359
	.has_coherent_ggtt = true, \
360 361
	/* ilk does support rc6, but we do not implement [power] contexts */ \
	.has_rc6 = 0, \
362 363
	I9XX_PIPE_OFFSETS, \
	I9XX_CURSOR_OFFSETS, \
364
	ILK_COLORS, \
M
Matthew Auld 已提交
365 366
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
367

368
static const struct intel_device_info ilk_d_info = {
369
	GEN5_FEATURES,
370
	PLATFORM(INTEL_IRONLAKE),
371 372
};

373
static const struct intel_device_info ilk_m_info = {
374
	GEN5_FEATURES,
375
	PLATFORM(INTEL_IRONLAKE),
376 377
	.is_mobile = 1,
	.display.has_fbc = 1,
378 379
};

380
#define GEN6_FEATURES \
381
	GEN(6), \
382
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B), \
383 384
	.display.has_hotplug = 1, \
	.display.has_fbc = 1, \
385
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0), \
386
	.has_coherent_ggtt = true, \
387
	.has_llc = 1, \
388
	.has_rc6 = 1, \
389
	.has_rc6p = 1, \
390
	.has_rps = true, \
391 392
	.ppgtt_type = INTEL_PPGTT_ALIASING, \
	.ppgtt_size = 31, \
393 394
	I9XX_PIPE_OFFSETS, \
	I9XX_CURSOR_OFFSETS, \
395
	ILK_COLORS, \
M
Matthew Auld 已提交
396 397
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
398

399 400
#define SNB_D_PLATFORM \
	GEN6_FEATURES, \
401
	PLATFORM(INTEL_SANDYBRIDGE)
402

403
static const struct intel_device_info snb_d_gt1_info = {
404 405
	SNB_D_PLATFORM,
	.gt = 1,
406 407
};

408
static const struct intel_device_info snb_d_gt2_info = {
409 410 411 412 413 414
	SNB_D_PLATFORM,
	.gt = 2,
};

#define SNB_M_PLATFORM \
	GEN6_FEATURES, \
415
	PLATFORM(INTEL_SANDYBRIDGE), \
416 417 418
	.is_mobile = 1


419
static const struct intel_device_info snb_m_gt1_info = {
420 421 422 423
	SNB_M_PLATFORM,
	.gt = 1,
};

424
static const struct intel_device_info snb_m_gt2_info = {
425 426
	SNB_M_PLATFORM,
	.gt = 2,
427 428 429
};

#define GEN7_FEATURES  \
430
	GEN(7), \
431
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C), \
432 433
	.display.has_hotplug = 1, \
	.display.has_fbc = 1, \
434
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0), \
435
	.has_coherent_ggtt = true, \
436
	.has_llc = 1, \
437
	.has_rc6 = 1, \
438
	.has_rc6p = 1, \
439
	.has_rps = true, \
440
	.ppgtt_type = INTEL_PPGTT_FULL, \
441
	.ppgtt_size = 31, \
442 443
	IVB_PIPE_OFFSETS, \
	IVB_CURSOR_OFFSETS, \
444
	IVB_COLORS, \
M
Matthew Auld 已提交
445 446
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
447

448 449
#define IVB_D_PLATFORM \
	GEN7_FEATURES, \
450
	PLATFORM(INTEL_IVYBRIDGE), \
451 452
	.has_l3_dpf = 1

453
static const struct intel_device_info ivb_d_gt1_info = {
454 455
	IVB_D_PLATFORM,
	.gt = 1,
456 457
};

458
static const struct intel_device_info ivb_d_gt2_info = {
459 460 461 462 463 464
	IVB_D_PLATFORM,
	.gt = 2,
};

#define IVB_M_PLATFORM \
	GEN7_FEATURES, \
465
	PLATFORM(INTEL_IVYBRIDGE), \
466 467 468
	.is_mobile = 1, \
	.has_l3_dpf = 1

469
static const struct intel_device_info ivb_m_gt1_info = {
470 471 472 473
	IVB_M_PLATFORM,
	.gt = 1,
};

474
static const struct intel_device_info ivb_m_gt2_info = {
475 476
	IVB_M_PLATFORM,
	.gt = 2,
477 478
};

479
static const struct intel_device_info ivb_q_info = {
480
	GEN7_FEATURES,
481
	PLATFORM(INTEL_IVYBRIDGE),
482
	.gt = 2,
483
	.pipe_mask = 0, /* legal, last one wins */
484
	.has_l3_dpf = 1,
485 486
};

487
static const struct intel_device_info vlv_info = {
488
	PLATFORM(INTEL_VALLEYVIEW),
489
	GEN(7),
490
	.is_lp = 1,
491
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B),
492 493
	.has_runtime_pm = 1,
	.has_rc6 = 1,
494
	.has_rps = true,
R
Rodrigo Vivi 已提交
495
	.display.has_gmch = 1,
496
	.display.has_hotplug = 1,
497
	.ppgtt_type = INTEL_PPGTT_FULL,
498
	.ppgtt_size = 31,
499
	.has_snoop = true,
500
	.has_coherent_ggtt = false,
501
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0),
502
	.display_mmio_offset = VLV_DISPLAY_BASE,
503 504
	I9XX_PIPE_OFFSETS,
	I9XX_CURSOR_OFFSETS,
505
	I965_COLORS,
506
	GEN_DEFAULT_PAGE_SIZES,
M
Matthew Auld 已提交
507
	GEN_DEFAULT_REGIONS,
508 509
};

510
#define G75_FEATURES  \
511
	GEN7_FEATURES, \
512
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0), \
513
	.display.has_ddi = 1, \
514
	.has_fpga_dbg = 1, \
515 516
	.display.has_psr = 1, \
	.display.has_dp_mst = 1, \
517
	.has_rc6p = 0 /* RC6p removed-by HSW */, \
518
	HSW_PIPE_OFFSETS, \
519
	.has_runtime_pm = 1
520

521
#define HSW_PLATFORM \
522
	G75_FEATURES, \
523
	PLATFORM(INTEL_HASWELL), \
524 525
	.has_l3_dpf = 1

526
static const struct intel_device_info hsw_gt1_info = {
527 528 529 530
	HSW_PLATFORM,
	.gt = 1,
};

531
static const struct intel_device_info hsw_gt2_info = {
532 533 534 535
	HSW_PLATFORM,
	.gt = 2,
};

536
static const struct intel_device_info hsw_gt3_info = {
537 538
	HSW_PLATFORM,
	.gt = 3,
539 540
};

541 542
#define GEN8_FEATURES \
	G75_FEATURES, \
543
	GEN(8), \
544
	.has_logical_ring_contexts = 1, \
545
	.ppgtt_type = INTEL_PPGTT_FULL, \
546
	.ppgtt_size = 48, \
547 548
	.has_64bit_reloc = 1, \
	.has_reset_engine = 1
549

550
#define BDW_PLATFORM \
551
	GEN8_FEATURES, \
552
	PLATFORM(INTEL_BROADWELL)
553

554
static const struct intel_device_info bdw_gt1_info = {
555 556 557 558
	BDW_PLATFORM,
	.gt = 1,
};

559
static const struct intel_device_info bdw_gt2_info = {
560
	BDW_PLATFORM,
561 562 563
	.gt = 2,
};

564
static const struct intel_device_info bdw_rsvd_info = {
565 566 567 568 569
	BDW_PLATFORM,
	.gt = 3,
	/* According to the device ID those devices are GT3, they were
	 * previously treated as not GT3, keep it like that.
	 */
570 571
};

572
static const struct intel_device_info bdw_gt3_info = {
573
	BDW_PLATFORM,
574
	.gt = 3,
575 576
	.engine_mask =
		BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
577 578
};

579
static const struct intel_device_info chv_info = {
580
	PLATFORM(INTEL_CHERRYVIEW),
581
	GEN(8),
582
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
583
	.display.has_hotplug = 1,
584
	.is_lp = 1,
585
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0),
586
	.has_64bit_reloc = 1,
587
	.has_runtime_pm = 1,
588
	.has_rc6 = 1,
589
	.has_rps = true,
590
	.has_logical_ring_contexts = 1,
R
Rodrigo Vivi 已提交
591
	.display.has_gmch = 1,
592
	.ppgtt_type = INTEL_PPGTT_ALIASING,
593
	.ppgtt_size = 32,
594
	.has_reset_engine = 1,
595
	.has_snoop = true,
596
	.has_coherent_ggtt = false,
597
	.display_mmio_offset = VLV_DISPLAY_BASE,
598 599
	CHV_PIPE_OFFSETS,
	CHV_CURSOR_OFFSETS,
600
	CHV_COLORS,
601
	GEN_DEFAULT_PAGE_SIZES,
M
Matthew Auld 已提交
602
	GEN_DEFAULT_REGIONS,
603 604
};

605
#define GEN9_DEFAULT_PAGE_SIZES \
606
	.page_sizes = I915_GTT_PAGE_SIZE_4K | \
607
		      I915_GTT_PAGE_SIZE_64K
608

609 610
#define GEN9_FEATURES \
	GEN8_FEATURES, \
611
	GEN(9), \
612
	GEN9_DEFAULT_PAGE_SIZES, \
C
Chris Wilson 已提交
613
	.has_logical_ring_preemption = 1, \
614
	.display.has_csr = 1, \
615
	.has_gt_uc = 1, \
616
	.display.has_hdcp = 1, \
617
	.display.has_ipc = 1, \
618 619
	.ddb_size = 896

620 621
#define SKL_PLATFORM \
	GEN9_FEATURES, \
622
	PLATFORM(INTEL_SKYLAKE)
623

624
static const struct intel_device_info skl_gt1_info = {
625
	SKL_PLATFORM,
626
	.gt = 1,
627 628
};

629
static const struct intel_device_info skl_gt2_info = {
630
	SKL_PLATFORM,
631 632 633 634 635
	.gt = 2,
};

#define SKL_GT3_PLUS_PLATFORM \
	SKL_PLATFORM, \
636 637
	.engine_mask = \
		BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1)
638 639


640
static const struct intel_device_info skl_gt3_info = {
641 642 643 644
	SKL_GT3_PLUS_PLATFORM,
	.gt = 3,
};

645
static const struct intel_device_info skl_gt4_info = {
646 647
	SKL_GT3_PLUS_PLATFORM,
	.gt = 4,
648 649
};

650
#define GEN9_LP_FEATURES \
651
	GEN(9), \
652
	.is_lp = 1, \
653
	.display.has_hotplug = 1, \
654
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0), \
655
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C), \
656
	.has_64bit_reloc = 1, \
657
	.display.has_ddi = 1, \
658
	.has_fpga_dbg = 1, \
659
	.display.has_fbc = 1, \
660
	.display.has_hdcp = 1, \
661
	.display.has_psr = 1, \
662
	.has_runtime_pm = 1, \
663
	.display.has_csr = 1, \
664
	.has_rc6 = 1, \
665
	.has_rps = true, \
666
	.display.has_dp_mst = 1, \
667
	.has_logical_ring_contexts = 1, \
C
Chris Wilson 已提交
668
	.has_logical_ring_preemption = 1, \
669
	.has_gt_uc = 1, \
670
	.ppgtt_type = INTEL_PPGTT_FULL, \
671
	.ppgtt_size = 48, \
672
	.has_reset_engine = 1, \
673
	.has_snoop = true, \
674
	.has_coherent_ggtt = false, \
675
	.display.has_ipc = 1, \
676
	HSW_PIPE_OFFSETS, \
677
	IVB_CURSOR_OFFSETS, \
678
	IVB_COLORS, \
M
Matthew Auld 已提交
679 680
	GEN9_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
681

682
static const struct intel_device_info bxt_info = {
683
	GEN9_LP_FEATURES,
684
	PLATFORM(INTEL_BROXTON),
685
	.ddb_size = 512,
686 687
};

688
static const struct intel_device_info glk_info = {
689
	GEN9_LP_FEATURES,
690
	PLATFORM(INTEL_GEMINILAKE),
691
	.ddb_size = 1024,
R
Rodrigo Vivi 已提交
692
	GLK_COLORS,
693 694
};

695
#define KBL_PLATFORM \
696
	GEN9_FEATURES, \
697
	PLATFORM(INTEL_KABYLAKE)
698

699
static const struct intel_device_info kbl_gt1_info = {
700
	KBL_PLATFORM,
701 702 703
	.gt = 1,
};

704
static const struct intel_device_info kbl_gt2_info = {
705 706
	KBL_PLATFORM,
	.gt = 2,
707 708
};

709
static const struct intel_device_info kbl_gt3_info = {
710
	KBL_PLATFORM,
711
	.gt = 3,
712 713
	.engine_mask =
		BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
714 715
};

716
#define CFL_PLATFORM \
717
	GEN9_FEATURES, \
718
	PLATFORM(INTEL_COFFEELAKE)
719

720
static const struct intel_device_info cfl_gt1_info = {
721 722 723 724
	CFL_PLATFORM,
	.gt = 1,
};

725
static const struct intel_device_info cfl_gt2_info = {
726
	CFL_PLATFORM,
727
	.gt = 2,
728 729
};

730
static const struct intel_device_info cfl_gt3_info = {
731
	CFL_PLATFORM,
732
	.gt = 3,
733 734
	.engine_mask =
		BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
735 736
};

737 738
#define GEN10_FEATURES \
	GEN9_FEATURES, \
739
	GEN(10), \
740
	.ddb_size = 1024, \
741
	.display.has_dsc = 1, \
742
	.has_coherent_ggtt = false, \
R
Rodrigo Vivi 已提交
743
	GLK_COLORS
744

745
static const struct intel_device_info cnl_info = {
746
	GEN10_FEATURES,
747
	PLATFORM(INTEL_CANNONLAKE),
748
	.gt = 2,
749 750
};

751 752 753 754 755
#define GEN11_DEFAULT_PAGE_SIZES \
	.page_sizes = I915_GTT_PAGE_SIZE_4K | \
		      I915_GTT_PAGE_SIZE_64K | \
		      I915_GTT_PAGE_SIZE_2M

756 757
#define GEN11_FEATURES \
	GEN10_FEATURES, \
758
	GEN11_DEFAULT_PAGE_SIZES, \
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
	.pipe_offsets = { \
		[TRANSCODER_A] = PIPE_A_OFFSET, \
		[TRANSCODER_B] = PIPE_B_OFFSET, \
		[TRANSCODER_C] = PIPE_C_OFFSET, \
		[TRANSCODER_EDP] = PIPE_EDP_OFFSET, \
		[TRANSCODER_DSI_0] = PIPE_DSI0_OFFSET, \
		[TRANSCODER_DSI_1] = PIPE_DSI1_OFFSET, \
	}, \
	.trans_offsets = { \
		[TRANSCODER_A] = TRANSCODER_A_OFFSET, \
		[TRANSCODER_B] = TRANSCODER_B_OFFSET, \
		[TRANSCODER_C] = TRANSCODER_C_OFFSET, \
		[TRANSCODER_EDP] = TRANSCODER_EDP_OFFSET, \
		[TRANSCODER_DSI_0] = TRANSCODER_DSI0_OFFSET, \
		[TRANSCODER_DSI_1] = TRANSCODER_DSI1_OFFSET, \
	}, \
775
	GEN(11), \
776
	.ddb_size = 2048, \
777
	.has_logical_ring_elsq = 1, \
778
	.color = { .degamma_lut_size = 33, .gamma_lut_size = 262145 }
779

780
static const struct intel_device_info icl_info = {
781
	GEN11_FEATURES,
782
	PLATFORM(INTEL_ICELAKE),
783 784
	.engine_mask =
		BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0) | BIT(VCS2),
785 786
};

787
static const struct intel_device_info ehl_info = {
788
	GEN11_FEATURES,
789
	PLATFORM(INTEL_ELKHARTLAKE),
790
	.require_force_probe = 1,
791
	.engine_mask = BIT(RCS0) | BIT(BCS0) | BIT(VCS0) | BIT(VECS0),
792 793 794
	.ppgtt_size = 36,
};

795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
#define GEN12_FEATURES \
	GEN11_FEATURES, \
	GEN(12), \
	.pipe_offsets = { \
		[TRANSCODER_A] = PIPE_A_OFFSET, \
		[TRANSCODER_B] = PIPE_B_OFFSET, \
		[TRANSCODER_C] = PIPE_C_OFFSET, \
		[TRANSCODER_D] = PIPE_D_OFFSET, \
		[TRANSCODER_DSI_0] = PIPE_DSI0_OFFSET, \
		[TRANSCODER_DSI_1] = PIPE_DSI1_OFFSET, \
	}, \
	.trans_offsets = { \
		[TRANSCODER_A] = TRANSCODER_A_OFFSET, \
		[TRANSCODER_B] = TRANSCODER_B_OFFSET, \
		[TRANSCODER_C] = TRANSCODER_C_OFFSET, \
		[TRANSCODER_D] = TRANSCODER_D_OFFSET, \
		[TRANSCODER_DSI_0] = TRANSCODER_DSI0_OFFSET, \
		[TRANSCODER_DSI_1] = TRANSCODER_DSI1_OFFSET, \
813
	}, \
814
	TGL_CURSOR_OFFSETS, \
815 816
	.has_global_mocs = 1, \
	.display.has_dsb = 1
817

818
static const struct intel_device_info tgl_info = {
819 820
	GEN12_FEATURES,
	PLATFORM(INTEL_TIGERLAKE),
821
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D),
822
	.require_force_probe = 1,
823
	.display.has_modular_fia = 1,
824 825
	.engine_mask =
		BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0) | BIT(VCS2),
826
	.has_rps = false, /* XXX disabled for debugging */
827 828
};

829 830 831 832
#define GEN12_DGFX_FEATURES \
	GEN12_FEATURES, \
	.is_dgfx = 1

833
#undef GEN
834
#undef PLATFORM
835

836 837 838 839 840 841 842
/*
 * 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[] = {
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906
	INTEL_I830_IDS(&i830_info),
	INTEL_I845G_IDS(&i845g_info),
	INTEL_I85X_IDS(&i85x_info),
	INTEL_I865G_IDS(&i865g_info),
	INTEL_I915G_IDS(&i915g_info),
	INTEL_I915GM_IDS(&i915gm_info),
	INTEL_I945G_IDS(&i945g_info),
	INTEL_I945GM_IDS(&i945gm_info),
	INTEL_I965G_IDS(&i965g_info),
	INTEL_G33_IDS(&g33_info),
	INTEL_I965GM_IDS(&i965gm_info),
	INTEL_GM45_IDS(&gm45_info),
	INTEL_G45_IDS(&g45_info),
	INTEL_PINEVIEW_G_IDS(&pnv_g_info),
	INTEL_PINEVIEW_M_IDS(&pnv_m_info),
	INTEL_IRONLAKE_D_IDS(&ilk_d_info),
	INTEL_IRONLAKE_M_IDS(&ilk_m_info),
	INTEL_SNB_D_GT1_IDS(&snb_d_gt1_info),
	INTEL_SNB_D_GT2_IDS(&snb_d_gt2_info),
	INTEL_SNB_M_GT1_IDS(&snb_m_gt1_info),
	INTEL_SNB_M_GT2_IDS(&snb_m_gt2_info),
	INTEL_IVB_Q_IDS(&ivb_q_info), /* must be first IVB */
	INTEL_IVB_M_GT1_IDS(&ivb_m_gt1_info),
	INTEL_IVB_M_GT2_IDS(&ivb_m_gt2_info),
	INTEL_IVB_D_GT1_IDS(&ivb_d_gt1_info),
	INTEL_IVB_D_GT2_IDS(&ivb_d_gt2_info),
	INTEL_HSW_GT1_IDS(&hsw_gt1_info),
	INTEL_HSW_GT2_IDS(&hsw_gt2_info),
	INTEL_HSW_GT3_IDS(&hsw_gt3_info),
	INTEL_VLV_IDS(&vlv_info),
	INTEL_BDW_GT1_IDS(&bdw_gt1_info),
	INTEL_BDW_GT2_IDS(&bdw_gt2_info),
	INTEL_BDW_GT3_IDS(&bdw_gt3_info),
	INTEL_BDW_RSVD_IDS(&bdw_rsvd_info),
	INTEL_CHV_IDS(&chv_info),
	INTEL_SKL_GT1_IDS(&skl_gt1_info),
	INTEL_SKL_GT2_IDS(&skl_gt2_info),
	INTEL_SKL_GT3_IDS(&skl_gt3_info),
	INTEL_SKL_GT4_IDS(&skl_gt4_info),
	INTEL_BXT_IDS(&bxt_info),
	INTEL_GLK_IDS(&glk_info),
	INTEL_KBL_GT1_IDS(&kbl_gt1_info),
	INTEL_KBL_GT2_IDS(&kbl_gt2_info),
	INTEL_KBL_GT3_IDS(&kbl_gt3_info),
	INTEL_KBL_GT4_IDS(&kbl_gt3_info),
	INTEL_AML_KBL_GT2_IDS(&kbl_gt2_info),
	INTEL_CFL_S_GT1_IDS(&cfl_gt1_info),
	INTEL_CFL_S_GT2_IDS(&cfl_gt2_info),
	INTEL_CFL_H_GT1_IDS(&cfl_gt1_info),
	INTEL_CFL_H_GT2_IDS(&cfl_gt2_info),
	INTEL_CFL_U_GT2_IDS(&cfl_gt2_info),
	INTEL_CFL_U_GT3_IDS(&cfl_gt3_info),
	INTEL_WHL_U_GT1_IDS(&cfl_gt1_info),
	INTEL_WHL_U_GT2_IDS(&cfl_gt2_info),
	INTEL_AML_CFL_GT2_IDS(&cfl_gt2_info),
	INTEL_WHL_U_GT3_IDS(&cfl_gt3_info),
	INTEL_CML_GT1_IDS(&cfl_gt1_info),
	INTEL_CML_GT2_IDS(&cfl_gt2_info),
	INTEL_CML_U_GT1_IDS(&cfl_gt1_info),
	INTEL_CML_U_GT2_IDS(&cfl_gt2_info),
	INTEL_CNL_IDS(&cnl_info),
	INTEL_ICL_11_IDS(&icl_info),
	INTEL_EHL_IDS(&ehl_info),
	INTEL_TGL_12_IDS(&tgl_info),
907 908 909 910
	{0, 0, 0}
};
MODULE_DEVICE_TABLE(pci, pciidlist);

911 912
static void i915_pci_remove(struct pci_dev *pdev)
{
913
	struct drm_i915_private *i915;
914

915 916
	i915 = pci_get_drvdata(pdev);
	if (!i915) /* driver load aborted, nothing to cleanup */
917
		return;
918

919
	i915_driver_remove(i915);
920
	pci_set_drvdata(pdev, NULL);
921 922

	drm_dev_put(&i915->drm);
923 924
}

925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955
/* is device_id present in comma separated list of ids */
static bool force_probe(u16 device_id, const char *devices)
{
	char *s, *p, *tok;
	bool ret;

	if (!devices || !*devices)
		return false;

	/* match everything */
	if (strcmp(devices, "*") == 0)
		return true;

	s = kstrdup(devices, GFP_KERNEL);
	if (!s)
		return false;

	for (p = s, ret = false; (tok = strsep(&p, ",")) != NULL; ) {
		u16 val;

		if (kstrtou16(tok, 16, &val) == 0 && val == device_id) {
			ret = true;
			break;
		}
	}

	kfree(s);

	return ret;
}

956 957 958 959
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;
960
	int err;
961

962 963 964 965 966 967 968
	if (intel_info->require_force_probe &&
	    !force_probe(pdev->device, i915_modparams.force_probe)) {
		DRM_INFO("Your graphics device %04x is not properly supported by the driver in this\n"
			 "kernel version. To force driver probe anyway, use i915.force_probe=%04x\n"
			 "module parameter or CONFIG_DRM_I915_FORCE_PROBE=%04x configuration option,\n"
			 "or (recommended) check for kernel updates.\n",
			 pdev->device, pdev->device, pdev->device);
969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986
		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;

987
	err = i915_driver_probe(pdev, ent);
988 989
	if (err)
		return err;
990

991
	if (i915_inject_probe_failure(pci_get_drvdata(pdev))) {
992 993 994 995
		i915_pci_remove(pdev);
		return -ENODEV;
	}

996 997 998 999 1000
	err = i915_live_selftests(pdev);
	if (err) {
		i915_pci_remove(pdev);
		return err > 0 ? -ENOTTY : err;
	}
1001

1002 1003 1004 1005 1006 1007
	err = i915_perf_selftests(pdev);
	if (err) {
		i915_pci_remove(pdev);
		return err > 0 ? -ENOTTY : err;
	}

1008
	return 0;
1009 1010
}

1011
static struct pci_driver i915_pci_driver = {
1012 1013 1014 1015 1016 1017
	.name = DRIVER_NAME,
	.id_table = pciidlist,
	.probe = i915_pci_probe,
	.remove = i915_pci_remove,
	.driver.pm = &i915_pm_ops,
};
1018 1019 1020 1021

static int __init i915_init(void)
{
	bool use_kms = true;
1022 1023
	int err;

1024 1025 1026
	err = i915_globals_init();
	if (err)
		return err;
1027

1028 1029 1030
	err = i915_mock_selftests();
	if (err)
		return err > 0 ? 0 : err;
1031 1032 1033 1034 1035 1036 1037

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

1038
	if (i915_modparams.modeset == 0)
1039 1040
		use_kms = false;

1041
	if (vgacon_text_force() && i915_modparams.modeset == -1)
1042 1043 1044 1045 1046 1047 1048 1049
		use_kms = false;

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

1050 1051 1052 1053 1054 1055
	err = pci_register_driver(&i915_pci_driver);
	if (err)
		return err;

	i915_perf_sysctl_register();
	return 0;
1056 1057 1058 1059 1060 1061 1062
}

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

1063
	i915_perf_sysctl_unregister();
1064
	pci_unregister_driver(&i915_pci_driver);
1065
	i915_globals_exit();
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
}

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");