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

28
#include <drm/drm_drv.h>
29
#include <drm/i915_pciids.h>
30

31 32
#include "display/intel_fbdev.h"

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

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

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 71
#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 \
72 73 74 75 76 77 78 79 80 81 82 83
	.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, \
	}
84

85
#define CHV_PIPE_OFFSETS \
86 87 88 89 90 91 92 93 94 95
	.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, \
	}
96

97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
#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, \
	}
114 115

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

122 123 124 125 126 127 128 129
#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, \
	}

130 131
#define I9XX_COLORS \
	.color = { .gamma_lut_size = 256 }
132 133 134 135
#define I965_COLORS \
	.color = { .gamma_lut_size = 129, \
		   .gamma_lut_tests = DRM_COLOR_LUT_NON_DECREASING, \
	}
136 137
#define ILK_COLORS \
	.color = { .gamma_lut_size = 1024 }
138
#define IVB_COLORS \
139
	.color = { .degamma_lut_size = 1024, .gamma_lut_size = 1024 }
140
#define CHV_COLORS \
141 142 143 144
	.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 已提交
145
#define GLK_COLORS \
146
	.color = { .degamma_lut_size = 33, .gamma_lut_size = 1024, \
147 148 149
		   .degamma_lut_tests = DRM_COLOR_LUT_NON_DECREASING | \
					DRM_COLOR_LUT_EQUAL_CHANNELS, \
	}
150

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

#define GEN_DEFAULT_PAGE_SIZES \
	.page_sizes = I915_GTT_PAGE_SIZE_4K

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

159 160 161
#define I830_FEATURES \
	GEN(2), \
	.is_mobile = 1, \
162
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B), \
163
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B), \
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, \
174
	.dma_mask_size = 32, \
175 176
	I9XX_PIPE_OFFSETS, \
	I9XX_CURSOR_OFFSETS, \
177
	I9XX_COLORS, \
M
Matthew Auld 已提交
178 179
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
180 181

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

201
static const struct intel_device_info i830_info = {
202
	I830_FEATURES,
203
	PLATFORM(INTEL_I830),
204 205
};

206
static const struct intel_device_info i845g_info = {
207
	I845_FEATURES,
208
	PLATFORM(INTEL_I845G),
209 210
};

211
static const struct intel_device_info i85x_info = {
212
	I830_FEATURES,
213
	PLATFORM(INTEL_I85X),
214
	.display.has_fbc = 1,
215 216
};

217
static const struct intel_device_info i865g_info = {
218
	I845_FEATURES,
219
	PLATFORM(INTEL_I865G),
220 221
};

222
#define GEN3_FEATURES \
223
	GEN(3), \
224
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B), \
225
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B), \
R
Rodrigo Vivi 已提交
226
	.display.has_gmch = 1, \
227
	.gpu_reset_clobbers_display = true, \
228
	.engine_mask = BIT(RCS0), \
229
	.has_snoop = true, \
230
	.has_coherent_ggtt = true, \
231
	.dma_mask_size = 32, \
232 233
	I9XX_PIPE_OFFSETS, \
	I9XX_CURSOR_OFFSETS, \
234
	I9XX_COLORS, \
M
Matthew Auld 已提交
235 236
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
237

238
static const struct intel_device_info i915g_info = {
239
	GEN3_FEATURES,
240
	PLATFORM(INTEL_I915G),
241
	.has_coherent_ggtt = false,
242 243 244
	.display.cursor_needs_physical = 1,
	.display.has_overlay = 1,
	.display.overlay_needs_physical = 1,
245
	.hws_needs_physical = 1,
246
	.unfenced_needs_alignment = 1,
247
};
248

249
static const struct intel_device_info i915gm_info = {
250
	GEN3_FEATURES,
251
	PLATFORM(INTEL_I915GM),
252
	.is_mobile = 1,
253 254 255 256 257
	.display.cursor_needs_physical = 1,
	.display.has_overlay = 1,
	.display.overlay_needs_physical = 1,
	.display.supports_tv = 1,
	.display.has_fbc = 1,
258
	.hws_needs_physical = 1,
259
	.unfenced_needs_alignment = 1,
260
};
261

