blob: 138228dd7782147fd8849788459ccd5b83503039 [file] [log] [blame]
Chris Wilson42f55512016-06-24 14:00:26 +01001/*
2 * Copyright © 2016 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24
Chris Wilsona09d0ba2016-06-24 14:00:27 +010025#include <linux/console.h>
Chris Wilson42f55512016-06-24 14:00:26 +010026#include <linux/vgaarb.h>
27#include <linux/vga_switcheroo.h>
28
29#include "i915_drv.h"
Chris Wilson953c7f82017-02-13 17:15:12 +000030#include "i915_selftest.h"
Chris Wilson42f55512016-06-24 14:00:26 +010031
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 }
Rodrigo Vivi46727702017-10-02 23:36:52 -070057#define GLK_COLORS \
58 .color = { .degamma_lut_size = 0, .gamma_lut_size = 1024 }
Chris Wilson42f55512016-06-24 14:00:26 +010059
Jani Nikulaa5ce9292016-11-30 17:43:02 +020060/* Keep in gen based order, and chronological order within a gen */
Matthew Auld2a9654b2017-10-06 23:18:16 +010061
62#define GEN_DEFAULT_PAGE_SIZES \
63 .page_sizes = I915_GTT_PAGE_SIZE_4K
64
Carlos Santa0eec8dc2016-08-17 12:30:51 -070065#define GEN2_FEATURES \
66 .gen = 2, .num_pipes = 1, \
67 .has_overlay = 1, .overlay_needs_physical = 1, \
Carlos Santa804b8712016-08-17 12:30:55 -070068 .has_gmch_display = 1, \
Carlos Santa31776592016-08-17 12:30:56 -070069 .hws_needs_physical = 1, \
Chris Wilsonf4ce7662017-03-25 11:32:43 +000070 .unfenced_needs_alignment = 1, \
Carlos Santa0eec8dc2016-08-17 12:30:51 -070071 .ring_mask = RENDER_RING, \
Chris Wilson5d95c242017-09-06 11:56:53 +010072 .has_snoop = true, \
Carlos Santa0eec8dc2016-08-17 12:30:51 -070073 GEN_DEFAULT_PIPEOFFSETS, \
Matthew Auld2a9654b2017-10-06 23:18:16 +010074 GEN_DEFAULT_PAGE_SIZES, \
Carlos Santa0eec8dc2016-08-17 12:30:51 -070075 CURSOR_OFFSETS
76
Lionel Landwerlin5db47e32018-01-29 08:33:46 +000077static const struct intel_device_info intel_i830_info = {
Carlos Santa0eec8dc2016-08-17 12:30:51 -070078 GEN2_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +020079 .platform = INTEL_I830,
Carlos Santa0eec8dc2016-08-17 12:30:51 -070080 .is_mobile = 1, .cursor_needs_physical = 1,
81 .num_pipes = 2, /* legal, last one wins */
Chris Wilson42f55512016-06-24 14:00:26 +010082};
83
Lionel Landwerlin5db47e32018-01-29 08:33:46 +000084static const struct intel_device_info intel_i845g_info = {
Carlos Santa0eec8dc2016-08-17 12:30:51 -070085 GEN2_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +020086 .platform = INTEL_I845G,
Chris Wilson42f55512016-06-24 14:00:26 +010087};
88
Lionel Landwerlin5db47e32018-01-29 08:33:46 +000089static const struct intel_device_info intel_i85x_info = {
Carlos Santa0eec8dc2016-08-17 12:30:51 -070090 GEN2_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +020091 .platform = INTEL_I85X, .is_mobile = 1,
Carlos Santa0eec8dc2016-08-17 12:30:51 -070092 .num_pipes = 2, /* legal, last one wins */
Chris Wilson42f55512016-06-24 14:00:26 +010093 .cursor_needs_physical = 1,
Chris Wilson42f55512016-06-24 14:00:26 +010094 .has_fbc = 1,
Chris Wilson42f55512016-06-24 14:00:26 +010095};
96
Lionel Landwerlin5db47e32018-01-29 08:33:46 +000097static const struct intel_device_info intel_i865g_info = {
Carlos Santa0eec8dc2016-08-17 12:30:51 -070098 GEN2_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +020099 .platform = INTEL_I865G,
Chris Wilson42f55512016-06-24 14:00:26 +0100100};
101
Carlos Santa54d2a6a2016-08-17 12:30:50 -0700102#define GEN3_FEATURES \
103 .gen = 3, .num_pipes = 2, \
Carlos Santa804b8712016-08-17 12:30:55 -0700104 .has_gmch_display = 1, \
Carlos Santa54d2a6a2016-08-17 12:30:50 -0700105 .ring_mask = RENDER_RING, \
Chris Wilson5d95c242017-09-06 11:56:53 +0100106 .has_snoop = true, \
Carlos Santa54d2a6a2016-08-17 12:30:50 -0700107 GEN_DEFAULT_PIPEOFFSETS, \
Matthew Auld2a9654b2017-10-06 23:18:16 +0100108 GEN_DEFAULT_PAGE_SIZES, \
Carlos Santa54d2a6a2016-08-17 12:30:50 -0700109 CURSOR_OFFSETS
110
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000111static const struct intel_device_info intel_i915g_info = {
Carlos Santa54d2a6a2016-08-17 12:30:50 -0700112 GEN3_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200113 .platform = INTEL_I915G, .cursor_needs_physical = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100114 .has_overlay = 1, .overlay_needs_physical = 1,
Carlos Santa31776592016-08-17 12:30:56 -0700115 .hws_needs_physical = 1,
Chris Wilsonf4ce7662017-03-25 11:32:43 +0000116 .unfenced_needs_alignment = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100117};
Jani Nikulaa5ce9292016-11-30 17:43:02 +0200118
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000119static const struct intel_device_info intel_i915gm_info = {
Carlos Santa54d2a6a2016-08-17 12:30:50 -0700120 GEN3_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200121 .platform = INTEL_I915GM,
Carlos Santa54d2a6a2016-08-17 12:30:50 -0700122 .is_mobile = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100123 .cursor_needs_physical = 1,
124 .has_overlay = 1, .overlay_needs_physical = 1,
125 .supports_tv = 1,
126 .has_fbc = 1,
Carlos Santa31776592016-08-17 12:30:56 -0700127 .hws_needs_physical = 1,
Chris Wilsonf4ce7662017-03-25 11:32:43 +0000128 .unfenced_needs_alignment = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100129};
Jani Nikulaa5ce9292016-11-30 17:43:02 +0200130
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000131static const struct intel_device_info intel_i945g_info = {
Carlos Santa54d2a6a2016-08-17 12:30:50 -0700132 GEN3_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200133 .platform = INTEL_I945G,
Carlos Santa54d2a6a2016-08-17 12:30:50 -0700134 .has_hotplug = 1, .cursor_needs_physical = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100135 .has_overlay = 1, .overlay_needs_physical = 1,
Carlos Santa31776592016-08-17 12:30:56 -0700136 .hws_needs_physical = 1,
Chris Wilsonf4ce7662017-03-25 11:32:43 +0000137 .unfenced_needs_alignment = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100138};
Jani Nikulaa5ce9292016-11-30 17:43:02 +0200139
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000140static const struct intel_device_info intel_i945gm_info = {
Carlos Santa54d2a6a2016-08-17 12:30:50 -0700141 GEN3_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200142 .platform = INTEL_I945GM, .is_mobile = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100143 .has_hotplug = 1, .cursor_needs_physical = 1,
144 .has_overlay = 1, .overlay_needs_physical = 1,
145 .supports_tv = 1,
146 .has_fbc = 1,
Carlos Santa31776592016-08-17 12:30:56 -0700147 .hws_needs_physical = 1,
Chris Wilsonf4ce7662017-03-25 11:32:43 +0000148 .unfenced_needs_alignment = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100149};
150
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000151static const struct intel_device_info intel_g33_info = {
Jani Nikulaa5ce9292016-11-30 17:43:02 +0200152 GEN3_FEATURES,
153 .platform = INTEL_G33,
154 .has_hotplug = 1,
155 .has_overlay = 1,
156};
157
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000158static const struct intel_device_info intel_pineview_info = {
Jani Nikulaa5ce9292016-11-30 17:43:02 +0200159 GEN3_FEATURES,
Jani Nikula73f67aa2016-12-07 22:48:09 +0200160 .platform = INTEL_PINEVIEW, .is_mobile = 1,
Jani Nikulaa5ce9292016-11-30 17:43:02 +0200161 .has_hotplug = 1,
162 .has_overlay = 1,
163};
164
Carlos Santa4d495be2016-08-17 12:30:49 -0700165#define GEN4_FEATURES \
166 .gen = 4, .num_pipes = 2, \
167 .has_hotplug = 1, \
Carlos Santa804b8712016-08-17 12:30:55 -0700168 .has_gmch_display = 1, \
Carlos Santa4d495be2016-08-17 12:30:49 -0700169 .ring_mask = RENDER_RING, \
Chris Wilson5d95c242017-09-06 11:56:53 +0100170 .has_snoop = true, \
Carlos Santa4d495be2016-08-17 12:30:49 -0700171 GEN_DEFAULT_PIPEOFFSETS, \
Matthew Auld2a9654b2017-10-06 23:18:16 +0100172 GEN_DEFAULT_PAGE_SIZES, \
Carlos Santa4d495be2016-08-17 12:30:49 -0700173 CURSOR_OFFSETS
174
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000175static const struct intel_device_info intel_i965g_info = {
Carlos Santa4d495be2016-08-17 12:30:49 -0700176 GEN4_FEATURES,
Jani Nikulac0f86832016-12-07 12:13:04 +0200177 .platform = INTEL_I965G,
Chris Wilson42f55512016-06-24 14:00:26 +0100178 .has_overlay = 1,
Carlos Santa31776592016-08-17 12:30:56 -0700179 .hws_needs_physical = 1,
Chris Wilsondf0700e2017-09-06 20:24:24 +0100180 .has_snoop = false,
Chris Wilson42f55512016-06-24 14:00:26 +0100181};
182
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000183static const struct intel_device_info intel_i965gm_info = {
Carlos Santa4d495be2016-08-17 12:30:49 -0700184 GEN4_FEATURES,
Jani Nikulac0f86832016-12-07 12:13:04 +0200185 .platform = INTEL_I965GM,
Carlos Santa4d495be2016-08-17 12:30:49 -0700186 .is_mobile = 1, .has_fbc = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100187 .has_overlay = 1,
188 .supports_tv = 1,
Carlos Santa31776592016-08-17 12:30:56 -0700189 .hws_needs_physical = 1,
Chris Wilsondf0700e2017-09-06 20:24:24 +0100190 .has_snoop = false,
Chris Wilson42f55512016-06-24 14:00:26 +0100191};
192
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000193static const struct intel_device_info intel_g45_info = {
Carlos Santa4d495be2016-08-17 12:30:49 -0700194 GEN4_FEATURES,
Jani Nikulaf69c11a2016-11-30 17:43:05 +0200195 .platform = INTEL_G45,
Chris Wilson42f55512016-06-24 14:00:26 +0100196 .ring_mask = RENDER_RING | BSD_RING,
Chris Wilson42f55512016-06-24 14:00:26 +0100197};
198
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000199static const struct intel_device_info intel_gm45_info = {
Carlos Santa4d495be2016-08-17 12:30:49 -0700200 GEN4_FEATURES,
Jani Nikulaf69c11a2016-11-30 17:43:05 +0200201 .platform = INTEL_GM45,
Carlos Santa31776592016-08-17 12:30:56 -0700202 .is_mobile = 1, .has_fbc = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100203 .supports_tv = 1,
204 .ring_mask = RENDER_RING | BSD_RING,
Chris Wilson42f55512016-06-24 14:00:26 +0100205};
206
Carlos Santaa1323382016-08-17 12:30:47 -0700207#define GEN5_FEATURES \
208 .gen = 5, .num_pipes = 2, \
Carlos Santa31776592016-08-17 12:30:56 -0700209 .has_hotplug = 1, \
Carlos Santaa1323382016-08-17 12:30:47 -0700210 .ring_mask = RENDER_RING | BSD_RING, \
Chris Wilson5d95c242017-09-06 11:56:53 +0100211 .has_snoop = true, \
Chris Wilsonfb6db0f2017-12-01 11:30:30 +0000212 /* ilk does support rc6, but we do not implement [power] contexts */ \
213 .has_rc6 = 0, \
Carlos Santaa1323382016-08-17 12:30:47 -0700214 GEN_DEFAULT_PIPEOFFSETS, \
Matthew Auld2a9654b2017-10-06 23:18:16 +0100215 GEN_DEFAULT_PAGE_SIZES, \
Carlos Santaa1323382016-08-17 12:30:47 -0700216 CURSOR_OFFSETS
217
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000218static const struct intel_device_info intel_ironlake_d_info = {
Carlos Santaa1323382016-08-17 12:30:47 -0700219 GEN5_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200220 .platform = INTEL_IRONLAKE,
Chris Wilson42f55512016-06-24 14:00:26 +0100221};
222
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000223static const struct intel_device_info intel_ironlake_m_info = {
Carlos Santaa1323382016-08-17 12:30:47 -0700224 GEN5_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200225 .platform = INTEL_IRONLAKE,
Ville Syrjäläc2d1a0c2017-06-06 16:32:29 +0300226 .is_mobile = 1, .has_fbc = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100227};
228
Carlos Santa07db6be2016-08-17 12:30:38 -0700229#define GEN6_FEATURES \
230 .gen = 6, .num_pipes = 2, \
Carlos Santa31776592016-08-17 12:30:56 -0700231 .has_hotplug = 1, \
Carlos Santa07db6be2016-08-17 12:30:38 -0700232 .has_fbc = 1, \
233 .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
234 .has_llc = 1, \
Carlos Santa86f36242016-08-17 12:30:44 -0700235 .has_rc6 = 1, \
Carlos Santa33b5bf82016-08-17 12:30:45 -0700236 .has_rc6p = 1, \
Michel Thierry9e1d0e62016-12-05 17:57:03 -0800237 .has_aliasing_ppgtt = 1, \
Carlos Santa07db6be2016-08-17 12:30:38 -0700238 GEN_DEFAULT_PIPEOFFSETS, \
Matthew Auld2a9654b2017-10-06 23:18:16 +0100239 GEN_DEFAULT_PAGE_SIZES, \
Carlos Santa07db6be2016-08-17 12:30:38 -0700240 CURSOR_OFFSETS
241
Lionel Landwerlin08905402017-08-30 17:12:05 +0100242#define SNB_D_PLATFORM \
243 GEN6_FEATURES, \
244 .platform = INTEL_SANDYBRIDGE
245
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000246static const struct intel_device_info intel_sandybridge_d_gt1_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100247 SNB_D_PLATFORM,
248 .gt = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100249};
250
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000251static const struct intel_device_info intel_sandybridge_d_gt2_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100252 SNB_D_PLATFORM,
253 .gt = 2,
254};
255
256#define SNB_M_PLATFORM \
257 GEN6_FEATURES, \
258 .platform = INTEL_SANDYBRIDGE, \
259 .is_mobile = 1
260
261
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000262static const struct intel_device_info intel_sandybridge_m_gt1_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100263 SNB_M_PLATFORM,
264 .gt = 1,
265};
266
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000267static const struct intel_device_info intel_sandybridge_m_gt2_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100268 SNB_M_PLATFORM,
269 .gt = 2,
Chris Wilson42f55512016-06-24 14:00:26 +0100270};
271
272#define GEN7_FEATURES \
273 .gen = 7, .num_pipes = 3, \
Carlos Santa31776592016-08-17 12:30:56 -0700274 .has_hotplug = 1, \
Chris Wilson42f55512016-06-24 14:00:26 +0100275 .has_fbc = 1, \
276 .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
277 .has_llc = 1, \
Carlos Santa86f36242016-08-17 12:30:44 -0700278 .has_rc6 = 1, \
Carlos Santa33b5bf82016-08-17 12:30:45 -0700279 .has_rc6p = 1, \
Michel Thierry9e1d0e62016-12-05 17:57:03 -0800280 .has_aliasing_ppgtt = 1, \
281 .has_full_ppgtt = 1, \
Chris Wilson42f55512016-06-24 14:00:26 +0100282 GEN_DEFAULT_PIPEOFFSETS, \
Matthew Auld2a9654b2017-10-06 23:18:16 +0100283 GEN_DEFAULT_PAGE_SIZES, \
Chris Wilson42f55512016-06-24 14:00:26 +0100284 IVB_CURSOR_OFFSETS
285
Lionel Landwerlin08905402017-08-30 17:12:05 +0100286#define IVB_D_PLATFORM \
287 GEN7_FEATURES, \
288 .platform = INTEL_IVYBRIDGE, \
289 .has_l3_dpf = 1
290
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000291static const struct intel_device_info intel_ivybridge_d_gt1_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100292 IVB_D_PLATFORM,
293 .gt = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100294};
295
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000296static const struct intel_device_info intel_ivybridge_d_gt2_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100297 IVB_D_PLATFORM,
298 .gt = 2,
299};
300
301#define IVB_M_PLATFORM \
302 GEN7_FEATURES, \
303 .platform = INTEL_IVYBRIDGE, \
304 .is_mobile = 1, \
305 .has_l3_dpf = 1
306
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000307static const struct intel_device_info intel_ivybridge_m_gt1_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100308 IVB_M_PLATFORM,
309 .gt = 1,
310};
311
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000312static const struct intel_device_info intel_ivybridge_m_gt2_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100313 IVB_M_PLATFORM,
314 .gt = 2,
Chris Wilson42f55512016-06-24 14:00:26 +0100315};
316
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000317static const struct intel_device_info intel_ivybridge_q_info = {
Chris Wilson42f55512016-06-24 14:00:26 +0100318 GEN7_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200319 .platform = INTEL_IVYBRIDGE,
Lionel Landwerlin08905402017-08-30 17:12:05 +0100320 .gt = 2,
Chris Wilson42f55512016-06-24 14:00:26 +0100321 .num_pipes = 0, /* legal, last one wins */
Carlos Santaca9c4522016-08-17 12:30:54 -0700322 .has_l3_dpf = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100323};
324
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000325static const struct intel_device_info intel_valleyview_info = {
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200326 .platform = INTEL_VALLEYVIEW,
Rodrigo Vivieb6f7712016-12-19 13:55:08 -0800327 .gen = 7,
328 .is_lp = 1,
329 .num_pipes = 2,
330 .has_psr = 1,
331 .has_runtime_pm = 1,
332 .has_rc6 = 1,
Rodrigo Vivieb6f7712016-12-19 13:55:08 -0800333 .has_gmch_display = 1,
334 .has_hotplug = 1,
335 .has_aliasing_ppgtt = 1,
336 .has_full_ppgtt = 1,
Chris Wilson5d95c242017-09-06 11:56:53 +0100337 .has_snoop = true,
Rodrigo Vivieb6f7712016-12-19 13:55:08 -0800338 .ring_mask = RENDER_RING | BSD_RING | BLT_RING,
339 .display_mmio_offset = VLV_DISPLAY_BASE,
Matthew Auld2a9654b2017-10-06 23:18:16 +0100340 GEN_DEFAULT_PAGE_SIZES,
Rodrigo Vivieb6f7712016-12-19 13:55:08 -0800341 GEN_DEFAULT_PIPEOFFSETS,
342 CURSOR_OFFSETS
Chris Wilson42f55512016-06-24 14:00:26 +0100343};
344
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700345#define G75_FEATURES \
Chris Wilson42f55512016-06-24 14:00:26 +0100346 GEN7_FEATURES, \
347 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \
348 .has_ddi = 1, \
Carlos Santa6e3b84d2016-08-17 12:30:36 -0700349 .has_fpga_dbg = 1, \
Carlos Santa4aa4c232016-08-17 12:30:39 -0700350 .has_psr = 1, \
Carlos Santa53233f02016-08-17 12:30:43 -0700351 .has_resource_streamer = 1, \
Carlos Santa1d3fe532016-08-17 12:30:46 -0700352 .has_dp_mst = 1, \
Carlos Santa33b5bf82016-08-17 12:30:45 -0700353 .has_rc6p = 0 /* RC6p removed-by HSW */, \
Carlos Santa4aa4c232016-08-17 12:30:39 -0700354 .has_runtime_pm = 1
Chris Wilson42f55512016-06-24 14:00:26 +0100355
Lionel Landwerlin08905402017-08-30 17:12:05 +0100356#define HSW_PLATFORM \
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700357 G75_FEATURES, \
Lionel Landwerlin08905402017-08-30 17:12:05 +0100358 .platform = INTEL_HASWELL, \
359 .has_l3_dpf = 1
360
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000361static const struct intel_device_info intel_haswell_gt1_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100362 HSW_PLATFORM,
363 .gt = 1,
364};
365
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000366static const struct intel_device_info intel_haswell_gt2_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100367 HSW_PLATFORM,
368 .gt = 2,
369};
370
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000371static const struct intel_device_info intel_haswell_gt3_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100372 HSW_PLATFORM,
373 .gt = 3,
Chris Wilson42f55512016-06-24 14:00:26 +0100374};
375
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700376#define GEN8_FEATURES \
377 G75_FEATURES, \
Carlos Santa4586f1d2016-08-17 12:30:53 -0700378 BDW_COLORS, \
Matthew Aulda8832412017-10-06 23:18:33 +0100379 .page_sizes = I915_GTT_PAGE_SIZE_4K | \
380 I915_GTT_PAGE_SIZE_2M, \
Joonas Lahtinendfc51482016-11-03 10:39:46 +0200381 .has_logical_ring_contexts = 1, \
Michel Thierry9e1d0e62016-12-05 17:57:03 -0800382 .has_full_48bit_ppgtt = 1, \
Michel Thierry142bc7d2017-06-20 10:57:46 +0100383 .has_64bit_reloc = 1, \
384 .has_reset_engine = 1
Chris Wilson42f55512016-06-24 14:00:26 +0100385
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700386#define BDW_PLATFORM \
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700387 GEN8_FEATURES, \
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700388 .gen = 8, \
389 .platform = INTEL_BROADWELL
390
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000391static const struct intel_device_info intel_broadwell_gt1_info = {
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700392 BDW_PLATFORM,
Lionel Landwerlin08905402017-08-30 17:12:05 +0100393 .gt = 1,
394};
395
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000396static const struct intel_device_info intel_broadwell_gt2_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100397 BDW_PLATFORM,
398 .gt = 2,
399};
400
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000401static const struct intel_device_info intel_broadwell_rsvd_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100402 BDW_PLATFORM,
403 .gt = 3,
404 /* According to the device ID those devices are GT3, they were
405 * previously treated as not GT3, keep it like that.
406 */
Chris Wilson42f55512016-06-24 14:00:26 +0100407};
408
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000409static const struct intel_device_info intel_broadwell_gt3_info = {
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700410 BDW_PLATFORM,
Lionel Landwerlin08905402017-08-30 17:12:05 +0100411 .gt = 3,
Chris Wilson42f55512016-06-24 14:00:26 +0100412 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
413};
414
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000415static const struct intel_device_info intel_cherryview_info = {
Chris Wilson42f55512016-06-24 14:00:26 +0100416 .gen = 8, .num_pipes = 3,
Carlos Santa31776592016-08-17 12:30:56 -0700417 .has_hotplug = 1,
Rodrigo Vivi8727dc02016-12-18 13:36:26 -0800418 .is_lp = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100419 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200420 .platform = INTEL_CHERRYVIEW,
Joonas Lahtinendfc51482016-11-03 10:39:46 +0200421 .has_64bit_reloc = 1,
Carlos Santa6e3b84d2016-08-17 12:30:36 -0700422 .has_psr = 1,
Carlos Santa4aa4c232016-08-17 12:30:39 -0700423 .has_runtime_pm = 1,
Carlos Santa53233f02016-08-17 12:30:43 -0700424 .has_resource_streamer = 1,
Carlos Santa86f36242016-08-17 12:30:44 -0700425 .has_rc6 = 1,
Carlos Santa4586f1d2016-08-17 12:30:53 -0700426 .has_logical_ring_contexts = 1,
Carlos Santa804b8712016-08-17 12:30:55 -0700427 .has_gmch_display = 1,
Michel Thierry9e1d0e62016-12-05 17:57:03 -0800428 .has_aliasing_ppgtt = 1,
429 .has_full_ppgtt = 1,
Michel Thierry142bc7d2017-06-20 10:57:46 +0100430 .has_reset_engine = 1,
Chris Wilson5d95c242017-09-06 11:56:53 +0100431 .has_snoop = true,
Chris Wilson42f55512016-06-24 14:00:26 +0100432 .display_mmio_offset = VLV_DISPLAY_BASE,
Matthew Auld2a9654b2017-10-06 23:18:16 +0100433 GEN_DEFAULT_PAGE_SIZES,
Chris Wilson42f55512016-06-24 14:00:26 +0100434 GEN_CHV_PIPEOFFSETS,
435 CURSOR_OFFSETS,
436 CHV_COLORS,
437};
438
Matthew Auld2a9654b2017-10-06 23:18:16 +0100439#define GEN9_DEFAULT_PAGE_SIZES \
Matthew Auldf1f3f982017-10-06 23:18:32 +0100440 .page_sizes = I915_GTT_PAGE_SIZE_4K | \
Matthew Aulda8832412017-10-06 23:18:33 +0100441 I915_GTT_PAGE_SIZE_64K | \
442 I915_GTT_PAGE_SIZE_2M
Matthew Auld2a9654b2017-10-06 23:18:16 +0100443
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700444#define GEN9_FEATURES \
445 GEN8_FEATURES, \
Matthew Auld2a9654b2017-10-06 23:18:16 +0100446 GEN9_DEFAULT_PAGE_SIZES, \
Chris Wilsonbeecec92017-10-03 21:34:52 +0100447 .has_logical_ring_preemption = 1, \
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700448 .has_csr = 1, \
449 .has_guc = 1, \
Rodrigo Vivi4d6ef0d2017-10-02 23:36:50 -0700450 .has_ipc = 1, \
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700451 .ddb_size = 896
452
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700453#define SKL_PLATFORM \
454 GEN9_FEATURES, \
455 .gen = 9, \
456 .platform = INTEL_SKYLAKE
457
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000458static const struct intel_device_info intel_skylake_gt1_info = {
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700459 SKL_PLATFORM,
Lionel Landwerlin08905402017-08-30 17:12:05 +0100460 .gt = 1,
Chris Wilson42f55512016-06-24 14:00:26 +0100461};
462
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000463static const struct intel_device_info intel_skylake_gt2_info = {
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700464 SKL_PLATFORM,
Lionel Landwerlin08905402017-08-30 17:12:05 +0100465 .gt = 2,
466};
467
468#define SKL_GT3_PLUS_PLATFORM \
469 SKL_PLATFORM, \
470 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING
471
472
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000473static const struct intel_device_info intel_skylake_gt3_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100474 SKL_GT3_PLUS_PLATFORM,
475 .gt = 3,
476};
477
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000478static const struct intel_device_info intel_skylake_gt4_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100479 SKL_GT3_PLUS_PLATFORM,
480 .gt = 4,
Chris Wilson42f55512016-06-24 14:00:26 +0100481};
482
Rodrigo Vivi80fa66b2016-12-01 11:33:16 +0200483#define GEN9_LP_FEATURES \
484 .gen = 9, \
Ander Conselvan de Oliveira3e4274f2016-11-10 17:23:09 +0200485 .is_lp = 1, \
Rodrigo Vivi80fa66b2016-12-01 11:33:16 +0200486 .has_hotplug = 1, \
487 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \
488 .num_pipes = 3, \
489 .has_64bit_reloc = 1, \
490 .has_ddi = 1, \
491 .has_fpga_dbg = 1, \
492 .has_fbc = 1, \
David Weinehall495001c2017-08-08 13:09:52 +0300493 .has_psr = 1, \
Rodrigo Vivi80fa66b2016-12-01 11:33:16 +0200494 .has_runtime_pm = 1, \
495 .has_pooled_eu = 0, \
496 .has_csr = 1, \
497 .has_resource_streamer = 1, \
498 .has_rc6 = 1, \
499 .has_dp_mst = 1, \
Rodrigo Vivi80fa66b2016-12-01 11:33:16 +0200500 .has_logical_ring_contexts = 1, \
Chris Wilsonbeecec92017-10-03 21:34:52 +0100501 .has_logical_ring_preemption = 1, \
Rodrigo Vivi80fa66b2016-12-01 11:33:16 +0200502 .has_guc = 1, \
Michel Thierry9e1d0e62016-12-05 17:57:03 -0800503 .has_aliasing_ppgtt = 1, \
504 .has_full_ppgtt = 1, \
505 .has_full_48bit_ppgtt = 1, \
Michel Thierry142bc7d2017-06-20 10:57:46 +0100506 .has_reset_engine = 1, \
Chris Wilson5d95c242017-09-06 11:56:53 +0100507 .has_snoop = true, \
Mahesh Kumare57f1c022017-08-17 19:15:27 +0530508 .has_ipc = 1, \
Matthew Auld2a9654b2017-10-06 23:18:16 +0100509 GEN9_DEFAULT_PAGE_SIZES, \
Rodrigo Vivi80fa66b2016-12-01 11:33:16 +0200510 GEN_DEFAULT_PIPEOFFSETS, \
511 IVB_CURSOR_OFFSETS, \
512 BDW_COLORS
513
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000514static const struct intel_device_info intel_broxton_info = {
Rodrigo Vivi80fa66b2016-12-01 11:33:16 +0200515 GEN9_LP_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200516 .platform = INTEL_BROXTON,
Deepak M6f3fff62016-09-15 15:01:10 +0530517 .ddb_size = 512,
Chris Wilson42f55512016-06-24 14:00:26 +0100518};
519
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000520static const struct intel_device_info intel_geminilake_info = {
Ander Conselvan de Oliveirac22097f2016-11-14 16:25:26 +0200521 GEN9_LP_FEATURES,
Jani Nikula2e0d26f2016-12-01 14:49:55 +0200522 .platform = INTEL_GEMINILAKE,
Ander Conselvan de Oliveirac22097f2016-11-14 16:25:26 +0200523 .ddb_size = 1024,
Rodrigo Vivi46727702017-10-02 23:36:52 -0700524 GLK_COLORS,
Ander Conselvan de Oliveirac22097f2016-11-14 16:25:26 +0200525};
526
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700527#define KBL_PLATFORM \
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700528 GEN9_FEATURES, \
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700529 .gen = 9, \
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700530 .platform = INTEL_KABYLAKE
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700531
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000532static const struct intel_device_info intel_kabylake_gt1_info = {
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700533 KBL_PLATFORM,
Lionel Landwerlin08905402017-08-30 17:12:05 +0100534 .gt = 1,
535};
536
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000537static const struct intel_device_info intel_kabylake_gt2_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100538 KBL_PLATFORM,
539 .gt = 2,
Chris Wilson42f55512016-06-24 14:00:26 +0100540};
541
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000542static const struct intel_device_info intel_kabylake_gt3_info = {
Rodrigo Vivi94829de2017-06-06 09:06:06 -0700543 KBL_PLATFORM,
Lionel Landwerlin08905402017-08-30 17:12:05 +0100544 .gt = 3,
Chris Wilson42f55512016-06-24 14:00:26 +0100545 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
546};
547
Rodrigo Vivi71851fa2017-06-08 08:49:58 -0700548#define CFL_PLATFORM \
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700549 GEN9_FEATURES, \
Rodrigo Vivi71851fa2017-06-08 08:49:58 -0700550 .gen = 9, \
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700551 .platform = INTEL_COFFEELAKE
Rodrigo Vivi71851fa2017-06-08 08:49:58 -0700552
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000553static const struct intel_device_info intel_coffeelake_gt1_info = {
Rodrigo Vivi71851fa2017-06-08 08:49:58 -0700554 CFL_PLATFORM,
Lionel Landwerlin08905402017-08-30 17:12:05 +0100555 .gt = 1,
556};
557
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000558static const struct intel_device_info intel_coffeelake_gt2_info = {
Lionel Landwerlin08905402017-08-30 17:12:05 +0100559 CFL_PLATFORM,
560 .gt = 2,
Rodrigo Vivi71851fa2017-06-08 08:49:58 -0700561};
562
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000563static const struct intel_device_info intel_coffeelake_gt3_info = {
Rodrigo Vivi71851fa2017-06-08 08:49:58 -0700564 CFL_PLATFORM,
Lionel Landwerlin08905402017-08-30 17:12:05 +0100565 .gt = 3,
Rodrigo Vivi71851fa2017-06-08 08:49:58 -0700566 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
567};
568
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700569#define GEN10_FEATURES \
570 GEN9_FEATURES, \
571 .ddb_size = 1024, \
Rodrigo Vivi46727702017-10-02 23:36:52 -0700572 GLK_COLORS
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700573
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000574static const struct intel_device_info intel_cannonlake_gt2_info = {
Rodrigo Vivi42a3ae82017-10-02 23:36:51 -0700575 GEN10_FEATURES,
Rodrigo Vivi413f3c12017-06-06 13:30:30 -0700576 .is_alpha_support = 1,
577 .platform = INTEL_CANNONLAKE,
578 .gen = 10,
Lionel Landwerlin08905402017-08-30 17:12:05 +0100579 .gt = 2,
Rodrigo Vivi413f3c12017-06-06 13:30:30 -0700580};
581
Rodrigo Vivi412310012018-01-11 16:00:04 -0200582#define GEN11_FEATURES \
583 GEN10_FEATURES, \
584 .gen = 11, \
585 .ddb_size = 2048, \
586 .has_csr = 0
587
Lionel Landwerlin5db47e32018-01-29 08:33:46 +0000588static const struct intel_device_info intel_icelake_11_info = {
Rodrigo Vivi412310012018-01-11 16:00:04 -0200589 GEN11_FEATURES,
590 .platform = INTEL_ICELAKE,
591 .is_alpha_support = 1,
592 .has_resource_streamer = 0,
593};
594
Chris Wilson42f55512016-06-24 14:00:26 +0100595/*
596 * Make sure any device matches here are from most specific to most
597 * general. For example, since the Quanta match is based on the subsystem
598 * and subvendor IDs, we need it to come before the more general IVB
599 * PCI ID matches, otherwise we'll use the wrong info struct above.
600 */
601static const struct pci_device_id pciidlist[] = {
602 INTEL_I830_IDS(&intel_i830_info),
Jani Nikula2a307c22016-11-30 17:43:04 +0200603 INTEL_I845G_IDS(&intel_i845g_info),
Chris Wilson42f55512016-06-24 14:00:26 +0100604 INTEL_I85X_IDS(&intel_i85x_info),
605 INTEL_I865G_IDS(&intel_i865g_info),
606 INTEL_I915G_IDS(&intel_i915g_info),
607 INTEL_I915GM_IDS(&intel_i915gm_info),
608 INTEL_I945G_IDS(&intel_i945g_info),
609 INTEL_I945GM_IDS(&intel_i945gm_info),
610 INTEL_I965G_IDS(&intel_i965g_info),
611 INTEL_G33_IDS(&intel_g33_info),
612 INTEL_I965GM_IDS(&intel_i965gm_info),
613 INTEL_GM45_IDS(&intel_gm45_info),
614 INTEL_G45_IDS(&intel_g45_info),
615 INTEL_PINEVIEW_IDS(&intel_pineview_info),
616 INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info),
617 INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info),
Lionel Landwerlin08905402017-08-30 17:12:05 +0100618 INTEL_SNB_D_GT1_IDS(&intel_sandybridge_d_gt1_info),
619 INTEL_SNB_D_GT2_IDS(&intel_sandybridge_d_gt2_info),
620 INTEL_SNB_M_GT1_IDS(&intel_sandybridge_m_gt1_info),
621 INTEL_SNB_M_GT2_IDS(&intel_sandybridge_m_gt2_info),
Chris Wilson42f55512016-06-24 14:00:26 +0100622 INTEL_IVB_Q_IDS(&intel_ivybridge_q_info), /* must be first IVB */
Lionel Landwerlin08905402017-08-30 17:12:05 +0100623 INTEL_IVB_M_GT1_IDS(&intel_ivybridge_m_gt1_info),
624 INTEL_IVB_M_GT2_IDS(&intel_ivybridge_m_gt2_info),
625 INTEL_IVB_D_GT1_IDS(&intel_ivybridge_d_gt1_info),
626 INTEL_IVB_D_GT2_IDS(&intel_ivybridge_d_gt2_info),
627 INTEL_HSW_GT1_IDS(&intel_haswell_gt1_info),
628 INTEL_HSW_GT2_IDS(&intel_haswell_gt2_info),
629 INTEL_HSW_GT3_IDS(&intel_haswell_gt3_info),
Carlos Santa8d9c20e2016-08-17 12:30:37 -0700630 INTEL_VLV_IDS(&intel_valleyview_info),
Lionel Landwerlin08905402017-08-30 17:12:05 +0100631 INTEL_BDW_GT1_IDS(&intel_broadwell_gt1_info),
632 INTEL_BDW_GT2_IDS(&intel_broadwell_gt2_info),
Carlos Santa8d9c20e2016-08-17 12:30:37 -0700633 INTEL_BDW_GT3_IDS(&intel_broadwell_gt3_info),
Lionel Landwerlin08905402017-08-30 17:12:05 +0100634 INTEL_BDW_RSVD_IDS(&intel_broadwell_rsvd_info),
Chris Wilson42f55512016-06-24 14:00:26 +0100635 INTEL_CHV_IDS(&intel_cherryview_info),
Lionel Landwerlin08905402017-08-30 17:12:05 +0100636 INTEL_SKL_GT1_IDS(&intel_skylake_gt1_info),
637 INTEL_SKL_GT2_IDS(&intel_skylake_gt2_info),
Chris Wilson42f55512016-06-24 14:00:26 +0100638 INTEL_SKL_GT3_IDS(&intel_skylake_gt3_info),
Lionel Landwerlin08905402017-08-30 17:12:05 +0100639 INTEL_SKL_GT4_IDS(&intel_skylake_gt4_info),
Chris Wilson42f55512016-06-24 14:00:26 +0100640 INTEL_BXT_IDS(&intel_broxton_info),
Ander Conselvan de Oliveira8363e3c2016-11-10 17:23:08 +0200641 INTEL_GLK_IDS(&intel_geminilake_info),
Lionel Landwerlin08905402017-08-30 17:12:05 +0100642 INTEL_KBL_GT1_IDS(&intel_kabylake_gt1_info),
643 INTEL_KBL_GT2_IDS(&intel_kabylake_gt2_info),
Chris Wilson42f55512016-06-24 14:00:26 +0100644 INTEL_KBL_GT3_IDS(&intel_kabylake_gt3_info),
645 INTEL_KBL_GT4_IDS(&intel_kabylake_gt3_info),
Lionel Landwerlin08905402017-08-30 17:12:05 +0100646 INTEL_CFL_S_GT1_IDS(&intel_coffeelake_gt1_info),
647 INTEL_CFL_S_GT2_IDS(&intel_coffeelake_gt2_info),
648 INTEL_CFL_H_GT2_IDS(&intel_coffeelake_gt2_info),
Rodrigo Vivic99d7832017-12-20 10:29:19 -0800649 INTEL_CFL_U_GT1_IDS(&intel_coffeelake_gt1_info),
650 INTEL_CFL_U_GT2_IDS(&intel_coffeelake_gt2_info),
Lionel Landwerlin08905402017-08-30 17:12:05 +0100651 INTEL_CFL_U_GT3_IDS(&intel_coffeelake_gt3_info),
652 INTEL_CNL_U_GT2_IDS(&intel_cannonlake_gt2_info),
653 INTEL_CNL_Y_GT2_IDS(&intel_cannonlake_gt2_info),
Chris Wilson42f55512016-06-24 14:00:26 +0100654 {0, 0, 0}
655};
656MODULE_DEVICE_TABLE(pci, pciidlist);
657
Chris Wilson953c7f82017-02-13 17:15:12 +0000658static void i915_pci_remove(struct pci_dev *pdev)
659{
660 struct drm_device *dev = pci_get_drvdata(pdev);
661
662 i915_driver_unload(dev);
Harsha Sharma8e9f8ab2017-10-15 00:06:44 +0530663 drm_dev_put(dev);
Chris Wilson953c7f82017-02-13 17:15:12 +0000664}
665
Chris Wilson42f55512016-06-24 14:00:26 +0100666static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
667{
668 struct intel_device_info *intel_info =
669 (struct intel_device_info *) ent->driver_data;
Chris Wilson953c7f82017-02-13 17:15:12 +0000670 int err;
Chris Wilson42f55512016-06-24 14:00:26 +0100671
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000672 if (IS_ALPHA_SUPPORT(intel_info) && !i915_modparams.alpha_support) {
Jani Nikulac007fb42016-10-31 12:18:28 +0200673 DRM_INFO("The driver support for your hardware in this kernel version is alpha quality\n"
674 "See CONFIG_DRM_I915_ALPHA_SUPPORT or i915.alpha_support module parameter\n"
675 "to enable support in this kernel version, or check for kernel updates.\n");
Chris Wilson42f55512016-06-24 14:00:26 +0100676 return -ENODEV;
677 }
678
679 /* Only bind to function 0 of the device. Early generations
680 * used function 1 as a placeholder for multi-head. This causes
681 * us confusion instead, especially on the systems where both
682 * functions have the same PCI-ID!
683 */
684 if (PCI_FUNC(pdev->devfn))
685 return -ENODEV;
686
687 /*
688 * apple-gmux is needed on dual GPU MacBook Pro
689 * to probe the panel if we're the inactive GPU.
690 */
691 if (vga_switcheroo_client_probe_defer(pdev))
692 return -EPROBE_DEFER;
693
Chris Wilson953c7f82017-02-13 17:15:12 +0000694 err = i915_driver_load(pdev, ent);
695 if (err)
696 return err;
Chris Wilson42f55512016-06-24 14:00:26 +0100697
Chris Wilson953c7f82017-02-13 17:15:12 +0000698 err = i915_live_selftests(pdev);
699 if (err) {
700 i915_pci_remove(pdev);
701 return err > 0 ? -ENOTTY : err;
702 }
Chris Wilson42f55512016-06-24 14:00:26 +0100703
Chris Wilson953c7f82017-02-13 17:15:12 +0000704 return 0;
Chris Wilson42f55512016-06-24 14:00:26 +0100705}
706
Chris Wilsona09d0ba2016-06-24 14:00:27 +0100707static struct pci_driver i915_pci_driver = {
Chris Wilson42f55512016-06-24 14:00:26 +0100708 .name = DRIVER_NAME,
709 .id_table = pciidlist,
710 .probe = i915_pci_probe,
711 .remove = i915_pci_remove,
712 .driver.pm = &i915_pm_ops,
713};
Chris Wilsona09d0ba2016-06-24 14:00:27 +0100714
715static int __init i915_init(void)
716{
717 bool use_kms = true;
Chris Wilson953c7f82017-02-13 17:15:12 +0000718 int err;
719
720 err = i915_mock_selftests();
721 if (err)
722 return err > 0 ? 0 : err;
Chris Wilsona09d0ba2016-06-24 14:00:27 +0100723
724 /*
725 * Enable KMS by default, unless explicitly overriden by
726 * either the i915.modeset prarameter or by the
727 * vga_text_mode_force boot option.
728 */
729
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000730 if (i915_modparams.modeset == 0)
Chris Wilsona09d0ba2016-06-24 14:00:27 +0100731 use_kms = false;
732
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000733 if (vgacon_text_force() && i915_modparams.modeset == -1)
Chris Wilsona09d0ba2016-06-24 14:00:27 +0100734 use_kms = false;
735
736 if (!use_kms) {
737 /* Silently fail loading to not upset userspace. */
738 DRM_DEBUG_DRIVER("KMS disabled.\n");
739 return 0;
740 }
741
742 return pci_register_driver(&i915_pci_driver);
743}
744
745static void __exit i915_exit(void)
746{
747 if (!i915_pci_driver.driver.owner)
748 return;
749
750 pci_unregister_driver(&i915_pci_driver);
751}
752
753module_init(i915_init);
754module_exit(i915_exit);
755
756MODULE_AUTHOR("Tungsten Graphics, Inc.");
757MODULE_AUTHOR("Intel Corporation");
758
759MODULE_DESCRIPTION(DRIVER_DESC);
760MODULE_LICENSE("GPL and additional rights");