1 /*
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 
25 #include <drm/drm_print.h>
26 #include <drm/i915_pciids.h>
27 
28 #include "display/intel_cdclk.h"
29 #include "display/intel_de.h"
30 #include "intel_device_info.h"
31 #include "i915_drv.h"
32 
33 #define PLATFORM_NAME(x) [INTEL_##x] = #x
34 static const char * const platform_names[] = {
35 	PLATFORM_NAME(I830),
36 	PLATFORM_NAME(I845G),
37 	PLATFORM_NAME(I85X),
38 	PLATFORM_NAME(I865G),
39 	PLATFORM_NAME(I915G),
40 	PLATFORM_NAME(I915GM),
41 	PLATFORM_NAME(I945G),
42 	PLATFORM_NAME(I945GM),
43 	PLATFORM_NAME(G33),
44 	PLATFORM_NAME(PINEVIEW),
45 	PLATFORM_NAME(I965G),
46 	PLATFORM_NAME(I965GM),
47 	PLATFORM_NAME(G45),
48 	PLATFORM_NAME(GM45),
49 	PLATFORM_NAME(IRONLAKE),
50 	PLATFORM_NAME(SANDYBRIDGE),
51 	PLATFORM_NAME(IVYBRIDGE),
52 	PLATFORM_NAME(VALLEYVIEW),
53 	PLATFORM_NAME(HASWELL),
54 	PLATFORM_NAME(BROADWELL),
55 	PLATFORM_NAME(CHERRYVIEW),
56 	PLATFORM_NAME(SKYLAKE),
57 	PLATFORM_NAME(BROXTON),
58 	PLATFORM_NAME(KABYLAKE),
59 	PLATFORM_NAME(GEMINILAKE),
60 	PLATFORM_NAME(COFFEELAKE),
61 	PLATFORM_NAME(COMETLAKE),
62 	PLATFORM_NAME(ICELAKE),
63 	PLATFORM_NAME(ELKHARTLAKE),
64 	PLATFORM_NAME(JASPERLAKE),
65 	PLATFORM_NAME(TIGERLAKE),
66 	PLATFORM_NAME(ROCKETLAKE),
67 	PLATFORM_NAME(DG1),
68 	PLATFORM_NAME(ALDERLAKE_S),
69 	PLATFORM_NAME(ALDERLAKE_P),
70 	PLATFORM_NAME(XEHPSDV),
71 	PLATFORM_NAME(DG2),
72 };
73 #undef PLATFORM_NAME
74 
75 const char *intel_platform_name(enum intel_platform platform)
76 {
77 	BUILD_BUG_ON(ARRAY_SIZE(platform_names) != INTEL_MAX_PLATFORMS);
78 
79 	if (WARN_ON_ONCE(platform >= ARRAY_SIZE(platform_names) ||
80 			 platform_names[platform] == NULL))
81 		return "<unknown>";
82 
83 	return platform_names[platform];
84 }
85 
86 static const char *iommu_name(void)
87 {
88 	const char *msg = "n/a";
89 
90 #ifdef CONFIG_INTEL_IOMMU
91 	msg = enableddisabled(intel_iommu_gfx_mapped);
92 #endif
93 
94 	return msg;
95 }
96 
97 void intel_device_info_print_static(const struct intel_device_info *info,
98 				    struct drm_printer *p)
99 {
100 	if (info->graphics_rel)
101 		drm_printf(p, "graphics version: %u.%02u\n", info->graphics_ver, info->graphics_rel);
102 	else
103 		drm_printf(p, "graphics version: %u\n", info->graphics_ver);
104 
105 	if (info->media_rel)
106 		drm_printf(p, "media version: %u.%02u\n", info->media_ver, info->media_rel);
107 	else
108 		drm_printf(p, "media version: %u\n", info->media_ver);
109 
110 	drm_printf(p, "display version: %u\n", info->display.ver);
111 	drm_printf(p, "gt: %d\n", info->gt);
112 	drm_printf(p, "iommu: %s\n", iommu_name());
113 	drm_printf(p, "memory-regions: %x\n", info->memory_regions);
114 	drm_printf(p, "page-sizes: %x\n", info->page_sizes);
115 	drm_printf(p, "platform: %s\n", intel_platform_name(info->platform));
116 	drm_printf(p, "ppgtt-size: %d\n", info->ppgtt_size);
117 	drm_printf(p, "ppgtt-type: %d\n", info->ppgtt_type);
118 	drm_printf(p, "dma_mask_size: %u\n", info->dma_mask_size);
119 
120 #define PRINT_FLAG(name) drm_printf(p, "%s: %s\n", #name, yesno(info->name))
121 	DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG);
122 #undef PRINT_FLAG
123 
124 #define PRINT_FLAG(name) drm_printf(p, "%s: %s\n", #name, yesno(info->display.name));
125 	DEV_INFO_DISPLAY_FOR_EACH_FLAG(PRINT_FLAG);
126 #undef PRINT_FLAG
127 }
128 
129 void intel_device_info_print_runtime(const struct intel_runtime_info *info,
130 				     struct drm_printer *p)
131 {
132 	drm_printf(p, "rawclk rate: %u kHz\n", info->rawclk_freq);
133 }
134 
135 #undef INTEL_VGA_DEVICE
136 #define INTEL_VGA_DEVICE(id, info) (id)
137 
138 static const u16 subplatform_ult_ids[] = {
139 	INTEL_HSW_ULT_GT1_IDS(0),
140 	INTEL_HSW_ULT_GT2_IDS(0),
141 	INTEL_HSW_ULT_GT3_IDS(0),
142 	INTEL_BDW_ULT_GT1_IDS(0),
143 	INTEL_BDW_ULT_GT2_IDS(0),
144 	INTEL_BDW_ULT_GT3_IDS(0),
145 	INTEL_BDW_ULT_RSVD_IDS(0),
146 	INTEL_SKL_ULT_GT1_IDS(0),
147 	INTEL_SKL_ULT_GT2_IDS(0),
148 	INTEL_SKL_ULT_GT3_IDS(0),
149 	INTEL_KBL_ULT_GT1_IDS(0),
150 	INTEL_KBL_ULT_GT2_IDS(0),
151 	INTEL_KBL_ULT_GT3_IDS(0),
152 	INTEL_CFL_U_GT2_IDS(0),
153 	INTEL_CFL_U_GT3_IDS(0),
154 	INTEL_WHL_U_GT1_IDS(0),
155 	INTEL_WHL_U_GT2_IDS(0),
156 	INTEL_WHL_U_GT3_IDS(0),
157 	INTEL_CML_U_GT1_IDS(0),
158 	INTEL_CML_U_GT2_IDS(0),
159 };
160 
161 static const u16 subplatform_ulx_ids[] = {
162 	INTEL_HSW_ULX_GT1_IDS(0),
163 	INTEL_HSW_ULX_GT2_IDS(0),
164 	INTEL_BDW_ULX_GT1_IDS(0),
165 	INTEL_BDW_ULX_GT2_IDS(0),
166 	INTEL_BDW_ULX_GT3_IDS(0),
167 	INTEL_BDW_ULX_RSVD_IDS(0),
168 	INTEL_SKL_ULX_GT1_IDS(0),
169 	INTEL_SKL_ULX_GT2_IDS(0),
170 	INTEL_KBL_ULX_GT1_IDS(0),
171 	INTEL_KBL_ULX_GT2_IDS(0),
172 	INTEL_AML_KBL_GT2_IDS(0),
173 	INTEL_AML_CFL_GT2_IDS(0),
174 };
175 
176 static const u16 subplatform_portf_ids[] = {
177 	INTEL_ICL_PORT_F_IDS(0),
178 };
179 
180 static bool find_devid(u16 id, const u16 *p, unsigned int num)
181 {
182 	for (; num; num--, p++) {
183 		if (*p == id)
184 			return true;
185 	}
186 
187 	return false;
188 }
189 
190 void intel_device_info_subplatform_init(struct drm_i915_private *i915)
191 {
192 	const struct intel_device_info *info = INTEL_INFO(i915);
193 	const struct intel_runtime_info *rinfo = RUNTIME_INFO(i915);
194 	const unsigned int pi = __platform_mask_index(rinfo, info->platform);
195 	const unsigned int pb = __platform_mask_bit(rinfo, info->platform);
196 	u16 devid = INTEL_DEVID(i915);
197 	u32 mask = 0;
198 
199 	/* Make sure IS_<platform> checks are working. */
200 	RUNTIME_INFO(i915)->platform_mask[pi] = BIT(pb);
201 
202 	/* Find and mark subplatform bits based on the PCI device id. */
203 	if (find_devid(devid, subplatform_ult_ids,
204 		       ARRAY_SIZE(subplatform_ult_ids))) {
205 		mask = BIT(INTEL_SUBPLATFORM_ULT);
206 	} else if (find_devid(devid, subplatform_ulx_ids,
207 			      ARRAY_SIZE(subplatform_ulx_ids))) {
208 		mask = BIT(INTEL_SUBPLATFORM_ULX);
209 		if (IS_HASWELL(i915) || IS_BROADWELL(i915)) {
210 			/* ULX machines are also considered ULT. */
211 			mask |= BIT(INTEL_SUBPLATFORM_ULT);
212 		}
213 	} else if (find_devid(devid, subplatform_portf_ids,
214 			      ARRAY_SIZE(subplatform_portf_ids))) {
215 		mask = BIT(INTEL_SUBPLATFORM_PORTF);
216 	}
217 
218 	if (IS_TIGERLAKE(i915)) {
219 		struct pci_dev *root, *pdev = to_pci_dev(i915->drm.dev);
220 
221 		root = list_first_entry(&pdev->bus->devices, typeof(*root), bus_list);
222 
223 		drm_WARN_ON(&i915->drm, mask);
224 		drm_WARN_ON(&i915->drm, (root->device & TGL_ROOT_DEVICE_MASK) !=
225 			    TGL_ROOT_DEVICE_ID);
226 
227 		switch (root->device & TGL_ROOT_DEVICE_SKU_MASK) {
228 		case TGL_ROOT_DEVICE_SKU_ULX:
229 			mask = BIT(INTEL_SUBPLATFORM_ULX);
230 			break;
231 		case TGL_ROOT_DEVICE_SKU_ULT:
232 			mask = BIT(INTEL_SUBPLATFORM_ULT);
233 			break;
234 		}
235 	}
236 
237 	GEM_BUG_ON(mask & ~INTEL_SUBPLATFORM_MASK);
238 
239 	RUNTIME_INFO(i915)->platform_mask[pi] |= mask;
240 }
241 
242 /**
243  * intel_device_info_runtime_init - initialize runtime info
244  * @dev_priv: the i915 device
245  *
246  * Determine various intel_device_info fields at runtime.
247  *
248  * Use it when either:
249  *   - it's judged too laborious to fill n static structures with the limit
250  *     when a simple if statement does the job,
251  *   - run-time checks (eg read fuse/strap registers) are needed.
252  *
253  * This function needs to be called:
254  *   - after the MMIO has been setup as we are reading registers,
255  *   - after the PCH has been detected,
256  *   - before the first usage of the fields it can tweak.
257  */
258 void intel_device_info_runtime_init(struct drm_i915_private *dev_priv)
259 {
260 	struct intel_device_info *info = mkwrite_device_info(dev_priv);
261 	struct intel_runtime_info *runtime = RUNTIME_INFO(dev_priv);
262 	enum pipe pipe;
263 
264 	/* Wa_14011765242: adl-s A0,A1 */
265 	if (IS_ADLS_DISPLAY_STEP(dev_priv, STEP_A0, STEP_A2))
266 		for_each_pipe(dev_priv, pipe)
267 			runtime->num_scalers[pipe] = 0;
268 	else if (DISPLAY_VER(dev_priv) >= 11) {
269 		for_each_pipe(dev_priv, pipe)
270 			runtime->num_scalers[pipe] = 2;
271 	} else if (DISPLAY_VER(dev_priv) >= 9) {
272 		runtime->num_scalers[PIPE_A] = 2;
273 		runtime->num_scalers[PIPE_B] = 2;
274 		runtime->num_scalers[PIPE_C] = 1;
275 	}
276 
277 	BUILD_BUG_ON(BITS_PER_TYPE(intel_engine_mask_t) < I915_NUM_ENGINES);
278 
279 	if (DISPLAY_VER(dev_priv) >= 13 || HAS_D12_PLANE_MINIMIZATION(dev_priv))
280 		for_each_pipe(dev_priv, pipe)
281 			runtime->num_sprites[pipe] = 4;
282 	else if (DISPLAY_VER(dev_priv) >= 11)
283 		for_each_pipe(dev_priv, pipe)
284 			runtime->num_sprites[pipe] = 6;
285 	else if (DISPLAY_VER(dev_priv) == 10)
286 		for_each_pipe(dev_priv, pipe)
287 			runtime->num_sprites[pipe] = 3;
288 	else if (IS_BROXTON(dev_priv)) {
289 		/*
290 		 * Skylake and Broxton currently don't expose the topmost plane as its
291 		 * use is exclusive with the legacy cursor and we only want to expose
292 		 * one of those, not both. Until we can safely expose the topmost plane
293 		 * as a DRM_PLANE_TYPE_CURSOR with all the features exposed/supported,
294 		 * we don't expose the topmost plane at all to prevent ABI breakage
295 		 * down the line.
296 		 */
297 
298 		runtime->num_sprites[PIPE_A] = 2;
299 		runtime->num_sprites[PIPE_B] = 2;
300 		runtime->num_sprites[PIPE_C] = 1;
301 	} else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
302 		for_each_pipe(dev_priv, pipe)
303 			runtime->num_sprites[pipe] = 2;
304 	} else if (DISPLAY_VER(dev_priv) >= 5 || IS_G4X(dev_priv)) {
305 		for_each_pipe(dev_priv, pipe)
306 			runtime->num_sprites[pipe] = 1;
307 	}
308 
309 	if (HAS_DISPLAY(dev_priv) && IS_GRAPHICS_VER(dev_priv, 7, 8) &&
310 	    HAS_PCH_SPLIT(dev_priv)) {
311 		u32 fuse_strap = intel_de_read(dev_priv, FUSE_STRAP);
312 		u32 sfuse_strap = intel_de_read(dev_priv, SFUSE_STRAP);
313 
314 		/*
315 		 * SFUSE_STRAP is supposed to have a bit signalling the display
316 		 * is fused off. Unfortunately it seems that, at least in
317 		 * certain cases, fused off display means that PCH display
318 		 * reads don't land anywhere. In that case, we read 0s.
319 		 *
320 		 * On CPT/PPT, we can detect this case as SFUSE_STRAP_FUSE_LOCK
321 		 * should be set when taking over after the firmware.
322 		 */
323 		if (fuse_strap & ILK_INTERNAL_DISPLAY_DISABLE ||
324 		    sfuse_strap & SFUSE_STRAP_DISPLAY_DISABLED ||
325 		    (HAS_PCH_CPT(dev_priv) &&
326 		     !(sfuse_strap & SFUSE_STRAP_FUSE_LOCK))) {
327 			drm_info(&dev_priv->drm,
328 				 "Display fused off, disabling\n");
329 			info->pipe_mask = 0;
330 			info->cpu_transcoder_mask = 0;
331 		} else if (fuse_strap & IVB_PIPE_C_DISABLE) {
332 			drm_info(&dev_priv->drm, "PipeC fused off\n");
333 			info->pipe_mask &= ~BIT(PIPE_C);
334 			info->cpu_transcoder_mask &= ~BIT(TRANSCODER_C);
335 		}
336 	} else if (HAS_DISPLAY(dev_priv) && DISPLAY_VER(dev_priv) >= 9) {
337 		u32 dfsm = intel_de_read(dev_priv, SKL_DFSM);
338 
339 		if (dfsm & SKL_DFSM_PIPE_A_DISABLE) {
340 			info->pipe_mask &= ~BIT(PIPE_A);
341 			info->cpu_transcoder_mask &= ~BIT(TRANSCODER_A);
342 		}
343 		if (dfsm & SKL_DFSM_PIPE_B_DISABLE) {
344 			info->pipe_mask &= ~BIT(PIPE_B);
345 			info->cpu_transcoder_mask &= ~BIT(TRANSCODER_B);
346 		}
347 		if (dfsm & SKL_DFSM_PIPE_C_DISABLE) {
348 			info->pipe_mask &= ~BIT(PIPE_C);
349 			info->cpu_transcoder_mask &= ~BIT(TRANSCODER_C);
350 		}
351 
352 		if (DISPLAY_VER(dev_priv) >= 12 &&
353 		    (dfsm & TGL_DFSM_PIPE_D_DISABLE)) {
354 			info->pipe_mask &= ~BIT(PIPE_D);
355 			info->cpu_transcoder_mask &= ~BIT(TRANSCODER_D);
356 		}
357 
358 		if (dfsm & SKL_DFSM_DISPLAY_HDCP_DISABLE)
359 			info->display.has_hdcp = 0;
360 
361 		if (dfsm & SKL_DFSM_DISPLAY_PM_DISABLE)
362 			info->display.has_fbc = 0;
363 
364 		if (DISPLAY_VER(dev_priv) >= 11 && (dfsm & ICL_DFSM_DMC_DISABLE))
365 			info->display.has_dmc = 0;
366 
367 		if (DISPLAY_VER(dev_priv) >= 10 &&
368 		    (dfsm & GLK_DFSM_DISPLAY_DSC_DISABLE))
369 			info->display.has_dsc = 0;
370 	}
371 
372 	if (GRAPHICS_VER(dev_priv) == 6 && intel_vtd_active()) {
373 		drm_info(&dev_priv->drm,
374 			 "Disabling ppGTT for VT-d support\n");
375 		info->ppgtt_type = INTEL_PPGTT_NONE;
376 	}
377 
378 	runtime->rawclk_freq = intel_read_rawclk(dev_priv);
379 	drm_dbg(&dev_priv->drm, "rawclk rate: %d kHz\n", runtime->rawclk_freq);
380 
381 	if (!HAS_DISPLAY(dev_priv)) {
382 		dev_priv->drm.driver_features &= ~(DRIVER_MODESET |
383 						   DRIVER_ATOMIC);
384 		memset(&info->display, 0, sizeof(info->display));
385 		memset(runtime->num_sprites, 0, sizeof(runtime->num_sprites));
386 		memset(runtime->num_scalers, 0, sizeof(runtime->num_scalers));
387 	}
388 }
389 
390 void intel_driver_caps_print(const struct intel_driver_caps *caps,
391 			     struct drm_printer *p)
392 {
393 	drm_printf(p, "Has logical contexts? %s\n",
394 		   yesno(caps->has_logical_contexts));
395 	drm_printf(p, "scheduler: %x\n", caps->scheduler);
396 }
397