262
static const struct intel_device_info i945g_info = {
263
	GEN3_FEATURES,
264
	PLATFORM(INTEL_I945G),
265 266 267 268
	.display.has_hotplug = 1,
	.display.cursor_needs_physical = 1,
	.display.has_overlay = 1,
	.display.overlay_needs_physical = 1,
269
	.hws_needs_physical = 1,
270
	.unfenced_needs_alignment = 1,
271
};
272

273
static const struct intel_device_info i945gm_info = {
274
	GEN3_FEATURES,
275 276
	PLATFORM(INTEL_I945GM),
	.is_mobile = 1,
277 278 279 280 281 282
	.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,
283
	.hws_needs_physical = 1,
284
	.unfenced_needs_alignment = 1,
285 286
};

287
static const struct intel_device_info g33_info = {
288
	GEN3_FEATURES,
289
	PLATFORM(INTEL_G33),
290 291
	.display.has_hotplug = 1,
	.display.has_overlay = 1,
292
	.dma_mask_size = 36,
293 294
};

295
static const struct intel_device_info pnv_g_info = {
296 297 298 299
	GEN3_FEATURES,
	PLATFORM(INTEL_PINEVIEW),
	.display.has_hotplug = 1,
	.display.has_overlay = 1,
300
	.dma_mask_size = 36,
301 302
};

303
static const struct intel_device_info pnv_m_info = {
304
	GEN3_FEATURES,
305 306
	PLATFORM(INTEL_PINEVIEW),
	.is_mobile = 1,
307 308
	.display.has_hotplug = 1,
	.display.has_overlay = 1,
309
	.dma_mask_size = 36,
310 311
};

312
#define GEN4_FEATURES \
313
	GEN(4), \
314
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B), \
315
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B), \
316
	.display.has_hotplug = 1, \
R
Rodrigo Vivi 已提交
317
	.display.has_gmch = 1, \
318
	.gpu_reset_clobbers_display = true, \
319
	.engine_mask = BIT(RCS0), \
320
	.has_snoop = true, \
321
	.has_coherent_ggtt = true, \
322
	.dma_mask_size = 36, \
323 324
	I9XX_PIPE_OFFSETS, \
	I9XX_CURSOR_OFFSETS, \
325
	I965_COLORS, \
M
Matthew Auld 已提交
326 327
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
328

329
static const struct intel_device_info i965g_info = {
330
	GEN4_FEATURES,
331
	PLATFORM(INTEL_I965G),
332
	.display.has_overlay = 1,
333
	.hws_needs_physical = 1,
334
	.has_snoop = false,
335 336
};

337
static const struct intel_device_info i965gm_info = {
338
	GEN4_FEATURES,
339
	PLATFORM(INTEL_I965GM),
340 341 342 343
	.is_mobile = 1,
	.display.has_fbc = 1,
	.display.has_overlay = 1,
	.display.supports_tv = 1,
344
	.hws_needs_physical = 1,
345
	.has_snoop = false,
346 347
};

348
static const struct intel_device_info g45_info = {
349
	GEN4_FEATURES,
350
	PLATFORM(INTEL_G45),
351
	.engine_mask = BIT(RCS0) | BIT(VCS0),
352
	.gpu_reset_clobbers_display = false,
353 354
};

355
static const struct intel_device_info gm45_info = {
356
	GEN4_FEATURES,
357
	PLATFORM(INTEL_GM45),
358 359 360
	.is_mobile = 1,
	.display.has_fbc = 1,
	.display.supports_tv = 1,
361
	.engine_mask = BIT(RCS0) | BIT(VCS0),
362
	.gpu_reset_clobbers_display = false,
363 364
};

365
#define GEN5_FEATURES \
366
	GEN(5), \
367
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B), \
368
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B), \
369
	.display.has_hotplug = 1, \
370
	.engine_mask = BIT(RCS0) | BIT(VCS0), \
371
	.has_snoop = true, \
372
	.has_coherent_ggtt = true, \
373 374
	/* ilk does support rc6, but we do not implement [power] contexts */ \
	.has_rc6 = 0, \
375
	.dma_mask_size = 36, \
376 377
	I9XX_PIPE_OFFSETS, \
	I9XX_CURSOR_OFFSETS, \
378
	ILK_COLORS, \
M
Matthew Auld 已提交
379 380
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
381

382
static const struct intel_device_info ilk_d_info = {
383
	GEN5_FEATURES,
384
	PLATFORM(INTEL_IRONLAKE),
385 386
};

387
static const struct intel_device_info ilk_m_info = {
388
	GEN5_FEATURES,
389
	PLATFORM(INTEL_IRONLAKE),
390 391
	.is_mobile = 1,
	.display.has_fbc = 1,
392 393
};

394
#define GEN6_FEATURES \
395
	GEN(6), \
396
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B), \
397
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B), \
398 399
	.display.has_hotplug = 1, \
	.display.has_fbc = 1, \
400
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0), \
401
	.has_coherent_ggtt = true, \
402
	.has_llc = 1, \
403
	.has_rc6 = 1, \
404
	.has_rc6p = 1, \
405
	.has_rps = true, \
406
	.dma_mask_size = 40, \
407 408
	.ppgtt_type = INTEL_PPGTT_ALIASING, \
	.ppgtt_size = 31, \
409 410
	I9XX_PIPE_OFFSETS, \
	I9XX_CURSOR_OFFSETS, \
411
	ILK_COLORS, \
M
Matthew Auld 已提交
412 413
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
414

415 416
#define SNB_D_PLATFORM \
	GEN6_FEATURES, \
417
	PLATFORM(INTEL_SANDYBRIDGE)
418

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

424
static const struct intel_device_info snb_d_gt2_info = {
425 426 427 428 429 430
	SNB_D_PLATFORM,
	.gt = 2,
};

#define SNB_M_PLATFORM \
	GEN6_FEATURES, \
431
	PLATFORM(INTEL_SANDYBRIDGE), \
432 433 434
	.is_mobile = 1


435
static const struct intel_device_info snb_m_gt1_info = {
436 437 438 439
	SNB_M_PLATFORM,
	.gt = 1,
};

440
static const struct intel_device_info snb_m_gt2_info = {
441 442
	SNB_M_PLATFORM,
	.gt = 2,
443 444 445
};

#define GEN7_FEATURES  \
446
	GEN(7), \
447
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C), \
448
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | BIT(TRANSCODER_C), \
449 450
	.display.has_hotplug = 1, \
	.display.has_fbc = 1, \
451
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0), \
452
	.has_coherent_ggtt = true, \
453
	.has_llc = 1, \
454
	.has_rc6 = 1, \
455
	.has_rc6p = 1, \
456
	.has_rps = true, \
457
	.dma_mask_size = 40, \
458
	.ppgtt_type = INTEL_PPGTT_ALIASING, \
459
	.ppgtt_size = 31, \
460 461
	IVB_PIPE_OFFSETS, \
	IVB_CURSOR_OFFSETS, \
462
	IVB_COLORS, \
M
Matthew Auld 已提交
463 464
	GEN_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
465

466 467
#define IVB_D_PLATFORM \
	GEN7_FEATURES, \
468
	PLATFORM(INTEL_IVYBRIDGE), \
469 470
	.has_l3_dpf = 1

471
static const struct intel_device_info ivb_d_gt1_info = {
472 473
	IVB_D_PLATFORM,
	.gt = 1,
474 475
};

476
static const struct intel_device_info ivb_d_gt2_info = {
477 478 479 480 481 482
	IVB_D_PLATFORM,
	.gt = 2,
};

#define IVB_M_PLATFORM \
	GEN7_FEATURES, \
483
	PLATFORM(INTEL_IVYBRIDGE), \
484 485 486
	.is_mobile = 1, \
	.has_l3_dpf = 1

487
static const struct intel_device_info ivb_m_gt1_info = {
488 489 490 491
	IVB_M_PLATFORM,
	.gt = 1,
};

492
static const struct intel_device_info ivb_m_gt2_info = {
493 494
	IVB_M_PLATFORM,
	.gt = 2,
495 496
};

497
static const struct intel_device_info ivb_q_info = {
498
	GEN7_FEATURES,
499
	PLATFORM(INTEL_IVYBRIDGE),
500
	.gt = 2,
501
	.pipe_mask = 0, /* legal, last one wins */
502
	.cpu_transcoder_mask = 0,
503
	.has_l3_dpf = 1,
504 505
};

506
static const struct intel_device_info vlv_info = {
507
	PLATFORM(INTEL_VALLEYVIEW),
508
	GEN(7),
509
	.is_lp = 1,
510
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B),
511
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B),
512 513
	.has_runtime_pm = 1,
	.has_rc6 = 1,
514
	.has_rps = true,
R
Rodrigo Vivi 已提交
515
	.display.has_gmch = 1,
516
	.display.has_hotplug = 1,
517
	.dma_mask_size = 40,
518
	.ppgtt_type = INTEL_PPGTT_ALIASING,
519
	.ppgtt_size = 31,
520
	.has_snoop = true,
521
	.has_coherent_ggtt = false,
522
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0),
523
	.display_mmio_offset = VLV_DISPLAY_BASE,
524 525
	I9XX_PIPE_OFFSETS,
	I9XX_CURSOR_OFFSETS,
526
	I965_COLORS,
527
	GEN_DEFAULT_PAGE_SIZES,
M
Matthew Auld 已提交
528
	GEN_DEFAULT_REGIONS,
529 530
};

531
#define G75_FEATURES  \
532
	GEN7_FEATURES, \
533
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0), \
534 535
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | \
		BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP), \
536
	.display.has_ddi = 1, \
537
	.has_fpga_dbg = 1, \
538 539
	.display.has_psr = 1, \
	.display.has_dp_mst = 1, \
540
	.has_rc6p = 0 /* RC6p removed-by HSW */, \
541
	HSW_PIPE_OFFSETS, \
542
	.has_runtime_pm = 1
543

544
#define HSW_PLATFORM \
545
	G75_FEATURES, \
546
	PLATFORM(INTEL_HASWELL), \
547 548
	.has_l3_dpf = 1

549
static const struct intel_device_info hsw_gt1_info = {
550 551 552 553
	HSW_PLATFORM,
	.gt = 1,
};

554
static const struct intel_device_info hsw_gt2_info = {
555 556 557 558
	HSW_PLATFORM,
	.gt = 2,
};

559
static const struct intel_device_info hsw_gt3_info = {
560 561
	HSW_PLATFORM,
	.gt = 3,
562 563
};

564 565
#define GEN8_FEATURES \
	G75_FEATURES, \
566
	GEN(8), \
567
	.has_logical_ring_contexts = 1, \
568
	.dma_mask_size = 39, \
569
	.ppgtt_type = INTEL_PPGTT_FULL, \
570
	.ppgtt_size = 48, \
571 572
	.has_64bit_reloc = 1, \
	.has_reset_engine = 1
573

574
#define BDW_PLATFORM \
575
	GEN8_FEATURES, \
576
	PLATFORM(INTEL_BROADWELL)
577

578
static const struct intel_device_info bdw_gt1_info = {
579 580 581 582
	BDW_PLATFORM,
	.gt = 1,
};

583
static const struct intel_device_info bdw_gt2_info = {
584
	BDW_PLATFORM,
585 586 587
	.gt = 2,
};

588
static const struct intel_device_info bdw_rsvd_info = {
589 590 591 592 593
	BDW_PLATFORM,
	.gt = 3,
	/* According to the device ID those devices are GT3, they were
	 * previously treated as not GT3, keep it like that.
	 */
594 595
};

596
static const struct intel_device_info bdw_gt3_info = {
597
	BDW_PLATFORM,
598
	.gt = 3,
599 600
	.engine_mask =
		BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
601 602
};

603
static const struct intel_device_info chv_info = {
604
	PLATFORM(INTEL_CHERRYVIEW),
605
	GEN(8),
606
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
607
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | BIT(TRANSCODER_C),
608
	.display.has_hotplug = 1,
609
	.is_lp = 1,
610
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0),
611
	.has_64bit_reloc = 1,
612
	.has_runtime_pm = 1,
613
	.has_rc6 = 1,
614
	.has_rps = true,
615
	.has_logical_ring_contexts = 1,
R
Rodrigo Vivi 已提交
616
	.display.has_gmch = 1,
617
	.dma_mask_size = 39,
618
	.ppgtt_type = INTEL_PPGTT_ALIASING,
619
	.ppgtt_size = 32,
620
	.has_reset_engine = 1,
621
	.has_snoop = true,
622
	.has_coherent_ggtt = false,
623
	.display_mmio_offset = VLV_DISPLAY_BASE,
624 625
	CHV_PIPE_OFFSETS,
	CHV_CURSOR_OFFSETS,
626
	CHV_COLORS,
627
	GEN_DEFAULT_PAGE_SIZES,
M
Matthew Auld 已提交
628
	GEN_DEFAULT_REGIONS,
629 630
};

631
#define GEN9_DEFAULT_PAGE_SIZES \
632
	.page_sizes = I915_GTT_PAGE_SIZE_4K | \
633
		      I915_GTT_PAGE_SIZE_64K
634

635 636
#define GEN9_FEATURES \
	GEN8_FEATURES, \
637
	GEN(9), \
638
	GEN9_DEFAULT_PAGE_SIZES, \
C
Chris Wilson 已提交
639
	.has_logical_ring_preemption = 1, \
640
	.display.has_csr = 1, \
641
	.has_gt_uc = 1, \
642
	.display.has_hdcp = 1, \
643
	.display.has_ipc = 1, \
644 645
	.ddb_size = 896, \
	.num_supported_dbuf_slices = 1
646

647 648
#define SKL_PLATFORM \
	GEN9_FEATURES, \
649
	PLATFORM(INTEL_SKYLAKE)
650

651
static const struct intel_device_info skl_gt1_info = {
652
	SKL_PLATFORM,
653
	.gt = 1,
654 655
};

656
static const struct intel_device_info skl_gt2_info = {
657
	SKL_PLATFORM,
658 659 660 661 662
	.gt = 2,
};

#define SKL_GT3_PLUS_PLATFORM \
	SKL_PLATFORM, \
663 664
	.engine_mask = \
		BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1)
665 666


667
static const struct intel_device_info skl_gt3_info = {
668 669 670 671
	SKL_GT3_PLUS_PLATFORM,
	.gt = 3,
};

672
static const struct intel_device_info skl_gt4_info = {
673 674
	SKL_GT3_PLUS_PLATFORM,
	.gt = 4,
675 676
};

677
#define GEN9_LP_FEATURES \
678
	GEN(9), \
679
	.is_lp = 1, \
680
	.num_supported_dbuf_slices = 1, \
681
	.display.has_hotplug = 1, \
682
	.engine_mask = BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0), \
683
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C), \
684 685 686
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | \
		BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP) | \
		BIT(TRANSCODER_DSI_A) | BIT(TRANSCODER_DSI_C), \
687
	.has_64bit_reloc = 1, \
688
	.display.has_ddi = 1, \
689
	.has_fpga_dbg = 1, \
690
	.display.has_fbc = 1, \
691
	.display.has_hdcp = 1, \
692
	.display.has_psr = 1, \
693
	.has_runtime_pm = 1, \
694
	.display.has_csr = 1, \
695
	.has_rc6 = 1, \
696
	.has_rps = true, \
697
	.display.has_dp_mst = 1, \
698
	.has_logical_ring_contexts = 1, \
C
Chris Wilson 已提交
699
	.has_logical_ring_preemption = 1, \
700
	.has_gt_uc = 1, \
701
	.dma_mask_size = 39, \
702
	.ppgtt_type = INTEL_PPGTT_FULL, \
703
	.ppgtt_size = 48, \
704
	.has_reset_engine = 1, \
705
	.has_snoop = true, \
706
	.has_coherent_ggtt = false, \
707
	.display.has_ipc = 1, \
708
	HSW_PIPE_OFFSETS, \
709
	IVB_CURSOR_OFFSETS, \
710
	IVB_COLORS, \
M
Matthew Auld 已提交
711 712
	GEN9_DEFAULT_PAGE_SIZES, \
	GEN_DEFAULT_REGIONS
713

714
static const struct intel_device_info bxt_info = {
715
	GEN9_LP_FEATURES,
716
	PLATFORM(INTEL_BROXTON),
717
	.ddb_size = 512,
718 719
};

720
static const struct intel_device_info glk_info = {
721
	GEN9_LP_FEATURES,
722
	PLATFORM(INTEL_GEMINILAKE),
723
	.ddb_size = 1024,
R
Rodrigo Vivi 已提交
724
	GLK_COLORS,
725 726
};

727
#define KBL_PLATFORM \
728
	GEN9_FEATURES, \
729
	PLATFORM(INTEL_KABYLAKE)
730

731
static const struct intel_device_info kbl_gt1_info = {
732
	KBL_PLATFORM,
733 734 735
	.gt = 1,
};

736
static const struct intel_device_info kbl_gt2_info = {
737 738
	KBL_PLATFORM,
	.gt = 2,
739 740
};

741
static const struct intel_device_info kbl_gt3_info = {
742
	KBL_PLATFORM,
743
	.gt = 3,
744 745
	.engine_mask =
		BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
746 747
};

748
#define CFL_PLATFORM \
749
	GEN9_FEATURES, \
750
	PLATFORM(INTEL_COFFEELAKE)
751

752
static const struct intel_device_info cfl_gt1_info = {
753 754 755 756
	CFL_PLATFORM,
	.gt = 1,
};

757
static const struct intel_device_info cfl_gt2_info = {
758
	CFL_PLATFORM,
759
	.gt = 2,
760 761
};

762
static const struct intel_device_info cfl_gt3_info = {
763
	CFL_PLATFORM,
764
	.gt = 3,
765 766
	.engine_mask =
		BIT(RCS0) | BIT(VCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS1),
767 768
};

769 770
#define GEN10_FEATURES \
	GEN9_FEATURES, \
771
	GEN(10), \
772
	.ddb_size = 1024, \
773
	.display.has_dsc = 1, \
774
	.has_coherent_ggtt = false, \
R
Rodrigo Vivi 已提交
775
	GLK_COLORS
776

777
static const struct intel_device_info cnl_info = {
778
	GEN10_FEATURES,
779
	PLATFORM(INTEL_CANNONLAKE),
780
	.gt = 2,
781 782
};

783 784 785 786 787
#define GEN11_DEFAULT_PAGE_SIZES \
	.page_sizes = I915_GTT_PAGE_SIZE_4K | \
		      I915_GTT_PAGE_SIZE_64K | \
		      I915_GTT_PAGE_SIZE_2M

788 789
#define GEN11_FEATURES \
	GEN10_FEATURES, \
790
	GEN11_DEFAULT_PAGE_SIZES, \
791 792 793
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | \
		BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP) | \
		BIT(TRANSCODER_DSI_0) | BIT(TRANSCODER_DSI_1), \
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
	.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, \
	}, \
810
	GEN(11), \
811
	.ddb_size = 2048, \
812
	.num_supported_dbuf_slices = 2, \
813
	.has_logical_ring_elsq = 1, \
814
	.color = { .degamma_lut_size = 33, .gamma_lut_size = 262145 }
815

816
static const struct intel_device_info icl_info = {
817
	GEN11_FEATURES,
818
	PLATFORM(INTEL_ICELAKE),
819 820
	.engine_mask =
		BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0) | BIT(VCS2),
821 822
};

823
static const struct intel_device_info ehl_info = {
824
	GEN11_FEATURES,
825
	PLATFORM(INTEL_ELKHARTLAKE),
826
	.require_force_probe = 1,
827
	.engine_mask = BIT(RCS0) | BIT(BCS0) | BIT(VCS0) | BIT(VECS0),
828 829 830
	.ppgtt_size = 36,
};

831 832 833
#define GEN12_FEATURES \
	GEN11_FEATURES, \
	GEN(12), \
834 835 836 837
	.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D), \
	.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | \
		BIT(TRANSCODER_C) | BIT(TRANSCODER_D) | \
		BIT(TRANSCODER_DSI_0) | BIT(TRANSCODER_DSI_1), \
838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
	.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, \
853
	}, \
854
	TGL_CURSOR_OFFSETS, \
855 856
	.has_global_mocs = 1, \
	.display.has_dsb = 1
857

858
static const struct intel_device_info tgl_info = {
859 860
	GEN12_FEATURES,
	PLATFORM(INTEL_TIGERLAKE),
861
	.display.has_modular_fia = 1,
862 863 864 865
	.engine_mask =
		BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0) | BIT(VCS2),
};

866 867 868 869
#define GEN12_DGFX_FEATURES \
	GEN12_FEATURES, \
	.is_dgfx = 1

870
#undef GEN
871
#undef PLATFORM
872

873 874 875 876 877 878 879
/*
 * 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[] = {
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 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943
	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),
944 945 946 947
	{0, 0, 0}
};
MODULE_DEVICE_TABLE(pci, pciidlist);

948 949
static void i915_pci_remove(struct pci_dev *pdev)
{
950
	struct drm_i915_private *i915;
951

952 953
	i915 = pci_get_drvdata(pdev);
	if (!i915) /* driver load aborted, nothing to cleanup */
954
		return;
955

956
	i915_driver_remove(i915);
957
	pci_set_drvdata(pdev, NULL);
958 959

	drm_dev_put(&i915->drm);
960 961
}

962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
/* 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;
}

993 994 995 996
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;
997
	int err;
998

999 1000
	if (intel_info->require_force_probe &&
	    !force_probe(pdev->device, i915_modparams.force_probe)) {
1001
		dev_info(&pdev->dev,
1002
			 "Your graphics device %04x is not properly supported by the driver in this\n"
1003 1004 1005 1006
			 "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);
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
		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;

1025
	err = i915_driver_probe(pdev, ent);
1026 1027
	if (err)
		return err;
1028

1029
	if (i915_inject_probe_failure(pci_get_drvdata(pdev))) {
1030 1031 1032 1033
		i915_pci_remove(pdev);
		return -ENODEV;
	}

1034 1035 1036 1037 1038
	err = i915_live_selftests(pdev);
	if (err) {
		i915_pci_remove(pdev);
		return err > 0 ? -ENOTTY : err;
	}
1039

1040 1041 1042 1043 1044 1045
	err = i915_perf_selftests(pdev);
	if (err) {
		i915_pci_remove(pdev);
		return err > 0 ? -ENOTTY : err;
	}

1046
	return 0;
1047 1048
}

1049
static struct pci_driver i915_pci_driver = {
1050 1051 1052 1053 1054 1055
	.name = DRIVER_NAME,
	.id_table = pciidlist,
	.probe = i915_pci_probe,
	.remove = i915_pci_remove,
	.driver.pm = &i915_pm_ops,
};
1056 1057 1058 1059

static int __init i915_init(void)
{
	bool use_kms = true;
1060 1061
	int err;

1062 1063 1064
	err = i915_globals_init();
	if (err)
		return err;
1065

1066 1067 1068
	err = i915_mock_selftests();
	if (err)
		return err > 0 ? 0 : err;
1069 1070 1071 1072 1073 1074 1075

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

1076
	if (i915_modparams.modeset == 0)
1077 1078
		use_kms = false;

1079
	if (vgacon_text_force() && i915_modparams.modeset == -1)
1080 1081 1082 1083 1084 1085 1086 1087
		use_kms = false;

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

1088 1089 1090 1091 1092 1093
	err = pci_register_driver(&i915_pci_driver);
	if (err)
		return err;

	i915_perf_sysctl_register();
	return 0;
1094 1095 1096 1097 1098 1099 1100
}

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

1101
	i915_perf_sysctl_unregister();
1102
	pci_unregister_driver(&i915_pci_driver);
1103
	i915_globals_exit();
1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
}

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